// Script to plot South West Wyoming and associated events in th ANF catalog from Nov 2007 to May 2009 // include needed packages, mostly for background #include "colors.inc" #include "textures.inc" #include "glass.inc" #include "metals.inc" #include "golds.inc" #include "stones.inc" #include "woods.inc" #include "shapes.inc" #include "shapes2.inc" #include "functions.inc" #include "math.inc" #include "transforms.inc" // set camera attributes camera { location<.5,1,.2> look_at <.5,0,.36> rotate <-15,0,0> } light_source { <0,10,0> color rgb <1,1,1> } // Declare local variables #declare tmin = 1194739200.0; //max timestamp in file #declare tmax = 1241395200.0; //min time stamp in file #declare pheight= .02; // mine boundary prism heights #declare perTrans = 0.65; // prism transparency #declare HFtrans = 1; // Height field transparency #declare Zscale = 7; // Z scale exageration #declare Texture004 = texture // Color scale for height field { pigment { gradient <0,1,0> // this line directs the color map to be gradient in the "y" or vertical direction. color_map { [0.00 color rgbf<0.039, 0.455, 0.149,HFtrans>] [0.22 color rgbf<0.027, 0.596, 0.180,HFtrans>] [0.44 color rgbf<0.427, 0.420, 0.224,HFtrans>] [0.54 color rgbf<0.427, 0.420, 0.224,HFtrans>] [0.74 color rgbf<0.514, 0.506, 0.388,HFtrans>] [0.80 color rgbf<0.596, 0.627, 0.651,HFtrans>] [1.00 color rgbf<0.910, 0.929, 1.000,HFtrans>] } } } // Here I have just used insert:ready-made scenes:Basic Scene 02 // fog fog{fog_type 2 distance 50 color White fog_offset 0.1 fog_alt 2.0 turbulence 0.8} // ground ------------------------------------------------------------------ plane{ <0,1,0>, 0 texture{ pigment{ color rgb <0.825,0.57,0.35>} normal { bumps 0.75 scale 0.025 } finish { phong 0.1 } } // end of texture } // end of plane // read in height field and scale height_field { gif "SWyo.gif" smooth texture{Texture004 finish{phong 0.08} pigment{ lambda 2 } } scale<1,.009126205*Zscale,0.8853515963054458> } //Open station coordinate files and plot as cylinders #fopen MyFile "POVsta.csv" read #while (defined(MyFile)) #read (MyFile,Var1,Var2,Var3) cylinder { ,, 0.017 texture { pigment { color rgb<1,1,1> } //normal { bumps 0.5 scale <0.005,0.25,0.005>} finish { phong 0.7 reflection{ 0.00 metallic 0.00} } } // end of texture scale <1,1,1> rotate<0,0,0> translate<0,0,0> } // end of cylinder ------------------------------------- #end //Open event files and plot if clock variable falls into some normalized time range #fopen MyFile "POVents.csv" read #while (defined(MyFile)) #read (MyFile,Var1,Var2,Var3,Mag,Time) #declare CurT= (Time-tmin)/(tmax-tmin); #debug concat("CurT",str(CurT,5,2)," clock ",str(clock,5,2)," Time " str(Time,5,2), "\n") #if ((CurT > clock) & (CurT < clock+.2)) sphere { , Mag*.012*(sin(pi*5*(-clock+CurT))) texture { pigment{ color rgbt<1.00, 0.55, 0.00,0.8*(1-(sin(pi*5*(-clock+CurT))))>} finish { phong 9.0 reflection 0.0} } //end of texture scale<1,1,1> rotate<0,0,0> translate<0,0,0> } //end of sphere ------------- #end #end //Plot mine permit boundaries as spheres prism { linear_spline 0,pheight,1491 <0.916522057413,0.514380289354> <0.916380569865,0.514247439137><0.916365936016,0.514226992857><0.916346463016,0.514207318416><0.916319698245,0.51419066282><0.916286349162,0.514178775711> <0.916247709075,0.514174799089><0.916205549196,0.5141786926><0.916160838413,0.514189769552><0.916098911841,0.514212199239><0.915992839716,0.514263934313> <0.91588389997,0.514321218825><0.915772079283,0.514380853039><0.915663770504,0.514440336115><0.915558697552,0.514496483131><0.915455953185,0.514537774844> <0.915359133868,0.514550962678><0.915264728893,0.5145336894><0.915175777628,0.514498645299><0.915116934718,0.514471607399><0.915024285025,0.514427684832> <0.914924166554,0.514378621213><0.914827841592,0.514329881449><0.914733182409,0.514276408941><0.914632950137,0.514209340212><0.914532440174,0.514132941667> <0.914437192156,0.514054637419><0.914348015689,0.5139797506><0.914253131367,0.513901290585><0.91415670885,0.513819005103><0.914061463501,0.513729382057> <0.913965268315,0.51363104078><0.913865711233,0.513525936719><0.91376749133,0.513419823843><0.913668980755,0.513314757017><0.913565319865,0.513212281636> <0.913452909124,0.513118351639><0.913330997322,0.513042777076><0.913205450507,0.512985630177><0.913079953823,0.512935246743><0.912952797374,0.512884391674> <0.912826715533,0.512828832094><0.912703183451,0.512771045862><0.912581856057,0.512707964303><0.912460933857,0.512641935013><0.912346443715,0.512579345521> <0.912239535836,0.512520090634><0.912129027207,0.512458140488><0.912009488265,0.512391791394><0.911929396539,0.512347350288><0.911811884742,0.512282410542> <0.911698416871,0.512218246783><0.911586668834,0.512155973351><0.911475417662,0.512097214461><0.91136451106,0.512047744193><0.91125788441,0.512008750292> <0.911156012897,0.5119746507><0.91105837673,0.511936567812><0.910969808658,0.511880301773><0.910890801103,0.511800847894><0.910819265852,0.511707775393> <0.910757498288,0.511609763797><0.910702917615,0.511508960969><0.910671725649,0.51144364875><0.91063043645,0.511347243731><0.91059126547,0.511252551122> <0.910538705423,0.511129756027><0.910496431377,0.51104082985><0.910449389554,0.510952433737><0.910397659667,0.510865273502><0.910343723188,0.510779729239> <0.910289181889,0.510697219931><0.910240553791,0.510621702312><0.910211421729,0.510550291036><0.910203824284,0.510498944771><0.910206605388,0.510438164505> <0.910240909954,0.510264667653><0.910274783054,0.510195929966><0.910315335223,0.510151179931><0.91037685653,0.510110645023><0.910602225518,0.510005676084> <0.91067213917,0.509924133914><0.910705442999,0.509803658538><0.910703454366,0.509719889319><0.910702346373,0.509677341735><0.910698506506,0.509653861545> <0.910685464282,0.509600142571><0.91068753354,0.509545261507><0.910717971817,0.509466354852><0.910772840809,0.509400907087><0.910847922451,0.509332329538> <0.910926085834,0.509250087485><0.910984471643,0.509189313312><0.911081079466,0.50910388651><0.91120634143,0.509042109503><0.911347802342,0.508992670514> <0.911505719503,0.508944571089><0.911667732951,0.50887917199><0.911847273684,0.508810569339><0.912021784947,0.508757407918><0.912185008332,0.508681046828> <0.912340661797,0.508579757085><0.912503356632,0.508488728688><0.912663371328,0.508429689712><0.912852201979,0.508390644399><0.913038014855,0.508361599469> <0.913143310921,0.508328617383><0.913213282152,0.508280055271><0.913261737627,0.508214442308><0.913309582052,0.508135989499><0.913393254691,0.508018159801> <0.913524690882,0.507862187048><0.913650034295,0.507727125006><0.913726578163,0.507638422158><0.913924287913,0.507363252899><0.91402758939,0.507196463058> <0.914082756057,0.507084305644><0.914149978576,0.506874693814><0.914178877563,0.506671082638><0.91418553316,0.506324282656><0.914188522407,0.506111025622> <0.914195744596,0.505896407713><0.914234222629,0.505674072385><0.914287585207,0.505439442854><0.914347028431,0.505200577406><0.914409655476,0.504983916693> <0.914512432788,0.504766732632><0.914656231553,0.504557025291><0.914795113743,0.504360934346><0.914932853451,0.504172143463><0.915069035352,0.503974146415> <0.915149074958,0.50386418383><0.915049781132,0.507193898332><0.914954978516,0.510355015707><0.91812291065,0.510426801189><0.921290848439,0.510498929404> <0.924454519295,0.510570573218><0.927618228864,0.510642555329><0.930784163119,0.510709213399><0.93395010453,0.510776213723><0.937112799125,0.510843856512> <0.940275532852,0.510911867943><0.94031922808,0.509330527168><0.940362920245,0.507749187223><0.940406609468,0.50616784374><0.941989413063,0.506203024537> <0.942811193965,0.506223740773><0.943163268745,0.506556831217><0.943451896164,0.506236238685><0.943572221117,0.506238189304><0.945155063407,0.506273448137> <0.946737876812,0.506308711879><0.94678143957,0.504726872682><0.94682496581,0.503145055247><0.946868803531,0.501519781644><0.948446559523,0.501855499568> <0.948471484751,0.50173820127><0.946873220075,0.501397864008><0.946911975708,0.499981435057><0.946955459362,0.498399632304><0.945373535308,0.498364802002> <0.944606560005,0.498346513413><0.944622571174,0.497600489324><0.943042870763,0.497551472779><0.943104474396,0.495149014949><0.941536204391,0.495113802192> <0.940722149475,0.494762122301><0.940754231536,0.493516290195><0.940785969258,0.492317703784><0.942109943566,0.492352829295><0.942302907987,0.4919681523> <0.943960496516,0.492003321395><0.947124578339,0.492072214452><0.947303911646,0.485744970817><0.94739010354,0.482581147115><0.947476249976,0.479417321453> <0.947563167494,0.476253643116><0.947649746391,0.473089884791><0.944790123744,0.472984615383><0.944490973894,0.472908112916><0.943723491594,0.472773155364> <0.943434910683,0.472698986886><0.942834017927,0.472603006292><0.942391627093,0.472486710765><0.941542480385,0.472084125177><0.941353457842,0.471947829745> <0.941370948968,0.471325257921><0.941414077285,0.46974385894><0.941500357486,0.466581059997><0.939700660944,0.466532209476><0.939119743621,0.463764000256> <0.93730062211,0.462271218396><0.937003656569,0.460126697888><0.938508744171,0.460168136601><0.941672886061,0.460255266791><0.941761269057,0.457092291548> <0.941849639924,0.45392932399><0.938685981861,0.453841898969><0.936945054929,0.453792797323><0.939432234076,0.452886228933><0.941050223904,0.451575590308> <0.941553786575,0.451318299293><0.942003383286,0.451155753717><0.942114349792,0.451148025966><0.942521242504,0.451043078872><0.94264444267,0.451066187945> <0.943149389047,0.451348594095><0.943649573678,0.451666554842><0.944074298521,0.451983864187><0.944183432383,0.452003368991><0.944327847569,0.452073359726> <0.944391302972,0.452051304323><0.944478926039,0.451905139417><0.944465594414,0.451702391338><0.944537192074,0.45148051106><0.944702041023,0.45065587248> <0.944689926765,0.450575259468><0.944631388887,0.450540080919><0.944448196832,0.450485626641><0.944158951912,0.450251060899><0.943965954316,0.450191039238> <0.943746863706,0.450083190081><0.943501512333,0.450005578359><0.943146827755,0.449856575659><0.942835558008,0.449619393578><0.942630836265,0.449576942024> <0.942529783492,0.449463428252><0.942205570776,0.449270277441><0.942068067213,0.44911621684><0.94203124279,0.44907501126><0.941796769047,0.44885016858> <0.941552248518,0.448758440103><0.94125622633,0.448570857183><0.941118786362,0.448421379803><0.941032201193,0.448362514001><0.940750596551,0.448113512994> <0.940679521284,0.448096721656><0.940369997889,0.448097729106><0.940180200354,0.448041301085><0.94003395798,0.448045693393><0.939971739093,0.448019809086> <0.939847707268,0.44785064162><0.939603160547,0.447770228849><0.939234213558,0.447854949398><0.939096403176,0.4479213496><0.938364324998,0.448167294556> <0.93809108877,0.448201828564><0.937880211524,0.448199142091><0.937672558273,0.44802220029><0.937495522994,0.447907078453><0.937185894913,0.447840597007> <0.937013830302,0.447779497124><0.936811773869,0.447755597434><0.936602181255,0.447663095419><0.936263046696,0.447661858245><0.936123948836,0.447640300713> <0.936005226033,0.44759440444><0.935694950798,0.447474007913><0.93569563512,0.447428150219><0.935413844756,0.447419368848><0.935059116436,0.447228261583> <0.9349146462,0.447184155459><0.934697777034,0.447152548978><0.934123863771,0.447103788712><0.933934163821,0.447114874095><0.933603689432,0.447208859086> <0.93339439577,0.447200894921><0.933178928274,0.447260910766><0.933068391881,0.447251145734><0.933065255152,0.44728698466><0.93318224914,0.447297321884> <0.93339864319,0.447237055756><0.93360803509,0.447245022625><0.93394019785,0.447150558866><0.934123381332,0.447139848003><0.934693654607,0.447188308719> <0.934906759887,0.447219354339><0.935045200655,0.447261627497><0.935334594013,0.447416758436><0.931922163665,0.447316221431><0.928148660064,0.44720481179> <0.928846368769,0.444058404866><0.929544202108,0.440912013504><0.927962971655,0.44086639617><0.926381741983,0.440820849561><0.924800512269,0.44077540425> <0.923219283097,0.440730038397><0.920056133477,0.440640885956><0.916893018327,0.440552082928><0.916985027596,0.437531666873><0.91707825101,0.434369179477> <0.91391382137,0.434343267623><0.910814232951,0.434322610295><0.907648366825,0.434240248098><0.904482503395,0.434158239186><0.904403996073,0.437321940579> <0.904323924621,0.440493498219><0.90274228868,0.44045434567><0.901160653369,0.440415290069><0.901200327141,0.438833550121><0.899619356475,0.438798553771> <0.899659794563,0.437216776278><0.898079561766,0.437181750088><0.898117940081,0.43559984036><0.896535825919,0.435563108659><0.896574837748,0.433981131773> <0.894993361262,0.433944424572><0.89503418525,0.432362572369><0.89511582925,0.429198687077><0.891953764959,0.429125511375><0.891994865944,0.427543600461> <0.890131874756,0.427499318944><0.889037769079,0.426766450528><0.88770372092,0.426776302558><0.887239184345,0.426338140843><0.886593516353,0.426314824695> <0.886115395154,0.427404579545><0.885671089008,0.427393076819><0.885631430352,0.428974785678><0.885591735698,0.430556503295><0.885552071195,0.432138213862> <0.885512371029,0.433719920085><0.885471911468,0.435301647348><0.887051444396,0.435339466798><0.887011023762,0.436921259998><0.886969912778,0.438502949203> <0.888550290137,0.43854082252><0.888510023519,0.440119333442><0.888469534712,0.441701300982><0.890051225637,0.441736290326><0.890011168461,0.443318377545> <0.893173891567,0.443390917315><0.893094061513,0.44655552862><0.894673981842,0.446593267586><0.894594646735,0.449758141535><0.89775386427,0.449834285807> <0.897673858738,0.452999546999><0.897591786307,0.456164251643><0.897509702584,0.459328946583><0.897433173841,0.462492984294><0.897356664711,0.46565703936> <0.90051014957,0.465734771063><0.900425357385,0.468899042698><0.900340563214,0.472062963943><0.90349266608,0.472141955935><0.903404518111,0.475306001627> <0.90331959839,0.478472971511><0.906480352054,0.478549823002><0.909640289323,0.478627015064><0.909555725094,0.481785550718><0.909471149115,0.484944098469> <0.90934960857,0.489682025266><0.909310632922,0.49126083739><0.912316437554,0.49132394934><0.915480489029,0.49139043971><0.916712517011,0.491364734663> <0.918542784599,0.491326409948><0.918485954959,0.493790142657><0.918485308245,0.493866259763><0.918486014894,0.493927259433><0.918487804553,0.493988239832> <0.918490645132,0.494049173883><0.918494569635,0.494110053721><0.918499513079,0.494170855765><0.918505541596,0.494231559923><0.918512655644,0.494292148723> <0.918520790006,0.494352607321><0.918529978036,0.49441291475><0.918540220309,0.494473049174><0.918551517166,0.494532997491><0.918563869067,0.494592742232> <0.918577243805,0.494652260688><0.918591674737,0.494711531894><0.918607129308,0.494770546245><0.918623608095,0.494829281904><0.918641111556,0.494887721403> <0.918659607371,0.4949458464><0.918679161559,0.495003641172><0.918699676357,0.495061081266><0.918721217551,0.495118159693><0.91874375294,0.495174853746> <0.918767250435,0.495231136347><0.918791742812,0.495287008373><0.918817230764,0.49534244362><0.918843649078,0.495397427242><0.91887103111,0.495451938278> <0.918899344426,0.495505962753><0.91892862215,0.495559488442><0.918958832082,0.495612492634><0.918989941788,0.49566496136><0.91902198451,0.495716878022> <0.919054894921,0.495768232144><0.919088739272,0.495818999268><0.919123419459,0.495869168045><0.919159001386,0.49591872712><0.919195452854,0.495967653784> <0.919232708538,0.496015937561><0.919270834341,0.496063567096><0.919309798068,0.496110519682><0.919349534276,0.496156789209><0.919390109103,0.496202355587> <0.919431457227,0.496247208339><0.919473578995,0.496291334364><0.919516442095,0.496334715323><0.91956007954,0.496377343357><0.919607437498,0.496421901943> <0.919288719811,0.496860131949><0.918973311132,0.49764753373><0.917766620491,0.497667665488><0.915305144883,0.497711533528><0.915224882379,0.500872155484> <0.915150736094,0.503777988559><0.914968875883,0.504026668964><0.914833819722,0.504214390036><0.914706915593,0.504397712061><0.914588498358,0.504563981754> <0.914490287525,0.504707731213><0.914413059887,0.504844186648><0.914354853887,0.504989214234><0.914308000179,0.505156295645><0.914262608481,0.505332576898> <0.914215640989,0.505508947614><0.914176288781,0.50569741713><0.91414380571,0.50588529051><0.914129096208,0.50607805755><0.914128447513,0.506280947912> <0.914124950352,0.50649111012><0.914119169207,0.506705801174><0.914084144039,0.506920382526><0.914010446853,0.507121929548><0.913916100852,0.507286067386> <0.913815727869,0.507424000731><0.913699742736,0.50758572215><0.91355967255,0.507744507854><0.913435061964,0.507884113368><0.913333635543,0.50801741357> <0.913223635106,0.508171222179><0.913144411194,0.508249798295><0.913102295379,0.508274048259><0.913044242712,0.508290962475><0.912917784044,0.508324530716> <0.912814814927,0.508341429613><0.912673812131,0.508359640415><0.91251927867,0.508409750502><0.912339197923,0.508511045441><0.912163555867,0.508619364413> <0.911987376349,0.508704627714><0.911790011067,0.508762841922><0.911562005213,0.508847902629><0.911368894854,0.508918898293><0.911172406049,0.508987507128> <0.910998040092,0.509091246713><0.910830007554,0.509261978209><0.91069614815,0.509402496021><0.910623592475,0.509545683148><0.910620619974,0.509654750459> <0.910627625751,0.509718581517><0.910630129153,0.509754212047><0.910632107214,0.509837146164><0.910592643935,0.50992513781><0.910505704344,0.509989688367> <0.910314412831,0.510079165519><0.910250960445,0.510127049323><0.910203779842,0.510204396507><0.910175639527,0.510267083208><0.910133640824,0.510472580928> <0.910130475442,0.510541734109><0.910139604394,0.510603396242><0.910172617864,0.510684276119><0.910223796641,0.510763772599><0.910278211654,0.510846099253> <0.91033151852,0.510930656504><0.910382370538,0.511016298699><0.910428349006,0.511102752303><0.910469786164,0.511189851214><0.910521852022,0.511311501132> <0.91056102313,0.511406193642><0.910602805874,0.511503778544><0.910634961773,0.511571078545><0.910690854539,0.511674341576><0.910754667811,0.511775584469> <0.910829436381,0.511872846164><0.910914383894,0.511958269565><0.911011398981,0.512019906913><0.911114486452,0.512060104629><0.911216812166,0.512094373417> <0.911321263392,0.512132562392><0.911429221161,0.512180722152><0.91153859708,0.51223848294><0.911649730871,0.512300420921><0.911763262974,0.512364625532> <0.911880935884,0.512429661131><0.911961028124,0.512474075901><0.912080436923,0.512540377662><0.912190977838,0.512602337227><0.91229811179,0.512661711557> <0.912412730864,0.512724374208><0.912534105292,0.51279064691><0.912656725532,0.512854413693><0.912781682274,0.512912858048><0.912909027852,0.512968962237> <0.91303689714,0.513020120079><0.913161388404,0.513070083382><0.913283112353,0.513125507426><0.913399541179,0.513197680518><0.913507814664,0.513288148465> <0.913609398922,0.513388575619><0.913707175891,0.513492871055><0.913805491805,0.513599069312><0.913905495042,0.513704652651><0.914002647417,0.513803980644> <0.914099492459,0.513895083846><0.914197068645,0.513978361268><0.914292113378,0.514056947735><0.914381354193,0.514131875428><0.914477467523,0.514210919232> <0.914579873266,0.514288753367><0.914682810932,0.514357628823><0.914779988901,0.514412527256><0.914877608029,0.514461899978><0.914978243415,0.5145112394> <0.915071443253,0.514555421183><0.915131776122,0.514583127906><0.915226306643,0.51462037851><0.915332813568,0.514639869649><0.915443120754,0.51462484549> <0.915553783581,0.514580367789><0.915661416247,0.514522863836><0.915769724604,0.514463385128><0.915881113344,0.514403957993><0.915989320887,0.514347078012> <0.916090245851,0.514297828724><0.916180978093,0.514268274798><0.916219389865,0.514267266951><0.916255200853,0.514272851149><0.91628700981,0.514284714801> <0.91643452705,0.514421339372><0.916462903508,0.514458751064><0.916511150113,0.514577362334><0.916516378099,0.514658177204><0.916513294848,0.514775446497> <0.916408158727,0.514894396892><0.91636950238,0.514939188825><0.916320376101,0.515001767116><0.91627511313,0.515080567558><0.916242779239,0.515172412988> <0.916233398998,0.515262704611><0.916247239873,0.515353704848><0.916289031765,0.515433930592><0.916349794316,0.515505809569><0.916431994768,0.515599845619> <0.916482286306,0.515673487867><0.916524116712,0.515801557703><0.916529486222,0.515872091933><0.916527826537,0.515934545726><0.916524066748,0.515998320508> <0.916516117589,0.516065563637><0.916500679739,0.516124753455><0.916480085574,0.516171996388><0.916454497172,0.516220929241><0.916396451963,0.516312078176> <0.916345075422,0.516470530945><0.916348189556,0.516528500395><0.916375720075,0.516656876374><0.916460992347,0.516631475161><0.916451580512,0.516583552863> <0.916438501105,0.516516996599><0.916436011816,0.51647129068><0.916482780678,0.516327134833><0.916538637131,0.516239420152><0.916565985754,0.516187159898> <0.916588712267,0.516134921059><0.916605937172,0.516068929748><0.916614437146,0.515997002673><0.916618353562,0.515931042287><0.916620099581,0.515865347658> <0.916614096438,0.515786596958><0.916568324094,0.515646529292><0.916512575006,0.515564874439><0.91642875211,0.515468989903><0.916371708424,0.515401488552> <0.916336027985,0.515333055695><0.916324307924,0.515256006465><0.916332491582,0.515177453589><0.916361492849,0.515095082983><0.916402804984,0.515023114136> <0.916449148314,0.514964120383><0.916486960103,0.514920276427><0.916583683065,0.514829289936><0.916618291555,0.514767851639><0.916623875418,0.514694649493> <0.916618745023,0.514610174458><0.916602413583,0.514532740316><0.916568160615,0.514440165974><0.916522057413,0.514380289354><0.919350720245,0.496870909367> <0.919662287004,0.496474584444><0.919695215557,0.496500558822><0.91974159763,0.496539872948><0.920249423804,0.496968887541><0.920228149403,0.49762401235> <0.919025898358,0.497645922298><0.919350720245,0.496870909367><0.92024955196,0.496815244763><0.91981889373,0.496448118336><0.919773796506,0.496409821751> <0.919733282219,0.496374326652><0.920279339877,0.495698119366><0.92024955196,0.496815244763><0.920284828581,0.49560421959><0.919686619823,0.496331980512> <0.919642975927,0.496290829428><0.919600841186,0.496249661806><0.919559414432,0.496207770083><0.919518728326,0.496165159496><0.919478815181,0.496121848388> <0.919439642101,0.496077840249><0.919401241284,0.496033157787><0.919363645159,0.495987814975><0.919326820599,0.495941824041><0.919290832929,0.495895195462> <0.919255648907,0.495847945832><0.91922130108,0.495800084758><0.919187788751,0.495751638442><0.919155111806,0.495702611248><0.919123335338,0.49565302239> <0.919092393328,0.49560288759><0.919062351103,0.495552217326><0.919033175421,0.495501028193><0.919004898482,0.495449342899><0.918977552836,0.495397171049> <0.918951105242,0.495344529239><0.918925588017,0.495291435809><0.918901000816,0.49523790386><0.918877343295,0.495183946492><0.918854647538,0.49512959078> <0.918832880655,0.495074840219><0.918812074615,0.495019726251><0.918792262085,0.494964254114><0.918773409827,0.494908440405><0.918755517147,0.494852311328> <0.918738616598,0.494795876487><0.918722707603,0.49473915772><0.91870778982,0.494682168128><0.918693862671,0.494624929547><0.918680925931,0.494567450711> <0.918669011688,0.494509758697><0.918658119597,0.494451866605><0.918648216305,0.494393795402><0.918639334249,0.494335559061><0.91863147297,0.494277175051> <0.918624632008,0.494218660843><0.91861877801,0.494160037401><0.918614008856,0.494101324811><0.918610225865,0.49404253356><0.918607461125,0.493983690725> <0.918605747307,0.493924801546><0.918605083604,0.493865896595><0.918605407598,0.493806856201><0.918605961331,0.493777407615><0.918663675304,0.491323986819> <0.918683667631,0.491323491447><0.918681627598,0.491417456585><0.918681227388,0.491478138303><0.918681548976,0.491538817368><0.918682625373,0.491599485916> <0.918684423907,0.491660138709><0.918686944807,0.49172076701><0.918690188416,0.491781357718><0.918694187627,0.491841907337><0.918698877221,0.491902401021> <0.918704322874,0.491962836146><0.91871049203,0.492023203106><0.918717385034,0.492083488798><0.918725034897,0.49214368536><0.918733376048,0.492203791048> <0.918742441731,0.492263789264><0.918752232174,0.492323671275><0.918762747372,0.49238343708><0.918773987902,0.492443064843><0.918785920862,0.49250255806> <0.918798579493,0.492561900133><0.918811964025,0.492621082328><0.918826074454,0.492680104647><0.918840878341,0.492738953115><0.918856376032,0.492797614631> <0.91887260042,0.4928560857><0.918889518837,0.492914361084><0.918907131744,0.492972423313><0.918925439136,0.49303027239><0.91894447414,0.493087896084> <0.918964171423,0.493145283918><0.918984563763,0.493202436764><0.919005651736,0.493259332787><0.919027402559,0.493315971116><0.919049881906,0.493372349129> <0.919072991897,0.49342844674><0.91909679809,0.493484265696><0.91912126805,0.493539792023><0.919146402007,0.493595016988><0.919172199958,0.493649940592> <0.919198662365,0.493704545367><0.919225789342,0.493758826946><0.919253548339,0.493812775725><0.919281972133,0.493866392576><0.919311028407,0.49391965916> <0.919340717274,0.493972571111><0.91937107163,0.494025124935><0.919402026261,0.494077305786><0.91943361406,0.494129110171><0.919465835144,0.494180533726> <0.919498689858,0.494231563348><0.919532112758,0.494282192927><0.919566169518,0.494332419843><0.919600827823,0.494382225754><0.919636087554,0.494431615031> <0.91967191628,0.494480573699><0.919708346895,0.494529098266><0.919745379632,0.49457718><0.919782949047,0.494624812788><0.919821121047,0.494671985276> <0.919859862736,0.494718700961><0.919899141683,0.494764945868><0.919938990899,0.494810712139><0.919979377722,0.494855994534><0.920020302267,0.494900788687> <0.920061764768,0.494945085867><0.920103765457,0.494988877339><0.920146304334,0.495032163107><0.920189348854,0.495074933562><0.920232867635,0.495117135423> <0.920253533717,0.495136795469><0.920297975669,0.49522310139><0.920284828581,0.49560421959><0.918801527546,0.491418967623><0.91880359397,0.491321559013> <0.919176556931,0.491313471337><0.920344452069,0.491289613027><0.919737063884,0.492729546138><0.919645687195,0.493001058957><0.919640432192,0.493221747844> <0.919684549566,0.49340787223><0.919739892816,0.493545688426><0.919800300421,0.493675623699><0.920036510561,0.494067429246><0.920165829614,0.494271411848> <0.920313717653,0.494514597897><0.920300407222,0.495013805784><0.920273341007,0.494989359519><0.920231351744,0.494947609239><0.920189835004,0.494905355874> <0.920148823449,0.494862604665><0.920108349743,0.494819360849><0.920068380757,0.494775636655><0.920028949386,0.494731428586><0.919990055165,0.49468675411> <0.919951698094,0.494641613226><0.919913910837,0.494596011172><0.919876660382,0.494549955809><0.91983994638,0.494503460236><0.919803834508,0.494456521831> <0.919768258858,0.494409151948><0.919733251978,0.494361360194><0.919698846649,0.494313147439><0.91966500986,0.494264521543><0.919631774041,0.494215496482> <0.919599139196,0.494166072252><0.919567072312,0.494116256714><0.919535638719,0.494066060346><0.919504772741,0.49401548577><0.919474572372,0.493964548704> <0.919444939274,0.493913246528><0.919415938659,0.493861594089><0.919387570413,0.493809595752><0.919359834306,0.493757260251><0.919332730341,0.493704587584> <0.919306257938,0.493651599587><0.919280417099,0.493598296258><0.919255240492,0.493544682837><0.919230694989,0.493490771551><0.919206813257,0.493436567639> <0.919183595184,0.493382075468><0.919161007525,0.493327311633><0.91913908295,0.493272281373><0.919117854124,0.493216989926><0.919097255257,0.493161444282> <0.919077351566,0.493105659287><0.919058110273,0.493049634067><0.919039563813,0.492993382595><0.919021679175,0.492936912734><0.919004456248,0.49288022885> <0.918987960249,0.492823345788><0.918972125503,0.492766266171><0.918956984677,0.492708995238><0.918942537312,0.492651550457><0.918928783294,0.492593936196> <0.918915722395,0.492536161188><0.918903354504,0.4924782298><0.918891679274,0.492420155135><0.91888072926,0.492361946798><0.918870438785,0.492303607412> <0.918860905967,0.492245148328><0.918852032232,0.492186575664><0.918843882683,0.492127908634><0.918836457441,0.492069142871><0.91882972338,0.492010290603> <0.918823712936,0.491951365805><0.918818393333,0.491892367605><0.918813797007,0.491833309978><0.918809890834,0.491774205153><0.918806707598,0.491715054003> <0.918804246957,0.49165586963><0.918802508567,0.491596665136><0.918801459764,0.491537435282><0.918801132756,0.491478202778><0.918801527546,0.491418967623> <0.940712103622,0.495097813363><0.940719539873,0.494822676242><0.941377745342,0.495110708666><0.940712103622,0.495097813363><0.920408601306,0.491287927032> <0.920320401068,0.494406647357><0.919866866061,0.493693844502><0.919738201164,0.493393697803><0.919714103101,0.49326390825><0.919701727133,0.493036412059> <0.919757346573,0.492836335542><0.920408601306,0.491287927032><0.940796388878,0.491934773124><0.9363305679,0.491721043597><0.936166090219,0.490657046016> <0.935641805073,0.489978927774><0.935232045299,0.488647335365><0.935954914501,0.48694635373><0.935634473235,0.486233757371><0.935597430047,0.485349997612> <0.937107085954,0.485423765263><0.940975145442,0.485609196686><0.940796388878,0.491934773124><0.942238210036,0.491965769843><0.942073459393,0.492291898076> <0.940787060698,0.492258673133><0.940796388878,0.491934773124><0.935938524514,0.490754807355><0.93608565505,0.49170907984><0.934546814994,0.491635138975> <0.933786213495,0.490632240895><0.933143809298,0.488559044984><0.933238975863,0.485238858945><0.935354954504,0.485340509493><0.93539681261,0.486290067814> <0.935693154695,0.486949065442><0.934977033462,0.488634151178><0.935425392519,0.490091136645><0.935938524514,0.490754807355><0.933134351262,0.488799052052> <0.933471068822,0.48985732596><0.933103397569,0.489832129713><0.933134351262,0.488799052052><0.933490469918,0.489919848858><0.933659134512,0.4904645045> <0.933163934366,0.489888909417><0.933490469918,0.489919848858><0.933098846776,0.489891083332><0.933711018011,0.490632154682><0.93401327962,0.491609144738> <0.933057664585,0.491567743008><0.933103012914,0.489985524464><0.933098846776,0.489891083332><0.934091451429,0.491613102274><0.93383784745,0.490799373221> <0.934468968102,0.491631298272><0.934091451429,0.491613102274><0.919104722184,0.472337989221><0.919107823206,0.472242291555><0.918772186298,0.472233545271> <0.917032880159,0.47131255692><0.916988979732,0.47115547761><0.916397114258,0.470852162084><0.916064365149,0.469811884435><0.914710056323,0.469083285588> <0.914808487955,0.466523572022><0.915037062554,0.466526860144><0.915061421778,0.46591424105><0.915620842181,0.465925366143><0.92054136513,0.467182213898> <0.920301573821,0.467817818942><0.92028501242,0.467849166625><0.92025509664,0.467894988914><0.920221282228,0.467938023888><0.920183873201,0.467977951845> <0.9201431076,0.468014464437><0.920099321081,0.46804728651><0.920052848712,0.468076164747><0.920004024628,0.46810088077><0.919953247879,0.46812124415> <0.919900883542,0.468137107262><0.919847329034,0.468148340818><0.91979298061,0.468154859208><0.919738298978,0.468156622237><0.919683678647,0.468153609801> <0.91962951308,0.468145841102><0.919576227272,0.468133384256><0.919523106338,0.468115958014><0.916388611737,0.466933785448><0.916511534775,0.466607886615> <0.915513293681,0.466231412214><0.915322870634,0.466736310844><0.916321128091,0.467112788724><0.916346271347,0.467046084306><0.919480659788,0.468228114584> <0.919532180441,0.468250153042><0.919580415466,0.468275981094><0.919626209901,0.468305922767><0.919669241786,0.468339737842><0.919709156703,0.468377172125> <0.91974563375,0.468417946087><0.919778451385,0.468461747873><0.919807290226,0.468508241173><0.919831995407,0.46855707657><0.919852314453,0.468607871457> <0.919868158825,0.468660251958><0.919879375182,0.468713811878><0.919885875805,0.468768146771><0.91988760625,0.468822835597><0.919884544538,0.468877471289> <0.919876767464,0.468931636301><0.919868200871,0.468967340228><0.919434553634,0.470117252689><0.919413750969,0.470174847878><0.919394465618,0.470233414371> <0.919376840877,0.470292501418><0.919360910704,0.470352066212><0.919346676483,0.470412056339><0.919334139362,0.47047242812><0.919323333533,0.470533130013> <0.91931426026,0.470594113974><0.919306888003,0.470655331085><0.91930128364,0.470716735044><0.919297415864,0.4707782682><0.919295285706,0.470839891243> <0.919294894664,0.470901547396><0.919296276812,0.470963189484><0.919299400607,0.471024768594><0.919304267316,0.471086236682><0.919310878435,0.471147536971> <0.919319202192,0.47120862928><0.919329272892,0.471269457705><0.919341058879,0.471329977699><0.919354561419,0.471390141221><0.919369782012,0.471449891495> <0.919386655963,0.471509191837><0.91940521758,0.471567986345><0.919425467898,0.471626235713><0.91944734269,0.471683885789><0.919470810418,0.471740887661> <0.919495937733,0.471797203768><0.919522627486,0.471852783455><0.919550880716,0.471907587418><0.919580665889,0.471961566745><0.919611984161,0.472014677764> <0.919644803766,0.4720668803><0.91967906025,0.472118128937><0.919714787345,0.472168389611><0.919751920597,0.472217616907><0.91979042836,0.472265766281> <0.919830278525,0.472312810661><0.919865245136,0.47235091381><0.919273247871,0.472339819238><0.919104722184,0.472337989221><0.919547045399,0.470158775204> <0.920410670879,0.467868777863><0.920656809153,0.467213145397><0.921043783008,0.467311098603><0.921033089397,0.467596755945><0.920973529926,0.469178547193> <0.920848718236,0.472369629971><0.920036379746,0.472354640359><0.919999690704,0.472319590011><0.919959581668,0.472277350666><0.919920684181,0.472233989741> <0.919883030118,0.472189543044><0.919846618435,0.47214404988><0.919811546853,0.472097539067><0.919777814212,0.472050054277><0.919745419586,0.472001630446> <0.91971442766,0.471952304255><0.919684837161,0.471902123744><0.919656679968,0.471851124721><0.919629987964,0.471799342995><0.91960475976,0.471746830975> <0.919581027355,0.471693620101><0.91955885509,0.471639760159><0.919538176314,0.471585288708><0.919519055369,0.471530255534><0.919501523909,0.471474705182> <0.919485580895,0.471418676957><0.919471192253,0.471362218028><0.919458455133,0.471305379053><0.919447302887,0.471248197594><0.919437799974,0.47119071907> <0.91942991209,0.471132999386><0.919423671004,0.47107507872><0.919419075451,0.471017005116><0.919416124278,0.470958822249><0.919414816103,0.470900582529> <0.919415182698,0.470842326137><0.919417189873,0.470784104613><0.919420836477,0.470725961632><0.919426154051,0.470667946111><0.919433108521,0.470610105222> <0.919441698618,0.470552487011><0.91945192331,0.470495130787><0.919463748288,0.470438092459><0.919477205442,0.470381407842><0.919492260463,0.470325132845> <0.919508912432,0.470269302411><0.919527127157,0.470213968082><0.919547045399,0.470158775204><0.94132781741,0.4729066621><0.941351058074,0.472035549932> <0.941506008598,0.472146387738><0.942367015677,0.472554599189><0.942819314562,0.472673500063><0.943420434756,0.472769512903><0.943708427935,0.472843538393> <0.944488764519,0.472998102865><0.94132781741,0.4729066621><0.921044472736,0.467285198523><0.920667231663,0.467189182744><0.921092648253,0.466014948063> <0.921044472736,0.467285198523><0.936812622605,0.466452882703><0.93662279342,0.466172497461><0.936575725424,0.465968728711><0.936462327578,0.46576120837> <0.937780007139,0.465997971296><0.938628528911,0.46613678536><0.939054910781,0.46618552437><0.939204551508,0.4662445467><0.939396348152,0.466268908839> <0.939549056374,0.466290081639><0.939597345609,0.466528935943><0.938335761347,0.466494369208><0.936812622605,0.466452882703><0.937786094896,0.465962514256> <0.936440247452,0.465720597455><0.936427631343,0.465693032871><0.936360802875,0.465546895375><0.936352428633,0.465410322852><0.93623624302,0.465283523537> <0.936143040366,0.465083074734><0.93684636907,0.464643675242><0.936414532659,0.463952265465><0.935550016888,0.464492219978><0.935941356774,0.465118950885> <0.935884654476,0.465105282252><0.935821428452,0.46511176554><0.935577792478,0.465220923742><0.935330081473,0.465229806296><0.935203656566,0.465209124904> <0.935257892291,0.463244696745><0.935344637713,0.460081356606><0.936903270496,0.460124778416><0.93720462886,0.462302482511><0.939025583397,0.463796776639> <0.93953868242,0.466240630317><0.939400573524,0.466233182677><0.939213554387,0.46620942723><0.939063718748,0.466150320873><0.938633473542,0.466101139936> <0.937786094896,0.465962514256><0.915008468069,0.461155254653><0.91497791678,0.461992654216><0.914463167358,0.461761740149><0.914406014313,0.461737264323> <0.914347406582,0.461714397978><0.914288090796,0.461693471137><0.914228132485,0.461674489903><0.914167563788,0.46165748135><0.914106482707,0.461642465549> <0.914044954545,0.461629457337><0.913983044719,0.461618467182><0.913920752783,0.461609512557><0.913858897806,0.461602667506><0.913851493935,0.461601982793> <0.912386167381,0.461469406219><0.912327369093,0.461463698298><0.912268951316,0.461457257502><0.912210586789,0.461450040254><0.912152373386,0.461442070983> <0.912094245695,0.461433339226><0.912036236531,0.461423845845><0.911978345889,0.461413590841><0.911920606467,0.461402579442><0.911863018144,0.461390816017> <0.911805613851,0.461378297059><0.911748099255,0.461364975494><0.911739353012,0.461362883668><0.910707527626,0.461114460928><0.910646865701,0.46110090169> <0.91058507132,0.461089196598><0.91052809571,0.461080327905><0.910132630136,0.460240206638><0.910148222003,0.459639520178><0.912606793527,0.45960619046> <0.915065381957,0.459573134824><0.915008468069,0.461155254653><0.910132121584,0.460259594474><0.910522828171,0.461079573395><0.910460468573,0.461071883461> <0.910397823865,0.461066297194><0.910335026937,0.461062756894><0.910272142981,0.461061281755><0.910209238105,0.461061856028><0.910146410433,0.461064495397> <0.910111954412,0.461064732276><0.910122671524,0.460589813438><0.910124482519,0.460554576936><0.910132121584,0.460259594474><0.914390841182,0.461926493846> <0.914970792141,0.462185365455><0.914951552522,0.462737388422><0.914892148804,0.46432416457><0.914872308729,0.46485538081><0.91480487493,0.464853652588> <0.914811843052,0.464496486219><0.914264924103,0.464482203356><0.914066490325,0.463621940097><0.913911789643,0.463440157802><0.913835147203,0.463413927727> <0.913738271566,0.463361718458><0.91363691163,0.463325138808><0.913526497401,0.463298172353><0.913449749819,0.463269676594><0.913375591248,0.463256328031> <0.913265474757,0.463235493753><0.913168560794,0.4632121056><0.913068083709,0.463168147434><0.913024193539,0.463137659957><0.91299609782,0.463108449553> <0.912944727007,0.463045286891><0.912879237579,0.462960838992><0.912818217503,0.462918655111><0.912792894227,0.462906358045><0.912686769638,0.462852331268> <0.912560973563,0.462782109617><0.912480716956,0.462742121249><0.912375890212,0.462679913057><0.912225844243,0.462585230501><0.912033607935,0.462460243192> <0.911938863961,0.46239542169><0.911807610971,0.462302791713><0.911652703405,0.462220510848><0.911552767238,0.462154514037><0.911425962276,0.462076233673> <0.911329843419,0.462017396603><0.911212129993,0.461940514383><0.911159834469,0.461909822323><0.911095900623,0.461862120101><0.911157885671,0.461743988728> <0.911241331743,0.461597749952><0.911313706703,0.461445442512><0.911697186049,0.461537771884><0.911706682679,0.461540049512><0.911765992132,0.461553789706> <0.911825714637,0.461566806621><0.911885621854,0.461579041808><0.911945680971,0.461590494403><0.912005859404,0.461601154811><0.912066189747,0.461611032629> <0.912126639417,0.46162011826><0.912187208534,0.461628407337><0.912247896873,0.461635908596><0.912308639148,0.461642607208><0.912369205874,0.461648488393> <0.913834949076,0.461781101858><0.913840583872,0.461781621922><0.913897919798,0.461787963187><0.913954355006,0.46179608153><0.914010478929,0.461806040565> <0.914066258855,0.46181783506><0.9141216296,0.461831445809><0.914176525749,0.461846862346><0.914230849301,0.4618640646><0.914284633524,0.461883035964> <0.914337747485,0.461903759868><0.914390841182,0.461926493846><0.910571142619,0.462321683859><0.910670118623,0.462456825835><0.910678994076,0.462476499405> <0.910653221476,0.46246250984><0.910628064061,0.462440096768><0.91060528561,0.46238460371><0.910571142619,0.462321683859><0.910527069454,0.46228926824> <0.910465737436,0.46225879481><0.910271066565,0.462238760375><0.91007554859,0.462263530166><0.910090576855,0.461669358183><0.910571142619,0.462321683859> <0.910602967976,0.462457877618><0.910635858141,0.462487202586><0.910699522832,0.462521360923><0.910959732651,0.46307048004><0.911455091193,0.4640915259> <0.911076668944,0.463860519192><0.910976198369,0.463888810839><0.91074142613,0.463833204255><0.910480306185,0.4638368206><0.910368468081,0.463776529289> <0.910224165081,0.463787112863><0.910044558658,0.463665145235><0.910077806954,0.462298869069><0.910107415384,0.462291835497><0.910271424262,0.462268931434> <0.910457252203,0.462288056343><0.910511387611,0.462314957994><0.910547986605,0.462341867084><0.910578183572,0.462397484898><0.910602967976,0.462457877618> <0.910044090092,0.463675495693><0.910223417661,0.463794322265><0.910367660585,0.463787277321><0.910479954983,0.463848948616><0.910740758265,0.463846132526> <0.910976091799,0.463899118364><0.911075812186,0.463871882186><0.911456722352,0.464101927188><0.911530296159,0.464284849356><0.91135476971,0.464374033862> <0.911127151059,0.464503751935><0.911152600016,0.464663695335><0.910023962529,0.464376361166><0.910044090092,0.463675495693><0.911862300176,0.46432274005> <0.911722803121,0.464028227321><0.911856233153,0.464016539398><0.911987006224,0.463828723979><0.911997852766,0.463775905976><0.912303474666,0.46363233768> <0.912428273381,0.463603078101><0.91271579913,0.463331296822><0.912951659336,0.463321969893><0.913240524789,0.463468294832><0.913613549536,0.463619669058> <0.914061454194,0.463735684841><0.91423381494,0.464481430629><0.913785929661,0.464469761364><0.913763051889,0.465246467047><0.913873829927,0.465249379639> <0.913819780297,0.46534530637><0.912115341448,0.46490937644><0.912076324689,0.46483476137><0.911862300176,0.46432274005><0.912125025159,0.46493694776> <0.913808628182,0.465367258948><0.913651901622,0.465644994658><0.913670666949,0.46565559003><0.913115280416,0.465824007979><0.91284553537,0.465875206695> <0.912679197491,0.465918627998><0.912611125405,0.465926284936><0.912125025159,0.46493694776><0.913122294394,0.465853157124><0.913706613458,0.465675838687> <0.913735676286,0.465691902349><0.913904063619,0.465391629148><0.914803250491,0.465621492916><0.914624598395,0.465913487604><0.913620069833,0.465925743999> <0.91272849959,0.465936709587><0.912851955643,0.46590446687><0.913122294394,0.465853157124><0.914680784677,0.465913305802><0.914841767145,0.465646352053> <0.914832776837,0.46591094243><0.914680784677,0.465913305802><0.919534597677,0.465988483991><0.920978033705,0.466016817633><0.920548858304,0.467159746713> <0.915728423618,0.465924906143><0.917976582307,0.465962102155><0.919534597677,0.465988483991><0.936000936061,0.466430653995><0.936016476223,0.465884996812> <0.935187059881,0.46586575957><0.935204204799,0.465260340051><0.935328578164,0.465265851358><0.935585952818,0.465256619148><0.935830685753,0.465146961936> <0.935882056805,0.465141695364><0.93596845047,0.465162420508><0.935981667026,0.465183619674><0.936002276226,0.465170808787><0.936109651178,0.465196457482> <0.936219012135,0.465317034675><0.936324597526,0.465543923065><0.936329543924,0.465625360051><0.936387069483,0.465722299687><0.93640559284,0.465725823212> <0.936426576104,0.465770547885><0.936540885275,0.465979583304><0.936588276691,0.466184750711><0.936768587765,0.46645168566><0.936000936061,0.466430653995> <0.93631937628,0.465461722457><0.936287335372,0.465392478518><0.936317282948,0.465425151319><0.93631937628,0.465461722457><0.936166641359,0.46520556247> <0.936128690412,0.465164070627><0.93604533339,0.465143986918><0.936116827124,0.465099090163><0.936166641359,0.46520556247><0.914870592382,0.464883071765> <0.914843819755,0.465607170733><0.913916617784,0.465370054495><0.913982181164,0.465252176205><0.914796451492,0.46527338607><0.914804313251,0.464883629297> <0.914870592382,0.464883071765><0.913243033064,0.463462832041><0.912952968113,0.463315916046><0.912713327517,0.463325392563><0.912425330601,0.463597607275> <0.912301490056,0.463626642954><0.91199260939,0.463771755806><0.911981388754,0.463826312228><0.911852935902,0.464010810184><0.911720065417,0.464022447278> <0.911634448864,0.463841707995><0.911445074176,0.463439438858><0.911291348761,0.463106189493><0.911134615285,0.462772294019><0.911011416744,0.462486771767> <0.910993138701,0.462448756702><0.911035667523,0.462437421846><0.911187235812,0.46245557308><0.911270383183,0.462464370446><0.911391698863,0.462521548757> <0.911519038012,0.462573182259><0.911612559071,0.462610828543><0.911671619152,0.462635217736><0.911738486261,0.462683662891><0.911798830998,0.46272662639> <0.911837179683,0.462750624336><0.911901104315,0.462763590354><0.9120447358,0.462786275355><0.91218596415,0.462800440682><0.912341381547,0.462799525488> <0.912419136651,0.462804792789><0.912519115245,0.46281287425><0.912553579918,0.462812238545><0.912672806199,0.462878790699><0.912779708632,0.462933205044> <0.912803216045,0.462944623864><0.912858527265,0.462982872404><0.912921413097,0.463063934368><0.912973802048,0.463128338843><0.91300480612,0.463160584754> <0.913053533379,0.463194438263><0.913159139913,0.463240633793><0.913259316702,0.463264815931><0.913370315417,0.4632858133><0.913441989942,0.463298716143> <0.913517859373,0.463326887166><0.91362840395,0.463353887625><0.913726185868,0.463389166618><0.913823255325,0.463441494598><0.913901655101,0.46346832606> <0.914037239899,0.463627851333><0.914059920843,0.463729079664><0.913615440256,0.463613967113><0.913243033064,0.463462832041><0.912495729271,0.462781860902> <0.912421368248,0.462774899491><0.912342301911,0.462769540867><0.912187344235,0.462770450678><0.91204857212,0.462756533527><0.911906412159,0.462734079522> <0.911848465028,0.462722328375><0.91181551209,0.462701689087><0.911755972798,0.462659314916><0.911686334321,0.462608860669><0.911623862924,0.46258307058> <0.911530277184,0.462545383228><0.911403750184,0.462494081341><0.911278574227,0.462435088266><0.911190612729,0.462425784157><0.911033511941,0.462406967488> <0.910980063809,0.462421437756><0.910906029325,0.462268208367><0.910896239111,0.462238353356><0.910976849544,0.462079945937><0.911067682389,0.461916217179> <0.911079851457,0.461893014094><0.911142993501,0.461934602823><0.911196485323,0.461966008101><0.911313972745,0.462042740092><0.911410414774,0.462101773542> <0.911536766878,0.462179788442><0.911637542786,0.46224631864><0.91179202914,0.462328378563><0.911921928107,0.462420046289><0.912017156235,0.462485186417> <0.912209811343,0.462610477473><0.912360406821,0.462705489096><0.912464780622,0.462767436189><0.912495729271,0.462781860902><0.92018208996,0.468135088849> <0.919988228267,0.468649148423><0.919984454259,0.46863056425><0.919965593362,0.468568160049><0.919941363405,0.468507636727><0.919911949024,0.468449458136> <0.919877568368,0.468394062797><0.919838505446,0.46834188224><0.91979501274,0.468293299081><0.919775920368,0.468275387232><0.919802077935,0.468274548589> <0.919866801957,0.46826677637><0.919930624654,0.468253390172><0.919993017849,0.468234498317><0.920053518513,0.468210228345><0.92011169445,0.468180782909> <0.92018208996,0.468135088849><0.935522359291,0.453754819489><0.935609003158,0.450591487557><0.935692840404,0.447517925644><0.935780663722,0.447546115905> <0.935992388415,0.44762796091><0.936114753265,0.447675258415><0.936260362521,0.447697822988><0.936594699604,0.447699047984><0.93680234371,0.447790692835> <0.937005775502,0.44781475657><0.93717621254,0.447875283345><0.937481625985,0.447940863452><0.937651170793,0.448051096114><0.937866916226,0.448234953874> <0.938093296902,0.448237838887><0.938372566608,0.448202542409><0.939110149072,0.447954741342><0.939246361043,0.44788911504><0.939601618356,0.447807540281> <0.939825680043,0.447881218787><0.939948791671,0.448049185314><0.940027451185,0.448081886068><0.940175633569,0.448077437357><0.940364974638,0.448133726159> <0.940675549166,0.448132716759><0.940733695761,0.448146449783><0.941010263276,0.448390985983><0.941095299908,0.448448799778><0.94123308957,0.448598706199> <0.941536315242,0.448790817186><0.941777387763,0.448881258083><0.942005489077,0.449100012635><0.942041290774,0.44914016744><0.942182394624,0.449298347555> <0.942506607263,0.449491493741><0.942611867402,0.449609751298><0.942820248245,0.449652958476><0.943128652906,0.449887968323><0.943489119682,0.450039380175> <0.943733428292,0.450116666021><0.943952583144,0.450224560559><0.94414167123,0.450283360408><0.944431108967,0.450518075516><0.944616744992,0.450573261102> <0.944656858381,0.450597369778><0.944665528965,0.4506549978><0.94450231881,0.451471433534><0.944429249139,0.451697880472><0.944442273047,0.451896284123> <0.944367147734,0.452021610319><0.944330129149,0.452034481735><0.944194662633,0.451968831865><0.944088994249,0.451949946523><0.943669999859,0.451636920108> <0.943167845574,0.45131768562><0.942656846861,0.451031914093><0.94252001577,0.451006246686><0.942103725401,0.451113616277><0.941991165815,0.451121925571> <0.941539445079,0.451285235071><0.94103051762,0.451545264687><0.939414274129,0.452854487805><0.936849111223,0.453790991349><0.935522359291,0.453754819489> pigment {rgbt <1,0,0,perTrans>}} prism { linear_spline 0,pheight,976 <0.890871598775,0.602827037308> <0.893975858464,0.602893174796><0.897139366207,0.602958281155><0.897224423615,0.599795616415><0.897309436892,0.596632967317><0.897394322263,0.593469785331> <0.897479163451,0.590306618989><0.897574867059,0.587003411838><0.89766560741,0.583840135672><0.897751475617,0.580676474009><0.897799449861,0.578943648686> <0.899459936136,0.577555475443><0.901001643057,0.577597673505><0.901041963265,0.576218549162><0.904251654679,0.574519617725><0.904165987435,0.577682902277> <0.907323197498,0.57777245214><0.910480441054,0.577862362717><0.910569544529,0.574698730889><0.910658636794,0.571535119898><0.916983615975,0.571709764711> <0.917068182053,0.568545926383><0.917152769147,0.565382079187><0.920321606828,0.565470987271><0.923490446388,0.565560239997><0.923575101981,0.562396837528> <0.923659745663,0.559233425306><0.926823445272,0.559321718481><0.92998717928,0.55941037332><0.930075868294,0.556246731072><0.930164513332,0.55308307817> <0.928582838991,0.553049250745><0.926464131336,0.553004736363><0.926499194204,0.551728223916><0.929665530306,0.551798200897><0.929751055222,0.548634505481> <0.932916444058,0.548704835899><0.936083107383,0.548778228046><0.936103435821,0.548080165304><0.936143915912,0.546689250159><0.936279910591,0.546566793846> <0.936464584083,0.546400525267><0.937733355431,0.546417824353><0.93775202041,0.545652746551><0.93862242912,0.54567307888><0.938958169466,0.546223315655> <0.936107815343,0.547931945169><0.936103435821,0.548080165304><0.939321926483,0.546154382764><0.942531748187,0.54441132716><0.942582448317,0.542603617931> <0.942669966794,0.53944167873><0.942757515277,0.536279394324><0.942665230389,0.536279710839><0.943100550138,0.5201762359><0.9400547688,0.519155025463> <0.940103108959,0.517227863405><0.938521091181,0.517189182809><0.936939107681,0.517150578802><0.933775143811,0.517073650274><0.93368989234,0.520236782256> <0.933604595764,0.523399912313><0.930437582177,0.523326815908><0.930352450826,0.526490466378><0.930267283938,0.529653765515><0.927099393594,0.529581794318> <0.926920706054,0.535909163511><0.930088033002,0.535980491589><0.933255431163,0.536052177875><0.933195798042,0.538434941856><0.931604908483,0.538387723332> <0.931587688357,0.539179779007><0.928420542648,0.539108571311><0.926836958968,0.539072976217><0.926753199665,0.542236779169><0.923590342113,0.542160251428> <0.920427488766,0.542084088056><0.917263719866,0.542012080281><0.917222148085,0.543593673728><0.917206503969,0.544426157185><0.916051926212,0.545341228493> <0.913958275294,0.547885304147><0.913646044224,0.548264685978><0.912425244875,0.549748157795><0.912319108873,0.549708577955><0.91221364209,0.549667206746> <0.912108909706,0.549624054629><0.912004911242,0.549579139068><0.911901679278,0.549532465289><0.911799278652,0.549484056856><0.911697676517,0.549433917261> <0.911596970424,0.549382070934><0.911487833855,0.549323419423><0.909016859614,0.547965858424><0.907997821079,0.547408159283><0.907881884584,0.547334906919> <0.907768538829,0.547257741514><0.90765784692,0.547176752115><0.907550035558,0.547092032077><0.90744513468,0.547003687053><0.90734333828,0.546911809532> <0.907244708793,0.546816514764><0.907149407045,0.546717911847><0.907057528202,0.546616116889><0.906729433256,0.546242329232><0.905215500924,0.543803392023> <0.900896736124,0.545478515584><0.898087352407,0.547791892824><0.898021089884,0.547704911993><0.897964013255,0.547638607326><0.897903548851,0.547575414112> <0.89783979006,0.547515518368><0.897772929217,0.547459078086><0.897703191155,0.547406260841><0.897630768678,0.547357207152><0.89755582176,0.547312061055> <0.897478609101,0.547270947294><0.897399324311,0.54723397581><0.897318193608,0.547201261755><0.897235444119,0.547172885343><0.897151302864,0.547148931148> <0.89706602992,0.547129471491><0.896979820614,0.547114550782><0.896892935595,0.547104219498><0.896805636195,0.547098501904><0.89671818397,0.547097413527> <0.896630775157,0.547100963826><0.89654367222,0.54710913338><0.896457137507,0.547121907132><0.896371368611,0.547139242121><0.896286661276,0.547161097927> <0.896203246371,0.547187410591><0.896121322386,0.547218102201><0.896041153471,0.547253087804><0.89596293856,0.547292272014><0.895886909755,0.547335542817> <0.89581326666,0.547382778618><0.895742241822,0.547433849929><0.895674002683,0.547488612465><0.895608782569,0.547546906164><0.895546749142,0.547608578003> <0.89548803813,0.547673443538><0.895166183704,0.548127447574><0.894726880759,0.548633158545><0.894334366925,0.547831228773><0.894163653125,0.547763406192> <0.890147562432,0.546600451709><0.889469017804,0.54674771633><0.889230418635,0.547142850663><0.890103772769,0.548311674188><0.890148479908,0.548271407527> <0.88930256822,0.547139296549><0.889506974401,0.546800806138><0.890145450607,0.546662232793><0.894139305729,0.547818742987><0.894631331683,0.548752916496> <0.893386026476,0.55021212169><0.893081230964,0.550798956259><0.892713811452,0.550864989134><0.892215275698,0.551551107928><0.892174332841,0.551979886789> <0.892141318521,0.552039013731><0.892129891749,0.552199073387><0.891872275534,0.551978305682><0.890646144811,0.550977109652><0.890153775157,0.551580881438> <0.890139827577,0.55156953943><0.889888707755,0.551878432075><0.889847056211,0.55194139971><0.889818476533,0.552002662304><0.889797709382,0.552075808376> <0.889793170977,0.552146679272><0.889790485048,0.552202785766><0.890622542621,0.55222894792><0.890725440636,0.55231220331><0.890717340069,0.552624415848> <0.89112429668,0.552634940378><0.89122272382,0.552637488226><0.891677667558,0.552649256677><0.891768480169,0.552722453828><0.891839032707,0.552786689365> <0.891921052196,0.553251724021><0.891981347057,0.553266866815><0.891766802245,0.555435090491><0.890555856659,0.555393925505><0.888972675648,0.555337665709> <0.888893459975,0.558496103673><0.88879467708,0.561647687834><0.891154436749,0.561713628175><0.891174096435,0.561900521085><0.891180526727,0.562029376162> <0.891183892448,0.562170486238><0.891183765531,0.562288407433><0.89118231123,0.562362609789><0.891180163206,0.562428179719><0.891175381548,0.562526107619> <0.891168984854,0.562620680945><0.891161788551,0.562705653204><0.891153871602,0.562784308786><0.891146281239,0.562850293534><0.891138733681,0.562909539846> <0.891129980948,0.562972382739><0.891119704671,0.563039749327><0.891110086635,0.563098081267><0.891098828846,0.563161637583><0.891085507079,0.563231644238> <0.891072180638,0.563296755649><0.891059627191,0.563354727862><0.891047420637,0.563408128578><0.891032760731,0.563469123453><0.891014193973,0.563542058796> <0.890998452663,0.563600582624><0.890981018706,0.563662576844><0.890960409065,0.563732264627><0.890941532201,0.563793120281><0.890924533233,0.563845859959> <0.890910705245,0.563887282696><0.89089213638,0.563941271281><0.890874780524,0.563990090055><0.890856202363,0.564040634347><0.890836438657,0.564092747761> <0.8908090966,0.564162157279><0.89078535069,0.56422025644><0.890747188534,0.564309610246><0.890724892272,0.56435970917><0.890693419296,0.56442819068> <0.890664259893,0.56448942409><0.890631119787,0.564556586483><0.890601933344,0.564613798253><0.890565746803,0.564682381375><0.89053487364,0.564739034023> <0.890504010641,0.564794026114><0.890474327746,0.564837501375><0.890288991432,0.564829337439><0.888696536256,0.564777810401><0.88866201681,0.566372361812> <0.888645443103,0.567046744499><0.88859458002,0.567106211432><0.888533904817,0.567179595981><0.888487391186,0.567236600512><0.888431934789,0.567305521404> <0.888397249893,0.567349084248><0.888357479425,0.567399592573><0.888325139845,0.567441012931><0.888278236564,0.567501757761><0.888240049038,0.567551791147> <0.888191143907,0.567616614945><0.888152450414,0.567668527926><0.888103910183,0.567734445143><0.888053481215,0.567803854154><0.888006384194,0.567869642483> <0.887976886463,0.567911271632><0.887941808075,0.567961297769><0.887892004102,0.568033153143><0.887864235319,0.568073712261><0.887823398564,0.568133975345> <0.887784890304,0.56819147044><0.887747590182,0.56824396162><0.887719887294,0.568284518181><0.887691395979,0.568327755581><0.887658116152,0.568380398105> <0.887620322377,0.568443222041><0.887589871358,0.568496549104><0.88755986713,0.568551592203><0.887521920483,0.568625491871><0.887494354391,0.568682420131> <0.887473845803,0.568726937688><0.887450048723,0.568781051837><0.887430495793,0.56882785355><0.887400818945,0.568903316018><0.887374452344,0.56897599192> <0.887344026712,0.569067903752><0.887328445977,0.56911927856><0.887305857374,0.569200272567><0.887283635517,0.569289929835><0.887266541242,0.56936843804> <0.887251258806,0.56944900758><0.887236531459,0.569541099226><0.887228609802,0.569599973829><0.887219002701,0.569687577049><0.887213482995,0.569753563082> <0.887208598523,0.569835596871><0.887206410671,0.569897944584><0.887205474704,0.569989284187><0.887207236056,0.570078765526><0.88721100577,0.570157537891> <0.887217180915,0.570240729473><0.887225599333,0.570323183143><0.887237031029,0.570410587361><0.887250762052,0.570496341652><0.887266898722,0.570581401545> <0.887286792157,0.570671754502><0.887311752756,0.570769872961><0.887335625661,0.570853002883><0.887357772878,0.570923064083><0.887388047937,0.571010366186> <0.887418596458,0.571090826571><0.887458868747,0.571187515532><0.887479439992,0.571233559141><0.887553181037,0.571359323897><0.887634700938,0.571500598872> <0.887709716704,0.57163271679><0.887769078596,0.571738764354><0.887825624478,0.571841085925><0.887892600085,0.571963959558><0.887950167189,0.572071058548> <0.887990823671,0.572147557269><0.888073174116,0.572304707464><0.888106672296,0.572369519028><0.888153703835,0.57244738371><0.888206282789,0.57253975729> <0.88825483224,0.572627267845><0.888305068621,0.572717855071><0.888356306329,0.572810194542><0.888390424433,0.572868650059><0.888438273137,0.572957926226> <0.888474972407,0.57302411431><0.888534287069,0.573133034192><0.888575333358,0.573215872689><0.888574142011,0.573245680474><0.888571938267,0.573275427273> <0.888568722804,0.573305086879><0.888564496747,0.573334615616><0.888559260773,0.573363987276><0.888553048582,0.573393163391><0.888545828389,0.573422108179> <0.888537633669,0.573450791906><0.888528465212,0.573479184><0.888518356715,0.57350724599><0.888507276283,0.573534946464><0.888495257501,0.57356225132> <0.888482333731,0.573589135194><0.888468505876,0.573615563143><0.888453774721,0.573641504596><0.888438173629,0.573666934186><0.888421703612,0.573691812606> <0.888404397918,0.573716118858><0.888386290022,0.573739823209><0.88836738071,0.573762895086><0.888347703231,0.573785313493><0.88832725837,0.573807047855> <0.888306112174,0.573828073649><0.888284232518,0.573848368196><0.888261718135,0.573867907812><0.888238504325,0.573886664612><0.888214689482,0.573904628013> <0.888190274392,0.573921767443><0.888165292188,0.573938066272><0.888139776005,0.57395350787><0.887577777317,0.574271402507><0.885308721261,0.574209971387> <0.885250683354,0.576223674779><0.882592009684,0.577300459356><0.880488907143,0.577234684409><0.878915443102,0.577185281569><0.878832044482,0.580343849363> <0.875677711212,0.580256002112><0.875630919614,0.581982921571><0.87465568286,0.582417665662><0.874547931821,0.586582462869><0.875498965274,0.586605831529> <0.87540541912,0.58973513128><0.875321868181,0.592900582632><0.875238471694,0.59605950758><0.875137839664,0.599234114864><0.875037136096,0.602411285116> <0.878236886259,0.602488389062><0.881372435137,0.602572284897><0.884529315912,0.602658022538><0.887693860953,0.602752329313><0.890871598775,0.602827037308> <0.916862577403,0.551327189468><0.915820948319,0.551889506137><0.915797241701,0.55177906599><0.915772747264,0.551687141688><0.915744194502,0.551596403149> <0.915711644273,0.551507022469><0.915675124491,0.551419179611><0.915634761331,0.551333052787><0.915590550467,0.551248803619><0.915542683506,0.551166612061> <0.915491189076,0.551086631875><0.915436161118,0.55100902293><0.915377759238,0.550933938105><0.915316077502,0.550861532904><0.915251210447,0.550791945358> <0.915183318155,0.550725310874><0.91511252777,0.550661772722><0.915038967251,0.550601443598><0.914962796929,0.55054445017><0.914884177486,0.550490906002> <0.915191324409,0.550448949909><0.916125383636,0.551311018773><0.916862577403,0.551327189468><0.902487558259,0.558515140602><0.900689442948,0.557160968264> <0.900761555483,0.557065221605><0.900474312258,0.556848901006><0.900402233072,0.556944644865><0.898764269838,0.555711073277><0.898039584018,0.555165315148> <0.898183799357,0.55497382629><0.897896548709,0.554757503788><0.897752334426,0.554948994075><0.897338467571,0.554637287781><0.897378098061,0.554584627687> <0.896707904339,0.554079881905><0.896743940455,0.554032009727><0.895783232799,0.553308471229><0.895927440219,0.553116984236><0.895640219569,0.552900661579> <0.895417908602,0.553190888055><0.894754713138,0.552691422402><0.895091499241,0.552333791264><0.895107748912,0.552318084237><0.895159467548,0.549435315412> <0.895295162668,0.54936953171><0.895297862898,0.549265243377><0.897821464147,0.548025603249><0.897883863467,0.548091154337><0.897949923921,0.548153129338> <0.89801922247,0.548211429873><0.89809159997,0.548265881371><0.898166831396,0.548316325032><0.898244691499,0.54836261079><0.898324954585,0.548404606047> <0.898407362131,0.548442181723><0.898491687884,0.548475227053><0.898577672423,0.548503647892><0.898665088706,0.548527364045><0.898753676864,0.548546298834> <0.898843143747,0.548560396561><0.898933228468,0.548569619849><0.89902370263,0.548573940905><0.899114272062,0.548573343331><0.899204674857,0.548567829051> <0.899294648537,0.548557421822><0.899383930736,0.54854214103><0.899472258064,0.548522045369><0.899559334752,0.548497179573><0.899644962267,0.548467625872> <0.89972884381,0.548433468303><0.899810747554,0.548394810079><0.899890441441,0.548351763143><0.899967660237,0.548304456055><0.900042236737,0.548253024301> <0.900113872295,0.548197621791><0.900182431614,0.548138415434><0.900247648414,0.548075573093><0.900309386702,0.548009287884><0.900367412446,0.547939745993> <0.900421589187,0.547867158005><0.9004717148,0.547791741536><0.90051771825,0.547713708876><0.900559396831,0.547633299481><0.900606356723,0.547534928769> <0.900653058243,0.547446477252><0.900703632945,0.547360167931><0.90075797803,0.547276177341><0.900815958324,0.547194668065><0.900877504307,0.547115795655> <0.900942448304,0.547039713105><0.90101068807,0.546966575115><0.901082089094,0.546896518062><0.901156516746,0.546829682689><0.901233836731,0.546766196637> <0.901313882149,0.546706182325><0.901396453374,0.546649761316><0.901481482219,0.546597036749><0.901568736558,0.546548120597><0.901658083102,0.546503101186> <0.901749290401,0.546462064277><0.901842257875,0.546425099048><0.904167449134,0.545609645659><0.904216502107,0.545584452947><0.904296918096,0.545548171874> <0.904379427958,0.545516959125><0.904463733633,0.545490942401><0.904549472414,0.54547021711><0.904636347375,0.54545486727><0.904724029666,0.545444945462> <0.904812125112,0.54544049818><0.904900338609,0.545441539546><0.904988310072,0.54544806449><0.90507571271,0.545460046957><0.905162220189,0.545477443419> <0.90524744131,0.545500186787><0.905331116561,0.545528182827><0.905412855552,0.545561333868><0.905492399924,0.545599501993><0.905569425997,0.545642543196> <0.90564361067,0.545690291628><0.905705102338,0.545735119543><0.905739996351,0.545762902662><0.905807080251,0.545821689213><0.906743737357,0.546750552497> <0.906809798371,0.546839355059><0.9068596377,0.546902564369><0.906910981397,0.546964585162><0.906963732223,0.547025379923><0.907017891098,0.547084913718> <0.90707345894,0.547143151613><0.90713040372,0.54720006655><0.907188660808,0.54725562624><0.907248198407,0.54730979489><0.907308984607,0.547362541071> <0.90737101987,0.547413847321><0.907434239801,0.547463672617><0.90749861226,0.547511994265><0.907564137944,0.547558786067><0.907630719396,0.547604019241> <0.907698357197,0.547647671955><0.907828478693,0.54772553681><0.907897568389,0.547763764809><0.908849480834,0.548270502013><0.911320466662,0.549628063063> <0.911435089683,0.549689665247><0.911532465692,0.549739893122><0.911618969468,0.549782809644><0.911607816874,0.549777444268><0.911624615476,0.549794607319> <0.911645547903,0.549818855631><0.911664641419,0.549844550094><0.911681834063,0.549871557939><0.911802228891,0.550104571703><0.911815943078,0.550121989766> <0.911831971585,0.550137314312><0.911858864422,0.550156519383><0.911879121583,0.550167926052><0.91190031107,0.550177504203><0.911922238565,0.550185174387> <0.911944774601,0.550190880728><0.91196772382,0.550194583086><0.91199092358,0.550196242187><0.912014177597,0.550195852832><0.91204010548,0.550193392624> <0.912052197642,0.550194176236><0.912068056071,0.550198613092><0.912095815655,0.550209807803><0.912122290029,0.550223792043><0.912130701121,0.550230064076> <0.91213720987,0.550237706229><0.912147614439,0.550253996538><0.912161960532,0.550272266354><0.912185190862,0.550295011247><0.912202762941,0.550308903953> <0.912221456011,0.550321261619><0.912241141415,0.550331997793><0.91226678987,0.55034255106><0.912286133283,0.550346424765><0.912305864175,0.550346794613> <0.912325328264,0.550343643268><0.912343933454,0.550337077421><0.912361084987,0.55032730422><0.912376185439,0.550314631272><0.912388831011,0.55029947184> <0.912398550615,0.55028230734><0.912454334482,0.550126702896><0.912444341913,0.550123282334><0.912544814091,0.550156628447><0.912649324662,0.550189526897> <0.912754369388,0.550220792112><0.912859850142,0.550250421495><0.912965799889,0.550278407183><0.913072186162,0.550304739576><0.913178943668,0.550329412577> <0.914110800049,0.550537221838><0.914169515396,0.550551365175><0.914227720009,0.550567479429><0.914285381395,0.550585554991><0.91434236938,0.550605562177> <0.914398651588,0.550627487009><0.914454163392,0.55065129717><0.914508839936,0.55067696908><0.914562616476,0.550704474786><0.914615428507,0.550733777605> <0.914667244001,0.550764850453><0.914717965855,0.550797651408><0.914767529447,0.550832148149><0.914815935817,0.550868301362><0.914863055149,0.55090606825> <0.914908921314,0.550945406001><0.914953404616,0.55098626745><0.9149964735,0.551028608044><0.915038096529,0.55107237886><0.915078209552,0.551117530108> <0.915116781135,0.551164012864><0.915153780076,0.551211769472><0.915189109513,0.55126074927><0.915222803675,0.55131089634><0.915254766051,0.551362146916> <0.915284965211,0.551414452078><0.915313402905,0.551467746303><0.915340015222,0.551521971063><0.915364771084,0.551577064335><0.915387672241,0.551632960597> <0.915408687501,0.551689602192><0.915427753306,0.551746917492><0.91544487141,0.551804840974><0.91546001062,0.551863314985><0.915473172925,0.551922265269> <0.91548436008,0.551981626305><0.91549644607,0.552063792146><0.914222452543,0.552750660424><0.911184335631,0.552680443196><0.911131413918,0.554464961355> <0.908838969043,0.555654427619><0.907929316706,0.555628145272><0.904767504141,0.555539205574><0.904738445406,0.557306271213><0.902487558259,0.558515140602> <0.916245802045,0.551014385791><0.915290742344,0.550132933865><0.914394134063,0.550255413103><0.914278511331,0.550220643689><0.914186433286,0.550197956172> <0.913254565882,0.549990144788><0.913083117154,0.549949414894><0.912912763992,0.549904392382><0.912743571288,0.549855096442><0.912575701618,0.549801566332> <0.912484465102,0.549770510504><0.913692342809,0.548302765282><0.914004541439,0.547923383083><0.916094133573,0.545384246637><0.917198432664,0.544505369116> <0.917180572761,0.545175285487><0.917097423015,0.548338131532><0.917025810807,0.551040870971><0.916245802045,0.551014385791><0.938811511739,0.545677504088> <0.938955543106,0.545680493506><0.938955696406,0.545680873622><0.939335432698,0.545689759797><0.939365205473,0.544556116004><0.940019923967,0.544573704332> <0.940035798528,0.543857512812><0.940063872576,0.542542147681><0.942439342745,0.542597314436><0.942391066109,0.544317401701><0.939327172255,0.546003829972> <0.939111659197,0.546132115645><0.938811511739,0.545677504088><0.912337328874,0.550085969398><0.912435744269,0.550120344567><0.912408978452,0.55011118206> <0.912352358087,0.550267476856><0.912345992999,0.550276652992><0.91233812297,0.550284556679><0.912328984062,0.550290927553><0.912318810716,0.5502955664> <0.912307999673,0.550298326384><0.912296880737,0.550299115717><0.912285781862,0.550297912494><0.912266713168,0.550291082657><0.912250404098,0.550282651929> <0.912220182881,0.550261815377><0.912199485588,0.55024231515><0.912188295478,0.550228491002><0.912178484727,0.550213265406><0.912165652099,0.550197181749> <0.912149591831,0.550184299445><0.91212045036,0.550168421896><0.912088299624,0.550154916691><0.912062735255,0.550147359837><0.912041408988,0.550145418123> <0.912002340595,0.55014835636><0.911964434096,0.550145743895><0.911927586604,0.550136520263><0.911892903917,0.550120959511><0.911864147133,0.550101674452> <0.911853502375,0.550091973458><0.911844234309,0.550080971456><0.911733857954,0.549866488377><0.911710485904,0.549826812><0.911674280034,0.549809410447> <0.911729564261,0.549835765903><0.911829189164,0.549881390754><0.911929509703,0.549925460908><0.912030526237,0.549967963268><0.912132173584,0.550008887372> <0.912234451875,0.550048228859><0.912337328874,0.550085969398><0.906000655834,0.54551235411><0.905924135126,0.545450076207><0.905885187688,0.545420783424> <0.905839729737,0.545388793452><0.905793316991,0.545358247062><0.905745981715,0.545329162587><0.905697723111,0.545301570608><0.905648638543,0.545275504278> <0.905598792999,0.545250982792><0.905548185798,0.545228032358><0.905496881815,0.545206676538><0.905444913318,0.545186933664><0.905392378018,0.545168823787> <0.905339308071,0.545152369606><0.905285736091,0.545137576352><0.905231759675,0.545124468439><0.905177378604,0.545113054606><0.905122658099,0.545103345308> <0.905067663266,0.545095355364><0.905012426836,0.545089085635><0.904957046866,0.545084543064><0.904901555856,0.545081737245><0.904845986652,0.545080664669> <0.904790437311,0.545081332276><0.904734907958,0.5450837357><0.904679496877,0.545087873145><0.904624236915,0.5450937411><0.904569193751,0.545101332544> <0.904514400343,0.545110639598><0.904459922256,0.545121659607><0.904405825512,0.545134372444><0.904352175675,0.545148775456><0.90429897344,0.545164842433> <0.904246317092,0.545182571575><0.904194207437,0.545201932306><0.904142775708,0.545222914949><0.904091989763,0.545245496802><0.904023364823,0.545279115237> <0.901716786886,0.546088118356><0.901609062666,0.546130953241><0.901503376807,0.546178496538><0.901399862617,0.546230659917><0.901298752014,0.546287340137> <0.901200244302,0.546348428734><0.901104539125,0.546413804136><0.901011803513,0.546483339551><0.900922237438,0.546556900303><0.900836008374,0.546634342126> <0.900753251185,0.546715515531><0.900674199224,0.546800260487><0.900598922248,0.546888412696><0.900527621106,0.546979802536><0.900460431549,0.547074245578> <0.900397489091,0.547171566128><0.900338896979,0.547271570169><0.90028475857,0.547374059317><0.900236209234,0.547475667107><0.900204797964,0.547536501542> <0.90017025605,0.547595611033><0.900132685869,0.547652836542><0.900092157192,0.547708013813><0.900048804769,0.547760997764><0.900002730627,0.547811642464> <0.899954069281,0.547859811567><0.899902955355,0.547905364361><0.899849555504,0.547948187191><0.899793971176,0.547988155964><0.899736368906,0.548025161392> <0.899676914885,0.54805910729><0.899615775302,0.548089897473><0.899553083398,0.548117443638><0.899489070107,0.548141677506><0.899423868096,0.548162532611> <0.899357642749,0.548179943337><0.899290624195,0.548193871976><0.899222944529,0.548204273895><0.899154833537,0.548211124487><0.899086455459,0.548214401806> <0.899017974193,0.548214097008><0.898949618727,0.548210216055><0.898881585335,0.548202764051><0.898814004402,0.548191761873><0.898747104235,0.548177241681> <0.898681047485,0.548159242667><0.898616029177,0.548137817977><0.898552211736,0.548113015535><0.898489789509,0.548084914691><0.898428891641,0.548053584353> <0.898369744973,0.548019113454><0.898312477859,0.547981601476><0.8982572516,0.547941140014><0.898204226817,0.547897846869><0.898153498588,0.54785184251> <0.901011240457,0.545498382073><0.905190806227,0.543877247846><0.9065538993,0.546073147014><0.906073753337,0.545579044198><0.906000655834,0.54551235411> <0.897784822288,0.547976731222><0.895080661055,0.549305394345><0.895025744609,0.549265559218><0.894839300535,0.54893560993><0.894799428543,0.548825447398> <0.895203633006,0.548350162252><0.895344637008,0.54820471209><0.895751214667,0.547919068369><0.895795870956,0.547868489713><0.895843149753,0.547820312998> <0.895892818534,0.547774667702><0.895944841186,0.547731684022><0.895999051068,0.547691475661><0.896055249041,0.547654146737><0.896113334005,0.547619808279> <0.896173139987,0.547588547783><0.896234500897,0.547560457109><0.896297218494,0.547535605429><0.896361159966,0.547514063613><0.896426160011,0.547495892943> <0.896492020945,0.547481140749><0.896558545311,0.547469845626><0.896625568594,0.547462038278><0.896692893672,0.547457744191><0.896760389312,0.547456973076> <0.896827793638,0.547459722515><0.896894975642,0.547465993478><0.896961739448,0.547475763401><0.897027922012,0.547489006198><0.897093294969,0.547505689716> <0.897157728788,0.547525758141><0.897220995333,0.54754917058><0.897282998359,0.547575850227><0.897343477585,0.547605733499><0.897402336996,0.547638734851> <0.897459415147,0.54767476704><0.897514485614,0.547713723649><0.897567485448,0.54775550688><0.897618221176,0.547800002428><0.8976665651,0.547847084586> <0.897712356811,0.547896626796><0.897784822288,0.547976731222><0.894605165144,0.549054492154><0.89483275935,0.549461685088><0.894892471469,0.549432578835> <0.895002696721,0.549739917695><0.894959011062,0.552257270735><0.894619131548,0.552616842603><0.894519109479,0.552522820539><0.894605338003,0.552388359102> <0.894516431842,0.552325188735><0.893836891217,0.551784231283><0.893705311263,0.551900363796><0.893034980828,0.551380810442><0.893702108453,0.550117659424> <0.894605165144,0.549054492154><0.893237188179,0.55185588452><0.893844746234,0.552311132861><0.893648912502,0.552581838145><0.894253208936,0.553005390742> <0.892607389785,0.55475303742><0.892618894709,0.554427725564><0.892583619056,0.554432483938><0.892607601785,0.55368958182><0.892126317821,0.553099302059> <0.892126355487,0.553099110722><0.892168474291,0.552638657424><0.892174947094,0.552456197227><0.892223128254,0.552262072215><0.892334942831,0.552258351978> <0.892857709797,0.551570347917><0.893237188179,0.55185588452><0.892528023558,0.553713979509><0.892508469602,0.554442616436><0.892481668069,0.554446229959> <0.892414894196,0.554455232657><0.892288124816,0.560830199389><0.891999597177,0.560657936948><0.892064614162,0.558601924869><0.892069489242,0.558393911581> <0.892085869506,0.557802050088><0.891700701987,0.557750233249><0.892115237915,0.553220524472><0.892528023558,0.553713979509><0.904347433738,0.560084658141> <0.901014419844,0.564944277392><0.898175694026,0.564858896075><0.898265180435,0.561695761481><0.895102005136,0.561618662868><0.892487033155,0.561053936526> <0.892613952011,0.555967289672><0.892652356003,0.555313754439><0.89274945017,0.555329551798><0.892756426038,0.55481333102><0.894672016512,0.552779208708> <0.895348182344,0.553288427217><0.895279674436,0.553379385262><0.896527627406,0.554319240892><0.89656369564,0.554271369348><0.897233886671,0.554776120532> <0.897266361899,0.554733034212><0.898696174176,0.555809835855><0.900330121538,0.557040392411><0.90031567971,0.557059539682><0.900602921773,0.557275858709> <0.900617331001,0.557256710728><0.902415250627,0.558629488554><0.904347433738,0.560084658141><0.901163276962,0.564939888907><0.903184985527,0.561992605147> <0.903382713209,0.562128139577><0.903586007238,0.561831544465><0.903388278131,0.561696013025><0.904412767381,0.560201371498><0.904473804183,0.560247353836> <0.904482882043,0.560245612093><0.904631658136,0.560457294068><0.904545048729,0.5634477041><0.902963889142,0.563405062751><0.902919122666,0.564986638078> <0.901163276962,0.564939888907><0.904518233621,0.560055742765><0.90445061749,0.560004814839><0.904447023074,0.560009598297><0.903267503904,0.559121280026> <0.903359388945,0.558999269324><0.903931087889,0.558692259205><0.90467938024,0.558702622149><0.904642812544,0.560032311242><0.904518233621,0.560055742765> <0.909701269484,0.555680367016><0.911100075679,0.555491994846><0.911094835891,0.555717180515><0.909701269484,0.555680367016><0.911103505711,0.555362394759> <0.909487504828,0.555597270187><0.911126176888,0.554740761054><0.911103505711,0.555362394759><0.914716589605,0.552759135381><0.915509202271,0.552331090118> <0.915503220036,0.552436548143><0.915491032285,0.552541473852><0.915472681678,0.552645496864><0.915448275838,0.552748266011><0.915443429208,0.552765554861> <0.915441784062,0.552774480063><0.914716589605,0.552759135381><0.91585582951,0.552368309126><0.915857531659,0.552294552575><0.915856648005,0.552220783992> <0.915853143487,0.552147089861><0.917010840026,0.55150159342><0.916975049503,0.552809271429><0.915796576324,0.552783920659><0.91580865073,0.552733697607> <0.915823212362,0.552661371814><0.915835233099,0.552588580618><0.915844677767,0.552515414869><0.91585154402,0.552441961921><0.91585582951,0.552368309126> <0.89780251368,0.578826002561><0.897837332984,0.577512811368><0.8993182752,0.577554886204><0.89780251368,0.578826002561><0.874752026882,0.582492039682> <0.875630091613,0.582107605533><0.875593507349,0.583417383213><0.875501808699,0.58652304635><0.874646655803,0.586501039347><0.874752026882,0.582492039682> <0.940073745239,0.529852096093><0.942748287454,0.529924683831><0.942575012987,0.536272754306><0.94117591771,0.536241274969><0.939594354121,0.536203245398> <0.9396804235,0.533040875127><0.939766480089,0.529878516913><0.940072134146,0.529912005042><0.940073745239,0.529852096093><0.940078643852,0.529672375416> <0.940080254927,0.529612466471><0.939774779347,0.529605799651><0.939852465587,0.526715906895><0.941434487031,0.526754284507><0.941477285798,0.525172963699> <0.941492756768,0.524586086944><0.942887105893,0.52476697098><0.942753137662,0.529744961225><0.940078643852,0.529672375416><0.942891980879,0.524586305249> <0.941497328759,0.524405386987><0.941535272367,0.523661363953><0.941649349593,0.519784893329><0.943008948868,0.520240307607><0.942891980879,0.524586305249> pigment {rgbt <1,0,0,perTrans>}} prism { linear_spline 0,pheight,492 <0.303057741402,0.555284144277> <0.301477693543,0.555257622302><0.298313225723,0.555243511487><0.296783203119,0.555237372738><0.296789291316,0.552055827087><0.295207726305,0.552049581129> <0.295227981976,0.550486620499><0.295289462646,0.545743036486><0.296874125328,0.545750206123><0.296869739046,0.544400717714><0.298052460797,0.544422369455> <0.298052151844,0.544236318339><0.298447250948,0.544239982402><0.298446012979,0.541276525869><0.298453982637,0.539056758412><0.299633241496,0.539069482832> <0.299637647041,0.53865614987><0.299457832493,0.538534248442><0.300235773358,0.538338614629><0.300287229625,0.538325821898><0.300309271957,0.538320554533> <0.300331379042,0.538315431617><0.300353485389,0.538310465945><0.30037562396,0.538305605261><0.300397794383,0.538300928179><0.300419996802,0.538296404128> <0.300442231195,0.538292037475><0.300464530319,0.53828781964><0.30048679603,0.538283750158><0.300509126471,0.538279829494><0.300531456004,0.538276101012> <0.300553850474,0.538272477676><0.300576244244,0.538269002848><0.300621094862,0.538262551434><0.300643584464,0.538259566271><0.30066604063,0.538256733827> <0.300688561523,0.538254050203><0.300711081672,0.538251523821><0.300733633875,0.538249137369><0.300756185332,0.53824690816><0.300778768822,0.538244823248> <0.3008013514,0.538242930518><0.300823933419,0.538241155724><0.300846547344,0.538239551432><0.300869160647,0.538238078179><0.300891805814,0.538236784161> <0.300914417582,0.538235634129><0.30093706115,0.538234676434><0.300959704199,0.538233827942><0.300982379234,0.538233132482><0.30100502064,0.538232629047> <0.301027694053,0.538232274278><0.3010503668,0.538232059282><0.301073006082,0.538232001373><0.301095677516,0.538232061557><0.301118347907,0.538232340127> <0.301140985083,0.538232723377><0.301163654056,0.538233298964><0.301186322443,0.538233996856><0.301208989974,0.538234873828><0.301231591323,0.53823590773> <0.301254224717,0.538237081563><0.301276857233,0.538238438843><0.301299456427,0.538239922638><0.301322054971,0.538241541839><0.301344685308,0.538243353379> <0.301367249461,0.538245321849><0.301389780227,0.538247429936><0.301442524155,0.538252835945><0.302315615169,0.53834430782><0.302340613345,0.538105886212> <0.301467547902,0.538014374464><0.301412939517,0.538008806631><0.301388740667,0.538006572625><0.30136450841,0.538004482607><0.301340308196,0.538002532521> <0.301316041609,0.538000778675><0.301291807066,0.537999164761><0.301267538825,0.537997755978><0.301243269955,0.537996478236><0.301218967617,0.537995357584> <0.301194697094,0.537994424906><0.30117039298,0.537993675522><0.301146120828,0.537993083539><0.301121815231,0.537992644279><0.301097508945,0.537992349163> <0.301073234332,0.537992272592><0.301048926441,0.537992313805><0.301024584939,0.537992542679><0.301000275278,0.537992955159><0.300975997583,0.537993525042> <0.300951719201,0.537994239068><0.300927439926,0.537995140911><0.300903159945,0.537996191266><0.30087887907,0.537997429438><0.300854597449,0.537998824856> <0.300830380573,0.538000364729><0.300806097417,0.538002083373><0.300781878883,0.538003972677><0.300757659563,0.538006027962><0.300733472149,0.53800825375> <0.300709251235,0.538010645363><0.30068512768,0.538013203423><0.300660970729,0.538015905471><0.300636812911,0.538018790969><0.300612719799,0.538021829657> <0.30058862578,0.538025060529><0.300564563774,0.538028440067><0.300540533784,0.538031968272><0.300516470213,0.538035679771><0.300492504046,0.538039548981> <0.30046850432,0.538043597119><0.300444602164,0.538047768029><0.30042069902,0.538052148593><0.300396795283,0.53805665583><0.30037295609,0.538061351195> <0.300349148937,0.538066190858><0.300325340921,0.538071213971><0.300301630333,0.538076390426><0.300277886293,0.538081723972><0.300254239557,0.538087237065> <0.300230592084,0.538092907402><0.29845450431,0.538539907292><0.298456732161,0.538112837311><0.298467447775,0.534949266288><0.298474264643,0.534149771085> <0.295316780458,0.534122157754><0.295330372388,0.53174079818><0.295348341078,0.528580000457><0.293767253119,0.528560242292><0.293770068152,0.527783721468> <0.292187221195,0.52776681343><0.292192292677,0.526958822778><0.292198453196,0.525377169933><0.291396442584,0.525368054207><0.291404054124,0.523581315066> <0.291974554393,0.524337255719><0.292181529418,0.524216273065><0.291121270586,0.522397268182><0.291084964775,0.522279563304><0.291065012459,0.522201923058> <0.292210740234,0.5222137448><0.292216034656,0.520782094332><0.292222876188,0.520782133529><0.292318210183,0.520794939811><0.292379650029,0.520810643741> <0.292861643131,0.520964931321><0.293242521778,0.521087974088><0.293382286467,0.521134835323><0.293557931348,0.521188283174><0.293776822928,0.521262515062> <0.293992805496,0.521328275837><0.294202615522,0.521397888625><0.29440786246,0.521462913993><0.294740845559,0.521569718672><0.294925543674,0.521632352875> <0.295015868464,0.521658850504><0.295066041857,0.521675103012><0.295138968132,0.521705172978><0.295209656454,0.521730664608><0.295278011636,0.521765278053> <0.295366892031,0.521806850935><0.295458009935,0.521852998278><0.295574225027,0.52190841477><0.295781589274,0.522009980291><0.295909206041,0.522070027456> <0.296046792588,0.522140157292><0.2961721274,0.522197906659><0.296288318706,0.52225788998><0.296388598897,0.522304086861><0.296534435957,0.522373361748> <0.296597569708,0.522403831534><0.296661349524,0.52243613876><0.296722891721,0.522463863117><0.296782131958,0.522493861148><0.296855054338,0.522523931217> <0.29690290225,0.522547020044><0.296984978954,0.522579421273><0.297071638028,0.522611848305><0.29716511585,0.52264202737><0.297226688823,0.522662904856> <0.297297394064,0.522683833524><0.29734394166,0.522697780426><0.297412376635,0.522714130534><0.297476251148,0.522732735078><0.297544707171,0.522744517278> <0.297604042319,0.522760816876><0.297677091389,0.522770336566><0.297793501076,0.522789225315><0.298245552147,0.522844155496><0.299084531583,0.522949547712> <0.300652038933,0.523145146386><0.30074059783,0.523155429072><0.300882153086,0.523172170411><0.300994020314,0.523188749154><0.301117278121,0.523205391399> <0.301201726644,0.523219538583><0.301270190983,0.5232358895><0.301368332175,0.523254679636><0.301459566807,0.523280280861><0.301541669092,0.523305834324> <0.301639766168,0.523333753137><0.301726385039,0.523366181272><0.301835839403,0.523407864565><0.301920177438,0.523444846335><0.302009053997,0.523484134318> <0.30208084024,0.523517387673><0.302142298302,0.523554242754><0.302222020154,0.523598051395><0.302329082851,0.523660265178><0.302429238496,0.523729294251> <0.302565800681,0.52382363377><0.302677257481,0.523910991582><0.302777323203,0.523998286108><0.302896530082,0.524093661539><0.303064813313,0.524233831512> <0.303208111691,0.524355603752><0.303367315347,0.524484315114><0.303541067144,0.524629759819><0.303695739918,0.524760722153><0.303834484021,0.524875623007> <0.303968667069,0.524985929633><0.304024376668,0.525032570176><0.304085794862,0.525083125684><0.30414265292,0.525129095111><0.304210877776,0.525186536614> <0.304299655827,0.525250939887><0.304395207749,0.525322229062><0.304481693907,0.525386617356><0.304568873383,0.525443012524><0.304650810206,0.525500526572> <0.304746437862,0.525562685009><0.304839796466,0.525620259939><0.304965030201,0.525698557859><0.305081143968,0.525767674864><0.305208667435,0.525845980763> <0.305372603208,0.525947316891><0.306117659134,0.526404268775><0.30624441878,0.526199464587><0.30531536762,0.525632841266><0.305216554144,0.525566559822> <0.305093589127,0.525492840276><0.305022997296,0.525451365462><0.304931929561,0.525393801168><0.304868177705,0.52535236467><0.304783927446,0.525299402636> <0.304704259027,0.525246463296><0.304633699551,0.525198137114><0.304560871074,0.525145236035><0.304462995136,0.525073934945><0.304303733556,0.524952078242> <0.304210504658,0.52487395259><0.304056745055,0.524750992997><0.303943016406,0.52465449497><0.303831599749,0.524560288469><0.303763383703,0.524500563795> <0.303656449368,0.524413232319><0.303549558192,0.524323617296><0.30344041899,0.524231707612><0.303322136552,0.524135185695><0.303199293098,0.524034069488> <0.303143569095,0.523989714732><0.30306625138,0.52392309085><0.302998021166,0.523865643445><0.302918444303,0.523799009054><0.302866120189,0.523755348246> <0.302802438457,0.523704780179><0.302761471127,0.523674879434><0.302704607876,0.52362891285><0.302643162015,0.52358292428><0.302585582364,0.523542898569> <0.302524114129,0.523501474128><0.302467206173,0.523464635761><0.302398896671,0.523423174277><0.302321465798,0.523379380532><0.302248573413,0.523337897366> <0.302164257432,0.523296346382><0.302066292146,0.523247877589><0.301977414914,0.523208589433><0.301928418822,0.523187102375><0.301850888173,0.523157005738> <0.301773379146,0.523129193589><0.301670775464,0.523092116065><0.301584090159,0.523066540301><0.301467749418,0.52303395302><0.301367370819,0.523010583521> <0.301246425296,0.522982539126><0.301079807181,0.522956535427><0.300924557872,0.522935155189><0.300789864335,0.522920739196><0.299672136458,0.522780057919> <0.299300689094,0.522736297689><0.29910892936,0.522710156835><0.298923988952,0.522688621977><0.298761895596,0.522667208474><0.298650036485,0.522655193892> <0.298474238493,0.522631420627><0.298267649481,0.522605203085><0.298162631052,0.52259322674><0.298025664683,0.522574227587><0.297909232986,0.522559906116> <0.297822468452,0.522550313288><0.297760842576,0.522540850708><0.297694644706,0.522529078484><0.297642140545,0.522521951458><0.297575953189,0.522507895397> <0.297518930901,0.522493895131><0.297479009763,0.522483870066><0.297342116522,0.522448889803><0.297273691424,0.522430260125><0.297189302172,0.522402411313> <0.29709127268,0.522365354264><0.29697503071,0.522316788192><0.29687243911,0.522275142499><0.296760810636,0.522219750505><0.296633217342,0.522155139974> <0.296471889012,0.522080316517><0.296301027823,0.521992644876><0.296132382257,0.52191411674><0.295936421605,0.521817173609><0.29570856383,0.521708651945> <0.295608301329,0.521657884917><0.295514891682,0.521611722256><0.295405495752,0.521560909854><0.295312064634,0.52151931173><0.295239105321,0.521489241172> <0.295175300931,0.521461505424><0.295056729466,0.521419776115><0.294931757874,0.521381673725><0.294778987426,0.521330627193><0.294601118082,0.521270313493> <0.29436163882,0.521195973205><0.294147224216,0.521130902384><0.29392605145,0.52105437317><0.293512115484,0.520923402783><0.293133516914,0.520802655146> <0.292743543862,0.52067728472><0.292564315908,0.520618794739><0.292486780903,0.52059326615><0.292329378345,0.520551327121><0.292260851739,0.520546396727> <0.292216974499,0.520541602444><0.292222744415,0.519047134191><0.292226610562,0.517994889181><0.292794921694,0.518002106826><0.292805089719,0.516262796451> <0.292233597889,0.516256150031><0.292234713694,0.515880453184><0.293592232142,0.515893796095><0.293590463044,0.516432490593><0.295391989227,0.516451459382> <0.29539310315,0.515913207128><0.295398626251,0.514329736028><0.295404148642,0.512746265927><0.293825037169,0.51273026124><0.292245957945,0.512714257734> <0.292257232108,0.509548105727><0.29227295728,0.506367377341><0.292291008129,0.503200997091><0.292302770046,0.500034164858><0.28914147661,0.50000469704> <0.285980148816,0.499975233553><0.285970249852,0.503140287386><0.285955564953,0.506305683121><0.285941202319,0.509487431339><0.285929566284,0.512651201467> <0.285923731041,0.514233085773><0.285917895259,0.515814962341><0.282760710257,0.51578220873><0.2827494282,0.51894490749><0.282738177828,0.522107317757> <0.282726505108,0.525268420056><0.282720652301,0.526848795754><0.282714798937,0.528429176814><0.282702797569,0.531589582583><0.282690827839,0.534749747894> <0.283440796388,0.534754070129><0.283431479975,0.536338246085><0.284264527598,0.536345747859><0.284259045117,0.537925005794><0.284248046624,0.541083293037> <0.284231668792,0.545661789561><0.284198080043,0.545661614318><0.284191028852,0.547240229549><0.284176990887,0.550397397753><0.284170003924,0.551975994399> <0.284162556885,0.553555044334><0.284155142238,0.555134077928><0.28414769472,0.556713064338><0.284140279556,0.558292043142><0.28413315975,0.559870657308> <0.285282254194,0.559891092169><0.285273066443,0.561874620767><0.285661588019,0.561875328449><0.285655593159,0.563059579749><0.285648214095,0.564640148511> <0.287225951954,0.564655962444><0.287214013107,0.56781911189><0.287202109543,0.570981121199><0.287196997967,0.57414354363><0.288771448966,0.574161400846> <0.28885133134,0.574162307405><0.288853563165,0.573641942221><0.290850368486,0.572452132768><0.29094107703,0.572400058506><0.291033244443,0.572350663907> <0.291126772701,0.572303944185><0.291221694149,0.572259969377><0.291317780021,0.572218742849><0.291415029985,0.572180334491><0.291513378783,0.572144717821> <0.291612695281,0.572111983984><0.291712914179,0.572082115231><0.291813969672,0.572055207362><0.292947181114,0.571768945966><0.293053463843,0.571742777947> <0.293159297283,0.571714839465><0.293264648442,0.571685204613><0.293369517435,0.57165385155><0.293473871665,0.571620767019><0.293577678314,0.571585985806> <0.293680839372,0.571549507463><0.293783420147,0.571511345379><0.293885387802,0.571471538709><0.293986677256,0.571430030371><0.294087255512,0.571386894456> <0.294187122664,0.571342113488><0.294161881573,0.571287763185><0.294273461775,0.571232649767><0.294384006332,0.571175431309><0.294493416915,0.571116177231> <0.294601726357,0.571054857096><0.294708869021,0.570991536104><0.294814812406,0.570926179155><0.294919490813,0.57085886455><0.29502287146,0.57078961833> <0.295124954456,0.570718418643><0.295225674219,0.570645317585><0.295324997982,0.57057033683><0.295422925394,0.570493554975><0.295519358889,0.570414871106> <0.295614297894,0.570334411864><0.295707742252,0.570252212171><0.295799594056,0.570168245359><0.295889885544,0.570082607645><0.295978518865,0.569995259256> <0.296065526457,0.569906252736><0.29615084268,0.569815648913><0.298068729222,0.567765450513><0.298152478509,0.567677238776><0.298237757428,0.567590501933> <0.298324467979,0.567505230803><0.298412675461,0.567421438808><0.298502281423,0.56733921285><0.298501666369,0.567421524367><0.298571606672,0.567358410273> <0.298642360081,0.567296199878><0.298713958927,0.567234967588><0.298786337991,0.567174682529><0.298859529766,0.567115384168><0.29893353427,0.567057068144> <0.299008286139,0.566999734155><0.299083785247,0.566943408412><0.299160031465,0.566888117125><0.299237024914,0.566833834096><0.29931473264,0.566780615952> <0.299393154887,0.566728410292><0.299472258948,0.566677221333><0.299552044426,0.566627132062><0.299632511336,0.566578138118><0.299713594536,0.566530191155> <0.299795293814,0.566483334853><0.299877674443,0.566437586996><0.299960638498,0.566392920922><0.300044153039,0.566349388888><0.300128283487,0.566306978108> <0.300212931725,0.566265701224><0.300298163276,0.566225523612><0.300383912457,0.566186510478><0.300470146557,0.566148666037><0.30055693118,0.566111938197> <0.300644167834,0.566076418211><0.300731889548,0.566042031993><0.300820030572,0.56600885785><0.300908656532,0.56597683932><0.300921232686,0.564712855435> <0.301437320371,0.564713129208><0.303019353055,0.564719525816><0.303033220627,0.561592169805><0.303040241838,0.560010285573><0.303047262681,0.558428349928> <0.303057741402,0.555284144277> pigment {rgbt <1,0,0,perTrans>}} prism { linear_spline 0,pheight,341 <0.866729492016,0.559418850595> <0.866750166367,0.558458334904><0.86753213499,0.558480488679><0.867548698424,0.557868446744><0.868346879768,0.557888115617><0.8699260483,0.557932016886> <0.873085295236,0.558016441808><0.873149195773,0.555506429833><0.873385148679,0.555551254704><0.873587203354,0.555624402537><0.873794629416,0.555645280485> <0.874020190164,0.555685527123><0.874209372107,0.555755112931><0.874516869613,0.55575420521><0.874677734842,0.555792829099><0.874977342327,0.555847910483> <0.875113641127,0.555834053627><0.875225233303,0.555772032764><0.875440315846,0.555842279548><0.875700369399,0.555926628959><0.875889008849,0.556004555986> <0.876127334473,0.556083497243><0.876117849413,0.55656979109><0.877529025187,0.55661909076><0.877550355572,0.555850270643><0.876686602134,0.555834942787> <0.876647528009,0.555729820364><0.87654358412,0.555430299592><0.876345734918,0.554941592802><0.876328869489,0.554940699643><0.87640989891,0.551789787121> <0.879319926922,0.551870483779><0.88248136334,0.551960945175><0.882555861502,0.54900946025><0.884142013572,0.54906134945><0.884177314591,0.547507187389> <0.88576460952,0.547557562052><0.885821795001,0.544378530054><0.888987646754,0.544457587995><0.889050616981,0.541296102123><0.892213994381,0.54137235339> <0.893795684404,0.541410612423><0.89427713879,0.541419884448><0.894679810539,0.541897627088><0.894888901163,0.542288458895><0.894946658702,0.542639320098> <0.894947216374,0.543048173302><0.894926291378,0.543426733022><0.894845841085,0.543736856043><0.894715169632,0.544053110546><0.894511930313,0.544374928112> <0.894211701096,0.54478715562><0.894047441332,0.544978213007><0.893474340876,0.545336593051><0.893580010424,0.545521205581><0.893759473271,0.545394126887> <0.893931012254,0.545301346363><0.893962575128,0.545443276669><0.894094378166,0.545720009136><0.894182732691,0.54585481478><0.894301658001,0.546017801816> <0.895244522693,0.547146187107><0.895228098007,0.547769305909><0.895436662155,0.547777454786><0.895277030964,0.547884830357><0.895224402642,0.547931029433> <0.895158162269,0.5480667588><0.895151841305,0.548106062211><0.89429681626,0.549140482438><0.893667709247,0.549809514221><0.893798743979,0.549932729872> <0.894429769956,0.549261683262><0.89521400778,0.548314875525><0.895334086207,0.548301161583><0.895499802008,0.548152173618><0.89584049121,0.547927980939> <0.896026122888,0.547783825642><0.896805778945,0.54780731026><0.898383460802,0.54784540314><0.898420960166,0.546266974692><0.898431241833,0.54592184884> <0.899009380183,0.545660337736><0.899288721581,0.545498430275><0.899600807636,0.545375534075><0.899682332717,0.545434724954><0.899769392943,0.545574297422> <0.899996389276,0.545860939771><0.900198946394,0.54610774658><0.9003265746,0.546199330311><0.900468775352,0.546246818312><0.900544546756,0.54617490701> <0.900569602186,0.545987471498><0.900636860682,0.545727245311><0.900693330767,0.54536597578><0.900817116501,0.544846664571><0.900971190074,0.544460554149> <0.901152871082,0.544084456739><0.901376551907,0.543700164164><0.901565579666,0.543439389396><0.901697806118,0.543276164238><0.901831247277,0.543082778495> <0.901974380373,0.542846852803><0.902116142619,0.54266224337><0.902273903455,0.542520854882><0.902448780305,0.542379910081><0.902614670896,0.542255851476> <0.902754874869,0.542131122262><0.902886539269,0.542006166029><0.902951759054,0.541802443387><0.902923377439,0.541579148886><0.902883514013,0.541466832629> <0.903078687668,0.541531849872><0.903266405495,0.541553875422><0.903480707047,0.541542357613><0.903679237346,0.541479068293><0.903869642667,0.541398447489> <0.904044501941,0.541257506939><0.90425404146,0.541100351231><0.904403056827,0.540967289306><0.904310283654,0.540913507353><0.904118081615,0.541062558881> <0.903795776322,0.541276686083><0.90352661153,0.541423722422><0.903260549483,0.541451006021><0.903073469297,0.541403319277><0.902761238564,0.541232525876> <0.902560650506,0.541047533391><0.902370835759,0.540777228027><0.902223822358,0.540508037733><0.902069125206,0.540204412033><0.901947506903,0.539944444576> <0.901777059681,0.539589049625><0.901532758685,0.539111888775><0.901402650523,0.539176965597><0.901648101867,0.53961135738><0.901843314593,0.540001638029> <0.902078390028,0.540504239487><0.902307853039,0.540895414323><0.902538841219,0.541226717636><0.902704336541,0.54144503291><0.902800028475,0.54171288029> <0.902777803398,0.541909169307><0.9026630301,0.542043125394><0.90229571075,0.542341670433><0.902085968487,0.542507383395><0.901944843246,0.542666327361> <0.90180241221,0.542876598025><0.901573966024,0.543236020858><0.901572272333,0.543238183855><0.901298999345,0.543625429431><0.901074795714,0.544018489683> <0.900871542074,0.544385628817><0.900744038564,0.544743555322><0.900619279285,0.545129456369><0.900569509597,0.545434689093><0.900524386751,0.545740047398> <0.900452113943,0.546016830412><0.900431351783,0.546099887568><0.900329337219,0.546094592947><0.900235337827,0.546001599722><0.900062196046,0.545791958211> <0.899907674173,0.545610259641><0.899763508691,0.545391641528><0.899642048706,0.545237742275><0.899462575248,0.545317515854><0.899270070179,0.545396085973> <0.898963411811,0.545578498327><0.898437842228,0.54579641578><0.89845845621,0.544688547093><0.896884826766,0.544645185221><0.895715283775,0.544611586442> <0.895704145682,0.545002480338><0.895300274707,0.544992299351><0.895269650499,0.546185560194><0.895254664266,0.546691158516><0.8945787512,0.545899725097> <0.894271367732,0.545494866779><0.894260056854,0.54528644004><0.89437844161,0.545014464307><0.894619012538,0.544756797761><0.894866174366,0.544458420497> <0.895065007887,0.54409189319><0.895218351059,0.543761357821><0.89528612168,0.543294805412><0.895292477673,0.542834098228><0.895258706521,0.542416959576> <0.895086369919,0.541973932776><0.894765362175,0.54143966755><0.895377375424,0.541448956022><0.895466507562,0.538275295861><0.895530327326,0.535120001142> <0.893950542484,0.53508158345><0.893285939265,0.535071641946><0.89327708578,0.534950115972><0.892896010106,0.533475638362><0.893988494179,0.533498436914> <0.895570284266,0.533536212856><0.898714857246,0.53362257342><0.898832950461,0.528883702739><0.898877910555,0.527296532574><0.898890960115,0.526942953881> <0.898997371082,0.526931762402><0.899000708415,0.526931936508><0.899253508123,0.526933272896><0.899482773579,0.526999288614><0.899485573422,0.526999973285> <0.899491419894,0.527000671591><0.899750987969,0.527010081812><0.899751970203,0.527010107354><0.900283138194,0.527014785579><0.900288257748,0.527014459883> <0.900601824598,0.52697209658><0.900810749304,0.526945967104><0.900814007522,0.526945405093><0.901199908324,0.526860670316><0.901203934976,0.526859538329> <0.901475894069,0.526765706663><0.901913276714,0.526629285104><0.902550682526,0.526489353325><0.902683581699,0.526492822534><0.90268863318,0.526492600385> <0.90340612664,0.526410224966><0.903715024244,0.526374058596><0.90371801827,0.52637358179><0.90448952936,0.526216827258><0.904492299368,0.526216147989> <0.905036455065,0.526059774662><0.905037941515,0.526059315331><0.905043974419,0.526056654224><0.905438557387,0.525833018167><0.905443327606,0.525829782088> <0.905892484147,0.525469454509><0.906554260188,0.525003433555><0.906812228632,0.524859903761><0.90708363408,0.524765042932><0.907085255856,0.52476442554> <0.90736537735,0.524650927784><0.907369891711,0.524648716775><0.907374061605,0.52464589793><0.907377820052,0.524642526308><0.907381034355,0.524638663983> <0.907466755343,0.524520061095><0.907408456142,0.52447791242><0.907328788061,0.524588129708><0.907059065449,0.524697416544><0.906785543331,0.524793004439> <0.906779939551,0.524795527857><0.906517614591,0.524941487411><0.906514383203,0.524943509307><0.905850136152,0.525411275919><0.905848331262,0.525412631598> <0.905400579665,0.525771851576><0.905012481891,0.525991803063><0.904473805222,0.526146602613><0.903705158166,0.526302772575><0.903397837249,0.526338757394> <0.902682938219,0.52642083372><0.902548172417,0.526417315813><0.902541937199,0.5264176994><0.902539533928,0.5264181393><0.901896327043,0.526559340602> <0.901893357506,0.526560137295><0.901453959052,0.52669718413><0.901452934615,0.526697520196><0.901182462564,0.526790844525><0.900800185755,0.526874777975> <0.900592542456,0.526900748607><0.900281177712,0.526942815338><0.899753087406,0.526938164812><0.899498428603,0.526928930301><0.899268609734,0.526862755876> <0.899265842501,0.526862076446><0.899259242947,0.526861358619><0.89900277364,0.526860001195><0.898894800861,0.526849320717><0.898890421922,0.526848883556> <0.898922867885,0.525709371996><0.898967448664,0.524134090706><0.89581461635,0.524038507745><0.895771477067,0.52561427986><0.892605923247,0.525555491033> <0.889458266598,0.525497040059><0.889385032168,0.528644939944><0.886228278565,0.52855686326><0.886140282263,0.531712498222><0.886051397544,0.534899979807> <0.882900746193,0.534789616232><0.882795143631,0.537957885675><0.879664915534,0.537873841702><0.879572087591,0.541033662406><0.879507428014,0.544204361395> <0.877932594843,0.544156789282><0.87789921751,0.545737003557><0.876323192273,0.545692252949><0.873169827305,0.545622781958><0.870236779625,0.545564947955> <0.870196703344,0.547135557737><0.868619383695,0.54710082956><0.867042065248,0.547066185487><0.867006998059,0.548643741987><0.866971927605,0.550221299347> <0.865393567853,0.550183119394><0.86537402017,0.551498862425><0.866942692381,0.55153797995><0.86690463079,0.553114494352><0.863743802122,0.553037555527> <0.863694062737,0.554615580787><0.863644564793,0.556186441109><0.863595064946,0.557757315382><0.863551988208,0.559342265084><0.865140755079,0.55938055481> <0.866729492016,0.559418850595><0.873151594576,0.555425260438><0.873165381027,0.554859442353><0.876278034217,0.554938411914><0.876485465565,0.55545338633> <0.876589038561,0.555746874941><0.876616379206,0.555824153797><0.876139028638,0.555808026654><0.876132663799,0.556034402337><0.875895757475,0.55595366998> <0.875666962188,0.555839347097><0.875451662375,0.555777737918><0.875219986987,0.555724358368><0.875111491102,0.555790779668><0.87501757933,0.555792736775> <0.874776080665,0.555743440304><0.874583085633,0.555695362337><0.874220715916,0.555690566526><0.874019124679,0.555599060915><0.87385738886,0.555594993891> <0.873660502109,0.555572758969><0.873151594576,0.555425260438><0.890830322571,0.533423107052><0.892406707292,0.533460662504><0.892521401915,0.533471365952> <0.892913982493,0.534981837442><0.892931791623,0.535057138857><0.89237075885,0.535043241331><0.890792939974,0.535005038363><0.890830322571,0.533423107052> pigment {rgbt <1,0,0,perTrans>}} prism { linear_spline 0,pheight,279 <0.604262975846,0.57172492764> <0.60109080217,0.571676358699><0.601145477336,0.568513363586><0.601200114134,0.565350371749><0.601249654165,0.562197313355><0.601299187507,0.559044254355> <0.597921993331,0.559099813618><0.595001373621,0.558975971651><0.595042923849,0.555812786872><0.59508443307,0.552649601027><0.588764857751,0.552614400782> <0.588737599173,0.55440031126><0.588674894279,0.558835291918><0.591608826958,0.558920640328><0.595001373621,0.558975971651><0.594935543802,0.562105401734> <0.594869678739,0.565234826293><0.591412552173,0.565242961822><0.588578454722,0.565154684882><0.588645748421,0.560746418713><0.582528823432,0.560541447537> <0.582558138271,0.557635681537><0.582567517388,0.554383288998><0.579438161506,0.554344870468><0.576308846379,0.554306455674><0.576353568459,0.551116762174> <0.576398280276,0.547927290923><0.575870387285,0.547919513078><0.575893457996,0.542658186541><0.569081720357,0.5427482694><0.569149597054,0.539318327765> <0.569118645438,0.536434926474><0.5708220299,0.536407404496><0.570881361825,0.533239578311><0.570940690362,0.530071755949><0.572635583759,0.530054090545> <0.572649577502,0.52688735069><0.572663557669,0.523720610352><0.576009374798,0.523678010065><0.576001065025,0.520524219529><0.575992736686,0.51737042856> <0.579143397928,0.517425676527><0.582294063661,0.517480922807><0.58235109586,0.514341379758><0.582408091133,0.511201839968><0.588675775962,0.511319800899> <0.588687742606,0.514483928661><0.588639416749,0.517646704367><0.592165862842,0.517749881114><0.594891399708,0.517725840341><0.594935121217,0.514569494881> <0.59500873638,0.511413563337><0.601291825359,0.511507953026><0.606702154246,0.511597026806><0.606649180762,0.514779956338><0.606597642796,0.517874637697> <0.606544002462,0.521105814826><0.606495470998,0.524009091501><0.609611837915,0.523987263145><0.612728194591,0.523965433545><0.612532568147,0.530250063858> <0.612445560975,0.536596220655><0.612323611519,0.542941953612><0.615463776434,0.543014505701><0.615398169926,0.546585500219><0.614163357118,0.546567340962> <0.614025735255,0.550047727672><0.607691984359,0.549869872932><0.607711971678,0.552834820971><0.607704126822,0.555840108356><0.607626243214,0.55915438784> <0.607568317141,0.562324025778><0.607510353122,0.565493666993><0.607472759712,0.568633580062><0.607420668621,0.571746878707><0.604262975846,0.57172492764> <0.540567758096,0.544755673133><0.540522626601,0.547468232767><0.537345272069,0.547428644549><0.531271593099,0.547383979951><0.531378742241,0.542141459452> <0.53142021481,0.535882901388><0.525047192866,0.53578766631><0.525060161287,0.532689878742><0.521907687874,0.532656556118><0.521922977516,0.529494253807> <0.518682066946,0.529430038807><0.518769569275,0.52628780956><0.515652812738,0.526264341152><0.515808649916,0.5101293499><0.512885613248,0.51014480599> <0.512981136742,0.503855181733><0.519238037919,0.503755014478><0.525450354384,0.503791281069><0.525471943651,0.503791389396><0.531830109385,0.503882391089> <0.531825849041,0.504080097927><0.531791249379,0.507044264179><0.534877008976,0.507132719721><0.534796861187,0.510281352892><0.537853329996,0.510435935528> <0.537787154762,0.513524922844><0.540949396532,0.513582408918><0.540896029762,0.516773360054><0.544086202283,0.51683149188><0.544085663856,0.51692068753> <0.544011043761,0.523211514459><0.544040823264,0.52321262942><0.550360887048,0.523356036692><0.55026342891,0.529674564831><0.556526163931,0.529747001253> <0.556479712046,0.536089040263><0.550270887576,0.535929550712><0.550180923247,0.535927050047><0.543882458276,0.535752360458><0.543774108037,0.543467548467> <0.542182196946,0.54343362925><0.542158577421,0.544784744829><0.540567758096,0.544755673133><0.576845899638,0.454263814554><0.570318872792,0.454116104686> <0.570275690792,0.45411522783><0.570402947625,0.447797220148><0.545122925166,0.447257973935><0.545122685265,0.447295640981><0.544894332606,0.453691940239> <0.544894424953,0.453714541926><0.538713108505,0.453629802385><0.538713650717,0.45359348477><0.539111666615,0.428344670894><0.539151835755,0.428345228101> <0.54551576652,0.42837305291><0.545526666341,0.422054986653><0.545555811907,0.422054968912><0.551801114876,0.422053262878><0.551800082633,0.42211247101> <0.551709438793,0.428510489463><0.557867269685,0.428576408813><0.557993323884,0.422217900585><0.558093702741,0.422220628083><0.577046145853,0.422436845382> <0.577207163409,0.416009315778><0.577207874176,0.415969186922><0.6026044057,0.416284446434><0.602445009952,0.430400668088><0.59924722866,0.430409194999> <0.59923879672,0.434420113993><0.597634710857,0.434444417726><0.59765102706,0.435349587075><0.589669775666,0.435357029095><0.589652802826,0.441701988439> <0.589652521817,0.441731858924><0.5833232205,0.441592207232><0.583244399954,0.447979825969><0.576953673933,0.447877847058><0.576845899638,0.454263814554> <0.582477711844,0.493850796047><0.576073084472,0.493777904458><0.576095226712,0.49219279275><0.569793617139,0.491991854599><0.570019418661,0.473060629515> <0.570170937481,0.46687885602><0.570171254236,0.46682898848><0.570171717878,0.46522115597><0.568563861669,0.465155432597><0.568570742518,0.463567282222> <0.566962732865,0.463498837548><0.566969000981,0.461907947592><0.563751916041,0.461765534985><0.564093770201,0.447628408306><0.564122625172,0.447628576713> <0.570402947625,0.447797220148><0.570275690792,0.45411522783><0.570318872792,0.454116104686><0.576845899638,0.454263814554><0.576953673933,0.447877847058> <0.583244399954,0.447979825969><0.5833232205,0.441592207232><0.589652521817,0.441731858924><0.589743891573,0.435232449463><0.602372679569,0.435468208491> <0.602455731257,0.428879392508><0.602456132354,0.428840393886><0.608000910028,0.428968187315><0.608020779381,0.42896864888><0.607957857919,0.43534363468> <0.614132108944,0.435465633062><0.614074773205,0.441818357776><0.607800231487,0.441719789818><0.607798814332,0.441874342829><0.607422123777,0.467362466253> <0.601910926317,0.467284264316><0.601878190302,0.467283778732><0.601790535276,0.47365741787><0.601789666046,0.473722502456><0.595468777458,0.473582796552> <0.595468218375,0.473604546932><0.595411057304,0.479925278907><0.59062727912,0.479841698763><0.590572953187,0.482954903721><0.588988074219,0.482943572205> <0.588926262386,0.486103975574><0.582644061439,0.48603502975><0.582605115839,0.486034723367><0.582578630341,0.489130189597><0.584129383335,0.48915695061> <0.584087951617,0.492293402026><0.582551860455,0.492262091761><0.582551584253,0.492296457766><0.582477711844,0.493850796047><0.57583682751,0.511054685012> <0.575837184466,0.511075251945><0.575952281199,0.517341757429><0.575952437958,0.517362553041><0.569347684677,0.517361225255><0.569442975881,0.511043117969> <0.569422177011,0.511043008981><0.563133319107,0.510944242993><0.563098726355,0.517201088403><0.563098105832,0.517231260155><0.556738671237,0.517076834504> <0.556794868893,0.510763974272><0.550532524786,0.51070670658><0.550605024002,0.507478839452><0.544225855053,0.507478837143><0.544124079197,0.510518274158> <0.540892907994,0.510365896994><0.537853329996,0.510435935528><0.53785436821,0.510386881735><0.538129099126,0.504102334302><0.531830109385,0.503882391089> <0.531966189604,0.497620835472><0.532090610871,0.491363717606><0.532091647308,0.491311436219><0.532105684918,0.485038614656><0.532180229435,0.478786675106> <0.532180694069,0.478745629998><0.532232945517,0.47253407155><0.532233315426,0.472495266134><0.53229129104,0.466145080975><0.532407509892,0.459802543121> <0.532407765721,0.459772551123><0.538617117914,0.459948747725><0.538617534693,0.459921994436><0.538713108505,0.453629802385><0.544894424953,0.453714541926> <0.544894332606,0.453691940239><0.545122685265,0.447295640981><0.545122925166,0.447257973935><0.551452044207,0.447438165308><0.557700998404,0.447595317639> <0.564093770201,0.447628408306><0.563986074238,0.453985982151><0.56398545587,0.45402308112><0.563783884715,0.460212564624><0.56378301068,0.460239809843> <0.563751916041,0.461765534985><0.566969000981,0.461907947592><0.566962732865,0.463498837548><0.568570742518,0.463567282222><0.568563861669,0.465155432597> <0.570171717878,0.46522115597><0.570171254236,0.46682898848><0.570170937481,0.46687885602><0.570019418661,0.473060629515><0.569929864298,0.479579616508> <0.569879863331,0.485649506596><0.56987915267,0.485701649121><0.569793617139,0.491991854599><0.56970732029,0.498322030117><0.576042327512,0.498612942404> <0.575940304372,0.504804688746><0.575939635798,0.504844033298><0.57583682751,0.511054685012><0.58365886931,0.429693253687><0.583658876656,0.426308228948> <0.587043883161,0.426308228852><0.587043899963,0.429693254349><0.58365886931,0.429693253687> pigment {rgbt <1,0,0,perTrans>}}