teapot.egg 266 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030
  1. <CoordinateSystem> { Y-Up }
  2. <Group> teapot {
  3. <Group> body {
  4. <VertexPool> body {
  5. <Vertex> 0 {
  6. 1.38137 2.45469 2.37025e-06
  7. <Normal> { -0.963566 -0.116505 -1.24425e-06 }
  8. }
  9. <Vertex> 1 {
  10. 1.4 2.4 2.31744e-06
  11. <Normal> { -0.939372 -0.320044 -2.31713e-06 }
  12. }
  13. <Vertex> 2 {
  14. 1.35074 2.4 0.375928
  15. <Normal> { -0.906979 -0.320398 -0.243354 }
  16. }
  17. <Vertex> 3 {
  18. 1.33276 2.45469 0.370924
  19. <Normal> { -0.930393 -0.116628 -0.249646 }
  20. }
  21. <Vertex> 4 {
  22. 1.38426 2.4875 2.40193e-06
  23. <Normal> { -0.987759 0.0870336 -1.78814e-07 }
  24. }
  25. <Vertex> 5 {
  26. 1.33555 2.4875 0.371701
  27. <Normal> { -0.953808 0.0871423 -0.255939 }
  28. }
  29. <Vertex> 6 {
  30. 1.40312 2.49844 2.41249e-06
  31. <Normal> { -0.500543 0.863223 -1.69873e-05 }
  32. }
  33. <Vertex> 7 {
  34. 1.38426 2.4875 2.40193e-06
  35. <Normal> { -0.500543 0.863223 -1.69873e-05 }
  36. }
  37. <Vertex> 8 {
  38. 1.33555 2.4875 0.371701
  39. <Normal> { -0.482924 0.86349 -0.129503 }
  40. }
  41. <Vertex> 9 {
  42. 1.35376 2.49844 0.376767
  43. <Normal> { -0.482924 0.86349 -0.129503 }
  44. }
  45. <Vertex> 10 {
  46. 1.43241 2.4875 2.40193e-06
  47. <Normal> { 0.51983 0.826925 -1.87755e-06 }
  48. }
  49. <Vertex> 11 {
  50. 1.40312 2.49844 2.41249e-06
  51. <Normal> { 0.349584 0.935785 -5.58235e-06 }
  52. }
  53. <Vertex> 12 {
  54. 1.35376 2.49844 0.376767
  55. <Normal> { 0.337214 0.935929 0.0904406 }
  56. }
  57. <Vertex> 13 {
  58. 1.38201 2.4875 0.38463
  59. <Normal> { 0.501583 0.827211 0.134539 }
  60. }
  61. <Vertex> 14 {
  62. 1.46655 2.45469 2.37025e-06
  63. <Normal> { 0.768946 0.618295 5.25266e-07 }
  64. }
  65. <Vertex> 15 {
  66. 1.41495 2.45469 0.393798
  67. <Normal> { 0.742184 0.618744 0.199102 }
  68. }
  69. <Vertex> 16 {
  70. 1.5 2.4 2.31744e-06
  71. <Normal> { 0.872858 0.471354 1.8999e-07 }
  72. }
  73. <Vertex> 17 {
  74. 1.44722 2.4 0.40278
  75. <Normal> { 0.842637 0.471802 0.226073 }
  76. }
  77. <Vertex> 18 {
  78. 1.21126 2.4 0.711409
  79. <Normal> { -0.812671 -0.321011 -0.470406 }
  80. }
  81. <Vertex> 19 {
  82. 1.19514 2.45469 0.70194
  83. <Normal> { -0.833736 -0.116837 -0.482603 }
  84. }
  85. <Vertex> 20 {
  86. 1.19764 2.4875 0.703411
  87. <Normal> { -0.854802 0.0873367 -0.4948 }
  88. }
  89. <Vertex> 21 {
  90. 1.19764 2.4875 0.703411
  91. <Normal> { -0.432104 0.863964 -0.250089 }
  92. }
  93. <Vertex> 22 {
  94. 1.21396 2.49844 0.712997
  95. <Normal> { -0.432104 0.863964 -0.250089 }
  96. }
  97. <Vertex> 23 {
  98. 1.21396 2.49844 0.712997
  99. <Normal> { 0.301694 0.936161 0.174596 }
  100. }
  101. <Vertex> 24 {
  102. 1.2393 2.4875 0.727877
  103. <Normal> { 0.448943 0.827694 0.25983 }
  104. }
  105. <Vertex> 25 {
  106. 1.26884 2.45469 0.745227
  107. <Normal> { 0.664633 0.619499 0.384689 }
  108. }
  109. <Vertex> 26 {
  110. 1.29778 2.4 0.762224
  111. <Normal> { 0.754839 0.472548 0.436917 }
  112. }
  113. <Vertex> 27 {
  114. 0.994 2.4 0.994002
  115. <Normal> { -0.663982 -0.321236 -0.663982 }
  116. }
  117. <Vertex> 28 {
  118. 0.98077 2.45469 0.980772
  119. <Normal> { -0.681221 -0.116906 -0.68122 }
  120. }
  121. <Vertex> 29 {
  122. 0.982824 2.4875 0.982826
  123. <Normal> { -0.698459 0.0874248 -0.698459 }
  124. }
  125. <Vertex> 30 {
  126. 0.982824 2.4875 0.982826
  127. <Normal> { -0.352897 0.864104 -0.352892 }
  128. }
  129. <Vertex> 31 {
  130. 0.996219 2.49844 0.996221
  131. <Normal> { -0.352897 0.864104 -0.352892 }
  132. }
  133. <Vertex> 32 {
  134. 0.996219 2.49844 0.996221
  135. <Normal> { 0.24631 0.936263 0.246314 }
  136. }
  137. <Vertex> 33 {
  138. 1.01701 2.4875 1.01701
  139. <Normal> { 0.366619 0.827887 0.366623 }
  140. }
  141. <Vertex> 34 {
  142. 1.04125 2.45469 1.04125
  143. <Normal> { 0.542888 0.61981 0.542889 }
  144. }
  145. <Vertex> 35 {
  146. 1.065 2.4 1.065
  147. <Normal> { 0.616658 0.47286 0.616658 }
  148. }
  149. <Vertex> 36 {
  150. 0.711407 2.4 1.21126
  151. <Normal> { -0.470407 -0.320994 -0.812677 }
  152. }
  153. <Vertex> 37 {
  154. 0.701938 2.45469 1.19514
  155. <Normal> { -0.482603 -0.116825 -0.833739 }
  156. }
  157. <Vertex> 38 {
  158. 0.703409 2.4875 1.19764
  159. <Normal> { -0.494799 0.0873434 -0.854802 }
  160. }
  161. <Vertex> 39 {
  162. 0.703409 2.4875 1.19764
  163. <Normal> { -0.250113 0.863921 -0.432175 }
  164. }
  165. <Vertex> 40 {
  166. 0.712995 2.49844 1.21396
  167. <Normal> { -0.250113 0.863921 -0.432175 }
  168. }
  169. <Vertex> 41 {
  170. 0.712995 2.49844 1.21396
  171. <Normal> { 0.174593 0.936168 0.301676 }
  172. }
  173. <Vertex> 42 {
  174. 0.727875 2.4875 1.2393
  175. <Normal> { 0.25983 0.827695 0.448935 }
  176. }
  177. <Vertex> 43 {
  178. 0.745225 2.45469 1.26884
  179. <Normal> { 0.384687 0.619508 0.664628 }
  180. }
  181. <Vertex> 44 {
  182. 0.762222 2.4 1.29778
  183. <Normal> { 0.436913 0.472556 0.754835 }
  184. }
  185. <Vertex> 45 {
  186. 0.375926 2.4 1.35074
  187. <Normal> { -0.243355 -0.320414 -0.906973 }
  188. }
  189. <Vertex> 46 {
  190. 0.370922 2.45469 1.33276
  191. <Normal> { -0.249647 -0.116634 -0.93039 }
  192. }
  193. <Vertex> 47 {
  194. 0.371699 2.4875 1.33555
  195. <Normal> { -0.255939 0.0871466 -0.953807 }
  196. }
  197. <Vertex> 48 {
  198. 0.371699 2.4875 1.33555
  199. <Normal> { -0.129525 0.863514 -0.482878 }
  200. }
  201. <Vertex> 49 {
  202. 0.376765 2.49844 1.35376
  203. <Normal> { -0.129525 0.863514 -0.482878 }
  204. }
  205. <Vertex> 50 {
  206. 0.376765 2.49844 1.35376
  207. <Normal> { 0.0904325 0.935922 0.337234 }
  208. }
  209. <Vertex> 51 {
  210. 0.384628 2.4875 1.38201
  211. <Normal> { 0.134532 0.827215 0.501586 }
  212. }
  213. <Vertex> 52 {
  214. 0.393796 2.45469 1.41495
  215. <Normal> { 0.199099 0.618748 0.742179 }
  216. }
  217. <Vertex> 53 {
  218. 0.402778 2.4 1.44722
  219. <Normal> { 0.226072 0.471796 0.84264 }
  220. }
  221. <Vertex> 54 {
  222. 0 2.4 1.4
  223. <Normal> { 1.91107e-06 -0.320042 -0.939373 }
  224. }
  225. <Vertex> 55 {
  226. 0 2.45469 1.38137
  227. <Normal> { 1.09896e-06 -0.116504 -0.963566 }
  228. }
  229. <Vertex> 56 {
  230. 0 2.4875 1.38426
  231. <Normal> { 2.83122e-07 0.0870336 -0.987759 }
  232. }
  233. <Vertex> 57 {
  234. 0 2.4875 1.38426
  235. <Normal> { 1.80826e-05 0.863223 -0.500543 }
  236. }
  237. <Vertex> 58 {
  238. 0 2.49844 1.40312
  239. <Normal> { 1.80826e-05 0.863223 -0.500543 }
  240. }
  241. <Vertex> 59 {
  242. 0 2.49844 1.40312
  243. <Normal> { 7.1954e-06 0.935784 0.349587 }
  244. }
  245. <Vertex> 60 {
  246. 0 2.4875 1.43241
  247. <Normal> { 3.12924e-06 0.826924 0.519832 }
  248. }
  249. <Vertex> 61 {
  250. 0 2.45469 1.46655
  251. <Normal> { 2.29105e-07 0.618294 0.768946 }
  252. }
  253. <Vertex> 62 {
  254. 0 2.4 1.5
  255. <Normal> { 3.63216e-07 0.471353 0.872858 }
  256. }
  257. <Vertex> 63 {
  258. -0.375926 2.4 1.35074
  259. <Normal> { 0.243354 -0.320397 -0.90698 }
  260. }
  261. <Vertex> 64 {
  262. -0.370922 2.45469 1.33276
  263. <Normal> { 0.249646 -0.116627 -0.930394 }
  264. }
  265. <Vertex> 65 {
  266. -0.371699 2.4875 1.33555
  267. <Normal> { 0.255939 0.0871421 -0.953808 }
  268. }
  269. <Vertex> 66 {
  270. -0.371699 2.4875 1.33555
  271. <Normal> { 0.129504 0.86349 -0.482924 }
  272. }
  273. <Vertex> 67 {
  274. -0.376765 2.49844 1.35376
  275. <Normal> { 0.129504 0.86349 -0.482924 }
  276. }
  277. <Vertex> 68 {
  278. -0.376765 2.49844 1.35376
  279. <Normal> { -0.0904408 0.935927 0.337217 }
  280. }
  281. <Vertex> 69 {
  282. -0.384628 2.4875 1.38201
  283. <Normal> { -0.134538 0.82721 0.501585 }
  284. }
  285. <Vertex> 70 {
  286. -0.393796 2.45469 1.41495
  287. <Normal> { -0.199102 0.618743 0.742184 }
  288. }
  289. <Vertex> 71 {
  290. -0.402778 2.4 1.44722
  291. <Normal> { -0.226072 0.471801 0.842638 }
  292. }
  293. <Vertex> 72 {
  294. -0.711407 2.4 1.21126
  295. <Normal> { 0.470406 -0.32101 -0.812671 }
  296. }
  297. <Vertex> 73 {
  298. -0.701938 2.45469 1.19514
  299. <Normal> { 0.482603 -0.116837 -0.833737 }
  300. }
  301. <Vertex> 74 {
  302. -0.703409 2.4875 1.19764
  303. <Normal> { 0.4948 0.0873365 -0.854802 }
  304. }
  305. <Vertex> 75 {
  306. -0.703409 2.4875 1.19764
  307. <Normal> { 0.25009 0.863964 -0.432103 }
  308. }
  309. <Vertex> 76 {
  310. -0.712995 2.49844 1.21396
  311. <Normal> { 0.25009 0.863964 -0.432103 }
  312. }
  313. <Vertex> 77 {
  314. -0.712995 2.49844 1.21396
  315. <Normal> { -0.174597 0.93616 0.301697 }
  316. }
  317. <Vertex> 78 {
  318. -0.727875 2.4875 1.2393
  319. <Normal> { -0.25983 0.827693 0.448945 }
  320. }
  321. <Vertex> 79 {
  322. -0.745225 2.45469 1.26884
  323. <Normal> { -0.384688 0.619499 0.664633 }
  324. }
  325. <Vertex> 80 {
  326. -0.762222 2.4 1.29778
  327. <Normal> { -0.436916 0.472548 0.75484 }
  328. }
  329. <Vertex> 81 {
  330. -0.994 2.4 0.994002
  331. <Normal> { 0.663981 -0.321236 -0.663983 }
  332. }
  333. <Vertex> 82 {
  334. -0.98077 2.45469 0.980772
  335. <Normal> { 0.68122 -0.116906 -0.681221 }
  336. }
  337. <Vertex> 83 {
  338. -0.982824 2.4875 0.982826
  339. <Normal> { 0.698459 0.0874248 -0.698459 }
  340. }
  341. <Vertex> 84 {
  342. -0.982824 2.4875 0.982826
  343. <Normal> { 0.352892 0.864104 -0.352896 }
  344. }
  345. <Vertex> 85 {
  346. -0.996219 2.49844 0.996221
  347. <Normal> { 0.352892 0.864104 -0.352896 }
  348. }
  349. <Vertex> 86 {
  350. -0.996219 2.49844 0.996221
  351. <Normal> { -0.246313 0.936263 0.24631 }
  352. }
  353. <Vertex> 87 {
  354. -1.01701 2.4875 1.01701
  355. <Normal> { -0.366622 0.827887 0.36662 }
  356. }
  357. <Vertex> 88 {
  358. -1.04125 2.45469 1.04125
  359. <Normal> { -0.542889 0.61981 0.542889 }
  360. }
  361. <Vertex> 89 {
  362. -1.065 2.4 1.065
  363. <Normal> { -0.616657 0.472859 0.616659 }
  364. }
  365. <Vertex> 90 {
  366. -1.21126 2.4 0.711409
  367. <Normal> { 0.812676 -0.320995 -0.470407 }
  368. }
  369. <Vertex> 91 {
  370. -1.19514 2.45469 0.70194
  371. <Normal> { 0.833739 -0.116826 -0.482603 }
  372. }
  373. <Vertex> 92 {
  374. -1.19764 2.4875 0.703411
  375. <Normal> { 0.854802 0.0873434 -0.494799 }
  376. }
  377. <Vertex> 93 {
  378. -1.19764 2.4875 0.703411
  379. <Normal> { 0.432176 0.863921 -0.250112 }
  380. }
  381. <Vertex> 94 {
  382. -1.21396 2.49844 0.712997
  383. <Normal> { 0.432176 0.863921 -0.250112 }
  384. }
  385. <Vertex> 95 {
  386. -1.21396 2.49844 0.712997
  387. <Normal> { -0.301675 0.936168 0.174594 }
  388. }
  389. <Vertex> 96 {
  390. -1.2393 2.4875 0.727877
  391. <Normal> { -0.448934 0.827695 0.25983 }
  392. }
  393. <Vertex> 97 {
  394. -1.26884 2.45469 0.745227
  395. <Normal> { -0.664628 0.619508 0.384688 }
  396. }
  397. <Vertex> 98 {
  398. -1.29778 2.4 0.762224
  399. <Normal> { -0.754835 0.472557 0.436914 }
  400. }
  401. <Vertex> 99 {
  402. -1.35074 2.4 0.375928
  403. <Normal> { 0.906973 -0.320416 -0.243355 }
  404. }
  405. <Vertex> 100 {
  406. -1.33276 2.45469 0.370924
  407. <Normal> { 0.93039 -0.116635 -0.249647 }
  408. }
  409. <Vertex> 101 {
  410. -1.33555 2.4875 0.371701
  411. <Normal> { 0.953807 0.0871467 -0.255939 }
  412. }
  413. <Vertex> 102 {
  414. -1.33555 2.4875 0.371701
  415. <Normal> { 0.482878 0.863514 -0.129523 }
  416. }
  417. <Vertex> 103 {
  418. -1.35376 2.49844 0.376767
  419. <Normal> { 0.482878 0.863514 -0.129523 }
  420. }
  421. <Vertex> 104 {
  422. -1.35376 2.49844 0.376767
  423. <Normal> { -0.337231 0.935923 0.0904331 }
  424. }
  425. <Vertex> 105 {
  426. -1.38201 2.4875 0.38463
  427. <Normal> { -0.501584 0.827216 0.134533 }
  428. }
  429. <Vertex> 106 {
  430. -1.41495 2.45469 0.393798
  431. <Normal> { -0.742178 0.618749 0.1991 }
  432. }
  433. <Vertex> 107 {
  434. -1.44722 2.4 0.40278
  435. <Normal> { -0.84264 0.471797 0.226073 }
  436. }
  437. <Vertex> 108 {
  438. -1.4 2.4 2.31744e-06
  439. <Normal> { 0.939372 -0.320044 1.50874e-06 }
  440. }
  441. <Vertex> 109 {
  442. -1.38137 2.45469 2.37025e-06
  443. <Normal> { 0.963566 -0.116505 9.53674e-07 }
  444. }
  445. <Vertex> 110 {
  446. -1.38426 2.4875 2.40193e-06
  447. <Normal> { 0.987759 0.0870336 3.94881e-07 }
  448. }
  449. <Vertex> 111 {
  450. -1.38426 2.4875 2.40193e-06
  451. <Normal> { 0.500543 0.863223 1.91666e-05 }
  452. }
  453. <Vertex> 112 {
  454. -1.40312 2.49844 2.41249e-06
  455. <Normal> { 0.500543 0.863223 1.91666e-05 }
  456. }
  457. <Vertex> 113 {
  458. -1.40312 2.49844 2.41249e-06
  459. <Normal> { -0.349583 0.935785 7.91065e-06 }
  460. }
  461. <Vertex> 114 {
  462. -1.43241 2.4875 2.40193e-06
  463. <Normal> { -0.51983 0.826925 3.92832e-06 }
  464. }
  465. <Vertex> 115 {
  466. -1.46655 2.45469 2.37025e-06
  467. <Normal> { -0.768946 0.618295 9.83477e-07 }
  468. }
  469. <Vertex> 116 {
  470. -1.5 2.4 2.31744e-06
  471. <Normal> { -0.872858 0.471354 9.2946e-07 }
  472. }
  473. <Vertex> 117 {
  474. -1.35074 2.4 -0.375924
  475. <Normal> { 0.906979 -0.320399 0.243353 }
  476. }
  477. <Vertex> 118 {
  478. -1.33276 2.45469 -0.37092
  479. <Normal> { 0.930393 -0.116628 0.249646 }
  480. }
  481. <Vertex> 119 {
  482. -1.33555 2.4875 -0.371697
  483. <Normal> { 0.953808 0.0871418 0.255939 }
  484. }
  485. <Vertex> 120 {
  486. -1.33555 2.4875 -0.371697
  487. <Normal> { 0.482924 0.86349 0.129505 }
  488. }
  489. <Vertex> 121 {
  490. -1.35376 2.49844 -0.376763
  491. <Normal> { 0.482924 0.86349 0.129505 }
  492. }
  493. <Vertex> 122 {
  494. -1.35376 2.49844 -0.376763
  495. <Normal> { -0.337214 0.935929 -0.0904389 }
  496. }
  497. <Vertex> 123 {
  498. -1.38201 2.4875 -0.384626
  499. <Normal> { -0.501583 0.827211 -0.134537 }
  500. }
  501. <Vertex> 124 {
  502. -1.41495 2.45469 -0.393794
  503. <Normal> { -0.742184 0.618744 -0.199101 }
  504. }
  505. <Vertex> 125 {
  506. -1.44722 2.4 -0.402776
  507. <Normal> { -0.842637 0.471802 -0.226072 }
  508. }
  509. <Vertex> 126 {
  510. -1.21126 2.4 -0.711405
  511. <Normal> { 0.812671 -0.321012 0.470405 }
  512. }
  513. <Vertex> 127 {
  514. -1.19514 2.45469 -0.701936
  515. <Normal> { 0.833736 -0.116838 0.482603 }
  516. }
  517. <Vertex> 128 {
  518. -1.19764 2.4875 -0.703407
  519. <Normal> { 0.854802 0.0873364 0.4948 }
  520. }
  521. <Vertex> 129 {
  522. -1.19764 2.4875 -0.703407
  523. <Normal> { 0.432103 0.863964 0.25009 }
  524. }
  525. <Vertex> 130 {
  526. -1.21396 2.49844 -0.712993
  527. <Normal> { 0.432103 0.863964 0.25009 }
  528. }
  529. <Vertex> 131 {
  530. -1.21396 2.49844 -0.712993
  531. <Normal> { -0.301694 0.936161 -0.174595 }
  532. }
  533. <Vertex> 132 {
  534. -1.2393 2.4875 -0.727873
  535. <Normal> { -0.448944 0.827694 -0.259829 }
  536. }
  537. <Vertex> 133 {
  538. -1.26884 2.45469 -0.745223
  539. <Normal> { -0.664633 0.619499 -0.384688 }
  540. }
  541. <Vertex> 134 {
  542. -1.29778 2.4 -0.76222
  543. <Normal> { -0.754839 0.472549 -0.436916 }
  544. }
  545. <Vertex> 135 {
  546. -0.994 2.4 -0.993998
  547. <Normal> { 0.663982 -0.321238 0.663981 }
  548. }
  549. <Vertex> 136 {
  550. -0.98077 2.45469 -0.980768
  551. <Normal> { 0.681221 -0.116906 0.68122 }
  552. }
  553. <Vertex> 137 {
  554. -0.982824 2.4875 -0.982822
  555. <Normal> { 0.698459 0.0874248 0.698459 }
  556. }
  557. <Vertex> 138 {
  558. -0.982824 2.4875 -0.982822
  559. <Normal> { 0.352896 0.864104 0.352892 }
  560. }
  561. <Vertex> 139 {
  562. -0.996219 2.49844 -0.996217
  563. <Normal> { 0.352896 0.864104 0.352892 }
  564. }
  565. <Vertex> 140 {
  566. -0.996219 2.49844 -0.996217
  567. <Normal> { -0.24631 0.936263 -0.246313 }
  568. }
  569. <Vertex> 141 {
  570. -1.01701 2.4875 -1.01701
  571. <Normal> { -0.36662 0.827887 -0.366622 }
  572. }
  573. <Vertex> 142 {
  574. -1.04125 2.45469 -1.04125
  575. <Normal> { -0.542888 0.619811 -0.542888 }
  576. }
  577. <Vertex> 143 {
  578. -1.065 2.4 -1.065
  579. <Normal> { -0.616658 0.472861 -0.616657 }
  580. }
  581. <Vertex> 144 {
  582. -0.711407 2.4 -1.21126
  583. <Normal> { 0.470407 -0.320996 0.812676 }
  584. }
  585. <Vertex> 145 {
  586. -0.701938 2.45469 -1.19514
  587. <Normal> { 0.482603 -0.116827 0.833739 }
  588. }
  589. <Vertex> 146 {
  590. -0.703409 2.4875 -1.19764
  591. <Normal> { 0.494799 0.0873434 0.854802 }
  592. }
  593. <Vertex> 147 {
  594. -0.703409 2.4875 -1.19764
  595. <Normal> { 0.250112 0.863921 0.432175 }
  596. }
  597. <Vertex> 148 {
  598. -0.712995 2.49844 -1.21396
  599. <Normal> { 0.250112 0.863921 0.432175 }
  600. }
  601. <Vertex> 149 {
  602. -0.712995 2.49844 -1.21396
  603. <Normal> { -0.174593 0.936168 -0.301675 }
  604. }
  605. <Vertex> 150 {
  606. -0.727875 2.4875 -1.2393
  607. <Normal> { -0.25983 0.827695 -0.448935 }
  608. }
  609. <Vertex> 151 {
  610. -0.745225 2.45469 -1.26884
  611. <Normal> { -0.384688 0.619509 -0.664627 }
  612. }
  613. <Vertex> 152 {
  614. -0.762222 2.4 -1.29778
  615. <Normal> { -0.436913 0.472558 -0.754834 }
  616. }
  617. <Vertex> 153 {
  618. -0.375926 2.4 -1.35074
  619. <Normal> { 0.243355 -0.320418 0.906972 }
  620. }
  621. <Vertex> 154 {
  622. -0.370922 2.45469 -1.33276
  623. <Normal> { 0.249647 -0.116636 0.93039 }
  624. }
  625. <Vertex> 155 {
  626. -0.371699 2.4875 -1.33555
  627. <Normal> { 0.255939 0.0871466 0.953807 }
  628. }
  629. <Vertex> 156 {
  630. -0.371699 2.4875 -1.33555
  631. <Normal> { 0.129524 0.863514 0.482878 }
  632. }
  633. <Vertex> 157 {
  634. -0.376765 2.49844 -1.35376
  635. <Normal> { 0.129524 0.863514 0.482878 }
  636. }
  637. <Vertex> 158 {
  638. -0.376765 2.49844 -1.35376
  639. <Normal> { -0.0904322 0.935924 -0.337228 }
  640. }
  641. <Vertex> 159 {
  642. -0.384628 2.4875 -1.38201
  643. <Normal> { -0.134532 0.827216 -0.501583 }
  644. }
  645. <Vertex> 160 {
  646. -0.393796 2.45469 -1.41495
  647. <Normal> { -0.199099 0.618749 -0.742178 }
  648. }
  649. <Vertex> 161 {
  650. -0.402778 2.4 -1.44722
  651. <Normal> { -0.226072 0.471798 -0.842639 }
  652. }
  653. <Vertex> 162 {
  654. 0 2.4 -1.4
  655. <Normal> { -1.91107e-06 -0.320046 0.939371 }
  656. }
  657. <Vertex> 163 {
  658. 0 2.45469 -1.38137
  659. <Normal> { -1.10269e-06 -0.116506 0.963565 }
  660. }
  661. <Vertex> 164 {
  662. 0 2.4875 -1.38426
  663. <Normal> { -2.90573e-07 0.0870336 0.987759 }
  664. }
  665. <Vertex> 165 {
  666. 0 2.4875 -1.38426
  667. <Normal> { -1.80714e-05 0.863223 0.500543 }
  668. }
  669. <Vertex> 166 {
  670. 0 2.49844 -1.40312
  671. <Normal> { -1.80714e-05 0.863223 0.500543 }
  672. }
  673. <Vertex> 167 {
  674. 0 2.49844 -1.40312
  675. <Normal> { -6.30133e-06 0.935786 -0.34958 }
  676. }
  677. <Vertex> 168 {
  678. 0 2.4875 -1.43241
  679. <Normal> { -2.68221e-06 0.826926 -0.519828 }
  680. }
  681. <Vertex> 169 {
  682. 0 2.45469 -1.46655
  683. <Normal> { -2.27243e-07 0.618296 -0.768945 }
  684. }
  685. <Vertex> 170 {
  686. 0 2.4 -1.5
  687. <Normal> { -3.72529e-07 0.471355 -0.872857 }
  688. }
  689. <Vertex> 171 {
  690. 0.375926 2.4 -1.35074
  691. <Normal> { -0.243353 -0.3204 0.906979 }
  692. }
  693. <Vertex> 172 {
  694. 0.370922 2.45469 -1.33276
  695. <Normal> { -0.249646 -0.116629 0.930393 }
  696. }
  697. <Vertex> 173 {
  698. 0.371699 2.4875 -1.33555
  699. <Normal> { -0.255939 0.0871421 0.953808 }
  700. }
  701. <Vertex> 174 {
  702. 0.371699 2.4875 -1.33555
  703. <Normal> { -0.129504 0.86349 0.482924 }
  704. }
  705. <Vertex> 175 {
  706. 0.376765 2.49844 -1.35376
  707. <Normal> { -0.129504 0.86349 0.482924 }
  708. }
  709. <Vertex> 176 {
  710. 0.376765 2.49844 -1.35376
  711. <Normal> { 0.0904388 0.93593 -0.337211 }
  712. }
  713. <Vertex> 177 {
  714. 0.384628 2.4875 -1.38201
  715. <Normal> { 0.134538 0.827212 -0.501581 }
  716. }
  717. <Vertex> 178 {
  718. 0.393796 2.45469 -1.41495
  719. <Normal> { 0.199102 0.618744 -0.742184 }
  720. }
  721. <Vertex> 179 {
  722. 0.402778 2.4 -1.44722
  723. <Normal> { 0.226072 0.471803 -0.842637 }
  724. }
  725. <Vertex> 180 {
  726. 0.711407 2.4 -1.21126
  727. <Normal> { -0.470406 -0.321013 0.81267 }
  728. }
  729. <Vertex> 181 {
  730. 0.701938 2.45469 -1.19514
  731. <Normal> { -0.482603 -0.116838 0.833736 }
  732. }
  733. <Vertex> 182 {
  734. 0.703409 2.4875 -1.19764
  735. <Normal> { -0.4948 0.0873365 0.854802 }
  736. }
  737. <Vertex> 183 {
  738. 0.703409 2.4875 -1.19764
  739. <Normal> { -0.25009 0.863964 0.432104 }
  740. }
  741. <Vertex> 184 {
  742. 0.712995 2.49844 -1.21396
  743. <Normal> { -0.25009 0.863964 0.432104 }
  744. }
  745. <Vertex> 185 {
  746. 0.712995 2.49844 -1.21396
  747. <Normal> { 0.174595 0.936162 -0.301691 }
  748. }
  749. <Vertex> 186 {
  750. 0.727875 2.4875 -1.2393
  751. <Normal> { 0.259829 0.827694 -0.448942 }
  752. }
  753. <Vertex> 187 {
  754. 0.745225 2.45469 -1.26884
  755. <Normal> { 0.384689 0.6195 -0.664632 }
  756. }
  757. <Vertex> 188 {
  758. 0.762222 2.4 -1.29778
  759. <Normal> { 0.436916 0.47255 -0.754839 }
  760. }
  761. <Vertex> 189 {
  762. 0.994 2.4 -0.993998
  763. <Normal> { -0.663981 -0.321238 0.663982 }
  764. }
  765. <Vertex> 190 {
  766. 0.98077 2.45469 -0.980768
  767. <Normal> { -0.68122 -0.116907 0.68122 }
  768. }
  769. <Vertex> 191 {
  770. 0.982824 2.4875 -0.982822
  771. <Normal> { -0.698459 0.0874248 0.698459 }
  772. }
  773. <Vertex> 192 {
  774. 0.982824 2.4875 -0.982822
  775. <Normal> { -0.352892 0.864104 0.352897 }
  776. }
  777. <Vertex> 193 {
  778. 0.996219 2.49844 -0.996217
  779. <Normal> { -0.352892 0.864104 0.352897 }
  780. }
  781. <Vertex> 194 {
  782. 0.996219 2.49844 -0.996217
  783. <Normal> { 0.246314 0.936263 -0.24631 }
  784. }
  785. <Vertex> 195 {
  786. 1.01701 2.4875 -1.01701
  787. <Normal> { 0.366623 0.827887 -0.366619 }
  788. }
  789. <Vertex> 196 {
  790. 1.04125 2.45469 -1.04125
  791. <Normal> { 0.542889 0.619811 -0.542888 }
  792. }
  793. <Vertex> 197 {
  794. 1.065 2.4 -1.065
  795. <Normal> { 0.616657 0.472861 -0.616658 }
  796. }
  797. <Vertex> 198 {
  798. 1.21126 2.4 -0.711405
  799. <Normal> { -0.812676 -0.320996 0.470407 }
  800. }
  801. <Vertex> 199 {
  802. 1.19514 2.45469 -0.701936
  803. <Normal> { -0.833739 -0.116826 0.482603 }
  804. }
  805. <Vertex> 200 {
  806. 1.19764 2.4875 -0.703407
  807. <Normal> { -0.854802 0.0873434 0.494799 }
  808. }
  809. <Vertex> 201 {
  810. 1.19764 2.4875 -0.703407
  811. <Normal> { -0.432175 0.863921 0.250113 }
  812. }
  813. <Vertex> 202 {
  814. 1.21396 2.49844 -0.712993
  815. <Normal> { -0.432175 0.863921 0.250113 }
  816. }
  817. <Vertex> 203 {
  818. 1.21396 2.49844 -0.712993
  819. <Normal> { 0.301676 0.936168 -0.174593 }
  820. }
  821. <Vertex> 204 {
  822. 1.2393 2.4875 -0.727873
  823. <Normal> { 0.448935 0.827695 -0.25983 }
  824. }
  825. <Vertex> 205 {
  826. 1.26884 2.45469 -0.745223
  827. <Normal> { 0.664628 0.619509 -0.384687 }
  828. }
  829. <Vertex> 206 {
  830. 1.29778 2.4 -0.76222
  831. <Normal> { 0.754835 0.472558 -0.436913 }
  832. }
  833. <Vertex> 207 {
  834. 1.35074 2.4 -0.375924
  835. <Normal> { -0.906973 -0.320416 0.243355 }
  836. }
  837. <Vertex> 208 {
  838. 1.33276 2.45469 -0.37092
  839. <Normal> { -0.93039 -0.116635 0.249647 }
  840. }
  841. <Vertex> 209 {
  842. 1.33555 2.4875 -0.371697
  843. <Normal> { -0.953807 0.0871466 0.255939 }
  844. }
  845. <Vertex> 210 {
  846. 1.33555 2.4875 -0.371697
  847. <Normal> { -0.482878 0.863514 0.129525 }
  848. }
  849. <Vertex> 211 {
  850. 1.35376 2.49844 -0.376763
  851. <Normal> { -0.482878 0.863514 0.129525 }
  852. }
  853. <Vertex> 212 {
  854. 1.35376 2.49844 -0.376763
  855. <Normal> { 0.337231 0.935923 -0.0904314 }
  856. }
  857. <Vertex> 213 {
  858. 1.38201 2.4875 -0.384626
  859. <Normal> { 0.501585 0.827216 -0.134531 }
  860. }
  861. <Vertex> 214 {
  862. 1.41495 2.45469 -0.393794
  863. <Normal> { 0.742178 0.618749 -0.199098 }
  864. }
  865. <Vertex> 215 {
  866. 1.44722 2.4 -0.402776
  867. <Normal> { 0.84264 0.471798 -0.226072 }
  868. }
  869. <Vertex> 216 {
  870. 1.62384 2.13785 2.06431e-06
  871. <Normal> { 0.901778 0.415628 4.88013e-07 }
  872. }
  873. <Vertex> 217 {
  874. 1.56671 2.13785 0.436034
  875. <Normal> { 0.870606 0.416051 0.233586 }
  876. }
  877. <Vertex> 218 {
  878. 1.74074 1.87778 1.81318e-06
  879. <Normal> { 0.91327 0.38888 2.79397e-07 }
  880. }
  881. <Vertex> 219 {
  882. 1.67949 1.87778 0.467423
  883. <Normal> { 0.881722 0.389289 0.236574 }
  884. }
  885. <Vertex> 220 {
  886. 1.84375 1.62187 1.56608e-06
  887. <Normal> { 0.931739 0.340477 -1.34669e-06 }
  888. }
  889. <Vertex> 221 {
  890. 1.77888 1.62188 0.495083
  891. <Normal> { 0.899593 0.340847 0.24137 }
  892. }
  893. <Vertex> 222 {
  894. 1.92593 1.37222 1.32501e-06
  895. <Normal> { 0.95512 0.264195 -1.21444e-06 }
  896. }
  897. <Vertex> 223 {
  898. 1.85816 1.37222 0.517148
  899. <Normal> { 0.922218 0.264492 0.24745 }
  900. }
  901. <Vertex> 224 {
  902. 1.98032 1.1309 1.092e-06
  903. <Normal> { 0.977827 0.151157 4.5076e-07 }
  904. }
  905. <Vertex> 225 {
  906. 1.91065 1.1309 0.531755
  907. <Normal> { 0.944191 0.151337 0.253352 }
  908. }
  909. <Vertex> 226 {
  910. 2 0.9 8.69039e-07
  911. <Normal> { 0.982114 -0.0454071 -3.20375e-07 }
  912. }
  913. <Vertex> 227 {
  914. 1.92963 0.899999 0.537038
  915. <Normal> { 0.94834 -0.0454605 0.254464 }
  916. }
  917. <Vertex> 228 {
  918. 1.40492 2.13785 0.825155
  919. <Normal> { 0.779976 0.416758 0.451472 }
  920. }
  921. <Vertex> 229 {
  922. 1.50606 1.87778 0.884556
  923. <Normal> { 0.789969 0.389977 0.457255 }
  924. }
  925. <Vertex> 230 {
  926. 1.59519 1.62188 0.9369
  927. <Normal> { 0.806035 0.341463 0.466564 }
  928. }
  929. <Vertex> 231 {
  930. 1.66628 1.37222 0.978657
  931. <Normal> { 0.826383 0.264998 0.47835 }
  932. }
  933. <Vertex> 232 {
  934. 1.71335 1.1309 1.0063
  935. <Normal> { 0.846149 0.151644 0.489793 }
  936. }
  937. <Vertex> 233 {
  938. 1.73037 0.899999 1.0163
  939. <Normal> { 0.849882 -0.0455514 0.491958 }
  940. }
  941. <Vertex> 234 {
  942. 1.15293 2.13785 1.15293
  943. <Normal> { 0.637223 0.417049 0.637223 }
  944. }
  945. <Vertex> 235 {
  946. 1.23593 1.87778 1.23593
  947. <Normal> { 0.645399 0.390243 0.645401 }
  948. }
  949. <Vertex> 236 {
  950. 1.30906 1.62187 1.30906
  951. <Normal> { 0.65855 0.341711 0.658551 }
  952. }
  953. <Vertex> 237 {
  954. 1.36741 1.37222 1.36741
  955. <Normal> { 0.675201 0.265205 0.675201 }
  956. }
  957. <Vertex> 238 {
  958. 1.40603 1.1309 1.40603
  959. <Normal> { 0.691379 0.151761 0.691379 }
  960. }
  961. <Vertex> 239 {
  962. 1.42 0.899999 1.42
  963. <Normal> { 0.694434 -0.0455938 0.694434 }
  964. }
  965. <Vertex> 240 {
  966. 0.825153 2.13785 1.40492
  967. <Normal> { 0.45147 0.416762 0.779975 }
  968. }
  969. <Vertex> 241 {
  970. 0.884554 1.87778 1.50606
  971. <Normal> { 0.457257 0.389969 0.789971 }
  972. }
  973. <Vertex> 242 {
  974. 0.936898 1.62188 1.59519
  975. <Normal> { 0.466563 0.341461 0.806038 }
  976. }
  977. <Vertex> 243 {
  978. 0.978656 1.37222 1.66628
  979. <Normal> { 0.478347 0.265001 0.826383 }
  980. }
  981. <Vertex> 244 {
  982. 1.0063 1.1309 1.71335
  983. <Normal> { 0.489794 0.151638 0.846151 }
  984. }
  985. <Vertex> 245 {
  986. 1.0163 0.899998 1.73037
  987. <Normal> { 0.491958 -0.0455573 0.849881 }
  988. }
  989. <Vertex> 246 {
  990. 0.436032 2.13785 1.56671
  991. <Normal> { 0.233586 0.416048 0.870608 }
  992. }
  993. <Vertex> 247 {
  994. 0.467421 1.87778 1.67949
  995. <Normal> { 0.236573 0.389294 0.88172 }
  996. }
  997. <Vertex> 248 {
  998. 0.495081 1.62187 1.77888
  999. <Normal> { 0.24137 0.340842 0.899595 }
  1000. }
  1001. <Vertex> 249 {
  1002. 0.517147 1.37222 1.85816
  1003. <Normal> { 0.247449 0.264496 0.922219 }
  1004. }
  1005. <Vertex> 250 {
  1006. 0.531754 1.1309 1.91065
  1007. <Normal> { 0.253352 0.151343 0.944189 }
  1008. }
  1009. <Vertex> 251 {
  1010. 0.537037 0.899998 1.92963
  1011. <Normal> { 0.254464 -0.045462 0.948341 }
  1012. }
  1013. <Vertex> 252 {
  1014. 0 2.13785 1.62384
  1015. <Normal> { -2.6077e-08 0.415627 0.901778 }
  1016. }
  1017. <Vertex> 253 {
  1018. 0 1.87778 1.74074
  1019. <Normal> { 1.2666e-07 0.38888 0.91327 }
  1020. }
  1021. <Vertex> 254 {
  1022. 0 1.62187 1.84375
  1023. <Normal> { 1.67824e-06 0.340476 0.931739 }
  1024. }
  1025. <Vertex> 255 {
  1026. 0 1.37222 1.92593
  1027. <Normal> { 1.46404e-06 0.264194 0.955121 }
  1028. }
  1029. <Vertex> 256 {
  1030. 0 1.1309 1.98032
  1031. <Normal> { -3.05474e-07 0.151157 0.977827 }
  1032. }
  1033. <Vertex> 257 {
  1034. 0 0.899998 2
  1035. <Normal> { 2.75671e-07 -0.0454079 0.982114 }
  1036. }
  1037. <Vertex> 258 {
  1038. -0.436032 2.13785 1.56671
  1039. <Normal> { -0.233586 0.416051 0.870607 }
  1040. }
  1041. <Vertex> 259 {
  1042. -0.467421 1.87778 1.67949
  1043. <Normal> { -0.236574 0.389289 0.881722 }
  1044. }
  1045. <Vertex> 260 {
  1046. -0.495081 1.62188 1.77888
  1047. <Normal> { -0.241369 0.340846 0.899593 }
  1048. }
  1049. <Vertex> 261 {
  1050. -0.517147 1.37222 1.85816
  1051. <Normal> { -0.247449 0.264492 0.922219 }
  1052. }
  1053. <Vertex> 262 {
  1054. -0.531754 1.1309 1.91065
  1055. <Normal> { -0.253352 0.151336 0.944191 }
  1056. }
  1057. <Vertex> 263 {
  1058. -0.537037 0.899998 1.92963
  1059. <Normal> { -0.254464 -0.045461 0.94834 }
  1060. }
  1061. <Vertex> 264 {
  1062. -0.825153 2.13785 1.40492
  1063. <Normal> { -0.451472 0.416758 0.779976 }
  1064. }
  1065. <Vertex> 265 {
  1066. -0.884554 1.87778 1.50606
  1067. <Normal> { -0.457255 0.389977 0.789969 }
  1068. }
  1069. <Vertex> 266 {
  1070. -0.936898 1.62188 1.59519
  1071. <Normal> { -0.466564 0.341463 0.806036 }
  1072. }
  1073. <Vertex> 267 {
  1074. -0.978656 1.37222 1.66628
  1075. <Normal> { -0.478349 0.264998 0.826384 }
  1076. }
  1077. <Vertex> 268 {
  1078. -1.0063 1.1309 1.71335
  1079. <Normal> { -0.489793 0.151644 0.846149 }
  1080. }
  1081. <Vertex> 269 {
  1082. -1.0163 0.899998 1.73037
  1083. <Normal> { -0.491959 -0.0455516 0.849882 }
  1084. }
  1085. <Vertex> 270 {
  1086. -1.15293 2.13785 1.15293
  1087. <Normal> { -0.637223 0.417049 0.637224 }
  1088. }
  1089. <Vertex> 271 {
  1090. -1.23593 1.87778 1.23593
  1091. <Normal> { -0.6454 0.390243 0.6454 }
  1092. }
  1093. <Vertex> 272 {
  1094. -1.30906 1.62187 1.30906
  1095. <Normal> { -0.65855 0.341711 0.65855 }
  1096. }
  1097. <Vertex> 273 {
  1098. -1.36741 1.37222 1.36741
  1099. <Normal> { -0.675201 0.265205 0.675201 }
  1100. }
  1101. <Vertex> 274 {
  1102. -1.40603 1.1309 1.40603
  1103. <Normal> { -0.691379 0.151761 0.691379 }
  1104. }
  1105. <Vertex> 275 {
  1106. -1.42 0.899999 1.42
  1107. <Normal> { -0.694434 -0.0455937 0.694434 }
  1108. }
  1109. <Vertex> 276 {
  1110. -1.40492 2.13785 0.825155
  1111. <Normal> { -0.779975 0.416762 0.451471 }
  1112. }
  1113. <Vertex> 277 {
  1114. -1.50606 1.87778 0.884556
  1115. <Normal> { -0.789971 0.389969 0.457257 }
  1116. }
  1117. <Vertex> 278 {
  1118. -1.59519 1.62188 0.9369
  1119. <Normal> { -0.806037 0.341461 0.466564 }
  1120. }
  1121. <Vertex> 279 {
  1122. -1.66628 1.37222 0.978657
  1123. <Normal> { -0.826383 0.265001 0.478347 }
  1124. }
  1125. <Vertex> 280 {
  1126. -1.71335 1.1309 1.0063
  1127. <Normal> { -0.846151 0.151639 0.489794 }
  1128. }
  1129. <Vertex> 281 {
  1130. -1.73037 0.899999 1.0163
  1131. <Normal> { -0.849881 -0.045557 0.491958 }
  1132. }
  1133. <Vertex> 282 {
  1134. -1.56671 2.13785 0.436034
  1135. <Normal> { -0.870608 0.416048 0.233587 }
  1136. }
  1137. <Vertex> 283 {
  1138. -1.67949 1.87778 0.467423
  1139. <Normal> { -0.88172 0.389294 0.236573 }
  1140. }
  1141. <Vertex> 284 {
  1142. -1.77888 1.62187 0.495083
  1143. <Normal> { -0.899594 0.340843 0.24137 }
  1144. }
  1145. <Vertex> 285 {
  1146. -1.85816 1.37222 0.517148
  1147. <Normal> { -0.922219 0.264496 0.24745 }
  1148. }
  1149. <Vertex> 286 {
  1150. -1.91065 1.1309 0.531755
  1151. <Normal> { -0.944189 0.151343 0.253352 }
  1152. }
  1153. <Vertex> 287 {
  1154. -1.92963 0.899999 0.537038
  1155. <Normal> { -0.948341 -0.0454615 0.254464 }
  1156. }
  1157. <Vertex> 288 {
  1158. -1.62384 2.13785 2.06431e-06
  1159. <Normal> { -0.901778 0.415628 4.52623e-07 }
  1160. }
  1161. <Vertex> 289 {
  1162. -1.74074 1.87778 1.81318e-06
  1163. <Normal> { -0.91327 0.38888 5.36442e-07 }
  1164. }
  1165. <Vertex> 290 {
  1166. -1.84375 1.62187 1.56608e-06
  1167. <Normal> { -0.931739 0.340477 2.01724e-06 }
  1168. }
  1169. <Vertex> 291 {
  1170. -1.92593 1.37222 1.32501e-06
  1171. <Normal> { -0.95512 0.264195 1.71363e-06 }
  1172. }
  1173. <Vertex> 292 {
  1174. -1.98032 1.1309 1.092e-06
  1175. <Normal> { -0.977827 0.151157 -1.75089e-07 }
  1176. }
  1177. <Vertex> 293 {
  1178. -2 0.9 8.69039e-07
  1179. <Normal> { -0.982114 -0.0454071 2.16067e-07 }
  1180. }
  1181. <Vertex> 294 {
  1182. -1.56671 2.13785 -0.43603
  1183. <Normal> { -0.870606 0.416052 -0.233585 }
  1184. }
  1185. <Vertex> 295 {
  1186. -1.67949 1.87778 -0.467419
  1187. <Normal> { -0.881722 0.38929 -0.236573 }
  1188. }
  1189. <Vertex> 296 {
  1190. -1.77888 1.62188 -0.495079
  1191. <Normal> { -0.899593 0.340848 -0.241369 }
  1192. }
  1193. <Vertex> 297 {
  1194. -1.85816 1.37222 -0.517146
  1195. <Normal> { -0.922218 0.264493 -0.247449 }
  1196. }
  1197. <Vertex> 298 {
  1198. -1.91065 1.1309 -0.531753
  1199. <Normal> { -0.944191 0.151337 -0.253352 }
  1200. }
  1201. <Vertex> 299 {
  1202. -1.92963 0.900001 -0.537036
  1203. <Normal> { -0.94834 -0.04546 -0.254464 }
  1204. }
  1205. <Vertex> 300 {
  1206. -1.40492 2.13785 -0.825151
  1207. <Normal> { -0.779976 0.416759 -0.451471 }
  1208. }
  1209. <Vertex> 301 {
  1210. -1.50606 1.87778 -0.884552
  1211. <Normal> { -0.789969 0.389978 -0.457254 }
  1212. }
  1213. <Vertex> 302 {
  1214. -1.59519 1.62188 -0.936896
  1215. <Normal> { -0.806035 0.341464 -0.466563 }
  1216. }
  1217. <Vertex> 303 {
  1218. -1.66628 1.37222 -0.978655
  1219. <Normal> { -0.826383 0.264999 -0.478349 }
  1220. }
  1221. <Vertex> 304 {
  1222. -1.71335 1.1309 -1.0063
  1223. <Normal> { -0.846149 0.151645 -0.489793 }
  1224. }
  1225. <Vertex> 305 {
  1226. -1.73037 0.900001 -1.0163
  1227. <Normal> { -0.849882 -0.0455504 -0.491959 }
  1228. }
  1229. <Vertex> 306 {
  1230. -1.15293 2.13785 -1.15293
  1231. <Normal> { -0.637223 0.41705 -0.637222 }
  1232. }
  1233. <Vertex> 307 {
  1234. -1.23593 1.87778 -1.23593
  1235. <Normal> { -0.645399 0.390244 -0.6454 }
  1236. }
  1237. <Vertex> 308 {
  1238. -1.30906 1.62187 -1.30906
  1239. <Normal> { -0.65855 0.341712 -0.65855 }
  1240. }
  1241. <Vertex> 309 {
  1242. -1.36741 1.37222 -1.36741
  1243. <Normal> { -0.675201 0.265207 -0.6752 }
  1244. }
  1245. <Vertex> 310 {
  1246. -1.40603 1.1309 -1.40603
  1247. <Normal> { -0.691379 0.151762 -0.691379 }
  1248. }
  1249. <Vertex> 311 {
  1250. -1.42 0.900001 -1.42
  1251. <Normal> { -0.694434 -0.0455926 -0.694434 }
  1252. }
  1253. <Vertex> 312 {
  1254. -0.825153 2.13785 -1.40492
  1255. <Normal> { -0.45147 0.416763 -0.779975 }
  1256. }
  1257. <Vertex> 313 {
  1258. -0.884554 1.87778 -1.50606
  1259. <Normal> { -0.457257 0.389971 -0.78997 }
  1260. }
  1261. <Vertex> 314 {
  1262. -0.936898 1.62188 -1.59519
  1263. <Normal> { -0.466563 0.341462 -0.806037 }
  1264. }
  1265. <Vertex> 315 {
  1266. -0.978656 1.37222 -1.66628
  1267. <Normal> { -0.478346 0.265003 -0.826382 }
  1268. }
  1269. <Vertex> 316 {
  1270. -1.0063 1.1309 -1.71335
  1271. <Normal> { -0.489794 0.15164 -0.84615 }
  1272. }
  1273. <Vertex> 317 {
  1274. -1.0163 0.900002 -1.73037
  1275. <Normal> { -0.491958 -0.0455559 -0.849881 }
  1276. }
  1277. <Vertex> 318 {
  1278. -0.436032 2.13785 -1.56671
  1279. <Normal> { -0.233586 0.416049 -0.870607 }
  1280. }
  1281. <Vertex> 319 {
  1282. -0.467421 1.87778 -1.67949
  1283. <Normal> { -0.236573 0.389295 -0.88172 }
  1284. }
  1285. <Vertex> 320 {
  1286. -0.495081 1.62187 -1.77888
  1287. <Normal> { -0.24137 0.340844 -0.899594 }
  1288. }
  1289. <Vertex> 321 {
  1290. -0.517147 1.37222 -1.85816
  1291. <Normal> { -0.247449 0.264498 -0.922219 }
  1292. }
  1293. <Vertex> 322 {
  1294. -0.531754 1.1309 -1.91065
  1295. <Normal> { -0.253352 0.151344 -0.944188 }
  1296. }
  1297. <Vertex> 323 {
  1298. -0.537037 0.900002 -1.92963
  1299. <Normal> { -0.254464 -0.0454605 -0.948341 }
  1300. }
  1301. <Vertex> 324 {
  1302. 0 2.13785 -1.62384
  1303. <Normal> { 1.86265e-08 0.415629 -0.901777 }
  1304. }
  1305. <Vertex> 325 {
  1306. 0 1.87778 -1.74074
  1307. <Normal> { -1.24797e-07 0.388881 -0.91327 }
  1308. }
  1309. <Vertex> 326 {
  1310. 0 1.62187 -1.84375
  1311. <Normal> { -1.68197e-06 0.340478 -0.931739 }
  1312. }
  1313. <Vertex> 327 {
  1314. 0 1.37222 -1.92593
  1315. <Normal> { -1.46776e-06 0.264196 -0.95512 }
  1316. }
  1317. <Vertex> 328 {
  1318. 0 1.1309 -1.98032
  1319. <Normal> { 3.01749e-07 0.151158 -0.977827 }
  1320. }
  1321. <Vertex> 329 {
  1322. 0 0.900002 -2
  1323. <Normal> { -2.68221e-07 -0.0454063 -0.982114 }
  1324. }
  1325. <Vertex> 330 {
  1326. 0.436032 2.13785 -1.56671
  1327. <Normal> { 0.233586 0.416052 -0.870606 }
  1328. }
  1329. <Vertex> 331 {
  1330. 0.467421 1.87778 -1.67949
  1331. <Normal> { 0.236574 0.38929 -0.881721 }
  1332. }
  1333. <Vertex> 332 {
  1334. 0.495081 1.62188 -1.77888
  1335. <Normal> { 0.241369 0.340848 -0.899592 }
  1336. }
  1337. <Vertex> 333 {
  1338. 0.517147 1.37222 -1.85816
  1339. <Normal> { 0.247449 0.264493 -0.922218 }
  1340. }
  1341. <Vertex> 334 {
  1342. 0.531754 1.1309 -1.91065
  1343. <Normal> { 0.253352 0.151338 -0.944191 }
  1344. }
  1345. <Vertex> 335 {
  1346. 0.537037 0.900002 -1.92963
  1347. <Normal> { 0.254464 -0.0454595 -0.94834 }
  1348. }
  1349. <Vertex> 336 {
  1350. 0.825153 2.13785 -1.40492
  1351. <Normal> { 0.451472 0.41676 -0.779976 }
  1352. }
  1353. <Vertex> 337 {
  1354. 0.884554 1.87778 -1.50606
  1355. <Normal> { 0.457255 0.389978 -0.789968 }
  1356. }
  1357. <Vertex> 338 {
  1358. 0.936898 1.62188 -1.59519
  1359. <Normal> { 0.466564 0.341464 -0.806035 }
  1360. }
  1361. <Vertex> 339 {
  1362. 0.978656 1.37222 -1.66628
  1363. <Normal> { 0.478349 0.264999 -0.826383 }
  1364. }
  1365. <Vertex> 340 {
  1366. 1.0063 1.1309 -1.71335
  1367. <Normal> { 0.489793 0.151646 -0.846149 }
  1368. }
  1369. <Vertex> 341 {
  1370. 1.0163 0.900002 -1.73037
  1371. <Normal> { 0.491959 -0.0455502 -0.849882 }
  1372. }
  1373. <Vertex> 342 {
  1374. 1.15293 2.13785 -1.15293
  1375. <Normal> { 0.637223 0.41705 -0.637223 }
  1376. }
  1377. <Vertex> 343 {
  1378. 1.23593 1.87778 -1.23593
  1379. <Normal> { 0.6454 0.390244 -0.645399 }
  1380. }
  1381. <Vertex> 344 {
  1382. 1.30906 1.62187 -1.30906
  1383. <Normal> { 0.65855 0.341712 -0.65855 }
  1384. }
  1385. <Vertex> 345 {
  1386. 1.36741 1.37222 -1.36741
  1387. <Normal> { 0.675201 0.265207 -0.675201 }
  1388. }
  1389. <Vertex> 346 {
  1390. 1.40603 1.1309 -1.40603
  1391. <Normal> { 0.691379 0.151762 -0.691378 }
  1392. }
  1393. <Vertex> 347 {
  1394. 1.42 0.900001 -1.42
  1395. <Normal> { 0.694434 -0.0455926 -0.694434 }
  1396. }
  1397. <Vertex> 348 {
  1398. 1.40492 2.13785 -0.825151
  1399. <Normal> { 0.779975 0.416763 -0.45147 }
  1400. }
  1401. <Vertex> 349 {
  1402. 1.50606 1.87778 -0.884552
  1403. <Normal> { 0.789971 0.38997 -0.457257 }
  1404. }
  1405. <Vertex> 350 {
  1406. 1.59519 1.62188 -0.936896
  1407. <Normal> { 0.806037 0.341462 -0.466563 }
  1408. }
  1409. <Vertex> 351 {
  1410. 1.66628 1.37222 -0.978655
  1411. <Normal> { 0.826383 0.265002 -0.478346 }
  1412. }
  1413. <Vertex> 352 {
  1414. 1.71335 1.1309 -1.0063
  1415. <Normal> { 0.846151 0.15164 -0.489794 }
  1416. }
  1417. <Vertex> 353 {
  1418. 1.73037 0.900001 -1.0163
  1419. <Normal> { 0.849881 -0.0455562 -0.491958 }
  1420. }
  1421. <Vertex> 354 {
  1422. 1.56671 2.13785 -0.43603
  1423. <Normal> { 0.870608 0.416049 -0.233586 }
  1424. }
  1425. <Vertex> 355 {
  1426. 1.67949 1.87778 -0.467419
  1427. <Normal> { 0.88172 0.389295 -0.236572 }
  1428. }
  1429. <Vertex> 356 {
  1430. 1.77888 1.62187 -0.495079
  1431. <Normal> { 0.899594 0.340843 -0.241369 }
  1432. }
  1433. <Vertex> 357 {
  1434. 1.85816 1.37222 -0.517146
  1435. <Normal> { 0.922219 0.264497 -0.247449 }
  1436. }
  1437. <Vertex> 358 {
  1438. 1.91065 1.1309 -0.531753
  1439. <Normal> { 0.944189 0.151344 -0.253352 }
  1440. }
  1441. <Vertex> 359 {
  1442. 1.92963 0.900001 -0.537036
  1443. <Normal> { 0.948341 -0.045461 -0.254464 }
  1444. }
  1445. <Vertex> 360 {
  1446. 1.96296 0.693403 6.69549e-07
  1447. <Normal> { 0.925004 -0.323824 2.04891e-08 }
  1448. }
  1449. <Vertex> 361 {
  1450. 1.8939 0.693402 0.527093
  1451. <Normal> { 0.893085 -0.324155 0.239621 }
  1452. }
  1453. <Vertex> 362 {
  1454. 1.87037 0.522222 5.04257e-07
  1455. <Normal> { 0.811697 -0.563598 -4.33996e-07 }
  1456. }
  1457. <Vertex> 363 {
  1458. 1.80456 0.522222 0.502229
  1459. <Normal> { 0.783504 -0.564055 0.210192 }
  1460. }
  1461. <Vertex> 364 {
  1462. 1.75 0.384375 3.71152e-07
  1463. <Normal> { 0.705045 -0.700196 -5.92321e-07 }
  1464. }
  1465. <Vertex> 365 {
  1466. 1.68843 0.384375 0.469907
  1467. <Normal> { 0.680419 -0.70063 0.18252 }
  1468. }
  1469. <Vertex> 366 {
  1470. 1.62963 0.277778 2.68222e-07
  1471. <Normal> { 0.649875 -0.755123 -5.04777e-07 }
  1472. }
  1473. <Vertex> 367 {
  1474. 1.57229 0.277778 0.437586
  1475. <Normal> { 0.627114 -0.755522 0.168214 }
  1476. }
  1477. <Vertex> 368 {
  1478. 1.53704 0.200347 1.93455e-07
  1479. <Normal> { 0.720151 -0.676876 -1.52737e-07 }
  1480. }
  1481. <Vertex> 369 {
  1482. 1.48296 0.200347 0.412723
  1483. <Normal> { 0.695027 -0.677307 0.186445 }
  1484. }
  1485. <Vertex> 370 {
  1486. 1.5 0.15 1.4484e-07
  1487. <Normal> { 0.872112 -0.448879 9.51812e-07 }
  1488. }
  1489. <Vertex> 371 {
  1490. 1.44722 0.15 0.402778
  1491. <Normal> { 0.841914 -0.449332 0.225884 }
  1492. }
  1493. <Vertex> 372 {
  1494. 1.69833 0.693402 0.997477
  1495. <Normal> { 0.800193 -0.324708 0.463186 }
  1496. }
  1497. <Vertex> 373 {
  1498. 1.61822 0.522221 0.950426
  1499. <Normal> { 0.701722 -0.564827 0.406167 }
  1500. }
  1501. <Vertex> 374 {
  1502. 1.51407 0.384374 0.889259
  1503. <Normal> { 0.609189 -0.70136 0.35259 }
  1504. }
  1505. <Vertex> 375 {
  1506. 1.40993 0.277777 0.828093
  1507. <Normal> { 0.561374 -0.756191 0.324906 }
  1508. }
  1509. <Vertex> 376 {
  1510. 1.32982 0.200346 0.781043
  1511. <Normal> { 0.622326 -0.678019 0.360193 }
  1512. }
  1513. <Vertex> 377 {
  1514. 1.29778 0.149999 0.762222
  1515. <Normal> { 0.754207 -0.450045 0.436558 }
  1516. }
  1517. <Vertex> 378 {
  1518. 1.3937 0.693402 1.3937
  1519. <Normal> { 0.653776 -0.324936 0.653776 }
  1520. }
  1521. <Vertex> 379 {
  1522. 1.32796 0.522221 1.32796
  1523. <Normal> { 0.573224 -0.56513 0.573224 }
  1524. }
  1525. <Vertex> 380 {
  1526. 1.2425 0.384374 1.2425
  1527. <Normal> { 0.497559 -0.701648 0.49756 }
  1528. }
  1529. <Vertex> 381 {
  1530. 1.15704 0.277777 1.15704
  1531. <Normal> { 0.458469 -0.756458 0.458469 }
  1532. }
  1533. <Vertex> 382 {
  1534. 1.0913 0.200346 1.0913
  1535. <Normal> { 0.508298 -0.678312 0.508295 }
  1536. }
  1537. <Vertex> 383 {
  1538. 1.065 0.149999 1.065
  1539. <Normal> { 0.616156 -0.450315 0.616152 }
  1540. }
  1541. <Vertex> 384 {
  1542. 0.997476 0.693401 1.69833
  1543. <Normal> { 0.463187 -0.324711 0.800194 }
  1544. }
  1545. <Vertex> 385 {
  1546. 0.950425 0.52222 1.61822
  1547. <Normal> { 0.40617 -0.564823 0.701723 }
  1548. }
  1549. <Vertex> 386 {
  1550. 0.889259 0.384374 1.51407
  1551. <Normal> { 0.352595 -0.701356 0.609192 }
  1552. }
  1553. <Vertex> 387 {
  1554. 0.828093 0.277777 1.40993
  1555. <Normal> { 0.324909 -0.756189 0.561376 }
  1556. }
  1557. <Vertex> 388 {
  1558. 0.781043 0.200346 1.32982
  1559. <Normal> { 0.36019 -0.678019 0.622326 }
  1560. }
  1561. <Vertex> 389 {
  1562. 0.762222 0.149999 1.29778
  1563. <Normal> { 0.436561 -0.449996 0.754225 }
  1564. }
  1565. <Vertex> 390 {
  1566. 0.527092 0.693401 1.8939
  1567. <Normal> { 0.239622 -0.324153 0.893084 }
  1568. }
  1569. <Vertex> 391 {
  1570. 0.502229 0.52222 1.80456
  1571. <Normal> { 0.21019 -0.564064 0.783498 }
  1572. }
  1573. <Vertex> 392 {
  1574. 0.469907 0.384373 1.68843
  1575. <Normal> { 0.182519 -0.700634 0.680415 }
  1576. }
  1577. <Vertex> 393 {
  1578. 0.437586 0.277776 1.57229
  1579. <Normal> { 0.168215 -0.755524 0.627112 }
  1580. }
  1581. <Vertex> 394 {
  1582. 0.412723 0.200346 1.48296
  1583. <Normal> { 0.18645 -0.677295 0.695034 }
  1584. }
  1585. <Vertex> 395 {
  1586. 0.402778 0.149999 1.44722
  1587. <Normal> { 0.225897 -0.449274 0.841936 }
  1588. }
  1589. <Vertex> 396 {
  1590. 0 0.693401 1.96296
  1591. <Normal> { -3.40864e-07 -0.323825 0.925004 }
  1592. }
  1593. <Vertex> 397 {
  1594. 0 0.52222 1.87037
  1595. <Normal> { -1.22935e-07 -0.563599 0.811696 }
  1596. }
  1597. <Vertex> 398 {
  1598. 0 0.384373 1.75
  1599. <Normal> { -7.82311e-08 -0.700197 0.705044 }
  1600. }
  1601. <Vertex> 399 {
  1602. 0 0.277776 1.62963
  1603. <Normal> { -2.17929e-07 -0.755124 0.649874 }
  1604. }
  1605. <Vertex> 400 {
  1606. 0 0.200346 1.53704
  1607. <Normal> { -5.02914e-07 -0.676877 0.72015 }
  1608. }
  1609. <Vertex> 401 {
  1610. 0 0.149999 1.5
  1611. <Normal> { -1.38395e-06 -0.44888 0.872112 }
  1612. }
  1613. <Vertex> 402 {
  1614. -0.527092 0.693401 1.8939
  1615. <Normal> { -0.239621 -0.324156 0.893085 }
  1616. }
  1617. <Vertex> 403 {
  1618. -0.502229 0.52222 1.80456
  1619. <Normal> { -0.210192 -0.564056 0.783504 }
  1620. }
  1621. <Vertex> 404 {
  1622. -0.469907 0.384373 1.68843
  1623. <Normal> { -0.182521 -0.70063 0.680418 }
  1624. }
  1625. <Vertex> 405 {
  1626. -0.437586 0.277776 1.57229
  1627. <Normal> { -0.168215 -0.755523 0.627114 }
  1628. }
  1629. <Vertex> 406 {
  1630. -0.412723 0.200346 1.48296
  1631. <Normal> { -0.186446 -0.677308 0.695026 }
  1632. }
  1633. <Vertex> 407 {
  1634. -0.402778 0.149999 1.44722
  1635. <Normal> { -0.225885 -0.449332 0.841914 }
  1636. }
  1637. <Vertex> 408 {
  1638. -0.997476 0.693401 1.69833
  1639. <Normal> { -0.463186 -0.324708 0.800192 }
  1640. }
  1641. <Vertex> 409 {
  1642. -0.950425 0.52222 1.61822
  1643. <Normal> { -0.406167 -0.564827 0.701722 }
  1644. }
  1645. <Vertex> 410 {
  1646. -0.889259 0.384374 1.51407
  1647. <Normal> { -0.352591 -0.70136 0.609188 }
  1648. }
  1649. <Vertex> 411 {
  1650. -0.828093 0.277777 1.40993
  1651. <Normal> { -0.324907 -0.756192 0.561374 }
  1652. }
  1653. <Vertex> 412 {
  1654. -0.781043 0.200346 1.32982
  1655. <Normal> { -0.360194 -0.67802 0.622325 }
  1656. }
  1657. <Vertex> 413 {
  1658. -0.762222 0.149999 1.29778
  1659. <Normal> { -0.436559 -0.450046 0.754206 }
  1660. }
  1661. <Vertex> 414 {
  1662. -1.3937 0.693402 1.3937
  1663. <Normal> { -0.653776 -0.324936 0.653776 }
  1664. }
  1665. <Vertex> 415 {
  1666. -1.32796 0.522221 1.32796
  1667. <Normal> { -0.573225 -0.56513 0.573223 }
  1668. }
  1669. <Vertex> 416 {
  1670. -1.2425 0.384374 1.2425
  1671. <Normal> { -0.497561 -0.701648 0.497559 }
  1672. }
  1673. <Vertex> 417 {
  1674. -1.15704 0.277777 1.15704
  1675. <Normal> { -0.45847 -0.756457 0.458469 }
  1676. }
  1677. <Vertex> 418 {
  1678. -1.0913 0.200346 1.0913
  1679. <Normal> { -0.508296 -0.678312 0.508298 }
  1680. }
  1681. <Vertex> 419 {
  1682. -1.065 0.149999 1.065
  1683. <Normal> { -0.616152 -0.450315 0.616155 }
  1684. }
  1685. <Vertex> 420 {
  1686. -1.69833 0.693402 0.997477
  1687. <Normal> { -0.800194 -0.324711 0.463186 }
  1688. }
  1689. <Vertex> 421 {
  1690. -1.61822 0.522221 0.950426
  1691. <Normal> { -0.701723 -0.564823 0.406169 }
  1692. }
  1693. <Vertex> 422 {
  1694. -1.51407 0.384374 0.889259
  1695. <Normal> { -0.609193 -0.701355 0.352594 }
  1696. }
  1697. <Vertex> 423 {
  1698. -1.40993 0.277777 0.828093
  1699. <Normal> { -0.561377 -0.756188 0.324908 }
  1700. }
  1701. <Vertex> 424 {
  1702. -1.32982 0.200346 0.781043
  1703. <Normal> { -0.622327 -0.678019 0.36019 }
  1704. }
  1705. <Vertex> 425 {
  1706. -1.29778 0.149999 0.762222
  1707. <Normal> { -0.754225 -0.449996 0.436561 }
  1708. }
  1709. <Vertex> 426 {
  1710. -1.8939 0.693402 0.527093
  1711. <Normal> { -0.893084 -0.324152 0.239622 }
  1712. }
  1713. <Vertex> 427 {
  1714. -1.80456 0.522222 0.502229
  1715. <Normal> { -0.783499 -0.564063 0.21019 }
  1716. }
  1717. <Vertex> 428 {
  1718. -1.68843 0.384375 0.469907
  1719. <Normal> { -0.680416 -0.700634 0.182519 }
  1720. }
  1721. <Vertex> 429 {
  1722. -1.57229 0.277778 0.437586
  1723. <Normal> { -0.627113 -0.755523 0.168214 }
  1724. }
  1725. <Vertex> 430 {
  1726. -1.48296 0.200347 0.412723
  1727. <Normal> { -0.695035 -0.677294 0.18645 }
  1728. }
  1729. <Vertex> 431 {
  1730. -1.44722 0.15 0.402778
  1731. <Normal> { -0.841937 -0.449274 0.225896 }
  1732. }
  1733. <Vertex> 432 {
  1734. -1.96296 0.693403 6.69549e-07
  1735. <Normal> { -0.925004 -0.323824 -6.7614e-07 }
  1736. }
  1737. <Vertex> 433 {
  1738. -1.87037 0.522222 5.04257e-07
  1739. <Normal> { -0.811697 -0.563598 -6.6869e-07 }
  1740. }
  1741. <Vertex> 434 {
  1742. -1.75 0.384375 3.71152e-07
  1743. <Normal> { -0.705045 -0.700196 -7.3947e-07 }
  1744. }
  1745. <Vertex> 435 {
  1746. -1.62963 0.277778 2.68222e-07
  1747. <Normal> { -0.649875 -0.755123 -9.33185e-07 }
  1748. }
  1749. <Vertex> 436 {
  1750. -1.53704 0.200347 1.93455e-07
  1751. <Normal> { -0.720151 -0.676876 -1.15484e-06 }
  1752. }
  1753. <Vertex> 437 {
  1754. -1.5 0.15 1.4484e-07
  1755. <Normal> { -0.872112 -0.448879 -1.82353e-06 }
  1756. }
  1757. <Vertex> 438 {
  1758. -1.8939 0.693404 -0.527091
  1759. <Normal> { -0.893085 -0.324155 -0.239622 }
  1760. }
  1761. <Vertex> 439 {
  1762. -1.80456 0.522222 -0.502228
  1763. <Normal> { -0.783504 -0.564054 -0.210193 }
  1764. }
  1765. <Vertex> 440 {
  1766. -1.68843 0.384375 -0.469907
  1767. <Normal> { -0.680419 -0.70063 -0.182521 }
  1768. }
  1769. <Vertex> 441 {
  1770. -1.57229 0.277778 -0.437586
  1771. <Normal> { -0.627114 -0.755522 -0.168215 }
  1772. }
  1773. <Vertex> 442 {
  1774. -1.48296 0.200347 -0.412723
  1775. <Normal> { -0.695027 -0.677307 -0.186447 }
  1776. }
  1777. <Vertex> 443 {
  1778. -1.44722 0.15 -0.402778
  1779. <Normal> { -0.841914 -0.449331 -0.225885 }
  1780. }
  1781. <Vertex> 444 {
  1782. -1.69833 0.693404 -0.997475
  1783. <Normal> { -0.800193 -0.324707 -0.463186 }
  1784. }
  1785. <Vertex> 445 {
  1786. -1.61822 0.522223 -0.950425
  1787. <Normal> { -0.701722 -0.564826 -0.406168 }
  1788. }
  1789. <Vertex> 446 {
  1790. -1.51407 0.384376 -0.889259
  1791. <Normal> { -0.609189 -0.701359 -0.352591 }
  1792. }
  1793. <Vertex> 447 {
  1794. -1.40993 0.277779 -0.828093
  1795. <Normal> { -0.561374 -0.756191 -0.324907 }
  1796. }
  1797. <Vertex> 448 {
  1798. -1.32982 0.200348 -0.781043
  1799. <Normal> { -0.622326 -0.678018 -0.360194 }
  1800. }
  1801. <Vertex> 449 {
  1802. -1.29778 0.150001 -0.762222
  1803. <Normal> { -0.754207 -0.450045 -0.436559 }
  1804. }
  1805. <Vertex> 450 {
  1806. -1.3937 0.693404 -1.3937
  1807. <Normal> { -0.653776 -0.324935 -0.653776 }
  1808. }
  1809. <Vertex> 451 {
  1810. -1.32796 0.522223 -1.32796
  1811. <Normal> { -0.573224 -0.565129 -0.573226 }
  1812. }
  1813. <Vertex> 452 {
  1814. -1.2425 0.384376 -1.2425
  1815. <Normal> { -0.497559 -0.701647 -0.497561 }
  1816. }
  1817. <Vertex> 453 {
  1818. -1.15704 0.277779 -1.15704
  1819. <Normal> { -0.458469 -0.756457 -0.45847 }
  1820. }
  1821. <Vertex> 454 {
  1822. -1.0913 0.200348 -1.0913
  1823. <Normal> { -0.508298 -0.678311 -0.508296 }
  1824. }
  1825. <Vertex> 455 {
  1826. -1.065 0.150001 -1.065
  1827. <Normal> { -0.616156 -0.450314 -0.616153 }
  1828. }
  1829. <Vertex> 456 {
  1830. -0.997476 0.693405 -1.69833
  1831. <Normal> { -0.463187 -0.32471 -0.800195 }
  1832. }
  1833. <Vertex> 457 {
  1834. -0.950425 0.522224 -1.61822
  1835. <Normal> { -0.40617 -0.564821 -0.701724 }
  1836. }
  1837. <Vertex> 458 {
  1838. -0.889259 0.384376 -1.51407
  1839. <Normal> { -0.352595 -0.701355 -0.609194 }
  1840. }
  1841. <Vertex> 459 {
  1842. -0.828093 0.277779 -1.40993
  1843. <Normal> { -0.324909 -0.756188 -0.561378 }
  1844. }
  1845. <Vertex> 460 {
  1846. -0.781043 0.200348 -1.32982
  1847. <Normal> { -0.36019 -0.678018 -0.622328 }
  1848. }
  1849. <Vertex> 461 {
  1850. -0.762222 0.150001 -1.29778
  1851. <Normal> { -0.436561 -0.449995 -0.754226 }
  1852. }
  1853. <Vertex> 462 {
  1854. -0.527092 0.693405 -1.8939
  1855. <Normal> { -0.239622 -0.324151 -0.893085 }
  1856. }
  1857. <Vertex> 463 {
  1858. -0.502229 0.522224 -1.80456
  1859. <Normal> { -0.21019 -0.564062 -0.783499 }
  1860. }
  1861. <Vertex> 464 {
  1862. -0.469907 0.384377 -1.68843
  1863. <Normal> { -0.182519 -0.700633 -0.680416 }
  1864. }
  1865. <Vertex> 465 {
  1866. -0.437586 0.27778 -1.57229
  1867. <Normal> { -0.168215 -0.755523 -0.627114 }
  1868. }
  1869. <Vertex> 466 {
  1870. -0.412723 0.200348 -1.48296
  1871. <Normal> { -0.18645 -0.677293 -0.695036 }
  1872. }
  1873. <Vertex> 467 {
  1874. -0.402778 0.150001 -1.44722
  1875. <Normal> { -0.225897 -0.449273 -0.841937 }
  1876. }
  1877. <Vertex> 468 {
  1878. 0 0.693405 -1.96296
  1879. <Normal> { 3.50177e-07 -0.323823 -0.925005 }
  1880. }
  1881. <Vertex> 469 {
  1882. 0 0.522224 -1.87037
  1883. <Normal> { 1.21072e-07 -0.563597 -0.811697 }
  1884. }
  1885. <Vertex> 470 {
  1886. 0 0.384377 -1.75
  1887. <Normal> { 7.82311e-08 -0.700195 -0.705045 }
  1888. }
  1889. <Vertex> 471 {
  1890. 0 0.27778 -1.62963
  1891. <Normal> { 2.16067e-07 -0.755123 -0.649875 }
  1892. }
  1893. <Vertex> 472 {
  1894. 0 0.200348 -1.53704
  1895. <Normal> { 5.01052e-07 -0.676875 -0.720152 }
  1896. }
  1897. <Vertex> 473 {
  1898. 0 0.150001 -1.5
  1899. <Normal> { 1.39326e-06 -0.448879 -0.872113 }
  1900. }
  1901. <Vertex> 474 {
  1902. 0.527092 0.693405 -1.8939
  1903. <Normal> { 0.239621 -0.324154 -0.893085 }
  1904. }
  1905. <Vertex> 475 {
  1906. 0.502229 0.522224 -1.80456
  1907. <Normal> { 0.210192 -0.564054 -0.783505 }
  1908. }
  1909. <Vertex> 476 {
  1910. 0.469907 0.384377 -1.68843
  1911. <Normal> { 0.182521 -0.700629 -0.68042 }
  1912. }
  1913. <Vertex> 477 {
  1914. 0.437586 0.27778 -1.57229
  1915. <Normal> { 0.168215 -0.755522 -0.627115 }
  1916. }
  1917. <Vertex> 478 {
  1918. 0.412723 0.200348 -1.48296
  1919. <Normal> { 0.186446 -0.677306 -0.695028 }
  1920. }
  1921. <Vertex> 479 {
  1922. 0.402778 0.150001 -1.44722
  1923. <Normal> { 0.225885 -0.449331 -0.841915 }
  1924. }
  1925. <Vertex> 480 {
  1926. 0.997476 0.693405 -1.69833
  1927. <Normal> { 0.463186 -0.324707 -0.800193 }
  1928. }
  1929. <Vertex> 481 {
  1930. 0.950425 0.522224 -1.61822
  1931. <Normal> { 0.406167 -0.564826 -0.701723 }
  1932. }
  1933. <Vertex> 482 {
  1934. 0.889259 0.384376 -1.51407
  1935. <Normal> { 0.352591 -0.701359 -0.60919 }
  1936. }
  1937. <Vertex> 483 {
  1938. 0.828093 0.277779 -1.40993
  1939. <Normal> { 0.324907 -0.756191 -0.561375 }
  1940. }
  1941. <Vertex> 484 {
  1942. 0.781043 0.200348 -1.32982
  1943. <Normal> { 0.360194 -0.678018 -0.622327 }
  1944. }
  1945. <Vertex> 485 {
  1946. 0.762222 0.150001 -1.29778
  1947. <Normal> { 0.436559 -0.450044 -0.754207 }
  1948. }
  1949. <Vertex> 486 {
  1950. 1.3937 0.693404 -1.3937
  1951. <Normal> { 0.653776 -0.324935 -0.653777 }
  1952. }
  1953. <Vertex> 487 {
  1954. 1.32796 0.522223 -1.32796
  1955. <Normal> { 0.573225 -0.565129 -0.573224 }
  1956. }
  1957. <Vertex> 488 {
  1958. 1.2425 0.384376 -1.2425
  1959. <Normal> { 0.497561 -0.701647 -0.49756 }
  1960. }
  1961. <Vertex> 489 {
  1962. 1.15704 0.277779 -1.15704
  1963. <Normal> { 0.45847 -0.756457 -0.45847 }
  1964. }
  1965. <Vertex> 490 {
  1966. 1.0913 0.200348 -1.0913
  1967. <Normal> { 0.508296 -0.678311 -0.508299 }
  1968. }
  1969. <Vertex> 491 {
  1970. 1.065 0.150001 -1.065
  1971. <Normal> { 0.616152 -0.450314 -0.616156 }
  1972. }
  1973. <Vertex> 492 {
  1974. 1.69833 0.693404 -0.997475
  1975. <Normal> { 0.800194 -0.32471 -0.463187 }
  1976. }
  1977. <Vertex> 493 {
  1978. 1.61822 0.522223 -0.950425
  1979. <Normal> { 0.701723 -0.564822 -0.40617 }
  1980. }
  1981. <Vertex> 494 {
  1982. 1.51407 0.384376 -0.889259
  1983. <Normal> { 0.609193 -0.701355 -0.352595 }
  1984. }
  1985. <Vertex> 495 {
  1986. 1.40993 0.277779 -0.828093
  1987. <Normal> { 0.561377 -0.756188 -0.324909 }
  1988. }
  1989. <Vertex> 496 {
  1990. 1.32982 0.200348 -0.781043
  1991. <Normal> { 0.622327 -0.678018 -0.360191 }
  1992. }
  1993. <Vertex> 497 {
  1994. 1.29778 0.150001 -0.762222
  1995. <Normal> { 0.754225 -0.449995 -0.436562 }
  1996. }
  1997. <Vertex> 498 {
  1998. 1.8939 0.693404 -0.527091
  1999. <Normal> { 0.893085 -0.324152 -0.239622 }
  2000. }
  2001. <Vertex> 499 {
  2002. 1.80456 0.522222 -0.502228
  2003. <Normal> { 0.783499 -0.564063 -0.210191 }
  2004. }
  2005. <Vertex> 500 {
  2006. 1.68843 0.384375 -0.469907
  2007. <Normal> { 0.680416 -0.700634 -0.18252 }
  2008. }
  2009. <Vertex> 501 {
  2010. 1.57229 0.277778 -0.437586
  2011. <Normal> { 0.627113 -0.755523 -0.168215 }
  2012. }
  2013. <Vertex> 502 {
  2014. 1.48296 0.200347 -0.412723
  2015. <Normal> { 0.695035 -0.677294 -0.186451 }
  2016. }
  2017. <Vertex> 503 {
  2018. 1.44722 0.15 -0.402778
  2019. <Normal> { 0.841937 -0.449273 -0.225897 }
  2020. }
  2021. <Vertex> 504 {
  2022. 0.605903 0.005903 5.69993e-09
  2023. <Normal> { 0.0244549 -0.999586 -9.71952e-07 }
  2024. }
  2025. <Vertex> 505 {
  2026. 0 0 0
  2027. <Normal> { 3.88051e-11 -0.999952 -9.65204e-07 }
  2028. }
  2029. <Vertex> 506 {
  2030. 0.584584 0.00590316 -0.162696
  2031. <Normal> { 0.0235865 -0.999587 -0.00632589 }
  2032. }
  2033. <Vertex> 507 {
  2034. 1.02222 0.022222 2.14575e-08
  2035. <Normal> { 0.0663948 -0.997376 -9.49018e-07 }
  2036. }
  2037. <Vertex> 508 {
  2038. 0.986255 0.0222223 -0.274486
  2039. <Normal> { 0.0640374 -0.997382 -0.017173 }
  2040. }
  2041. <Vertex> 509 {
  2042. 1.28437 0.046875 4.52625e-08
  2043. <Normal> { 0.152098 -0.98636 -7.26897e-07 }
  2044. }
  2045. <Vertex> 510 {
  2046. 1.23918 0.0468753 -0.344878
  2047. <Normal> { 0.146703 -0.986393 -0.0393408 }
  2048. }
  2049. <Vertex> 511 {
  2050. 1.42778 0.077778 7.51024e-08
  2051. <Normal> { 0.35682 -0.91946 -1.4659e-06 }
  2052. }
  2053. <Vertex> 512 {
  2054. 1.37754 0.0777784 -0.383385
  2055. <Normal> { 0.344228 -0.919623 -0.0923205 }
  2056. }
  2057. <Vertex> 513 {
  2058. 1.48785 0.112847 1.08965e-07
  2059. <Normal> { 0.503065 -0.861731 -2.39909e-06 }
  2060. }
  2061. <Vertex> 514 {
  2062. 1.4355 0.112847 -0.399515
  2063. <Normal> { 0.485349 -0.862003 -0.130174 }
  2064. }
  2065. <Vertex> 515 {
  2066. 1.48785 0.112847 1.08965e-07
  2067. <Normal> { 0.943189 -0.308416 9.35048e-07 }
  2068. }
  2069. <Vertex> 516 {
  2070. 1.4355 0.112847 -0.399515
  2071. <Normal> { 0.910667 -0.308763 -0.244355 }
  2072. }
  2073. <Vertex> 517 {
  2074. 0.524218 0.0059033 -0.307888
  2075. <Normal> { 0.0210954 -0.999588 -0.012209 }
  2076. }
  2077. <Vertex> 518 {
  2078. 0.884412 0.0222225 -0.51944
  2079. <Normal> { 0.0572748 -0.997393 -0.0331463 }
  2080. }
  2081. <Vertex> 519 {
  2082. 1.11122 0.0468756 -0.652653
  2083. <Normal> { 0.13122 -0.986447 -0.0759391 }
  2084. }
  2085. <Vertex> 520 {
  2086. 1.23529 0.0777787 -0.725523
  2087. <Normal> { 0.307998 -0.919894 -0.178252 }
  2088. }
  2089. <Vertex> 521 {
  2090. 1.28726 0.112848 -0.756047
  2091. <Normal> { 0.434319 -0.862456 -0.251365 }
  2092. }
  2093. <Vertex> 522 {
  2094. 1.28726 0.112848 -0.756047
  2095. <Normal> { 0.815974 -0.309419 -0.472322 }
  2096. }
  2097. <Vertex> 523 {
  2098. 0.430191 0.00590342 -0.430191
  2099. <Normal> { 0.0172218 -0.999589 -0.0172228 }
  2100. }
  2101. <Vertex> 524 {
  2102. 0.725778 0.0222227 -0.725778
  2103. <Normal> { 0.0467578 -0.997397 -0.0467588 }
  2104. }
  2105. <Vertex> 525 {
  2106. 0.911906 0.0468759 -0.911906
  2107. <Normal> { 0.107129 -0.986468 -0.10713 }
  2108. }
  2109. <Vertex> 526 {
  2110. 1.01372 0.077779 -1.01372
  2111. <Normal> { 0.251492 -0.920001 -0.251492 }
  2112. }
  2113. <Vertex> 527 {
  2114. 1.05637 0.112848 -1.05637
  2115. <Normal> { 0.354658 -0.862635 -0.354658 }
  2116. }
  2117. <Vertex> 528 {
  2118. 1.05637 0.112848 -1.05637
  2119. <Normal> { 0.666662 -0.309735 -0.666664 }
  2120. }
  2121. <Vertex> 529 {
  2122. 0.307888 0.00590351 -0.524218
  2123. <Normal> { 0.0122081 -0.999588 -0.0210964 }
  2124. }
  2125. <Vertex> 530 {
  2126. 0.51944 0.0222229 -0.884412
  2127. <Normal> { 0.0331452 -0.997393 -0.0572755 }
  2128. }
  2129. <Vertex> 531 {
  2130. 0.652653 0.0468761 -1.11122
  2131. <Normal> { 0.0759392 -0.986446 -0.131223 }
  2132. }
  2133. <Vertex> 532 {
  2134. 0.725523 0.0777792 -1.23529
  2135. <Normal> { 0.178254 -0.919891 -0.308006 }
  2136. }
  2137. <Vertex> 533 {
  2138. 0.756047 0.112848 -1.28726
  2139. <Normal> { 0.251367 -0.862451 -0.434329 }
  2140. }
  2141. <Vertex> 534 {
  2142. 0.756047 0.112848 -1.28726
  2143. <Normal> { 0.472311 -0.309512 -0.815945 }
  2144. }
  2145. <Vertex> 535 {
  2146. 0.162696 0.00590356 -0.584584
  2147. <Normal> { 0.00632492 -0.999587 -0.0235874 }
  2148. }
  2149. <Vertex> 536 {
  2150. 0.274486 0.022223 -0.986255
  2151. <Normal> { 0.017172 -0.997382 -0.0640383 }
  2152. }
  2153. <Vertex> 537 {
  2154. 0.344878 0.0468762 -1.23918
  2155. <Normal> { 0.0393405 -0.986392 -0.146706 }
  2156. }
  2157. <Vertex> 538 {
  2158. 0.383385 0.0777793 -1.37754
  2159. <Normal> { 0.0923225 -0.919621 -0.344233 }
  2160. }
  2161. <Vertex> 539 {
  2162. 0.399515 0.112848 -1.4355
  2163. <Normal> { 0.130178 -0.862 -0.485352 }
  2164. }
  2165. <Vertex> 540 {
  2166. 0.399515 0.112848 -1.4355
  2167. <Normal> { 0.244342 -0.30885 -0.910642 }
  2168. }
  2169. <Vertex> 541 {
  2170. 0 0.00590358 -0.605903
  2171. <Normal> { -7.79983e-09 -0.999586 -0.0244559 }
  2172. }
  2173. <Vertex> 542 {
  2174. 0 0.022223 -1.02222
  2175. <Normal> { 1.21072e-08 -0.997376 -0.0663957 }
  2176. }
  2177. <Vertex> 543 {
  2178. 0 0.0468762 -1.28437
  2179. <Normal> { 2.23983e-07 -0.98636 -0.152099 }
  2180. }
  2181. <Vertex> 544 {
  2182. 0 0.0777794 -1.42778
  2183. <Normal> { -5.79283e-07 -0.919459 -0.356821 }
  2184. }
  2185. <Vertex> 545 {
  2186. 0 0.112848 -1.48785
  2187. <Normal> { -1.56835e-06 -0.86173 -0.503066 }
  2188. }
  2189. <Vertex> 546 {
  2190. 0 0.112848 -1.48785
  2191. <Normal> { 1.2368e-06 -0.308416 -0.943189 }
  2192. }
  2193. <Vertex> 547 {
  2194. -0.162696 0.00590356 -0.584584
  2195. <Normal> { -0.00632493 -0.999587 -0.0235874 }
  2196. }
  2197. <Vertex> 548 {
  2198. -0.274486 0.022223 -0.986255
  2199. <Normal> { -0.017172 -0.997382 -0.0640383 }
  2200. }
  2201. <Vertex> 549 {
  2202. -0.344878 0.0468762 -1.23918
  2203. <Normal> { -0.0393399 -0.986393 -0.146704 }
  2204. }
  2205. <Vertex> 550 {
  2206. -0.383385 0.0777793 -1.37754
  2207. <Normal> { -0.0923196 -0.919622 -0.344229 }
  2208. }
  2209. <Vertex> 551 {
  2210. -0.399515 0.112848 -1.4355
  2211. <Normal> { -0.130173 -0.862003 -0.48535 }
  2212. }
  2213. <Vertex> 552 {
  2214. -0.399515 0.112848 -1.4355
  2215. <Normal> { -0.244355 -0.308763 -0.910667 }
  2216. }
  2217. <Vertex> 553 {
  2218. -0.307888 0.00590351 -0.524218
  2219. <Normal> { -0.0122081 -0.999588 -0.0210964 }
  2220. }
  2221. <Vertex> 554 {
  2222. -0.51944 0.0222229 -0.884412
  2223. <Normal> { -0.0331454 -0.997393 -0.0572757 }
  2224. }
  2225. <Vertex> 555 {
  2226. -0.652653 0.0468761 -1.11122
  2227. <Normal> { -0.0759382 -0.986447 -0.131221 }
  2228. }
  2229. <Vertex> 556 {
  2230. -0.725523 0.0777792 -1.23529
  2231. <Normal> { -0.178252 -0.919894 -0.307999 }
  2232. }
  2233. <Vertex> 557 {
  2234. -0.756047 0.112848 -1.28726
  2235. <Normal> { -0.251364 -0.862456 -0.43432 }
  2236. }
  2237. <Vertex> 558 {
  2238. -0.756047 0.112848 -1.28726
  2239. <Normal> { -0.472321 -0.30942 -0.815974 }
  2240. }
  2241. <Vertex> 559 {
  2242. -0.430191 0.00590342 -0.430191
  2243. <Normal> { -0.0172218 -0.999589 -0.0172228 }
  2244. }
  2245. <Vertex> 560 {
  2246. -0.725778 0.0222227 -0.725778
  2247. <Normal> { -0.0467578 -0.997397 -0.0467588 }
  2248. }
  2249. <Vertex> 561 {
  2250. -0.911906 0.0468759 -0.911906
  2251. <Normal> { -0.107129 -0.986468 -0.10713 }
  2252. }
  2253. <Vertex> 562 {
  2254. -1.01372 0.077779 -1.01372
  2255. <Normal> { -0.251491 -0.920001 -0.251493 }
  2256. }
  2257. <Vertex> 563 {
  2258. -1.05637 0.112848 -1.05637
  2259. <Normal> { -0.354657 -0.862635 -0.354659 }
  2260. }
  2261. <Vertex> 564 {
  2262. -1.05637 0.112848 -1.05637
  2263. <Normal> { -0.666663 -0.309735 -0.666662 }
  2264. }
  2265. <Vertex> 565 {
  2266. -0.524218 0.0059033 -0.307888
  2267. <Normal> { -0.0210954 -0.999588 -0.012209 }
  2268. }
  2269. <Vertex> 566 {
  2270. -0.884412 0.0222225 -0.51944
  2271. <Normal> { -0.0572745 -0.997393 -0.0331462 }
  2272. }
  2273. <Vertex> 567 {
  2274. -1.11122 0.0468756 -0.652653
  2275. <Normal> { -0.131222 -0.986446 -0.0759401 }
  2276. }
  2277. <Vertex> 568 {
  2278. -1.23529 0.0777787 -0.725523
  2279. <Normal> { -0.308005 -0.919891 -0.178255 }
  2280. }
  2281. <Vertex> 569 {
  2282. -1.28726 0.112848 -0.756047
  2283. <Normal> { -0.434328 -0.862451 -0.251368 }
  2284. }
  2285. <Vertex> 570 {
  2286. -1.28726 0.112848 -0.756047
  2287. <Normal> { -0.815945 -0.309512 -0.472312 }
  2288. }
  2289. <Vertex> 571 {
  2290. -0.584584 0.00590316 -0.162696
  2291. <Normal> { -0.0235864 -0.999587 -0.00632588 }
  2292. }
  2293. <Vertex> 572 {
  2294. -0.986255 0.0222223 -0.274486
  2295. <Normal> { -0.0640373 -0.997382 -0.0171729 }
  2296. }
  2297. <Vertex> 573 {
  2298. -1.23918 0.0468753 -0.344878
  2299. <Normal> { -0.146705 -0.986392 -0.0393414 }
  2300. }
  2301. <Vertex> 574 {
  2302. -1.37754 0.0777784 -0.383385
  2303. <Normal> { -0.344232 -0.919621 -0.0923234 }
  2304. }
  2305. <Vertex> 575 {
  2306. -1.4355 0.112847 -0.399515
  2307. <Normal> { -0.485352 -0.862 -0.130179 }
  2308. }
  2309. <Vertex> 576 {
  2310. -1.4355 0.112847 -0.399515
  2311. <Normal> { -0.910642 -0.30885 -0.244342 }
  2312. }
  2313. <Vertex> 577 {
  2314. -0.605903 0.005903 5.69993e-09
  2315. <Normal> { -0.0244549 -0.999586 -9.56701e-07 }
  2316. }
  2317. <Vertex> 578 {
  2318. -1.02222 0.022222 2.14575e-08
  2319. <Normal> { -0.0663948 -0.997376 -9.73465e-07 }
  2320. }
  2321. <Vertex> 579 {
  2322. -1.28437 0.046875 4.52625e-08
  2323. <Normal> { -0.152098 -0.98636 -1.1716e-06 }
  2324. }
  2325. <Vertex> 580 {
  2326. -1.42778 0.077778 7.51024e-08
  2327. <Normal> { -0.35682 -0.91946 -3.07336e-07 }
  2328. }
  2329. <Vertex> 581 {
  2330. -1.48785 0.112847 1.08965e-07
  2331. <Normal> { -0.503065 -0.861731 7.30157e-07 }
  2332. }
  2333. <Vertex> 582 {
  2334. -1.48785 0.112847 1.08965e-07
  2335. <Normal> { -0.943189 -0.308416 -1.52737e-06 }
  2336. }
  2337. <Vertex> 583 {
  2338. -0.584584 0.00590284 0.162696
  2339. <Normal> { -0.0235865 -0.999587 0.00632397 }
  2340. }
  2341. <Vertex> 584 {
  2342. -0.986255 0.0222217 0.274486
  2343. <Normal> { -0.0640374 -0.997382 0.0171711 }
  2344. }
  2345. <Vertex> 585 {
  2346. -1.23918 0.0468747 0.344878
  2347. <Normal> { -0.146703 -0.986393 0.0393389 }
  2348. }
  2349. <Vertex> 586 {
  2350. -1.37754 0.0777776 0.383385
  2351. <Normal> { -0.344228 -0.919623 0.0923187 }
  2352. }
  2353. <Vertex> 587 {
  2354. -1.4355 0.112847 0.399515
  2355. <Normal> { -0.485349 -0.862003 0.130173 }
  2356. }
  2357. <Vertex> 588 {
  2358. -1.4355 0.112847 0.399515
  2359. <Normal> { -0.910667 -0.308764 0.244355 }
  2360. }
  2361. <Vertex> 589 {
  2362. -0.524218 0.0059027 0.307888
  2363. <Normal> { -0.0210954 -0.999588 0.0122071 }
  2364. }
  2365. <Vertex> 590 {
  2366. -0.884412 0.0222215 0.51944
  2367. <Normal> { -0.0572748 -0.997393 0.0331444 }
  2368. }
  2369. <Vertex> 591 {
  2370. -1.11122 0.0468744 0.652653
  2371. <Normal> { -0.13122 -0.986447 0.0759372 }
  2372. }
  2373. <Vertex> 592 {
  2374. -1.23529 0.0777773 0.725523
  2375. <Normal> { -0.307998 -0.919894 0.178251 }
  2376. }
  2377. <Vertex> 593 {
  2378. -1.28726 0.112846 0.756047
  2379. <Normal> { -0.434319 -0.862457 0.251364 }
  2380. }
  2381. <Vertex> 594 {
  2382. -1.28726 0.112846 0.756047
  2383. <Normal> { -0.815974 -0.30942 0.472321 }
  2384. }
  2385. <Vertex> 595 {
  2386. -0.430191 0.00590258 0.430191
  2387. <Normal> { -0.0172218 -0.999589 0.0172208 }
  2388. }
  2389. <Vertex> 596 {
  2390. -0.725778 0.0222213 0.725778
  2391. <Normal> { -0.0467578 -0.997397 0.0467568 }
  2392. }
  2393. <Vertex> 597 {
  2394. -0.911906 0.0468741 0.911906
  2395. <Normal> { -0.107129 -0.986468 0.107128 }
  2396. }
  2397. <Vertex> 598 {
  2398. -1.01372 0.077777 1.01372
  2399. <Normal> { -0.251492 -0.920001 0.25149 }
  2400. }
  2401. <Vertex> 599 {
  2402. -1.05637 0.112846 1.05637
  2403. <Normal> { -0.354658 -0.862635 0.354656 }
  2404. }
  2405. <Vertex> 600 {
  2406. -1.05637 0.112846 1.05637
  2407. <Normal> { -0.666662 -0.309735 0.666663 }
  2408. }
  2409. <Vertex> 601 {
  2410. -0.307888 0.00590249 0.524218
  2411. <Normal> { -0.0122081 -0.999588 0.0210944 }
  2412. }
  2413. <Vertex> 602 {
  2414. -0.51944 0.0222211 0.884412
  2415. <Normal> { -0.0331452 -0.997393 0.0572736 }
  2416. }
  2417. <Vertex> 603 {
  2418. -0.652653 0.0468739 1.11122
  2419. <Normal> { -0.0759391 -0.986446 0.131221 }
  2420. }
  2421. <Vertex> 604 {
  2422. -0.725523 0.0777768 1.23529
  2423. <Normal> { -0.178254 -0.919891 0.308004 }
  2424. }
  2425. <Vertex> 605 {
  2426. -0.756047 0.112846 1.28726
  2427. <Normal> { -0.251367 -0.862451 0.434328 }
  2428. }
  2429. <Vertex> 606 {
  2430. -0.756047 0.112846 1.28726
  2431. <Normal> { -0.472312 -0.309512 0.815945 }
  2432. }
  2433. <Vertex> 607 {
  2434. -0.162696 0.00590244 0.584584
  2435. <Normal> { -0.00632492 -0.999587 0.0235854 }
  2436. }
  2437. <Vertex> 608 {
  2438. -0.274486 0.022221 0.986255
  2439. <Normal> { -0.017172 -0.997382 0.0640364 }
  2440. }
  2441. <Vertex> 609 {
  2442. -0.344878 0.0468738 1.23918
  2443. <Normal> { -0.0393404 -0.986392 0.146704 }
  2444. }
  2445. <Vertex> 610 {
  2446. -0.383385 0.0777767 1.37754
  2447. <Normal> { -0.0923225 -0.919621 0.344231 }
  2448. }
  2449. <Vertex> 611 {
  2450. -0.399515 0.112846 1.4355
  2451. <Normal> { -0.130178 -0.862001 0.485351 }
  2452. }
  2453. <Vertex> 612 {
  2454. -0.399515 0.112846 1.4355
  2455. <Normal> { -0.244342 -0.30885 0.910642 }
  2456. }
  2457. <Vertex> 613 {
  2458. 0 0.00590242 0.605903
  2459. <Normal> { 7.567e-09 -0.999586 0.0244539 }
  2460. }
  2461. <Vertex> 614 {
  2462. 0 0.022221 1.02222
  2463. <Normal> { -1.28057e-08 -0.997376 0.0663938 }
  2464. }
  2465. <Vertex> 615 {
  2466. 0 0.0468738 1.28437
  2467. <Normal> { -2.2212e-07 -0.98636 0.152097 }
  2468. }
  2469. <Vertex> 616 {
  2470. 0 0.0777766 1.42778
  2471. <Normal> { 5.79283e-07 -0.91946 0.356819 }
  2472. }
  2473. <Vertex> 617 {
  2474. 0 0.112846 1.48785
  2475. <Normal> { 1.5609e-06 -0.861731 0.503064 }
  2476. }
  2477. <Vertex> 618 {
  2478. 0 0.112846 1.48785
  2479. <Normal> { -1.22935e-06 -0.308416 0.943189 }
  2480. }
  2481. <Vertex> 619 {
  2482. 0.162696 0.00590244 0.584584
  2483. <Normal> { 0.00632493 -0.999587 0.0235855 }
  2484. }
  2485. <Vertex> 620 {
  2486. 0.274486 0.022221 0.986255
  2487. <Normal> { 0.017172 -0.997382 0.0640364 }
  2488. }
  2489. <Vertex> 621 {
  2490. 0.344878 0.0468738 1.23918
  2491. <Normal> { 0.0393399 -0.986393 0.146702 }
  2492. }
  2493. <Vertex> 622 {
  2494. 0.383385 0.0777767 1.37754
  2495. <Normal> { 0.0923197 -0.919623 0.344227 }
  2496. }
  2497. <Vertex> 623 {
  2498. 0.399515 0.112846 1.4355
  2499. <Normal> { 0.130173 -0.862003 0.485348 }
  2500. }
  2501. <Vertex> 624 {
  2502. 0.399515 0.112846 1.4355
  2503. <Normal> { 0.244355 -0.308764 0.910667 }
  2504. }
  2505. <Vertex> 625 {
  2506. 0.307888 0.00590249 0.524218
  2507. <Normal> { 0.0122081 -0.999588 0.0210944 }
  2508. }
  2509. <Vertex> 626 {
  2510. 0.51944 0.0222211 0.884412
  2511. <Normal> { 0.0331454 -0.997393 0.0572738 }
  2512. }
  2513. <Vertex> 627 {
  2514. 0.652653 0.0468739 1.11122
  2515. <Normal> { 0.0759382 -0.986447 0.131219 }
  2516. }
  2517. <Vertex> 628 {
  2518. 0.725523 0.0777768 1.23529
  2519. <Normal> { 0.178252 -0.919895 0.307997 }
  2520. }
  2521. <Vertex> 629 {
  2522. 0.756047 0.112846 1.28726
  2523. <Normal> { 0.251365 -0.862457 0.434318 }
  2524. }
  2525. <Vertex> 630 {
  2526. 0.756047 0.112846 1.28726
  2527. <Normal> { 0.472322 -0.30942 0.815974 }
  2528. }
  2529. <Vertex> 631 {
  2530. 0.430191 0.00590258 0.430191
  2531. <Normal> { 0.0172218 -0.999589 0.0172208 }
  2532. }
  2533. <Vertex> 632 {
  2534. 0.725778 0.0222213 0.725778
  2535. <Normal> { 0.0467578 -0.997397 0.0467569 }
  2536. }
  2537. <Vertex> 633 {
  2538. 0.911906 0.0468741 0.911906
  2539. <Normal> { 0.107129 -0.986468 0.107128 }
  2540. }
  2541. <Vertex> 634 {
  2542. 1.01372 0.077777 1.01372
  2543. <Normal> { 0.251491 -0.920001 0.251491 }
  2544. }
  2545. <Vertex> 635 {
  2546. 1.05637 0.112846 1.05637
  2547. <Normal> { 0.354657 -0.862635 0.354657 }
  2548. }
  2549. <Vertex> 636 {
  2550. 1.05637 0.112846 1.05637
  2551. <Normal> { 0.666664 -0.309735 0.666662 }
  2552. }
  2553. <Vertex> 637 {
  2554. 0.524218 0.0059027 0.307888
  2555. <Normal> { 0.0210954 -0.999588 0.0122071 }
  2556. }
  2557. <Vertex> 638 {
  2558. 0.884412 0.0222215 0.51944
  2559. <Normal> { 0.0572745 -0.997393 0.0331443 }
  2560. }
  2561. <Vertex> 639 {
  2562. 1.11122 0.0468744 0.652653
  2563. <Normal> { 0.131222 -0.986446 0.0759382 }
  2564. }
  2565. <Vertex> 640 {
  2566. 1.23529 0.0777773 0.725523
  2567. <Normal> { 0.308005 -0.919891 0.178253 }
  2568. }
  2569. <Vertex> 641 {
  2570. 1.28726 0.112846 0.756047
  2571. <Normal> { 0.434328 -0.862451 0.251366 }
  2572. }
  2573. <Vertex> 642 {
  2574. 1.28726 0.112846 0.756047
  2575. <Normal> { 0.815946 -0.309512 0.472311 }
  2576. }
  2577. <Vertex> 643 {
  2578. 0.584584 0.00590284 0.162696
  2579. <Normal> { 0.0235864 -0.999587 0.00632395 }
  2580. }
  2581. <Vertex> 644 {
  2582. 0.986255 0.0222217 0.274486
  2583. <Normal> { 0.0640373 -0.997382 0.017171 }
  2584. }
  2585. <Vertex> 645 {
  2586. 1.23918 0.0468747 0.344878
  2587. <Normal> { 0.146705 -0.986392 0.0393395 }
  2588. }
  2589. <Vertex> 646 {
  2590. 1.37754 0.0777776 0.383385
  2591. <Normal> { 0.344232 -0.919621 0.0923216 }
  2592. }
  2593. <Vertex> 647 {
  2594. 1.4355 0.112847 0.399515
  2595. <Normal> { 0.485352 -0.862001 0.130177 }
  2596. }
  2597. <Vertex> 648 {
  2598. 1.4355 0.112847 0.399515
  2599. <Normal> { 0.910642 -0.30885 0.244342 }
  2600. }
  2601. }
  2602. <Polygon> {
  2603. <RGBA> { 0.8 0.8 0.8 1 }
  2604. <VertexRef> { 0 1 2 3 <Ref> { body } }
  2605. }
  2606. <Polygon> {
  2607. <RGBA> { 0.8 0.8 0.8 1 }
  2608. <VertexRef> { 4 0 3 5 <Ref> { body } }
  2609. }
  2610. <Polygon> {
  2611. <RGBA> { 0.8 0.8 0.8 1 }
  2612. <VertexRef> { 6 7 8 9 <Ref> { body } }
  2613. }
  2614. <Polygon> {
  2615. <RGBA> { 0.8 0.8 0.8 1 }
  2616. <VertexRef> { 10 11 12 13 <Ref> { body } }
  2617. }
  2618. <Polygon> {
  2619. <RGBA> { 0.8 0.8 0.8 1 }
  2620. <VertexRef> { 14 10 13 15 <Ref> { body } }
  2621. }
  2622. <Polygon> {
  2623. <RGBA> { 0.8 0.8 0.8 1 }
  2624. <VertexRef> { 16 14 15 17 <Ref> { body } }
  2625. }
  2626. <Polygon> {
  2627. <RGBA> { 0.8 0.8 0.8 1 }
  2628. <VertexRef> { 3 2 18 19 <Ref> { body } }
  2629. }
  2630. <Polygon> {
  2631. <RGBA> { 0.8 0.8 0.8 1 }
  2632. <VertexRef> { 5 3 19 20 <Ref> { body } }
  2633. }
  2634. <Polygon> {
  2635. <RGBA> { 0.8 0.8 0.8 1 }
  2636. <VertexRef> { 9 8 21 22 <Ref> { body } }
  2637. }
  2638. <Polygon> {
  2639. <RGBA> { 0.8 0.8 0.8 1 }
  2640. <VertexRef> { 13 12 23 24 <Ref> { body } }
  2641. }
  2642. <Polygon> {
  2643. <RGBA> { 0.8 0.8 0.8 1 }
  2644. <VertexRef> { 15 13 24 25 <Ref> { body } }
  2645. }
  2646. <Polygon> {
  2647. <RGBA> { 0.8 0.8 0.8 1 }
  2648. <VertexRef> { 17 15 25 26 <Ref> { body } }
  2649. }
  2650. <Polygon> {
  2651. <RGBA> { 0.8 0.8 0.8 1 }
  2652. <VertexRef> { 19 18 27 28 <Ref> { body } }
  2653. }
  2654. <Polygon> {
  2655. <RGBA> { 0.8 0.8 0.8 1 }
  2656. <VertexRef> { 20 19 28 29 <Ref> { body } }
  2657. }
  2658. <Polygon> {
  2659. <RGBA> { 0.8 0.8 0.8 1 }
  2660. <VertexRef> { 22 21 30 31 <Ref> { body } }
  2661. }
  2662. <Polygon> {
  2663. <RGBA> { 0.8 0.8 0.8 1 }
  2664. <VertexRef> { 24 23 32 33 <Ref> { body } }
  2665. }
  2666. <Polygon> {
  2667. <RGBA> { 0.8 0.8 0.8 1 }
  2668. <VertexRef> { 25 24 33 34 <Ref> { body } }
  2669. }
  2670. <Polygon> {
  2671. <RGBA> { 0.8 0.8 0.8 1 }
  2672. <VertexRef> { 26 25 34 35 <Ref> { body } }
  2673. }
  2674. <Polygon> {
  2675. <RGBA> { 0.8 0.8 0.8 1 }
  2676. <VertexRef> { 28 27 36 37 <Ref> { body } }
  2677. }
  2678. <Polygon> {
  2679. <RGBA> { 0.8 0.8 0.8 1 }
  2680. <VertexRef> { 29 28 37 38 <Ref> { body } }
  2681. }
  2682. <Polygon> {
  2683. <RGBA> { 0.8 0.8 0.8 1 }
  2684. <VertexRef> { 31 30 39 40 <Ref> { body } }
  2685. }
  2686. <Polygon> {
  2687. <RGBA> { 0.8 0.8 0.8 1 }
  2688. <VertexRef> { 33 32 41 42 <Ref> { body } }
  2689. }
  2690. <Polygon> {
  2691. <RGBA> { 0.8 0.8 0.8 1 }
  2692. <VertexRef> { 34 33 42 43 <Ref> { body } }
  2693. }
  2694. <Polygon> {
  2695. <RGBA> { 0.8 0.8 0.8 1 }
  2696. <VertexRef> { 35 34 43 44 <Ref> { body } }
  2697. }
  2698. <Polygon> {
  2699. <RGBA> { 0.8 0.8 0.8 1 }
  2700. <VertexRef> { 37 36 45 46 <Ref> { body } }
  2701. }
  2702. <Polygon> {
  2703. <RGBA> { 0.8 0.8 0.8 1 }
  2704. <VertexRef> { 38 37 46 47 <Ref> { body } }
  2705. }
  2706. <Polygon> {
  2707. <RGBA> { 0.8 0.8 0.8 1 }
  2708. <VertexRef> { 40 39 48 49 <Ref> { body } }
  2709. }
  2710. <Polygon> {
  2711. <RGBA> { 0.8 0.8 0.8 1 }
  2712. <VertexRef> { 42 41 50 51 <Ref> { body } }
  2713. }
  2714. <Polygon> {
  2715. <RGBA> { 0.8 0.8 0.8 1 }
  2716. <VertexRef> { 43 42 51 52 <Ref> { body } }
  2717. }
  2718. <Polygon> {
  2719. <RGBA> { 0.8 0.8 0.8 1 }
  2720. <VertexRef> { 44 43 52 53 <Ref> { body } }
  2721. }
  2722. <Polygon> {
  2723. <RGBA> { 0.8 0.8 0.8 1 }
  2724. <VertexRef> { 46 45 54 55 <Ref> { body } }
  2725. }
  2726. <Polygon> {
  2727. <RGBA> { 0.8 0.8 0.8 1 }
  2728. <VertexRef> { 47 46 55 56 <Ref> { body } }
  2729. }
  2730. <Polygon> {
  2731. <RGBA> { 0.8 0.8 0.8 1 }
  2732. <VertexRef> { 49 48 57 58 <Ref> { body } }
  2733. }
  2734. <Polygon> {
  2735. <RGBA> { 0.8 0.8 0.8 1 }
  2736. <VertexRef> { 51 50 59 60 <Ref> { body } }
  2737. }
  2738. <Polygon> {
  2739. <RGBA> { 0.8 0.8 0.8 1 }
  2740. <VertexRef> { 52 51 60 61 <Ref> { body } }
  2741. }
  2742. <Polygon> {
  2743. <RGBA> { 0.8 0.8 0.8 1 }
  2744. <VertexRef> { 53 52 61 62 <Ref> { body } }
  2745. }
  2746. <Polygon> {
  2747. <RGBA> { 0.8 0.8 0.8 1 }
  2748. <VertexRef> { 55 54 63 64 <Ref> { body } }
  2749. }
  2750. <Polygon> {
  2751. <RGBA> { 0.8 0.8 0.8 1 }
  2752. <VertexRef> { 56 55 64 65 <Ref> { body } }
  2753. }
  2754. <Polygon> {
  2755. <RGBA> { 0.8 0.8 0.8 1 }
  2756. <VertexRef> { 58 57 66 67 <Ref> { body } }
  2757. }
  2758. <Polygon> {
  2759. <RGBA> { 0.8 0.8 0.8 1 }
  2760. <VertexRef> { 60 59 68 69 <Ref> { body } }
  2761. }
  2762. <Polygon> {
  2763. <RGBA> { 0.8 0.8 0.8 1 }
  2764. <VertexRef> { 61 60 69 70 <Ref> { body } }
  2765. }
  2766. <Polygon> {
  2767. <RGBA> { 0.8 0.8 0.8 1 }
  2768. <VertexRef> { 62 61 70 71 <Ref> { body } }
  2769. }
  2770. <Polygon> {
  2771. <RGBA> { 0.8 0.8 0.8 1 }
  2772. <VertexRef> { 64 63 72 73 <Ref> { body } }
  2773. }
  2774. <Polygon> {
  2775. <RGBA> { 0.8 0.8 0.8 1 }
  2776. <VertexRef> { 65 64 73 74 <Ref> { body } }
  2777. }
  2778. <Polygon> {
  2779. <RGBA> { 0.8 0.8 0.8 1 }
  2780. <VertexRef> { 67 66 75 76 <Ref> { body } }
  2781. }
  2782. <Polygon> {
  2783. <RGBA> { 0.8 0.8 0.8 1 }
  2784. <VertexRef> { 69 68 77 78 <Ref> { body } }
  2785. }
  2786. <Polygon> {
  2787. <RGBA> { 0.8 0.8 0.8 1 }
  2788. <VertexRef> { 70 69 78 79 <Ref> { body } }
  2789. }
  2790. <Polygon> {
  2791. <RGBA> { 0.8 0.8 0.8 1 }
  2792. <VertexRef> { 71 70 79 80 <Ref> { body } }
  2793. }
  2794. <Polygon> {
  2795. <RGBA> { 0.8 0.8 0.8 1 }
  2796. <VertexRef> { 73 72 81 82 <Ref> { body } }
  2797. }
  2798. <Polygon> {
  2799. <RGBA> { 0.8 0.8 0.8 1 }
  2800. <VertexRef> { 74 73 82 83 <Ref> { body } }
  2801. }
  2802. <Polygon> {
  2803. <RGBA> { 0.8 0.8 0.8 1 }
  2804. <VertexRef> { 76 75 84 85 <Ref> { body } }
  2805. }
  2806. <Polygon> {
  2807. <RGBA> { 0.8 0.8 0.8 1 }
  2808. <VertexRef> { 78 77 86 87 <Ref> { body } }
  2809. }
  2810. <Polygon> {
  2811. <RGBA> { 0.8 0.8 0.8 1 }
  2812. <VertexRef> { 79 78 87 88 <Ref> { body } }
  2813. }
  2814. <Polygon> {
  2815. <RGBA> { 0.8 0.8 0.8 1 }
  2816. <VertexRef> { 80 79 88 89 <Ref> { body } }
  2817. }
  2818. <Polygon> {
  2819. <RGBA> { 0.8 0.8 0.8 1 }
  2820. <VertexRef> { 82 81 90 91 <Ref> { body } }
  2821. }
  2822. <Polygon> {
  2823. <RGBA> { 0.8 0.8 0.8 1 }
  2824. <VertexRef> { 83 82 91 92 <Ref> { body } }
  2825. }
  2826. <Polygon> {
  2827. <RGBA> { 0.8 0.8 0.8 1 }
  2828. <VertexRef> { 85 84 93 94 <Ref> { body } }
  2829. }
  2830. <Polygon> {
  2831. <RGBA> { 0.8 0.8 0.8 1 }
  2832. <VertexRef> { 87 86 95 96 <Ref> { body } }
  2833. }
  2834. <Polygon> {
  2835. <RGBA> { 0.8 0.8 0.8 1 }
  2836. <VertexRef> { 88 87 96 97 <Ref> { body } }
  2837. }
  2838. <Polygon> {
  2839. <RGBA> { 0.8 0.8 0.8 1 }
  2840. <VertexRef> { 89 88 97 98 <Ref> { body } }
  2841. }
  2842. <Polygon> {
  2843. <RGBA> { 0.8 0.8 0.8 1 }
  2844. <VertexRef> { 91 90 99 100 <Ref> { body } }
  2845. }
  2846. <Polygon> {
  2847. <RGBA> { 0.8 0.8 0.8 1 }
  2848. <VertexRef> { 92 91 100 101 <Ref> { body } }
  2849. }
  2850. <Polygon> {
  2851. <RGBA> { 0.8 0.8 0.8 1 }
  2852. <VertexRef> { 94 93 102 103 <Ref> { body } }
  2853. }
  2854. <Polygon> {
  2855. <RGBA> { 0.8 0.8 0.8 1 }
  2856. <VertexRef> { 96 95 104 105 <Ref> { body } }
  2857. }
  2858. <Polygon> {
  2859. <RGBA> { 0.8 0.8 0.8 1 }
  2860. <VertexRef> { 97 96 105 106 <Ref> { body } }
  2861. }
  2862. <Polygon> {
  2863. <RGBA> { 0.8 0.8 0.8 1 }
  2864. <VertexRef> { 98 97 106 107 <Ref> { body } }
  2865. }
  2866. <Polygon> {
  2867. <RGBA> { 0.8 0.8 0.8 1 }
  2868. <VertexRef> { 100 99 108 109 <Ref> { body } }
  2869. }
  2870. <Polygon> {
  2871. <RGBA> { 0.8 0.8 0.8 1 }
  2872. <VertexRef> { 101 100 109 110 <Ref> { body } }
  2873. }
  2874. <Polygon> {
  2875. <RGBA> { 0.8 0.8 0.8 1 }
  2876. <VertexRef> { 103 102 111 112 <Ref> { body } }
  2877. }
  2878. <Polygon> {
  2879. <RGBA> { 0.8 0.8 0.8 1 }
  2880. <VertexRef> { 105 104 113 114 <Ref> { body } }
  2881. }
  2882. <Polygon> {
  2883. <RGBA> { 0.8 0.8 0.8 1 }
  2884. <VertexRef> { 106 105 114 115 <Ref> { body } }
  2885. }
  2886. <Polygon> {
  2887. <RGBA> { 0.8 0.8 0.8 1 }
  2888. <VertexRef> { 107 106 115 116 <Ref> { body } }
  2889. }
  2890. <Polygon> {
  2891. <RGBA> { 0.8 0.8 0.8 1 }
  2892. <VertexRef> { 109 108 117 118 <Ref> { body } }
  2893. }
  2894. <Polygon> {
  2895. <RGBA> { 0.8 0.8 0.8 1 }
  2896. <VertexRef> { 110 109 118 119 <Ref> { body } }
  2897. }
  2898. <Polygon> {
  2899. <RGBA> { 0.8 0.8 0.8 1 }
  2900. <VertexRef> { 112 111 120 121 <Ref> { body } }
  2901. }
  2902. <Polygon> {
  2903. <RGBA> { 0.8 0.8 0.8 1 }
  2904. <VertexRef> { 114 113 122 123 <Ref> { body } }
  2905. }
  2906. <Polygon> {
  2907. <RGBA> { 0.8 0.8 0.8 1 }
  2908. <VertexRef> { 115 114 123 124 <Ref> { body } }
  2909. }
  2910. <Polygon> {
  2911. <RGBA> { 0.8 0.8 0.8 1 }
  2912. <VertexRef> { 116 115 124 125 <Ref> { body } }
  2913. }
  2914. <Polygon> {
  2915. <RGBA> { 0.8 0.8 0.8 1 }
  2916. <VertexRef> { 118 117 126 127 <Ref> { body } }
  2917. }
  2918. <Polygon> {
  2919. <RGBA> { 0.8 0.8 0.8 1 }
  2920. <VertexRef> { 119 118 127 128 <Ref> { body } }
  2921. }
  2922. <Polygon> {
  2923. <RGBA> { 0.8 0.8 0.8 1 }
  2924. <VertexRef> { 121 120 129 130 <Ref> { body } }
  2925. }
  2926. <Polygon> {
  2927. <RGBA> { 0.8 0.8 0.8 1 }
  2928. <VertexRef> { 123 122 131 132 <Ref> { body } }
  2929. }
  2930. <Polygon> {
  2931. <RGBA> { 0.8 0.8 0.8 1 }
  2932. <VertexRef> { 124 123 132 133 <Ref> { body } }
  2933. }
  2934. <Polygon> {
  2935. <RGBA> { 0.8 0.8 0.8 1 }
  2936. <VertexRef> { 125 124 133 134 <Ref> { body } }
  2937. }
  2938. <Polygon> {
  2939. <RGBA> { 0.8 0.8 0.8 1 }
  2940. <VertexRef> { 127 126 135 136 <Ref> { body } }
  2941. }
  2942. <Polygon> {
  2943. <RGBA> { 0.8 0.8 0.8 1 }
  2944. <VertexRef> { 128 127 136 137 <Ref> { body } }
  2945. }
  2946. <Polygon> {
  2947. <RGBA> { 0.8 0.8 0.8 1 }
  2948. <VertexRef> { 130 129 138 139 <Ref> { body } }
  2949. }
  2950. <Polygon> {
  2951. <RGBA> { 0.8 0.8 0.8 1 }
  2952. <VertexRef> { 132 131 140 141 <Ref> { body } }
  2953. }
  2954. <Polygon> {
  2955. <RGBA> { 0.8 0.8 0.8 1 }
  2956. <VertexRef> { 133 132 141 142 <Ref> { body } }
  2957. }
  2958. <Polygon> {
  2959. <RGBA> { 0.8 0.8 0.8 1 }
  2960. <VertexRef> { 134 133 142 143 <Ref> { body } }
  2961. }
  2962. <Polygon> {
  2963. <RGBA> { 0.8 0.8 0.8 1 }
  2964. <VertexRef> { 136 135 144 145 <Ref> { body } }
  2965. }
  2966. <Polygon> {
  2967. <RGBA> { 0.8 0.8 0.8 1 }
  2968. <VertexRef> { 137 136 145 146 <Ref> { body } }
  2969. }
  2970. <Polygon> {
  2971. <RGBA> { 0.8 0.8 0.8 1 }
  2972. <VertexRef> { 139 138 147 148 <Ref> { body } }
  2973. }
  2974. <Polygon> {
  2975. <RGBA> { 0.8 0.8 0.8 1 }
  2976. <VertexRef> { 141 140 149 150 <Ref> { body } }
  2977. }
  2978. <Polygon> {
  2979. <RGBA> { 0.8 0.8 0.8 1 }
  2980. <VertexRef> { 142 141 150 151 <Ref> { body } }
  2981. }
  2982. <Polygon> {
  2983. <RGBA> { 0.8 0.8 0.8 1 }
  2984. <VertexRef> { 143 142 151 152 <Ref> { body } }
  2985. }
  2986. <Polygon> {
  2987. <RGBA> { 0.8 0.8 0.8 1 }
  2988. <VertexRef> { 145 144 153 154 <Ref> { body } }
  2989. }
  2990. <Polygon> {
  2991. <RGBA> { 0.8 0.8 0.8 1 }
  2992. <VertexRef> { 146 145 154 155 <Ref> { body } }
  2993. }
  2994. <Polygon> {
  2995. <RGBA> { 0.8 0.8 0.8 1 }
  2996. <VertexRef> { 148 147 156 157 <Ref> { body } }
  2997. }
  2998. <Polygon> {
  2999. <RGBA> { 0.8 0.8 0.8 1 }
  3000. <VertexRef> { 150 149 158 159 <Ref> { body } }
  3001. }
  3002. <Polygon> {
  3003. <RGBA> { 0.8 0.8 0.8 1 }
  3004. <VertexRef> { 151 150 159 160 <Ref> { body } }
  3005. }
  3006. <Polygon> {
  3007. <RGBA> { 0.8 0.8 0.8 1 }
  3008. <VertexRef> { 152 151 160 161 <Ref> { body } }
  3009. }
  3010. <Polygon> {
  3011. <RGBA> { 0.8 0.8 0.8 1 }
  3012. <VertexRef> { 154 153 162 163 <Ref> { body } }
  3013. }
  3014. <Polygon> {
  3015. <RGBA> { 0.8 0.8 0.8 1 }
  3016. <VertexRef> { 155 154 163 164 <Ref> { body } }
  3017. }
  3018. <Polygon> {
  3019. <RGBA> { 0.8 0.8 0.8 1 }
  3020. <VertexRef> { 157 156 165 166 <Ref> { body } }
  3021. }
  3022. <Polygon> {
  3023. <RGBA> { 0.8 0.8 0.8 1 }
  3024. <VertexRef> { 159 158 167 168 <Ref> { body } }
  3025. }
  3026. <Polygon> {
  3027. <RGBA> { 0.8 0.8 0.8 1 }
  3028. <VertexRef> { 160 159 168 169 <Ref> { body } }
  3029. }
  3030. <Polygon> {
  3031. <RGBA> { 0.8 0.8 0.8 1 }
  3032. <VertexRef> { 161 160 169 170 <Ref> { body } }
  3033. }
  3034. <Polygon> {
  3035. <RGBA> { 0.8 0.8 0.8 1 }
  3036. <VertexRef> { 163 162 171 172 <Ref> { body } }
  3037. }
  3038. <Polygon> {
  3039. <RGBA> { 0.8 0.8 0.8 1 }
  3040. <VertexRef> { 164 163 172 173 <Ref> { body } }
  3041. }
  3042. <Polygon> {
  3043. <RGBA> { 0.8 0.8 0.8 1 }
  3044. <VertexRef> { 166 165 174 175 <Ref> { body } }
  3045. }
  3046. <Polygon> {
  3047. <RGBA> { 0.8 0.8 0.8 1 }
  3048. <VertexRef> { 168 167 176 177 <Ref> { body } }
  3049. }
  3050. <Polygon> {
  3051. <RGBA> { 0.8 0.8 0.8 1 }
  3052. <VertexRef> { 169 168 177 178 <Ref> { body } }
  3053. }
  3054. <Polygon> {
  3055. <RGBA> { 0.8 0.8 0.8 1 }
  3056. <VertexRef> { 170 169 178 179 <Ref> { body } }
  3057. }
  3058. <Polygon> {
  3059. <RGBA> { 0.8 0.8 0.8 1 }
  3060. <VertexRef> { 172 171 180 181 <Ref> { body } }
  3061. }
  3062. <Polygon> {
  3063. <RGBA> { 0.8 0.8 0.8 1 }
  3064. <VertexRef> { 173 172 181 182 <Ref> { body } }
  3065. }
  3066. <Polygon> {
  3067. <RGBA> { 0.8 0.8 0.8 1 }
  3068. <VertexRef> { 175 174 183 184 <Ref> { body } }
  3069. }
  3070. <Polygon> {
  3071. <RGBA> { 0.8 0.8 0.8 1 }
  3072. <VertexRef> { 177 176 185 186 <Ref> { body } }
  3073. }
  3074. <Polygon> {
  3075. <RGBA> { 0.8 0.8 0.8 1 }
  3076. <VertexRef> { 178 177 186 187 <Ref> { body } }
  3077. }
  3078. <Polygon> {
  3079. <RGBA> { 0.8 0.8 0.8 1 }
  3080. <VertexRef> { 179 178 187 188 <Ref> { body } }
  3081. }
  3082. <Polygon> {
  3083. <RGBA> { 0.8 0.8 0.8 1 }
  3084. <VertexRef> { 181 180 189 190 <Ref> { body } }
  3085. }
  3086. <Polygon> {
  3087. <RGBA> { 0.8 0.8 0.8 1 }
  3088. <VertexRef> { 182 181 190 191 <Ref> { body } }
  3089. }
  3090. <Polygon> {
  3091. <RGBA> { 0.8 0.8 0.8 1 }
  3092. <VertexRef> { 184 183 192 193 <Ref> { body } }
  3093. }
  3094. <Polygon> {
  3095. <RGBA> { 0.8 0.8 0.8 1 }
  3096. <VertexRef> { 186 185 194 195 <Ref> { body } }
  3097. }
  3098. <Polygon> {
  3099. <RGBA> { 0.8 0.8 0.8 1 }
  3100. <VertexRef> { 187 186 195 196 <Ref> { body } }
  3101. }
  3102. <Polygon> {
  3103. <RGBA> { 0.8 0.8 0.8 1 }
  3104. <VertexRef> { 188 187 196 197 <Ref> { body } }
  3105. }
  3106. <Polygon> {
  3107. <RGBA> { 0.8 0.8 0.8 1 }
  3108. <VertexRef> { 190 189 198 199 <Ref> { body } }
  3109. }
  3110. <Polygon> {
  3111. <RGBA> { 0.8 0.8 0.8 1 }
  3112. <VertexRef> { 191 190 199 200 <Ref> { body } }
  3113. }
  3114. <Polygon> {
  3115. <RGBA> { 0.8 0.8 0.8 1 }
  3116. <VertexRef> { 193 192 201 202 <Ref> { body } }
  3117. }
  3118. <Polygon> {
  3119. <RGBA> { 0.8 0.8 0.8 1 }
  3120. <VertexRef> { 195 194 203 204 <Ref> { body } }
  3121. }
  3122. <Polygon> {
  3123. <RGBA> { 0.8 0.8 0.8 1 }
  3124. <VertexRef> { 196 195 204 205 <Ref> { body } }
  3125. }
  3126. <Polygon> {
  3127. <RGBA> { 0.8 0.8 0.8 1 }
  3128. <VertexRef> { 197 196 205 206 <Ref> { body } }
  3129. }
  3130. <Polygon> {
  3131. <RGBA> { 0.8 0.8 0.8 1 }
  3132. <VertexRef> { 199 198 207 208 <Ref> { body } }
  3133. }
  3134. <Polygon> {
  3135. <RGBA> { 0.8 0.8 0.8 1 }
  3136. <VertexRef> { 200 199 208 209 <Ref> { body } }
  3137. }
  3138. <Polygon> {
  3139. <RGBA> { 0.8 0.8 0.8 1 }
  3140. <VertexRef> { 202 201 210 211 <Ref> { body } }
  3141. }
  3142. <Polygon> {
  3143. <RGBA> { 0.8 0.8 0.8 1 }
  3144. <VertexRef> { 204 203 212 213 <Ref> { body } }
  3145. }
  3146. <Polygon> {
  3147. <RGBA> { 0.8 0.8 0.8 1 }
  3148. <VertexRef> { 205 204 213 214 <Ref> { body } }
  3149. }
  3150. <Polygon> {
  3151. <RGBA> { 0.8 0.8 0.8 1 }
  3152. <VertexRef> { 206 205 214 215 <Ref> { body } }
  3153. }
  3154. <Polygon> {
  3155. <RGBA> { 0.8 0.8 0.8 1 }
  3156. <VertexRef> { 208 207 1 0 <Ref> { body } }
  3157. }
  3158. <Polygon> {
  3159. <RGBA> { 0.8 0.8 0.8 1 }
  3160. <VertexRef> { 209 208 0 4 <Ref> { body } }
  3161. }
  3162. <Polygon> {
  3163. <RGBA> { 0.8 0.8 0.8 1 }
  3164. <VertexRef> { 211 210 7 6 <Ref> { body } }
  3165. }
  3166. <Polygon> {
  3167. <RGBA> { 0.8 0.8 0.8 1 }
  3168. <VertexRef> { 213 212 11 10 <Ref> { body } }
  3169. }
  3170. <Polygon> {
  3171. <RGBA> { 0.8 0.8 0.8 1 }
  3172. <VertexRef> { 214 213 10 14 <Ref> { body } }
  3173. }
  3174. <Polygon> {
  3175. <RGBA> { 0.8 0.8 0.8 1 }
  3176. <VertexRef> { 215 214 14 16 <Ref> { body } }
  3177. }
  3178. <Polygon> {
  3179. <RGBA> { 0.8 0.8 0.8 1 }
  3180. <VertexRef> { 216 16 17 217 <Ref> { body } }
  3181. }
  3182. <Polygon> {
  3183. <RGBA> { 0.8 0.8 0.8 1 }
  3184. <VertexRef> { 218 216 217 219 <Ref> { body } }
  3185. }
  3186. <Polygon> {
  3187. <RGBA> { 0.8 0.8 0.8 1 }
  3188. <VertexRef> { 220 218 219 221 <Ref> { body } }
  3189. }
  3190. <Polygon> {
  3191. <RGBA> { 0.8 0.8 0.8 1 }
  3192. <VertexRef> { 222 220 221 223 <Ref> { body } }
  3193. }
  3194. <Polygon> {
  3195. <RGBA> { 0.8 0.8 0.8 1 }
  3196. <VertexRef> { 224 222 223 225 <Ref> { body } }
  3197. }
  3198. <Polygon> {
  3199. <RGBA> { 0.8 0.8 0.8 1 }
  3200. <VertexRef> { 226 224 225 227 <Ref> { body } }
  3201. }
  3202. <Polygon> {
  3203. <RGBA> { 0.8 0.8 0.8 1 }
  3204. <VertexRef> { 217 17 26 228 <Ref> { body } }
  3205. }
  3206. <Polygon> {
  3207. <RGBA> { 0.8 0.8 0.8 1 }
  3208. <VertexRef> { 219 217 228 229 <Ref> { body } }
  3209. }
  3210. <Polygon> {
  3211. <RGBA> { 0.8 0.8 0.8 1 }
  3212. <VertexRef> { 221 219 229 230 <Ref> { body } }
  3213. }
  3214. <Polygon> {
  3215. <RGBA> { 0.8 0.8 0.8 1 }
  3216. <VertexRef> { 223 221 230 231 <Ref> { body } }
  3217. }
  3218. <Polygon> {
  3219. <RGBA> { 0.8 0.8 0.8 1 }
  3220. <VertexRef> { 225 223 231 232 <Ref> { body } }
  3221. }
  3222. <Polygon> {
  3223. <RGBA> { 0.8 0.8 0.8 1 }
  3224. <VertexRef> { 227 225 232 233 <Ref> { body } }
  3225. }
  3226. <Polygon> {
  3227. <RGBA> { 0.8 0.8 0.8 1 }
  3228. <VertexRef> { 228 26 35 234 <Ref> { body } }
  3229. }
  3230. <Polygon> {
  3231. <RGBA> { 0.8 0.8 0.8 1 }
  3232. <VertexRef> { 229 228 234 235 <Ref> { body } }
  3233. }
  3234. <Polygon> {
  3235. <RGBA> { 0.8 0.8 0.8 1 }
  3236. <VertexRef> { 230 229 235 236 <Ref> { body } }
  3237. }
  3238. <Polygon> {
  3239. <RGBA> { 0.8 0.8 0.8 1 }
  3240. <VertexRef> { 231 230 236 237 <Ref> { body } }
  3241. }
  3242. <Polygon> {
  3243. <RGBA> { 0.8 0.8 0.8 1 }
  3244. <VertexRef> { 232 231 237 238 <Ref> { body } }
  3245. }
  3246. <Polygon> {
  3247. <RGBA> { 0.8 0.8 0.8 1 }
  3248. <VertexRef> { 233 232 238 239 <Ref> { body } }
  3249. }
  3250. <Polygon> {
  3251. <RGBA> { 0.8 0.8 0.8 1 }
  3252. <VertexRef> { 234 35 44 240 <Ref> { body } }
  3253. }
  3254. <Polygon> {
  3255. <RGBA> { 0.8 0.8 0.8 1 }
  3256. <VertexRef> { 235 234 240 241 <Ref> { body } }
  3257. }
  3258. <Polygon> {
  3259. <RGBA> { 0.8 0.8 0.8 1 }
  3260. <VertexRef> { 236 235 241 242 <Ref> { body } }
  3261. }
  3262. <Polygon> {
  3263. <RGBA> { 0.8 0.8 0.8 1 }
  3264. <VertexRef> { 237 236 242 243 <Ref> { body } }
  3265. }
  3266. <Polygon> {
  3267. <RGBA> { 0.8 0.8 0.8 1 }
  3268. <VertexRef> { 238 237 243 244 <Ref> { body } }
  3269. }
  3270. <Polygon> {
  3271. <RGBA> { 0.8 0.8 0.8 1 }
  3272. <VertexRef> { 239 238 244 245 <Ref> { body } }
  3273. }
  3274. <Polygon> {
  3275. <RGBA> { 0.8 0.8 0.8 1 }
  3276. <VertexRef> { 240 44 53 246 <Ref> { body } }
  3277. }
  3278. <Polygon> {
  3279. <RGBA> { 0.8 0.8 0.8 1 }
  3280. <VertexRef> { 241 240 246 247 <Ref> { body } }
  3281. }
  3282. <Polygon> {
  3283. <RGBA> { 0.8 0.8 0.8 1 }
  3284. <VertexRef> { 242 241 247 248 <Ref> { body } }
  3285. }
  3286. <Polygon> {
  3287. <RGBA> { 0.8 0.8 0.8 1 }
  3288. <VertexRef> { 243 242 248 249 <Ref> { body } }
  3289. }
  3290. <Polygon> {
  3291. <RGBA> { 0.8 0.8 0.8 1 }
  3292. <VertexRef> { 244 243 249 250 <Ref> { body } }
  3293. }
  3294. <Polygon> {
  3295. <RGBA> { 0.8 0.8 0.8 1 }
  3296. <VertexRef> { 245 244 250 251 <Ref> { body } }
  3297. }
  3298. <Polygon> {
  3299. <RGBA> { 0.8 0.8 0.8 1 }
  3300. <VertexRef> { 246 53 62 252 <Ref> { body } }
  3301. }
  3302. <Polygon> {
  3303. <RGBA> { 0.8 0.8 0.8 1 }
  3304. <VertexRef> { 247 246 252 253 <Ref> { body } }
  3305. }
  3306. <Polygon> {
  3307. <RGBA> { 0.8 0.8 0.8 1 }
  3308. <VertexRef> { 248 247 253 254 <Ref> { body } }
  3309. }
  3310. <Polygon> {
  3311. <RGBA> { 0.8 0.8 0.8 1 }
  3312. <VertexRef> { 249 248 254 255 <Ref> { body } }
  3313. }
  3314. <Polygon> {
  3315. <RGBA> { 0.8 0.8 0.8 1 }
  3316. <VertexRef> { 250 249 255 256 <Ref> { body } }
  3317. }
  3318. <Polygon> {
  3319. <RGBA> { 0.8 0.8 0.8 1 }
  3320. <VertexRef> { 251 250 256 257 <Ref> { body } }
  3321. }
  3322. <Polygon> {
  3323. <RGBA> { 0.8 0.8 0.8 1 }
  3324. <VertexRef> { 252 62 71 258 <Ref> { body } }
  3325. }
  3326. <Polygon> {
  3327. <RGBA> { 0.8 0.8 0.8 1 }
  3328. <VertexRef> { 253 252 258 259 <Ref> { body } }
  3329. }
  3330. <Polygon> {
  3331. <RGBA> { 0.8 0.8 0.8 1 }
  3332. <VertexRef> { 254 253 259 260 <Ref> { body } }
  3333. }
  3334. <Polygon> {
  3335. <RGBA> { 0.8 0.8 0.8 1 }
  3336. <VertexRef> { 255 254 260 261 <Ref> { body } }
  3337. }
  3338. <Polygon> {
  3339. <RGBA> { 0.8 0.8 0.8 1 }
  3340. <VertexRef> { 256 255 261 262 <Ref> { body } }
  3341. }
  3342. <Polygon> {
  3343. <RGBA> { 0.8 0.8 0.8 1 }
  3344. <VertexRef> { 257 256 262 263 <Ref> { body } }
  3345. }
  3346. <Polygon> {
  3347. <RGBA> { 0.8 0.8 0.8 1 }
  3348. <VertexRef> { 258 71 80 264 <Ref> { body } }
  3349. }
  3350. <Polygon> {
  3351. <RGBA> { 0.8 0.8 0.8 1 }
  3352. <VertexRef> { 259 258 264 265 <Ref> { body } }
  3353. }
  3354. <Polygon> {
  3355. <RGBA> { 0.8 0.8 0.8 1 }
  3356. <VertexRef> { 260 259 265 266 <Ref> { body } }
  3357. }
  3358. <Polygon> {
  3359. <RGBA> { 0.8 0.8 0.8 1 }
  3360. <VertexRef> { 261 260 266 267 <Ref> { body } }
  3361. }
  3362. <Polygon> {
  3363. <RGBA> { 0.8 0.8 0.8 1 }
  3364. <VertexRef> { 262 261 267 268 <Ref> { body } }
  3365. }
  3366. <Polygon> {
  3367. <RGBA> { 0.8 0.8 0.8 1 }
  3368. <VertexRef> { 263 262 268 269 <Ref> { body } }
  3369. }
  3370. <Polygon> {
  3371. <RGBA> { 0.8 0.8 0.8 1 }
  3372. <VertexRef> { 264 80 89 270 <Ref> { body } }
  3373. }
  3374. <Polygon> {
  3375. <RGBA> { 0.8 0.8 0.8 1 }
  3376. <VertexRef> { 265 264 270 271 <Ref> { body } }
  3377. }
  3378. <Polygon> {
  3379. <RGBA> { 0.8 0.8 0.8 1 }
  3380. <VertexRef> { 266 265 271 272 <Ref> { body } }
  3381. }
  3382. <Polygon> {
  3383. <RGBA> { 0.8 0.8 0.8 1 }
  3384. <VertexRef> { 267 266 272 273 <Ref> { body } }
  3385. }
  3386. <Polygon> {
  3387. <RGBA> { 0.8 0.8 0.8 1 }
  3388. <VertexRef> { 268 267 273 274 <Ref> { body } }
  3389. }
  3390. <Polygon> {
  3391. <RGBA> { 0.8 0.8 0.8 1 }
  3392. <VertexRef> { 269 268 274 275 <Ref> { body } }
  3393. }
  3394. <Polygon> {
  3395. <RGBA> { 0.8 0.8 0.8 1 }
  3396. <VertexRef> { 270 89 98 276 <Ref> { body } }
  3397. }
  3398. <Polygon> {
  3399. <RGBA> { 0.8 0.8 0.8 1 }
  3400. <VertexRef> { 271 270 276 277 <Ref> { body } }
  3401. }
  3402. <Polygon> {
  3403. <RGBA> { 0.8 0.8 0.8 1 }
  3404. <VertexRef> { 272 271 277 278 <Ref> { body } }
  3405. }
  3406. <Polygon> {
  3407. <RGBA> { 0.8 0.8 0.8 1 }
  3408. <VertexRef> { 273 272 278 279 <Ref> { body } }
  3409. }
  3410. <Polygon> {
  3411. <RGBA> { 0.8 0.8 0.8 1 }
  3412. <VertexRef> { 274 273 279 280 <Ref> { body } }
  3413. }
  3414. <Polygon> {
  3415. <RGBA> { 0.8 0.8 0.8 1 }
  3416. <VertexRef> { 275 274 280 281 <Ref> { body } }
  3417. }
  3418. <Polygon> {
  3419. <RGBA> { 0.8 0.8 0.8 1 }
  3420. <VertexRef> { 276 98 107 282 <Ref> { body } }
  3421. }
  3422. <Polygon> {
  3423. <RGBA> { 0.8 0.8 0.8 1 }
  3424. <VertexRef> { 277 276 282 283 <Ref> { body } }
  3425. }
  3426. <Polygon> {
  3427. <RGBA> { 0.8 0.8 0.8 1 }
  3428. <VertexRef> { 278 277 283 284 <Ref> { body } }
  3429. }
  3430. <Polygon> {
  3431. <RGBA> { 0.8 0.8 0.8 1 }
  3432. <VertexRef> { 279 278 284 285 <Ref> { body } }
  3433. }
  3434. <Polygon> {
  3435. <RGBA> { 0.8 0.8 0.8 1 }
  3436. <VertexRef> { 280 279 285 286 <Ref> { body } }
  3437. }
  3438. <Polygon> {
  3439. <RGBA> { 0.8 0.8 0.8 1 }
  3440. <VertexRef> { 281 280 286 287 <Ref> { body } }
  3441. }
  3442. <Polygon> {
  3443. <RGBA> { 0.8 0.8 0.8 1 }
  3444. <VertexRef> { 282 107 116 288 <Ref> { body } }
  3445. }
  3446. <Polygon> {
  3447. <RGBA> { 0.8 0.8 0.8 1 }
  3448. <VertexRef> { 283 282 288 289 <Ref> { body } }
  3449. }
  3450. <Polygon> {
  3451. <RGBA> { 0.8 0.8 0.8 1 }
  3452. <VertexRef> { 284 283 289 290 <Ref> { body } }
  3453. }
  3454. <Polygon> {
  3455. <RGBA> { 0.8 0.8 0.8 1 }
  3456. <VertexRef> { 285 284 290 291 <Ref> { body } }
  3457. }
  3458. <Polygon> {
  3459. <RGBA> { 0.8 0.8 0.8 1 }
  3460. <VertexRef> { 286 285 291 292 <Ref> { body } }
  3461. }
  3462. <Polygon> {
  3463. <RGBA> { 0.8 0.8 0.8 1 }
  3464. <VertexRef> { 287 286 292 293 <Ref> { body } }
  3465. }
  3466. <Polygon> {
  3467. <RGBA> { 0.8 0.8 0.8 1 }
  3468. <VertexRef> { 288 116 125 294 <Ref> { body } }
  3469. }
  3470. <Polygon> {
  3471. <RGBA> { 0.8 0.8 0.8 1 }
  3472. <VertexRef> { 289 288 294 295 <Ref> { body } }
  3473. }
  3474. <Polygon> {
  3475. <RGBA> { 0.8 0.8 0.8 1 }
  3476. <VertexRef> { 290 289 295 296 <Ref> { body } }
  3477. }
  3478. <Polygon> {
  3479. <RGBA> { 0.8 0.8 0.8 1 }
  3480. <VertexRef> { 291 290 296 297 <Ref> { body } }
  3481. }
  3482. <Polygon> {
  3483. <RGBA> { 0.8 0.8 0.8 1 }
  3484. <VertexRef> { 292 291 297 298 <Ref> { body } }
  3485. }
  3486. <Polygon> {
  3487. <RGBA> { 0.8 0.8 0.8 1 }
  3488. <VertexRef> { 293 292 298 299 <Ref> { body } }
  3489. }
  3490. <Polygon> {
  3491. <RGBA> { 0.8 0.8 0.8 1 }
  3492. <VertexRef> { 294 125 134 300 <Ref> { body } }
  3493. }
  3494. <Polygon> {
  3495. <RGBA> { 0.8 0.8 0.8 1 }
  3496. <VertexRef> { 295 294 300 301 <Ref> { body } }
  3497. }
  3498. <Polygon> {
  3499. <RGBA> { 0.8 0.8 0.8 1 }
  3500. <VertexRef> { 296 295 301 302 <Ref> { body } }
  3501. }
  3502. <Polygon> {
  3503. <RGBA> { 0.8 0.8 0.8 1 }
  3504. <VertexRef> { 297 296 302 303 <Ref> { body } }
  3505. }
  3506. <Polygon> {
  3507. <RGBA> { 0.8 0.8 0.8 1 }
  3508. <VertexRef> { 298 297 303 304 <Ref> { body } }
  3509. }
  3510. <Polygon> {
  3511. <RGBA> { 0.8 0.8 0.8 1 }
  3512. <VertexRef> { 299 298 304 305 <Ref> { body } }
  3513. }
  3514. <Polygon> {
  3515. <RGBA> { 0.8 0.8 0.8 1 }
  3516. <VertexRef> { 300 134 143 306 <Ref> { body } }
  3517. }
  3518. <Polygon> {
  3519. <RGBA> { 0.8 0.8 0.8 1 }
  3520. <VertexRef> { 301 300 306 307 <Ref> { body } }
  3521. }
  3522. <Polygon> {
  3523. <RGBA> { 0.8 0.8 0.8 1 }
  3524. <VertexRef> { 302 301 307 308 <Ref> { body } }
  3525. }
  3526. <Polygon> {
  3527. <RGBA> { 0.8 0.8 0.8 1 }
  3528. <VertexRef> { 303 302 308 309 <Ref> { body } }
  3529. }
  3530. <Polygon> {
  3531. <RGBA> { 0.8 0.8 0.8 1 }
  3532. <VertexRef> { 304 303 309 310 <Ref> { body } }
  3533. }
  3534. <Polygon> {
  3535. <RGBA> { 0.8 0.8 0.8 1 }
  3536. <VertexRef> { 305 304 310 311 <Ref> { body } }
  3537. }
  3538. <Polygon> {
  3539. <RGBA> { 0.8 0.8 0.8 1 }
  3540. <VertexRef> { 306 143 152 312 <Ref> { body } }
  3541. }
  3542. <Polygon> {
  3543. <RGBA> { 0.8 0.8 0.8 1 }
  3544. <VertexRef> { 307 306 312 313 <Ref> { body } }
  3545. }
  3546. <Polygon> {
  3547. <RGBA> { 0.8 0.8 0.8 1 }
  3548. <VertexRef> { 308 307 313 314 <Ref> { body } }
  3549. }
  3550. <Polygon> {
  3551. <RGBA> { 0.8 0.8 0.8 1 }
  3552. <VertexRef> { 309 308 314 315 <Ref> { body } }
  3553. }
  3554. <Polygon> {
  3555. <RGBA> { 0.8 0.8 0.8 1 }
  3556. <VertexRef> { 310 309 315 316 <Ref> { body } }
  3557. }
  3558. <Polygon> {
  3559. <RGBA> { 0.8 0.8 0.8 1 }
  3560. <VertexRef> { 311 310 316 317 <Ref> { body } }
  3561. }
  3562. <Polygon> {
  3563. <RGBA> { 0.8 0.8 0.8 1 }
  3564. <VertexRef> { 312 152 161 318 <Ref> { body } }
  3565. }
  3566. <Polygon> {
  3567. <RGBA> { 0.8 0.8 0.8 1 }
  3568. <VertexRef> { 313 312 318 319 <Ref> { body } }
  3569. }
  3570. <Polygon> {
  3571. <RGBA> { 0.8 0.8 0.8 1 }
  3572. <VertexRef> { 314 313 319 320 <Ref> { body } }
  3573. }
  3574. <Polygon> {
  3575. <RGBA> { 0.8 0.8 0.8 1 }
  3576. <VertexRef> { 315 314 320 321 <Ref> { body } }
  3577. }
  3578. <Polygon> {
  3579. <RGBA> { 0.8 0.8 0.8 1 }
  3580. <VertexRef> { 316 315 321 322 <Ref> { body } }
  3581. }
  3582. <Polygon> {
  3583. <RGBA> { 0.8 0.8 0.8 1 }
  3584. <VertexRef> { 317 316 322 323 <Ref> { body } }
  3585. }
  3586. <Polygon> {
  3587. <RGBA> { 0.8 0.8 0.8 1 }
  3588. <VertexRef> { 318 161 170 324 <Ref> { body } }
  3589. }
  3590. <Polygon> {
  3591. <RGBA> { 0.8 0.8 0.8 1 }
  3592. <VertexRef> { 319 318 324 325 <Ref> { body } }
  3593. }
  3594. <Polygon> {
  3595. <RGBA> { 0.8 0.8 0.8 1 }
  3596. <VertexRef> { 320 319 325 326 <Ref> { body } }
  3597. }
  3598. <Polygon> {
  3599. <RGBA> { 0.8 0.8 0.8 1 }
  3600. <VertexRef> { 321 320 326 327 <Ref> { body } }
  3601. }
  3602. <Polygon> {
  3603. <RGBA> { 0.8 0.8 0.8 1 }
  3604. <VertexRef> { 322 321 327 328 <Ref> { body } }
  3605. }
  3606. <Polygon> {
  3607. <RGBA> { 0.8 0.8 0.8 1 }
  3608. <VertexRef> { 323 322 328 329 <Ref> { body } }
  3609. }
  3610. <Polygon> {
  3611. <RGBA> { 0.8 0.8 0.8 1 }
  3612. <VertexRef> { 324 170 179 330 <Ref> { body } }
  3613. }
  3614. <Polygon> {
  3615. <RGBA> { 0.8 0.8 0.8 1 }
  3616. <VertexRef> { 325 324 330 331 <Ref> { body } }
  3617. }
  3618. <Polygon> {
  3619. <RGBA> { 0.8 0.8 0.8 1 }
  3620. <VertexRef> { 326 325 331 332 <Ref> { body } }
  3621. }
  3622. <Polygon> {
  3623. <RGBA> { 0.8 0.8 0.8 1 }
  3624. <VertexRef> { 327 326 332 333 <Ref> { body } }
  3625. }
  3626. <Polygon> {
  3627. <RGBA> { 0.8 0.8 0.8 1 }
  3628. <VertexRef> { 328 327 333 334 <Ref> { body } }
  3629. }
  3630. <Polygon> {
  3631. <RGBA> { 0.8 0.8 0.8 1 }
  3632. <VertexRef> { 329 328 334 335 <Ref> { body } }
  3633. }
  3634. <Polygon> {
  3635. <RGBA> { 0.8 0.8 0.8 1 }
  3636. <VertexRef> { 330 179 188 336 <Ref> { body } }
  3637. }
  3638. <Polygon> {
  3639. <RGBA> { 0.8 0.8 0.8 1 }
  3640. <VertexRef> { 331 330 336 337 <Ref> { body } }
  3641. }
  3642. <Polygon> {
  3643. <RGBA> { 0.8 0.8 0.8 1 }
  3644. <VertexRef> { 332 331 337 338 <Ref> { body } }
  3645. }
  3646. <Polygon> {
  3647. <RGBA> { 0.8 0.8 0.8 1 }
  3648. <VertexRef> { 333 332 338 339 <Ref> { body } }
  3649. }
  3650. <Polygon> {
  3651. <RGBA> { 0.8 0.8 0.8 1 }
  3652. <VertexRef> { 334 333 339 340 <Ref> { body } }
  3653. }
  3654. <Polygon> {
  3655. <RGBA> { 0.8 0.8 0.8 1 }
  3656. <VertexRef> { 335 334 340 341 <Ref> { body } }
  3657. }
  3658. <Polygon> {
  3659. <RGBA> { 0.8 0.8 0.8 1 }
  3660. <VertexRef> { 336 188 197 342 <Ref> { body } }
  3661. }
  3662. <Polygon> {
  3663. <RGBA> { 0.8 0.8 0.8 1 }
  3664. <VertexRef> { 337 336 342 343 <Ref> { body } }
  3665. }
  3666. <Polygon> {
  3667. <RGBA> { 0.8 0.8 0.8 1 }
  3668. <VertexRef> { 338 337 343 344 <Ref> { body } }
  3669. }
  3670. <Polygon> {
  3671. <RGBA> { 0.8 0.8 0.8 1 }
  3672. <VertexRef> { 339 338 344 345 <Ref> { body } }
  3673. }
  3674. <Polygon> {
  3675. <RGBA> { 0.8 0.8 0.8 1 }
  3676. <VertexRef> { 340 339 345 346 <Ref> { body } }
  3677. }
  3678. <Polygon> {
  3679. <RGBA> { 0.8 0.8 0.8 1 }
  3680. <VertexRef> { 341 340 346 347 <Ref> { body } }
  3681. }
  3682. <Polygon> {
  3683. <RGBA> { 0.8 0.8 0.8 1 }
  3684. <VertexRef> { 342 197 206 348 <Ref> { body } }
  3685. }
  3686. <Polygon> {
  3687. <RGBA> { 0.8 0.8 0.8 1 }
  3688. <VertexRef> { 343 342 348 349 <Ref> { body } }
  3689. }
  3690. <Polygon> {
  3691. <RGBA> { 0.8 0.8 0.8 1 }
  3692. <VertexRef> { 344 343 349 350 <Ref> { body } }
  3693. }
  3694. <Polygon> {
  3695. <RGBA> { 0.8 0.8 0.8 1 }
  3696. <VertexRef> { 345 344 350 351 <Ref> { body } }
  3697. }
  3698. <Polygon> {
  3699. <RGBA> { 0.8 0.8 0.8 1 }
  3700. <VertexRef> { 346 345 351 352 <Ref> { body } }
  3701. }
  3702. <Polygon> {
  3703. <RGBA> { 0.8 0.8 0.8 1 }
  3704. <VertexRef> { 347 346 352 353 <Ref> { body } }
  3705. }
  3706. <Polygon> {
  3707. <RGBA> { 0.8 0.8 0.8 1 }
  3708. <VertexRef> { 348 206 215 354 <Ref> { body } }
  3709. }
  3710. <Polygon> {
  3711. <RGBA> { 0.8 0.8 0.8 1 }
  3712. <VertexRef> { 349 348 354 355 <Ref> { body } }
  3713. }
  3714. <Polygon> {
  3715. <RGBA> { 0.8 0.8 0.8 1 }
  3716. <VertexRef> { 350 349 355 356 <Ref> { body } }
  3717. }
  3718. <Polygon> {
  3719. <RGBA> { 0.8 0.8 0.8 1 }
  3720. <VertexRef> { 351 350 356 357 <Ref> { body } }
  3721. }
  3722. <Polygon> {
  3723. <RGBA> { 0.8 0.8 0.8 1 }
  3724. <VertexRef> { 352 351 357 358 <Ref> { body } }
  3725. }
  3726. <Polygon> {
  3727. <RGBA> { 0.8 0.8 0.8 1 }
  3728. <VertexRef> { 353 352 358 359 <Ref> { body } }
  3729. }
  3730. <Polygon> {
  3731. <RGBA> { 0.8 0.8 0.8 1 }
  3732. <VertexRef> { 354 215 16 216 <Ref> { body } }
  3733. }
  3734. <Polygon> {
  3735. <RGBA> { 0.8 0.8 0.8 1 }
  3736. <VertexRef> { 355 354 216 218 <Ref> { body } }
  3737. }
  3738. <Polygon> {
  3739. <RGBA> { 0.8 0.8 0.8 1 }
  3740. <VertexRef> { 356 355 218 220 <Ref> { body } }
  3741. }
  3742. <Polygon> {
  3743. <RGBA> { 0.8 0.8 0.8 1 }
  3744. <VertexRef> { 357 356 220 222 <Ref> { body } }
  3745. }
  3746. <Polygon> {
  3747. <RGBA> { 0.8 0.8 0.8 1 }
  3748. <VertexRef> { 358 357 222 224 <Ref> { body } }
  3749. }
  3750. <Polygon> {
  3751. <RGBA> { 0.8 0.8 0.8 1 }
  3752. <VertexRef> { 359 358 224 226 <Ref> { body } }
  3753. }
  3754. <Polygon> {
  3755. <RGBA> { 0.8 0.8 0.8 1 }
  3756. <VertexRef> { 360 226 227 361 <Ref> { body } }
  3757. }
  3758. <Polygon> {
  3759. <RGBA> { 0.8 0.8 0.8 1 }
  3760. <VertexRef> { 362 360 361 363 <Ref> { body } }
  3761. }
  3762. <Polygon> {
  3763. <RGBA> { 0.8 0.8 0.8 1 }
  3764. <VertexRef> { 364 362 363 365 <Ref> { body } }
  3765. }
  3766. <Polygon> {
  3767. <RGBA> { 0.8 0.8 0.8 1 }
  3768. <VertexRef> { 366 364 365 367 <Ref> { body } }
  3769. }
  3770. <Polygon> {
  3771. <RGBA> { 0.8 0.8 0.8 1 }
  3772. <VertexRef> { 368 366 367 369 <Ref> { body } }
  3773. }
  3774. <Polygon> {
  3775. <RGBA> { 0.8 0.8 0.8 1 }
  3776. <VertexRef> { 370 368 369 371 <Ref> { body } }
  3777. }
  3778. <Polygon> {
  3779. <RGBA> { 0.8 0.8 0.8 1 }
  3780. <VertexRef> { 361 227 233 372 <Ref> { body } }
  3781. }
  3782. <Polygon> {
  3783. <RGBA> { 0.8 0.8 0.8 1 }
  3784. <VertexRef> { 363 361 372 373 <Ref> { body } }
  3785. }
  3786. <Polygon> {
  3787. <RGBA> { 0.8 0.8 0.8 1 }
  3788. <VertexRef> { 365 363 373 374 <Ref> { body } }
  3789. }
  3790. <Polygon> {
  3791. <RGBA> { 0.8 0.8 0.8 1 }
  3792. <VertexRef> { 367 365 374 375 <Ref> { body } }
  3793. }
  3794. <Polygon> {
  3795. <RGBA> { 0.8 0.8 0.8 1 }
  3796. <VertexRef> { 369 367 375 376 <Ref> { body } }
  3797. }
  3798. <Polygon> {
  3799. <RGBA> { 0.8 0.8 0.8 1 }
  3800. <VertexRef> { 371 369 376 377 <Ref> { body } }
  3801. }
  3802. <Polygon> {
  3803. <RGBA> { 0.8 0.8 0.8 1 }
  3804. <VertexRef> { 372 233 239 378 <Ref> { body } }
  3805. }
  3806. <Polygon> {
  3807. <RGBA> { 0.8 0.8 0.8 1 }
  3808. <VertexRef> { 373 372 378 379 <Ref> { body } }
  3809. }
  3810. <Polygon> {
  3811. <RGBA> { 0.8 0.8 0.8 1 }
  3812. <VertexRef> { 374 373 379 380 <Ref> { body } }
  3813. }
  3814. <Polygon> {
  3815. <RGBA> { 0.8 0.8 0.8 1 }
  3816. <VertexRef> { 375 374 380 381 <Ref> { body } }
  3817. }
  3818. <Polygon> {
  3819. <RGBA> { 0.8 0.8 0.8 1 }
  3820. <VertexRef> { 376 375 381 382 <Ref> { body } }
  3821. }
  3822. <Polygon> {
  3823. <RGBA> { 0.8 0.8 0.8 1 }
  3824. <VertexRef> { 377 376 382 383 <Ref> { body } }
  3825. }
  3826. <Polygon> {
  3827. <RGBA> { 0.8 0.8 0.8 1 }
  3828. <VertexRef> { 378 239 245 384 <Ref> { body } }
  3829. }
  3830. <Polygon> {
  3831. <RGBA> { 0.8 0.8 0.8 1 }
  3832. <VertexRef> { 379 378 384 385 <Ref> { body } }
  3833. }
  3834. <Polygon> {
  3835. <RGBA> { 0.8 0.8 0.8 1 }
  3836. <VertexRef> { 380 379 385 386 <Ref> { body } }
  3837. }
  3838. <Polygon> {
  3839. <RGBA> { 0.8 0.8 0.8 1 }
  3840. <VertexRef> { 381 380 386 387 <Ref> { body } }
  3841. }
  3842. <Polygon> {
  3843. <RGBA> { 0.8 0.8 0.8 1 }
  3844. <VertexRef> { 382 381 387 388 <Ref> { body } }
  3845. }
  3846. <Polygon> {
  3847. <RGBA> { 0.8 0.8 0.8 1 }
  3848. <VertexRef> { 383 382 388 389 <Ref> { body } }
  3849. }
  3850. <Polygon> {
  3851. <RGBA> { 0.8 0.8 0.8 1 }
  3852. <VertexRef> { 384 245 251 390 <Ref> { body } }
  3853. }
  3854. <Polygon> {
  3855. <RGBA> { 0.8 0.8 0.8 1 }
  3856. <VertexRef> { 385 384 390 391 <Ref> { body } }
  3857. }
  3858. <Polygon> {
  3859. <RGBA> { 0.8 0.8 0.8 1 }
  3860. <VertexRef> { 386 385 391 392 <Ref> { body } }
  3861. }
  3862. <Polygon> {
  3863. <RGBA> { 0.8 0.8 0.8 1 }
  3864. <VertexRef> { 387 386 392 393 <Ref> { body } }
  3865. }
  3866. <Polygon> {
  3867. <RGBA> { 0.8 0.8 0.8 1 }
  3868. <VertexRef> { 388 387 393 394 <Ref> { body } }
  3869. }
  3870. <Polygon> {
  3871. <RGBA> { 0.8 0.8 0.8 1 }
  3872. <VertexRef> { 389 388 394 395 <Ref> { body } }
  3873. }
  3874. <Polygon> {
  3875. <RGBA> { 0.8 0.8 0.8 1 }
  3876. <VertexRef> { 390 251 257 396 <Ref> { body } }
  3877. }
  3878. <Polygon> {
  3879. <RGBA> { 0.8 0.8 0.8 1 }
  3880. <VertexRef> { 391 390 396 397 <Ref> { body } }
  3881. }
  3882. <Polygon> {
  3883. <RGBA> { 0.8 0.8 0.8 1 }
  3884. <VertexRef> { 392 391 397 398 <Ref> { body } }
  3885. }
  3886. <Polygon> {
  3887. <RGBA> { 0.8 0.8 0.8 1 }
  3888. <VertexRef> { 393 392 398 399 <Ref> { body } }
  3889. }
  3890. <Polygon> {
  3891. <RGBA> { 0.8 0.8 0.8 1 }
  3892. <VertexRef> { 394 393 399 400 <Ref> { body } }
  3893. }
  3894. <Polygon> {
  3895. <RGBA> { 0.8 0.8 0.8 1 }
  3896. <VertexRef> { 395 394 400 401 <Ref> { body } }
  3897. }
  3898. <Polygon> {
  3899. <RGBA> { 0.8 0.8 0.8 1 }
  3900. <VertexRef> { 396 257 263 402 <Ref> { body } }
  3901. }
  3902. <Polygon> {
  3903. <RGBA> { 0.8 0.8 0.8 1 }
  3904. <VertexRef> { 397 396 402 403 <Ref> { body } }
  3905. }
  3906. <Polygon> {
  3907. <RGBA> { 0.8 0.8 0.8 1 }
  3908. <VertexRef> { 398 397 403 404 <Ref> { body } }
  3909. }
  3910. <Polygon> {
  3911. <RGBA> { 0.8 0.8 0.8 1 }
  3912. <VertexRef> { 399 398 404 405 <Ref> { body } }
  3913. }
  3914. <Polygon> {
  3915. <RGBA> { 0.8 0.8 0.8 1 }
  3916. <VertexRef> { 400 399 405 406 <Ref> { body } }
  3917. }
  3918. <Polygon> {
  3919. <RGBA> { 0.8 0.8 0.8 1 }
  3920. <VertexRef> { 401 400 406 407 <Ref> { body } }
  3921. }
  3922. <Polygon> {
  3923. <RGBA> { 0.8 0.8 0.8 1 }
  3924. <VertexRef> { 402 263 269 408 <Ref> { body } }
  3925. }
  3926. <Polygon> {
  3927. <RGBA> { 0.8 0.8 0.8 1 }
  3928. <VertexRef> { 403 402 408 409 <Ref> { body } }
  3929. }
  3930. <Polygon> {
  3931. <RGBA> { 0.8 0.8 0.8 1 }
  3932. <VertexRef> { 404 403 409 410 <Ref> { body } }
  3933. }
  3934. <Polygon> {
  3935. <RGBA> { 0.8 0.8 0.8 1 }
  3936. <VertexRef> { 405 404 410 411 <Ref> { body } }
  3937. }
  3938. <Polygon> {
  3939. <RGBA> { 0.8 0.8 0.8 1 }
  3940. <VertexRef> { 406 405 411 412 <Ref> { body } }
  3941. }
  3942. <Polygon> {
  3943. <RGBA> { 0.8 0.8 0.8 1 }
  3944. <VertexRef> { 407 406 412 413 <Ref> { body } }
  3945. }
  3946. <Polygon> {
  3947. <RGBA> { 0.8 0.8 0.8 1 }
  3948. <VertexRef> { 408 269 275 414 <Ref> { body } }
  3949. }
  3950. <Polygon> {
  3951. <RGBA> { 0.8 0.8 0.8 1 }
  3952. <VertexRef> { 409 408 414 415 <Ref> { body } }
  3953. }
  3954. <Polygon> {
  3955. <RGBA> { 0.8 0.8 0.8 1 }
  3956. <VertexRef> { 410 409 415 416 <Ref> { body } }
  3957. }
  3958. <Polygon> {
  3959. <RGBA> { 0.8 0.8 0.8 1 }
  3960. <VertexRef> { 411 410 416 417 <Ref> { body } }
  3961. }
  3962. <Polygon> {
  3963. <RGBA> { 0.8 0.8 0.8 1 }
  3964. <VertexRef> { 412 411 417 418 <Ref> { body } }
  3965. }
  3966. <Polygon> {
  3967. <RGBA> { 0.8 0.8 0.8 1 }
  3968. <VertexRef> { 413 412 418 419 <Ref> { body } }
  3969. }
  3970. <Polygon> {
  3971. <RGBA> { 0.8 0.8 0.8 1 }
  3972. <VertexRef> { 414 275 281 420 <Ref> { body } }
  3973. }
  3974. <Polygon> {
  3975. <RGBA> { 0.8 0.8 0.8 1 }
  3976. <VertexRef> { 415 414 420 421 <Ref> { body } }
  3977. }
  3978. <Polygon> {
  3979. <RGBA> { 0.8 0.8 0.8 1 }
  3980. <VertexRef> { 416 415 421 422 <Ref> { body } }
  3981. }
  3982. <Polygon> {
  3983. <RGBA> { 0.8 0.8 0.8 1 }
  3984. <VertexRef> { 417 416 422 423 <Ref> { body } }
  3985. }
  3986. <Polygon> {
  3987. <RGBA> { 0.8 0.8 0.8 1 }
  3988. <VertexRef> { 418 417 423 424 <Ref> { body } }
  3989. }
  3990. <Polygon> {
  3991. <RGBA> { 0.8 0.8 0.8 1 }
  3992. <VertexRef> { 419 418 424 425 <Ref> { body } }
  3993. }
  3994. <Polygon> {
  3995. <RGBA> { 0.8 0.8 0.8 1 }
  3996. <VertexRef> { 420 281 287 426 <Ref> { body } }
  3997. }
  3998. <Polygon> {
  3999. <RGBA> { 0.8 0.8 0.8 1 }
  4000. <VertexRef> { 421 420 426 427 <Ref> { body } }
  4001. }
  4002. <Polygon> {
  4003. <RGBA> { 0.8 0.8 0.8 1 }
  4004. <VertexRef> { 422 421 427 428 <Ref> { body } }
  4005. }
  4006. <Polygon> {
  4007. <RGBA> { 0.8 0.8 0.8 1 }
  4008. <VertexRef> { 423 422 428 429 <Ref> { body } }
  4009. }
  4010. <Polygon> {
  4011. <RGBA> { 0.8 0.8 0.8 1 }
  4012. <VertexRef> { 424 423 429 430 <Ref> { body } }
  4013. }
  4014. <Polygon> {
  4015. <RGBA> { 0.8 0.8 0.8 1 }
  4016. <VertexRef> { 425 424 430 431 <Ref> { body } }
  4017. }
  4018. <Polygon> {
  4019. <RGBA> { 0.8 0.8 0.8 1 }
  4020. <VertexRef> { 426 287 293 432 <Ref> { body } }
  4021. }
  4022. <Polygon> {
  4023. <RGBA> { 0.8 0.8 0.8 1 }
  4024. <VertexRef> { 427 426 432 433 <Ref> { body } }
  4025. }
  4026. <Polygon> {
  4027. <RGBA> { 0.8 0.8 0.8 1 }
  4028. <VertexRef> { 428 427 433 434 <Ref> { body } }
  4029. }
  4030. <Polygon> {
  4031. <RGBA> { 0.8 0.8 0.8 1 }
  4032. <VertexRef> { 429 428 434 435 <Ref> { body } }
  4033. }
  4034. <Polygon> {
  4035. <RGBA> { 0.8 0.8 0.8 1 }
  4036. <VertexRef> { 430 429 435 436 <Ref> { body } }
  4037. }
  4038. <Polygon> {
  4039. <RGBA> { 0.8 0.8 0.8 1 }
  4040. <VertexRef> { 431 430 436 437 <Ref> { body } }
  4041. }
  4042. <Polygon> {
  4043. <RGBA> { 0.8 0.8 0.8 1 }
  4044. <VertexRef> { 432 293 299 438 <Ref> { body } }
  4045. }
  4046. <Polygon> {
  4047. <RGBA> { 0.8 0.8 0.8 1 }
  4048. <VertexRef> { 433 432 438 439 <Ref> { body } }
  4049. }
  4050. <Polygon> {
  4051. <RGBA> { 0.8 0.8 0.8 1 }
  4052. <VertexRef> { 434 433 439 440 <Ref> { body } }
  4053. }
  4054. <Polygon> {
  4055. <RGBA> { 0.8 0.8 0.8 1 }
  4056. <VertexRef> { 435 434 440 441 <Ref> { body } }
  4057. }
  4058. <Polygon> {
  4059. <RGBA> { 0.8 0.8 0.8 1 }
  4060. <VertexRef> { 436 435 441 442 <Ref> { body } }
  4061. }
  4062. <Polygon> {
  4063. <RGBA> { 0.8 0.8 0.8 1 }
  4064. <VertexRef> { 437 436 442 443 <Ref> { body } }
  4065. }
  4066. <Polygon> {
  4067. <RGBA> { 0.8 0.8 0.8 1 }
  4068. <VertexRef> { 438 299 305 444 <Ref> { body } }
  4069. }
  4070. <Polygon> {
  4071. <RGBA> { 0.8 0.8 0.8 1 }
  4072. <VertexRef> { 439 438 444 445 <Ref> { body } }
  4073. }
  4074. <Polygon> {
  4075. <RGBA> { 0.8 0.8 0.8 1 }
  4076. <VertexRef> { 440 439 445 446 <Ref> { body } }
  4077. }
  4078. <Polygon> {
  4079. <RGBA> { 0.8 0.8 0.8 1 }
  4080. <VertexRef> { 441 440 446 447 <Ref> { body } }
  4081. }
  4082. <Polygon> {
  4083. <RGBA> { 0.8 0.8 0.8 1 }
  4084. <VertexRef> { 442 441 447 448 <Ref> { body } }
  4085. }
  4086. <Polygon> {
  4087. <RGBA> { 0.8 0.8 0.8 1 }
  4088. <VertexRef> { 443 442 448 449 <Ref> { body } }
  4089. }
  4090. <Polygon> {
  4091. <RGBA> { 0.8 0.8 0.8 1 }
  4092. <VertexRef> { 444 305 311 450 <Ref> { body } }
  4093. }
  4094. <Polygon> {
  4095. <RGBA> { 0.8 0.8 0.8 1 }
  4096. <VertexRef> { 445 444 450 451 <Ref> { body } }
  4097. }
  4098. <Polygon> {
  4099. <RGBA> { 0.8 0.8 0.8 1 }
  4100. <VertexRef> { 446 445 451 452 <Ref> { body } }
  4101. }
  4102. <Polygon> {
  4103. <RGBA> { 0.8 0.8 0.8 1 }
  4104. <VertexRef> { 447 446 452 453 <Ref> { body } }
  4105. }
  4106. <Polygon> {
  4107. <RGBA> { 0.8 0.8 0.8 1 }
  4108. <VertexRef> { 448 447 453 454 <Ref> { body } }
  4109. }
  4110. <Polygon> {
  4111. <RGBA> { 0.8 0.8 0.8 1 }
  4112. <VertexRef> { 449 448 454 455 <Ref> { body } }
  4113. }
  4114. <Polygon> {
  4115. <RGBA> { 0.8 0.8 0.8 1 }
  4116. <VertexRef> { 450 311 317 456 <Ref> { body } }
  4117. }
  4118. <Polygon> {
  4119. <RGBA> { 0.8 0.8 0.8 1 }
  4120. <VertexRef> { 451 450 456 457 <Ref> { body } }
  4121. }
  4122. <Polygon> {
  4123. <RGBA> { 0.8 0.8 0.8 1 }
  4124. <VertexRef> { 452 451 457 458 <Ref> { body } }
  4125. }
  4126. <Polygon> {
  4127. <RGBA> { 0.8 0.8 0.8 1 }
  4128. <VertexRef> { 453 452 458 459 <Ref> { body } }
  4129. }
  4130. <Polygon> {
  4131. <RGBA> { 0.8 0.8 0.8 1 }
  4132. <VertexRef> { 454 453 459 460 <Ref> { body } }
  4133. }
  4134. <Polygon> {
  4135. <RGBA> { 0.8 0.8 0.8 1 }
  4136. <VertexRef> { 455 454 460 461 <Ref> { body } }
  4137. }
  4138. <Polygon> {
  4139. <RGBA> { 0.8 0.8 0.8 1 }
  4140. <VertexRef> { 456 317 323 462 <Ref> { body } }
  4141. }
  4142. <Polygon> {
  4143. <RGBA> { 0.8 0.8 0.8 1 }
  4144. <VertexRef> { 457 456 462 463 <Ref> { body } }
  4145. }
  4146. <Polygon> {
  4147. <RGBA> { 0.8 0.8 0.8 1 }
  4148. <VertexRef> { 458 457 463 464 <Ref> { body } }
  4149. }
  4150. <Polygon> {
  4151. <RGBA> { 0.8 0.8 0.8 1 }
  4152. <VertexRef> { 459 458 464 465 <Ref> { body } }
  4153. }
  4154. <Polygon> {
  4155. <RGBA> { 0.8 0.8 0.8 1 }
  4156. <VertexRef> { 460 459 465 466 <Ref> { body } }
  4157. }
  4158. <Polygon> {
  4159. <RGBA> { 0.8 0.8 0.8 1 }
  4160. <VertexRef> { 461 460 466 467 <Ref> { body } }
  4161. }
  4162. <Polygon> {
  4163. <RGBA> { 0.8 0.8 0.8 1 }
  4164. <VertexRef> { 462 323 329 468 <Ref> { body } }
  4165. }
  4166. <Polygon> {
  4167. <RGBA> { 0.8 0.8 0.8 1 }
  4168. <VertexRef> { 463 462 468 469 <Ref> { body } }
  4169. }
  4170. <Polygon> {
  4171. <RGBA> { 0.8 0.8 0.8 1 }
  4172. <VertexRef> { 464 463 469 470 <Ref> { body } }
  4173. }
  4174. <Polygon> {
  4175. <RGBA> { 0.8 0.8 0.8 1 }
  4176. <VertexRef> { 465 464 470 471 <Ref> { body } }
  4177. }
  4178. <Polygon> {
  4179. <RGBA> { 0.8 0.8 0.8 1 }
  4180. <VertexRef> { 466 465 471 472 <Ref> { body } }
  4181. }
  4182. <Polygon> {
  4183. <RGBA> { 0.8 0.8 0.8 1 }
  4184. <VertexRef> { 467 466 472 473 <Ref> { body } }
  4185. }
  4186. <Polygon> {
  4187. <RGBA> { 0.8 0.8 0.8 1 }
  4188. <VertexRef> { 468 329 335 474 <Ref> { body } }
  4189. }
  4190. <Polygon> {
  4191. <RGBA> { 0.8 0.8 0.8 1 }
  4192. <VertexRef> { 469 468 474 475 <Ref> { body } }
  4193. }
  4194. <Polygon> {
  4195. <RGBA> { 0.8 0.8 0.8 1 }
  4196. <VertexRef> { 470 469 475 476 <Ref> { body } }
  4197. }
  4198. <Polygon> {
  4199. <RGBA> { 0.8 0.8 0.8 1 }
  4200. <VertexRef> { 471 470 476 477 <Ref> { body } }
  4201. }
  4202. <Polygon> {
  4203. <RGBA> { 0.8 0.8 0.8 1 }
  4204. <VertexRef> { 472 471 477 478 <Ref> { body } }
  4205. }
  4206. <Polygon> {
  4207. <RGBA> { 0.8 0.8 0.8 1 }
  4208. <VertexRef> { 473 472 478 479 <Ref> { body } }
  4209. }
  4210. <Polygon> {
  4211. <RGBA> { 0.8 0.8 0.8 1 }
  4212. <VertexRef> { 474 335 341 480 <Ref> { body } }
  4213. }
  4214. <Polygon> {
  4215. <RGBA> { 0.8 0.8 0.8 1 }
  4216. <VertexRef> { 475 474 480 481 <Ref> { body } }
  4217. }
  4218. <Polygon> {
  4219. <RGBA> { 0.8 0.8 0.8 1 }
  4220. <VertexRef> { 476 475 481 482 <Ref> { body } }
  4221. }
  4222. <Polygon> {
  4223. <RGBA> { 0.8 0.8 0.8 1 }
  4224. <VertexRef> { 477 476 482 483 <Ref> { body } }
  4225. }
  4226. <Polygon> {
  4227. <RGBA> { 0.8 0.8 0.8 1 }
  4228. <VertexRef> { 478 477 483 484 <Ref> { body } }
  4229. }
  4230. <Polygon> {
  4231. <RGBA> { 0.8 0.8 0.8 1 }
  4232. <VertexRef> { 479 478 484 485 <Ref> { body } }
  4233. }
  4234. <Polygon> {
  4235. <RGBA> { 0.8 0.8 0.8 1 }
  4236. <VertexRef> { 480 341 347 486 <Ref> { body } }
  4237. }
  4238. <Polygon> {
  4239. <RGBA> { 0.8 0.8 0.8 1 }
  4240. <VertexRef> { 481 480 486 487 <Ref> { body } }
  4241. }
  4242. <Polygon> {
  4243. <RGBA> { 0.8 0.8 0.8 1 }
  4244. <VertexRef> { 482 481 487 488 <Ref> { body } }
  4245. }
  4246. <Polygon> {
  4247. <RGBA> { 0.8 0.8 0.8 1 }
  4248. <VertexRef> { 483 482 488 489 <Ref> { body } }
  4249. }
  4250. <Polygon> {
  4251. <RGBA> { 0.8 0.8 0.8 1 }
  4252. <VertexRef> { 484 483 489 490 <Ref> { body } }
  4253. }
  4254. <Polygon> {
  4255. <RGBA> { 0.8 0.8 0.8 1 }
  4256. <VertexRef> { 485 484 490 491 <Ref> { body } }
  4257. }
  4258. <Polygon> {
  4259. <RGBA> { 0.8 0.8 0.8 1 }
  4260. <VertexRef> { 486 347 353 492 <Ref> { body } }
  4261. }
  4262. <Polygon> {
  4263. <RGBA> { 0.8 0.8 0.8 1 }
  4264. <VertexRef> { 487 486 492 493 <Ref> { body } }
  4265. }
  4266. <Polygon> {
  4267. <RGBA> { 0.8 0.8 0.8 1 }
  4268. <VertexRef> { 488 487 493 494 <Ref> { body } }
  4269. }
  4270. <Polygon> {
  4271. <RGBA> { 0.8 0.8 0.8 1 }
  4272. <VertexRef> { 489 488 494 495 <Ref> { body } }
  4273. }
  4274. <Polygon> {
  4275. <RGBA> { 0.8 0.8 0.8 1 }
  4276. <VertexRef> { 490 489 495 496 <Ref> { body } }
  4277. }
  4278. <Polygon> {
  4279. <RGBA> { 0.8 0.8 0.8 1 }
  4280. <VertexRef> { 491 490 496 497 <Ref> { body } }
  4281. }
  4282. <Polygon> {
  4283. <RGBA> { 0.8 0.8 0.8 1 }
  4284. <VertexRef> { 492 353 359 498 <Ref> { body } }
  4285. }
  4286. <Polygon> {
  4287. <RGBA> { 0.8 0.8 0.8 1 }
  4288. <VertexRef> { 493 492 498 499 <Ref> { body } }
  4289. }
  4290. <Polygon> {
  4291. <RGBA> { 0.8 0.8 0.8 1 }
  4292. <VertexRef> { 494 493 499 500 <Ref> { body } }
  4293. }
  4294. <Polygon> {
  4295. <RGBA> { 0.8 0.8 0.8 1 }
  4296. <VertexRef> { 495 494 500 501 <Ref> { body } }
  4297. }
  4298. <Polygon> {
  4299. <RGBA> { 0.8 0.8 0.8 1 }
  4300. <VertexRef> { 496 495 501 502 <Ref> { body } }
  4301. }
  4302. <Polygon> {
  4303. <RGBA> { 0.8 0.8 0.8 1 }
  4304. <VertexRef> { 497 496 502 503 <Ref> { body } }
  4305. }
  4306. <Polygon> {
  4307. <RGBA> { 0.8 0.8 0.8 1 }
  4308. <VertexRef> { 498 359 226 360 <Ref> { body } }
  4309. }
  4310. <Polygon> {
  4311. <RGBA> { 0.8 0.8 0.8 1 }
  4312. <VertexRef> { 499 498 360 362 <Ref> { body } }
  4313. }
  4314. <Polygon> {
  4315. <RGBA> { 0.8 0.8 0.8 1 }
  4316. <VertexRef> { 500 499 362 364 <Ref> { body } }
  4317. }
  4318. <Polygon> {
  4319. <RGBA> { 0.8 0.8 0.8 1 }
  4320. <VertexRef> { 501 500 364 366 <Ref> { body } }
  4321. }
  4322. <Polygon> {
  4323. <RGBA> { 0.8 0.8 0.8 1 }
  4324. <VertexRef> { 502 501 366 368 <Ref> { body } }
  4325. }
  4326. <Polygon> {
  4327. <RGBA> { 0.8 0.8 0.8 1 }
  4328. <VertexRef> { 503 502 368 370 <Ref> { body } }
  4329. }
  4330. <Polygon> {
  4331. <RGBA> { 0.8 0.8 0.8 1 }
  4332. <VertexRef> { 504 505 506 <Ref> { body } }
  4333. }
  4334. <Polygon> {
  4335. <RGBA> { 0.8 0.8 0.8 1 }
  4336. <VertexRef> { 507 504 506 508 <Ref> { body } }
  4337. }
  4338. <Polygon> {
  4339. <RGBA> { 0.8 0.8 0.8 1 }
  4340. <VertexRef> { 509 507 508 510 <Ref> { body } }
  4341. }
  4342. <Polygon> {
  4343. <RGBA> { 0.8 0.8 0.8 1 }
  4344. <VertexRef> { 511 509 510 512 <Ref> { body } }
  4345. }
  4346. <Polygon> {
  4347. <RGBA> { 0.8 0.8 0.8 1 }
  4348. <VertexRef> { 513 511 512 514 <Ref> { body } }
  4349. }
  4350. <Polygon> {
  4351. <RGBA> { 0.8 0.8 0.8 1 }
  4352. <VertexRef> { 370 515 516 503 <Ref> { body } }
  4353. }
  4354. <Polygon> {
  4355. <RGBA> { 0.8 0.8 0.8 1 }
  4356. <VertexRef> { 506 505 517 <Ref> { body } }
  4357. }
  4358. <Polygon> {
  4359. <RGBA> { 0.8 0.8 0.8 1 }
  4360. <VertexRef> { 508 506 517 518 <Ref> { body } }
  4361. }
  4362. <Polygon> {
  4363. <RGBA> { 0.8 0.8 0.8 1 }
  4364. <VertexRef> { 510 508 518 519 <Ref> { body } }
  4365. }
  4366. <Polygon> {
  4367. <RGBA> { 0.8 0.8 0.8 1 }
  4368. <VertexRef> { 512 510 519 520 <Ref> { body } }
  4369. }
  4370. <Polygon> {
  4371. <RGBA> { 0.8 0.8 0.8 1 }
  4372. <VertexRef> { 514 512 520 521 <Ref> { body } }
  4373. }
  4374. <Polygon> {
  4375. <RGBA> { 0.8 0.8 0.8 1 }
  4376. <VertexRef> { 503 516 522 497 <Ref> { body } }
  4377. }
  4378. <Polygon> {
  4379. <RGBA> { 0.8 0.8 0.8 1 }
  4380. <VertexRef> { 517 505 523 <Ref> { body } }
  4381. }
  4382. <Polygon> {
  4383. <RGBA> { 0.8 0.8 0.8 1 }
  4384. <VertexRef> { 518 517 523 524 <Ref> { body } }
  4385. }
  4386. <Polygon> {
  4387. <RGBA> { 0.8 0.8 0.8 1 }
  4388. <VertexRef> { 519 518 524 525 <Ref> { body } }
  4389. }
  4390. <Polygon> {
  4391. <RGBA> { 0.8 0.8 0.8 1 }
  4392. <VertexRef> { 520 519 525 526 <Ref> { body } }
  4393. }
  4394. <Polygon> {
  4395. <RGBA> { 0.8 0.8 0.8 1 }
  4396. <VertexRef> { 521 520 526 527 <Ref> { body } }
  4397. }
  4398. <Polygon> {
  4399. <RGBA> { 0.8 0.8 0.8 1 }
  4400. <VertexRef> { 497 522 528 491 <Ref> { body } }
  4401. }
  4402. <Polygon> {
  4403. <RGBA> { 0.8 0.8 0.8 1 }
  4404. <VertexRef> { 523 505 529 <Ref> { body } }
  4405. }
  4406. <Polygon> {
  4407. <RGBA> { 0.8 0.8 0.8 1 }
  4408. <VertexRef> { 524 523 529 530 <Ref> { body } }
  4409. }
  4410. <Polygon> {
  4411. <RGBA> { 0.8 0.8 0.8 1 }
  4412. <VertexRef> { 525 524 530 531 <Ref> { body } }
  4413. }
  4414. <Polygon> {
  4415. <RGBA> { 0.8 0.8 0.8 1 }
  4416. <VertexRef> { 526 525 531 532 <Ref> { body } }
  4417. }
  4418. <Polygon> {
  4419. <RGBA> { 0.8 0.8 0.8 1 }
  4420. <VertexRef> { 527 526 532 533 <Ref> { body } }
  4421. }
  4422. <Polygon> {
  4423. <RGBA> { 0.8 0.8 0.8 1 }
  4424. <VertexRef> { 491 528 534 485 <Ref> { body } }
  4425. }
  4426. <Polygon> {
  4427. <RGBA> { 0.8 0.8 0.8 1 }
  4428. <VertexRef> { 529 505 535 <Ref> { body } }
  4429. }
  4430. <Polygon> {
  4431. <RGBA> { 0.8 0.8 0.8 1 }
  4432. <VertexRef> { 530 529 535 536 <Ref> { body } }
  4433. }
  4434. <Polygon> {
  4435. <RGBA> { 0.8 0.8 0.8 1 }
  4436. <VertexRef> { 531 530 536 537 <Ref> { body } }
  4437. }
  4438. <Polygon> {
  4439. <RGBA> { 0.8 0.8 0.8 1 }
  4440. <VertexRef> { 532 531 537 538 <Ref> { body } }
  4441. }
  4442. <Polygon> {
  4443. <RGBA> { 0.8 0.8 0.8 1 }
  4444. <VertexRef> { 533 532 538 539 <Ref> { body } }
  4445. }
  4446. <Polygon> {
  4447. <RGBA> { 0.8 0.8 0.8 1 }
  4448. <VertexRef> { 485 534 540 479 <Ref> { body } }
  4449. }
  4450. <Polygon> {
  4451. <RGBA> { 0.8 0.8 0.8 1 }
  4452. <VertexRef> { 535 505 541 <Ref> { body } }
  4453. }
  4454. <Polygon> {
  4455. <RGBA> { 0.8 0.8 0.8 1 }
  4456. <VertexRef> { 536 535 541 542 <Ref> { body } }
  4457. }
  4458. <Polygon> {
  4459. <RGBA> { 0.8 0.8 0.8 1 }
  4460. <VertexRef> { 537 536 542 543 <Ref> { body } }
  4461. }
  4462. <Polygon> {
  4463. <RGBA> { 0.8 0.8 0.8 1 }
  4464. <VertexRef> { 538 537 543 544 <Ref> { body } }
  4465. }
  4466. <Polygon> {
  4467. <RGBA> { 0.8 0.8 0.8 1 }
  4468. <VertexRef> { 539 538 544 545 <Ref> { body } }
  4469. }
  4470. <Polygon> {
  4471. <RGBA> { 0.8 0.8 0.8 1 }
  4472. <VertexRef> { 479 540 546 473 <Ref> { body } }
  4473. }
  4474. <Polygon> {
  4475. <RGBA> { 0.8 0.8 0.8 1 }
  4476. <VertexRef> { 541 505 547 <Ref> { body } }
  4477. }
  4478. <Polygon> {
  4479. <RGBA> { 0.8 0.8 0.8 1 }
  4480. <VertexRef> { 542 541 547 548 <Ref> { body } }
  4481. }
  4482. <Polygon> {
  4483. <RGBA> { 0.8 0.8 0.8 1 }
  4484. <VertexRef> { 543 542 548 549 <Ref> { body } }
  4485. }
  4486. <Polygon> {
  4487. <RGBA> { 0.8 0.8 0.8 1 }
  4488. <VertexRef> { 544 543 549 550 <Ref> { body } }
  4489. }
  4490. <Polygon> {
  4491. <RGBA> { 0.8 0.8 0.8 1 }
  4492. <VertexRef> { 545 544 550 551 <Ref> { body } }
  4493. }
  4494. <Polygon> {
  4495. <RGBA> { 0.8 0.8 0.8 1 }
  4496. <VertexRef> { 473 546 552 467 <Ref> { body } }
  4497. }
  4498. <Polygon> {
  4499. <RGBA> { 0.8 0.8 0.8 1 }
  4500. <VertexRef> { 547 505 553 <Ref> { body } }
  4501. }
  4502. <Polygon> {
  4503. <RGBA> { 0.8 0.8 0.8 1 }
  4504. <VertexRef> { 548 547 553 554 <Ref> { body } }
  4505. }
  4506. <Polygon> {
  4507. <RGBA> { 0.8 0.8 0.8 1 }
  4508. <VertexRef> { 549 548 554 555 <Ref> { body } }
  4509. }
  4510. <Polygon> {
  4511. <RGBA> { 0.8 0.8 0.8 1 }
  4512. <VertexRef> { 550 549 555 556 <Ref> { body } }
  4513. }
  4514. <Polygon> {
  4515. <RGBA> { 0.8 0.8 0.8 1 }
  4516. <VertexRef> { 551 550 556 557 <Ref> { body } }
  4517. }
  4518. <Polygon> {
  4519. <RGBA> { 0.8 0.8 0.8 1 }
  4520. <VertexRef> { 467 552 558 461 <Ref> { body } }
  4521. }
  4522. <Polygon> {
  4523. <RGBA> { 0.8 0.8 0.8 1 }
  4524. <VertexRef> { 553 505 559 <Ref> { body } }
  4525. }
  4526. <Polygon> {
  4527. <RGBA> { 0.8 0.8 0.8 1 }
  4528. <VertexRef> { 554 553 559 560 <Ref> { body } }
  4529. }
  4530. <Polygon> {
  4531. <RGBA> { 0.8 0.8 0.8 1 }
  4532. <VertexRef> { 555 554 560 561 <Ref> { body } }
  4533. }
  4534. <Polygon> {
  4535. <RGBA> { 0.8 0.8 0.8 1 }
  4536. <VertexRef> { 556 555 561 562 <Ref> { body } }
  4537. }
  4538. <Polygon> {
  4539. <RGBA> { 0.8 0.8 0.8 1 }
  4540. <VertexRef> { 557 556 562 563 <Ref> { body } }
  4541. }
  4542. <Polygon> {
  4543. <RGBA> { 0.8 0.8 0.8 1 }
  4544. <VertexRef> { 461 558 564 455 <Ref> { body } }
  4545. }
  4546. <Polygon> {
  4547. <RGBA> { 0.8 0.8 0.8 1 }
  4548. <VertexRef> { 559 505 565 <Ref> { body } }
  4549. }
  4550. <Polygon> {
  4551. <RGBA> { 0.8 0.8 0.8 1 }
  4552. <VertexRef> { 560 559 565 566 <Ref> { body } }
  4553. }
  4554. <Polygon> {
  4555. <RGBA> { 0.8 0.8 0.8 1 }
  4556. <VertexRef> { 561 560 566 567 <Ref> { body } }
  4557. }
  4558. <Polygon> {
  4559. <RGBA> { 0.8 0.8 0.8 1 }
  4560. <VertexRef> { 562 561 567 568 <Ref> { body } }
  4561. }
  4562. <Polygon> {
  4563. <RGBA> { 0.8 0.8 0.8 1 }
  4564. <VertexRef> { 563 562 568 569 <Ref> { body } }
  4565. }
  4566. <Polygon> {
  4567. <RGBA> { 0.8 0.8 0.8 1 }
  4568. <VertexRef> { 455 564 570 449 <Ref> { body } }
  4569. }
  4570. <Polygon> {
  4571. <RGBA> { 0.8 0.8 0.8 1 }
  4572. <VertexRef> { 565 505 571 <Ref> { body } }
  4573. }
  4574. <Polygon> {
  4575. <RGBA> { 0.8 0.8 0.8 1 }
  4576. <VertexRef> { 566 565 571 572 <Ref> { body } }
  4577. }
  4578. <Polygon> {
  4579. <RGBA> { 0.8 0.8 0.8 1 }
  4580. <VertexRef> { 567 566 572 573 <Ref> { body } }
  4581. }
  4582. <Polygon> {
  4583. <RGBA> { 0.8 0.8 0.8 1 }
  4584. <VertexRef> { 568 567 573 574 <Ref> { body } }
  4585. }
  4586. <Polygon> {
  4587. <RGBA> { 0.8 0.8 0.8 1 }
  4588. <VertexRef> { 569 568 574 575 <Ref> { body } }
  4589. }
  4590. <Polygon> {
  4591. <RGBA> { 0.8 0.8 0.8 1 }
  4592. <VertexRef> { 449 570 576 443 <Ref> { body } }
  4593. }
  4594. <Polygon> {
  4595. <RGBA> { 0.8 0.8 0.8 1 }
  4596. <VertexRef> { 571 505 577 <Ref> { body } }
  4597. }
  4598. <Polygon> {
  4599. <RGBA> { 0.8 0.8 0.8 1 }
  4600. <VertexRef> { 572 571 577 578 <Ref> { body } }
  4601. }
  4602. <Polygon> {
  4603. <RGBA> { 0.8 0.8 0.8 1 }
  4604. <VertexRef> { 573 572 578 579 <Ref> { body } }
  4605. }
  4606. <Polygon> {
  4607. <RGBA> { 0.8 0.8 0.8 1 }
  4608. <VertexRef> { 574 573 579 580 <Ref> { body } }
  4609. }
  4610. <Polygon> {
  4611. <RGBA> { 0.8 0.8 0.8 1 }
  4612. <VertexRef> { 575 574 580 581 <Ref> { body } }
  4613. }
  4614. <Polygon> {
  4615. <RGBA> { 0.8 0.8 0.8 1 }
  4616. <VertexRef> { 443 576 582 437 <Ref> { body } }
  4617. }
  4618. <Polygon> {
  4619. <RGBA> { 0.8 0.8 0.8 1 }
  4620. <VertexRef> { 577 505 583 <Ref> { body } }
  4621. }
  4622. <Polygon> {
  4623. <RGBA> { 0.8 0.8 0.8 1 }
  4624. <VertexRef> { 578 577 583 584 <Ref> { body } }
  4625. }
  4626. <Polygon> {
  4627. <RGBA> { 0.8 0.8 0.8 1 }
  4628. <VertexRef> { 579 578 584 585 <Ref> { body } }
  4629. }
  4630. <Polygon> {
  4631. <RGBA> { 0.8 0.8 0.8 1 }
  4632. <VertexRef> { 580 579 585 586 <Ref> { body } }
  4633. }
  4634. <Polygon> {
  4635. <RGBA> { 0.8 0.8 0.8 1 }
  4636. <VertexRef> { 581 580 586 587 <Ref> { body } }
  4637. }
  4638. <Polygon> {
  4639. <RGBA> { 0.8 0.8 0.8 1 }
  4640. <VertexRef> { 437 582 588 431 <Ref> { body } }
  4641. }
  4642. <Polygon> {
  4643. <RGBA> { 0.8 0.8 0.8 1 }
  4644. <VertexRef> { 583 505 589 <Ref> { body } }
  4645. }
  4646. <Polygon> {
  4647. <RGBA> { 0.8 0.8 0.8 1 }
  4648. <VertexRef> { 584 583 589 590 <Ref> { body } }
  4649. }
  4650. <Polygon> {
  4651. <RGBA> { 0.8 0.8 0.8 1 }
  4652. <VertexRef> { 585 584 590 591 <Ref> { body } }
  4653. }
  4654. <Polygon> {
  4655. <RGBA> { 0.8 0.8 0.8 1 }
  4656. <VertexRef> { 586 585 591 592 <Ref> { body } }
  4657. }
  4658. <Polygon> {
  4659. <RGBA> { 0.8 0.8 0.8 1 }
  4660. <VertexRef> { 587 586 592 593 <Ref> { body } }
  4661. }
  4662. <Polygon> {
  4663. <RGBA> { 0.8 0.8 0.8 1 }
  4664. <VertexRef> { 431 588 594 425 <Ref> { body } }
  4665. }
  4666. <Polygon> {
  4667. <RGBA> { 0.8 0.8 0.8 1 }
  4668. <VertexRef> { 589 505 595 <Ref> { body } }
  4669. }
  4670. <Polygon> {
  4671. <RGBA> { 0.8 0.8 0.8 1 }
  4672. <VertexRef> { 590 589 595 596 <Ref> { body } }
  4673. }
  4674. <Polygon> {
  4675. <RGBA> { 0.8 0.8 0.8 1 }
  4676. <VertexRef> { 591 590 596 597 <Ref> { body } }
  4677. }
  4678. <Polygon> {
  4679. <RGBA> { 0.8 0.8 0.8 1 }
  4680. <VertexRef> { 592 591 597 598 <Ref> { body } }
  4681. }
  4682. <Polygon> {
  4683. <RGBA> { 0.8 0.8 0.8 1 }
  4684. <VertexRef> { 593 592 598 599 <Ref> { body } }
  4685. }
  4686. <Polygon> {
  4687. <RGBA> { 0.8 0.8 0.8 1 }
  4688. <VertexRef> { 425 594 600 419 <Ref> { body } }
  4689. }
  4690. <Polygon> {
  4691. <RGBA> { 0.8 0.8 0.8 1 }
  4692. <VertexRef> { 595 505 601 <Ref> { body } }
  4693. }
  4694. <Polygon> {
  4695. <RGBA> { 0.8 0.8 0.8 1 }
  4696. <VertexRef> { 596 595 601 602 <Ref> { body } }
  4697. }
  4698. <Polygon> {
  4699. <RGBA> { 0.8 0.8 0.8 1 }
  4700. <VertexRef> { 597 596 602 603 <Ref> { body } }
  4701. }
  4702. <Polygon> {
  4703. <RGBA> { 0.8 0.8 0.8 1 }
  4704. <VertexRef> { 598 597 603 604 <Ref> { body } }
  4705. }
  4706. <Polygon> {
  4707. <RGBA> { 0.8 0.8 0.8 1 }
  4708. <VertexRef> { 599 598 604 605 <Ref> { body } }
  4709. }
  4710. <Polygon> {
  4711. <RGBA> { 0.8 0.8 0.8 1 }
  4712. <VertexRef> { 419 600 606 413 <Ref> { body } }
  4713. }
  4714. <Polygon> {
  4715. <RGBA> { 0.8 0.8 0.8 1 }
  4716. <VertexRef> { 601 505 607 <Ref> { body } }
  4717. }
  4718. <Polygon> {
  4719. <RGBA> { 0.8 0.8 0.8 1 }
  4720. <VertexRef> { 602 601 607 608 <Ref> { body } }
  4721. }
  4722. <Polygon> {
  4723. <RGBA> { 0.8 0.8 0.8 1 }
  4724. <VertexRef> { 603 602 608 609 <Ref> { body } }
  4725. }
  4726. <Polygon> {
  4727. <RGBA> { 0.8 0.8 0.8 1 }
  4728. <VertexRef> { 604 603 609 610 <Ref> { body } }
  4729. }
  4730. <Polygon> {
  4731. <RGBA> { 0.8 0.8 0.8 1 }
  4732. <VertexRef> { 605 604 610 611 <Ref> { body } }
  4733. }
  4734. <Polygon> {
  4735. <RGBA> { 0.8 0.8 0.8 1 }
  4736. <VertexRef> { 413 606 612 407 <Ref> { body } }
  4737. }
  4738. <Polygon> {
  4739. <RGBA> { 0.8 0.8 0.8 1 }
  4740. <VertexRef> { 607 505 613 <Ref> { body } }
  4741. }
  4742. <Polygon> {
  4743. <RGBA> { 0.8 0.8 0.8 1 }
  4744. <VertexRef> { 608 607 613 614 <Ref> { body } }
  4745. }
  4746. <Polygon> {
  4747. <RGBA> { 0.8 0.8 0.8 1 }
  4748. <VertexRef> { 609 608 614 615 <Ref> { body } }
  4749. }
  4750. <Polygon> {
  4751. <RGBA> { 0.8 0.8 0.8 1 }
  4752. <VertexRef> { 610 609 615 616 <Ref> { body } }
  4753. }
  4754. <Polygon> {
  4755. <RGBA> { 0.8 0.8 0.8 1 }
  4756. <VertexRef> { 611 610 616 617 <Ref> { body } }
  4757. }
  4758. <Polygon> {
  4759. <RGBA> { 0.8 0.8 0.8 1 }
  4760. <VertexRef> { 407 612 618 401 <Ref> { body } }
  4761. }
  4762. <Polygon> {
  4763. <RGBA> { 0.8 0.8 0.8 1 }
  4764. <VertexRef> { 613 505 619 <Ref> { body } }
  4765. }
  4766. <Polygon> {
  4767. <RGBA> { 0.8 0.8 0.8 1 }
  4768. <VertexRef> { 614 613 619 620 <Ref> { body } }
  4769. }
  4770. <Polygon> {
  4771. <RGBA> { 0.8 0.8 0.8 1 }
  4772. <VertexRef> { 615 614 620 621 <Ref> { body } }
  4773. }
  4774. <Polygon> {
  4775. <RGBA> { 0.8 0.8 0.8 1 }
  4776. <VertexRef> { 616 615 621 622 <Ref> { body } }
  4777. }
  4778. <Polygon> {
  4779. <RGBA> { 0.8 0.8 0.8 1 }
  4780. <VertexRef> { 617 616 622 623 <Ref> { body } }
  4781. }
  4782. <Polygon> {
  4783. <RGBA> { 0.8 0.8 0.8 1 }
  4784. <VertexRef> { 401 618 624 395 <Ref> { body } }
  4785. }
  4786. <Polygon> {
  4787. <RGBA> { 0.8 0.8 0.8 1 }
  4788. <VertexRef> { 619 505 625 <Ref> { body } }
  4789. }
  4790. <Polygon> {
  4791. <RGBA> { 0.8 0.8 0.8 1 }
  4792. <VertexRef> { 620 619 625 626 <Ref> { body } }
  4793. }
  4794. <Polygon> {
  4795. <RGBA> { 0.8 0.8 0.8 1 }
  4796. <VertexRef> { 621 620 626 627 <Ref> { body } }
  4797. }
  4798. <Polygon> {
  4799. <RGBA> { 0.8 0.8 0.8 1 }
  4800. <VertexRef> { 622 621 627 628 <Ref> { body } }
  4801. }
  4802. <Polygon> {
  4803. <RGBA> { 0.8 0.8 0.8 1 }
  4804. <VertexRef> { 623 622 628 629 <Ref> { body } }
  4805. }
  4806. <Polygon> {
  4807. <RGBA> { 0.8 0.8 0.8 1 }
  4808. <VertexRef> { 395 624 630 389 <Ref> { body } }
  4809. }
  4810. <Polygon> {
  4811. <RGBA> { 0.8 0.8 0.8 1 }
  4812. <VertexRef> { 625 505 631 <Ref> { body } }
  4813. }
  4814. <Polygon> {
  4815. <RGBA> { 0.8 0.8 0.8 1 }
  4816. <VertexRef> { 626 625 631 632 <Ref> { body } }
  4817. }
  4818. <Polygon> {
  4819. <RGBA> { 0.8 0.8 0.8 1 }
  4820. <VertexRef> { 627 626 632 633 <Ref> { body } }
  4821. }
  4822. <Polygon> {
  4823. <RGBA> { 0.8 0.8 0.8 1 }
  4824. <VertexRef> { 628 627 633 634 <Ref> { body } }
  4825. }
  4826. <Polygon> {
  4827. <RGBA> { 0.8 0.8 0.8 1 }
  4828. <VertexRef> { 629 628 634 635 <Ref> { body } }
  4829. }
  4830. <Polygon> {
  4831. <RGBA> { 0.8 0.8 0.8 1 }
  4832. <VertexRef> { 389 630 636 383 <Ref> { body } }
  4833. }
  4834. <Polygon> {
  4835. <RGBA> { 0.8 0.8 0.8 1 }
  4836. <VertexRef> { 631 505 637 <Ref> { body } }
  4837. }
  4838. <Polygon> {
  4839. <RGBA> { 0.8 0.8 0.8 1 }
  4840. <VertexRef> { 632 631 637 638 <Ref> { body } }
  4841. }
  4842. <Polygon> {
  4843. <RGBA> { 0.8 0.8 0.8 1 }
  4844. <VertexRef> { 633 632 638 639 <Ref> { body } }
  4845. }
  4846. <Polygon> {
  4847. <RGBA> { 0.8 0.8 0.8 1 }
  4848. <VertexRef> { 634 633 639 640 <Ref> { body } }
  4849. }
  4850. <Polygon> {
  4851. <RGBA> { 0.8 0.8 0.8 1 }
  4852. <VertexRef> { 635 634 640 641 <Ref> { body } }
  4853. }
  4854. <Polygon> {
  4855. <RGBA> { 0.8 0.8 0.8 1 }
  4856. <VertexRef> { 383 636 642 377 <Ref> { body } }
  4857. }
  4858. <Polygon> {
  4859. <RGBA> { 0.8 0.8 0.8 1 }
  4860. <VertexRef> { 637 505 643 <Ref> { body } }
  4861. }
  4862. <Polygon> {
  4863. <RGBA> { 0.8 0.8 0.8 1 }
  4864. <VertexRef> { 638 637 643 644 <Ref> { body } }
  4865. }
  4866. <Polygon> {
  4867. <RGBA> { 0.8 0.8 0.8 1 }
  4868. <VertexRef> { 639 638 644 645 <Ref> { body } }
  4869. }
  4870. <Polygon> {
  4871. <RGBA> { 0.8 0.8 0.8 1 }
  4872. <VertexRef> { 640 639 645 646 <Ref> { body } }
  4873. }
  4874. <Polygon> {
  4875. <RGBA> { 0.8 0.8 0.8 1 }
  4876. <VertexRef> { 641 640 646 647 <Ref> { body } }
  4877. }
  4878. <Polygon> {
  4879. <RGBA> { 0.8 0.8 0.8 1 }
  4880. <VertexRef> { 377 642 648 371 <Ref> { body } }
  4881. }
  4882. <Polygon> {
  4883. <RGBA> { 0.8 0.8 0.8 1 }
  4884. <VertexRef> { 643 505 504 <Ref> { body } }
  4885. }
  4886. <Polygon> {
  4887. <RGBA> { 0.8 0.8 0.8 1 }
  4888. <VertexRef> { 644 643 504 507 <Ref> { body } }
  4889. }
  4890. <Polygon> {
  4891. <RGBA> { 0.8 0.8 0.8 1 }
  4892. <VertexRef> { 645 644 507 509 <Ref> { body } }
  4893. }
  4894. <Polygon> {
  4895. <RGBA> { 0.8 0.8 0.8 1 }
  4896. <VertexRef> { 646 645 509 511 <Ref> { body } }
  4897. }
  4898. <Polygon> {
  4899. <RGBA> { 0.8 0.8 0.8 1 }
  4900. <VertexRef> { 647 646 511 513 <Ref> { body } }
  4901. }
  4902. <Polygon> {
  4903. <RGBA> { 0.8 0.8 0.8 1 }
  4904. <VertexRef> { 371 648 515 370 <Ref> { body } }
  4905. }
  4906. }
  4907. <Group> lid {
  4908. <VertexPool> lid {
  4909. <Vertex> 0 {
  4910. 0.2 2.7 2.60712e-06
  4911. <Normal> { 0.940754 0.31602 -4.09409e-06 }
  4912. }
  4913. <Vertex> 1 {
  4914. 0.171296 2.78542 2.6896e-06
  4915. <Normal> { 0.940754 0.31602 -4.09409e-06 }
  4916. }
  4917. <Vertex> 2 {
  4918. 0.165279 2.78542 0.0460477
  4919. <Normal> { 0.908408 0.316329 0.243304 }
  4920. }
  4921. <Vertex> 3 {
  4922. 0.192963 2.7 0.0537066
  4923. <Normal> { 0.908408 0.316329 0.243304 }
  4924. }
  4925. <Vertex> 4 {
  4926. 0.148234 2.78542 0.0871087
  4927. <Normal> { 0.814107 0.316602 0.47082 }
  4928. }
  4929. <Vertex> 5 {
  4930. 0.173037 2.7 0.101633
  4931. <Normal> { 0.814107 0.316602 0.47082 }
  4932. }
  4933. <Vertex> 6 {
  4934. 0.121672 2.78542 0.121675
  4935. <Normal> { 0.665053 0.316601 0.665058 }
  4936. }
  4937. <Vertex> 7 {
  4938. 0.142 2.7 0.142003
  4939. <Normal> { 0.665053 0.316601 0.665058 }
  4940. }
  4941. <Vertex> 8 {
  4942. 0.087106 2.78542 0.148237
  4943. <Normal> { 0.47085 0.316398 0.814168 }
  4944. }
  4945. <Vertex> 9 {
  4946. 0.10163 2.7 0.17304
  4947. <Normal> { 0.47085 0.316398 0.814168 }
  4948. }
  4949. <Vertex> 10 {
  4950. 0.046045 2.78542 0.165282
  4951. <Normal> { 0.243327 0.31609 0.908484 }
  4952. }
  4953. <Vertex> 11 {
  4954. 0.053704 2.7 0.192966
  4955. <Normal> { 0.243327 0.31609 0.908484 }
  4956. }
  4957. <Vertex> 12 {
  4958. 0 2.78542 0.171299
  4959. <Normal> { 4.09409e-06 0.316019 0.940754 }
  4960. }
  4961. <Vertex> 13 {
  4962. 0 2.7 0.200003
  4963. <Normal> { 4.09409e-06 0.316019 0.940754 }
  4964. }
  4965. <Vertex> 14 {
  4966. -0.046045 2.78542 0.165282
  4967. <Normal> { -0.243304 0.316329 0.908408 }
  4968. }
  4969. <Vertex> 15 {
  4970. -0.053704 2.7 0.192966
  4971. <Normal> { -0.243304 0.316329 0.908408 }
  4972. }
  4973. <Vertex> 16 {
  4974. -0.087106 2.78542 0.148237
  4975. <Normal> { -0.47082 0.316602 0.814107 }
  4976. }
  4977. <Vertex> 17 {
  4978. -0.10163 2.7 0.17304
  4979. <Normal> { -0.47082 0.316602 0.814107 }
  4980. }
  4981. <Vertex> 18 {
  4982. -0.121672 2.78542 0.121675
  4983. <Normal> { -0.665057 0.316601 0.665054 }
  4984. }
  4985. <Vertex> 19 {
  4986. -0.142 2.7 0.142003
  4987. <Normal> { -0.665057 0.316601 0.665054 }
  4988. }
  4989. <Vertex> 20 {
  4990. -0.148234 2.78542 0.0871087
  4991. <Normal> { -0.814167 0.316398 0.470851 }
  4992. }
  4993. <Vertex> 21 {
  4994. -0.173037 2.7 0.101633
  4995. <Normal> { -0.814167 0.316398 0.470851 }
  4996. }
  4997. <Vertex> 22 {
  4998. -0.165279 2.78542 0.0460477
  4999. <Normal> { -0.908483 0.31609 0.243327 }
  5000. }
  5001. <Vertex> 23 {
  5002. -0.192963 2.7 0.0537066
  5003. <Normal> { -0.908483 0.31609 0.243327 }
  5004. }
  5005. <Vertex> 24 {
  5006. -0.171296 2.78542 2.6896e-06
  5007. <Normal> { -0.940754 0.31602 4.09782e-06 }
  5008. }
  5009. <Vertex> 25 {
  5010. -0.2 2.7 2.60712e-06
  5011. <Normal> { -0.940754 0.31602 4.09782e-06 }
  5012. }
  5013. <Vertex> 26 {
  5014. -0.165279 2.78542 -0.0460423
  5015. <Normal> { -0.908408 0.31633 -0.243304 }
  5016. }
  5017. <Vertex> 27 {
  5018. -0.192963 2.7 -0.0537014
  5019. <Normal> { -0.908408 0.31633 -0.243304 }
  5020. }
  5021. <Vertex> 28 {
  5022. -0.148234 2.78542 -0.0871033
  5023. <Normal> { -0.814106 0.316603 -0.47082 }
  5024. }
  5025. <Vertex> 29 {
  5026. -0.173037 2.7 -0.101627
  5027. <Normal> { -0.814106 0.316603 -0.47082 }
  5028. }
  5029. <Vertex> 30 {
  5030. -0.121672 2.78542 -0.121669
  5031. <Normal> { -0.665054 0.316603 -0.665056 }
  5032. }
  5033. <Vertex> 31 {
  5034. -0.142 2.7 -0.141997
  5035. <Normal> { -0.665054 0.316603 -0.665056 }
  5036. }
  5037. <Vertex> 32 {
  5038. -0.087106 2.78542 -0.148231
  5039. <Normal> { -0.470851 0.3164 -0.814166 }
  5040. }
  5041. <Vertex> 33 {
  5042. -0.10163 2.7 -0.173034
  5043. <Normal> { -0.470851 0.3164 -0.814166 }
  5044. }
  5045. <Vertex> 34 {
  5046. -0.046045 2.78542 -0.165276
  5047. <Normal> { -0.243327 0.316091 -0.908483 }
  5048. }
  5049. <Vertex> 35 {
  5050. -0.053704 2.7 -0.19296
  5051. <Normal> { -0.243327 0.316091 -0.908483 }
  5052. }
  5053. <Vertex> 36 {
  5054. 0 2.78542 -0.171293
  5055. <Normal> { -4.08664e-06 0.316021 -0.940754 }
  5056. }
  5057. <Vertex> 37 {
  5058. 0 2.7 -0.199997
  5059. <Normal> { -4.08664e-06 0.316021 -0.940754 }
  5060. }
  5061. <Vertex> 38 {
  5062. 0.046045 2.78542 -0.165276
  5063. <Normal> { 0.243304 0.31633 -0.908407 }
  5064. }
  5065. <Vertex> 39 {
  5066. 0.053704 2.7 -0.19296
  5067. <Normal> { 0.243304 0.31633 -0.908407 }
  5068. }
  5069. <Vertex> 40 {
  5070. 0.087106 2.78542 -0.148231
  5071. <Normal> { 0.470821 0.316603 -0.814106 }
  5072. }
  5073. <Vertex> 41 {
  5074. 0.10163 2.7 -0.173034
  5075. <Normal> { 0.470821 0.316603 -0.814106 }
  5076. }
  5077. <Vertex> 42 {
  5078. 0.121672 2.78542 -0.121669
  5079. <Normal> { 0.665057 0.316603 -0.665053 }
  5080. }
  5081. <Vertex> 43 {
  5082. 0.142 2.7 -0.141997
  5083. <Normal> { 0.665057 0.316603 -0.665053 }
  5084. }
  5085. <Vertex> 44 {
  5086. 0.148234 2.78542 -0.0871033
  5087. <Normal> { 0.814166 0.3164 -0.47085 }
  5088. }
  5089. <Vertex> 45 {
  5090. 0.173037 2.7 -0.101627
  5091. <Normal> { 0.814166 0.3164 -0.47085 }
  5092. }
  5093. <Vertex> 46 {
  5094. 0.165279 2.78542 -0.0460423
  5095. <Normal> { 0.908483 0.316091 -0.243327 }
  5096. }
  5097. <Vertex> 47 {
  5098. 0.192963 2.7 -0.0537014
  5099. <Normal> { 0.908483 0.316091 -0.243327 }
  5100. }
  5101. <Vertex> 48 {
  5102. 0.350926 2.63611 2.54543e-06
  5103. <Normal> { 0.298135 0.948832 3.35276e-08 }
  5104. }
  5105. <Vertex> 49 {
  5106. 0.2 2.7 2.60712e-06
  5107. <Normal> { 0.389322 0.919688 3.53903e-08 }
  5108. }
  5109. <Vertex> 50 {
  5110. 0.192963 2.7 0.0537066
  5111. <Normal> { 0.375565 0.919862 0.100721 }
  5112. }
  5113. <Vertex> 51 {
  5114. 0.338579 2.63611 0.0942326
  5115. <Normal> { 0.287587 0.948945 0.0771252 }
  5116. }
  5117. <Vertex> 52 {
  5118. 0.574074 2.58889 2.49983e-06
  5119. <Normal> { 0.180037 0.982989 7.63219e-07 }
  5120. }
  5121. <Vertex> 53 {
  5122. 0.553875 2.58889 0.154152
  5123. <Normal> { 0.173651 0.98303 0.0465682 }
  5124. }
  5125. <Vertex> 54 {
  5126. 0.825 2.55 2.46228e-06
  5127. <Normal> { 0.15843 0.987137 1.27917e-06 }
  5128. }
  5129. <Vertex> 55 {
  5130. 0.795972 2.55 0.22153
  5131. <Normal> { 0.152808 0.987168 0.0409783 }
  5132. }
  5133. <Vertex> 56 {
  5134. 1.05926 2.51111 2.42473e-06
  5135. <Normal> { 0.213343 0.975232 5.68107e-07 }
  5136. }
  5137. <Vertex> 57 {
  5138. 1.02199 2.51111 0.284433
  5139. <Normal> { 0.205779 0.975291 0.0551847 }
  5140. }
  5141. <Vertex> 58 {
  5142. 1.23241 2.46389 2.37913e-06
  5143. <Normal> { 0.473549 0.844003 1.80304e-06 }
  5144. }
  5145. <Vertex> 59 {
  5146. 1.18904 2.46389 0.330926
  5147. <Normal> { 0.456931 0.844256 0.12256 }
  5148. }
  5149. <Vertex> 60 {
  5150. 1.3 2.4 2.31744e-06
  5151. <Normal> { 0.684146 0.723813 3.5353e-06 }
  5152. }
  5153. <Vertex> 61 {
  5154. 1.25426 2.4 0.349076
  5155. <Normal> { 0.660227 0.724236 0.177101 }
  5156. }
  5157. <Vertex> 62 {
  5158. 0.173037 2.7 0.101633
  5159. <Normal> { 0.336004 0.920153 0.19446 }
  5160. }
  5161. <Vertex> 63 {
  5162. 0.303616 2.63611 0.178325
  5163. <Normal> { 0.257274 0.949134 0.148894 }
  5164. }
  5165. <Vertex> 64 {
  5166. 0.49668 2.58889 0.291717
  5167. <Normal> { 0.155322 0.983098 0.0898886 }
  5168. }
  5169. <Vertex> 65 {
  5170. 0.713778 2.55 0.419224
  5171. <Normal> { 0.136677 0.98722 0.079097 }
  5172. }
  5173. <Vertex> 66 {
  5174. 0.916455 2.51111 0.538263
  5175. <Normal> { 0.184067 0.975388 0.106523 }
  5176. }
  5177. <Vertex> 67 {
  5178. 1.06626 2.46389 0.626248
  5179. <Normal> { 0.408973 0.844684 0.236697 }
  5180. }
  5181. <Vertex> 68 {
  5182. 1.12474 2.4 0.660595
  5183. <Normal> { 0.591064 0.724952 0.342093 }
  5184. }
  5185. <Vertex> 69 {
  5186. 0.142 2.7 0.142003
  5187. <Normal> { 0.274345 0.92027 0.274348 }
  5188. }
  5189. <Vertex> 70 {
  5190. 0.249157 2.63611 0.24916
  5191. <Normal> { 0.210054 0.949211 0.210056 }
  5192. }
  5193. <Vertex> 71 {
  5194. 0.407593 2.58889 0.407596
  5195. <Normal> { 0.126805 0.983125 0.126806 }
  5196. }
  5197. <Vertex> 72 {
  5198. 0.58575 2.55 0.585752
  5199. <Normal> { 0.111582 0.987241 0.111583 }
  5200. }
  5201. <Vertex> 73 {
  5202. 0.752074 2.51111 0.752076
  5203. <Normal> { 0.150274 0.975427 0.150275 }
  5204. }
  5205. <Vertex> 74 {
  5206. 0.875009 2.46389 0.875011
  5207. <Normal> { 0.333987 0.844849 0.333988 }
  5208. }
  5209. <Vertex> 75 {
  5210. 0.923 2.4 0.923002
  5211. <Normal> { 0.482745 0.725225 0.482745 }
  5212. }
  5213. <Vertex> 76 {
  5214. 0.10163 2.7 0.17304
  5215. <Normal> { 0.194458 0.920153 0.336005 }
  5216. }
  5217. <Vertex> 77 {
  5218. 0.178322 2.63611 0.303619
  5219. <Normal> { 0.148892 0.949135 0.257274 }
  5220. }
  5221. <Vertex> 78 {
  5222. 0.291715 2.58889 0.496682
  5223. <Normal> { 0.0898876 0.983098 0.155322 }
  5224. }
  5225. <Vertex> 79 {
  5226. 0.419222 2.55 0.71378
  5227. <Normal> { 0.0790966 0.98722 0.136678 }
  5228. }
  5229. <Vertex> 80 {
  5230. 0.538261 2.51111 0.916457
  5231. <Normal> { 0.106522 0.975388 0.184066 }
  5232. }
  5233. <Vertex> 81 {
  5234. 0.626246 2.46389 1.06626
  5235. <Normal> { 0.236698 0.844677 0.408978 }
  5236. }
  5237. <Vertex> 82 {
  5238. 0.660593 2.4 1.12474
  5239. <Normal> { 0.342097 0.724938 0.591078 }
  5240. }
  5241. <Vertex> 83 {
  5242. 0.053704 2.7 0.192966
  5243. <Normal> { 0.100721 0.919862 0.375565 }
  5244. }
  5245. <Vertex> 84 {
  5246. 0.09423 2.63611 0.338582
  5247. <Normal> { 0.0771247 0.948945 0.287587 }
  5248. }
  5249. <Vertex> 85 {
  5250. 0.15415 2.58889 0.553878
  5251. <Normal> { 0.0465673 0.98303 0.173652 }
  5252. }
  5253. <Vertex> 86 {
  5254. 0.221528 2.55 0.795974
  5255. <Normal> { 0.0409777 0.987168 0.152809 }
  5256. }
  5257. <Vertex> 87 {
  5258. 0.284431 2.51111 1.02199
  5259. <Normal> { 0.0551836 0.97529 0.205781 }
  5260. }
  5261. <Vertex> 88 {
  5262. 0.330924 2.46389 1.18904
  5263. <Normal> { 0.122561 0.844259 0.456928 }
  5264. }
  5265. <Vertex> 89 {
  5266. 0.349074 2.4 1.25426
  5267. <Normal> { 0.177103 0.724242 0.660219 }
  5268. }
  5269. <Vertex> 90 {
  5270. 0 2.7 0.200003
  5271. <Normal> { -3.35276e-08 0.919688 0.389322 }
  5272. }
  5273. <Vertex> 91 {
  5274. 0 2.63611 0.350929
  5275. <Normal> { -4.65661e-10 0.948832 0.298136 }
  5276. }
  5277. <Vertex> 92 {
  5278. 0 2.58889 0.574076
  5279. <Normal> { 2.18861e-08 0.982989 0.180039 }
  5280. }
  5281. <Vertex> 93 {
  5282. 0 2.55 0.825002
  5283. <Normal> { -4.65661e-09 0.987137 0.158431 }
  5284. }
  5285. <Vertex> 94 {
  5286. 0 2.51111 1.05926
  5287. <Normal> { 3.50177e-07 0.975232 0.213344 }
  5288. }
  5289. <Vertex> 95 {
  5290. 0 2.46389 1.23241
  5291. <Normal> { -1.14925e-06 0.844003 0.47355 }
  5292. }
  5293. <Vertex> 96 {
  5294. 0 2.4 1.3
  5295. <Normal> { -3.01749e-06 0.723812 0.684147 }
  5296. }
  5297. <Vertex> 97 {
  5298. -0.053704 2.7 0.192966
  5299. <Normal> { -0.100721 0.919862 0.375565 }
  5300. }
  5301. <Vertex> 98 {
  5302. -0.09423 2.63611 0.338582
  5303. <Normal> { -0.0771247 0.948945 0.287587 }
  5304. }
  5305. <Vertex> 99 {
  5306. -0.15415 2.58889 0.553878
  5307. <Normal> { -0.0465674 0.98303 0.173652 }
  5308. }
  5309. <Vertex> 100 {
  5310. -0.221528 2.55 0.795974
  5311. <Normal> { -0.0409777 0.987168 0.152809 }
  5312. }
  5313. <Vertex> 101 {
  5314. -0.284431 2.51111 1.02199
  5315. <Normal> { -0.0551841 0.97529 0.20578 }
  5316. }
  5317. <Vertex> 102 {
  5318. -0.330924 2.46389 1.18904
  5319. <Normal> { -0.12256 0.844256 0.456932 }
  5320. }
  5321. <Vertex> 103 {
  5322. -0.349074 2.4 1.25426
  5323. <Normal> { -0.1771 0.724235 0.660228 }
  5324. }
  5325. <Vertex> 104 {
  5326. -0.10163 2.7 0.17304
  5327. <Normal> { -0.194458 0.920153 0.336005 }
  5328. }
  5329. <Vertex> 105 {
  5330. -0.178322 2.63611 0.303619
  5331. <Normal> { -0.148892 0.949135 0.257274 }
  5332. }
  5333. <Vertex> 106 {
  5334. -0.291715 2.58889 0.496682
  5335. <Normal> { -0.0898878 0.983098 0.155323 }
  5336. }
  5337. <Vertex> 107 {
  5338. -0.419222 2.55 0.71378
  5339. <Normal> { -0.0790965 0.98722 0.136678 }
  5340. }
  5341. <Vertex> 108 {
  5342. -0.538261 2.51111 0.916457
  5343. <Normal> { -0.106522 0.975388 0.184068 }
  5344. }
  5345. <Vertex> 109 {
  5346. -0.626246 2.46389 1.06626
  5347. <Normal> { -0.236696 0.844683 0.408974 }
  5348. }
  5349. <Vertex> 110 {
  5350. -0.660593 2.4 1.12474
  5351. <Normal> { -0.342092 0.724951 0.591065 }
  5352. }
  5353. <Vertex> 111 {
  5354. -0.142 2.7 0.142003
  5355. <Normal> { -0.274344 0.920271 0.274347 }
  5356. }
  5357. <Vertex> 112 {
  5358. -0.249157 2.63611 0.24916
  5359. <Normal> { -0.210054 0.949211 0.210056 }
  5360. }
  5361. <Vertex> 113 {
  5362. -0.407593 2.58889 0.407596
  5363. <Normal> { -0.126805 0.983125 0.126806 }
  5364. }
  5365. <Vertex> 114 {
  5366. -0.58575 2.55 0.585752
  5367. <Normal> { -0.111582 0.987241 0.111583 }
  5368. }
  5369. <Vertex> 115 {
  5370. -0.752074 2.51111 0.752076
  5371. <Normal> { -0.150274 0.975427 0.150275 }
  5372. }
  5373. <Vertex> 116 {
  5374. -0.875009 2.46389 0.875011
  5375. <Normal> { -0.333987 0.844849 0.333988 }
  5376. }
  5377. <Vertex> 117 {
  5378. -0.923 2.4 0.923002
  5379. <Normal> { -0.482745 0.725225 0.482746 }
  5380. }
  5381. <Vertex> 118 {
  5382. -0.173037 2.7 0.101633
  5383. <Normal> { -0.336004 0.920153 0.19446 }
  5384. }
  5385. <Vertex> 119 {
  5386. -0.303616 2.63611 0.178325
  5387. <Normal> { -0.257273 0.949135 0.148894 }
  5388. }
  5389. <Vertex> 120 {
  5390. -0.49668 2.58889 0.291717
  5391. <Normal> { -0.155322 0.983098 0.0898883 }
  5392. }
  5393. <Vertex> 121 {
  5394. -0.713778 2.55 0.419224
  5395. <Normal> { -0.136677 0.98722 0.0790972 }
  5396. }
  5397. <Vertex> 122 {
  5398. -0.916455 2.51111 0.538263
  5399. <Normal> { -0.184065 0.975388 0.106523 }
  5400. }
  5401. <Vertex> 123 {
  5402. -1.06626 2.46389 0.626248
  5403. <Normal> { -0.408978 0.844678 0.236699 }
  5404. }
  5405. <Vertex> 124 {
  5406. -1.12474 2.4 0.660595
  5407. <Normal> { -0.591077 0.724939 0.342098 }
  5408. }
  5409. <Vertex> 125 {
  5410. -0.192963 2.7 0.0537066
  5411. <Normal> { -0.375565 0.919862 0.100721 }
  5412. }
  5413. <Vertex> 126 {
  5414. -0.338579 2.63611 0.0942326
  5415. <Normal> { -0.287587 0.948945 0.0771253 }
  5416. }
  5417. <Vertex> 127 {
  5418. -0.553875 2.58889 0.154152
  5419. <Normal> { -0.173651 0.98303 0.0465681 }
  5420. }
  5421. <Vertex> 128 {
  5422. -0.795972 2.55 0.22153
  5423. <Normal> { -0.152808 0.987168 0.0409784 }
  5424. }
  5425. <Vertex> 129 {
  5426. -1.02199 2.51111 0.284433
  5427. <Normal> { -0.20578 0.97529 0.0551845 }
  5428. }
  5429. <Vertex> 130 {
  5430. -1.18904 2.46389 0.330926
  5431. <Normal> { -0.456927 0.84426 0.122561 }
  5432. }
  5433. <Vertex> 131 {
  5434. -1.25426 2.4 0.349076
  5435. <Normal> { -0.660218 0.724244 0.177104 }
  5436. }
  5437. <Vertex> 132 {
  5438. -0.2 2.7 2.60712e-06
  5439. <Normal> { -0.389322 0.919688 -3.53903e-08 }
  5440. }
  5441. <Vertex> 133 {
  5442. -0.350926 2.63611 2.54543e-06
  5443. <Normal> { -0.298135 0.948832 3.25963e-08 }
  5444. }
  5445. <Vertex> 134 {
  5446. -0.574074 2.58889 2.49983e-06
  5447. <Normal> { -0.180038 0.982989 8.04663e-07 }
  5448. }
  5449. <Vertex> 135 {
  5450. -0.825 2.55 2.46228e-06
  5451. <Normal> { -0.15843 0.987137 1.26753e-06 }
  5452. }
  5453. <Vertex> 136 {
  5454. -1.05926 2.51111 2.42473e-06
  5455. <Normal> { -0.213342 0.975232 1.27032e-06 }
  5456. }
  5457. <Vertex> 137 {
  5458. -1.23241 2.46389 2.37913e-06
  5459. <Normal> { -0.473549 0.844003 -4.91738e-07 }
  5460. }
  5461. <Vertex> 138 {
  5462. -1.3 2.4 2.31744e-06
  5463. <Normal> { -0.684146 0.723813 -2.5034e-06 }
  5464. }
  5465. <Vertex> 139 {
  5466. -0.192963 2.7 -0.0537014
  5467. <Normal> { -0.375565 0.919862 -0.100721 }
  5468. }
  5469. <Vertex> 140 {
  5470. -0.338579 2.63611 -0.0942275
  5471. <Normal> { -0.287587 0.948945 -0.0771238 }
  5472. }
  5473. <Vertex> 141 {
  5474. -0.553875 2.58889 -0.154147
  5475. <Normal> { -0.173651 0.98303 -0.046566 }
  5476. }
  5477. <Vertex> 142 {
  5478. -0.795972 2.55 -0.221526
  5479. <Normal> { -0.152808 0.987168 -0.0409765 }
  5480. }
  5481. <Vertex> 143 {
  5482. -1.02199 2.51111 -0.284429
  5483. <Normal> { -0.205779 0.975291 -0.0551828 }
  5484. }
  5485. <Vertex> 144 {
  5486. -1.18904 2.46389 -0.330922
  5487. <Normal> { -0.456931 0.844256 -0.122559 }
  5488. }
  5489. <Vertex> 145 {
  5490. -1.25426 2.4 -0.349072
  5491. <Normal> { -0.660227 0.724236 -0.1771 }
  5492. }
  5493. <Vertex> 146 {
  5494. -0.173037 2.7 -0.101627
  5495. <Normal> { -0.336005 0.920154 -0.194455 }
  5496. }
  5497. <Vertex> 147 {
  5498. -0.303616 2.63611 -0.178319
  5499. <Normal> { -0.257274 0.949135 -0.14889 }
  5500. }
  5501. <Vertex> 148 {
  5502. -0.49668 2.58889 -0.291712
  5503. <Normal> { -0.155322 0.983098 -0.0898862 }
  5504. }
  5505. <Vertex> 149 {
  5506. -0.713778 2.55 -0.41922
  5507. <Normal> { -0.136677 0.98722 -0.0790955 }
  5508. }
  5509. <Vertex> 150 {
  5510. -0.916455 2.51111 -0.538259
  5511. <Normal> { -0.184067 0.975388 -0.106522 }
  5512. }
  5513. <Vertex> 151 {
  5514. -1.06626 2.46389 -0.626244
  5515. <Normal> { -0.408973 0.844684 -0.236695 }
  5516. }
  5517. <Vertex> 152 {
  5518. -1.12474 2.4 -0.660591
  5519. <Normal> { -0.591064 0.724953 -0.342091 }
  5520. }
  5521. <Vertex> 153 {
  5522. -0.142 2.7 -0.141997
  5523. <Normal> { -0.274346 0.920271 -0.274343 }
  5524. }
  5525. <Vertex> 154 {
  5526. -0.249157 2.63611 -0.249154
  5527. <Normal> { -0.210055 0.949211 -0.210053 }
  5528. }
  5529. <Vertex> 155 {
  5530. -0.407593 2.58889 -0.407591
  5531. <Normal> { -0.126805 0.983126 -0.126804 }
  5532. }
  5533. <Vertex> 156 {
  5534. -0.58575 2.55 -0.585748
  5535. <Normal> { -0.111582 0.987241 -0.111581 }
  5536. }
  5537. <Vertex> 157 {
  5538. -0.752074 2.51111 -0.752072
  5539. <Normal> { -0.150274 0.975428 -0.150273 }
  5540. }
  5541. <Vertex> 158 {
  5542. -0.875009 2.46389 -0.875007
  5543. <Normal> { -0.333987 0.84485 -0.333986 }
  5544. }
  5545. <Vertex> 159 {
  5546. -0.923 2.4 -0.922998
  5547. <Normal> { -0.482745 0.725226 -0.482744 }
  5548. }
  5549. <Vertex> 160 {
  5550. -0.10163 2.7 -0.173034
  5551. <Normal> { -0.194458 0.920153 -0.336005 }
  5552. }
  5553. <Vertex> 161 {
  5554. -0.178322 2.63611 -0.303613
  5555. <Normal> { -0.148892 0.949135 -0.257273 }
  5556. }
  5557. <Vertex> 162 {
  5558. -0.291715 2.58889 -0.496677
  5559. <Normal> { -0.0898869 0.983098 -0.155321 }
  5560. }
  5561. <Vertex> 163 {
  5562. -0.419222 2.55 -0.713776
  5563. <Normal> { -0.0790963 0.98722 -0.136676 }
  5564. }
  5565. <Vertex> 164 {
  5566. -0.538261 2.51111 -0.916453
  5567. <Normal> { -0.106522 0.975388 -0.184064 }
  5568. }
  5569. <Vertex> 165 {
  5570. -0.626246 2.46389 -1.06626
  5571. <Normal> { -0.236698 0.844679 -0.408976 }
  5572. }
  5573. <Vertex> 166 {
  5574. -0.660593 2.4 -1.12474
  5575. <Normal> { -0.342097 0.72494 -0.591076 }
  5576. }
  5577. <Vertex> 167 {
  5578. -0.053704 2.7 -0.19296
  5579. <Normal> { -0.100721 0.919862 -0.375565 }
  5580. }
  5581. <Vertex> 168 {
  5582. -0.09423 2.63611 -0.338576
  5583. <Normal> { -0.0771244 0.948945 -0.287586 }
  5584. }
  5585. <Vertex> 169 {
  5586. -0.15415 2.58889 -0.553873
  5587. <Normal> { -0.0465668 0.98303 -0.17365 }
  5588. }
  5589. <Vertex> 170 {
  5590. -0.221528 2.55 -0.79597
  5591. <Normal> { -0.0409772 0.987168 -0.152807 }
  5592. }
  5593. <Vertex> 171 {
  5594. -0.284431 2.51111 -1.02199
  5595. <Normal> { -0.0551833 0.975291 -0.205779 }
  5596. }
  5597. <Vertex> 172 {
  5598. -0.330924 2.46389 -1.18904
  5599. <Normal> { -0.12256 0.844261 -0.456926 }
  5600. }
  5601. <Vertex> 173 {
  5602. -0.349074 2.4 -1.25426
  5603. <Normal> { -0.177103 0.724245 -0.660217 }
  5604. }
  5605. <Vertex> 174 {
  5606. 0 2.7 -0.199997
  5607. <Normal> { 3.35276e-08 0.919688 -0.389322 }
  5608. }
  5609. <Vertex> 175 {
  5610. 0 2.63611 -0.350923
  5611. <Normal> { 0 0.948832 -0.298135 }
  5612. }
  5613. <Vertex> 176 {
  5614. 0 2.58889 -0.574071
  5615. <Normal> { -2.04891e-08 0.98299 -0.180037 }
  5616. }
  5617. <Vertex> 177 {
  5618. 0 2.55 -0.824998
  5619. <Normal> { 5.12227e-09 0.987137 -0.158429 }
  5620. }
  5621. <Vertex> 178 {
  5622. 0 2.51111 -1.05926
  5623. <Normal> { -3.51109e-07 0.975233 -0.213341 }
  5624. }
  5625. <Vertex> 179 {
  5626. 0 2.46389 -1.23241
  5627. <Normal> { 1.15111e-06 0.844004 -0.473548 }
  5628. }
  5629. <Vertex> 180 {
  5630. 0 2.4 -1.3
  5631. <Normal> { 3.02121e-06 0.723813 -0.684145 }
  5632. }
  5633. <Vertex> 181 {
  5634. 0.053704 2.7 -0.19296
  5635. <Normal> { 0.100721 0.919862 -0.375564 }
  5636. }
  5637. <Vertex> 182 {
  5638. 0.09423 2.63611 -0.338576
  5639. <Normal> { 0.0771243 0.948945 -0.287586 }
  5640. }
  5641. <Vertex> 183 {
  5642. 0.15415 2.58889 -0.553873
  5643. <Normal> { 0.0465669 0.98303 -0.17365 }
  5644. }
  5645. <Vertex> 184 {
  5646. 0.221528 2.55 -0.79597
  5647. <Normal> { 0.0409772 0.987168 -0.152807 }
  5648. }
  5649. <Vertex> 185 {
  5650. 0.284431 2.51111 -1.02199
  5651. <Normal> { 0.0551835 0.975291 -0.205778 }
  5652. }
  5653. <Vertex> 186 {
  5654. 0.330924 2.46389 -1.18904
  5655. <Normal> { 0.122559 0.844257 -0.45693 }
  5656. }
  5657. <Vertex> 187 {
  5658. 0.349074 2.4 -1.25426
  5659. <Normal> { 0.1771 0.724236 -0.660226 }
  5660. }
  5661. <Vertex> 188 {
  5662. 0.10163 2.7 -0.173034
  5663. <Normal> { 0.194457 0.920154 -0.336005 }
  5664. }
  5665. <Vertex> 189 {
  5666. 0.178322 2.63611 -0.303613
  5667. <Normal> { 0.148892 0.949135 -0.257273 }
  5668. }
  5669. <Vertex> 190 {
  5670. 0.291715 2.58889 -0.496677
  5671. <Normal> { 0.0898869 0.983098 -0.155321 }
  5672. }
  5673. <Vertex> 191 {
  5674. 0.419222 2.55 -0.713776
  5675. <Normal> { 0.079096 0.98722 -0.136676 }
  5676. }
  5677. <Vertex> 192 {
  5678. 0.538261 2.51111 -0.916453
  5679. <Normal> { 0.106522 0.975388 -0.184066 }
  5680. }
  5681. <Vertex> 193 {
  5682. 0.626246 2.46389 -1.06626
  5683. <Normal> { 0.236696 0.844685 -0.408972 }
  5684. }
  5685. <Vertex> 194 {
  5686. 0.660593 2.4 -1.12474
  5687. <Normal> { 0.342091 0.724954 -0.591063 }
  5688. }
  5689. <Vertex> 195 {
  5690. 0.142 2.7 -0.141997
  5691. <Normal> { 0.274347 0.92027 -0.274344 }
  5692. }
  5693. <Vertex> 196 {
  5694. 0.249157 2.63611 -0.249154
  5695. <Normal> { 0.210055 0.949211 -0.210053 }
  5696. }
  5697. <Vertex> 197 {
  5698. 0.407593 2.58889 -0.407591
  5699. <Normal> { 0.126805 0.983126 -0.126804 }
  5700. }
  5701. <Vertex> 198 {
  5702. 0.58575 2.55 -0.585748
  5703. <Normal> { 0.111582 0.987241 -0.111581 }
  5704. }
  5705. <Vertex> 199 {
  5706. 0.752074 2.51111 -0.752072
  5707. <Normal> { 0.150274 0.975427 -0.150273 }
  5708. }
  5709. <Vertex> 200 {
  5710. 0.875009 2.46389 -0.875007
  5711. <Normal> { 0.333987 0.84485 -0.333986 }
  5712. }
  5713. <Vertex> 201 {
  5714. 0.923 2.4 -0.922998
  5715. <Normal> { 0.482744 0.725227 -0.482744 }
  5716. }
  5717. <Vertex> 202 {
  5718. 0.173037 2.7 -0.101627
  5719. <Normal> { 0.336006 0.920153 -0.194456 }
  5720. }
  5721. <Vertex> 203 {
  5722. 0.303616 2.63611 -0.178319
  5723. <Normal> { 0.257274 0.949135 -0.14889 }
  5724. }
  5725. <Vertex> 204 {
  5726. 0.49668 2.58889 -0.291712
  5727. <Normal> { 0.155322 0.983098 -0.0898861 }
  5728. }
  5729. <Vertex> 205 {
  5730. 0.713778 2.55 -0.41922
  5731. <Normal> { 0.136677 0.98722 -0.0790957 }
  5732. }
  5733. <Vertex> 206 {
  5734. 0.916455 2.51111 -0.538259
  5735. <Normal> { 0.184065 0.975388 -0.106521 }
  5736. }
  5737. <Vertex> 207 {
  5738. 1.06626 2.46389 -0.626244
  5739. <Normal> { 0.408977 0.844678 -0.236697 }
  5740. }
  5741. <Vertex> 208 {
  5742. 1.12474 2.4 -0.660591
  5743. <Normal> { 0.591077 0.724939 -0.342096 }
  5744. }
  5745. <Vertex> 209 {
  5746. 0.192963 2.7 -0.0537014
  5747. <Normal> { 0.375564 0.919863 -0.100721 }
  5748. }
  5749. <Vertex> 210 {
  5750. 0.338579 2.63611 -0.0942275
  5751. <Normal> { 0.287587 0.948945 -0.0771238 }
  5752. }
  5753. <Vertex> 211 {
  5754. 0.553875 2.58889 -0.154147
  5755. <Normal> { 0.173651 0.98303 -0.046566 }
  5756. }
  5757. <Vertex> 212 {
  5758. 0.795972 2.55 -0.221526
  5759. <Normal> { 0.152808 0.987168 -0.0409765 }
  5760. }
  5761. <Vertex> 213 {
  5762. 1.02199 2.51111 -0.284429
  5763. <Normal> { 0.20578 0.97529 -0.0551825 }
  5764. }
  5765. <Vertex> 214 {
  5766. 1.18904 2.46389 -0.330922
  5767. <Normal> { 0.456927 0.84426 -0.12256 }
  5768. }
  5769. <Vertex> 215 {
  5770. 1.25426 2.4 -0.349072
  5771. <Normal> { 0.660218 0.724244 -0.177102 }
  5772. }
  5773. }
  5774. <VertexPool> lid_handle {
  5775. <Vertex> 0 {
  5776. 0.278704 3.12708 3.01951e-06
  5777. <Normal> { 0.0819569 0.996579 0 }
  5778. }
  5779. <Vertex> 1 {
  5780. 0 3.15 3.04164e-06
  5781. <Normal> { -1.5522e-09 0.996597 1.0016e-06 }
  5782. }
  5783. <Vertex> 2 {
  5784. 0.268946 3.12708 0.075081
  5785. <Normal> { 0.079047 0.996589 0.021079 }
  5786. }
  5787. <Vertex> 3 {
  5788. 0.362963 3.06667 2.96117e-06
  5789. <Normal> { 0.581014 0.810383 -4.54485e-07 }
  5790. }
  5791. <Vertex> 4 {
  5792. 0.278704 3.12708 3.01951e-06
  5793. <Normal> { 0.581014 0.810383 -4.54485e-07 }
  5794. }
  5795. <Vertex> 5 {
  5796. 0.268946 3.12708 0.075081
  5797. <Normal> { 0.560665 0.810801 0.14954 }
  5798. }
  5799. <Vertex> 6 {
  5800. 0.350254 3.06667 0.097774
  5801. <Normal> { 0.560665 0.810801 0.14954 }
  5802. }
  5803. <Vertex> 7 {
  5804. 0.325 2.98125 2.87869e-06
  5805. <Normal> { 0.823933 -0.534253 2.06381e-06 }
  5806. }
  5807. <Vertex> 8 {
  5808. 0.362963 3.06667 2.96117e-06
  5809. <Normal> { 0.907427 -0.403315 1.3411e-06 }
  5810. }
  5811. <Vertex> 9 {
  5812. 0.350254 3.06667 0.097774
  5813. <Normal> { 0.876265 -0.403842 0.233824 }
  5814. }
  5815. <Vertex> 10 {
  5816. 0.313617 2.98125 0.0875319
  5817. <Normal> { 0.795485 -0.534802 0.212275 }
  5818. }
  5819. <Vertex> 11 {
  5820. 0.237037 2.88333 2.78414e-06
  5821. <Normal> { 0.782902 -0.609731 3.97302e-06 }
  5822. }
  5823. <Vertex> 12 {
  5824. 0.228728 2.88333 0.0638058
  5825. <Normal> { 0.755751 -0.610317 0.201794 }
  5826. }
  5827. <Vertex> 13 {
  5828. 0.171296 2.78542 2.6896e-06
  5829. <Normal> { 0.825366 -0.554272 5.16325e-06 }
  5830. }
  5831. <Vertex> 14 {
  5832. 0.165279 2.78542 0.0460477
  5833. <Normal> { 0.796798 -0.554871 0.21286 }
  5834. }
  5835. <Vertex> 15 {
  5836. 0.241285 3.12708 0.141934
  5837. <Normal> { 0.0706798 0.996607 0.0407848 }
  5838. }
  5839. <Vertex> 16 {
  5840. 0.241285 3.12708 0.141934
  5841. <Normal> { 0.501761 0.811512 0.289555 }
  5842. }
  5843. <Vertex> 17 {
  5844. 0.314228 3.06667 0.184837
  5845. <Normal> { 0.501761 0.811512 0.289555 }
  5846. }
  5847. <Vertex> 18 {
  5848. 0.314228 3.06667 0.184837
  5849. <Normal> { 0.785145 -0.404812 0.453179 }
  5850. }
  5851. <Vertex> 19 {
  5852. 0.281352 2.98125 0.165484
  5853. <Normal> { 0.712512 -0.535811 0.411267 }
  5854. }
  5855. <Vertex> 20 {
  5856. 0.20518 2.88333 0.12065
  5857. <Normal> { 0.676722 -0.611433 0.39073 }
  5858. }
  5859. <Vertex> 21 {
  5860. 0.148234 2.78542 0.0871087
  5861. <Normal> { 0.713564 -0.556056 0.412105 }
  5862. }
  5863. <Vertex> 22 {
  5864. 0.19814 3.12708 0.198143
  5865. <Normal> { 0.057643 0.996614 0.057643 }
  5866. }
  5867. <Vertex> 23 {
  5868. 0.19814 3.12708 0.198143
  5869. <Normal> { 0.409376 0.811805 0.409376 }
  5870. }
  5871. <Vertex> 24 {
  5872. 0.258037 3.06667 0.25804
  5873. <Normal> { 0.409376 0.811805 0.409376 }
  5874. }
  5875. <Vertex> 25 {
  5876. 0.258037 3.06667 0.25804
  5877. <Normal> { 0.640927 -0.405247 0.640926 }
  5878. }
  5879. <Vertex> 26 {
  5880. 0.231031 2.98125 0.231034
  5881. <Normal> { 0.58155 -0.536261 0.581548 }
  5882. }
  5883. <Vertex> 27 {
  5884. 0.168463 2.88333 0.168466
  5885. <Normal> { 0.552307 -0.611951 0.552302 }
  5886. }
  5887. <Vertex> 28 {
  5888. 0.121672 2.78542 0.121675
  5889. <Normal> { 0.582442 -0.556628 0.582435 }
  5890. }
  5891. <Vertex> 29 {
  5892. 0.141931 3.12708 0.241288
  5893. <Normal> { 0.0407833 0.996607 0.0706806 }
  5894. }
  5895. <Vertex> 30 {
  5896. 0.141931 3.12708 0.241288
  5897. <Normal> { 0.289558 0.811506 0.50177 }
  5898. }
  5899. <Vertex> 31 {
  5900. 0.184834 3.06667 0.314231
  5901. <Normal> { 0.289558 0.811506 0.50177 }
  5902. }
  5903. <Vertex> 32 {
  5904. 0.184834 3.06667 0.314231
  5905. <Normal> { 0.453168 -0.404866 0.785124 }
  5906. }
  5907. <Vertex> 33 {
  5908. 0.165481 2.98125 0.281355
  5909. <Normal> { 0.411251 -0.535865 0.71248 }
  5910. }
  5911. <Vertex> 34 {
  5912. 0.120647 2.88333 0.205183
  5913. <Normal> { 0.390698 -0.611531 0.676658 }
  5914. }
  5915. <Vertex> 35 {
  5916. 0.087106 2.78542 0.148237
  5917. <Normal> { 0.412063 -0.556197 0.71348 }
  5918. }
  5919. <Vertex> 36 {
  5920. 0.075078 3.12708 0.268949
  5921. <Normal> { 0.0210776 0.996589 0.0790483 }
  5922. }
  5923. <Vertex> 37 {
  5924. 0.075078 3.12708 0.268949
  5925. <Normal> { 0.149541 0.810794 0.560675 }
  5926. }
  5927. <Vertex> 38 {
  5928. 0.097771 3.06667 0.350257
  5929. <Normal> { 0.149541 0.810794 0.560675 }
  5930. }
  5931. <Vertex> 39 {
  5932. 0.097771 3.06667 0.350257
  5933. <Normal> { 0.233816 -0.403904 0.876239 }
  5934. }
  5935. <Vertex> 40 {
  5936. 0.087529 2.98125 0.31362
  5937. <Normal> { 0.212264 -0.534865 0.795445 }
  5938. }
  5939. <Vertex> 41 {
  5940. 0.063803 2.88333 0.228731
  5941. <Normal> { 0.201771 -0.610427 0.755675 }
  5942. }
  5943. <Vertex> 42 {
  5944. 0.046045 2.78542 0.165282
  5945. <Normal> { 0.21283 -0.555027 0.796699 }
  5946. }
  5947. <Vertex> 43 {
  5948. 0 3.12708 0.278707
  5949. <Normal> { 0 0.996579 0.0819578 }
  5950. }
  5951. <Vertex> 44 {
  5952. 0 3.12708 0.278707
  5953. <Normal> { 4.54485e-07 0.810382 0.581015 }
  5954. }
  5955. <Vertex> 45 {
  5956. 0 3.06667 0.362966
  5957. <Normal> { 4.54485e-07 0.810382 0.581015 }
  5958. }
  5959. <Vertex> 46 {
  5960. 0 3.06667 0.362966
  5961. <Normal> { -1.34483e-06 -0.403315 0.907427 }
  5962. }
  5963. <Vertex> 47 {
  5964. 0 2.98125 0.325003
  5965. <Normal> { -2.0694e-06 -0.534253 0.823933 }
  5966. }
  5967. <Vertex> 48 {
  5968. 0 2.88333 0.23704
  5969. <Normal> { -3.9842e-06 -0.609732 0.782902 }
  5970. }
  5971. <Vertex> 49 {
  5972. 0 2.78542 0.171299
  5973. <Normal> { -5.17815e-06 -0.554273 0.825366 }
  5974. }
  5975. <Vertex> 50 {
  5976. -0.075078 3.12708 0.268949
  5977. <Normal> { -0.0210776 0.996589 0.0790483 }
  5978. }
  5979. <Vertex> 51 {
  5980. -0.075078 3.12708 0.268949
  5981. <Normal> { -0.149538 0.810801 0.560666 }
  5982. }
  5983. <Vertex> 52 {
  5984. -0.097771 3.06667 0.350257
  5985. <Normal> { -0.149538 0.810801 0.560666 }
  5986. }
  5987. <Vertex> 53 {
  5988. -0.097771 3.06667 0.350257
  5989. <Normal> { -0.233824 -0.403842 0.876265 }
  5990. }
  5991. <Vertex> 54 {
  5992. -0.087529 2.98125 0.31362
  5993. <Normal> { -0.212276 -0.534803 0.795484 }
  5994. }
  5995. <Vertex> 55 {
  5996. -0.063803 2.88333 0.228731
  5997. <Normal> { -0.201794 -0.610317 0.755751 }
  5998. }
  5999. <Vertex> 56 {
  6000. -0.046045 2.78542 0.165282
  6001. <Normal> { -0.21286 -0.554872 0.796798 }
  6002. }
  6003. <Vertex> 57 {
  6004. -0.141931 3.12708 0.241288
  6005. <Normal> { -0.0407833 0.996607 0.0706806 }
  6006. }
  6007. <Vertex> 58 {
  6008. -0.141931 3.12708 0.241288
  6009. <Normal> { -0.289554 0.811512 0.501761 }
  6010. }
  6011. <Vertex> 59 {
  6012. -0.184834 3.06667 0.314231
  6013. <Normal> { -0.289554 0.811512 0.501761 }
  6014. }
  6015. <Vertex> 60 {
  6016. -0.184834 3.06667 0.314231
  6017. <Normal> { -0.453179 -0.404812 0.785145 }
  6018. }
  6019. <Vertex> 61 {
  6020. -0.165481 2.98125 0.281355
  6021. <Normal> { -0.411267 -0.53581 0.712512 }
  6022. }
  6023. <Vertex> 62 {
  6024. -0.120647 2.88333 0.205183
  6025. <Normal> { -0.390731 -0.611432 0.676721 }
  6026. }
  6027. <Vertex> 63 {
  6028. -0.087106 2.78542 0.148237
  6029. <Normal> { -0.412106 -0.556056 0.713563 }
  6030. }
  6031. <Vertex> 64 {
  6032. -0.19814 3.12708 0.198143
  6033. <Normal> { -0.057643 0.996614 0.057643 }
  6034. }
  6035. <Vertex> 65 {
  6036. -0.19814 3.12708 0.198143
  6037. <Normal> { -0.409376 0.811805 0.409376 }
  6038. }
  6039. <Vertex> 66 {
  6040. -0.258037 3.06667 0.25804
  6041. <Normal> { -0.409376 0.811805 0.409376 }
  6042. }
  6043. <Vertex> 67 {
  6044. -0.258037 3.06667 0.25804
  6045. <Normal> { -0.640926 -0.405247 0.640927 }
  6046. }
  6047. <Vertex> 68 {
  6048. -0.231031 2.98125 0.231034
  6049. <Normal> { -0.581548 -0.536261 0.58155 }
  6050. }
  6051. <Vertex> 69 {
  6052. -0.168463 2.88333 0.168466
  6053. <Normal> { -0.552303 -0.611951 0.552306 }
  6054. }
  6055. <Vertex> 70 {
  6056. -0.121672 2.78542 0.121675
  6057. <Normal> { -0.582437 -0.556628 0.582441 }
  6058. }
  6059. <Vertex> 71 {
  6060. -0.241285 3.12708 0.141934
  6061. <Normal> { -0.0706798 0.996607 0.0407848 }
  6062. }
  6063. <Vertex> 72 {
  6064. -0.241285 3.12708 0.141934
  6065. <Normal> { -0.501769 0.811506 0.289559 }
  6066. }
  6067. <Vertex> 73 {
  6068. -0.314228 3.06667 0.184837
  6069. <Normal> { -0.501769 0.811506 0.289559 }
  6070. }
  6071. <Vertex> 74 {
  6072. -0.314228 3.06667 0.184837
  6073. <Normal> { -0.785124 -0.404865 0.453168 }
  6074. }
  6075. <Vertex> 75 {
  6076. -0.281352 2.98125 0.165484
  6077. <Normal> { -0.71248 -0.535865 0.41125 }
  6078. }
  6079. <Vertex> 76 {
  6080. -0.20518 2.88333 0.12065
  6081. <Normal> { -0.676658 -0.611531 0.390697 }
  6082. }
  6083. <Vertex> 77 {
  6084. -0.148234 2.78542 0.0871087
  6085. <Normal> { -0.713481 -0.556197 0.412062 }
  6086. }
  6087. <Vertex> 78 {
  6088. -0.268946 3.12708 0.075081
  6089. <Normal> { -0.079047 0.996589 0.021079 }
  6090. }
  6091. <Vertex> 79 {
  6092. -0.268946 3.12708 0.075081
  6093. <Normal> { -0.560674 0.810794 0.149543 }
  6094. }
  6095. <Vertex> 80 {
  6096. -0.350254 3.06667 0.097774
  6097. <Normal> { -0.560674 0.810794 0.149543 }
  6098. }
  6099. <Vertex> 81 {
  6100. -0.350254 3.06667 0.097774
  6101. <Normal> { -0.87624 -0.403903 0.233816 }
  6102. }
  6103. <Vertex> 82 {
  6104. -0.313617 2.98125 0.0875319
  6105. <Normal> { -0.795445 -0.534865 0.212264 }
  6106. }
  6107. <Vertex> 83 {
  6108. -0.228728 2.88333 0.0638058
  6109. <Normal> { -0.755675 -0.610426 0.201771 }
  6110. }
  6111. <Vertex> 84 {
  6112. -0.165279 2.78542 0.0460477
  6113. <Normal> { -0.7967 -0.555027 0.21283 }
  6114. }
  6115. <Vertex> 85 {
  6116. -0.278704 3.12708 3.01951e-06
  6117. <Normal> { -0.0819569 0.996579 0 }
  6118. }
  6119. <Vertex> 86 {
  6120. -0.278704 3.12708 3.01951e-06
  6121. <Normal> { -0.581014 0.810382 4.65661e-07 }
  6122. }
  6123. <Vertex> 87 {
  6124. -0.362963 3.06667 2.96117e-06
  6125. <Normal> { -0.581014 0.810382 4.65661e-07 }
  6126. }
  6127. <Vertex> 88 {
  6128. -0.362963 3.06667 2.96117e-06
  6129. <Normal> { -0.907427 -0.403315 -1.34856e-06 }
  6130. }
  6131. <Vertex> 89 {
  6132. -0.325 2.98125 2.87869e-06
  6133. <Normal> { -0.823933 -0.534253 -2.07312e-06 }
  6134. }
  6135. <Vertex> 90 {
  6136. -0.237037 2.88333 2.78414e-06
  6137. <Normal> { -0.782902 -0.609731 -3.98606e-06 }
  6138. }
  6139. <Vertex> 91 {
  6140. -0.171296 2.78542 2.6896e-06
  6141. <Normal> { -0.825366 -0.554272 -5.17815e-06 }
  6142. }
  6143. <Vertex> 92 {
  6144. -0.268946 3.12708 -0.075075
  6145. <Normal> { -0.0790479 0.996589 -0.0210758 }
  6146. }
  6147. <Vertex> 93 {
  6148. -0.268946 3.12708 -0.075075
  6149. <Normal> { -0.560666 0.810801 -0.149537 }
  6150. }
  6151. <Vertex> 94 {
  6152. -0.350254 3.06667 -0.097768
  6153. <Normal> { -0.560666 0.810801 -0.149537 }
  6154. }
  6155. <Vertex> 95 {
  6156. -0.350254 3.06667 -0.097768
  6157. <Normal> { -0.876265 -0.403842 -0.233825 }
  6158. }
  6159. <Vertex> 96 {
  6160. -0.313617 2.98125 -0.0875261
  6161. <Normal> { -0.795484 -0.534802 -0.212277 }
  6162. }
  6163. <Vertex> 97 {
  6164. -0.228728 2.88333 -0.0638002
  6165. <Normal> { -0.755751 -0.610317 -0.201795 }
  6166. }
  6167. <Vertex> 98 {
  6168. -0.165279 2.78542 -0.0460423
  6169. <Normal> { -0.796798 -0.554871 -0.21286 }
  6170. }
  6171. <Vertex> 99 {
  6172. -0.241285 3.12708 -0.141928
  6173. <Normal> { -0.07068 0.996607 -0.0407811 }
  6174. }
  6175. <Vertex> 100 {
  6176. -0.241285 3.12708 -0.141928
  6177. <Normal> { -0.501761 0.811513 -0.289552 }
  6178. }
  6179. <Vertex> 101 {
  6180. -0.314228 3.06667 -0.184831
  6181. <Normal> { -0.501761 0.811513 -0.289552 }
  6182. }
  6183. <Vertex> 102 {
  6184. -0.314228 3.06667 -0.184831
  6185. <Normal> { -0.785145 -0.404811 -0.45318 }
  6186. }
  6187. <Vertex> 103 {
  6188. -0.281352 2.98125 -0.165478
  6189. <Normal> { -0.712513 -0.535809 -0.411268 }
  6190. }
  6191. <Vertex> 104 {
  6192. -0.20518 2.88333 -0.120644
  6193. <Normal> { -0.676722 -0.611431 -0.390732 }
  6194. }
  6195. <Vertex> 105 {
  6196. -0.148234 2.78542 -0.0871033
  6197. <Normal> { -0.713563 -0.556055 -0.412107 }
  6198. }
  6199. <Vertex> 106 {
  6200. -0.19814 3.12708 -0.198137
  6201. <Normal> { -0.0576418 0.996614 -0.0576418 }
  6202. }
  6203. <Vertex> 107 {
  6204. -0.19814 3.12708 -0.198137
  6205. <Normal> { -0.409375 0.811805 -0.409376 }
  6206. }
  6207. <Vertex> 108 {
  6208. -0.258037 3.06667 -0.258034
  6209. <Normal> { -0.409375 0.811805 -0.409376 }
  6210. }
  6211. <Vertex> 109 {
  6212. -0.258037 3.06667 -0.258034
  6213. <Normal> { -0.640928 -0.405246 -0.640926 }
  6214. }
  6215. <Vertex> 110 {
  6216. -0.231031 2.98125 -0.231028
  6217. <Normal> { -0.58155 -0.53626 -0.581548 }
  6218. }
  6219. <Vertex> 111 {
  6220. -0.168463 2.88333 -0.16846
  6221. <Normal> { -0.552307 -0.61195 -0.552304 }
  6222. }
  6223. <Vertex> 112 {
  6224. -0.121672 2.78542 -0.121669
  6225. <Normal> { -0.582442 -0.556626 -0.582438 }
  6226. }
  6227. <Vertex> 113 {
  6228. -0.141931 3.12708 -0.241282
  6229. <Normal> { -0.0407825 0.996607 -0.0706792 }
  6230. }
  6231. <Vertex> 114 {
  6232. -0.141931 3.12708 -0.241282
  6233. <Normal> { -0.289558 0.811506 -0.501769 }
  6234. }
  6235. <Vertex> 115 {
  6236. -0.184834 3.06667 -0.314225
  6237. <Normal> { -0.289558 0.811506 -0.501769 }
  6238. }
  6239. <Vertex> 116 {
  6240. -0.184834 3.06667 -0.314225
  6241. <Normal> { -0.453169 -0.404865 -0.785124 }
  6242. }
  6243. <Vertex> 117 {
  6244. -0.165481 2.98125 -0.281349
  6245. <Normal> { -0.411251 -0.535864 -0.71248 }
  6246. }
  6247. <Vertex> 118 {
  6248. -0.120647 2.88333 -0.205177
  6249. <Normal> { -0.390699 -0.611529 -0.676659 }
  6250. }
  6251. <Vertex> 119 {
  6252. -0.087106 2.78542 -0.148231
  6253. <Normal> { -0.412064 -0.556195 -0.713481 }
  6254. }
  6255. <Vertex> 120 {
  6256. -0.075078 3.12708 -0.268943
  6257. <Normal> { -0.0210772 0.996589 -0.0790467 }
  6258. }
  6259. <Vertex> 121 {
  6260. -0.075078 3.12708 -0.268943
  6261. <Normal> { -0.149541 0.810794 -0.560675 }
  6262. }
  6263. <Vertex> 122 {
  6264. -0.097771 3.06667 -0.350251
  6265. <Normal> { -0.149541 0.810794 -0.560675 }
  6266. }
  6267. <Vertex> 123 {
  6268. -0.097771 3.06667 -0.350251
  6269. <Normal> { -0.233816 -0.403903 -0.87624 }
  6270. }
  6271. <Vertex> 124 {
  6272. -0.087529 2.98125 -0.313614
  6273. <Normal> { -0.212264 -0.534864 -0.795445 }
  6274. }
  6275. <Vertex> 125 {
  6276. -0.063803 2.88333 -0.228725
  6277. <Normal> { -0.201771 -0.610426 -0.755675 }
  6278. }
  6279. <Vertex> 126 {
  6280. -0.046045 2.78542 -0.165276
  6281. <Normal> { -0.21283 -0.555026 -0.7967 }
  6282. }
  6283. <Vertex> 127 {
  6284. 0 3.12708 -0.278701
  6285. <Normal> { 0 0.996579 -0.0819561 }
  6286. }
  6287. <Vertex> 128 {
  6288. 0 3.12708 -0.278701
  6289. <Normal> { -4.54485e-07 0.810383 -0.581014 }
  6290. }
  6291. <Vertex> 129 {
  6292. 0 3.06667 -0.36296
  6293. <Normal> { -4.54485e-07 0.810383 -0.581014 }
  6294. }
  6295. <Vertex> 130 {
  6296. 0 3.06667 -0.36296
  6297. <Normal> { 1.34483e-06 -0.403314 -0.907428 }
  6298. }
  6299. <Vertex> 131 {
  6300. 0 2.98125 -0.324997
  6301. <Normal> { 2.0694e-06 -0.534252 -0.823933 }
  6302. }
  6303. <Vertex> 132 {
  6304. 0 2.88333 -0.237034
  6305. <Normal> { 3.98047e-06 -0.609731 -0.782903 }
  6306. }
  6307. <Vertex> 133 {
  6308. 0 2.78542 -0.171293
  6309. <Normal> { 5.1707e-06 -0.554272 -0.825366 }
  6310. }
  6311. <Vertex> 134 {
  6312. 0.075078 3.12708 -0.268943
  6313. <Normal> { 0.0210772 0.996589 -0.0790467 }
  6314. }
  6315. <Vertex> 135 {
  6316. 0.075078 3.12708 -0.268943
  6317. <Normal> { 0.149538 0.810802 -0.560665 }
  6318. }
  6319. <Vertex> 136 {
  6320. 0.097771 3.06667 -0.350251
  6321. <Normal> { 0.149538 0.810802 -0.560665 }
  6322. }
  6323. <Vertex> 137 {
  6324. 0.097771 3.06667 -0.350251
  6325. <Normal> { 0.233824 -0.403841 -0.876265 }
  6326. }
  6327. <Vertex> 138 {
  6328. 0.087529 2.98125 -0.313614
  6329. <Normal> { 0.212276 -0.534802 -0.795485 }
  6330. }
  6331. <Vertex> 139 {
  6332. 0.063803 2.88333 -0.228725
  6333. <Normal> { 0.201794 -0.610316 -0.755751 }
  6334. }
  6335. <Vertex> 140 {
  6336. 0.046045 2.78542 -0.165276
  6337. <Normal> { 0.21286 -0.55487 -0.796799 }
  6338. }
  6339. <Vertex> 141 {
  6340. 0.141931 3.12708 -0.241282
  6341. <Normal> { 0.0407825 0.996607 -0.0706792 }
  6342. }
  6343. <Vertex> 142 {
  6344. 0.141931 3.12708 -0.241282
  6345. <Normal> { 0.289554 0.811513 -0.501761 }
  6346. }
  6347. <Vertex> 143 {
  6348. 0.184834 3.06667 -0.314225
  6349. <Normal> { 0.289554 0.811513 -0.501761 }
  6350. }
  6351. <Vertex> 144 {
  6352. 0.184834 3.06667 -0.314225
  6353. <Normal> { 0.453179 -0.404811 -0.785145 }
  6354. }
  6355. <Vertex> 145 {
  6356. 0.165481 2.98125 -0.281349
  6357. <Normal> { 0.411268 -0.53581 -0.712513 }
  6358. }
  6359. <Vertex> 146 {
  6360. 0.120647 2.88333 -0.205177
  6361. <Normal> { 0.390731 -0.611432 -0.676722 }
  6362. }
  6363. <Vertex> 147 {
  6364. 0.087106 2.78542 -0.148231
  6365. <Normal> { 0.412106 -0.556055 -0.713564 }
  6366. }
  6367. <Vertex> 148 {
  6368. 0.19814 3.12708 -0.198137
  6369. <Normal> { 0.0576418 0.996614 -0.0576418 }
  6370. }
  6371. <Vertex> 149 {
  6372. 0.19814 3.12708 -0.198137
  6373. <Normal> { 0.409376 0.811805 -0.409375 }
  6374. }
  6375. <Vertex> 150 {
  6376. 0.258037 3.06667 -0.258034
  6377. <Normal> { 0.409376 0.811805 -0.409375 }
  6378. }
  6379. <Vertex> 151 {
  6380. 0.258037 3.06667 -0.258034
  6381. <Normal> { 0.640926 -0.405246 -0.640927 }
  6382. }
  6383. <Vertex> 152 {
  6384. 0.231031 2.98125 -0.231028
  6385. <Normal> { 0.581548 -0.53626 -0.58155 }
  6386. }
  6387. <Vertex> 153 {
  6388. 0.168463 2.88333 -0.16846
  6389. <Normal> { 0.552303 -0.61195 -0.552308 }
  6390. }
  6391. <Vertex> 154 {
  6392. 0.121672 2.78542 -0.121669
  6393. <Normal> { 0.582436 -0.556626 -0.582443 }
  6394. }
  6395. <Vertex> 155 {
  6396. 0.241285 3.12708 -0.141928
  6397. <Normal> { 0.07068 0.996607 -0.0407811 }
  6398. }
  6399. <Vertex> 156 {
  6400. 0.241285 3.12708 -0.141928
  6401. <Normal> { 0.50177 0.811506 -0.289557 }
  6402. }
  6403. <Vertex> 157 {
  6404. 0.314228 3.06667 -0.184831
  6405. <Normal> { 0.50177 0.811506 -0.289557 }
  6406. }
  6407. <Vertex> 158 {
  6408. 0.314228 3.06667 -0.184831
  6409. <Normal> { 0.785124 -0.404865 -0.453169 }
  6410. }
  6411. <Vertex> 159 {
  6412. 0.281352 2.98125 -0.165478
  6413. <Normal> { 0.71248 -0.535864 -0.411252 }
  6414. }
  6415. <Vertex> 160 {
  6416. 0.20518 2.88333 -0.120644
  6417. <Normal> { 0.676658 -0.611529 -0.3907 }
  6418. }
  6419. <Vertex> 161 {
  6420. 0.148234 2.78542 -0.0871033
  6421. <Normal> { 0.71348 -0.556196 -0.412065 }
  6422. }
  6423. <Vertex> 162 {
  6424. 0.268946 3.12708 -0.075075
  6425. <Normal> { 0.0790479 0.996589 -0.0210758 }
  6426. }
  6427. <Vertex> 163 {
  6428. 0.268946 3.12708 -0.075075
  6429. <Normal> { 0.560675 0.810794 -0.14954 }
  6430. }
  6431. <Vertex> 164 {
  6432. 0.350254 3.06667 -0.097768
  6433. <Normal> { 0.560675 0.810794 -0.14954 }
  6434. }
  6435. <Vertex> 165 {
  6436. 0.350254 3.06667 -0.097768
  6437. <Normal> { 0.876239 -0.403903 -0.233817 }
  6438. }
  6439. <Vertex> 166 {
  6440. 0.313617 2.98125 -0.0875261
  6441. <Normal> { 0.795445 -0.534864 -0.212265 }
  6442. }
  6443. <Vertex> 167 {
  6444. 0.228728 2.88333 -0.0638002
  6445. <Normal> { 0.755675 -0.610426 -0.201772 }
  6446. }
  6447. <Vertex> 168 {
  6448. 0.165279 2.78542 -0.0460423
  6449. <Normal> { 0.7967 -0.555027 -0.21283 }
  6450. }
  6451. }
  6452. <Polygon> {
  6453. <RGBA> { 0.8 0.8 0.8 1 }
  6454. <VertexRef> { 0 1 2 3 <Ref> { lid } }
  6455. }
  6456. <Polygon> {
  6457. <RGBA> { 0.8 0.8 0.8 1 }
  6458. <VertexRef> { 3 2 4 5 <Ref> { lid } }
  6459. }
  6460. <Polygon> {
  6461. <RGBA> { 0.8 0.8 0.8 1 }
  6462. <VertexRef> { 5 4 6 7 <Ref> { lid } }
  6463. }
  6464. <Polygon> {
  6465. <RGBA> { 0.8 0.8 0.8 1 }
  6466. <VertexRef> { 7 6 8 9 <Ref> { lid } }
  6467. }
  6468. <Polygon> {
  6469. <RGBA> { 0.8 0.8 0.8 1 }
  6470. <VertexRef> { 9 8 10 11 <Ref> { lid } }
  6471. }
  6472. <Polygon> {
  6473. <RGBA> { 0.8 0.8 0.8 1 }
  6474. <VertexRef> { 11 10 12 13 <Ref> { lid } }
  6475. }
  6476. <Polygon> {
  6477. <RGBA> { 0.8 0.8 0.8 1 }
  6478. <VertexRef> { 13 12 14 15 <Ref> { lid } }
  6479. }
  6480. <Polygon> {
  6481. <RGBA> { 0.8 0.8 0.8 1 }
  6482. <VertexRef> { 15 14 16 17 <Ref> { lid } }
  6483. }
  6484. <Polygon> {
  6485. <RGBA> { 0.8 0.8 0.8 1 }
  6486. <VertexRef> { 17 16 18 19 <Ref> { lid } }
  6487. }
  6488. <Polygon> {
  6489. <RGBA> { 0.8 0.8 0.8 1 }
  6490. <VertexRef> { 19 18 20 21 <Ref> { lid } }
  6491. }
  6492. <Polygon> {
  6493. <RGBA> { 0.8 0.8 0.8 1 }
  6494. <VertexRef> { 21 20 22 23 <Ref> { lid } }
  6495. }
  6496. <Polygon> {
  6497. <RGBA> { 0.8 0.8 0.8 1 }
  6498. <VertexRef> { 23 22 24 25 <Ref> { lid } }
  6499. }
  6500. <Polygon> {
  6501. <RGBA> { 0.8 0.8 0.8 1 }
  6502. <VertexRef> { 25 24 26 27 <Ref> { lid } }
  6503. }
  6504. <Polygon> {
  6505. <RGBA> { 0.8 0.8 0.8 1 }
  6506. <VertexRef> { 27 26 28 29 <Ref> { lid } }
  6507. }
  6508. <Polygon> {
  6509. <RGBA> { 0.8 0.8 0.8 1 }
  6510. <VertexRef> { 29 28 30 31 <Ref> { lid } }
  6511. }
  6512. <Polygon> {
  6513. <RGBA> { 0.8 0.8 0.8 1 }
  6514. <VertexRef> { 31 30 32 33 <Ref> { lid } }
  6515. }
  6516. <Polygon> {
  6517. <RGBA> { 0.8 0.8 0.8 1 }
  6518. <VertexRef> { 33 32 34 35 <Ref> { lid } }
  6519. }
  6520. <Polygon> {
  6521. <RGBA> { 0.8 0.8 0.8 1 }
  6522. <VertexRef> { 35 34 36 37 <Ref> { lid } }
  6523. }
  6524. <Polygon> {
  6525. <RGBA> { 0.8 0.8 0.8 1 }
  6526. <VertexRef> { 37 36 38 39 <Ref> { lid } }
  6527. }
  6528. <Polygon> {
  6529. <RGBA> { 0.8 0.8 0.8 1 }
  6530. <VertexRef> { 39 38 40 41 <Ref> { lid } }
  6531. }
  6532. <Polygon> {
  6533. <RGBA> { 0.8 0.8 0.8 1 }
  6534. <VertexRef> { 41 40 42 43 <Ref> { lid } }
  6535. }
  6536. <Polygon> {
  6537. <RGBA> { 0.8 0.8 0.8 1 }
  6538. <VertexRef> { 43 42 44 45 <Ref> { lid } }
  6539. }
  6540. <Polygon> {
  6541. <RGBA> { 0.8 0.8 0.8 1 }
  6542. <VertexRef> { 45 44 46 47 <Ref> { lid } }
  6543. }
  6544. <Polygon> {
  6545. <RGBA> { 0.8 0.8 0.8 1 }
  6546. <VertexRef> { 47 46 1 0 <Ref> { lid } }
  6547. }
  6548. <Polygon> {
  6549. <RGBA> { 0.8 0.8 0.8 1 }
  6550. <VertexRef> { 48 49 50 51 <Ref> { lid } }
  6551. }
  6552. <Polygon> {
  6553. <RGBA> { 0.8 0.8 0.8 1 }
  6554. <VertexRef> { 52 48 51 53 <Ref> { lid } }
  6555. }
  6556. <Polygon> {
  6557. <RGBA> { 0.8 0.8 0.8 1 }
  6558. <VertexRef> { 54 52 53 55 <Ref> { lid } }
  6559. }
  6560. <Polygon> {
  6561. <RGBA> { 0.8 0.8 0.8 1 }
  6562. <VertexRef> { 56 54 55 57 <Ref> { lid } }
  6563. }
  6564. <Polygon> {
  6565. <RGBA> { 0.8 0.8 0.8 1 }
  6566. <VertexRef> { 58 56 57 59 <Ref> { lid } }
  6567. }
  6568. <Polygon> {
  6569. <RGBA> { 0.8 0.8 0.8 1 }
  6570. <VertexRef> { 60 58 59 61 <Ref> { lid } }
  6571. }
  6572. <Polygon> {
  6573. <RGBA> { 0.8 0.8 0.8 1 }
  6574. <VertexRef> { 51 50 62 63 <Ref> { lid } }
  6575. }
  6576. <Polygon> {
  6577. <RGBA> { 0.8 0.8 0.8 1 }
  6578. <VertexRef> { 53 51 63 64 <Ref> { lid } }
  6579. }
  6580. <Polygon> {
  6581. <RGBA> { 0.8 0.8 0.8 1 }
  6582. <VertexRef> { 55 53 64 65 <Ref> { lid } }
  6583. }
  6584. <Polygon> {
  6585. <RGBA> { 0.8 0.8 0.8 1 }
  6586. <VertexRef> { 57 55 65 66 <Ref> { lid } }
  6587. }
  6588. <Polygon> {
  6589. <RGBA> { 0.8 0.8 0.8 1 }
  6590. <VertexRef> { 59 57 66 67 <Ref> { lid } }
  6591. }
  6592. <Polygon> {
  6593. <RGBA> { 0.8 0.8 0.8 1 }
  6594. <VertexRef> { 61 59 67 68 <Ref> { lid } }
  6595. }
  6596. <Polygon> {
  6597. <RGBA> { 0.8 0.8 0.8 1 }
  6598. <VertexRef> { 63 62 69 70 <Ref> { lid } }
  6599. }
  6600. <Polygon> {
  6601. <RGBA> { 0.8 0.8 0.8 1 }
  6602. <VertexRef> { 64 63 70 71 <Ref> { lid } }
  6603. }
  6604. <Polygon> {
  6605. <RGBA> { 0.8 0.8 0.8 1 }
  6606. <VertexRef> { 65 64 71 72 <Ref> { lid } }
  6607. }
  6608. <Polygon> {
  6609. <RGBA> { 0.8 0.8 0.8 1 }
  6610. <VertexRef> { 66 65 72 73 <Ref> { lid } }
  6611. }
  6612. <Polygon> {
  6613. <RGBA> { 0.8 0.8 0.8 1 }
  6614. <VertexRef> { 67 66 73 74 <Ref> { lid } }
  6615. }
  6616. <Polygon> {
  6617. <RGBA> { 0.8 0.8 0.8 1 }
  6618. <VertexRef> { 68 67 74 75 <Ref> { lid } }
  6619. }
  6620. <Polygon> {
  6621. <RGBA> { 0.8 0.8 0.8 1 }
  6622. <VertexRef> { 70 69 76 77 <Ref> { lid } }
  6623. }
  6624. <Polygon> {
  6625. <RGBA> { 0.8 0.8 0.8 1 }
  6626. <VertexRef> { 71 70 77 78 <Ref> { lid } }
  6627. }
  6628. <Polygon> {
  6629. <RGBA> { 0.8 0.8 0.8 1 }
  6630. <VertexRef> { 72 71 78 79 <Ref> { lid } }
  6631. }
  6632. <Polygon> {
  6633. <RGBA> { 0.8 0.8 0.8 1 }
  6634. <VertexRef> { 73 72 79 80 <Ref> { lid } }
  6635. }
  6636. <Polygon> {
  6637. <RGBA> { 0.8 0.8 0.8 1 }
  6638. <VertexRef> { 74 73 80 81 <Ref> { lid } }
  6639. }
  6640. <Polygon> {
  6641. <RGBA> { 0.8 0.8 0.8 1 }
  6642. <VertexRef> { 75 74 81 82 <Ref> { lid } }
  6643. }
  6644. <Polygon> {
  6645. <RGBA> { 0.8 0.8 0.8 1 }
  6646. <VertexRef> { 77 76 83 84 <Ref> { lid } }
  6647. }
  6648. <Polygon> {
  6649. <RGBA> { 0.8 0.8 0.8 1 }
  6650. <VertexRef> { 78 77 84 85 <Ref> { lid } }
  6651. }
  6652. <Polygon> {
  6653. <RGBA> { 0.8 0.8 0.8 1 }
  6654. <VertexRef> { 79 78 85 86 <Ref> { lid } }
  6655. }
  6656. <Polygon> {
  6657. <RGBA> { 0.8 0.8 0.8 1 }
  6658. <VertexRef> { 80 79 86 87 <Ref> { lid } }
  6659. }
  6660. <Polygon> {
  6661. <RGBA> { 0.8 0.8 0.8 1 }
  6662. <VertexRef> { 81 80 87 88 <Ref> { lid } }
  6663. }
  6664. <Polygon> {
  6665. <RGBA> { 0.8 0.8 0.8 1 }
  6666. <VertexRef> { 82 81 88 89 <Ref> { lid } }
  6667. }
  6668. <Polygon> {
  6669. <RGBA> { 0.8 0.8 0.8 1 }
  6670. <VertexRef> { 84 83 90 91 <Ref> { lid } }
  6671. }
  6672. <Polygon> {
  6673. <RGBA> { 0.8 0.8 0.8 1 }
  6674. <VertexRef> { 85 84 91 92 <Ref> { lid } }
  6675. }
  6676. <Polygon> {
  6677. <RGBA> { 0.8 0.8 0.8 1 }
  6678. <VertexRef> { 86 85 92 93 <Ref> { lid } }
  6679. }
  6680. <Polygon> {
  6681. <RGBA> { 0.8 0.8 0.8 1 }
  6682. <VertexRef> { 87 86 93 94 <Ref> { lid } }
  6683. }
  6684. <Polygon> {
  6685. <RGBA> { 0.8 0.8 0.8 1 }
  6686. <VertexRef> { 88 87 94 95 <Ref> { lid } }
  6687. }
  6688. <Polygon> {
  6689. <RGBA> { 0.8 0.8 0.8 1 }
  6690. <VertexRef> { 89 88 95 96 <Ref> { lid } }
  6691. }
  6692. <Polygon> {
  6693. <RGBA> { 0.8 0.8 0.8 1 }
  6694. <VertexRef> { 91 90 97 98 <Ref> { lid } }
  6695. }
  6696. <Polygon> {
  6697. <RGBA> { 0.8 0.8 0.8 1 }
  6698. <VertexRef> { 92 91 98 99 <Ref> { lid } }
  6699. }
  6700. <Polygon> {
  6701. <RGBA> { 0.8 0.8 0.8 1 }
  6702. <VertexRef> { 93 92 99 100 <Ref> { lid } }
  6703. }
  6704. <Polygon> {
  6705. <RGBA> { 0.8 0.8 0.8 1 }
  6706. <VertexRef> { 94 93 100 101 <Ref> { lid } }
  6707. }
  6708. <Polygon> {
  6709. <RGBA> { 0.8 0.8 0.8 1 }
  6710. <VertexRef> { 95 94 101 102 <Ref> { lid } }
  6711. }
  6712. <Polygon> {
  6713. <RGBA> { 0.8 0.8 0.8 1 }
  6714. <VertexRef> { 96 95 102 103 <Ref> { lid } }
  6715. }
  6716. <Polygon> {
  6717. <RGBA> { 0.8 0.8 0.8 1 }
  6718. <VertexRef> { 98 97 104 105 <Ref> { lid } }
  6719. }
  6720. <Polygon> {
  6721. <RGBA> { 0.8 0.8 0.8 1 }
  6722. <VertexRef> { 99 98 105 106 <Ref> { lid } }
  6723. }
  6724. <Polygon> {
  6725. <RGBA> { 0.8 0.8 0.8 1 }
  6726. <VertexRef> { 100 99 106 107 <Ref> { lid } }
  6727. }
  6728. <Polygon> {
  6729. <RGBA> { 0.8 0.8 0.8 1 }
  6730. <VertexRef> { 101 100 107 108 <Ref> { lid } }
  6731. }
  6732. <Polygon> {
  6733. <RGBA> { 0.8 0.8 0.8 1 }
  6734. <VertexRef> { 102 101 108 109 <Ref> { lid } }
  6735. }
  6736. <Polygon> {
  6737. <RGBA> { 0.8 0.8 0.8 1 }
  6738. <VertexRef> { 103 102 109 110 <Ref> { lid } }
  6739. }
  6740. <Polygon> {
  6741. <RGBA> { 0.8 0.8 0.8 1 }
  6742. <VertexRef> { 105 104 111 112 <Ref> { lid } }
  6743. }
  6744. <Polygon> {
  6745. <RGBA> { 0.8 0.8 0.8 1 }
  6746. <VertexRef> { 106 105 112 113 <Ref> { lid } }
  6747. }
  6748. <Polygon> {
  6749. <RGBA> { 0.8 0.8 0.8 1 }
  6750. <VertexRef> { 107 106 113 114 <Ref> { lid } }
  6751. }
  6752. <Polygon> {
  6753. <RGBA> { 0.8 0.8 0.8 1 }
  6754. <VertexRef> { 108 107 114 115 <Ref> { lid } }
  6755. }
  6756. <Polygon> {
  6757. <RGBA> { 0.8 0.8 0.8 1 }
  6758. <VertexRef> { 109 108 115 116 <Ref> { lid } }
  6759. }
  6760. <Polygon> {
  6761. <RGBA> { 0.8 0.8 0.8 1 }
  6762. <VertexRef> { 110 109 116 117 <Ref> { lid } }
  6763. }
  6764. <Polygon> {
  6765. <RGBA> { 0.8 0.8 0.8 1 }
  6766. <VertexRef> { 112 111 118 119 <Ref> { lid } }
  6767. }
  6768. <Polygon> {
  6769. <RGBA> { 0.8 0.8 0.8 1 }
  6770. <VertexRef> { 113 112 119 120 <Ref> { lid } }
  6771. }
  6772. <Polygon> {
  6773. <RGBA> { 0.8 0.8 0.8 1 }
  6774. <VertexRef> { 114 113 120 121 <Ref> { lid } }
  6775. }
  6776. <Polygon> {
  6777. <RGBA> { 0.8 0.8 0.8 1 }
  6778. <VertexRef> { 115 114 121 122 <Ref> { lid } }
  6779. }
  6780. <Polygon> {
  6781. <RGBA> { 0.8 0.8 0.8 1 }
  6782. <VertexRef> { 116 115 122 123 <Ref> { lid } }
  6783. }
  6784. <Polygon> {
  6785. <RGBA> { 0.8 0.8 0.8 1 }
  6786. <VertexRef> { 117 116 123 124 <Ref> { lid } }
  6787. }
  6788. <Polygon> {
  6789. <RGBA> { 0.8 0.8 0.8 1 }
  6790. <VertexRef> { 119 118 125 126 <Ref> { lid } }
  6791. }
  6792. <Polygon> {
  6793. <RGBA> { 0.8 0.8 0.8 1 }
  6794. <VertexRef> { 120 119 126 127 <Ref> { lid } }
  6795. }
  6796. <Polygon> {
  6797. <RGBA> { 0.8 0.8 0.8 1 }
  6798. <VertexRef> { 121 120 127 128 <Ref> { lid } }
  6799. }
  6800. <Polygon> {
  6801. <RGBA> { 0.8 0.8 0.8 1 }
  6802. <VertexRef> { 122 121 128 129 <Ref> { lid } }
  6803. }
  6804. <Polygon> {
  6805. <RGBA> { 0.8 0.8 0.8 1 }
  6806. <VertexRef> { 123 122 129 130 <Ref> { lid } }
  6807. }
  6808. <Polygon> {
  6809. <RGBA> { 0.8 0.8 0.8 1 }
  6810. <VertexRef> { 124 123 130 131 <Ref> { lid } }
  6811. }
  6812. <Polygon> {
  6813. <RGBA> { 0.8 0.8 0.8 1 }
  6814. <VertexRef> { 126 125 132 133 <Ref> { lid } }
  6815. }
  6816. <Polygon> {
  6817. <RGBA> { 0.8 0.8 0.8 1 }
  6818. <VertexRef> { 127 126 133 134 <Ref> { lid } }
  6819. }
  6820. <Polygon> {
  6821. <RGBA> { 0.8 0.8 0.8 1 }
  6822. <VertexRef> { 128 127 134 135 <Ref> { lid } }
  6823. }
  6824. <Polygon> {
  6825. <RGBA> { 0.8 0.8 0.8 1 }
  6826. <VertexRef> { 129 128 135 136 <Ref> { lid } }
  6827. }
  6828. <Polygon> {
  6829. <RGBA> { 0.8 0.8 0.8 1 }
  6830. <VertexRef> { 130 129 136 137 <Ref> { lid } }
  6831. }
  6832. <Polygon> {
  6833. <RGBA> { 0.8 0.8 0.8 1 }
  6834. <VertexRef> { 131 130 137 138 <Ref> { lid } }
  6835. }
  6836. <Polygon> {
  6837. <RGBA> { 0.8 0.8 0.8 1 }
  6838. <VertexRef> { 133 132 139 140 <Ref> { lid } }
  6839. }
  6840. <Polygon> {
  6841. <RGBA> { 0.8 0.8 0.8 1 }
  6842. <VertexRef> { 134 133 140 141 <Ref> { lid } }
  6843. }
  6844. <Polygon> {
  6845. <RGBA> { 0.8 0.8 0.8 1 }
  6846. <VertexRef> { 135 134 141 142 <Ref> { lid } }
  6847. }
  6848. <Polygon> {
  6849. <RGBA> { 0.8 0.8 0.8 1 }
  6850. <VertexRef> { 136 135 142 143 <Ref> { lid } }
  6851. }
  6852. <Polygon> {
  6853. <RGBA> { 0.8 0.8 0.8 1 }
  6854. <VertexRef> { 137 136 143 144 <Ref> { lid } }
  6855. }
  6856. <Polygon> {
  6857. <RGBA> { 0.8 0.8 0.8 1 }
  6858. <VertexRef> { 138 137 144 145 <Ref> { lid } }
  6859. }
  6860. <Polygon> {
  6861. <RGBA> { 0.8 0.8 0.8 1 }
  6862. <VertexRef> { 140 139 146 147 <Ref> { lid } }
  6863. }
  6864. <Polygon> {
  6865. <RGBA> { 0.8 0.8 0.8 1 }
  6866. <VertexRef> { 141 140 147 148 <Ref> { lid } }
  6867. }
  6868. <Polygon> {
  6869. <RGBA> { 0.8 0.8 0.8 1 }
  6870. <VertexRef> { 142 141 148 149 <Ref> { lid } }
  6871. }
  6872. <Polygon> {
  6873. <RGBA> { 0.8 0.8 0.8 1 }
  6874. <VertexRef> { 143 142 149 150 <Ref> { lid } }
  6875. }
  6876. <Polygon> {
  6877. <RGBA> { 0.8 0.8 0.8 1 }
  6878. <VertexRef> { 144 143 150 151 <Ref> { lid } }
  6879. }
  6880. <Polygon> {
  6881. <RGBA> { 0.8 0.8 0.8 1 }
  6882. <VertexRef> { 145 144 151 152 <Ref> { lid } }
  6883. }
  6884. <Polygon> {
  6885. <RGBA> { 0.8 0.8 0.8 1 }
  6886. <VertexRef> { 147 146 153 154 <Ref> { lid } }
  6887. }
  6888. <Polygon> {
  6889. <RGBA> { 0.8 0.8 0.8 1 }
  6890. <VertexRef> { 148 147 154 155 <Ref> { lid } }
  6891. }
  6892. <Polygon> {
  6893. <RGBA> { 0.8 0.8 0.8 1 }
  6894. <VertexRef> { 149 148 155 156 <Ref> { lid } }
  6895. }
  6896. <Polygon> {
  6897. <RGBA> { 0.8 0.8 0.8 1 }
  6898. <VertexRef> { 150 149 156 157 <Ref> { lid } }
  6899. }
  6900. <Polygon> {
  6901. <RGBA> { 0.8 0.8 0.8 1 }
  6902. <VertexRef> { 151 150 157 158 <Ref> { lid } }
  6903. }
  6904. <Polygon> {
  6905. <RGBA> { 0.8 0.8 0.8 1 }
  6906. <VertexRef> { 152 151 158 159 <Ref> { lid } }
  6907. }
  6908. <Polygon> {
  6909. <RGBA> { 0.8 0.8 0.8 1 }
  6910. <VertexRef> { 154 153 160 161 <Ref> { lid } }
  6911. }
  6912. <Polygon> {
  6913. <RGBA> { 0.8 0.8 0.8 1 }
  6914. <VertexRef> { 155 154 161 162 <Ref> { lid } }
  6915. }
  6916. <Polygon> {
  6917. <RGBA> { 0.8 0.8 0.8 1 }
  6918. <VertexRef> { 156 155 162 163 <Ref> { lid } }
  6919. }
  6920. <Polygon> {
  6921. <RGBA> { 0.8 0.8 0.8 1 }
  6922. <VertexRef> { 157 156 163 164 <Ref> { lid } }
  6923. }
  6924. <Polygon> {
  6925. <RGBA> { 0.8 0.8 0.8 1 }
  6926. <VertexRef> { 158 157 164 165 <Ref> { lid } }
  6927. }
  6928. <Polygon> {
  6929. <RGBA> { 0.8 0.8 0.8 1 }
  6930. <VertexRef> { 159 158 165 166 <Ref> { lid } }
  6931. }
  6932. <Polygon> {
  6933. <RGBA> { 0.8 0.8 0.8 1 }
  6934. <VertexRef> { 161 160 167 168 <Ref> { lid } }
  6935. }
  6936. <Polygon> {
  6937. <RGBA> { 0.8 0.8 0.8 1 }
  6938. <VertexRef> { 162 161 168 169 <Ref> { lid } }
  6939. }
  6940. <Polygon> {
  6941. <RGBA> { 0.8 0.8 0.8 1 }
  6942. <VertexRef> { 163 162 169 170 <Ref> { lid } }
  6943. }
  6944. <Polygon> {
  6945. <RGBA> { 0.8 0.8 0.8 1 }
  6946. <VertexRef> { 164 163 170 171 <Ref> { lid } }
  6947. }
  6948. <Polygon> {
  6949. <RGBA> { 0.8 0.8 0.8 1 }
  6950. <VertexRef> { 165 164 171 172 <Ref> { lid } }
  6951. }
  6952. <Polygon> {
  6953. <RGBA> { 0.8 0.8 0.8 1 }
  6954. <VertexRef> { 166 165 172 173 <Ref> { lid } }
  6955. }
  6956. <Polygon> {
  6957. <RGBA> { 0.8 0.8 0.8 1 }
  6958. <VertexRef> { 168 167 174 175 <Ref> { lid } }
  6959. }
  6960. <Polygon> {
  6961. <RGBA> { 0.8 0.8 0.8 1 }
  6962. <VertexRef> { 169 168 175 176 <Ref> { lid } }
  6963. }
  6964. <Polygon> {
  6965. <RGBA> { 0.8 0.8 0.8 1 }
  6966. <VertexRef> { 170 169 176 177 <Ref> { lid } }
  6967. }
  6968. <Polygon> {
  6969. <RGBA> { 0.8 0.8 0.8 1 }
  6970. <VertexRef> { 171 170 177 178 <Ref> { lid } }
  6971. }
  6972. <Polygon> {
  6973. <RGBA> { 0.8 0.8 0.8 1 }
  6974. <VertexRef> { 172 171 178 179 <Ref> { lid } }
  6975. }
  6976. <Polygon> {
  6977. <RGBA> { 0.8 0.8 0.8 1 }
  6978. <VertexRef> { 173 172 179 180 <Ref> { lid } }
  6979. }
  6980. <Polygon> {
  6981. <RGBA> { 0.8 0.8 0.8 1 }
  6982. <VertexRef> { 175 174 181 182 <Ref> { lid } }
  6983. }
  6984. <Polygon> {
  6985. <RGBA> { 0.8 0.8 0.8 1 }
  6986. <VertexRef> { 176 175 182 183 <Ref> { lid } }
  6987. }
  6988. <Polygon> {
  6989. <RGBA> { 0.8 0.8 0.8 1 }
  6990. <VertexRef> { 177 176 183 184 <Ref> { lid } }
  6991. }
  6992. <Polygon> {
  6993. <RGBA> { 0.8 0.8 0.8 1 }
  6994. <VertexRef> { 178 177 184 185 <Ref> { lid } }
  6995. }
  6996. <Polygon> {
  6997. <RGBA> { 0.8 0.8 0.8 1 }
  6998. <VertexRef> { 179 178 185 186 <Ref> { lid } }
  6999. }
  7000. <Polygon> {
  7001. <RGBA> { 0.8 0.8 0.8 1 }
  7002. <VertexRef> { 180 179 186 187 <Ref> { lid } }
  7003. }
  7004. <Polygon> {
  7005. <RGBA> { 0.8 0.8 0.8 1 }
  7006. <VertexRef> { 182 181 188 189 <Ref> { lid } }
  7007. }
  7008. <Polygon> {
  7009. <RGBA> { 0.8 0.8 0.8 1 }
  7010. <VertexRef> { 183 182 189 190 <Ref> { lid } }
  7011. }
  7012. <Polygon> {
  7013. <RGBA> { 0.8 0.8 0.8 1 }
  7014. <VertexRef> { 184 183 190 191 <Ref> { lid } }
  7015. }
  7016. <Polygon> {
  7017. <RGBA> { 0.8 0.8 0.8 1 }
  7018. <VertexRef> { 185 184 191 192 <Ref> { lid } }
  7019. }
  7020. <Polygon> {
  7021. <RGBA> { 0.8 0.8 0.8 1 }
  7022. <VertexRef> { 186 185 192 193 <Ref> { lid } }
  7023. }
  7024. <Polygon> {
  7025. <RGBA> { 0.8 0.8 0.8 1 }
  7026. <VertexRef> { 187 186 193 194 <Ref> { lid } }
  7027. }
  7028. <Polygon> {
  7029. <RGBA> { 0.8 0.8 0.8 1 }
  7030. <VertexRef> { 189 188 195 196 <Ref> { lid } }
  7031. }
  7032. <Polygon> {
  7033. <RGBA> { 0.8 0.8 0.8 1 }
  7034. <VertexRef> { 190 189 196 197 <Ref> { lid } }
  7035. }
  7036. <Polygon> {
  7037. <RGBA> { 0.8 0.8 0.8 1 }
  7038. <VertexRef> { 191 190 197 198 <Ref> { lid } }
  7039. }
  7040. <Polygon> {
  7041. <RGBA> { 0.8 0.8 0.8 1 }
  7042. <VertexRef> { 192 191 198 199 <Ref> { lid } }
  7043. }
  7044. <Polygon> {
  7045. <RGBA> { 0.8 0.8 0.8 1 }
  7046. <VertexRef> { 193 192 199 200 <Ref> { lid } }
  7047. }
  7048. <Polygon> {
  7049. <RGBA> { 0.8 0.8 0.8 1 }
  7050. <VertexRef> { 194 193 200 201 <Ref> { lid } }
  7051. }
  7052. <Polygon> {
  7053. <RGBA> { 0.8 0.8 0.8 1 }
  7054. <VertexRef> { 196 195 202 203 <Ref> { lid } }
  7055. }
  7056. <Polygon> {
  7057. <RGBA> { 0.8 0.8 0.8 1 }
  7058. <VertexRef> { 197 196 203 204 <Ref> { lid } }
  7059. }
  7060. <Polygon> {
  7061. <RGBA> { 0.8 0.8 0.8 1 }
  7062. <VertexRef> { 198 197 204 205 <Ref> { lid } }
  7063. }
  7064. <Polygon> {
  7065. <RGBA> { 0.8 0.8 0.8 1 }
  7066. <VertexRef> { 199 198 205 206 <Ref> { lid } }
  7067. }
  7068. <Polygon> {
  7069. <RGBA> { 0.8 0.8 0.8 1 }
  7070. <VertexRef> { 200 199 206 207 <Ref> { lid } }
  7071. }
  7072. <Polygon> {
  7073. <RGBA> { 0.8 0.8 0.8 1 }
  7074. <VertexRef> { 201 200 207 208 <Ref> { lid } }
  7075. }
  7076. <Polygon> {
  7077. <RGBA> { 0.8 0.8 0.8 1 }
  7078. <VertexRef> { 203 202 209 210 <Ref> { lid } }
  7079. }
  7080. <Polygon> {
  7081. <RGBA> { 0.8 0.8 0.8 1 }
  7082. <VertexRef> { 204 203 210 211 <Ref> { lid } }
  7083. }
  7084. <Polygon> {
  7085. <RGBA> { 0.8 0.8 0.8 1 }
  7086. <VertexRef> { 205 204 211 212 <Ref> { lid } }
  7087. }
  7088. <Polygon> {
  7089. <RGBA> { 0.8 0.8 0.8 1 }
  7090. <VertexRef> { 206 205 212 213 <Ref> { lid } }
  7091. }
  7092. <Polygon> {
  7093. <RGBA> { 0.8 0.8 0.8 1 }
  7094. <VertexRef> { 207 206 213 214 <Ref> { lid } }
  7095. }
  7096. <Polygon> {
  7097. <RGBA> { 0.8 0.8 0.8 1 }
  7098. <VertexRef> { 208 207 214 215 <Ref> { lid } }
  7099. }
  7100. <Polygon> {
  7101. <RGBA> { 0.8 0.8 0.8 1 }
  7102. <VertexRef> { 210 209 49 48 <Ref> { lid } }
  7103. }
  7104. <Polygon> {
  7105. <RGBA> { 0.8 0.8 0.8 1 }
  7106. <VertexRef> { 211 210 48 52 <Ref> { lid } }
  7107. }
  7108. <Polygon> {
  7109. <RGBA> { 0.8 0.8 0.8 1 }
  7110. <VertexRef> { 212 211 52 54 <Ref> { lid } }
  7111. }
  7112. <Polygon> {
  7113. <RGBA> { 0.8 0.8 0.8 1 }
  7114. <VertexRef> { 213 212 54 56 <Ref> { lid } }
  7115. }
  7116. <Polygon> {
  7117. <RGBA> { 0.8 0.8 0.8 1 }
  7118. <VertexRef> { 214 213 56 58 <Ref> { lid } }
  7119. }
  7120. <Polygon> {
  7121. <RGBA> { 0.8 0.8 0.8 1 }
  7122. <VertexRef> { 215 214 58 60 <Ref> { lid } }
  7123. }
  7124. <Polygon> {
  7125. <RGBA> { 0.8 0.8 0.8 1 }
  7126. <VertexRef> { 0 1 2 <Ref> { lid_handle } }
  7127. }
  7128. <Polygon> {
  7129. <RGBA> { 0.8 0.8 0.8 1 }
  7130. <VertexRef> { 3 4 5 6 <Ref> { lid_handle } }
  7131. }
  7132. <Polygon> {
  7133. <RGBA> { 0.8 0.8 0.8 1 }
  7134. <VertexRef> { 7 8 9 10 <Ref> { lid_handle } }
  7135. }
  7136. <Polygon> {
  7137. <RGBA> { 0.8 0.8 0.8 1 }
  7138. <VertexRef> { 11 7 10 12 <Ref> { lid_handle } }
  7139. }
  7140. <Polygon> {
  7141. <RGBA> { 0.8 0.8 0.8 1 }
  7142. <VertexRef> { 13 11 12 14 <Ref> { lid_handle } }
  7143. }
  7144. <Polygon> {
  7145. <RGBA> { 0.8 0.8 0.8 1 }
  7146. <VertexRef> { 2 1 15 <Ref> { lid_handle } }
  7147. }
  7148. <Polygon> {
  7149. <RGBA> { 0.8 0.8 0.8 1 }
  7150. <VertexRef> { 6 5 16 17 <Ref> { lid_handle } }
  7151. }
  7152. <Polygon> {
  7153. <RGBA> { 0.8 0.8 0.8 1 }
  7154. <VertexRef> { 10 9 18 19 <Ref> { lid_handle } }
  7155. }
  7156. <Polygon> {
  7157. <RGBA> { 0.8 0.8 0.8 1 }
  7158. <VertexRef> { 12 10 19 20 <Ref> { lid_handle } }
  7159. }
  7160. <Polygon> {
  7161. <RGBA> { 0.8 0.8 0.8 1 }
  7162. <VertexRef> { 14 12 20 21 <Ref> { lid_handle } }
  7163. }
  7164. <Polygon> {
  7165. <RGBA> { 0.8 0.8 0.8 1 }
  7166. <VertexRef> { 15 1 22 <Ref> { lid_handle } }
  7167. }
  7168. <Polygon> {
  7169. <RGBA> { 0.8 0.8 0.8 1 }
  7170. <VertexRef> { 17 16 23 24 <Ref> { lid_handle } }
  7171. }
  7172. <Polygon> {
  7173. <RGBA> { 0.8 0.8 0.8 1 }
  7174. <VertexRef> { 19 18 25 26 <Ref> { lid_handle } }
  7175. }
  7176. <Polygon> {
  7177. <RGBA> { 0.8 0.8 0.8 1 }
  7178. <VertexRef> { 20 19 26 27 <Ref> { lid_handle } }
  7179. }
  7180. <Polygon> {
  7181. <RGBA> { 0.8 0.8 0.8 1 }
  7182. <VertexRef> { 21 20 27 28 <Ref> { lid_handle } }
  7183. }
  7184. <Polygon> {
  7185. <RGBA> { 0.8 0.8 0.8 1 }
  7186. <VertexRef> { 22 1 29 <Ref> { lid_handle } }
  7187. }
  7188. <Polygon> {
  7189. <RGBA> { 0.8 0.8 0.8 1 }
  7190. <VertexRef> { 24 23 30 31 <Ref> { lid_handle } }
  7191. }
  7192. <Polygon> {
  7193. <RGBA> { 0.8 0.8 0.8 1 }
  7194. <VertexRef> { 26 25 32 33 <Ref> { lid_handle } }
  7195. }
  7196. <Polygon> {
  7197. <RGBA> { 0.8 0.8 0.8 1 }
  7198. <VertexRef> { 27 26 33 34 <Ref> { lid_handle } }
  7199. }
  7200. <Polygon> {
  7201. <RGBA> { 0.8 0.8 0.8 1 }
  7202. <VertexRef> { 28 27 34 35 <Ref> { lid_handle } }
  7203. }
  7204. <Polygon> {
  7205. <RGBA> { 0.8 0.8 0.8 1 }
  7206. <VertexRef> { 29 1 36 <Ref> { lid_handle } }
  7207. }
  7208. <Polygon> {
  7209. <RGBA> { 0.8 0.8 0.8 1 }
  7210. <VertexRef> { 31 30 37 38 <Ref> { lid_handle } }
  7211. }
  7212. <Polygon> {
  7213. <RGBA> { 0.8 0.8 0.8 1 }
  7214. <VertexRef> { 33 32 39 40 <Ref> { lid_handle } }
  7215. }
  7216. <Polygon> {
  7217. <RGBA> { 0.8 0.8 0.8 1 }
  7218. <VertexRef> { 34 33 40 41 <Ref> { lid_handle } }
  7219. }
  7220. <Polygon> {
  7221. <RGBA> { 0.8 0.8 0.8 1 }
  7222. <VertexRef> { 35 34 41 42 <Ref> { lid_handle } }
  7223. }
  7224. <Polygon> {
  7225. <RGBA> { 0.8 0.8 0.8 1 }
  7226. <VertexRef> { 36 1 43 <Ref> { lid_handle } }
  7227. }
  7228. <Polygon> {
  7229. <RGBA> { 0.8 0.8 0.8 1 }
  7230. <VertexRef> { 38 37 44 45 <Ref> { lid_handle } }
  7231. }
  7232. <Polygon> {
  7233. <RGBA> { 0.8 0.8 0.8 1 }
  7234. <VertexRef> { 40 39 46 47 <Ref> { lid_handle } }
  7235. }
  7236. <Polygon> {
  7237. <RGBA> { 0.8 0.8 0.8 1 }
  7238. <VertexRef> { 41 40 47 48 <Ref> { lid_handle } }
  7239. }
  7240. <Polygon> {
  7241. <RGBA> { 0.8 0.8 0.8 1 }
  7242. <VertexRef> { 42 41 48 49 <Ref> { lid_handle } }
  7243. }
  7244. <Polygon> {
  7245. <RGBA> { 0.8 0.8 0.8 1 }
  7246. <VertexRef> { 43 1 50 <Ref> { lid_handle } }
  7247. }
  7248. <Polygon> {
  7249. <RGBA> { 0.8 0.8 0.8 1 }
  7250. <VertexRef> { 45 44 51 52 <Ref> { lid_handle } }
  7251. }
  7252. <Polygon> {
  7253. <RGBA> { 0.8 0.8 0.8 1 }
  7254. <VertexRef> { 47 46 53 54 <Ref> { lid_handle } }
  7255. }
  7256. <Polygon> {
  7257. <RGBA> { 0.8 0.8 0.8 1 }
  7258. <VertexRef> { 48 47 54 55 <Ref> { lid_handle } }
  7259. }
  7260. <Polygon> {
  7261. <RGBA> { 0.8 0.8 0.8 1 }
  7262. <VertexRef> { 49 48 55 56 <Ref> { lid_handle } }
  7263. }
  7264. <Polygon> {
  7265. <RGBA> { 0.8 0.8 0.8 1 }
  7266. <VertexRef> { 50 1 57 <Ref> { lid_handle } }
  7267. }
  7268. <Polygon> {
  7269. <RGBA> { 0.8 0.8 0.8 1 }
  7270. <VertexRef> { 52 51 58 59 <Ref> { lid_handle } }
  7271. }
  7272. <Polygon> {
  7273. <RGBA> { 0.8 0.8 0.8 1 }
  7274. <VertexRef> { 54 53 60 61 <Ref> { lid_handle } }
  7275. }
  7276. <Polygon> {
  7277. <RGBA> { 0.8 0.8 0.8 1 }
  7278. <VertexRef> { 55 54 61 62 <Ref> { lid_handle } }
  7279. }
  7280. <Polygon> {
  7281. <RGBA> { 0.8 0.8 0.8 1 }
  7282. <VertexRef> { 56 55 62 63 <Ref> { lid_handle } }
  7283. }
  7284. <Polygon> {
  7285. <RGBA> { 0.8 0.8 0.8 1 }
  7286. <VertexRef> { 57 1 64 <Ref> { lid_handle } }
  7287. }
  7288. <Polygon> {
  7289. <RGBA> { 0.8 0.8 0.8 1 }
  7290. <VertexRef> { 59 58 65 66 <Ref> { lid_handle } }
  7291. }
  7292. <Polygon> {
  7293. <RGBA> { 0.8 0.8 0.8 1 }
  7294. <VertexRef> { 61 60 67 68 <Ref> { lid_handle } }
  7295. }
  7296. <Polygon> {
  7297. <RGBA> { 0.8 0.8 0.8 1 }
  7298. <VertexRef> { 62 61 68 69 <Ref> { lid_handle } }
  7299. }
  7300. <Polygon> {
  7301. <RGBA> { 0.8 0.8 0.8 1 }
  7302. <VertexRef> { 63 62 69 70 <Ref> { lid_handle } }
  7303. }
  7304. <Polygon> {
  7305. <RGBA> { 0.8 0.8 0.8 1 }
  7306. <VertexRef> { 64 1 71 <Ref> { lid_handle } }
  7307. }
  7308. <Polygon> {
  7309. <RGBA> { 0.8 0.8 0.8 1 }
  7310. <VertexRef> { 66 65 72 73 <Ref> { lid_handle } }
  7311. }
  7312. <Polygon> {
  7313. <RGBA> { 0.8 0.8 0.8 1 }
  7314. <VertexRef> { 68 67 74 75 <Ref> { lid_handle } }
  7315. }
  7316. <Polygon> {
  7317. <RGBA> { 0.8 0.8 0.8 1 }
  7318. <VertexRef> { 69 68 75 76 <Ref> { lid_handle } }
  7319. }
  7320. <Polygon> {
  7321. <RGBA> { 0.8 0.8 0.8 1 }
  7322. <VertexRef> { 70 69 76 77 <Ref> { lid_handle } }
  7323. }
  7324. <Polygon> {
  7325. <RGBA> { 0.8 0.8 0.8 1 }
  7326. <VertexRef> { 71 1 78 <Ref> { lid_handle } }
  7327. }
  7328. <Polygon> {
  7329. <RGBA> { 0.8 0.8 0.8 1 }
  7330. <VertexRef> { 73 72 79 80 <Ref> { lid_handle } }
  7331. }
  7332. <Polygon> {
  7333. <RGBA> { 0.8 0.8 0.8 1 }
  7334. <VertexRef> { 75 74 81 82 <Ref> { lid_handle } }
  7335. }
  7336. <Polygon> {
  7337. <RGBA> { 0.8 0.8 0.8 1 }
  7338. <VertexRef> { 76 75 82 83 <Ref> { lid_handle } }
  7339. }
  7340. <Polygon> {
  7341. <RGBA> { 0.8 0.8 0.8 1 }
  7342. <VertexRef> { 77 76 83 84 <Ref> { lid_handle } }
  7343. }
  7344. <Polygon> {
  7345. <RGBA> { 0.8 0.8 0.8 1 }
  7346. <VertexRef> { 78 1 85 <Ref> { lid_handle } }
  7347. }
  7348. <Polygon> {
  7349. <RGBA> { 0.8 0.8 0.8 1 }
  7350. <VertexRef> { 80 79 86 87 <Ref> { lid_handle } }
  7351. }
  7352. <Polygon> {
  7353. <RGBA> { 0.8 0.8 0.8 1 }
  7354. <VertexRef> { 82 81 88 89 <Ref> { lid_handle } }
  7355. }
  7356. <Polygon> {
  7357. <RGBA> { 0.8 0.8 0.8 1 }
  7358. <VertexRef> { 83 82 89 90 <Ref> { lid_handle } }
  7359. }
  7360. <Polygon> {
  7361. <RGBA> { 0.8 0.8 0.8 1 }
  7362. <VertexRef> { 84 83 90 91 <Ref> { lid_handle } }
  7363. }
  7364. <Polygon> {
  7365. <RGBA> { 0.8 0.8 0.8 1 }
  7366. <VertexRef> { 85 1 92 <Ref> { lid_handle } }
  7367. }
  7368. <Polygon> {
  7369. <RGBA> { 0.8 0.8 0.8 1 }
  7370. <VertexRef> { 87 86 93 94 <Ref> { lid_handle } }
  7371. }
  7372. <Polygon> {
  7373. <RGBA> { 0.8 0.8 0.8 1 }
  7374. <VertexRef> { 89 88 95 96 <Ref> { lid_handle } }
  7375. }
  7376. <Polygon> {
  7377. <RGBA> { 0.8 0.8 0.8 1 }
  7378. <VertexRef> { 90 89 96 97 <Ref> { lid_handle } }
  7379. }
  7380. <Polygon> {
  7381. <RGBA> { 0.8 0.8 0.8 1 }
  7382. <VertexRef> { 91 90 97 98 <Ref> { lid_handle } }
  7383. }
  7384. <Polygon> {
  7385. <RGBA> { 0.8 0.8 0.8 1 }
  7386. <VertexRef> { 92 1 99 <Ref> { lid_handle } }
  7387. }
  7388. <Polygon> {
  7389. <RGBA> { 0.8 0.8 0.8 1 }
  7390. <VertexRef> { 94 93 100 101 <Ref> { lid_handle } }
  7391. }
  7392. <Polygon> {
  7393. <RGBA> { 0.8 0.8 0.8 1 }
  7394. <VertexRef> { 96 95 102 103 <Ref> { lid_handle } }
  7395. }
  7396. <Polygon> {
  7397. <RGBA> { 0.8 0.8 0.8 1 }
  7398. <VertexRef> { 97 96 103 104 <Ref> { lid_handle } }
  7399. }
  7400. <Polygon> {
  7401. <RGBA> { 0.8 0.8 0.8 1 }
  7402. <VertexRef> { 98 97 104 105 <Ref> { lid_handle } }
  7403. }
  7404. <Polygon> {
  7405. <RGBA> { 0.8 0.8 0.8 1 }
  7406. <VertexRef> { 99 1 106 <Ref> { lid_handle } }
  7407. }
  7408. <Polygon> {
  7409. <RGBA> { 0.8 0.8 0.8 1 }
  7410. <VertexRef> { 101 100 107 108 <Ref> { lid_handle } }
  7411. }
  7412. <Polygon> {
  7413. <RGBA> { 0.8 0.8 0.8 1 }
  7414. <VertexRef> { 103 102 109 110 <Ref> { lid_handle } }
  7415. }
  7416. <Polygon> {
  7417. <RGBA> { 0.8 0.8 0.8 1 }
  7418. <VertexRef> { 104 103 110 111 <Ref> { lid_handle } }
  7419. }
  7420. <Polygon> {
  7421. <RGBA> { 0.8 0.8 0.8 1 }
  7422. <VertexRef> { 105 104 111 112 <Ref> { lid_handle } }
  7423. }
  7424. <Polygon> {
  7425. <RGBA> { 0.8 0.8 0.8 1 }
  7426. <VertexRef> { 106 1 113 <Ref> { lid_handle } }
  7427. }
  7428. <Polygon> {
  7429. <RGBA> { 0.8 0.8 0.8 1 }
  7430. <VertexRef> { 108 107 114 115 <Ref> { lid_handle } }
  7431. }
  7432. <Polygon> {
  7433. <RGBA> { 0.8 0.8 0.8 1 }
  7434. <VertexRef> { 110 109 116 117 <Ref> { lid_handle } }
  7435. }
  7436. <Polygon> {
  7437. <RGBA> { 0.8 0.8 0.8 1 }
  7438. <VertexRef> { 111 110 117 118 <Ref> { lid_handle } }
  7439. }
  7440. <Polygon> {
  7441. <RGBA> { 0.8 0.8 0.8 1 }
  7442. <VertexRef> { 112 111 118 119 <Ref> { lid_handle } }
  7443. }
  7444. <Polygon> {
  7445. <RGBA> { 0.8 0.8 0.8 1 }
  7446. <VertexRef> { 113 1 120 <Ref> { lid_handle } }
  7447. }
  7448. <Polygon> {
  7449. <RGBA> { 0.8 0.8 0.8 1 }
  7450. <VertexRef> { 115 114 121 122 <Ref> { lid_handle } }
  7451. }
  7452. <Polygon> {
  7453. <RGBA> { 0.8 0.8 0.8 1 }
  7454. <VertexRef> { 117 116 123 124 <Ref> { lid_handle } }
  7455. }
  7456. <Polygon> {
  7457. <RGBA> { 0.8 0.8 0.8 1 }
  7458. <VertexRef> { 118 117 124 125 <Ref> { lid_handle } }
  7459. }
  7460. <Polygon> {
  7461. <RGBA> { 0.8 0.8 0.8 1 }
  7462. <VertexRef> { 119 118 125 126 <Ref> { lid_handle } }
  7463. }
  7464. <Polygon> {
  7465. <RGBA> { 0.8 0.8 0.8 1 }
  7466. <VertexRef> { 120 1 127 <Ref> { lid_handle } }
  7467. }
  7468. <Polygon> {
  7469. <RGBA> { 0.8 0.8 0.8 1 }
  7470. <VertexRef> { 122 121 128 129 <Ref> { lid_handle } }
  7471. }
  7472. <Polygon> {
  7473. <RGBA> { 0.8 0.8 0.8 1 }
  7474. <VertexRef> { 124 123 130 131 <Ref> { lid_handle } }
  7475. }
  7476. <Polygon> {
  7477. <RGBA> { 0.8 0.8 0.8 1 }
  7478. <VertexRef> { 125 124 131 132 <Ref> { lid_handle } }
  7479. }
  7480. <Polygon> {
  7481. <RGBA> { 0.8 0.8 0.8 1 }
  7482. <VertexRef> { 126 125 132 133 <Ref> { lid_handle } }
  7483. }
  7484. <Polygon> {
  7485. <RGBA> { 0.8 0.8 0.8 1 }
  7486. <VertexRef> { 127 1 134 <Ref> { lid_handle } }
  7487. }
  7488. <Polygon> {
  7489. <RGBA> { 0.8 0.8 0.8 1 }
  7490. <VertexRef> { 129 128 135 136 <Ref> { lid_handle } }
  7491. }
  7492. <Polygon> {
  7493. <RGBA> { 0.8 0.8 0.8 1 }
  7494. <VertexRef> { 131 130 137 138 <Ref> { lid_handle } }
  7495. }
  7496. <Polygon> {
  7497. <RGBA> { 0.8 0.8 0.8 1 }
  7498. <VertexRef> { 132 131 138 139 <Ref> { lid_handle } }
  7499. }
  7500. <Polygon> {
  7501. <RGBA> { 0.8 0.8 0.8 1 }
  7502. <VertexRef> { 133 132 139 140 <Ref> { lid_handle } }
  7503. }
  7504. <Polygon> {
  7505. <RGBA> { 0.8 0.8 0.8 1 }
  7506. <VertexRef> { 134 1 141 <Ref> { lid_handle } }
  7507. }
  7508. <Polygon> {
  7509. <RGBA> { 0.8 0.8 0.8 1 }
  7510. <VertexRef> { 136 135 142 143 <Ref> { lid_handle } }
  7511. }
  7512. <Polygon> {
  7513. <RGBA> { 0.8 0.8 0.8 1 }
  7514. <VertexRef> { 138 137 144 145 <Ref> { lid_handle } }
  7515. }
  7516. <Polygon> {
  7517. <RGBA> { 0.8 0.8 0.8 1 }
  7518. <VertexRef> { 139 138 145 146 <Ref> { lid_handle } }
  7519. }
  7520. <Polygon> {
  7521. <RGBA> { 0.8 0.8 0.8 1 }
  7522. <VertexRef> { 140 139 146 147 <Ref> { lid_handle } }
  7523. }
  7524. <Polygon> {
  7525. <RGBA> { 0.8 0.8 0.8 1 }
  7526. <VertexRef> { 141 1 148 <Ref> { lid_handle } }
  7527. }
  7528. <Polygon> {
  7529. <RGBA> { 0.8 0.8 0.8 1 }
  7530. <VertexRef> { 143 142 149 150 <Ref> { lid_handle } }
  7531. }
  7532. <Polygon> {
  7533. <RGBA> { 0.8 0.8 0.8 1 }
  7534. <VertexRef> { 145 144 151 152 <Ref> { lid_handle } }
  7535. }
  7536. <Polygon> {
  7537. <RGBA> { 0.8 0.8 0.8 1 }
  7538. <VertexRef> { 146 145 152 153 <Ref> { lid_handle } }
  7539. }
  7540. <Polygon> {
  7541. <RGBA> { 0.8 0.8 0.8 1 }
  7542. <VertexRef> { 147 146 153 154 <Ref> { lid_handle } }
  7543. }
  7544. <Polygon> {
  7545. <RGBA> { 0.8 0.8 0.8 1 }
  7546. <VertexRef> { 148 1 155 <Ref> { lid_handle } }
  7547. }
  7548. <Polygon> {
  7549. <RGBA> { 0.8 0.8 0.8 1 }
  7550. <VertexRef> { 150 149 156 157 <Ref> { lid_handle } }
  7551. }
  7552. <Polygon> {
  7553. <RGBA> { 0.8 0.8 0.8 1 }
  7554. <VertexRef> { 152 151 158 159 <Ref> { lid_handle } }
  7555. }
  7556. <Polygon> {
  7557. <RGBA> { 0.8 0.8 0.8 1 }
  7558. <VertexRef> { 153 152 159 160 <Ref> { lid_handle } }
  7559. }
  7560. <Polygon> {
  7561. <RGBA> { 0.8 0.8 0.8 1 }
  7562. <VertexRef> { 154 153 160 161 <Ref> { lid_handle } }
  7563. }
  7564. <Polygon> {
  7565. <RGBA> { 0.8 0.8 0.8 1 }
  7566. <VertexRef> { 155 1 162 <Ref> { lid_handle } }
  7567. }
  7568. <Polygon> {
  7569. <RGBA> { 0.8 0.8 0.8 1 }
  7570. <VertexRef> { 157 156 163 164 <Ref> { lid_handle } }
  7571. }
  7572. <Polygon> {
  7573. <RGBA> { 0.8 0.8 0.8 1 }
  7574. <VertexRef> { 159 158 165 166 <Ref> { lid_handle } }
  7575. }
  7576. <Polygon> {
  7577. <RGBA> { 0.8 0.8 0.8 1 }
  7578. <VertexRef> { 160 159 166 167 <Ref> { lid_handle } }
  7579. }
  7580. <Polygon> {
  7581. <RGBA> { 0.8 0.8 0.8 1 }
  7582. <VertexRef> { 161 160 167 168 <Ref> { lid_handle } }
  7583. }
  7584. <Polygon> {
  7585. <RGBA> { 0.8 0.8 0.8 1 }
  7586. <VertexRef> { 162 1 0 <Ref> { lid_handle } }
  7587. }
  7588. <Polygon> {
  7589. <RGBA> { 0.8 0.8 0.8 1 }
  7590. <VertexRef> { 164 163 4 3 <Ref> { lid_handle } }
  7591. }
  7592. <Polygon> {
  7593. <RGBA> { 0.8 0.8 0.8 1 }
  7594. <VertexRef> { 166 165 8 7 <Ref> { lid_handle } }
  7595. }
  7596. <Polygon> {
  7597. <RGBA> { 0.8 0.8 0.8 1 }
  7598. <VertexRef> { 167 166 7 11 <Ref> { lid_handle } }
  7599. }
  7600. <Polygon> {
  7601. <RGBA> { 0.8 0.8 0.8 1 }
  7602. <VertexRef> { 168 167 11 13 <Ref> { lid_handle } }
  7603. }
  7604. }
  7605. <Group> handle {
  7606. <VertexPool> handle {
  7607. <Vertex> 0 {
  7608. -1.92454 2.02396 1.95433e-06
  7609. <Normal> { 0.015211 -0.991057 -4.52995e-06 }
  7610. }
  7611. <Vertex> 1 {
  7612. -1.6 2.025 1.95534e-06
  7613. <Normal> { 0.00324808 -0.991244 2.33203e-06 }
  7614. }
  7615. <Vertex> 2 {
  7616. -1.59259 2.04167 0.125002
  7617. <Normal> { 0.00305257 -0.932869 0.308515 }
  7618. }
  7619. <Vertex> 3 {
  7620. -1.92704 2.04055 0.125002
  7621. <Normal> { 0.0142946 -0.932657 0.308594 }
  7622. }
  7623. <Vertex> 4 {
  7624. -2.1963 2.01667 1.94729e-06
  7625. <Normal> { 0.0598197 -0.98875 -7.76276e-05 }
  7626. }
  7627. <Vertex> 5 {
  7628. -2.20645 2.03272 0.125002
  7629. <Normal> { 0.0561336 -0.929623 0.310789 }
  7630. }
  7631. <Vertex> 6 {
  7632. -2.4125 1.99687 1.92818e-06
  7633. <Normal> { 0.166328 -0.973425 -0.000330791 }
  7634. }
  7635. <Vertex> 7 {
  7636. -2.42824 2.01146 0.125002
  7637. <Normal> { 0.155228 -0.911378 0.320705 }
  7638. }
  7639. <Vertex> 8 {
  7640. -2.57037 1.95833 1.89096e-06
  7641. <Normal> { 0.395643 -0.889285 -0.000687864 }
  7642. }
  7643. <Vertex> 9 {
  7644. -2.58985 1.97006 0.125002
  7645. <Normal> { 0.364158 -0.823475 0.346777 }
  7646. }
  7647. <Vertex> 10 {
  7648. -2.66713 1.89479 1.82961e-06
  7649. <Normal> { 0.7416 -0.566692 -0.00043682 }
  7650. }
  7651. <Vertex> 11 {
  7652. -2.6887 1.90181 0.125002
  7653. <Normal> { 0.674104 -0.518447 0.377947 }
  7654. }
  7655. <Vertex> 12 {
  7656. -2.7 1.8 1.73808e-06
  7657. <Normal> { 0.954191 -0.0927785 -7.70018e-06 }
  7658. }
  7659. <Vertex> 13 {
  7660. -2.72222 1.8 0.125002
  7661. <Normal> { 0.865631 -0.0840898 0.386785 }
  7662. }
  7663. <Vertex> 14 {
  7664. -1.57407 2.08333 0.200002
  7665. <Normal> { 0.00222936 -0.647045 0.696368 }
  7666. }
  7667. <Vertex> 15 {
  7668. -1.9333 2.08202 0.200002
  7669. <Normal> { 0.010459 -0.646773 0.696485 }
  7670. }
  7671. <Vertex> 16 {
  7672. -2.23182 2.07284 0.200002
  7673. <Normal> { 0.0409339 -0.642295 0.699071 }
  7674. }
  7675. <Vertex> 17 {
  7676. -2.46759 2.04792 0.200002
  7677. <Normal> { 0.111189 -0.619686 0.710088 }
  7678. }
  7679. <Vertex> 18 {
  7680. -2.63855 1.99938 0.200002
  7681. <Normal> { 0.248513 -0.537612 0.736357 }
  7682. }
  7683. <Vertex> 19 {
  7684. -2.74263 1.91937 0.200002
  7685. <Normal> { 0.435361 -0.322017 0.764578 }
  7686. }
  7687. <Vertex> 20 {
  7688. -2.77778 1.8 0.200002
  7689. <Normal> { 0.547903 -0.0477196 0.77154 }
  7690. }
  7691. <Vertex> 21 {
  7692. -1.55 2.1375 0.225002
  7693. <Normal> { -7.12185e-05 2.60621e-05 0.907697 }
  7694. }
  7695. <Vertex> 22 {
  7696. -1.94144 2.13594 0.225002
  7697. <Normal> { -0.000357332 -1.25989e-05 0.907803 }
  7698. }
  7699. <Vertex> 23 {
  7700. -2.26481 2.125 0.225002
  7701. <Normal> { -0.00140182 -0.000611559 0.909822 }
  7702. }
  7703. <Vertex> 24 {
  7704. -2.51875 2.09531 0.225002
  7705. <Normal> { -0.00335668 -0.00275151 0.917494 }
  7706. }
  7707. <Vertex> 25 {
  7708. -2.70185 2.0375 0.225002
  7709. <Normal> { -0.00492854 -0.00623439 0.932097 }
  7710. }
  7711. <Vertex> 26 {
  7712. -2.81273 1.94219 0.225002
  7713. <Normal> { -0.00338011 -0.00637084 0.943937 }
  7714. }
  7715. <Vertex> 27 {
  7716. -2.85 1.8 0.225002
  7717. <Normal> { -0.000727929 -0.00230086 0.945513 }
  7718. }
  7719. <Vertex> 28 {
  7720. -1.52593 2.19167 0.200002
  7721. <Normal> { -0.00271469 0.647113 0.696278 }
  7722. }
  7723. <Vertex> 29 {
  7724. -1.94957 2.18985 0.200002
  7725. <Normal> { -0.0128581 0.646658 0.696561 }
  7726. }
  7727. <Vertex> 30 {
  7728. -2.29781 2.17716 0.200002
  7729. <Normal> { -0.0506428 0.64005 0.700782 }
  7730. }
  7731. <Vertex> 31 {
  7732. -2.56991 2.14271 0.200002
  7733. <Normal> { -0.136575 0.607881 0.716765 }
  7734. }
  7735. <Vertex> 32 {
  7736. -2.76516 2.07562 0.200002
  7737. <Normal> { -0.290447 0.501722 0.747242 }
  7738. }
  7739. <Vertex> 33 {
  7740. -2.88284 1.96501 0.200002
  7741. <Normal> { -0.464988 0.277521 0.770017 }
  7742. }
  7743. <Vertex> 34 {
  7744. -2.92222 1.8 0.200002
  7745. <Normal> { -0.553429 0.0294073 0.771181 }
  7746. }
  7747. <Vertex> 35 {
  7748. -1.50741 2.23333 0.125002
  7749. <Normal> { -0.00408912 0.932913 0.308402 }
  7750. }
  7751. <Vertex> 36 {
  7752. -1.95583 2.23133 0.125002
  7753. <Normal> { -0.0194732 0.932458 0.308697 }
  7754. }
  7755. <Vertex> 37 {
  7756. -2.32318 2.21728 0.125002
  7757. <Normal> { -0.0773741 0.926665 0.312994 }
  7758. }
  7759. <Vertex> 38 {
  7760. -2.60926 2.17917 0.125002
  7761. <Normal> { -0.212966 0.893004 0.329507 }
  7762. }
  7763. <Vertex> 39 {
  7764. -2.81385 2.10494 0.125002
  7765. <Normal> { -0.465058 0.753972 0.361786 }
  7766. }
  7767. <Vertex> 40 {
  7768. -2.93676 1.98256 0.125002
  7769. <Normal> { -0.746269 0.421911 0.385688 }
  7770. }
  7771. <Vertex> 41 {
  7772. -2.97778 1.8 0.125002
  7773. <Normal> { -0.878054 0.0414238 0.386273 }
  7774. }
  7775. <Vertex> 42 {
  7776. -1.5 2.25 2.1726e-06
  7777. <Normal> { -0.00445985 0.991249 4.14252e-06 }
  7778. }
  7779. <Vertex> 43 {
  7780. -1.95833 2.24792 2.17059e-06
  7781. <Normal> { -0.0213348 0.990866 6.25849e-07 }
  7782. }
  7783. <Vertex> 44 {
  7784. -2.33333 2.23333 2.1565e-06
  7785. <Normal> { -0.0851079 0.986125 -3.81358e-05 }
  7786. }
  7787. <Vertex> 45 {
  7788. -2.625 2.19375 2.11828e-06
  7789. <Normal> { -0.236046 0.95497 -0.000154991 }
  7790. }
  7791. <Vertex> 46 {
  7792. -2.83333 2.11667 2.04385e-06
  7793. <Normal> { -0.519264 0.811175 -0.000225689 }
  7794. }
  7795. <Vertex> 47 {
  7796. -2.95833 1.98958 1.92114e-06
  7797. <Normal> { -0.829538 0.453837 -8.79802e-05 }
  7798. }
  7799. <Vertex> 48 {
  7800. -3 1.8 1.73808e-06
  7801. <Normal> { -0.968456 0.0420174 1.93864e-05 }
  7802. }
  7803. <Vertex> 49 {
  7804. -1.50741 2.23333 -0.124998
  7805. <Normal> { -0.00419969 0.932921 -0.308384 }
  7806. }
  7807. <Vertex> 50 {
  7808. -1.95583 2.23133 -0.124998
  7809. <Normal> { -0.0200851 0.93243 -0.308708 }
  7810. }
  7811. <Vertex> 51 {
  7812. -2.32318 2.21728 -0.124998
  7813. <Normal> { -0.0799056 0.926205 -0.313333 }
  7814. }
  7815. <Vertex> 52 {
  7816. -2.60926 2.17917 -0.124998
  7817. <Normal> { -0.219622 0.890309 -0.330801 }
  7818. }
  7819. <Vertex> 53 {
  7820. -2.81385 2.10494 -0.124998
  7821. <Normal> { -0.475339 0.74544 -0.363605 }
  7822. }
  7823. <Vertex> 54 {
  7824. -2.93676 1.98256 -0.124998
  7825. <Normal> { -0.752799 0.41197 -0.386401 }
  7826. }
  7827. <Vertex> 55 {
  7828. -2.97778 1.8 -0.124998
  7829. <Normal> { -0.878985 0.0377485 -0.386143 }
  7830. }
  7831. <Vertex> 56 {
  7832. -1.52593 2.19167 -0.199998
  7833. <Normal> { -0.00285193 0.647145 -0.696253 }
  7834. }
  7835. <Vertex> 57 {
  7836. -1.94957 2.18985 -0.199998
  7837. <Normal> { -0.0135922 0.646614 -0.696579 }
  7838. }
  7839. <Vertex> 58 {
  7840. -2.29781 2.17716 -0.199998
  7841. <Normal> { -0.053607 0.639147 -0.701267 }
  7842. }
  7843. <Vertex> 59 {
  7844. -2.56991 2.14271 -0.199998
  7845. <Normal> { -0.144005 0.603507 -0.718539 }
  7846. }
  7847. <Vertex> 60 {
  7848. -2.76516 2.07562 -0.199998
  7849. <Normal> { -0.30146 0.490542 -0.749654 }
  7850. }
  7851. <Vertex> 61 {
  7852. -2.88284 1.96501 -0.199998
  7853. <Normal> { -0.472087 0.265618 -0.77096 }
  7854. }
  7855. <Vertex> 62 {
  7856. -2.92222 1.8 -0.199998
  7857. <Normal> { -0.554646 0.0251547 -0.771032 }
  7858. }
  7859. <Vertex> 63 {
  7860. -1.55 2.1375 -0.224998
  7861. <Normal> { -6.52479e-05 2.53171e-05 -0.907674 }
  7862. }
  7863. <Vertex> 64 {
  7864. -1.94144 2.13594 -0.224998
  7865. <Normal> { -0.000305132 -5.95301e-06 -0.907818 }
  7866. }
  7867. <Vertex> 65 {
  7868. -2.26481 2.125 -0.224998
  7869. <Normal> { -0.00119507 -0.000520922 -0.910229 }
  7870. }
  7871. <Vertex> 66 {
  7872. -2.51875 2.09531 -0.224998
  7873. <Normal> { -0.00282878 -0.00233208 -0.918922 }
  7874. }
  7875. <Vertex> 67 {
  7876. -2.70185 2.0375 -0.224998
  7877. <Normal> { -0.00398318 -0.00505858 -0.934033 }
  7878. }
  7879. <Vertex> 68 {
  7880. -2.81273 1.94219 -0.224998
  7881. <Normal> { -0.00260665 -0.00492678 -0.944755 }
  7882. }
  7883. <Vertex> 69 {
  7884. -2.85 1.8 -0.224998
  7885. <Normal> { -0.000529423 -0.0017 -0.945443 }
  7886. }
  7887. <Vertex> 70 {
  7888. -1.57407 2.08333 -0.199998
  7889. <Normal> { 0.00243061 -0.647084 -0.696332 }
  7890. }
  7891. <Vertex> 71 {
  7892. -1.9333 2.08202 -0.199998
  7893. <Normal> { 0.011476 -0.646715 -0.696512 }
  7894. }
  7895. <Vertex> 72 {
  7896. -2.23182 2.07284 -0.199998
  7897. <Normal> { 0.0450133 -0.641165 -0.699778 }
  7898. }
  7899. <Vertex> 73 {
  7900. -2.46759 2.04792 -0.199998
  7901. <Normal> { 0.121729 -0.61414 -0.712873 }
  7902. }
  7903. <Vertex> 74 {
  7904. -2.63855 1.99938 -0.199998
  7905. <Normal> { 0.266158 -0.521716 -0.741085 }
  7906. }
  7907. <Vertex> 75 {
  7908. -2.74263 1.91937 -0.199998
  7909. <Normal> { 0.448276 -0.302289 -0.767114 }
  7910. }
  7911. <Vertex> 76 {
  7912. -2.77778 1.8 -0.199998
  7913. <Normal> { 0.550549 -0.0393994 -0.771471 }
  7914. }
  7915. <Vertex> 77 {
  7916. -1.59259 2.04167 -0.124998
  7917. <Normal> { 0.00325426 -0.932883 -0.308488 }
  7918. }
  7919. <Vertex> 78 {
  7920. -1.92704 2.04055 -0.124998
  7921. <Normal> { 0.015287 -0.93262 -0.308617 }
  7922. }
  7923. <Vertex> 79 {
  7924. -2.20645 2.03272 -0.124998
  7925. <Normal> { 0.0601522 -0.929003 -0.311352 }
  7926. }
  7927. <Vertex> 80 {
  7928. -2.42824 2.01146 -0.124998
  7929. <Normal> { 0.166165 -0.907745 -0.323026 }
  7930. }
  7931. <Vertex> 81 {
  7932. -2.58985 1.97006 -0.124998
  7933. <Normal> { 0.384292 -0.809819 -0.351075 }
  7934. }
  7935. <Vertex> 82 {
  7936. -2.6887 1.90181 -0.124998
  7937. <Normal> { 0.689575 -0.498158 -0.38042 }
  7938. }
  7939. <Vertex> 83 {
  7940. -2.72222 1.8 -0.124998
  7941. <Normal> { 0.868777 -0.0743998 -0.386755 }
  7942. }
  7943. <Vertex> 84 {
  7944. -2.68287 1.67083 1.61335e-06
  7945. <Normal> { 0.952849 0.226847 6.81728e-06 }
  7946. }
  7947. <Vertex> 85 {
  7948. -2.70418 1.66398 0.125002
  7949. <Normal> { 0.865416 0.205778 0.384919 }
  7950. }
  7951. <Vertex> 86 {
  7952. -2.62963 1.51667 1.4645e-06
  7953. <Normal> { 0.894335 0.402995 -1.036e-05 }
  7954. }
  7955. <Vertex> 87 {
  7956. -2.64829 1.50535 0.125001
  7957. <Normal> { 0.81292 0.366024 0.383518 }
  7958. }
  7959. <Vertex> 88 {
  7960. -2.5375 1.35 1.30356e-06
  7961. <Normal> { 0.812324 0.552681 -7.1682e-05 }
  7962. }
  7963. <Vertex> 89 {
  7964. -2.55185 1.33576 0.125001
  7965. <Normal> { 0.74379 0.505904 0.36897 }
  7966. }
  7967. <Vertex> 90 {
  7968. -2.4037 1.18333 1.14262e-06
  7969. <Normal> { 0.704127 0.688056 -0.000154361 }
  7970. }
  7971. <Vertex> 91 {
  7972. -2.41221 1.16687 0.125001
  7973. <Normal> { 0.652446 0.637639 0.343634 }
  7974. }
  7975. <Vertex> 92 {
  7976. -2.22546 1.02917 9.93766e-07
  7977. <Normal> { 0.566639 0.806777 -0.000180367 }
  7978. }
  7979. <Vertex> 93 {
  7980. -2.22668 1.01033 0.125001
  7981. <Normal> { 0.530313 0.75508 0.321448 }
  7982. }
  7983. <Vertex> 94 {
  7984. -2 0.9 8.69039e-07
  7985. <Normal> { 0.490422 0.86103 -0.000161253 }
  7986. }
  7987. <Vertex> 95 {
  7988. -1.99259 0.877778 0.125001
  7989. <Normal> { 0.460663 0.808475 0.313645 }
  7990. }
  7991. <Vertex> 96 {
  7992. -2.75747 1.64684 0.200002
  7993. <Normal> { 0.54673 0.132018 0.769911 }
  7994. }
  7995. <Vertex> 97 {
  7996. -2.69492 1.47706 0.200001
  7997. <Normal> { 0.512138 0.237725 0.768687 }
  7998. }
  7999. <Vertex> 98 {
  8000. -2.58773 1.30017 0.200001
  8001. <Normal> { 0.473558 0.3343 0.755688 }
  8002. }
  8003. <Vertex> 99 {
  8004. -2.43347 1.12572 0.200001
  8005. <Normal> { 0.425569 0.431144 0.732097 }
  8006. }
  8007. <Vertex> 100 {
  8008. -2.22972 0.963227 0.200001
  8009. <Normal> { 0.355623 0.519032 0.710369 }
  8010. }
  8011. <Vertex> 101 {
  8012. -1.97407 0.822222 0.200001
  8013. <Normal> { 0.313498 0.558308 0.702368 }
  8014. }
  8015. <Vertex> 102 {
  8016. -2.82674 1.62457 0.225002
  8017. <Normal> { 0.000389762 -0.00120847 0.944849 }
  8018. }
  8019. <Vertex> 103 {
  8020. -2.75556 1.44028 0.225001
  8021. <Normal> { 0.00175567 -0.0034702 0.944347 }
  8022. }
  8023. <Vertex> 104 {
  8024. -2.63437 1.25391 0.225001
  8025. <Normal> { 0.00372398 -0.00463797 0.9388 }
  8026. }
  8027. <Vertex> 105 {
  8028. -2.46111 1.07222 0.225001
  8029. <Normal> { 0.00500327 -0.00383636 0.927899 }
  8030. }
  8031. <Vertex> 106 {
  8032. -2.23368 0.901997 0.225001
  8033. <Normal> { 0.00396857 -0.00163162 0.916782 }
  8034. }
  8035. <Vertex> 107 {
  8036. -1.95 0.75 0.225001
  8037. <Normal> { 0.00264629 -0.000345334 0.912277 }
  8038. }
  8039. <Vertex> 108 {
  8040. -2.896 1.60229 0.200002
  8041. <Normal> { -0.543441 -0.14135 0.769687 }
  8042. }
  8043. <Vertex> 109 {
  8044. -2.81619 1.4035 0.200001
  8045. <Normal> { -0.498199 -0.264265 0.768333 }
  8046. }
  8047. <Vertex> 110 {
  8048. -2.68102 1.20764 0.200001
  8049. <Normal> { -0.445874 -0.369492 0.755993 }
  8050. }
  8051. <Vertex> 111 {
  8052. -2.48875 1.01872 0.200001
  8053. <Normal> { -0.391096 -0.460915 0.734193 }
  8054. }
  8055. <Vertex> 112 {
  8056. -2.23764 0.840766 0.200001
  8057. <Normal> { -0.330091 -0.533737 0.71369 }
  8058. }
  8059. <Vertex> 113 {
  8060. -1.92593 0.677778 0.200001
  8061. <Normal> { -0.297311 -0.564149 0.705686 }
  8062. }
  8063. <Vertex> 114 {
  8064. -2.94929 1.58515 0.125002
  8065. <Normal> { -0.857478 -0.227286 0.38459 }
  8066. }
  8067. <Vertex> 115 {
  8068. -2.86283 1.37521 0.125001
  8069. <Normal> { -0.780196 -0.427027 0.382968 }
  8070. }
  8071. <Vertex> 116 {
  8072. -2.7169 1.17205 0.125001
  8073. <Normal> { -0.680885 -0.586306 0.369325 }
  8074. }
  8075. <Vertex> 117 {
  8076. -2.51001 0.977572 0.125001
  8077. <Normal> { -0.577138 -0.705985 0.346406 }
  8078. }
  8079. <Vertex> 118 {
  8080. -2.24068 0.793666 0.125001
  8081. <Normal> { -0.476485 -0.790514 0.325783 }
  8082. }
  8083. <Vertex> 119 {
  8084. -1.90741 0.622222 0.125001
  8085. <Normal> { -0.427383 -0.824478 0.317922 }
  8086. }
  8087. <Vertex> 120 {
  8088. -2.9706 1.5783 1.52401e-06
  8089. <Normal> { -0.942969 -0.252913 1.11163e-05 }
  8090. }
  8091. <Vertex> 121 {
  8092. -2.88148 1.36389 1.31697e-06
  8093. <Normal> { -0.853902 -0.476963 3.45111e-05 }
  8094. }
  8095. <Vertex> 122 {
  8096. -2.73125 1.15781 1.11798e-06
  8097. <Normal> { -0.735659 -0.649811 3.54499e-05 }
  8098. }
  8099. <Vertex> 123 {
  8100. -2.51852 0.961111 9.28048e-07
  8101. <Normal> { -0.614216 -0.770441 -1.56686e-05 }
  8102. }
  8103. <Vertex> 124 {
  8104. -2.2419 0.774826 7.48171e-07
  8105. <Normal> { -0.50365 -0.850098 -6.39297e-05 }
  8106. }
  8107. <Vertex> 125 {
  8108. -1.9 0.6 5.79359e-07
  8109. <Normal> { -0.452041 -0.881374 -7.23675e-05 }
  8110. }
  8111. <Vertex> 126 {
  8112. -2.94929 1.58515 -0.124998
  8113. <Normal> { -0.856546 -0.229695 -0.384515 }
  8114. }
  8115. <Vertex> 127 {
  8116. -2.86283 1.37521 -0.124999
  8117. <Normal> { -0.776134 -0.434006 -0.382746 }
  8118. }
  8119. <Vertex> 128 {
  8120. -2.7169 1.17205 -0.124999
  8121. <Normal> { -0.672989 -0.595463 -0.369116 }
  8122. }
  8123. <Vertex> 129 {
  8124. -2.51001 0.977572 -0.124999
  8125. <Normal> { -0.567928 -0.713473 -0.346589 }
  8126. }
  8127. <Vertex> 130 {
  8128. -2.24068 0.793666 -0.124999
  8129. <Normal> { -0.470146 -0.794211 -0.326339 }
  8130. }
  8131. <Vertex> 131 {
  8132. -1.90741 0.622222 -0.124999
  8133. <Normal> { -0.423591 -0.826071 -0.318543 }
  8134. }
  8135. <Vertex> 132 {
  8136. -2.896 1.60229 -0.199998
  8137. <Normal> { -0.542478 -0.144038 -0.769602 }
  8138. }
  8139. <Vertex> 133 {
  8140. -2.81619 1.4035 -0.199999
  8141. <Normal> { -0.493918 -0.272073 -0.768092 }
  8142. }
  8143. <Vertex> 134 {
  8144. -2.68102 1.20764 -0.199999
  8145. <Normal> { -0.437236 -0.379868 -0.75579 }
  8146. }
  8147. <Vertex> 135 {
  8148. -2.48875 1.01872 -0.199999
  8149. <Normal> { -0.380424 -0.469398 -0.734503 }
  8150. }
  8151. <Vertex> 136 {
  8152. -2.23764 0.840766 -0.199999
  8153. <Normal> { -0.322295 -0.537627 -0.714494 }
  8154. }
  8155. <Vertex> 137 {
  8156. -1.92593 0.677778 -0.199999
  8157. <Normal> { -0.292423 -0.565477 -0.70658 }
  8158. }
  8159. <Vertex> 138 {
  8160. -2.82674 1.62457 -0.224998
  8161. <Normal> { 0.000330947 -0.0010253 -0.944809 }
  8162. }
  8163. <Vertex> 139 {
  8164. -2.75556 1.44028 -0.224999
  8165. <Normal> { 0.00152151 -0.00298031 -0.944261 }
  8166. }
  8167. <Vertex> 140 {
  8168. -2.63437 1.25391 -0.224999
  8169. <Normal> { 0.0032388 -0.00399986 -0.938801 }
  8170. }
  8171. <Vertex> 141 {
  8172. -2.46111 1.07222 -0.224999
  8173. <Normal> { 0.00427599 -0.0032585 -0.928279 }
  8174. }
  8175. <Vertex> 142 {
  8176. -2.23368 0.901997 -0.224999
  8177. <Normal> { 0.00331858 -0.00135463 -0.917504 }
  8178. }
  8179. <Vertex> 143 {
  8180. -1.95 0.75 -0.224999
  8181. <Normal> { 0.00218114 -0.000277951 -0.913052 }
  8182. }
  8183. <Vertex> 144 {
  8184. -2.75747 1.64684 -0.199998
  8185. <Normal> { 0.545401 0.135917 -0.769844 }
  8186. }
  8187. <Vertex> 145 {
  8188. -2.69492 1.47706 -0.199999
  8189. <Normal> { 0.506572 0.248707 -0.768646 }
  8190. }
  8191. <Vertex> 146 {
  8192. -2.58773 1.30017 -0.199999
  8193. <Normal> { 0.462381 0.348897 -0.755991 }
  8194. }
  8195. <Vertex> 147 {
  8196. -2.43347 1.12572 -0.199999
  8197. <Normal> { 0.411198 0.443611 -0.733128 }
  8198. }
  8199. <Vertex> 148 {
  8200. -2.22972 0.963227 -0.199999
  8201. <Normal> { 0.344608 0.525095 -0.711836 }
  8202. }
  8203. <Vertex> 149 {
  8204. -1.97407 0.822222 -0.199999
  8205. <Normal> { 0.306329 0.560536 -0.703794 }
  8206. }
  8207. <Vertex> 150 {
  8208. -2.70418 1.66398 -0.124998
  8209. <Normal> { 0.863979 0.209919 -0.384865 }
  8210. }
  8211. <Vertex> 151 {
  8212. -2.64829 1.50535 -0.124999
  8213. <Normal> { 0.80716 0.377585 -0.383519 }
  8214. }
  8215. <Vertex> 152 {
  8216. -2.55185 1.33576 -0.124999
  8217. <Normal> { 0.732615 0.52121 -0.369315 }
  8218. }
  8219. <Vertex> 153 {
  8220. -2.41221 1.16687 -0.124999
  8221. <Normal> { 0.638498 0.650971 -0.344581 }
  8222. }
  8223. <Vertex> 154 {
  8224. -2.22668 1.01033 -0.124999
  8225. <Normal> { 0.519865 0.762073 -0.322685 }
  8226. }
  8227. <Vertex> 155 {
  8228. -1.99259 0.877778 -0.124999
  8229. <Normal> { 0.453958 0.811572 -0.314803 }
  8230. }
  8231. }
  8232. <Polygon> {
  8233. <RGBA> { 0.8 0.8 0.8 1 }
  8234. <VertexRef> { 0 1 2 3 <Ref> { handle } }
  8235. }
  8236. <Polygon> {
  8237. <RGBA> { 0.8 0.8 0.8 1 }
  8238. <VertexRef> { 4 0 3 5 <Ref> { handle } }
  8239. }
  8240. <Polygon> {
  8241. <RGBA> { 0.8 0.8 0.8 1 }
  8242. <VertexRef> { 6 4 5 7 <Ref> { handle } }
  8243. }
  8244. <Polygon> {
  8245. <RGBA> { 0.8 0.8 0.8 1 }
  8246. <VertexRef> { 8 6 7 9 <Ref> { handle } }
  8247. }
  8248. <Polygon> {
  8249. <RGBA> { 0.8 0.8 0.8 1 }
  8250. <VertexRef> { 10 8 9 11 <Ref> { handle } }
  8251. }
  8252. <Polygon> {
  8253. <RGBA> { 0.8 0.8 0.8 1 }
  8254. <VertexRef> { 12 10 11 13 <Ref> { handle } }
  8255. }
  8256. <Polygon> {
  8257. <RGBA> { 0.8 0.8 0.8 1 }
  8258. <VertexRef> { 3 2 14 15 <Ref> { handle } }
  8259. }
  8260. <Polygon> {
  8261. <RGBA> { 0.8 0.8 0.8 1 }
  8262. <VertexRef> { 5 3 15 16 <Ref> { handle } }
  8263. }
  8264. <Polygon> {
  8265. <RGBA> { 0.8 0.8 0.8 1 }
  8266. <VertexRef> { 7 5 16 17 <Ref> { handle } }
  8267. }
  8268. <Polygon> {
  8269. <RGBA> { 0.8 0.8 0.8 1 }
  8270. <VertexRef> { 9 7 17 18 <Ref> { handle } }
  8271. }
  8272. <Polygon> {
  8273. <RGBA> { 0.8 0.8 0.8 1 }
  8274. <VertexRef> { 11 9 18 19 <Ref> { handle } }
  8275. }
  8276. <Polygon> {
  8277. <RGBA> { 0.8 0.8 0.8 1 }
  8278. <VertexRef> { 13 11 19 20 <Ref> { handle } }
  8279. }
  8280. <Polygon> {
  8281. <RGBA> { 0.8 0.8 0.8 1 }
  8282. <VertexRef> { 15 14 21 22 <Ref> { handle } }
  8283. }
  8284. <Polygon> {
  8285. <RGBA> { 0.8 0.8 0.8 1 }
  8286. <VertexRef> { 16 15 22 23 <Ref> { handle } }
  8287. }
  8288. <Polygon> {
  8289. <RGBA> { 0.8 0.8 0.8 1 }
  8290. <VertexRef> { 17 16 23 24 <Ref> { handle } }
  8291. }
  8292. <Polygon> {
  8293. <RGBA> { 0.8 0.8 0.8 1 }
  8294. <VertexRef> { 18 17 24 25 <Ref> { handle } }
  8295. }
  8296. <Polygon> {
  8297. <RGBA> { 0.8 0.8 0.8 1 }
  8298. <VertexRef> { 19 18 25 26 <Ref> { handle } }
  8299. }
  8300. <Polygon> {
  8301. <RGBA> { 0.8 0.8 0.8 1 }
  8302. <VertexRef> { 20 19 26 27 <Ref> { handle } }
  8303. }
  8304. <Polygon> {
  8305. <RGBA> { 0.8 0.8 0.8 1 }
  8306. <VertexRef> { 22 21 28 29 <Ref> { handle } }
  8307. }
  8308. <Polygon> {
  8309. <RGBA> { 0.8 0.8 0.8 1 }
  8310. <VertexRef> { 23 22 29 30 <Ref> { handle } }
  8311. }
  8312. <Polygon> {
  8313. <RGBA> { 0.8 0.8 0.8 1 }
  8314. <VertexRef> { 24 23 30 31 <Ref> { handle } }
  8315. }
  8316. <Polygon> {
  8317. <RGBA> { 0.8 0.8 0.8 1 }
  8318. <VertexRef> { 25 24 31 32 <Ref> { handle } }
  8319. }
  8320. <Polygon> {
  8321. <RGBA> { 0.8 0.8 0.8 1 }
  8322. <VertexRef> { 26 25 32 33 <Ref> { handle } }
  8323. }
  8324. <Polygon> {
  8325. <RGBA> { 0.8 0.8 0.8 1 }
  8326. <VertexRef> { 27 26 33 34 <Ref> { handle } }
  8327. }
  8328. <Polygon> {
  8329. <RGBA> { 0.8 0.8 0.8 1 }
  8330. <VertexRef> { 29 28 35 36 <Ref> { handle } }
  8331. }
  8332. <Polygon> {
  8333. <RGBA> { 0.8 0.8 0.8 1 }
  8334. <VertexRef> { 30 29 36 37 <Ref> { handle } }
  8335. }
  8336. <Polygon> {
  8337. <RGBA> { 0.8 0.8 0.8 1 }
  8338. <VertexRef> { 31 30 37 38 <Ref> { handle } }
  8339. }
  8340. <Polygon> {
  8341. <RGBA> { 0.8 0.8 0.8 1 }
  8342. <VertexRef> { 32 31 38 39 <Ref> { handle } }
  8343. }
  8344. <Polygon> {
  8345. <RGBA> { 0.8 0.8 0.8 1 }
  8346. <VertexRef> { 33 32 39 40 <Ref> { handle } }
  8347. }
  8348. <Polygon> {
  8349. <RGBA> { 0.8 0.8 0.8 1 }
  8350. <VertexRef> { 34 33 40 41 <Ref> { handle } }
  8351. }
  8352. <Polygon> {
  8353. <RGBA> { 0.8 0.8 0.8 1 }
  8354. <VertexRef> { 36 35 42 43 <Ref> { handle } }
  8355. }
  8356. <Polygon> {
  8357. <RGBA> { 0.8 0.8 0.8 1 }
  8358. <VertexRef> { 37 36 43 44 <Ref> { handle } }
  8359. }
  8360. <Polygon> {
  8361. <RGBA> { 0.8 0.8 0.8 1 }
  8362. <VertexRef> { 38 37 44 45 <Ref> { handle } }
  8363. }
  8364. <Polygon> {
  8365. <RGBA> { 0.8 0.8 0.8 1 }
  8366. <VertexRef> { 39 38 45 46 <Ref> { handle } }
  8367. }
  8368. <Polygon> {
  8369. <RGBA> { 0.8 0.8 0.8 1 }
  8370. <VertexRef> { 40 39 46 47 <Ref> { handle } }
  8371. }
  8372. <Polygon> {
  8373. <RGBA> { 0.8 0.8 0.8 1 }
  8374. <VertexRef> { 41 40 47 48 <Ref> { handle } }
  8375. }
  8376. <Polygon> {
  8377. <RGBA> { 0.8 0.8 0.8 1 }
  8378. <VertexRef> { 43 42 49 50 <Ref> { handle } }
  8379. }
  8380. <Polygon> {
  8381. <RGBA> { 0.8 0.8 0.8 1 }
  8382. <VertexRef> { 44 43 50 51 <Ref> { handle } }
  8383. }
  8384. <Polygon> {
  8385. <RGBA> { 0.8 0.8 0.8 1 }
  8386. <VertexRef> { 45 44 51 52 <Ref> { handle } }
  8387. }
  8388. <Polygon> {
  8389. <RGBA> { 0.8 0.8 0.8 1 }
  8390. <VertexRef> { 46 45 52 53 <Ref> { handle } }
  8391. }
  8392. <Polygon> {
  8393. <RGBA> { 0.8 0.8 0.8 1 }
  8394. <VertexRef> { 47 46 53 54 <Ref> { handle } }
  8395. }
  8396. <Polygon> {
  8397. <RGBA> { 0.8 0.8 0.8 1 }
  8398. <VertexRef> { 48 47 54 55 <Ref> { handle } }
  8399. }
  8400. <Polygon> {
  8401. <RGBA> { 0.8 0.8 0.8 1 }
  8402. <VertexRef> { 50 49 56 57 <Ref> { handle } }
  8403. }
  8404. <Polygon> {
  8405. <RGBA> { 0.8 0.8 0.8 1 }
  8406. <VertexRef> { 51 50 57 58 <Ref> { handle } }
  8407. }
  8408. <Polygon> {
  8409. <RGBA> { 0.8 0.8 0.8 1 }
  8410. <VertexRef> { 52 51 58 59 <Ref> { handle } }
  8411. }
  8412. <Polygon> {
  8413. <RGBA> { 0.8 0.8 0.8 1 }
  8414. <VertexRef> { 53 52 59 60 <Ref> { handle } }
  8415. }
  8416. <Polygon> {
  8417. <RGBA> { 0.8 0.8 0.8 1 }
  8418. <VertexRef> { 54 53 60 61 <Ref> { handle } }
  8419. }
  8420. <Polygon> {
  8421. <RGBA> { 0.8 0.8 0.8 1 }
  8422. <VertexRef> { 55 54 61 62 <Ref> { handle } }
  8423. }
  8424. <Polygon> {
  8425. <RGBA> { 0.8 0.8 0.8 1 }
  8426. <VertexRef> { 57 56 63 64 <Ref> { handle } }
  8427. }
  8428. <Polygon> {
  8429. <RGBA> { 0.8 0.8 0.8 1 }
  8430. <VertexRef> { 58 57 64 65 <Ref> { handle } }
  8431. }
  8432. <Polygon> {
  8433. <RGBA> { 0.8 0.8 0.8 1 }
  8434. <VertexRef> { 59 58 65 66 <Ref> { handle } }
  8435. }
  8436. <Polygon> {
  8437. <RGBA> { 0.8 0.8 0.8 1 }
  8438. <VertexRef> { 60 59 66 67 <Ref> { handle } }
  8439. }
  8440. <Polygon> {
  8441. <RGBA> { 0.8 0.8 0.8 1 }
  8442. <VertexRef> { 61 60 67 68 <Ref> { handle } }
  8443. }
  8444. <Polygon> {
  8445. <RGBA> { 0.8 0.8 0.8 1 }
  8446. <VertexRef> { 62 61 68 69 <Ref> { handle } }
  8447. }
  8448. <Polygon> {
  8449. <RGBA> { 0.8 0.8 0.8 1 }
  8450. <VertexRef> { 64 63 70 71 <Ref> { handle } }
  8451. }
  8452. <Polygon> {
  8453. <RGBA> { 0.8 0.8 0.8 1 }
  8454. <VertexRef> { 65 64 71 72 <Ref> { handle } }
  8455. }
  8456. <Polygon> {
  8457. <RGBA> { 0.8 0.8 0.8 1 }
  8458. <VertexRef> { 66 65 72 73 <Ref> { handle } }
  8459. }
  8460. <Polygon> {
  8461. <RGBA> { 0.8 0.8 0.8 1 }
  8462. <VertexRef> { 67 66 73 74 <Ref> { handle } }
  8463. }
  8464. <Polygon> {
  8465. <RGBA> { 0.8 0.8 0.8 1 }
  8466. <VertexRef> { 68 67 74 75 <Ref> { handle } }
  8467. }
  8468. <Polygon> {
  8469. <RGBA> { 0.8 0.8 0.8 1 }
  8470. <VertexRef> { 69 68 75 76 <Ref> { handle } }
  8471. }
  8472. <Polygon> {
  8473. <RGBA> { 0.8 0.8 0.8 1 }
  8474. <VertexRef> { 71 70 77 78 <Ref> { handle } }
  8475. }
  8476. <Polygon> {
  8477. <RGBA> { 0.8 0.8 0.8 1 }
  8478. <VertexRef> { 72 71 78 79 <Ref> { handle } }
  8479. }
  8480. <Polygon> {
  8481. <RGBA> { 0.8 0.8 0.8 1 }
  8482. <VertexRef> { 73 72 79 80 <Ref> { handle } }
  8483. }
  8484. <Polygon> {
  8485. <RGBA> { 0.8 0.8 0.8 1 }
  8486. <VertexRef> { 74 73 80 81 <Ref> { handle } }
  8487. }
  8488. <Polygon> {
  8489. <RGBA> { 0.8 0.8 0.8 1 }
  8490. <VertexRef> { 75 74 81 82 <Ref> { handle } }
  8491. }
  8492. <Polygon> {
  8493. <RGBA> { 0.8 0.8 0.8 1 }
  8494. <VertexRef> { 76 75 82 83 <Ref> { handle } }
  8495. }
  8496. <Polygon> {
  8497. <RGBA> { 0.8 0.8 0.8 1 }
  8498. <VertexRef> { 78 77 1 0 <Ref> { handle } }
  8499. }
  8500. <Polygon> {
  8501. <RGBA> { 0.8 0.8 0.8 1 }
  8502. <VertexRef> { 79 78 0 4 <Ref> { handle } }
  8503. }
  8504. <Polygon> {
  8505. <RGBA> { 0.8 0.8 0.8 1 }
  8506. <VertexRef> { 80 79 4 6 <Ref> { handle } }
  8507. }
  8508. <Polygon> {
  8509. <RGBA> { 0.8 0.8 0.8 1 }
  8510. <VertexRef> { 81 80 6 8 <Ref> { handle } }
  8511. }
  8512. <Polygon> {
  8513. <RGBA> { 0.8 0.8 0.8 1 }
  8514. <VertexRef> { 82 81 8 10 <Ref> { handle } }
  8515. }
  8516. <Polygon> {
  8517. <RGBA> { 0.8 0.8 0.8 1 }
  8518. <VertexRef> { 83 82 10 12 <Ref> { handle } }
  8519. }
  8520. <Polygon> {
  8521. <RGBA> { 0.8 0.8 0.8 1 }
  8522. <VertexRef> { 84 12 13 85 <Ref> { handle } }
  8523. }
  8524. <Polygon> {
  8525. <RGBA> { 0.8 0.8 0.8 1 }
  8526. <VertexRef> { 86 84 85 87 <Ref> { handle } }
  8527. }
  8528. <Polygon> {
  8529. <RGBA> { 0.8 0.8 0.8 1 }
  8530. <VertexRef> { 88 86 87 89 <Ref> { handle } }
  8531. }
  8532. <Polygon> {
  8533. <RGBA> { 0.8 0.8 0.8 1 }
  8534. <VertexRef> { 90 88 89 91 <Ref> { handle } }
  8535. }
  8536. <Polygon> {
  8537. <RGBA> { 0.8 0.8 0.8 1 }
  8538. <VertexRef> { 92 90 91 93 <Ref> { handle } }
  8539. }
  8540. <Polygon> {
  8541. <RGBA> { 0.8 0.8 0.8 1 }
  8542. <VertexRef> { 94 92 93 95 <Ref> { handle } }
  8543. }
  8544. <Polygon> {
  8545. <RGBA> { 0.8 0.8 0.8 1 }
  8546. <VertexRef> { 85 13 20 96 <Ref> { handle } }
  8547. }
  8548. <Polygon> {
  8549. <RGBA> { 0.8 0.8 0.8 1 }
  8550. <VertexRef> { 87 85 96 97 <Ref> { handle } }
  8551. }
  8552. <Polygon> {
  8553. <RGBA> { 0.8 0.8 0.8 1 }
  8554. <VertexRef> { 89 87 97 98 <Ref> { handle } }
  8555. }
  8556. <Polygon> {
  8557. <RGBA> { 0.8 0.8 0.8 1 }
  8558. <VertexRef> { 91 89 98 99 <Ref> { handle } }
  8559. }
  8560. <Polygon> {
  8561. <RGBA> { 0.8 0.8 0.8 1 }
  8562. <VertexRef> { 93 91 99 100 <Ref> { handle } }
  8563. }
  8564. <Polygon> {
  8565. <RGBA> { 0.8 0.8 0.8 1 }
  8566. <VertexRef> { 95 93 100 101 <Ref> { handle } }
  8567. }
  8568. <Polygon> {
  8569. <RGBA> { 0.8 0.8 0.8 1 }
  8570. <VertexRef> { 96 20 27 102 <Ref> { handle } }
  8571. }
  8572. <Polygon> {
  8573. <RGBA> { 0.8 0.8 0.8 1 }
  8574. <VertexRef> { 97 96 102 103 <Ref> { handle } }
  8575. }
  8576. <Polygon> {
  8577. <RGBA> { 0.8 0.8 0.8 1 }
  8578. <VertexRef> { 98 97 103 104 <Ref> { handle } }
  8579. }
  8580. <Polygon> {
  8581. <RGBA> { 0.8 0.8 0.8 1 }
  8582. <VertexRef> { 99 98 104 105 <Ref> { handle } }
  8583. }
  8584. <Polygon> {
  8585. <RGBA> { 0.8 0.8 0.8 1 }
  8586. <VertexRef> { 100 99 105 106 <Ref> { handle } }
  8587. }
  8588. <Polygon> {
  8589. <RGBA> { 0.8 0.8 0.8 1 }
  8590. <VertexRef> { 101 100 106 107 <Ref> { handle } }
  8591. }
  8592. <Polygon> {
  8593. <RGBA> { 0.8 0.8 0.8 1 }
  8594. <VertexRef> { 102 27 34 108 <Ref> { handle } }
  8595. }
  8596. <Polygon> {
  8597. <RGBA> { 0.8 0.8 0.8 1 }
  8598. <VertexRef> { 103 102 108 109 <Ref> { handle } }
  8599. }
  8600. <Polygon> {
  8601. <RGBA> { 0.8 0.8 0.8 1 }
  8602. <VertexRef> { 104 103 109 110 <Ref> { handle } }
  8603. }
  8604. <Polygon> {
  8605. <RGBA> { 0.8 0.8 0.8 1 }
  8606. <VertexRef> { 105 104 110 111 <Ref> { handle } }
  8607. }
  8608. <Polygon> {
  8609. <RGBA> { 0.8 0.8 0.8 1 }
  8610. <VertexRef> { 106 105 111 112 <Ref> { handle } }
  8611. }
  8612. <Polygon> {
  8613. <RGBA> { 0.8 0.8 0.8 1 }
  8614. <VertexRef> { 107 106 112 113 <Ref> { handle } }
  8615. }
  8616. <Polygon> {
  8617. <RGBA> { 0.8 0.8 0.8 1 }
  8618. <VertexRef> { 108 34 41 114 <Ref> { handle } }
  8619. }
  8620. <Polygon> {
  8621. <RGBA> { 0.8 0.8 0.8 1 }
  8622. <VertexRef> { 109 108 114 115 <Ref> { handle } }
  8623. }
  8624. <Polygon> {
  8625. <RGBA> { 0.8 0.8 0.8 1 }
  8626. <VertexRef> { 110 109 115 116 <Ref> { handle } }
  8627. }
  8628. <Polygon> {
  8629. <RGBA> { 0.8 0.8 0.8 1 }
  8630. <VertexRef> { 111 110 116 117 <Ref> { handle } }
  8631. }
  8632. <Polygon> {
  8633. <RGBA> { 0.8 0.8 0.8 1 }
  8634. <VertexRef> { 112 111 117 118 <Ref> { handle } }
  8635. }
  8636. <Polygon> {
  8637. <RGBA> { 0.8 0.8 0.8 1 }
  8638. <VertexRef> { 113 112 118 119 <Ref> { handle } }
  8639. }
  8640. <Polygon> {
  8641. <RGBA> { 0.8 0.8 0.8 1 }
  8642. <VertexRef> { 114 41 48 120 <Ref> { handle } }
  8643. }
  8644. <Polygon> {
  8645. <RGBA> { 0.8 0.8 0.8 1 }
  8646. <VertexRef> { 115 114 120 121 <Ref> { handle } }
  8647. }
  8648. <Polygon> {
  8649. <RGBA> { 0.8 0.8 0.8 1 }
  8650. <VertexRef> { 116 115 121 122 <Ref> { handle } }
  8651. }
  8652. <Polygon> {
  8653. <RGBA> { 0.8 0.8 0.8 1 }
  8654. <VertexRef> { 117 116 122 123 <Ref> { handle } }
  8655. }
  8656. <Polygon> {
  8657. <RGBA> { 0.8 0.8 0.8 1 }
  8658. <VertexRef> { 118 117 123 124 <Ref> { handle } }
  8659. }
  8660. <Polygon> {
  8661. <RGBA> { 0.8 0.8 0.8 1 }
  8662. <VertexRef> { 119 118 124 125 <Ref> { handle } }
  8663. }
  8664. <Polygon> {
  8665. <RGBA> { 0.8 0.8 0.8 1 }
  8666. <VertexRef> { 120 48 55 126 <Ref> { handle } }
  8667. }
  8668. <Polygon> {
  8669. <RGBA> { 0.8 0.8 0.8 1 }
  8670. <VertexRef> { 121 120 126 127 <Ref> { handle } }
  8671. }
  8672. <Polygon> {
  8673. <RGBA> { 0.8 0.8 0.8 1 }
  8674. <VertexRef> { 122 121 127 128 <Ref> { handle } }
  8675. }
  8676. <Polygon> {
  8677. <RGBA> { 0.8 0.8 0.8 1 }
  8678. <VertexRef> { 123 122 128 129 <Ref> { handle } }
  8679. }
  8680. <Polygon> {
  8681. <RGBA> { 0.8 0.8 0.8 1 }
  8682. <VertexRef> { 124 123 129 130 <Ref> { handle } }
  8683. }
  8684. <Polygon> {
  8685. <RGBA> { 0.8 0.8 0.8 1 }
  8686. <VertexRef> { 125 124 130 131 <Ref> { handle } }
  8687. }
  8688. <Polygon> {
  8689. <RGBA> { 0.8 0.8 0.8 1 }
  8690. <VertexRef> { 126 55 62 132 <Ref> { handle } }
  8691. }
  8692. <Polygon> {
  8693. <RGBA> { 0.8 0.8 0.8 1 }
  8694. <VertexRef> { 127 126 132 133 <Ref> { handle } }
  8695. }
  8696. <Polygon> {
  8697. <RGBA> { 0.8 0.8 0.8 1 }
  8698. <VertexRef> { 128 127 133 134 <Ref> { handle } }
  8699. }
  8700. <Polygon> {
  8701. <RGBA> { 0.8 0.8 0.8 1 }
  8702. <VertexRef> { 129 128 134 135 <Ref> { handle } }
  8703. }
  8704. <Polygon> {
  8705. <RGBA> { 0.8 0.8 0.8 1 }
  8706. <VertexRef> { 130 129 135 136 <Ref> { handle } }
  8707. }
  8708. <Polygon> {
  8709. <RGBA> { 0.8 0.8 0.8 1 }
  8710. <VertexRef> { 131 130 136 137 <Ref> { handle } }
  8711. }
  8712. <Polygon> {
  8713. <RGBA> { 0.8 0.8 0.8 1 }
  8714. <VertexRef> { 132 62 69 138 <Ref> { handle } }
  8715. }
  8716. <Polygon> {
  8717. <RGBA> { 0.8 0.8 0.8 1 }
  8718. <VertexRef> { 133 132 138 139 <Ref> { handle } }
  8719. }
  8720. <Polygon> {
  8721. <RGBA> { 0.8 0.8 0.8 1 }
  8722. <VertexRef> { 134 133 139 140 <Ref> { handle } }
  8723. }
  8724. <Polygon> {
  8725. <RGBA> { 0.8 0.8 0.8 1 }
  8726. <VertexRef> { 135 134 140 141 <Ref> { handle } }
  8727. }
  8728. <Polygon> {
  8729. <RGBA> { 0.8 0.8 0.8 1 }
  8730. <VertexRef> { 136 135 141 142 <Ref> { handle } }
  8731. }
  8732. <Polygon> {
  8733. <RGBA> { 0.8 0.8 0.8 1 }
  8734. <VertexRef> { 137 136 142 143 <Ref> { handle } }
  8735. }
  8736. <Polygon> {
  8737. <RGBA> { 0.8 0.8 0.8 1 }
  8738. <VertexRef> { 138 69 76 144 <Ref> { handle } }
  8739. }
  8740. <Polygon> {
  8741. <RGBA> { 0.8 0.8 0.8 1 }
  8742. <VertexRef> { 139 138 144 145 <Ref> { handle } }
  8743. }
  8744. <Polygon> {
  8745. <RGBA> { 0.8 0.8 0.8 1 }
  8746. <VertexRef> { 140 139 145 146 <Ref> { handle } }
  8747. }
  8748. <Polygon> {
  8749. <RGBA> { 0.8 0.8 0.8 1 }
  8750. <VertexRef> { 141 140 146 147 <Ref> { handle } }
  8751. }
  8752. <Polygon> {
  8753. <RGBA> { 0.8 0.8 0.8 1 }
  8754. <VertexRef> { 142 141 147 148 <Ref> { handle } }
  8755. }
  8756. <Polygon> {
  8757. <RGBA> { 0.8 0.8 0.8 1 }
  8758. <VertexRef> { 143 142 148 149 <Ref> { handle } }
  8759. }
  8760. <Polygon> {
  8761. <RGBA> { 0.8 0.8 0.8 1 }
  8762. <VertexRef> { 144 76 83 150 <Ref> { handle } }
  8763. }
  8764. <Polygon> {
  8765. <RGBA> { 0.8 0.8 0.8 1 }
  8766. <VertexRef> { 145 144 150 151 <Ref> { handle } }
  8767. }
  8768. <Polygon> {
  8769. <RGBA> { 0.8 0.8 0.8 1 }
  8770. <VertexRef> { 146 145 151 152 <Ref> { handle } }
  8771. }
  8772. <Polygon> {
  8773. <RGBA> { 0.8 0.8 0.8 1 }
  8774. <VertexRef> { 147 146 152 153 <Ref> { handle } }
  8775. }
  8776. <Polygon> {
  8777. <RGBA> { 0.8 0.8 0.8 1 }
  8778. <VertexRef> { 148 147 153 154 <Ref> { handle } }
  8779. }
  8780. <Polygon> {
  8781. <RGBA> { 0.8 0.8 0.8 1 }
  8782. <VertexRef> { 149 148 154 155 <Ref> { handle } }
  8783. }
  8784. <Polygon> {
  8785. <RGBA> { 0.8 0.8 0.8 1 }
  8786. <VertexRef> { 150 83 12 84 <Ref> { handle } }
  8787. }
  8788. <Polygon> {
  8789. <RGBA> { 0.8 0.8 0.8 1 }
  8790. <VertexRef> { 151 150 84 86 <Ref> { handle } }
  8791. }
  8792. <Polygon> {
  8793. <RGBA> { 0.8 0.8 0.8 1 }
  8794. <VertexRef> { 152 151 86 88 <Ref> { handle } }
  8795. }
  8796. <Polygon> {
  8797. <RGBA> { 0.8 0.8 0.8 1 }
  8798. <VertexRef> { 153 152 88 90 <Ref> { handle } }
  8799. }
  8800. <Polygon> {
  8801. <RGBA> { 0.8 0.8 0.8 1 }
  8802. <VertexRef> { 154 153 90 92 <Ref> { handle } }
  8803. }
  8804. <Polygon> {
  8805. <RGBA> { 0.8 0.8 0.8 1 }
  8806. <VertexRef> { 155 154 92 94 <Ref> { handle } }
  8807. }
  8808. }
  8809. <Group> spout {
  8810. <VertexPool> spout {
  8811. <Vertex> 0 {
  8812. 2.0588 1.47639 1.4256e-06
  8813. <Normal> { -0.33688 0.896686 0.000149786 }
  8814. }
  8815. <Vertex> 1 {
  8816. 1.7 1.425 1.37598e-06
  8817. <Normal> { -0.145038 0.965844 0.000209682 }
  8818. }
  8819. <Vertex> 2 {
  8820. 1.7 1.36389 0.275001
  8821. <Normal> { -0.117873 0.848529 0.445515 }
  8822. }
  8823. <Vertex> 3 {
  8824. 2.07238 1.42521 0.262347
  8825. <Normal> { -0.282646 0.801676 0.428258 }
  8826. }
  8827. <Vertex> 4 {
  8828. 2.27037 1.61111 1.55569e-06
  8829. <Normal> { -0.682616 0.675732 -0.000166968 }
  8830. }
  8831. <Vertex> 5 {
  8832. 2.29012 1.57202 0.230712
  8833. <Normal> { -0.59392 0.632345 0.390925 }
  8834. }
  8835. <Vertex> 6 {
  8836. 2.3875 1.8 1.73808e-06
  8837. <Normal> { -0.88226 0.431084 -0.000663459 }
  8838. }
  8839. <Vertex> 7 {
  8840. 2.40972 1.77361 0.189585
  8841. <Normal> { -0.78798 0.426884 0.366522 }
  8842. }
  8843. <Vertex> 8 {
  8844. 2.46296 2.01389 1.94461e-06
  8845. <Normal> { -0.914529 0.364295 -0.000649575 }
  8846. }
  8847. <Vertex> 9 {
  8848. 2.48765 1.99928 0.148459
  8849. <Normal> { -0.814908 0.360353 0.384825 }
  8850. }
  8851. <Vertex> 10 {
  8852. 2.54954 2.22361 2.14712e-06
  8853. <Normal> { -0.815 0.518827 0.00110626 }
  8854. }
  8855. <Vertex> 11 {
  8856. 2.5804 2.21831 0.116823
  8857. <Normal> { -0.713431 0.476477 0.428563 }
  8858. }
  8859. <Vertex> 12 {
  8860. 2.7 2.4 2.31744e-06
  8861. <Normal> { -0.620892 0.73866 0.00360016 }
  8862. }
  8863. <Vertex> 13 {
  8864. 2.74444 2.4 0.104169
  8865. <Normal> { -0.539037 0.65914 0.443975 }
  8866. }
  8867. <Vertex> 14 {
  8868. 1.7 1.21111 0.440001
  8869. <Normal> { -0.0529161 0.498572 0.819943 }
  8870. }
  8871. <Vertex> 15 {
  8872. 2.10633 1.29725 0.419754
  8873. <Normal> { -0.122755 0.493732 0.806968 }
  8874. }
  8875. <Vertex> 16 {
  8876. 2.33951 1.47428 0.369137
  8877. <Normal> { -0.275215 0.446146 0.77962 }
  8878. }
  8879. <Vertex> 17 {
  8880. 2.46528 1.70764 0.303335
  8881. <Normal> { -0.400894 0.364628 0.761145 }
  8882. }
  8883. <Vertex> 18 {
  8884. 2.54938 1.96276 0.237533
  8885. <Normal> { -0.438075 0.327359 0.770926 }
  8886. }
  8887. <Vertex> 19 {
  8888. 2.65756 2.20507 0.186916
  8889. <Normal> { -0.390357 0.362963 0.797587 }
  8890. }
  8891. <Vertex> 20 {
  8892. 2.85556 2.4 0.166669
  8893. <Normal> { -0.299226 0.457172 0.798115 }
  8894. }
  8895. <Vertex> 21 {
  8896. 1.7 1.0125 0.495001
  8897. <Normal> { 0.0547462 0.00092788 0.960343 }
  8898. }
  8899. <Vertex> 22 {
  8900. 2.15046 1.1309 0.472223
  8901. <Normal> { 0.114665 0.0271111 0.946555 }
  8902. }
  8903. <Vertex> 23 {
  8904. 2.4037 1.34722 0.415279
  8905. <Normal> { 0.203163 0.0948216 0.914252 }
  8906. }
  8907. <Vertex> 24 {
  8908. 2.5375 1.62187 0.341252
  8909. <Normal> { 0.20729 0.154952 0.898022 }
  8910. }
  8911. <Vertex> 25 {
  8912. 2.62963 1.91528 0.267224
  8913. <Normal> { 0.135509 0.162862 0.918941 }
  8914. }
  8915. <Vertex> 26 {
  8916. 2.75787 2.18785 0.21028
  8917. <Normal> { 0.0517707 0.112492 0.947895 }
  8918. }
  8919. <Vertex> 27 {
  8920. 3 2.4 0.187502
  8921. <Normal> { 0.0100241 0.10154 0.954626 }
  8922. }
  8923. <Vertex> 28 {
  8924. 1.7 0.813889 0.440001
  8925. <Normal> { 0.180902 -0.488321 0.807953 }
  8926. }
  8927. <Vertex> 29 {
  8928. 2.1946 0.964558 0.419754
  8929. <Normal> { 0.33562 -0.427289 0.775012 }
  8930. }
  8931. <Vertex> 30 {
  8932. 2.4679 1.22016 0.369137
  8933. <Normal> { 0.586984 -0.259536 0.703578 }
  8934. }
  8935. <Vertex> 31 {
  8936. 2.60972 1.53611 0.303335
  8937. <Normal> { 0.682553 -0.101803 0.672816 }
  8938. }
  8939. <Vertex> 32 {
  8940. 2.70988 1.8678 0.237533
  8941. <Normal> { 0.61597 -0.0838506 0.728325 }
  8942. }
  8943. <Vertex> 33 {
  8944. 2.85818 2.17063 0.186916
  8945. <Normal> { 0.451067 -0.231922 0.794818 }
  8946. }
  8947. <Vertex> 34 {
  8948. 3.14444 2.4 0.166669
  8949. <Normal> { 0.303054 -0.367192 0.815782 }
  8950. }
  8951. <Vertex> 35 {
  8952. 1.7 0.661111 0.275001
  8953. <Normal> { 0.278269 -0.819417 0.43248 }
  8954. }
  8955. <Vertex> 36 {
  8956. 2.22855 0.8366 0.262347
  8957. <Normal> { 0.468203 -0.718056 0.402394 }
  8958. }
  8959. <Vertex> 37 {
  8960. 2.51728 1.12243 0.230711
  8961. <Normal> { 0.765761 -0.469468 0.343468 }
  8962. }
  8963. <Vertex> 38 {
  8964. 2.66528 1.47014 0.189584
  8965. <Normal> { 0.887174 -0.266072 0.3207 }
  8966. }
  8967. <Vertex> 39 {
  8968. 2.7716 1.83128 0.148459
  8969. <Normal> { 0.856889 -0.276238 0.365573 }
  8970. }
  8971. <Vertex> 40 {
  8972. 2.93534 2.15738 0.116823
  8973. <Normal> { 0.680593 -0.507197 0.41461 }
  8974. }
  8975. <Vertex> 41 {
  8976. 3.25556 2.4 0.104169
  8977. <Normal> { 0.47124 -0.723897 0.420477 }
  8978. }
  8979. <Vertex> 42 {
  8980. 1.7 0.6 5.79359e-07
  8981. <Normal> { 0.314735 -0.926575 0.000139572 }
  8982. }
  8983. <Vertex> 43 {
  8984. 2.24213 0.785417 7.58398e-07
  8985. <Normal> { 0.508046 -0.809248 -1.4171e-05 }
  8986. }
  8987. <Vertex> 44 {
  8988. 2.53704 1.08333 1.04606e-06
  8989. <Normal> { 0.808205 -0.534641 -0.000343993 }
  8990. }
  8991. <Vertex> 45 {
  8992. 2.6875 1.44375 1.39408e-06
  8993. <Normal> { 0.933093 -0.323834 -0.000603799 }
  8994. }
  8995. <Vertex> 46 {
  8996. 2.7963 1.81667 1.75417e-06
  8997. <Normal> { 0.915744 -0.352556 -0.00041366 }
  8998. }
  8999. <Vertex> 47 {
  9000. 2.9662 2.15208 2.07805e-06
  9001. <Normal> { 0.735857 -0.609022 0.000613641 }
  9002. }
  9003. <Vertex> 48 {
  9004. 3.3 2.4 2.31744e-06
  9005. <Normal> { 0.503516 -0.837636 0.00186276 }
  9006. }
  9007. <Vertex> 49 {
  9008. 1.7 0.661111 -0.274999
  9009. <Normal> { 0.28411 -0.818055 -0.431665 }
  9010. }
  9011. <Vertex> 50 {
  9012. 2.22855 0.8366 -0.262345
  9013. <Normal> { 0.468577 -0.719373 -0.402798 }
  9014. }
  9015. <Vertex> 51 {
  9016. 2.51728 1.12243 -0.230709
  9017. <Normal> { 0.75945 -0.47807 -0.346777 }
  9018. }
  9019. <Vertex> 52 {
  9020. 2.66528 1.47014 -0.189582
  9021. <Normal> { 0.879092 -0.283739 -0.326417 }
  9022. }
  9023. <Vertex> 53 {
  9024. 2.7716 1.83128 -0.148455
  9025. <Normal> { 0.84547 -0.30236 -0.369825 }
  9026. }
  9027. <Vertex> 54 {
  9028. 2.93534 2.15738 -0.116819
  9029. <Normal> { 0.665499 -0.533207 -0.41108 }
  9030. }
  9031. <Vertex> 55 {
  9032. 3.25556 2.4 -0.104165
  9033. <Normal> { 0.456068 -0.746015 -0.406886 }
  9034. }
  9035. <Vertex> 56 {
  9036. 1.7 0.813889 -0.439999
  9037. <Normal> { 0.185706 -0.487561 -0.807173 }
  9038. }
  9039. <Vertex> 57 {
  9040. 2.1946 0.964558 -0.419752
  9041. <Normal> { 0.332376 -0.42967 -0.776521 }
  9042. }
  9043. <Vertex> 58 {
  9044. 2.4679 1.22016 -0.369135
  9045. <Normal> { 0.572388 -0.271262 -0.711224 }
  9046. }
  9047. <Vertex> 59 {
  9048. 2.60972 1.53611 -0.303332
  9049. <Normal> { 0.663827 -0.125762 -0.685516 }
  9050. }
  9051. <Vertex> 60 {
  9052. 2.70988 1.8678 -0.237529
  9053. <Normal> { 0.596697 -0.118368 -0.738039 }
  9054. }
  9055. <Vertex> 61 {
  9056. 2.85818 2.17063 -0.186912
  9057. <Normal> { 0.434978 -0.268108 -0.792814 }
  9058. }
  9059. <Vertex> 62 {
  9060. 3.14444 2.4 -0.166665
  9061. <Normal> { 0.291799 -0.406039 -0.80145 }
  9062. }
  9063. <Vertex> 63 {
  9064. 1.7 1.0125 -0.494999
  9065. <Normal> { 0.0492344 0.00093329 -0.960144 }
  9066. }
  9067. <Vertex> 64 {
  9068. 2.15046 1.1309 -0.472221
  9069. <Normal> { 0.103976 0.0247063 -0.947837 }
  9070. }
  9071. <Vertex> 65 {
  9072. 2.4037 1.34722 -0.415277
  9073. <Normal> { 0.185233 0.0861868 -0.919411 }
  9074. }
  9075. <Vertex> 66 {
  9076. 2.5375 1.62187 -0.341248
  9077. <Normal> { 0.189167 0.140144 -0.90602 }
  9078. }
  9079. <Vertex> 67 {
  9080. 2.62963 1.91528 -0.26722
  9081. <Normal> { 0.123316 0.146195 -0.924821 }
  9082. }
  9083. <Vertex> 68 {
  9084. 2.75787 2.18785 -0.210276
  9085. <Normal> { 0.0472231 0.101106 -0.947412 }
  9086. }
  9087. <Vertex> 69 {
  9088. 3 2.4 -0.187498
  9089. <Normal> { 0.00959416 0.0907494 -0.948698 }
  9090. }
  9091. <Vertex> 70 {
  9092. 1.7 1.21111 -0.439999
  9093. <Normal> { -0.0711087 0.497601 -0.818972 }
  9094. }
  9095. <Vertex> 71 {
  9096. 2.10633 1.29725 -0.419752
  9097. <Normal> { -0.138484 0.491167 -0.806377 }
  9098. }
  9099. <Vertex> 72 {
  9100. 2.33951 1.47428 -0.369135
  9101. <Normal> { -0.283912 0.443919 -0.780345 }
  9102. }
  9103. <Vertex> 73 {
  9104. 2.46528 1.70764 -0.303331
  9105. <Normal> { -0.399928 0.369876 -0.763731 }
  9106. }
  9107. <Vertex> 74 {
  9108. 2.54938 1.96276 -0.237529
  9109. <Normal> { -0.427901 0.34464 -0.772498 }
  9110. }
  9111. <Vertex> 75 {
  9112. 2.65756 2.20507 -0.186912
  9113. <Normal> { -0.375103 0.392613 -0.790898 }
  9114. }
  9115. <Vertex> 76 {
  9116. 2.85556 2.4 -0.166665
  9117. <Normal> { -0.286011 0.490463 -0.780993 }
  9118. }
  9119. <Vertex> 77 {
  9120. 1.7 1.36389 -0.274999
  9121. <Normal> { -0.136206 0.846643 -0.444427 }
  9122. }
  9123. <Vertex> 78 {
  9124. 2.07238 1.42521 -0.262345
  9125. <Normal> { -0.294852 0.799312 -0.427355 }
  9126. }
  9127. <Vertex> 79 {
  9128. 2.29012 1.57202 -0.230708
  9129. <Normal> { -0.593854 0.634543 -0.39134 }
  9130. }
  9131. <Vertex> 80 {
  9132. 2.40972 1.77361 -0.189581
  9133. <Normal> { -0.778354 0.442019 -0.369359 }
  9134. }
  9135. <Vertex> 81 {
  9136. 2.48765 1.99928 -0.148455
  9137. <Normal> { -0.798372 0.390708 -0.387044 }
  9138. }
  9139. <Vertex> 82 {
  9140. 2.5804 2.21831 -0.116819
  9141. <Normal> { -0.690214 0.51568 -0.422164 }
  9142. }
  9143. <Vertex> 83 {
  9144. 2.74444 2.4 -0.104165
  9145. <Normal> { -0.515648 0.69391 -0.426579 }
  9146. }
  9147. <Vertex> 84 {
  9148. 2.74907 2.43125 2.34761e-06
  9149. <Normal> { -0.447613 0.868818 0.00398529 }
  9150. }
  9151. <Vertex> 85 {
  9152. 2.79641 2.43193 0.101034
  9153. <Normal> { -0.387739 0.801819 0.38974 }
  9154. }
  9155. <Vertex> 86 {
  9156. 2.79259 2.45 2.36572e-06
  9157. <Normal> { -0.285338 0.94313 0.00188168 }
  9158. }
  9159. <Vertex> 87 {
  9160. 2.83978 2.45123 0.0929804
  9161. <Normal> { -0.244746 0.916815 0.247443 }
  9162. }
  9163. <Vertex> 88 {
  9164. 2.825 2.45625 2.37175e-06
  9165. <Normal> { 0.0789849 0.947027 -0.00439937 }
  9166. }
  9167. <Vertex> 89 {
  9168. 2.86968 2.45781 0.0820334
  9169. <Normal> { 0.0412076 0.943393 -0.0687169 }
  9170. }
  9171. <Vertex> 90 {
  9172. 2.84074 2.45 2.36572e-06
  9173. <Normal> { 0.34625 0.915406 -0.00918328 }
  9174. }
  9175. <Vertex> 91 {
  9176. 2.88121 2.45154 0.0702184
  9177. <Normal> { 0.390686 0.429743 -0.570344 }
  9178. }
  9179. <Vertex> 92 {
  9180. 2.83426 2.43125 2.34761e-06
  9181. <Normal> { 0.725995 -0.50668 -0.0160904 }
  9182. }
  9183. <Vertex> 93 {
  9184. 2.84074 2.45 2.36572e-06
  9185. <Normal> { 0.831631 -0.306361 -0.0108302 }
  9186. }
  9187. <Vertex> 94 {
  9188. 2.86949 2.43231 0.0595603
  9189. <Normal> { 0.516261 -0.201437 -0.670119 }
  9190. }
  9191. <Vertex> 95 {
  9192. 2.8 2.4 2.31744e-06
  9193. <Normal> { 0.620359 -0.706999 -0.0213506 }
  9194. }
  9195. <Vertex> 96 {
  9196. 2.82963 2.4 0.0520853
  9197. <Normal> { 0.457003 -0.410796 -0.654494 }
  9198. }
  9199. <Vertex> 97 {
  9200. 2.91474 2.43361 0.161576
  9201. <Normal> { -0.21863 0.63445 0.699881 }
  9202. }
  9203. <Vertex> 98 {
  9204. 2.95775 2.45432 0.14815
  9205. <Normal> { -0.14111 0.855456 0.437453 }
  9206. }
  9207. <Vertex> 99 {
  9208. 2.98137 2.46172 0.129169
  9209. <Normal> { -0.0183848 0.950041 -0.0314477 }
  9210. }
  9211. <Vertex> 100 {
  9212. 2.98237 2.4554 0.107409
  9213. <Normal> { 0.112194 0.726478 -0.559703 }
  9214. }
  9215. <Vertex> 101 {
  9216. 2.95756 2.43496 0.0856504
  9217. <Normal> { 0.150421 0.347043 -0.852112 }
  9218. }
  9219. <Vertex> 102 {
  9220. 2.9037 2.4 0.0666693
  9221. <Normal> { 0.13458 0.18192 -0.908722 }
  9222. }
  9223. <Vertex> 103 {
  9224. 3.06858 2.43581 0.181686
  9225. <Normal> { 0.00453988 0.340239 0.881528 }
  9226. }
  9227. <Vertex> 104 {
  9228. 3.11111 2.45833 0.165974
  9229. <Normal> { -0.00769734 0.746778 0.56968 }
  9230. }
  9231. <Vertex> 105 {
  9232. 3.12656 2.4668 0.142971
  9233. <Normal> { -0.0263397 0.956307 0.0442394 }
  9234. }
  9235. <Vertex> 106 {
  9236. 3.11389 2.46042 0.11528
  9237. <Normal> { -0.0379289 0.880345 -0.416906 }
  9238. }
  9239. <Vertex> 107 {
  9240. 3.07205 2.43841 0.0855064
  9241. <Normal> { -0.0584385 0.706007 -0.677952 }
  9242. }
  9243. <Vertex> 108 {
  9244. 3 2.4 0.0562523
  9245. <Normal> { -0.0739115 0.620594 -0.760955 }
  9246. }
  9247. <Vertex> 109 {
  9248. 3.22241 2.438 0.161422
  9249. <Normal> { 0.266346 -0.15323 0.849425 }
  9250. }
  9251. <Vertex> 110 {
  9252. 3.26447 2.46235 0.146916
  9253. <Normal> { 0.190435 0.493267 0.640406 }
  9254. }
  9255. <Vertex> 111 {
  9256. 3.27176 2.47187 0.125002
  9257. <Normal> { 0.0129017 0.943754 0.115363 }
  9258. }
  9259. <Vertex> 112 {
  9260. 3.2454 2.46543 0.0975334
  9261. <Normal> { -0.107412 0.935527 -0.298882 }
  9262. }
  9263. <Vertex> 113 {
  9264. 3.18654 2.44186 0.0663604
  9265. <Normal> { -0.15273 0.840266 -0.50441 }
  9266. }
  9267. <Vertex> 114 {
  9268. 3.0963 2.4 0.0333353
  9269. <Normal> { -0.167448 0.791442 -0.580318 }
  9270. }
  9271. <Vertex> 115 {
  9272. 3.34075 2.43969 0.100841
  9273. <Normal> { 0.44518 -0.650765 0.485994 }
  9274. }
  9275. <Vertex> 116 {
  9276. 3.38244 2.46543 0.0914374
  9277. <Normal> { 0.543314 0.16323 0.472421 }
  9278. }
  9279. <Vertex> 117 {
  9280. 3.38345 2.47578 0.0768254
  9281. <Normal> { 0.179503 0.836449 0.161039 }
  9282. }
  9283. <Vertex> 118 {
  9284. 3.34657 2.46929 0.0578724
  9285. <Normal> { -0.171762 0.959194 -0.182275 }
  9286. }
  9287. <Vertex> 119 {
  9288. 3.27461 2.44451 0.0354484
  9289. <Normal> { -0.242569 0.901193 -0.330351 }
  9290. }
  9291. <Vertex> 120 {
  9292. 3.17037 2.4 0.0104193
  9293. <Normal> { -0.259953 0.870761 -0.39735 }
  9294. }
  9295. <Vertex> 121 {
  9296. 3.38808 2.44036 2.35641e-06
  9297. <Normal> { 0.474971 -0.850389 0.00479855 }
  9298. }
  9299. <Vertex> 122 {
  9300. 3.42963 2.46667 2.38181e-06
  9301. <Normal> { 0.534271 -0.808745 0.00723866 }
  9302. }
  9303. <Vertex> 123 {
  9304. 3.42963 2.46667 2.38181e-06
  9305. <Normal> { 0.827126 0.3097 -0.0225574 }
  9306. }
  9307. <Vertex> 124 {
  9308. 3.42813 2.47734 2.39212e-06
  9309. <Normal> { 0.827126 0.3097 -0.0225574 }
  9310. }
  9311. <Vertex> 125 {
  9312. 3.42813 2.47734 2.39212e-06
  9313. <Normal> { -0.148966 0.986752 0.00143538 }
  9314. }
  9315. <Vertex> 126 {
  9316. 3.38704 2.47083 2.38583e-06
  9317. <Normal> { -0.219908 0.965073 -0.00342599 }
  9318. }
  9319. <Vertex> 127 {
  9320. 3.30984 2.44557 2.36144e-06
  9321. <Normal> { -0.318725 0.924458 -0.0292206 }
  9322. }
  9323. <Vertex> 128 {
  9324. 3.2 2.4 2.31744e-06
  9325. <Normal> { -0.3466 0.905522 -0.0501539 }
  9326. }
  9327. <Vertex> 129 {
  9328. 3.34075 2.43969 -0.101078
  9329. <Normal> { 0.423734 -0.712779 -0.458312 }
  9330. }
  9331. <Vertex> 130 {
  9332. 3.38244 2.46543 -0.0933616
  9333. <Normal> { 0.510043 -0.183845 -0.596441 }
  9334. }
  9335. <Vertex> 131 {
  9336. 3.38345 2.47578 -0.0833306
  9337. <Normal> { 0.247471 0.674761 -0.317307 }
  9338. }
  9339. <Vertex> 132 {
  9340. 3.34657 2.46929 -0.0733006
  9341. <Normal> { -0.205752 0.936195 0.220921 }
  9342. }
  9343. <Vertex> 133 {
  9344. 3.27461 2.44451 -0.0655836
  9345. <Normal> { -0.304762 0.856555 0.35665 }
  9346. }
  9347. <Vertex> 134 {
  9348. 3.17037 2.4 -0.0624977
  9349. <Normal> { -0.335869 0.820662 0.399523 }
  9350. }
  9351. <Vertex> 135 {
  9352. 3.22241 2.438 -0.161726
  9353. <Normal> { 0.25688 -0.255916 -0.837784 }
  9354. }
  9355. <Vertex> 136 {
  9356. 3.26447 2.46235 -0.149381
  9357. <Normal> { 0.202862 0.321911 -0.785573 }
  9358. }
  9359. <Vertex> 137 {
  9360. 3.27176 2.47187 -0.133331
  9361. <Normal> { 0.0424235 0.855909 -0.255159 }
  9362. }
  9363. <Vertex> 138 {
  9364. 3.2454 2.46543 -0.117282
  9365. <Normal> { -0.133189 0.859392 0.422424 }
  9366. }
  9367. <Vertex> 139 {
  9368. 3.18654 2.44186 -0.104936
  9369. <Normal> { -0.190029 0.64997 0.689537 }
  9370. }
  9371. <Vertex> 140 {
  9372. 3.0963 2.4 -0.0999977
  9373. <Normal> { -0.206108 0.54758 0.768344 }
  9374. }
  9375. <Vertex> 141 {
  9376. 3.06858 2.43581 -0.181942
  9377. <Normal> { 0.00599053 0.291241 -0.896028 }
  9378. }
  9379. <Vertex> 142 {
  9380. 3.11111 2.45833 -0.168054
  9381. <Normal> { -0.00347634 0.67753 -0.648722 }
  9382. }
  9383. <Vertex> 143 {
  9384. 3.12656 2.4668 -0.149998
  9385. <Normal> { -0.0219725 0.918962 -0.0709038 }
  9386. }
  9387. <Vertex> 144 {
  9388. 3.11389 2.46042 -0.131942
  9389. <Normal> { -0.0205267 0.742474 0.566485 }
  9390. }
  9391. <Vertex> 145 {
  9392. 3.07205 2.43841 -0.118054
  9393. <Normal> { -0.00591868 0.339274 0.891889 }
  9394. }
  9395. <Vertex> 146 {
  9396. 3 2.4 -0.112498
  9397. <Normal> { -0.000584092 0.143665 0.957853 }
  9398. }
  9399. <Vertex> 147 {
  9400. 2.91474 2.43361 -0.161726
  9401. <Normal> { -0.212003 0.647632 -0.689856 }
  9402. }
  9403. <Vertex> 148 {
  9404. 2.95775 2.45432 -0.149381
  9405. <Normal> { -0.144242 0.844918 -0.460829 }
  9406. }
  9407. <Vertex> 149 {
  9408. 2.98137 2.46172 -0.133331
  9409. <Normal> { -0.0188705 0.938241 0.0200328 }
  9410. }
  9411. <Vertex> 150 {
  9412. 2.98237 2.4554 -0.117282
  9413. <Normal> { 0.153441 0.587671 0.629214 }
  9414. }
  9415. <Vertex> 151 {
  9416. 2.95756 2.43496 -0.104936
  9417. <Normal> { 0.242493 -0.0129757 0.904685 }
  9418. }
  9419. <Vertex> 152 {
  9420. 2.9037 2.4 -0.0999977
  9421. <Normal> { 0.244569 -0.267717 0.897586 }
  9422. }
  9423. <Vertex> 153 {
  9424. 2.79641 2.43193 -0.101078
  9425. <Normal> { -0.371753 0.821611 -0.372473 }
  9426. }
  9427. <Vertex> 154 {
  9428. 2.83978 2.45123 -0.0933616
  9429. <Normal> { -0.240831 0.921094 -0.244446 }
  9430. }
  9431. <Vertex> 155 {
  9432. 2.86968 2.45781 -0.0833306
  9433. <Normal> { 0.0331643 0.947061 0.0576887 }
  9434. }
  9435. <Vertex> 156 {
  9436. 2.88121 2.45154 -0.0733006
  9437. <Normal> { 0.229597 0.924211 0.275919 }
  9438. }
  9439. <Vertex> 157 {
  9440. 2.88121 2.45154 -0.0733006
  9441. <Normal> { 0.613037 -0.125884 0.683736 }
  9442. }
  9443. <Vertex> 158 {
  9444. 2.86949 2.43231 -0.0655837
  9445. <Normal> { 0.552852 -0.359511 0.622272 }
  9446. }
  9447. <Vertex> 159 {
  9448. 2.82963 2.4 -0.0624977
  9449. <Normal> { 0.492667 -0.593138 0.560808 }
  9450. }
  9451. }
  9452. <Polygon> {
  9453. <RGBA> { 0.8 0.8 0.8 1 }
  9454. <VertexRef> { 0 1 2 3 <Ref> { spout } }
  9455. }
  9456. <Polygon> {
  9457. <RGBA> { 0.8 0.8 0.8 1 }
  9458. <VertexRef> { 4 0 3 5 <Ref> { spout } }
  9459. }
  9460. <Polygon> {
  9461. <RGBA> { 0.8 0.8 0.8 1 }
  9462. <VertexRef> { 6 4 5 7 <Ref> { spout } }
  9463. }
  9464. <Polygon> {
  9465. <RGBA> { 0.8 0.8 0.8 1 }
  9466. <VertexRef> { 8 6 7 9 <Ref> { spout } }
  9467. }
  9468. <Polygon> {
  9469. <RGBA> { 0.8 0.8 0.8 1 }
  9470. <VertexRef> { 10 8 9 11 <Ref> { spout } }
  9471. }
  9472. <Polygon> {
  9473. <RGBA> { 0.8 0.8 0.8 1 }
  9474. <VertexRef> { 12 10 11 13 <Ref> { spout } }
  9475. }
  9476. <Polygon> {
  9477. <RGBA> { 0.8 0.8 0.8 1 }
  9478. <VertexRef> { 3 2 14 15 <Ref> { spout } }
  9479. }
  9480. <Polygon> {
  9481. <RGBA> { 0.8 0.8 0.8 1 }
  9482. <VertexRef> { 5 3 15 16 <Ref> { spout } }
  9483. }
  9484. <Polygon> {
  9485. <RGBA> { 0.8 0.8 0.8 1 }
  9486. <VertexRef> { 7 5 16 17 <Ref> { spout } }
  9487. }
  9488. <Polygon> {
  9489. <RGBA> { 0.8 0.8 0.8 1 }
  9490. <VertexRef> { 9 7 17 18 <Ref> { spout } }
  9491. }
  9492. <Polygon> {
  9493. <RGBA> { 0.8 0.8 0.8 1 }
  9494. <VertexRef> { 11 9 18 19 <Ref> { spout } }
  9495. }
  9496. <Polygon> {
  9497. <RGBA> { 0.8 0.8 0.8 1 }
  9498. <VertexRef> { 13 11 19 20 <Ref> { spout } }
  9499. }
  9500. <Polygon> {
  9501. <RGBA> { 0.8 0.8 0.8 1 }
  9502. <VertexRef> { 15 14 21 22 <Ref> { spout } }
  9503. }
  9504. <Polygon> {
  9505. <RGBA> { 0.8 0.8 0.8 1 }
  9506. <VertexRef> { 16 15 22 23 <Ref> { spout } }
  9507. }
  9508. <Polygon> {
  9509. <RGBA> { 0.8 0.8 0.8 1 }
  9510. <VertexRef> { 17 16 23 24 <Ref> { spout } }
  9511. }
  9512. <Polygon> {
  9513. <RGBA> { 0.8 0.8 0.8 1 }
  9514. <VertexRef> { 18 17 24 25 <Ref> { spout } }
  9515. }
  9516. <Polygon> {
  9517. <RGBA> { 0.8 0.8 0.8 1 }
  9518. <VertexRef> { 19 18 25 26 <Ref> { spout } }
  9519. }
  9520. <Polygon> {
  9521. <RGBA> { 0.8 0.8 0.8 1 }
  9522. <VertexRef> { 20 19 26 27 <Ref> { spout } }
  9523. }
  9524. <Polygon> {
  9525. <RGBA> { 0.8 0.8 0.8 1 }
  9526. <VertexRef> { 22 21 28 29 <Ref> { spout } }
  9527. }
  9528. <Polygon> {
  9529. <RGBA> { 0.8 0.8 0.8 1 }
  9530. <VertexRef> { 23 22 29 30 <Ref> { spout } }
  9531. }
  9532. <Polygon> {
  9533. <RGBA> { 0.8 0.8 0.8 1 }
  9534. <VertexRef> { 24 23 30 31 <Ref> { spout } }
  9535. }
  9536. <Polygon> {
  9537. <RGBA> { 0.8 0.8 0.8 1 }
  9538. <VertexRef> { 25 24 31 32 <Ref> { spout } }
  9539. }
  9540. <Polygon> {
  9541. <RGBA> { 0.8 0.8 0.8 1 }
  9542. <VertexRef> { 26 25 32 33 <Ref> { spout } }
  9543. }
  9544. <Polygon> {
  9545. <RGBA> { 0.8 0.8 0.8 1 }
  9546. <VertexRef> { 27 26 33 34 <Ref> { spout } }
  9547. }
  9548. <Polygon> {
  9549. <RGBA> { 0.8 0.8 0.8 1 }
  9550. <VertexRef> { 29 28 35 36 <Ref> { spout } }
  9551. }
  9552. <Polygon> {
  9553. <RGBA> { 0.8 0.8 0.8 1 }
  9554. <VertexRef> { 30 29 36 37 <Ref> { spout } }
  9555. }
  9556. <Polygon> {
  9557. <RGBA> { 0.8 0.8 0.8 1 }
  9558. <VertexRef> { 31 30 37 38 <Ref> { spout } }
  9559. }
  9560. <Polygon> {
  9561. <RGBA> { 0.8 0.8 0.8 1 }
  9562. <VertexRef> { 32 31 38 39 <Ref> { spout } }
  9563. }
  9564. <Polygon> {
  9565. <RGBA> { 0.8 0.8 0.8 1 }
  9566. <VertexRef> { 33 32 39 40 <Ref> { spout } }
  9567. }
  9568. <Polygon> {
  9569. <RGBA> { 0.8 0.8 0.8 1 }
  9570. <VertexRef> { 34 33 40 41 <Ref> { spout } }
  9571. }
  9572. <Polygon> {
  9573. <RGBA> { 0.8 0.8 0.8 1 }
  9574. <VertexRef> { 36 35 42 43 <Ref> { spout } }
  9575. }
  9576. <Polygon> {
  9577. <RGBA> { 0.8 0.8 0.8 1 }
  9578. <VertexRef> { 37 36 43 44 <Ref> { spout } }
  9579. }
  9580. <Polygon> {
  9581. <RGBA> { 0.8 0.8 0.8 1 }
  9582. <VertexRef> { 38 37 44 45 <Ref> { spout } }
  9583. }
  9584. <Polygon> {
  9585. <RGBA> { 0.8 0.8 0.8 1 }
  9586. <VertexRef> { 39 38 45 46 <Ref> { spout } }
  9587. }
  9588. <Polygon> {
  9589. <RGBA> { 0.8 0.8 0.8 1 }
  9590. <VertexRef> { 40 39 46 47 <Ref> { spout } }
  9591. }
  9592. <Polygon> {
  9593. <RGBA> { 0.8 0.8 0.8 1 }
  9594. <VertexRef> { 41 40 47 48 <Ref> { spout } }
  9595. }
  9596. <Polygon> {
  9597. <RGBA> { 0.8 0.8 0.8 1 }
  9598. <VertexRef> { 43 42 49 50 <Ref> { spout } }
  9599. }
  9600. <Polygon> {
  9601. <RGBA> { 0.8 0.8 0.8 1 }
  9602. <VertexRef> { 44 43 50 51 <Ref> { spout } }
  9603. }
  9604. <Polygon> {
  9605. <RGBA> { 0.8 0.8 0.8 1 }
  9606. <VertexRef> { 45 44 51 52 <Ref> { spout } }
  9607. }
  9608. <Polygon> {
  9609. <RGBA> { 0.8 0.8 0.8 1 }
  9610. <VertexRef> { 46 45 52 53 <Ref> { spout } }
  9611. }
  9612. <Polygon> {
  9613. <RGBA> { 0.8 0.8 0.8 1 }
  9614. <VertexRef> { 47 46 53 54 <Ref> { spout } }
  9615. }
  9616. <Polygon> {
  9617. <RGBA> { 0.8 0.8 0.8 1 }
  9618. <VertexRef> { 48 47 54 55 <Ref> { spout } }
  9619. }
  9620. <Polygon> {
  9621. <RGBA> { 0.8 0.8 0.8 1 }
  9622. <VertexRef> { 50 49 56 57 <Ref> { spout } }
  9623. }
  9624. <Polygon> {
  9625. <RGBA> { 0.8 0.8 0.8 1 }
  9626. <VertexRef> { 51 50 57 58 <Ref> { spout } }
  9627. }
  9628. <Polygon> {
  9629. <RGBA> { 0.8 0.8 0.8 1 }
  9630. <VertexRef> { 52 51 58 59 <Ref> { spout } }
  9631. }
  9632. <Polygon> {
  9633. <RGBA> { 0.8 0.8 0.8 1 }
  9634. <VertexRef> { 53 52 59 60 <Ref> { spout } }
  9635. }
  9636. <Polygon> {
  9637. <RGBA> { 0.8 0.8 0.8 1 }
  9638. <VertexRef> { 54 53 60 61 <Ref> { spout } }
  9639. }
  9640. <Polygon> {
  9641. <RGBA> { 0.8 0.8 0.8 1 }
  9642. <VertexRef> { 55 54 61 62 <Ref> { spout } }
  9643. }
  9644. <Polygon> {
  9645. <RGBA> { 0.8 0.8 0.8 1 }
  9646. <VertexRef> { 57 56 63 64 <Ref> { spout } }
  9647. }
  9648. <Polygon> {
  9649. <RGBA> { 0.8 0.8 0.8 1 }
  9650. <VertexRef> { 58 57 64 65 <Ref> { spout } }
  9651. }
  9652. <Polygon> {
  9653. <RGBA> { 0.8 0.8 0.8 1 }
  9654. <VertexRef> { 59 58 65 66 <Ref> { spout } }
  9655. }
  9656. <Polygon> {
  9657. <RGBA> { 0.8 0.8 0.8 1 }
  9658. <VertexRef> { 60 59 66 67 <Ref> { spout } }
  9659. }
  9660. <Polygon> {
  9661. <RGBA> { 0.8 0.8 0.8 1 }
  9662. <VertexRef> { 61 60 67 68 <Ref> { spout } }
  9663. }
  9664. <Polygon> {
  9665. <RGBA> { 0.8 0.8 0.8 1 }
  9666. <VertexRef> { 62 61 68 69 <Ref> { spout } }
  9667. }
  9668. <Polygon> {
  9669. <RGBA> { 0.8 0.8 0.8 1 }
  9670. <VertexRef> { 64 63 70 71 <Ref> { spout } }
  9671. }
  9672. <Polygon> {
  9673. <RGBA> { 0.8 0.8 0.8 1 }
  9674. <VertexRef> { 65 64 71 72 <Ref> { spout } }
  9675. }
  9676. <Polygon> {
  9677. <RGBA> { 0.8 0.8 0.8 1 }
  9678. <VertexRef> { 66 65 72 73 <Ref> { spout } }
  9679. }
  9680. <Polygon> {
  9681. <RGBA> { 0.8 0.8 0.8 1 }
  9682. <VertexRef> { 67 66 73 74 <Ref> { spout } }
  9683. }
  9684. <Polygon> {
  9685. <RGBA> { 0.8 0.8 0.8 1 }
  9686. <VertexRef> { 68 67 74 75 <Ref> { spout } }
  9687. }
  9688. <Polygon> {
  9689. <RGBA> { 0.8 0.8 0.8 1 }
  9690. <VertexRef> { 69 68 75 76 <Ref> { spout } }
  9691. }
  9692. <Polygon> {
  9693. <RGBA> { 0.8 0.8 0.8 1 }
  9694. <VertexRef> { 71 70 77 78 <Ref> { spout } }
  9695. }
  9696. <Polygon> {
  9697. <RGBA> { 0.8 0.8 0.8 1 }
  9698. <VertexRef> { 72 71 78 79 <Ref> { spout } }
  9699. }
  9700. <Polygon> {
  9701. <RGBA> { 0.8 0.8 0.8 1 }
  9702. <VertexRef> { 73 72 79 80 <Ref> { spout } }
  9703. }
  9704. <Polygon> {
  9705. <RGBA> { 0.8 0.8 0.8 1 }
  9706. <VertexRef> { 74 73 80 81 <Ref> { spout } }
  9707. }
  9708. <Polygon> {
  9709. <RGBA> { 0.8 0.8 0.8 1 }
  9710. <VertexRef> { 75 74 81 82 <Ref> { spout } }
  9711. }
  9712. <Polygon> {
  9713. <RGBA> { 0.8 0.8 0.8 1 }
  9714. <VertexRef> { 76 75 82 83 <Ref> { spout } }
  9715. }
  9716. <Polygon> {
  9717. <RGBA> { 0.8 0.8 0.8 1 }
  9718. <VertexRef> { 78 77 1 0 <Ref> { spout } }
  9719. }
  9720. <Polygon> {
  9721. <RGBA> { 0.8 0.8 0.8 1 }
  9722. <VertexRef> { 79 78 0 4 <Ref> { spout } }
  9723. }
  9724. <Polygon> {
  9725. <RGBA> { 0.8 0.8 0.8 1 }
  9726. <VertexRef> { 80 79 4 6 <Ref> { spout } }
  9727. }
  9728. <Polygon> {
  9729. <RGBA> { 0.8 0.8 0.8 1 }
  9730. <VertexRef> { 81 80 6 8 <Ref> { spout } }
  9731. }
  9732. <Polygon> {
  9733. <RGBA> { 0.8 0.8 0.8 1 }
  9734. <VertexRef> { 82 81 8 10 <Ref> { spout } }
  9735. }
  9736. <Polygon> {
  9737. <RGBA> { 0.8 0.8 0.8 1 }
  9738. <VertexRef> { 83 82 10 12 <Ref> { spout } }
  9739. }
  9740. <Polygon> {
  9741. <RGBA> { 0.8 0.8 0.8 1 }
  9742. <VertexRef> { 84 12 13 85 <Ref> { spout } }
  9743. }
  9744. <Polygon> {
  9745. <RGBA> { 0.8 0.8 0.8 1 }
  9746. <VertexRef> { 86 84 85 87 <Ref> { spout } }
  9747. }
  9748. <Polygon> {
  9749. <RGBA> { 0.8 0.8 0.8 1 }
  9750. <VertexRef> { 88 86 87 89 <Ref> { spout } }
  9751. }
  9752. <Polygon> {
  9753. <RGBA> { 0.8 0.8 0.8 1 }
  9754. <VertexRef> { 90 88 89 91 <Ref> { spout } }
  9755. }
  9756. <Polygon> {
  9757. <RGBA> { 0.8 0.8 0.8 1 }
  9758. <VertexRef> { 92 93 91 94 <Ref> { spout } }
  9759. }
  9760. <Polygon> {
  9761. <RGBA> { 0.8 0.8 0.8 1 }
  9762. <VertexRef> { 95 92 94 96 <Ref> { spout } }
  9763. }
  9764. <Polygon> {
  9765. <RGBA> { 0.8 0.8 0.8 1 }
  9766. <VertexRef> { 85 13 20 97 <Ref> { spout } }
  9767. }
  9768. <Polygon> {
  9769. <RGBA> { 0.8 0.8 0.8 1 }
  9770. <VertexRef> { 87 85 97 98 <Ref> { spout } }
  9771. }
  9772. <Polygon> {
  9773. <RGBA> { 0.8 0.8 0.8 1 }
  9774. <VertexRef> { 89 87 98 99 <Ref> { spout } }
  9775. }
  9776. <Polygon> {
  9777. <RGBA> { 0.8 0.8 0.8 1 }
  9778. <VertexRef> { 91 89 99 100 <Ref> { spout } }
  9779. }
  9780. <Polygon> {
  9781. <RGBA> { 0.8 0.8 0.8 1 }
  9782. <VertexRef> { 94 91 100 101 <Ref> { spout } }
  9783. }
  9784. <Polygon> {
  9785. <RGBA> { 0.8 0.8 0.8 1 }
  9786. <VertexRef> { 96 94 101 102 <Ref> { spout } }
  9787. }
  9788. <Polygon> {
  9789. <RGBA> { 0.8 0.8 0.8 1 }
  9790. <VertexRef> { 97 20 27 103 <Ref> { spout } }
  9791. }
  9792. <Polygon> {
  9793. <RGBA> { 0.8 0.8 0.8 1 }
  9794. <VertexRef> { 98 97 103 104 <Ref> { spout } }
  9795. }
  9796. <Polygon> {
  9797. <RGBA> { 0.8 0.8 0.8 1 }
  9798. <VertexRef> { 99 98 104 105 <Ref> { spout } }
  9799. }
  9800. <Polygon> {
  9801. <RGBA> { 0.8 0.8 0.8 1 }
  9802. <VertexRef> { 100 99 105 106 <Ref> { spout } }
  9803. }
  9804. <Polygon> {
  9805. <RGBA> { 0.8 0.8 0.8 1 }
  9806. <VertexRef> { 101 100 106 107 <Ref> { spout } }
  9807. }
  9808. <Polygon> {
  9809. <RGBA> { 0.8 0.8 0.8 1 }
  9810. <VertexRef> { 102 101 107 108 <Ref> { spout } }
  9811. }
  9812. <Polygon> {
  9813. <RGBA> { 0.8 0.8 0.8 1 }
  9814. <VertexRef> { 103 27 34 109 <Ref> { spout } }
  9815. }
  9816. <Polygon> {
  9817. <RGBA> { 0.8 0.8 0.8 1 }
  9818. <VertexRef> { 104 103 109 110 <Ref> { spout } }
  9819. }
  9820. <Polygon> {
  9821. <RGBA> { 0.8 0.8 0.8 1 }
  9822. <VertexRef> { 105 104 110 111 <Ref> { spout } }
  9823. }
  9824. <Polygon> {
  9825. <RGBA> { 0.8 0.8 0.8 1 }
  9826. <VertexRef> { 106 105 111 112 <Ref> { spout } }
  9827. }
  9828. <Polygon> {
  9829. <RGBA> { 0.8 0.8 0.8 1 }
  9830. <VertexRef> { 107 106 112 113 <Ref> { spout } }
  9831. }
  9832. <Polygon> {
  9833. <RGBA> { 0.8 0.8 0.8 1 }
  9834. <VertexRef> { 108 107 113 114 <Ref> { spout } }
  9835. }
  9836. <Polygon> {
  9837. <RGBA> { 0.8 0.8 0.8 1 }
  9838. <VertexRef> { 109 34 41 115 <Ref> { spout } }
  9839. }
  9840. <Polygon> {
  9841. <RGBA> { 0.8 0.8 0.8 1 }
  9842. <VertexRef> { 110 109 115 116 <Ref> { spout } }
  9843. }
  9844. <Polygon> {
  9845. <RGBA> { 0.8 0.8 0.8 1 }
  9846. <VertexRef> { 111 110 116 117 <Ref> { spout } }
  9847. }
  9848. <Polygon> {
  9849. <RGBA> { 0.8 0.8 0.8 1 }
  9850. <VertexRef> { 112 111 117 118 <Ref> { spout } }
  9851. }
  9852. <Polygon> {
  9853. <RGBA> { 0.8 0.8 0.8 1 }
  9854. <VertexRef> { 113 112 118 119 <Ref> { spout } }
  9855. }
  9856. <Polygon> {
  9857. <RGBA> { 0.8 0.8 0.8 1 }
  9858. <VertexRef> { 114 113 119 120 <Ref> { spout } }
  9859. }
  9860. <Polygon> {
  9861. <RGBA> { 0.8 0.8 0.8 1 }
  9862. <VertexRef> { 115 41 48 121 <Ref> { spout } }
  9863. }
  9864. <Polygon> {
  9865. <RGBA> { 0.8 0.8 0.8 1 }
  9866. <VertexRef> { 116 115 121 122 <Ref> { spout } }
  9867. }
  9868. <Polygon> {
  9869. <RGBA> { 0.8 0.8 0.8 1 }
  9870. <VertexRef> { 117 116 123 124 <Ref> { spout } }
  9871. }
  9872. <Polygon> {
  9873. <RGBA> { 0.8 0.8 0.8 1 }
  9874. <VertexRef> { 118 117 125 126 <Ref> { spout } }
  9875. }
  9876. <Polygon> {
  9877. <RGBA> { 0.8 0.8 0.8 1 }
  9878. <VertexRef> { 119 118 126 127 <Ref> { spout } }
  9879. }
  9880. <Polygon> {
  9881. <RGBA> { 0.8 0.8 0.8 1 }
  9882. <VertexRef> { 120 119 127 128 <Ref> { spout } }
  9883. }
  9884. <Polygon> {
  9885. <RGBA> { 0.8 0.8 0.8 1 }
  9886. <VertexRef> { 121 48 55 129 <Ref> { spout } }
  9887. }
  9888. <Polygon> {
  9889. <RGBA> { 0.8 0.8 0.8 1 }
  9890. <VertexRef> { 122 121 129 130 <Ref> { spout } }
  9891. }
  9892. <Polygon> {
  9893. <RGBA> { 0.8 0.8 0.8 1 }
  9894. <VertexRef> { 124 123 130 131 <Ref> { spout } }
  9895. }
  9896. <Polygon> {
  9897. <RGBA> { 0.8 0.8 0.8 1 }
  9898. <VertexRef> { 126 125 131 132 <Ref> { spout } }
  9899. }
  9900. <Polygon> {
  9901. <RGBA> { 0.8 0.8 0.8 1 }
  9902. <VertexRef> { 127 126 132 133 <Ref> { spout } }
  9903. }
  9904. <Polygon> {
  9905. <RGBA> { 0.8 0.8 0.8 1 }
  9906. <VertexRef> { 128 127 133 134 <Ref> { spout } }
  9907. }
  9908. <Polygon> {
  9909. <RGBA> { 0.8 0.8 0.8 1 }
  9910. <VertexRef> { 129 55 62 135 <Ref> { spout } }
  9911. }
  9912. <Polygon> {
  9913. <RGBA> { 0.8 0.8 0.8 1 }
  9914. <VertexRef> { 130 129 135 136 <Ref> { spout } }
  9915. }
  9916. <Polygon> {
  9917. <RGBA> { 0.8 0.8 0.8 1 }
  9918. <VertexRef> { 131 130 136 137 <Ref> { spout } }
  9919. }
  9920. <Polygon> {
  9921. <RGBA> { 0.8 0.8 0.8 1 }
  9922. <VertexRef> { 132 131 137 138 <Ref> { spout } }
  9923. }
  9924. <Polygon> {
  9925. <RGBA> { 0.8 0.8 0.8 1 }
  9926. <VertexRef> { 133 132 138 139 <Ref> { spout } }
  9927. }
  9928. <Polygon> {
  9929. <RGBA> { 0.8 0.8 0.8 1 }
  9930. <VertexRef> { 134 133 139 140 <Ref> { spout } }
  9931. }
  9932. <Polygon> {
  9933. <RGBA> { 0.8 0.8 0.8 1 }
  9934. <VertexRef> { 135 62 69 141 <Ref> { spout } }
  9935. }
  9936. <Polygon> {
  9937. <RGBA> { 0.8 0.8 0.8 1 }
  9938. <VertexRef> { 136 135 141 142 <Ref> { spout } }
  9939. }
  9940. <Polygon> {
  9941. <RGBA> { 0.8 0.8 0.8 1 }
  9942. <VertexRef> { 137 136 142 143 <Ref> { spout } }
  9943. }
  9944. <Polygon> {
  9945. <RGBA> { 0.8 0.8 0.8 1 }
  9946. <VertexRef> { 138 137 143 144 <Ref> { spout } }
  9947. }
  9948. <Polygon> {
  9949. <RGBA> { 0.8 0.8 0.8 1 }
  9950. <VertexRef> { 139 138 144 145 <Ref> { spout } }
  9951. }
  9952. <Polygon> {
  9953. <RGBA> { 0.8 0.8 0.8 1 }
  9954. <VertexRef> { 140 139 145 146 <Ref> { spout } }
  9955. }
  9956. <Polygon> {
  9957. <RGBA> { 0.8 0.8 0.8 1 }
  9958. <VertexRef> { 141 69 76 147 <Ref> { spout } }
  9959. }
  9960. <Polygon> {
  9961. <RGBA> { 0.8 0.8 0.8 1 }
  9962. <VertexRef> { 142 141 147 148 <Ref> { spout } }
  9963. }
  9964. <Polygon> {
  9965. <RGBA> { 0.8 0.8 0.8 1 }
  9966. <VertexRef> { 143 142 148 149 <Ref> { spout } }
  9967. }
  9968. <Polygon> {
  9969. <RGBA> { 0.8 0.8 0.8 1 }
  9970. <VertexRef> { 144 143 149 150 <Ref> { spout } }
  9971. }
  9972. <Polygon> {
  9973. <RGBA> { 0.8 0.8 0.8 1 }
  9974. <VertexRef> { 145 144 150 151 <Ref> { spout } }
  9975. }
  9976. <Polygon> {
  9977. <RGBA> { 0.8 0.8 0.8 1 }
  9978. <VertexRef> { 146 145 151 152 <Ref> { spout } }
  9979. }
  9980. <Polygon> {
  9981. <RGBA> { 0.8 0.8 0.8 1 }
  9982. <VertexRef> { 147 76 83 153 <Ref> { spout } }
  9983. }
  9984. <Polygon> {
  9985. <RGBA> { 0.8 0.8 0.8 1 }
  9986. <VertexRef> { 148 147 153 154 <Ref> { spout } }
  9987. }
  9988. <Polygon> {
  9989. <RGBA> { 0.8 0.8 0.8 1 }
  9990. <VertexRef> { 149 148 154 155 <Ref> { spout } }
  9991. }
  9992. <Polygon> {
  9993. <RGBA> { 0.8 0.8 0.8 1 }
  9994. <VertexRef> { 150 149 155 156 <Ref> { spout } }
  9995. }
  9996. <Polygon> {
  9997. <RGBA> { 0.8 0.8 0.8 1 }
  9998. <VertexRef> { 151 150 157 158 <Ref> { spout } }
  9999. }
  10000. <Polygon> {
  10001. <RGBA> { 0.8 0.8 0.8 1 }
  10002. <VertexRef> { 152 151 158 159 <Ref> { spout } }
  10003. }
  10004. <Polygon> {
  10005. <RGBA> { 0.8 0.8 0.8 1 }
  10006. <VertexRef> { 153 83 12 84 <Ref> { spout } }
  10007. }
  10008. <Polygon> {
  10009. <RGBA> { 0.8 0.8 0.8 1 }
  10010. <VertexRef> { 154 153 84 86 <Ref> { spout } }
  10011. }
  10012. <Polygon> {
  10013. <RGBA> { 0.8 0.8 0.8 1 }
  10014. <VertexRef> { 155 154 86 88 <Ref> { spout } }
  10015. }
  10016. <Polygon> {
  10017. <RGBA> { 0.8 0.8 0.8 1 }
  10018. <VertexRef> { 156 155 88 90 <Ref> { spout } }
  10019. }
  10020. <Polygon> {
  10021. <RGBA> { 0.8 0.8 0.8 1 }
  10022. <VertexRef> { 158 157 93 92 <Ref> { spout } }
  10023. }
  10024. <Polygon> {
  10025. <RGBA> { 0.8 0.8 0.8 1 }
  10026. <VertexRef> { 159 158 92 95 <Ref> { spout } }
  10027. }
  10028. }
  10029. }