ev_example_storage_basic.txt 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676
  1. ======================== GLOBAL ========================
  2. #settings
  3. /1002/ds/data/state 1
  4. /1002/ds/settings/state 1
  5. /1002/ds/direct 0
  6. /1002/ds/dispatch 1
  7. #data
  8. ======================== SCENE 0 ONE ========================
  9. #settings
  10. /ev/pro/l/cursor/mode/ds/occupy 0
  11. /ev/pro/l/cursor/mode/ds/delay 0
  12. /ev/pro/l/cursor/mode/ds/morph/timegrain 20
  13. /ev/pro/l/cursor/mode/ds/morph/curve/quality 0
  14. /ev/pro/l/cursor/mode/ds/slave 0
  15. /ev/pro/l/cursor/mode/ds/morph/curve/resolution 100
  16. /ev/pro/l/cursor/mode/ds/morph/curve/weight 0
  17. /ev/pro/l/cursor/mode/ds/morph/curve/shape 0
  18. /ev/pro/l/cursor/mode/ds/morph/time 0
  19. /ev/pro/l/cursor/mode/ds/morph 0
  20. /ev/pro/l/grid/state/ds/occupy 0
  21. /ev/pro/l/grid/state/ds/delay 0
  22. /ev/pro/l/grid/state/ds/morph/timegrain 20
  23. /ev/pro/l/grid/state/ds/morph/curve/quality 0
  24. /ev/pro/l/grid/state/ds/slave 0
  25. /ev/pro/l/grid/state/ds/morph/curve/resolution 100
  26. /ev/pro/l/grid/state/ds/morph/curve/weight 0
  27. /ev/pro/l/grid/state/ds/morph/curve/shape 0
  28. /ev/pro/l/grid/state/ds/morph/time 0
  29. /ev/pro/l/grid/state/ds/morph 0
  30. /ev/pro/l/state/ds/occupy 0
  31. /ev/pro/l/state/ds/delay 0
  32. /ev/pro/l/state/ds/morph/timegrain 20
  33. /ev/pro/l/state/ds/morph/curve/quality 0
  34. /ev/pro/l/state/ds/slave 0
  35. /ev/pro/l/state/ds/morph/curve/resolution 100
  36. /ev/pro/l/state/ds/morph/curve/weight 0
  37. /ev/pro/l/state/ds/morph/curve/shape 0
  38. /ev/pro/l/state/ds/morph/time 0
  39. /ev/pro/l/state/ds/morph 0
  40. /ev/pro/l/shade/left/ds/occupy 0
  41. /ev/pro/l/shade/left/ds/delay 0
  42. /ev/pro/l/shade/left/ds/morph/timegrain 20
  43. /ev/pro/l/shade/left/ds/morph/curve/quality 0
  44. /ev/pro/l/shade/left/ds/slave 0
  45. /ev/pro/l/shade/left/ds/morph/curve/resolution 100
  46. /ev/pro/l/shade/left/ds/morph/curve/weight 0
  47. /ev/pro/l/shade/left/ds/morph/curve/shape 0
  48. /ev/pro/l/shade/left/ds/morph/time 0
  49. /ev/pro/l/shade/left/ds/morph 0
  50. /ev/pro/l/shade/bottom/ds/occupy 0
  51. /ev/pro/l/shade/bottom/ds/delay 0
  52. /ev/pro/l/shade/bottom/ds/morph/timegrain 20
  53. /ev/pro/l/shade/bottom/ds/morph/curve/quality 0
  54. /ev/pro/l/shade/bottom/ds/slave 0
  55. /ev/pro/l/shade/bottom/ds/morph/curve/resolution 100
  56. /ev/pro/l/shade/bottom/ds/morph/curve/weight 0
  57. /ev/pro/l/shade/bottom/ds/morph/curve/shape 0
  58. /ev/pro/l/shade/bottom/ds/morph/time 0
  59. /ev/pro/l/shade/bottom/ds/morph 0
  60. /ev/pro/l/shade/right/ds/occupy 0
  61. /ev/pro/l/shade/right/ds/delay 0
  62. /ev/pro/l/shade/right/ds/morph/timegrain 20
  63. /ev/pro/l/shade/right/ds/morph/curve/quality 0
  64. /ev/pro/l/shade/right/ds/slave 0
  65. /ev/pro/l/shade/right/ds/morph/curve/resolution 100
  66. /ev/pro/l/shade/right/ds/morph/curve/weight 0
  67. /ev/pro/l/shade/right/ds/morph/curve/shape 0
  68. /ev/pro/l/shade/right/ds/morph/time 0
  69. /ev/pro/l/shade/right/ds/morph 0
  70. /ev/pro/l/shade/top/ds/occupy 0
  71. /ev/pro/l/shade/top/ds/delay 0
  72. /ev/pro/l/shade/top/ds/morph/timegrain 20
  73. /ev/pro/l/shade/top/ds/morph/curve/quality 0
  74. /ev/pro/l/shade/top/ds/slave 0
  75. /ev/pro/l/shade/top/ds/morph/curve/resolution 100
  76. /ev/pro/l/shade/top/ds/morph/curve/weight 0
  77. /ev/pro/l/shade/top/ds/morph/curve/shape 0
  78. /ev/pro/l/shade/top/ds/morph/time 0
  79. /ev/pro/l/shade/top/ds/morph 0
  80. /ev/pro/l/texture/bottom/right/y/ds/occupy 0
  81. /ev/pro/l/texture/bottom/right/y/ds/delay 0
  82. /ev/pro/l/texture/bottom/right/y/ds/morph/timegrain 20
  83. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/quality 0
  84. /ev/pro/l/texture/bottom/right/y/ds/slave 0
  85. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/resolution 100
  86. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/weight 0
  87. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/shape 0
  88. /ev/pro/l/texture/bottom/right/y/ds/morph/time 0
  89. /ev/pro/l/texture/bottom/right/y/ds/morph 0
  90. /ev/pro/l/texture/bottom/right/x/ds/occupy 0
  91. /ev/pro/l/texture/bottom/right/x/ds/delay 0
  92. /ev/pro/l/texture/bottom/right/x/ds/morph/timegrain 20
  93. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/quality 0
  94. /ev/pro/l/texture/bottom/right/x/ds/slave 0
  95. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/resolution 100
  96. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/weight 0
  97. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/shape 0
  98. /ev/pro/l/texture/bottom/right/x/ds/morph/time 0
  99. /ev/pro/l/texture/bottom/right/x/ds/morph 0
  100. /ev/pro/l/texture/bottom/left/y/ds/occupy 0
  101. /ev/pro/l/texture/bottom/left/y/ds/delay 0
  102. /ev/pro/l/texture/bottom/left/y/ds/morph/timegrain 20
  103. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/quality 0
  104. /ev/pro/l/texture/bottom/left/y/ds/slave 0
  105. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/resolution 100
  106. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/weight 0
  107. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/shape 0
  108. /ev/pro/l/texture/bottom/left/y/ds/morph/time 0
  109. /ev/pro/l/texture/bottom/left/y/ds/morph 0
  110. /ev/pro/l/texture/bottom/left/x/ds/occupy 0
  111. /ev/pro/l/texture/bottom/left/x/ds/delay 0
  112. /ev/pro/l/texture/bottom/left/x/ds/morph/timegrain 20
  113. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/quality 0
  114. /ev/pro/l/texture/bottom/left/x/ds/slave 0
  115. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/resolution 100
  116. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/weight 0
  117. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/shape 0
  118. /ev/pro/l/texture/bottom/left/x/ds/morph/time 0
  119. /ev/pro/l/texture/bottom/left/x/ds/morph 0
  120. /ev/pro/l/texture/top/right/y/ds/occupy 0
  121. /ev/pro/l/texture/top/right/y/ds/delay 0
  122. /ev/pro/l/texture/top/right/y/ds/morph/timegrain 20
  123. /ev/pro/l/texture/top/right/y/ds/morph/curve/quality 0
  124. /ev/pro/l/texture/top/right/y/ds/slave 0
  125. /ev/pro/l/texture/top/right/y/ds/morph/curve/resolution 100
  126. /ev/pro/l/texture/top/right/y/ds/morph/curve/weight 0
  127. /ev/pro/l/texture/top/right/y/ds/morph/curve/shape 0
  128. /ev/pro/l/texture/top/right/y/ds/morph/time 0
  129. /ev/pro/l/texture/top/right/y/ds/morph 0
  130. /ev/pro/l/texture/top/right/x/ds/occupy 0
  131. /ev/pro/l/texture/top/right/x/ds/delay 0
  132. /ev/pro/l/texture/top/right/x/ds/morph/timegrain 20
  133. /ev/pro/l/texture/top/right/x/ds/morph/curve/quality 0
  134. /ev/pro/l/texture/top/right/x/ds/slave 0
  135. /ev/pro/l/texture/top/right/x/ds/morph/curve/resolution 100
  136. /ev/pro/l/texture/top/right/x/ds/morph/curve/weight 0
  137. /ev/pro/l/texture/top/right/x/ds/morph/curve/shape 0
  138. /ev/pro/l/texture/top/right/x/ds/morph/time 0
  139. /ev/pro/l/texture/top/right/x/ds/morph 0
  140. /ev/pro/l/texture/top/left/y/ds/occupy 0
  141. /ev/pro/l/texture/top/left/y/ds/delay 0
  142. /ev/pro/l/texture/top/left/y/ds/morph/timegrain 20
  143. /ev/pro/l/texture/top/left/y/ds/morph/curve/quality 0
  144. /ev/pro/l/texture/top/left/y/ds/slave 0
  145. /ev/pro/l/texture/top/left/y/ds/morph/curve/resolution 100
  146. /ev/pro/l/texture/top/left/y/ds/morph/curve/weight 0
  147. /ev/pro/l/texture/top/left/y/ds/morph/curve/shape 0
  148. /ev/pro/l/texture/top/left/y/ds/morph/time 0
  149. /ev/pro/l/texture/top/left/y/ds/morph 0
  150. /ev/pro/l/texture/top/left/x/ds/occupy 0
  151. /ev/pro/l/texture/top/left/x/ds/delay 0
  152. /ev/pro/l/texture/top/left/x/ds/morph/timegrain 20
  153. /ev/pro/l/texture/top/left/x/ds/morph/curve/quality 0
  154. /ev/pro/l/texture/top/left/x/ds/slave 0
  155. /ev/pro/l/texture/top/left/x/ds/morph/curve/resolution 100
  156. /ev/pro/l/texture/top/left/x/ds/morph/curve/weight 0
  157. /ev/pro/l/texture/top/left/x/ds/morph/curve/shape 0
  158. /ev/pro/l/texture/top/left/x/ds/morph/time 0
  159. /ev/pro/l/texture/top/left/x/ds/morph 0
  160. /ev/pro/l/vertex/bottom/right/y/ds/occupy 0
  161. /ev/pro/l/vertex/bottom/right/y/ds/delay 0
  162. /ev/pro/l/vertex/bottom/right/y/ds/morph/timegrain 20
  163. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/quality 0
  164. /ev/pro/l/vertex/bottom/right/y/ds/slave 0
  165. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/resolution 100
  166. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/weight 0
  167. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/shape 0
  168. /ev/pro/l/vertex/bottom/right/y/ds/morph/time 0
  169. /ev/pro/l/vertex/bottom/right/y/ds/morph 0
  170. /ev/pro/l/vertex/bottom/right/x/ds/occupy 0
  171. /ev/pro/l/vertex/bottom/right/x/ds/delay 0
  172. /ev/pro/l/vertex/bottom/right/x/ds/morph/timegrain 20
  173. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/quality 0
  174. /ev/pro/l/vertex/bottom/right/x/ds/slave 0
  175. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/resolution 100
  176. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/weight 0
  177. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/shape 0
  178. /ev/pro/l/vertex/bottom/right/x/ds/morph/time 0
  179. /ev/pro/l/vertex/bottom/right/x/ds/morph 0
  180. /ev/pro/l/vertex/bottom/left/y/ds/occupy 0
  181. /ev/pro/l/vertex/bottom/left/y/ds/delay 0
  182. /ev/pro/l/vertex/bottom/left/y/ds/morph/timegrain 20
  183. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/quality 0
  184. /ev/pro/l/vertex/bottom/left/y/ds/slave 0
  185. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/resolution 100
  186. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/weight 0
  187. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/shape 0
  188. /ev/pro/l/vertex/bottom/left/y/ds/morph/time 0
  189. /ev/pro/l/vertex/bottom/left/y/ds/morph 0
  190. /ev/pro/l/vertex/bottom/left/x/ds/occupy 0
  191. /ev/pro/l/vertex/bottom/left/x/ds/delay 0
  192. /ev/pro/l/vertex/bottom/left/x/ds/morph/timegrain 20
  193. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/quality 0
  194. /ev/pro/l/vertex/bottom/left/x/ds/slave 0
  195. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/resolution 100
  196. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/weight 0
  197. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/shape 0
  198. /ev/pro/l/vertex/bottom/left/x/ds/morph/time 0
  199. /ev/pro/l/vertex/bottom/left/x/ds/morph 0
  200. /ev/pro/l/vertex/top/right/y/ds/occupy 0
  201. /ev/pro/l/vertex/top/right/y/ds/delay 0
  202. /ev/pro/l/vertex/top/right/y/ds/morph/timegrain 20
  203. /ev/pro/l/vertex/top/right/y/ds/morph/curve/quality 0
  204. /ev/pro/l/vertex/top/right/y/ds/slave 0
  205. /ev/pro/l/vertex/top/right/y/ds/morph/curve/resolution 100
  206. /ev/pro/l/vertex/top/right/y/ds/morph/curve/weight 0
  207. /ev/pro/l/vertex/top/right/y/ds/morph/curve/shape 0
  208. /ev/pro/l/vertex/top/right/y/ds/morph/time 0
  209. /ev/pro/l/vertex/top/right/y/ds/morph 0
  210. /ev/pro/l/vertex/top/right/x/ds/occupy 0
  211. /ev/pro/l/vertex/top/right/x/ds/delay 0
  212. /ev/pro/l/vertex/top/right/x/ds/morph/timegrain 20
  213. /ev/pro/l/vertex/top/right/x/ds/morph/curve/quality 0
  214. /ev/pro/l/vertex/top/right/x/ds/slave 0
  215. /ev/pro/l/vertex/top/right/x/ds/morph/curve/resolution 100
  216. /ev/pro/l/vertex/top/right/x/ds/morph/curve/weight 0
  217. /ev/pro/l/vertex/top/right/x/ds/morph/curve/shape 0
  218. /ev/pro/l/vertex/top/right/x/ds/morph/time 0
  219. /ev/pro/l/vertex/top/right/x/ds/morph 0
  220. /ev/pro/l/vertex/top/left/y/ds/occupy 0
  221. /ev/pro/l/vertex/top/left/y/ds/delay 0
  222. /ev/pro/l/vertex/top/left/y/ds/morph/timegrain 20
  223. /ev/pro/l/vertex/top/left/y/ds/morph/curve/quality 0
  224. /ev/pro/l/vertex/top/left/y/ds/slave 0
  225. /ev/pro/l/vertex/top/left/y/ds/morph/curve/resolution 100
  226. /ev/pro/l/vertex/top/left/y/ds/morph/curve/weight 0
  227. /ev/pro/l/vertex/top/left/y/ds/morph/curve/shape 0
  228. /ev/pro/l/vertex/top/left/y/ds/morph/time 0
  229. /ev/pro/l/vertex/top/left/y/ds/morph 0
  230. /ev/pro/l/vertex/top/left/x/ds/occupy 0
  231. /ev/pro/l/vertex/top/left/x/ds/delay 0
  232. /ev/pro/l/vertex/top/left/x/ds/morph/timegrain 20
  233. /ev/pro/l/vertex/top/left/x/ds/morph/curve/quality 0
  234. /ev/pro/l/vertex/top/left/x/ds/slave 0
  235. /ev/pro/l/vertex/top/left/x/ds/morph/curve/resolution 100
  236. /ev/pro/l/vertex/top/left/x/ds/morph/curve/weight 0
  237. /ev/pro/l/vertex/top/left/x/ds/morph/curve/shape 0
  238. /ev/pro/l/vertex/top/left/x/ds/morph/time 0
  239. /ev/pro/l/vertex/top/left/x/ds/morph 0
  240. /ev/pro/grid/flip/vertical/ds/occupy 0
  241. /ev/pro/grid/flip/vertical/ds/delay 0
  242. /ev/pro/grid/flip/vertical/ds/morph/timegrain 20
  243. /ev/pro/grid/flip/vertical/ds/morph/curve/quality 0
  244. /ev/pro/grid/flip/vertical/ds/slave 0
  245. /ev/pro/grid/flip/vertical/ds/morph/curve/resolution 100
  246. /ev/pro/grid/flip/vertical/ds/morph/curve/weight 0
  247. /ev/pro/grid/flip/vertical/ds/morph/curve/shape 0
  248. /ev/pro/grid/flip/vertical/ds/morph/time 0
  249. /ev/pro/grid/flip/vertical/ds/morph 0
  250. /ev/pro/grid/flip/horizontal/ds/occupy 0
  251. /ev/pro/grid/flip/horizontal/ds/delay 0
  252. /ev/pro/grid/flip/horizontal/ds/morph/timegrain 20
  253. /ev/pro/grid/flip/horizontal/ds/morph/curve/quality 0
  254. /ev/pro/grid/flip/horizontal/ds/slave 0
  255. /ev/pro/grid/flip/horizontal/ds/morph/curve/resolution 100
  256. /ev/pro/grid/flip/horizontal/ds/morph/curve/weight 0
  257. /ev/pro/grid/flip/horizontal/ds/morph/curve/shape 0
  258. /ev/pro/grid/flip/horizontal/ds/morph/time 0
  259. /ev/pro/grid/flip/horizontal/ds/morph 0
  260. /ev/pro/grid/filename/ds/occupy 0
  261. /ev/pro/grid/filename/ds/delay 0
  262. /ev/pro/grid/filename/ds/morph/timegrain 20
  263. /ev/pro/grid/filename/ds/morph/curve/quality 0
  264. /ev/pro/grid/filename/ds/slave 0
  265. /ev/pro/grid/filename/ds/morph/curve/resolution 100
  266. /ev/pro/grid/filename/ds/morph/curve/weight 0
  267. /ev/pro/grid/filename/ds/morph/curve/shape 0
  268. /ev/pro/grid/filename/ds/morph/time 0
  269. /ev/pro/grid/filename/ds/morph 0
  270. /ev/pro/grid/state/ds/occupy 0
  271. /ev/pro/grid/state/ds/delay 0
  272. /ev/pro/grid/state/ds/morph/timegrain 20
  273. /ev/pro/grid/state/ds/morph/curve/quality 0
  274. /ev/pro/grid/state/ds/slave 0
  275. /ev/pro/grid/state/ds/morph/curve/resolution 100
  276. /ev/pro/grid/state/ds/morph/curve/weight 0
  277. /ev/pro/grid/state/ds/morph/curve/shape 0
  278. /ev/pro/grid/state/ds/morph/time 0
  279. /ev/pro/grid/state/ds/morph 0
  280. /ev/pro/r/cursor/mode/ds/occupy 0
  281. /ev/pro/r/cursor/mode/ds/delay 0
  282. /ev/pro/r/cursor/mode/ds/morph/timegrain 20
  283. /ev/pro/r/cursor/mode/ds/morph/curve/quality 0
  284. /ev/pro/r/cursor/mode/ds/slave 0
  285. /ev/pro/r/cursor/mode/ds/morph/curve/resolution 100
  286. /ev/pro/r/cursor/mode/ds/morph/curve/weight 0
  287. /ev/pro/r/cursor/mode/ds/morph/curve/shape 0
  288. /ev/pro/r/cursor/mode/ds/morph/time 0
  289. /ev/pro/r/cursor/mode/ds/morph 0
  290. /ev/pro/r/grid/state/ds/occupy 0
  291. /ev/pro/r/grid/state/ds/delay 0
  292. /ev/pro/r/grid/state/ds/morph/timegrain 20
  293. /ev/pro/r/grid/state/ds/morph/curve/quality 0
  294. /ev/pro/r/grid/state/ds/slave 0
  295. /ev/pro/r/grid/state/ds/morph/curve/resolution 100
  296. /ev/pro/r/grid/state/ds/morph/curve/weight 0
  297. /ev/pro/r/grid/state/ds/morph/curve/shape 0
  298. /ev/pro/r/grid/state/ds/morph/time 0
  299. /ev/pro/r/grid/state/ds/morph 0
  300. /ev/pro/r/state/ds/occupy 0
  301. /ev/pro/r/state/ds/delay 0
  302. /ev/pro/r/state/ds/morph/timegrain 20
  303. /ev/pro/r/state/ds/morph/curve/quality 0
  304. /ev/pro/r/state/ds/slave 0
  305. /ev/pro/r/state/ds/morph/curve/resolution 100
  306. /ev/pro/r/state/ds/morph/curve/weight 0
  307. /ev/pro/r/state/ds/morph/curve/shape 0
  308. /ev/pro/r/state/ds/morph/time 0
  309. /ev/pro/r/state/ds/morph 0
  310. /ev/pro/r/shade/left/ds/occupy 0
  311. /ev/pro/r/shade/left/ds/delay 0
  312. /ev/pro/r/shade/left/ds/morph/timegrain 20
  313. /ev/pro/r/shade/left/ds/morph/curve/quality 0
  314. /ev/pro/r/shade/left/ds/slave 0
  315. /ev/pro/r/shade/left/ds/morph/curve/resolution 100
  316. /ev/pro/r/shade/left/ds/morph/curve/weight 0
  317. /ev/pro/r/shade/left/ds/morph/curve/shape 0
  318. /ev/pro/r/shade/left/ds/morph/time 0
  319. /ev/pro/r/shade/left/ds/morph 0
  320. /ev/pro/r/shade/bottom/ds/occupy 0
  321. /ev/pro/r/shade/bottom/ds/delay 0
  322. /ev/pro/r/shade/bottom/ds/morph/timegrain 20
  323. /ev/pro/r/shade/bottom/ds/morph/curve/quality 0
  324. /ev/pro/r/shade/bottom/ds/slave 0
  325. /ev/pro/r/shade/bottom/ds/morph/curve/resolution 100
  326. /ev/pro/r/shade/bottom/ds/morph/curve/weight 0
  327. /ev/pro/r/shade/bottom/ds/morph/curve/shape 0
  328. /ev/pro/r/shade/bottom/ds/morph/time 0
  329. /ev/pro/r/shade/bottom/ds/morph 0
  330. /ev/pro/r/shade/right/ds/occupy 0
  331. /ev/pro/r/shade/right/ds/delay 0
  332. /ev/pro/r/shade/right/ds/morph/timegrain 20
  333. /ev/pro/r/shade/right/ds/morph/curve/quality 0
  334. /ev/pro/r/shade/right/ds/slave 0
  335. /ev/pro/r/shade/right/ds/morph/curve/resolution 100
  336. /ev/pro/r/shade/right/ds/morph/curve/weight 0
  337. /ev/pro/r/shade/right/ds/morph/curve/shape 0
  338. /ev/pro/r/shade/right/ds/morph/time 0
  339. /ev/pro/r/shade/right/ds/morph 0
  340. /ev/pro/r/shade/top/ds/occupy 0
  341. /ev/pro/r/shade/top/ds/delay 0
  342. /ev/pro/r/shade/top/ds/morph/timegrain 20
  343. /ev/pro/r/shade/top/ds/morph/curve/quality 0
  344. /ev/pro/r/shade/top/ds/slave 0
  345. /ev/pro/r/shade/top/ds/morph/curve/resolution 100
  346. /ev/pro/r/shade/top/ds/morph/curve/weight 0
  347. /ev/pro/r/shade/top/ds/morph/curve/shape 0
  348. /ev/pro/r/shade/top/ds/morph/time 0
  349. /ev/pro/r/shade/top/ds/morph 0
  350. /ev/pro/r/texture/bottom/right/y/ds/occupy 0
  351. /ev/pro/r/texture/bottom/right/y/ds/delay 0
  352. /ev/pro/r/texture/bottom/right/y/ds/morph/timegrain 20
  353. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/quality 0
  354. /ev/pro/r/texture/bottom/right/y/ds/slave 0
  355. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/resolution 100
  356. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/weight 0
  357. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/shape 0
  358. /ev/pro/r/texture/bottom/right/y/ds/morph/time 0
  359. /ev/pro/r/texture/bottom/right/y/ds/morph 0
  360. /ev/pro/r/texture/bottom/right/x/ds/occupy 0
  361. /ev/pro/r/texture/bottom/right/x/ds/delay 0
  362. /ev/pro/r/texture/bottom/right/x/ds/morph/timegrain 20
  363. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/quality 0
  364. /ev/pro/r/texture/bottom/right/x/ds/slave 0
  365. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/resolution 100
  366. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/weight 0
  367. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/shape 0
  368. /ev/pro/r/texture/bottom/right/x/ds/morph/time 0
  369. /ev/pro/r/texture/bottom/right/x/ds/morph 0
  370. /ev/pro/r/texture/bottom/left/y/ds/occupy 0
  371. /ev/pro/r/texture/bottom/left/y/ds/delay 0
  372. /ev/pro/r/texture/bottom/left/y/ds/morph/timegrain 20
  373. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/quality 0
  374. /ev/pro/r/texture/bottom/left/y/ds/slave 0
  375. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/resolution 100
  376. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/weight 0
  377. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/shape 0
  378. /ev/pro/r/texture/bottom/left/y/ds/morph/time 0
  379. /ev/pro/r/texture/bottom/left/y/ds/morph 0
  380. /ev/pro/r/texture/bottom/left/x/ds/occupy 0
  381. /ev/pro/r/texture/bottom/left/x/ds/delay 0
  382. /ev/pro/r/texture/bottom/left/x/ds/morph/timegrain 20
  383. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/quality 0
  384. /ev/pro/r/texture/bottom/left/x/ds/slave 0
  385. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/resolution 100
  386. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/weight 0
  387. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/shape 0
  388. /ev/pro/r/texture/bottom/left/x/ds/morph/time 0
  389. /ev/pro/r/texture/bottom/left/x/ds/morph 0
  390. /ev/pro/r/texture/top/right/y/ds/occupy 0
  391. /ev/pro/r/texture/top/right/y/ds/delay 0
  392. /ev/pro/r/texture/top/right/y/ds/morph/timegrain 20
  393. /ev/pro/r/texture/top/right/y/ds/morph/curve/quality 0
  394. /ev/pro/r/texture/top/right/y/ds/slave 0
  395. /ev/pro/r/texture/top/right/y/ds/morph/curve/resolution 100
  396. /ev/pro/r/texture/top/right/y/ds/morph/curve/weight 0
  397. /ev/pro/r/texture/top/right/y/ds/morph/curve/shape 0
  398. /ev/pro/r/texture/top/right/y/ds/morph/time 0
  399. /ev/pro/r/texture/top/right/y/ds/morph 0
  400. /ev/pro/r/texture/top/right/x/ds/occupy 0
  401. /ev/pro/r/texture/top/right/x/ds/delay 0
  402. /ev/pro/r/texture/top/right/x/ds/morph/timegrain 20
  403. /ev/pro/r/texture/top/right/x/ds/morph/curve/quality 0
  404. /ev/pro/r/texture/top/right/x/ds/slave 0
  405. /ev/pro/r/texture/top/right/x/ds/morph/curve/resolution 100
  406. /ev/pro/r/texture/top/right/x/ds/morph/curve/weight 0
  407. /ev/pro/r/texture/top/right/x/ds/morph/curve/shape 0
  408. /ev/pro/r/texture/top/right/x/ds/morph/time 0
  409. /ev/pro/r/texture/top/right/x/ds/morph 0
  410. /ev/pro/r/texture/top/left/y/ds/occupy 0
  411. /ev/pro/r/texture/top/left/y/ds/delay 0
  412. /ev/pro/r/texture/top/left/y/ds/morph/timegrain 20
  413. /ev/pro/r/texture/top/left/y/ds/morph/curve/quality 0
  414. /ev/pro/r/texture/top/left/y/ds/slave 0
  415. /ev/pro/r/texture/top/left/y/ds/morph/curve/resolution 100
  416. /ev/pro/r/texture/top/left/y/ds/morph/curve/weight 0
  417. /ev/pro/r/texture/top/left/y/ds/morph/curve/shape 0
  418. /ev/pro/r/texture/top/left/y/ds/morph/time 0
  419. /ev/pro/r/texture/top/left/y/ds/morph 0
  420. /ev/pro/r/texture/top/left/x/ds/occupy 0
  421. /ev/pro/r/texture/top/left/x/ds/delay 0
  422. /ev/pro/r/texture/top/left/x/ds/morph/timegrain 20
  423. /ev/pro/r/texture/top/left/x/ds/morph/curve/quality 0
  424. /ev/pro/r/texture/top/left/x/ds/slave 0
  425. /ev/pro/r/texture/top/left/x/ds/morph/curve/resolution 100
  426. /ev/pro/r/texture/top/left/x/ds/morph/curve/weight 0
  427. /ev/pro/r/texture/top/left/x/ds/morph/curve/shape 0
  428. /ev/pro/r/texture/top/left/x/ds/morph/time 0
  429. /ev/pro/r/texture/top/left/x/ds/morph 0
  430. /ev/pro/r/vertex/bottom/right/y/ds/occupy 0
  431. /ev/pro/r/vertex/bottom/right/y/ds/delay 0
  432. /ev/pro/r/vertex/bottom/right/y/ds/morph/timegrain 20
  433. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/quality 0
  434. /ev/pro/r/vertex/bottom/right/y/ds/slave 0
  435. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/resolution 100
  436. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/weight 0
  437. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/shape 0
  438. /ev/pro/r/vertex/bottom/right/y/ds/morph/time 0
  439. /ev/pro/r/vertex/bottom/right/y/ds/morph 0
  440. /ev/pro/r/vertex/bottom/right/x/ds/occupy 0
  441. /ev/pro/r/vertex/bottom/right/x/ds/delay 0
  442. /ev/pro/r/vertex/bottom/right/x/ds/morph/timegrain 20
  443. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/quality 0
  444. /ev/pro/r/vertex/bottom/right/x/ds/slave 0
  445. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/resolution 100
  446. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/weight 0
  447. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/shape 0
  448. /ev/pro/r/vertex/bottom/right/x/ds/morph/time 0
  449. /ev/pro/r/vertex/bottom/right/x/ds/morph 0
  450. /ev/pro/r/vertex/bottom/left/y/ds/occupy 0
  451. /ev/pro/r/vertex/bottom/left/y/ds/delay 0
  452. /ev/pro/r/vertex/bottom/left/y/ds/morph/timegrain 20
  453. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/quality 0
  454. /ev/pro/r/vertex/bottom/left/y/ds/slave 0
  455. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/resolution 100
  456. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/weight 0
  457. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/shape 0
  458. /ev/pro/r/vertex/bottom/left/y/ds/morph/time 0
  459. /ev/pro/r/vertex/bottom/left/y/ds/morph 0
  460. /ev/pro/r/vertex/bottom/left/x/ds/occupy 0
  461. /ev/pro/r/vertex/bottom/left/x/ds/delay 0
  462. /ev/pro/r/vertex/bottom/left/x/ds/morph/timegrain 20
  463. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/quality 0
  464. /ev/pro/r/vertex/bottom/left/x/ds/slave 0
  465. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/resolution 100
  466. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/weight 0
  467. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/shape 0
  468. /ev/pro/r/vertex/bottom/left/x/ds/morph/time 0
  469. /ev/pro/r/vertex/bottom/left/x/ds/morph 0
  470. /ev/pro/r/vertex/top/right/y/ds/occupy 0
  471. /ev/pro/r/vertex/top/right/y/ds/delay 0
  472. /ev/pro/r/vertex/top/right/y/ds/morph/timegrain 20
  473. /ev/pro/r/vertex/top/right/y/ds/morph/curve/quality 0
  474. /ev/pro/r/vertex/top/right/y/ds/slave 0
  475. /ev/pro/r/vertex/top/right/y/ds/morph/curve/resolution 100
  476. /ev/pro/r/vertex/top/right/y/ds/morph/curve/weight 0
  477. /ev/pro/r/vertex/top/right/y/ds/morph/curve/shape 0
  478. /ev/pro/r/vertex/top/right/y/ds/morph/time 0
  479. /ev/pro/r/vertex/top/right/y/ds/morph 0
  480. /ev/pro/r/vertex/top/right/x/ds/occupy 0
  481. /ev/pro/r/vertex/top/right/x/ds/delay 0
  482. /ev/pro/r/vertex/top/right/x/ds/morph/timegrain 20
  483. /ev/pro/r/vertex/top/right/x/ds/morph/curve/quality 0
  484. /ev/pro/r/vertex/top/right/x/ds/slave 0
  485. /ev/pro/r/vertex/top/right/x/ds/morph/curve/resolution 100
  486. /ev/pro/r/vertex/top/right/x/ds/morph/curve/weight 0
  487. /ev/pro/r/vertex/top/right/x/ds/morph/curve/shape 0
  488. /ev/pro/r/vertex/top/right/x/ds/morph/time 0
  489. /ev/pro/r/vertex/top/right/x/ds/morph 0
  490. /ev/pro/r/vertex/top/left/y/ds/occupy 0
  491. /ev/pro/r/vertex/top/left/y/ds/delay 0
  492. /ev/pro/r/vertex/top/left/y/ds/morph/timegrain 20
  493. /ev/pro/r/vertex/top/left/y/ds/morph/curve/quality 0
  494. /ev/pro/r/vertex/top/left/y/ds/slave 0
  495. /ev/pro/r/vertex/top/left/y/ds/morph/curve/resolution 100
  496. /ev/pro/r/vertex/top/left/y/ds/morph/curve/weight 0
  497. /ev/pro/r/vertex/top/left/y/ds/morph/curve/shape 0
  498. /ev/pro/r/vertex/top/left/y/ds/morph/time 0
  499. /ev/pro/r/vertex/top/left/y/ds/morph 0
  500. /ev/pro/r/vertex/top/left/x/ds/occupy 0
  501. /ev/pro/r/vertex/top/left/x/ds/delay 0
  502. /ev/pro/r/vertex/top/left/x/ds/morph/timegrain 20
  503. /ev/pro/r/vertex/top/left/x/ds/morph/curve/quality 0
  504. /ev/pro/r/vertex/top/left/x/ds/slave 0
  505. /ev/pro/r/vertex/top/left/x/ds/morph/curve/resolution 100
  506. /ev/pro/r/vertex/top/left/x/ds/morph/curve/weight 0
  507. /ev/pro/r/vertex/top/left/x/ds/morph/curve/shape 0
  508. /ev/pro/r/vertex/top/left/x/ds/morph/time 0
  509. /ev/pro/r/vertex/top/left/x/ds/morph 0
  510. /ev/gemwin/dimen/x/ds/occupy 0
  511. /ev/gemwin/dimen/x/ds/delay 0
  512. /ev/gemwin/dimen/x/ds/morph/timegrain 20
  513. /ev/gemwin/dimen/x/ds/morph/curve/quality 0
  514. /ev/gemwin/dimen/x/ds/slave 0
  515. /ev/gemwin/dimen/x/ds/morph/curve/resolution 100
  516. /ev/gemwin/dimen/x/ds/morph/curve/weight 0
  517. /ev/gemwin/dimen/x/ds/morph/curve/shape 0
  518. /ev/gemwin/dimen/x/ds/morph/time 0
  519. /ev/gemwin/dimen/x/ds/morph 0
  520. /ev/gemwin/dimen/y/ds/occupy 0
  521. /ev/gemwin/dimen/y/ds/delay 0
  522. /ev/gemwin/dimen/y/ds/morph/timegrain 20
  523. /ev/gemwin/dimen/y/ds/morph/curve/quality 0
  524. /ev/gemwin/dimen/y/ds/slave 0
  525. /ev/gemwin/dimen/y/ds/morph/curve/resolution 100
  526. /ev/gemwin/dimen/y/ds/morph/curve/weight 0
  527. /ev/gemwin/dimen/y/ds/morph/curve/shape 0
  528. /ev/gemwin/dimen/y/ds/morph/time 0
  529. /ev/gemwin/dimen/y/ds/morph 0
  530. /ev/gemwin/offset/x/ds/occupy 0
  531. /ev/gemwin/offset/x/ds/delay 0
  532. /ev/gemwin/offset/x/ds/morph/timegrain 20
  533. /ev/gemwin/offset/x/ds/morph/curve/quality 0
  534. /ev/gemwin/offset/x/ds/slave 0
  535. /ev/gemwin/offset/x/ds/morph/curve/resolution 100
  536. /ev/gemwin/offset/x/ds/morph/curve/weight 0
  537. /ev/gemwin/offset/x/ds/morph/curve/shape 0
  538. /ev/gemwin/offset/x/ds/morph/time 0
  539. /ev/gemwin/offset/x/ds/morph 0
  540. /ev/gemwin/offset/y/ds/occupy 0
  541. /ev/gemwin/offset/y/ds/delay 0
  542. /ev/gemwin/offset/y/ds/morph/timegrain 20
  543. /ev/gemwin/offset/y/ds/morph/curve/quality 0
  544. /ev/gemwin/offset/y/ds/slave 0
  545. /ev/gemwin/offset/y/ds/morph/curve/resolution 100
  546. /ev/gemwin/offset/y/ds/morph/curve/weight 0
  547. /ev/gemwin/offset/y/ds/morph/curve/shape 0
  548. /ev/gemwin/offset/y/ds/morph/time 0
  549. /ev/gemwin/offset/y/ds/morph 0
  550. /ev/gemwin/frame/ds/occupy 0
  551. /ev/gemwin/frame/ds/delay 0
  552. /ev/gemwin/frame/ds/morph/timegrain 20
  553. /ev/gemwin/frame/ds/morph/curve/quality 0
  554. /ev/gemwin/frame/ds/slave 0
  555. /ev/gemwin/frame/ds/morph/curve/resolution 100
  556. /ev/gemwin/frame/ds/morph/curve/weight 0
  557. /ev/gemwin/frame/ds/morph/curve/shape 0
  558. /ev/gemwin/frame/ds/morph/time 0
  559. /ev/gemwin/frame/ds/morph 0
  560. /ev/gemwin/lighting/ds/occupy 0
  561. /ev/gemwin/lighting/ds/delay 0
  562. /ev/gemwin/lighting/ds/morph/timegrain 20
  563. /ev/gemwin/lighting/ds/morph/curve/quality 0
  564. /ev/gemwin/lighting/ds/slave 0
  565. /ev/gemwin/lighting/ds/morph/curve/resolution 100
  566. /ev/gemwin/lighting/ds/morph/curve/weight 0
  567. /ev/gemwin/lighting/ds/morph/curve/shape 0
  568. /ev/gemwin/lighting/ds/morph/time 0
  569. /ev/gemwin/lighting/ds/morph 0
  570. /ev/gemwin/border/ds/occupy 0
  571. /ev/gemwin/border/ds/delay 0
  572. /ev/gemwin/border/ds/morph/timegrain 20
  573. /ev/gemwin/border/ds/morph/curve/quality 0
  574. /ev/gemwin/border/ds/slave 0
  575. /ev/gemwin/border/ds/morph/curve/resolution 100
  576. /ev/gemwin/border/ds/morph/curve/weight 0
  577. /ev/gemwin/border/ds/morph/curve/shape 0
  578. /ev/gemwin/border/ds/morph/time 0
  579. /ev/gemwin/border/ds/morph 0
  580. /ev/buf/0/color/ds/occupy 0
  581. /ev/buf/0/color/ds/delay 0
  582. /ev/buf/0/color/ds/morph/timegrain 20
  583. /ev/buf/0/color/ds/morph/curve/quality 0
  584. /ev/buf/0/color/ds/slave 0
  585. /ev/buf/0/color/ds/morph/curve/resolution 100
  586. /ev/buf/0/color/ds/morph/curve/weight 0
  587. /ev/buf/0/color/ds/morph/curve/shape 0
  588. /ev/buf/0/color/ds/morph/time 0
  589. /ev/buf/0/color/ds/morph 0
  590. /ev/buf/0/format/ds/occupy 0
  591. /ev/buf/0/format/ds/delay 0
  592. /ev/buf/0/format/ds/morph/timegrain 20
  593. /ev/buf/0/format/ds/morph/curve/quality 0
  594. /ev/buf/0/format/ds/slave 0
  595. /ev/buf/0/format/ds/morph/curve/resolution 100
  596. /ev/buf/0/format/ds/morph/curve/weight 0
  597. /ev/buf/0/format/ds/morph/curve/shape 0
  598. /ev/buf/0/format/ds/morph/time 0
  599. /ev/buf/0/format/ds/morph 0
  600. /ev/buf/0/rectangle/ds/occupy 0
  601. /ev/buf/0/rectangle/ds/delay 0
  602. /ev/buf/0/rectangle/ds/morph/timegrain 20
  603. /ev/buf/0/rectangle/ds/morph/curve/quality 0
  604. /ev/buf/0/rectangle/ds/slave 0
  605. /ev/buf/0/rectangle/ds/morph/curve/resolution 100
  606. /ev/buf/0/rectangle/ds/morph/curve/weight 0
  607. /ev/buf/0/rectangle/ds/morph/curve/shape 0
  608. /ev/buf/0/rectangle/ds/morph/time 0
  609. /ev/buf/0/rectangle/ds/morph 0
  610. /ev/buf/0/type/ds/occupy 0
  611. /ev/buf/0/type/ds/delay 0
  612. /ev/buf/0/type/ds/morph/timegrain 20
  613. /ev/buf/0/type/ds/morph/curve/quality 0
  614. /ev/buf/0/type/ds/slave 0
  615. /ev/buf/0/type/ds/morph/curve/resolution 100
  616. /ev/buf/0/type/ds/morph/curve/weight 0
  617. /ev/buf/0/type/ds/morph/curve/shape 0
  618. /ev/buf/0/type/ds/morph/time 0
  619. /ev/buf/0/type/ds/morph 0
  620. /ev/buf/0/shift/y/ds/occupy 0
  621. /ev/buf/0/shift/y/ds/delay 0
  622. /ev/buf/0/shift/y/ds/morph/timegrain 20
  623. /ev/buf/0/shift/y/ds/morph/curve/quality 0
  624. /ev/buf/0/shift/y/ds/slave 0
  625. /ev/buf/0/shift/y/ds/morph/curve/resolution 100
  626. /ev/buf/0/shift/y/ds/morph/curve/weight 0
  627. /ev/buf/0/shift/y/ds/morph/curve/shape 0
  628. /ev/buf/0/shift/y/ds/morph/time 0
  629. /ev/buf/0/shift/y/ds/morph 0
  630. /ev/buf/0/shift/x/ds/occupy 0
  631. /ev/buf/0/shift/x/ds/delay 0
  632. /ev/buf/0/shift/x/ds/morph/timegrain 20
  633. /ev/buf/0/shift/x/ds/morph/curve/quality 0
  634. /ev/buf/0/shift/x/ds/slave 0
  635. /ev/buf/0/shift/x/ds/morph/curve/resolution 100
  636. /ev/buf/0/shift/x/ds/morph/curve/weight 0
  637. /ev/buf/0/shift/x/ds/morph/curve/shape 0
  638. /ev/buf/0/shift/x/ds/morph/time 0
  639. /ev/buf/0/shift/x/ds/morph 0
  640. /ev/buf/0/scale/y/ds/occupy 0
  641. /ev/buf/0/scale/y/ds/delay 0
  642. /ev/buf/0/scale/y/ds/morph/timegrain 20
  643. /ev/buf/0/scale/y/ds/morph/curve/quality 0
  644. /ev/buf/0/scale/y/ds/slave 0
  645. /ev/buf/0/scale/y/ds/morph/curve/resolution 100
  646. /ev/buf/0/scale/y/ds/morph/curve/weight 0
  647. /ev/buf/0/scale/y/ds/morph/curve/shape 0
  648. /ev/buf/0/scale/y/ds/morph/time 0
  649. /ev/buf/0/scale/y/ds/morph 0
  650. /ev/buf/0/scale/x/ds/occupy 0
  651. /ev/buf/0/scale/x/ds/delay 0
  652. /ev/buf/0/scale/x/ds/morph/timegrain 20
  653. /ev/buf/0/scale/x/ds/morph/curve/quality 0
  654. /ev/buf/0/scale/x/ds/slave 0
  655. /ev/buf/0/scale/x/ds/morph/curve/resolution 100
  656. /ev/buf/0/scale/x/ds/morph/curve/weight 0
  657. /ev/buf/0/scale/x/ds/morph/curve/shape 0
  658. /ev/buf/0/scale/x/ds/morph/time 0
  659. /ev/buf/0/scale/x/ds/morph 0
  660. /ev/buf/0/dimen/y/ds/occupy 0
  661. /ev/buf/0/dimen/y/ds/delay 0
  662. /ev/buf/0/dimen/y/ds/morph/timegrain 20
  663. /ev/buf/0/dimen/y/ds/morph/curve/quality 0
  664. /ev/buf/0/dimen/y/ds/slave 0
  665. /ev/buf/0/dimen/y/ds/morph/curve/resolution 100
  666. /ev/buf/0/dimen/y/ds/morph/curve/weight 0
  667. /ev/buf/0/dimen/y/ds/morph/curve/shape 0
  668. /ev/buf/0/dimen/y/ds/morph/time 0
  669. /ev/buf/0/dimen/y/ds/morph 0
  670. /ev/buf/0/dimen/x/ds/occupy 0
  671. /ev/buf/0/dimen/x/ds/delay 0
  672. /ev/buf/0/dimen/x/ds/morph/timegrain 20
  673. /ev/buf/0/dimen/x/ds/morph/curve/quality 0
  674. /ev/buf/0/dimen/x/ds/slave 0
  675. /ev/buf/0/dimen/x/ds/morph/curve/resolution 100
  676. /ev/buf/0/dimen/x/ds/morph/curve/weight 0
  677. /ev/buf/0/dimen/x/ds/morph/curve/shape 0
  678. /ev/buf/0/dimen/x/ds/morph/time 0
  679. /ev/buf/0/dimen/x/ds/morph 0
  680. /ev/buf/0/state/ds/occupy 0
  681. /ev/buf/0/state/ds/delay 0
  682. /ev/buf/0/state/ds/morph/timegrain 20
  683. /ev/buf/0/state/ds/morph/curve/quality 0
  684. /ev/buf/0/state/ds/slave 0
  685. /ev/buf/0/state/ds/morph/curve/resolution 100
  686. /ev/buf/0/state/ds/morph/curve/weight 0
  687. /ev/buf/0/state/ds/morph/curve/shape 0
  688. /ev/buf/0/state/ds/morph/time 0
  689. /ev/buf/0/state/ds/morph 0
  690. #data
  691. /ev/pro/l/cursor/mode 2
  692. /ev/pro/l/grid/state 0
  693. /ev/pro/l/state 1
  694. /ev/pro/l/shade/left 0
  695. /ev/pro/l/shade/bottom 0
  696. /ev/pro/l/shade/right 0
  697. /ev/pro/l/shade/top 0
  698. /ev/pro/l/texture/bottom/right/y 421
  699. /ev/pro/l/texture/bottom/right/x 507.904
  700. /ev/pro/l/texture/bottom/left/y 421
  701. /ev/pro/l/texture/bottom/left/x 0
  702. /ev/pro/l/texture/top/right/y 610
  703. /ev/pro/l/texture/top/right/x 505.856
  704. /ev/pro/l/texture/top/left/y 610
  705. /ev/pro/l/texture/top/left/x 0
  706. /ev/pro/l/vertex/bottom/right/y -3.656
  707. /ev/pro/l/vertex/bottom/right/x -3.02934
  708. /ev/pro/l/vertex/bottom/left/y -3.024
  709. /ev/pro/l/vertex/bottom/left/x -4.66134
  710. /ev/pro/l/vertex/top/right/y 3.26134
  711. /ev/pro/l/vertex/top/right/x -0.766
  712. /ev/pro/l/vertex/top/left/y 2.90667
  713. /ev/pro/l/vertex/top/left/x -4.63134
  714. /ev/pro/grid/flip/vertical 0
  715. /ev/pro/grid/flip/horizontal 0
  716. /ev/pro/grid/filename ../media/grid.png
  717. /ev/pro/grid/state 1
  718. /ev/pro/r/cursor/mode 2
  719. /ev/pro/r/grid/state 0
  720. /ev/pro/r/state 1
  721. /ev/pro/r/shade/left 0
  722. /ev/pro/r/shade/bottom 0
  723. /ev/pro/r/shade/right 0
  724. /ev/pro/r/shade/top 0
  725. /ev/pro/r/texture/bottom/right/y 421
  726. /ev/pro/r/texture/bottom/right/x 1024
  727. /ev/pro/r/texture/bottom/left/y 421
  728. /ev/pro/r/texture/bottom/left/x 507.904
  729. /ev/pro/r/texture/top/right/y 610
  730. /ev/pro/r/texture/top/right/x 1024
  731. /ev/pro/r/texture/top/left/y 610
  732. /ev/pro/r/texture/top/left/x 505.856
  733. /ev/pro/r/vertex/bottom/right/y -1.64533
  734. /ev/pro/r/vertex/bottom/right/x 2.63
  735. /ev/pro/r/vertex/bottom/left/y -3.66267
  736. /ev/pro/r/vertex/bottom/left/x -3.06267
  737. /ev/pro/r/vertex/top/right/y 1.34666
  738. /ev/pro/r/vertex/top/right/x 3.66335
  739. /ev/pro/r/vertex/top/left/y 3.26134
  740. /ev/pro/r/vertex/top/left/x -0.776
  741. /ev/gemwin/dimen/x 800
  742. /ev/gemwin/dimen/y 600
  743. /ev/gemwin/offset/x 0
  744. /ev/gemwin/offset/y 0
  745. /ev/gemwin/frame 25
  746. /ev/gemwin/lighting 30
  747. /ev/gemwin/border 1
  748. /ev/buf/0/color 0.9 0.6 0.1 1
  749. /ev/buf/0/format RGBA
  750. /ev/buf/0/rectangle 1
  751. /ev/buf/0/type BYTE
  752. /ev/buf/0/shift/y 0
  753. /ev/buf/0/shift/x 0
  754. /ev/buf/0/scale/y 1.3
  755. /ev/buf/0/scale/x 1.3
  756. /ev/buf/0/dimen/y 1024
  757. /ev/buf/0/dimen/x 1024
  758. /ev/buf/0/state 1
  759. ======================== SCENE 1 two ========================
  760. #settings
  761. /ev/pro/l/cursor/mode/ds/occupy 0
  762. /ev/pro/l/cursor/mode/ds/delay 0
  763. /ev/pro/l/cursor/mode/ds/morph/timegrain 20
  764. /ev/pro/l/cursor/mode/ds/morph/curve/quality 0
  765. /ev/pro/l/cursor/mode/ds/slave 0
  766. /ev/pro/l/cursor/mode/ds/morph/curve/resolution 100
  767. /ev/pro/l/cursor/mode/ds/morph/curve/weight 0
  768. /ev/pro/l/cursor/mode/ds/morph/curve/shape 0
  769. /ev/pro/l/cursor/mode/ds/morph/time 0
  770. /ev/pro/l/cursor/mode/ds/morph 0
  771. /ev/pro/l/grid/state/ds/occupy 0
  772. /ev/pro/l/grid/state/ds/delay 0
  773. /ev/pro/l/grid/state/ds/morph/timegrain 20
  774. /ev/pro/l/grid/state/ds/morph/curve/quality 0
  775. /ev/pro/l/grid/state/ds/slave 0
  776. /ev/pro/l/grid/state/ds/morph/curve/resolution 100
  777. /ev/pro/l/grid/state/ds/morph/curve/weight 0
  778. /ev/pro/l/grid/state/ds/morph/curve/shape 0
  779. /ev/pro/l/grid/state/ds/morph/time 0
  780. /ev/pro/l/grid/state/ds/morph 0
  781. /ev/pro/l/state/ds/occupy 0
  782. /ev/pro/l/state/ds/delay 0
  783. /ev/pro/l/state/ds/morph/timegrain 20
  784. /ev/pro/l/state/ds/morph/curve/quality 0
  785. /ev/pro/l/state/ds/slave 0
  786. /ev/pro/l/state/ds/morph/curve/resolution 100
  787. /ev/pro/l/state/ds/morph/curve/weight 0
  788. /ev/pro/l/state/ds/morph/curve/shape 0
  789. /ev/pro/l/state/ds/morph/time 0
  790. /ev/pro/l/state/ds/morph 0
  791. /ev/pro/l/shade/left/ds/occupy 0
  792. /ev/pro/l/shade/left/ds/delay 0
  793. /ev/pro/l/shade/left/ds/morph/timegrain 20
  794. /ev/pro/l/shade/left/ds/morph/curve/quality 0
  795. /ev/pro/l/shade/left/ds/slave 0
  796. /ev/pro/l/shade/left/ds/morph/curve/resolution 100
  797. /ev/pro/l/shade/left/ds/morph/curve/weight 0
  798. /ev/pro/l/shade/left/ds/morph/curve/shape 0
  799. /ev/pro/l/shade/left/ds/morph/time 0
  800. /ev/pro/l/shade/left/ds/morph 0
  801. /ev/pro/l/shade/bottom/ds/occupy 0
  802. /ev/pro/l/shade/bottom/ds/delay 0
  803. /ev/pro/l/shade/bottom/ds/morph/timegrain 20
  804. /ev/pro/l/shade/bottom/ds/morph/curve/quality 0
  805. /ev/pro/l/shade/bottom/ds/slave 0
  806. /ev/pro/l/shade/bottom/ds/morph/curve/resolution 100
  807. /ev/pro/l/shade/bottom/ds/morph/curve/weight 0
  808. /ev/pro/l/shade/bottom/ds/morph/curve/shape 0
  809. /ev/pro/l/shade/bottom/ds/morph/time 0
  810. /ev/pro/l/shade/bottom/ds/morph 0
  811. /ev/pro/l/shade/right/ds/occupy 0
  812. /ev/pro/l/shade/right/ds/delay 0
  813. /ev/pro/l/shade/right/ds/morph/timegrain 20
  814. /ev/pro/l/shade/right/ds/morph/curve/quality 0
  815. /ev/pro/l/shade/right/ds/slave 0
  816. /ev/pro/l/shade/right/ds/morph/curve/resolution 100
  817. /ev/pro/l/shade/right/ds/morph/curve/weight 0
  818. /ev/pro/l/shade/right/ds/morph/curve/shape 0
  819. /ev/pro/l/shade/right/ds/morph/time 0
  820. /ev/pro/l/shade/right/ds/morph 0
  821. /ev/pro/l/shade/top/ds/occupy 0
  822. /ev/pro/l/shade/top/ds/delay 0
  823. /ev/pro/l/shade/top/ds/morph/timegrain 20
  824. /ev/pro/l/shade/top/ds/morph/curve/quality 0
  825. /ev/pro/l/shade/top/ds/slave 0
  826. /ev/pro/l/shade/top/ds/morph/curve/resolution 100
  827. /ev/pro/l/shade/top/ds/morph/curve/weight 0
  828. /ev/pro/l/shade/top/ds/morph/curve/shape 0
  829. /ev/pro/l/shade/top/ds/morph/time 0
  830. /ev/pro/l/shade/top/ds/morph 0
  831. /ev/pro/l/texture/bottom/right/y/ds/occupy 0
  832. /ev/pro/l/texture/bottom/right/y/ds/delay 0
  833. /ev/pro/l/texture/bottom/right/y/ds/morph/timegrain 20
  834. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/quality 0
  835. /ev/pro/l/texture/bottom/right/y/ds/slave 0
  836. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/resolution 100
  837. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/weight 0
  838. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/shape 0
  839. /ev/pro/l/texture/bottom/right/y/ds/morph/time 0
  840. /ev/pro/l/texture/bottom/right/y/ds/morph 0
  841. /ev/pro/l/texture/bottom/right/x/ds/occupy 0
  842. /ev/pro/l/texture/bottom/right/x/ds/delay 0
  843. /ev/pro/l/texture/bottom/right/x/ds/morph/timegrain 20
  844. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/quality 0
  845. /ev/pro/l/texture/bottom/right/x/ds/slave 0
  846. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/resolution 100
  847. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/weight 0
  848. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/shape 0
  849. /ev/pro/l/texture/bottom/right/x/ds/morph/time 0
  850. /ev/pro/l/texture/bottom/right/x/ds/morph 0
  851. /ev/pro/l/texture/bottom/left/y/ds/occupy 0
  852. /ev/pro/l/texture/bottom/left/y/ds/delay 0
  853. /ev/pro/l/texture/bottom/left/y/ds/morph/timegrain 20
  854. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/quality 0
  855. /ev/pro/l/texture/bottom/left/y/ds/slave 0
  856. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/resolution 100
  857. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/weight 0
  858. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/shape 0
  859. /ev/pro/l/texture/bottom/left/y/ds/morph/time 0
  860. /ev/pro/l/texture/bottom/left/y/ds/morph 0
  861. /ev/pro/l/texture/bottom/left/x/ds/occupy 0
  862. /ev/pro/l/texture/bottom/left/x/ds/delay 0
  863. /ev/pro/l/texture/bottom/left/x/ds/morph/timegrain 20
  864. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/quality 0
  865. /ev/pro/l/texture/bottom/left/x/ds/slave 0
  866. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/resolution 100
  867. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/weight 0
  868. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/shape 0
  869. /ev/pro/l/texture/bottom/left/x/ds/morph/time 0
  870. /ev/pro/l/texture/bottom/left/x/ds/morph 0
  871. /ev/pro/l/texture/top/right/y/ds/occupy 0
  872. /ev/pro/l/texture/top/right/y/ds/delay 0
  873. /ev/pro/l/texture/top/right/y/ds/morph/timegrain 20
  874. /ev/pro/l/texture/top/right/y/ds/morph/curve/quality 0
  875. /ev/pro/l/texture/top/right/y/ds/slave 0
  876. /ev/pro/l/texture/top/right/y/ds/morph/curve/resolution 100
  877. /ev/pro/l/texture/top/right/y/ds/morph/curve/weight 0
  878. /ev/pro/l/texture/top/right/y/ds/morph/curve/shape 0
  879. /ev/pro/l/texture/top/right/y/ds/morph/time 0
  880. /ev/pro/l/texture/top/right/y/ds/morph 0
  881. /ev/pro/l/texture/top/right/x/ds/occupy 0
  882. /ev/pro/l/texture/top/right/x/ds/delay 0
  883. /ev/pro/l/texture/top/right/x/ds/morph/timegrain 20
  884. /ev/pro/l/texture/top/right/x/ds/morph/curve/quality 0
  885. /ev/pro/l/texture/top/right/x/ds/slave 0
  886. /ev/pro/l/texture/top/right/x/ds/morph/curve/resolution 100
  887. /ev/pro/l/texture/top/right/x/ds/morph/curve/weight 0
  888. /ev/pro/l/texture/top/right/x/ds/morph/curve/shape 0
  889. /ev/pro/l/texture/top/right/x/ds/morph/time 0
  890. /ev/pro/l/texture/top/right/x/ds/morph 0
  891. /ev/pro/l/texture/top/left/y/ds/occupy 0
  892. /ev/pro/l/texture/top/left/y/ds/delay 0
  893. /ev/pro/l/texture/top/left/y/ds/morph/timegrain 20
  894. /ev/pro/l/texture/top/left/y/ds/morph/curve/quality 0
  895. /ev/pro/l/texture/top/left/y/ds/slave 0
  896. /ev/pro/l/texture/top/left/y/ds/morph/curve/resolution 100
  897. /ev/pro/l/texture/top/left/y/ds/morph/curve/weight 0
  898. /ev/pro/l/texture/top/left/y/ds/morph/curve/shape 0
  899. /ev/pro/l/texture/top/left/y/ds/morph/time 0
  900. /ev/pro/l/texture/top/left/y/ds/morph 0
  901. /ev/pro/l/texture/top/left/x/ds/occupy 0
  902. /ev/pro/l/texture/top/left/x/ds/delay 0
  903. /ev/pro/l/texture/top/left/x/ds/morph/timegrain 20
  904. /ev/pro/l/texture/top/left/x/ds/morph/curve/quality 0
  905. /ev/pro/l/texture/top/left/x/ds/slave 0
  906. /ev/pro/l/texture/top/left/x/ds/morph/curve/resolution 100
  907. /ev/pro/l/texture/top/left/x/ds/morph/curve/weight 0
  908. /ev/pro/l/texture/top/left/x/ds/morph/curve/shape 0
  909. /ev/pro/l/texture/top/left/x/ds/morph/time 0
  910. /ev/pro/l/texture/top/left/x/ds/morph 0
  911. /ev/pro/l/vertex/bottom/right/x/ds/occupy 0
  912. /ev/pro/l/vertex/bottom/right/x/ds/delay 0
  913. /ev/pro/l/vertex/bottom/right/x/ds/morph/timegrain 20
  914. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/quality 0
  915. /ev/pro/l/vertex/bottom/right/x/ds/slave 0
  916. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/resolution 100
  917. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/weight 0
  918. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/shape 0
  919. /ev/pro/l/vertex/bottom/right/x/ds/morph/time 5
  920. /ev/pro/l/vertex/bottom/right/x/ds/morph 1
  921. /ev/pro/l/vertex/bottom/left/y/ds/occupy 0
  922. /ev/pro/l/vertex/bottom/left/y/ds/delay 0
  923. /ev/pro/l/vertex/bottom/left/y/ds/morph/timegrain 20
  924. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/quality 0
  925. /ev/pro/l/vertex/bottom/left/y/ds/slave 0
  926. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/resolution 100
  927. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/weight 0
  928. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/shape 0
  929. /ev/pro/l/vertex/bottom/left/y/ds/morph/time 0
  930. /ev/pro/l/vertex/bottom/left/y/ds/morph 0
  931. /ev/pro/l/vertex/bottom/left/x/ds/occupy 0
  932. /ev/pro/l/vertex/bottom/left/x/ds/delay 0
  933. /ev/pro/l/vertex/bottom/left/x/ds/morph/timegrain 20
  934. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/quality 0
  935. /ev/pro/l/vertex/bottom/left/x/ds/slave 0
  936. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/resolution 100
  937. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/weight 0
  938. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/shape 0
  939. /ev/pro/l/vertex/bottom/left/x/ds/morph/time 0
  940. /ev/pro/l/vertex/bottom/left/x/ds/morph 0
  941. /ev/pro/l/vertex/top/right/y/ds/occupy 0
  942. /ev/pro/l/vertex/top/right/y/ds/delay 0
  943. /ev/pro/l/vertex/top/right/y/ds/morph/timegrain 20
  944. /ev/pro/l/vertex/top/right/y/ds/morph/curve/quality 0
  945. /ev/pro/l/vertex/top/right/y/ds/slave 0
  946. /ev/pro/l/vertex/top/right/y/ds/morph/curve/resolution 100
  947. /ev/pro/l/vertex/top/right/y/ds/morph/curve/weight 0
  948. /ev/pro/l/vertex/top/right/y/ds/morph/curve/shape 0
  949. /ev/pro/l/vertex/top/right/y/ds/morph/time 0
  950. /ev/pro/l/vertex/top/right/y/ds/morph 0
  951. /ev/pro/l/vertex/top/right/x/ds/occupy 0
  952. /ev/pro/l/vertex/top/right/x/ds/delay 0
  953. /ev/pro/l/vertex/top/right/x/ds/morph/timegrain 20
  954. /ev/pro/l/vertex/top/right/x/ds/morph/curve/quality 0
  955. /ev/pro/l/vertex/top/right/x/ds/slave 0
  956. /ev/pro/l/vertex/top/right/x/ds/morph/curve/resolution 100
  957. /ev/pro/l/vertex/top/right/x/ds/morph/curve/weight 0
  958. /ev/pro/l/vertex/top/right/x/ds/morph/curve/shape 0
  959. /ev/pro/l/vertex/top/right/x/ds/morph/time 0
  960. /ev/pro/l/vertex/top/right/x/ds/morph 0
  961. /ev/pro/l/vertex/top/left/y/ds/occupy 0
  962. /ev/pro/l/vertex/top/left/y/ds/delay 0
  963. /ev/pro/l/vertex/top/left/y/ds/morph/timegrain 20
  964. /ev/pro/l/vertex/top/left/y/ds/morph/curve/quality 0
  965. /ev/pro/l/vertex/top/left/y/ds/slave 0
  966. /ev/pro/l/vertex/top/left/y/ds/morph/curve/resolution 100
  967. /ev/pro/l/vertex/top/left/y/ds/morph/curve/weight 0
  968. /ev/pro/l/vertex/top/left/y/ds/morph/curve/shape 0
  969. /ev/pro/l/vertex/top/left/y/ds/morph/time 0
  970. /ev/pro/l/vertex/top/left/y/ds/morph 0
  971. /ev/pro/l/vertex/top/left/x/ds/occupy 0
  972. /ev/pro/l/vertex/top/left/x/ds/delay 0
  973. /ev/pro/l/vertex/top/left/x/ds/morph/timegrain 20
  974. /ev/pro/l/vertex/top/left/x/ds/morph/curve/quality 0
  975. /ev/pro/l/vertex/top/left/x/ds/slave 0
  976. /ev/pro/l/vertex/top/left/x/ds/morph/curve/resolution 100
  977. /ev/pro/l/vertex/top/left/x/ds/morph/curve/weight 0
  978. /ev/pro/l/vertex/top/left/x/ds/morph/curve/shape 0
  979. /ev/pro/l/vertex/top/left/x/ds/morph/time 0
  980. /ev/pro/l/vertex/top/left/x/ds/morph 0
  981. /ev/pro/grid/flip/vertical/ds/occupy 0
  982. /ev/pro/grid/flip/vertical/ds/delay 0
  983. /ev/pro/grid/flip/vertical/ds/morph/timegrain 20
  984. /ev/pro/grid/flip/vertical/ds/morph/curve/quality 0
  985. /ev/pro/grid/flip/vertical/ds/slave 0
  986. /ev/pro/grid/flip/vertical/ds/morph/curve/resolution 100
  987. /ev/pro/grid/flip/vertical/ds/morph/curve/weight 0
  988. /ev/pro/grid/flip/vertical/ds/morph/curve/shape 0
  989. /ev/pro/grid/flip/vertical/ds/morph/time 0
  990. /ev/pro/grid/flip/vertical/ds/morph 0
  991. /ev/pro/grid/flip/horizontal/ds/occupy 0
  992. /ev/pro/grid/flip/horizontal/ds/delay 0
  993. /ev/pro/grid/flip/horizontal/ds/morph/timegrain 20
  994. /ev/pro/grid/flip/horizontal/ds/morph/curve/quality 0
  995. /ev/pro/grid/flip/horizontal/ds/slave 0
  996. /ev/pro/grid/flip/horizontal/ds/morph/curve/resolution 100
  997. /ev/pro/grid/flip/horizontal/ds/morph/curve/weight 0
  998. /ev/pro/grid/flip/horizontal/ds/morph/curve/shape 0
  999. /ev/pro/grid/flip/horizontal/ds/morph/time 0
  1000. /ev/pro/grid/flip/horizontal/ds/morph 0
  1001. /ev/pro/grid/filename/ds/occupy 0
  1002. /ev/pro/grid/filename/ds/delay 0
  1003. /ev/pro/grid/filename/ds/morph/timegrain 20
  1004. /ev/pro/grid/filename/ds/morph/curve/quality 0
  1005. /ev/pro/grid/filename/ds/slave 0
  1006. /ev/pro/grid/filename/ds/morph/curve/resolution 100
  1007. /ev/pro/grid/filename/ds/morph/curve/weight 0
  1008. /ev/pro/grid/filename/ds/morph/curve/shape 0
  1009. /ev/pro/grid/filename/ds/morph/time 0
  1010. /ev/pro/grid/filename/ds/morph 0
  1011. /ev/pro/grid/state/ds/occupy 0
  1012. /ev/pro/grid/state/ds/delay 0
  1013. /ev/pro/grid/state/ds/morph/timegrain 20
  1014. /ev/pro/grid/state/ds/morph/curve/quality 0
  1015. /ev/pro/grid/state/ds/slave 0
  1016. /ev/pro/grid/state/ds/morph/curve/resolution 100
  1017. /ev/pro/grid/state/ds/morph/curve/weight 0
  1018. /ev/pro/grid/state/ds/morph/curve/shape 0
  1019. /ev/pro/grid/state/ds/morph/time 0
  1020. /ev/pro/grid/state/ds/morph 0
  1021. /ev/pro/r/cursor/mode/ds/occupy 0
  1022. /ev/pro/r/cursor/mode/ds/delay 0
  1023. /ev/pro/r/cursor/mode/ds/morph/timegrain 20
  1024. /ev/pro/r/cursor/mode/ds/morph/curve/quality 0
  1025. /ev/pro/r/cursor/mode/ds/slave 0
  1026. /ev/pro/r/cursor/mode/ds/morph/curve/resolution 100
  1027. /ev/pro/r/cursor/mode/ds/morph/curve/weight 0
  1028. /ev/pro/r/cursor/mode/ds/morph/curve/shape 0
  1029. /ev/pro/r/cursor/mode/ds/morph/time 0
  1030. /ev/pro/r/cursor/mode/ds/morph 0
  1031. /ev/pro/r/grid/state/ds/occupy 0
  1032. /ev/pro/r/grid/state/ds/delay 0
  1033. /ev/pro/r/grid/state/ds/morph/timegrain 20
  1034. /ev/pro/r/grid/state/ds/morph/curve/quality 0
  1035. /ev/pro/r/grid/state/ds/slave 0
  1036. /ev/pro/r/grid/state/ds/morph/curve/resolution 100
  1037. /ev/pro/r/grid/state/ds/morph/curve/weight 0
  1038. /ev/pro/r/grid/state/ds/morph/curve/shape 0
  1039. /ev/pro/r/grid/state/ds/morph/time 0
  1040. /ev/pro/r/grid/state/ds/morph 0
  1041. /ev/pro/r/state/ds/occupy 0
  1042. /ev/pro/r/state/ds/delay 0
  1043. /ev/pro/r/state/ds/morph/timegrain 20
  1044. /ev/pro/r/state/ds/morph/curve/quality 0
  1045. /ev/pro/r/state/ds/slave 0
  1046. /ev/pro/r/state/ds/morph/curve/resolution 100
  1047. /ev/pro/r/state/ds/morph/curve/weight 0
  1048. /ev/pro/r/state/ds/morph/curve/shape 0
  1049. /ev/pro/r/state/ds/morph/time 0
  1050. /ev/pro/r/state/ds/morph 0
  1051. /ev/pro/r/shade/left/ds/occupy 0
  1052. /ev/pro/r/shade/left/ds/delay 0
  1053. /ev/pro/r/shade/left/ds/morph/timegrain 20
  1054. /ev/pro/r/shade/left/ds/morph/curve/quality 0
  1055. /ev/pro/r/shade/left/ds/slave 0
  1056. /ev/pro/r/shade/left/ds/morph/curve/resolution 100
  1057. /ev/pro/r/shade/left/ds/morph/curve/weight 0
  1058. /ev/pro/r/shade/left/ds/morph/curve/shape 0
  1059. /ev/pro/r/shade/left/ds/morph/time 0
  1060. /ev/pro/r/shade/left/ds/morph 0
  1061. /ev/pro/r/shade/bottom/ds/occupy 0
  1062. /ev/pro/r/shade/bottom/ds/delay 0
  1063. /ev/pro/r/shade/bottom/ds/morph/timegrain 20
  1064. /ev/pro/r/shade/bottom/ds/morph/curve/quality 0
  1065. /ev/pro/r/shade/bottom/ds/slave 0
  1066. /ev/pro/r/shade/bottom/ds/morph/curve/resolution 100
  1067. /ev/pro/r/shade/bottom/ds/morph/curve/weight 0
  1068. /ev/pro/r/shade/bottom/ds/morph/curve/shape 0
  1069. /ev/pro/r/shade/bottom/ds/morph/time 0
  1070. /ev/pro/r/shade/bottom/ds/morph 0
  1071. /ev/pro/r/shade/right/ds/occupy 0
  1072. /ev/pro/r/shade/right/ds/delay 0
  1073. /ev/pro/r/shade/right/ds/morph/timegrain 20
  1074. /ev/pro/r/shade/right/ds/morph/curve/quality 0
  1075. /ev/pro/r/shade/right/ds/slave 0
  1076. /ev/pro/r/shade/right/ds/morph/curve/resolution 100
  1077. /ev/pro/r/shade/right/ds/morph/curve/weight 0
  1078. /ev/pro/r/shade/right/ds/morph/curve/shape 0
  1079. /ev/pro/r/shade/right/ds/morph/time 0
  1080. /ev/pro/r/shade/right/ds/morph 0
  1081. /ev/pro/r/shade/top/ds/occupy 0
  1082. /ev/pro/r/shade/top/ds/delay 0
  1083. /ev/pro/r/shade/top/ds/morph/timegrain 20
  1084. /ev/pro/r/shade/top/ds/morph/curve/quality 0
  1085. /ev/pro/r/shade/top/ds/slave 0
  1086. /ev/pro/r/shade/top/ds/morph/curve/resolution 100
  1087. /ev/pro/r/shade/top/ds/morph/curve/weight 0
  1088. /ev/pro/r/shade/top/ds/morph/curve/shape 0
  1089. /ev/pro/r/shade/top/ds/morph/time 0
  1090. /ev/pro/r/shade/top/ds/morph 0
  1091. /ev/pro/r/texture/bottom/right/y/ds/occupy 0
  1092. /ev/pro/r/texture/bottom/right/y/ds/delay 0
  1093. /ev/pro/r/texture/bottom/right/y/ds/morph/timegrain 20
  1094. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/quality 0
  1095. /ev/pro/r/texture/bottom/right/y/ds/slave 0
  1096. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/resolution 100
  1097. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/weight 0
  1098. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/shape 0
  1099. /ev/pro/r/texture/bottom/right/y/ds/morph/time 0
  1100. /ev/pro/r/texture/bottom/right/y/ds/morph 0
  1101. /ev/pro/r/texture/bottom/right/x/ds/occupy 0
  1102. /ev/pro/r/texture/bottom/right/x/ds/delay 0
  1103. /ev/pro/r/texture/bottom/right/x/ds/morph/timegrain 20
  1104. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/quality 0
  1105. /ev/pro/r/texture/bottom/right/x/ds/slave 0
  1106. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/resolution 100
  1107. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/weight 0
  1108. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/shape 0
  1109. /ev/pro/r/texture/bottom/right/x/ds/morph/time 0
  1110. /ev/pro/r/texture/bottom/right/x/ds/morph 0
  1111. /ev/pro/r/texture/bottom/left/y/ds/occupy 0
  1112. /ev/pro/r/texture/bottom/left/y/ds/delay 0
  1113. /ev/pro/r/texture/bottom/left/y/ds/morph/timegrain 20
  1114. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/quality 0
  1115. /ev/pro/r/texture/bottom/left/y/ds/slave 0
  1116. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/resolution 100
  1117. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/weight 0
  1118. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/shape 0
  1119. /ev/pro/r/texture/bottom/left/y/ds/morph/time 0
  1120. /ev/pro/r/texture/bottom/left/y/ds/morph 0
  1121. /ev/pro/r/texture/bottom/left/x/ds/occupy 0
  1122. /ev/pro/r/texture/bottom/left/x/ds/delay 0
  1123. /ev/pro/r/texture/bottom/left/x/ds/morph/timegrain 20
  1124. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/quality 0
  1125. /ev/pro/r/texture/bottom/left/x/ds/slave 0
  1126. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/resolution 100
  1127. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/weight 0
  1128. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/shape 0
  1129. /ev/pro/r/texture/bottom/left/x/ds/morph/time 0
  1130. /ev/pro/r/texture/bottom/left/x/ds/morph 0
  1131. /ev/pro/r/texture/top/right/y/ds/occupy 0
  1132. /ev/pro/r/texture/top/right/y/ds/delay 0
  1133. /ev/pro/r/texture/top/right/y/ds/morph/timegrain 20
  1134. /ev/pro/r/texture/top/right/y/ds/morph/curve/quality 0
  1135. /ev/pro/r/texture/top/right/y/ds/slave 0
  1136. /ev/pro/r/texture/top/right/y/ds/morph/curve/resolution 100
  1137. /ev/pro/r/texture/top/right/y/ds/morph/curve/weight 0
  1138. /ev/pro/r/texture/top/right/y/ds/morph/curve/shape 0
  1139. /ev/pro/r/texture/top/right/y/ds/morph/time 0
  1140. /ev/pro/r/texture/top/right/y/ds/morph 0
  1141. /ev/pro/r/texture/top/right/x/ds/occupy 0
  1142. /ev/pro/r/texture/top/right/x/ds/delay 0
  1143. /ev/pro/r/texture/top/right/x/ds/morph/timegrain 20
  1144. /ev/pro/r/texture/top/right/x/ds/morph/curve/quality 0
  1145. /ev/pro/r/texture/top/right/x/ds/slave 0
  1146. /ev/pro/r/texture/top/right/x/ds/morph/curve/resolution 100
  1147. /ev/pro/r/texture/top/right/x/ds/morph/curve/weight 0
  1148. /ev/pro/r/texture/top/right/x/ds/morph/curve/shape 0
  1149. /ev/pro/r/texture/top/right/x/ds/morph/time 0
  1150. /ev/pro/r/texture/top/right/x/ds/morph 0
  1151. /ev/pro/r/texture/top/left/y/ds/occupy 0
  1152. /ev/pro/r/texture/top/left/y/ds/delay 0
  1153. /ev/pro/r/texture/top/left/y/ds/morph/timegrain 20
  1154. /ev/pro/r/texture/top/left/y/ds/morph/curve/quality 0
  1155. /ev/pro/r/texture/top/left/y/ds/slave 0
  1156. /ev/pro/r/texture/top/left/y/ds/morph/curve/resolution 100
  1157. /ev/pro/r/texture/top/left/y/ds/morph/curve/weight 0
  1158. /ev/pro/r/texture/top/left/y/ds/morph/curve/shape 0
  1159. /ev/pro/r/texture/top/left/y/ds/morph/time 0
  1160. /ev/pro/r/texture/top/left/y/ds/morph 0
  1161. /ev/pro/r/texture/top/left/x/ds/occupy 0
  1162. /ev/pro/r/texture/top/left/x/ds/delay 0
  1163. /ev/pro/r/texture/top/left/x/ds/morph/timegrain 20
  1164. /ev/pro/r/texture/top/left/x/ds/morph/curve/quality 0
  1165. /ev/pro/r/texture/top/left/x/ds/slave 0
  1166. /ev/pro/r/texture/top/left/x/ds/morph/curve/resolution 100
  1167. /ev/pro/r/texture/top/left/x/ds/morph/curve/weight 0
  1168. /ev/pro/r/texture/top/left/x/ds/morph/curve/shape 0
  1169. /ev/pro/r/texture/top/left/x/ds/morph/time 0
  1170. /ev/pro/r/texture/top/left/x/ds/morph 0
  1171. /ev/pro/r/vertex/bottom/right/y/ds/occupy 0
  1172. /ev/pro/r/vertex/bottom/right/y/ds/delay 0
  1173. /ev/pro/r/vertex/bottom/right/y/ds/morph/timegrain 20
  1174. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/quality 0
  1175. /ev/pro/r/vertex/bottom/right/y/ds/slave 0
  1176. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/resolution 100
  1177. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/weight 0
  1178. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/shape 0
  1179. /ev/pro/r/vertex/bottom/right/y/ds/morph/time 0
  1180. /ev/pro/r/vertex/bottom/right/y/ds/morph 0
  1181. /ev/pro/r/vertex/bottom/right/x/ds/occupy 0
  1182. /ev/pro/r/vertex/bottom/right/x/ds/delay 0
  1183. /ev/pro/r/vertex/bottom/right/x/ds/morph/timegrain 20
  1184. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/quality 0
  1185. /ev/pro/r/vertex/bottom/right/x/ds/slave 0
  1186. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/resolution 100
  1187. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/weight 0
  1188. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/shape 0
  1189. /ev/pro/r/vertex/bottom/right/x/ds/morph/time 0
  1190. /ev/pro/r/vertex/bottom/right/x/ds/morph 0
  1191. /ev/pro/r/vertex/bottom/left/y/ds/occupy 0
  1192. /ev/pro/r/vertex/bottom/left/y/ds/delay 0
  1193. /ev/pro/r/vertex/bottom/left/y/ds/morph/timegrain 20
  1194. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/quality 0
  1195. /ev/pro/r/vertex/bottom/left/y/ds/slave 0
  1196. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/resolution 100
  1197. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/weight 0
  1198. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/shape 0
  1199. /ev/pro/r/vertex/bottom/left/y/ds/morph/time 5
  1200. /ev/pro/r/vertex/bottom/left/y/ds/morph 1
  1201. /ev/pro/r/vertex/bottom/left/x/ds/occupy 0
  1202. /ev/pro/r/vertex/bottom/left/x/ds/delay 0
  1203. /ev/pro/r/vertex/bottom/left/x/ds/morph/timegrain 20
  1204. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/quality 0
  1205. /ev/pro/r/vertex/bottom/left/x/ds/slave 0
  1206. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/resolution 100
  1207. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/weight 0
  1208. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/shape 0
  1209. /ev/pro/r/vertex/bottom/left/x/ds/morph/time 5
  1210. /ev/pro/r/vertex/bottom/left/x/ds/morph 1
  1211. /ev/pro/r/vertex/top/right/y/ds/occupy 0
  1212. /ev/pro/r/vertex/top/right/y/ds/delay 0
  1213. /ev/pro/r/vertex/top/right/y/ds/morph/timegrain 20
  1214. /ev/pro/r/vertex/top/right/y/ds/morph/curve/quality 0
  1215. /ev/pro/r/vertex/top/right/y/ds/slave 0
  1216. /ev/pro/r/vertex/top/right/y/ds/morph/curve/resolution 100
  1217. /ev/pro/r/vertex/top/right/y/ds/morph/curve/weight 0
  1218. /ev/pro/r/vertex/top/right/y/ds/morph/curve/shape 0
  1219. /ev/pro/r/vertex/top/right/y/ds/morph/time 0
  1220. /ev/pro/r/vertex/top/right/y/ds/morph 0
  1221. /ev/pro/r/vertex/top/right/x/ds/occupy 0
  1222. /ev/pro/r/vertex/top/right/x/ds/delay 0
  1223. /ev/pro/r/vertex/top/right/x/ds/morph/timegrain 20
  1224. /ev/pro/r/vertex/top/right/x/ds/morph/curve/quality 0
  1225. /ev/pro/r/vertex/top/right/x/ds/slave 0
  1226. /ev/pro/r/vertex/top/right/x/ds/morph/curve/resolution 100
  1227. /ev/pro/r/vertex/top/right/x/ds/morph/curve/weight 0
  1228. /ev/pro/r/vertex/top/right/x/ds/morph/curve/shape 0
  1229. /ev/pro/r/vertex/top/right/x/ds/morph/time 0
  1230. /ev/pro/r/vertex/top/right/x/ds/morph 0
  1231. /ev/pro/r/vertex/top/left/y/ds/occupy 0
  1232. /ev/pro/r/vertex/top/left/y/ds/delay 0
  1233. /ev/pro/r/vertex/top/left/y/ds/morph/timegrain 20
  1234. /ev/pro/r/vertex/top/left/y/ds/morph/curve/quality 0
  1235. /ev/pro/r/vertex/top/left/y/ds/slave 0
  1236. /ev/pro/r/vertex/top/left/y/ds/morph/curve/resolution 100
  1237. /ev/pro/r/vertex/top/left/y/ds/morph/curve/weight 0
  1238. /ev/pro/r/vertex/top/left/y/ds/morph/curve/shape 0
  1239. /ev/pro/r/vertex/top/left/y/ds/morph/time 0
  1240. /ev/pro/r/vertex/top/left/y/ds/morph 0
  1241. /ev/pro/r/vertex/top/left/x/ds/occupy 0
  1242. /ev/pro/r/vertex/top/left/x/ds/delay 0
  1243. /ev/pro/r/vertex/top/left/x/ds/morph/timegrain 20
  1244. /ev/pro/r/vertex/top/left/x/ds/morph/curve/quality 0
  1245. /ev/pro/r/vertex/top/left/x/ds/slave 0
  1246. /ev/pro/r/vertex/top/left/x/ds/morph/curve/resolution 100
  1247. /ev/pro/r/vertex/top/left/x/ds/morph/curve/weight 0
  1248. /ev/pro/r/vertex/top/left/x/ds/morph/curve/shape 0
  1249. /ev/pro/r/vertex/top/left/x/ds/morph/time 0
  1250. /ev/pro/r/vertex/top/left/x/ds/morph 0
  1251. /ev/gemwin/dimen/x/ds/occupy 0
  1252. /ev/gemwin/dimen/x/ds/delay 0
  1253. /ev/gemwin/dimen/x/ds/morph/timegrain 20
  1254. /ev/gemwin/dimen/x/ds/morph/curve/quality 0
  1255. /ev/gemwin/dimen/x/ds/slave 0
  1256. /ev/gemwin/dimen/x/ds/morph/curve/resolution 100
  1257. /ev/gemwin/dimen/x/ds/morph/curve/weight 0
  1258. /ev/gemwin/dimen/x/ds/morph/curve/shape 0
  1259. /ev/gemwin/dimen/x/ds/morph/time 0
  1260. /ev/gemwin/dimen/x/ds/morph 0
  1261. /ev/gemwin/dimen/y/ds/occupy 0
  1262. /ev/gemwin/dimen/y/ds/delay 0
  1263. /ev/gemwin/dimen/y/ds/morph/timegrain 20
  1264. /ev/gemwin/dimen/y/ds/morph/curve/quality 0
  1265. /ev/gemwin/dimen/y/ds/slave 0
  1266. /ev/gemwin/dimen/y/ds/morph/curve/resolution 100
  1267. /ev/gemwin/dimen/y/ds/morph/curve/weight 0
  1268. /ev/gemwin/dimen/y/ds/morph/curve/shape 0
  1269. /ev/gemwin/dimen/y/ds/morph/time 0
  1270. /ev/gemwin/dimen/y/ds/morph 0
  1271. /ev/gemwin/offset/x/ds/occupy 0
  1272. /ev/gemwin/offset/x/ds/delay 0
  1273. /ev/gemwin/offset/x/ds/morph/timegrain 20
  1274. /ev/gemwin/offset/x/ds/morph/curve/quality 0
  1275. /ev/gemwin/offset/x/ds/slave 0
  1276. /ev/gemwin/offset/x/ds/morph/curve/resolution 100
  1277. /ev/gemwin/offset/x/ds/morph/curve/weight 0
  1278. /ev/gemwin/offset/x/ds/morph/curve/shape 0
  1279. /ev/gemwin/offset/x/ds/morph/time 0
  1280. /ev/gemwin/offset/x/ds/morph 0
  1281. /ev/gemwin/offset/y/ds/occupy 0
  1282. /ev/gemwin/offset/y/ds/delay 0
  1283. /ev/gemwin/offset/y/ds/morph/timegrain 20
  1284. /ev/gemwin/offset/y/ds/morph/curve/quality 0
  1285. /ev/gemwin/offset/y/ds/slave 0
  1286. /ev/gemwin/offset/y/ds/morph/curve/resolution 100
  1287. /ev/gemwin/offset/y/ds/morph/curve/weight 0
  1288. /ev/gemwin/offset/y/ds/morph/curve/shape 0
  1289. /ev/gemwin/offset/y/ds/morph/time 0
  1290. /ev/gemwin/offset/y/ds/morph 0
  1291. /ev/gemwin/frame/ds/occupy 0
  1292. /ev/gemwin/frame/ds/delay 0
  1293. /ev/gemwin/frame/ds/morph/timegrain 20
  1294. /ev/gemwin/frame/ds/morph/curve/quality 0
  1295. /ev/gemwin/frame/ds/slave 0
  1296. /ev/gemwin/frame/ds/morph/curve/resolution 100
  1297. /ev/gemwin/frame/ds/morph/curve/weight 0
  1298. /ev/gemwin/frame/ds/morph/curve/shape 0
  1299. /ev/gemwin/frame/ds/morph/time 0
  1300. /ev/gemwin/frame/ds/morph 0
  1301. /ev/gemwin/lighting/ds/occupy 0
  1302. /ev/gemwin/lighting/ds/delay 0
  1303. /ev/gemwin/lighting/ds/morph/timegrain 20
  1304. /ev/gemwin/lighting/ds/morph/curve/quality 0
  1305. /ev/gemwin/lighting/ds/slave 0
  1306. /ev/gemwin/lighting/ds/morph/curve/resolution 100
  1307. /ev/gemwin/lighting/ds/morph/curve/weight 0
  1308. /ev/gemwin/lighting/ds/morph/curve/shape 0
  1309. /ev/gemwin/lighting/ds/morph/time 0
  1310. /ev/gemwin/lighting/ds/morph 0
  1311. /ev/gemwin/border/ds/occupy 0
  1312. /ev/gemwin/border/ds/delay 0
  1313. /ev/gemwin/border/ds/morph/timegrain 20
  1314. /ev/gemwin/border/ds/morph/curve/quality 0
  1315. /ev/gemwin/border/ds/slave 0
  1316. /ev/gemwin/border/ds/morph/curve/resolution 100
  1317. /ev/gemwin/border/ds/morph/curve/weight 0
  1318. /ev/gemwin/border/ds/morph/curve/shape 0
  1319. /ev/gemwin/border/ds/morph/time 0
  1320. /ev/gemwin/border/ds/morph 0
  1321. /ev/buf/0/color/ds/occupy 0
  1322. /ev/buf/0/color/ds/delay 0
  1323. /ev/buf/0/color/ds/morph/timegrain 20
  1324. /ev/buf/0/color/ds/morph/curve/quality 0
  1325. /ev/buf/0/color/ds/slave 0
  1326. /ev/buf/0/color/ds/morph/curve/resolution 100
  1327. /ev/buf/0/color/ds/morph/curve/weight 0
  1328. /ev/buf/0/color/ds/morph/curve/shape 0
  1329. /ev/buf/0/color/ds/morph/time 0
  1330. /ev/buf/0/color/ds/morph 0
  1331. /ev/buf/0/format/ds/occupy 0
  1332. /ev/buf/0/format/ds/delay 0
  1333. /ev/buf/0/format/ds/morph/timegrain 20
  1334. /ev/buf/0/format/ds/morph/curve/quality 0
  1335. /ev/buf/0/format/ds/slave 0
  1336. /ev/buf/0/format/ds/morph/curve/resolution 100
  1337. /ev/buf/0/format/ds/morph/curve/weight 0
  1338. /ev/buf/0/format/ds/morph/curve/shape 0
  1339. /ev/buf/0/format/ds/morph/time 0
  1340. /ev/buf/0/format/ds/morph 0
  1341. /ev/buf/0/rectangle/ds/occupy 0
  1342. /ev/buf/0/rectangle/ds/delay 0
  1343. /ev/buf/0/rectangle/ds/morph/timegrain 20
  1344. /ev/buf/0/rectangle/ds/morph/curve/quality 0
  1345. /ev/buf/0/rectangle/ds/slave 0
  1346. /ev/buf/0/rectangle/ds/morph/curve/resolution 100
  1347. /ev/buf/0/rectangle/ds/morph/curve/weight 0
  1348. /ev/buf/0/rectangle/ds/morph/curve/shape 0
  1349. /ev/buf/0/rectangle/ds/morph/time 0
  1350. /ev/buf/0/rectangle/ds/morph 0
  1351. /ev/buf/0/type/ds/occupy 0
  1352. /ev/buf/0/type/ds/delay 0
  1353. /ev/buf/0/type/ds/morph/timegrain 20
  1354. /ev/buf/0/type/ds/morph/curve/quality 0
  1355. /ev/buf/0/type/ds/slave 0
  1356. /ev/buf/0/type/ds/morph/curve/resolution 100
  1357. /ev/buf/0/type/ds/morph/curve/weight 0
  1358. /ev/buf/0/type/ds/morph/curve/shape 0
  1359. /ev/buf/0/type/ds/morph/time 0
  1360. /ev/buf/0/type/ds/morph 0
  1361. /ev/buf/0/shift/y/ds/occupy 0
  1362. /ev/buf/0/shift/y/ds/delay 0
  1363. /ev/buf/0/shift/y/ds/morph/timegrain 20
  1364. /ev/buf/0/shift/y/ds/morph/curve/quality 0
  1365. /ev/buf/0/shift/y/ds/slave 0
  1366. /ev/buf/0/shift/y/ds/morph/curve/resolution 100
  1367. /ev/buf/0/shift/y/ds/morph/curve/weight 0
  1368. /ev/buf/0/shift/y/ds/morph/curve/shape 0
  1369. /ev/buf/0/shift/y/ds/morph/time 0
  1370. /ev/buf/0/shift/y/ds/morph 0
  1371. /ev/buf/0/shift/x/ds/occupy 0
  1372. /ev/buf/0/shift/x/ds/delay 0
  1373. /ev/buf/0/shift/x/ds/morph/timegrain 20
  1374. /ev/buf/0/shift/x/ds/morph/curve/quality 0
  1375. /ev/buf/0/shift/x/ds/slave 0
  1376. /ev/buf/0/shift/x/ds/morph/curve/resolution 100
  1377. /ev/buf/0/shift/x/ds/morph/curve/weight 0
  1378. /ev/buf/0/shift/x/ds/morph/curve/shape 0
  1379. /ev/buf/0/shift/x/ds/morph/time 0
  1380. /ev/buf/0/shift/x/ds/morph 0
  1381. /ev/buf/0/scale/y/ds/occupy 0
  1382. /ev/buf/0/scale/y/ds/delay 0
  1383. /ev/buf/0/scale/y/ds/morph/timegrain 20
  1384. /ev/buf/0/scale/y/ds/morph/curve/quality 0
  1385. /ev/buf/0/scale/y/ds/slave 0
  1386. /ev/buf/0/scale/y/ds/morph/curve/resolution 100
  1387. /ev/buf/0/scale/y/ds/morph/curve/weight 0
  1388. /ev/buf/0/scale/y/ds/morph/curve/shape 0
  1389. /ev/buf/0/scale/y/ds/morph/time 0
  1390. /ev/buf/0/scale/y/ds/morph 0
  1391. /ev/buf/0/scale/x/ds/occupy 0
  1392. /ev/buf/0/scale/x/ds/delay 0
  1393. /ev/buf/0/scale/x/ds/morph/timegrain 20
  1394. /ev/buf/0/scale/x/ds/morph/curve/quality 0
  1395. /ev/buf/0/scale/x/ds/slave 0
  1396. /ev/buf/0/scale/x/ds/morph/curve/resolution 100
  1397. /ev/buf/0/scale/x/ds/morph/curve/weight 0
  1398. /ev/buf/0/scale/x/ds/morph/curve/shape 0
  1399. /ev/buf/0/scale/x/ds/morph/time 0
  1400. /ev/buf/0/scale/x/ds/morph 0
  1401. /ev/buf/0/dimen/y/ds/occupy 0
  1402. /ev/buf/0/dimen/y/ds/delay 0
  1403. /ev/buf/0/dimen/y/ds/morph/timegrain 20
  1404. /ev/buf/0/dimen/y/ds/morph/curve/quality 0
  1405. /ev/buf/0/dimen/y/ds/slave 0
  1406. /ev/buf/0/dimen/y/ds/morph/curve/resolution 100
  1407. /ev/buf/0/dimen/y/ds/morph/curve/weight 0
  1408. /ev/buf/0/dimen/y/ds/morph/curve/shape 0
  1409. /ev/buf/0/dimen/y/ds/morph/time 0
  1410. /ev/buf/0/dimen/y/ds/morph 0
  1411. /ev/buf/0/dimen/x/ds/occupy 0
  1412. /ev/buf/0/dimen/x/ds/delay 0
  1413. /ev/buf/0/dimen/x/ds/morph/timegrain 20
  1414. /ev/buf/0/dimen/x/ds/morph/curve/quality 0
  1415. /ev/buf/0/dimen/x/ds/slave 0
  1416. /ev/buf/0/dimen/x/ds/morph/curve/resolution 100
  1417. /ev/buf/0/dimen/x/ds/morph/curve/weight 0
  1418. /ev/buf/0/dimen/x/ds/morph/curve/shape 0
  1419. /ev/buf/0/dimen/x/ds/morph/time 0
  1420. /ev/buf/0/dimen/x/ds/morph 0
  1421. /ev/buf/0/state/ds/occupy 0
  1422. /ev/buf/0/state/ds/delay 0
  1423. /ev/buf/0/state/ds/morph/timegrain 20
  1424. /ev/buf/0/state/ds/morph/curve/quality 0
  1425. /ev/buf/0/state/ds/slave 0
  1426. /ev/buf/0/state/ds/morph/curve/resolution 100
  1427. /ev/buf/0/state/ds/morph/curve/weight 0
  1428. /ev/buf/0/state/ds/morph/curve/shape 0
  1429. /ev/buf/0/state/ds/morph/time 0
  1430. /ev/buf/0/state/ds/morph 0
  1431. /ev/pro/l/vertex/bottom/right/y/ds/occupy 0
  1432. /ev/pro/l/vertex/bottom/right/y/ds/delay 0
  1433. /ev/pro/l/vertex/bottom/right/y/ds/morph/timegrain 20
  1434. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/quality 0
  1435. /ev/pro/l/vertex/bottom/right/y/ds/slave 0
  1436. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/resolution 100
  1437. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/weight 0
  1438. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/shape 0
  1439. /ev/pro/l/vertex/bottom/right/y/ds/morph/time 5
  1440. /ev/pro/l/vertex/bottom/right/y/ds/morph 1
  1441. #data
  1442. /ev/pro/l/cursor/mode 2
  1443. /ev/pro/l/state 1
  1444. /ev/pro/l/shade/left 0.15
  1445. /ev/pro/l/shade/bottom 0.0214286
  1446. /ev/pro/l/shade/top 0.0306122
  1447. /ev/pro/l/texture/bottom/right/y 421
  1448. /ev/pro/l/texture/bottom/right/x 507.904
  1449. /ev/pro/l/texture/bottom/left/y 421
  1450. /ev/pro/l/texture/top/right/y 610
  1451. /ev/pro/l/texture/top/right/x 505.856
  1452. /ev/pro/l/texture/top/left/y 610
  1453. /ev/pro/l/vertex/bottom/right/x -0.482673
  1454. /ev/pro/l/vertex/bottom/left/y -3.024
  1455. /ev/pro/l/vertex/bottom/left/x -4.66134
  1456. /ev/pro/l/vertex/top/right/y 1.94134
  1457. /ev/pro/l/vertex/top/right/x -0.246
  1458. /ev/pro/l/vertex/top/left/y 2.90667
  1459. /ev/pro/l/vertex/top/left/x -4.63134
  1460. /ev/pro/grid/filename ../media/grid.png
  1461. /ev/pro/grid/state 1
  1462. /ev/pro/r/cursor/mode 2
  1463. /ev/pro/r/state 1
  1464. /ev/pro/r/shade/bottom 0.0183673
  1465. /ev/pro/r/shade/right 0.15
  1466. /ev/pro/r/shade/top 0.0336735
  1467. /ev/pro/r/texture/bottom/right/y 421
  1468. /ev/pro/r/texture/bottom/right/x 1024
  1469. /ev/pro/r/texture/bottom/left/y 421
  1470. /ev/pro/r/texture/bottom/left/x 507.904
  1471. /ev/pro/r/texture/top/right/y 610
  1472. /ev/pro/r/texture/top/right/x 1024
  1473. /ev/pro/r/texture/top/left/y 610
  1474. /ev/pro/r/texture/top/left/x 505.856
  1475. /ev/pro/r/vertex/bottom/right/y -3.32533
  1476. /ev/pro/r/vertex/bottom/right/x 4.89667
  1477. /ev/pro/r/vertex/bottom/left/y 0.523997
  1478. /ev/pro/r/vertex/bottom/left/x -0.516003
  1479. /ev/pro/r/vertex/top/right/y 3.30666
  1480. /ev/pro/r/vertex/top/right/x 4.99668
  1481. /ev/pro/r/vertex/top/left/y 1.94134
  1482. /ev/pro/r/vertex/top/left/x -0.256
  1483. /ev/gemwin/dimen/x 800
  1484. /ev/gemwin/dimen/y 600
  1485. /ev/gemwin/frame 25
  1486. /ev/gemwin/lighting 30
  1487. /ev/gemwin/border 1
  1488. /ev/buf/0/color 0.9 0.6 0.1 1
  1489. /ev/buf/0/format RGBA
  1490. /ev/buf/0/rectangle 1
  1491. /ev/buf/0/type BYTE
  1492. /ev/buf/0/scale/y 1.3
  1493. /ev/buf/0/scale/x 1.3
  1494. /ev/buf/0/dimen/y 1024
  1495. /ev/buf/0/dimen/x 1024
  1496. /ev/buf/0/state 1
  1497. /ev/pro/l/vertex/bottom/right/y 0.530667
  1498. ======================== SCENE 2 Three ========================
  1499. #settings
  1500. /ev/pro/l/cursor/mode/ds/occupy 0
  1501. /ev/pro/l/cursor/mode/ds/change 0
  1502. /ev/pro/l/cursor/mode/ds/delay 0
  1503. /ev/pro/l/cursor/mode/ds/morph/timegrain 20
  1504. /ev/pro/l/cursor/mode/ds/morph/curve/quality 0
  1505. /ev/pro/l/cursor/mode/ds/slave 0
  1506. /ev/pro/l/cursor/mode/ds/morph/curve/resolution 100
  1507. /ev/pro/l/cursor/mode/ds/morph/curve/weight 0
  1508. /ev/pro/l/cursor/mode/ds/morph/curve/shape 0
  1509. /ev/pro/l/cursor/mode/ds/morph/time 0
  1510. /ev/pro/l/cursor/mode/ds/set 0
  1511. /ev/pro/l/cursor/mode/ds/morph 0
  1512. /ev/pro/l/grid/state/ds/occupy 0
  1513. /ev/pro/l/grid/state/ds/change 0
  1514. /ev/pro/l/grid/state/ds/delay 0
  1515. /ev/pro/l/grid/state/ds/morph/timegrain 20
  1516. /ev/pro/l/grid/state/ds/morph/curve/quality 0
  1517. /ev/pro/l/grid/state/ds/slave 0
  1518. /ev/pro/l/grid/state/ds/morph/curve/resolution 100
  1519. /ev/pro/l/grid/state/ds/morph/curve/weight 0
  1520. /ev/pro/l/grid/state/ds/morph/curve/shape 0
  1521. /ev/pro/l/grid/state/ds/morph/time 0
  1522. /ev/pro/l/grid/state/ds/set 0
  1523. /ev/pro/l/grid/state/ds/morph 0
  1524. /ev/pro/l/state/ds/occupy 0
  1525. /ev/pro/l/state/ds/change 0
  1526. /ev/pro/l/state/ds/delay 0
  1527. /ev/pro/l/state/ds/morph/timegrain 20
  1528. /ev/pro/l/state/ds/morph/curve/quality 0
  1529. /ev/pro/l/state/ds/slave 0
  1530. /ev/pro/l/state/ds/morph/curve/resolution 100
  1531. /ev/pro/l/state/ds/morph/curve/weight 0
  1532. /ev/pro/l/state/ds/morph/curve/shape 0
  1533. /ev/pro/l/state/ds/morph/time 0
  1534. /ev/pro/l/state/ds/set 0
  1535. /ev/pro/l/state/ds/morph 0
  1536. /ev/pro/l/shade/left/ds/occupy 0
  1537. /ev/pro/l/shade/left/ds/change 0
  1538. /ev/pro/l/shade/left/ds/delay 0
  1539. /ev/pro/l/shade/left/ds/morph/timegrain 20
  1540. /ev/pro/l/shade/left/ds/morph/curve/quality 0
  1541. /ev/pro/l/shade/left/ds/slave 0
  1542. /ev/pro/l/shade/left/ds/morph/curve/resolution 100
  1543. /ev/pro/l/shade/left/ds/morph/curve/weight 0
  1544. /ev/pro/l/shade/left/ds/morph/curve/shape 0
  1545. /ev/pro/l/shade/left/ds/morph/time 0
  1546. /ev/pro/l/shade/left/ds/set 0
  1547. /ev/pro/l/shade/left/ds/morph 0
  1548. /ev/pro/l/shade/bottom/ds/occupy 0
  1549. /ev/pro/l/shade/bottom/ds/change 0
  1550. /ev/pro/l/shade/bottom/ds/delay 0
  1551. /ev/pro/l/shade/bottom/ds/morph/timegrain 20
  1552. /ev/pro/l/shade/bottom/ds/morph/curve/quality 0
  1553. /ev/pro/l/shade/bottom/ds/slave 0
  1554. /ev/pro/l/shade/bottom/ds/morph/curve/resolution 100
  1555. /ev/pro/l/shade/bottom/ds/morph/curve/weight 0
  1556. /ev/pro/l/shade/bottom/ds/morph/curve/shape 0
  1557. /ev/pro/l/shade/bottom/ds/morph/time 0
  1558. /ev/pro/l/shade/bottom/ds/set 0
  1559. /ev/pro/l/shade/bottom/ds/morph 0
  1560. /ev/pro/l/shade/right/ds/occupy 0
  1561. /ev/pro/l/shade/right/ds/change 0
  1562. /ev/pro/l/shade/right/ds/delay 0
  1563. /ev/pro/l/shade/right/ds/morph/timegrain 20
  1564. /ev/pro/l/shade/right/ds/morph/curve/quality 0
  1565. /ev/pro/l/shade/right/ds/slave 0
  1566. /ev/pro/l/shade/right/ds/morph/curve/resolution 100
  1567. /ev/pro/l/shade/right/ds/morph/curve/weight 0
  1568. /ev/pro/l/shade/right/ds/morph/curve/shape 0
  1569. /ev/pro/l/shade/right/ds/morph/time 0
  1570. /ev/pro/l/shade/right/ds/set 0
  1571. /ev/pro/l/shade/right/ds/morph 0
  1572. /ev/pro/l/shade/top/ds/occupy 0
  1573. /ev/pro/l/shade/top/ds/change 0
  1574. /ev/pro/l/shade/top/ds/delay 0
  1575. /ev/pro/l/shade/top/ds/morph/timegrain 20
  1576. /ev/pro/l/shade/top/ds/morph/curve/quality 0
  1577. /ev/pro/l/shade/top/ds/slave 0
  1578. /ev/pro/l/shade/top/ds/morph/curve/resolution 100
  1579. /ev/pro/l/shade/top/ds/morph/curve/weight 0
  1580. /ev/pro/l/shade/top/ds/morph/curve/shape 0
  1581. /ev/pro/l/shade/top/ds/morph/time 0
  1582. /ev/pro/l/shade/top/ds/set 0
  1583. /ev/pro/l/shade/top/ds/morph 0
  1584. /ev/pro/l/texture/bottom/right/y/ds/occupy 0
  1585. /ev/pro/l/texture/bottom/right/y/ds/change 0
  1586. /ev/pro/l/texture/bottom/right/y/ds/delay 0
  1587. /ev/pro/l/texture/bottom/right/y/ds/morph/timegrain 20
  1588. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/quality 0
  1589. /ev/pro/l/texture/bottom/right/y/ds/slave 0
  1590. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/resolution 100
  1591. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/weight 0
  1592. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/shape 0
  1593. /ev/pro/l/texture/bottom/right/y/ds/morph/time 0
  1594. /ev/pro/l/texture/bottom/right/y/ds/set 0
  1595. /ev/pro/l/texture/bottom/right/y/ds/morph 0
  1596. /ev/pro/l/texture/bottom/right/x/ds/occupy 0
  1597. /ev/pro/l/texture/bottom/right/x/ds/change 0
  1598. /ev/pro/l/texture/bottom/right/x/ds/delay 0
  1599. /ev/pro/l/texture/bottom/right/x/ds/morph/timegrain 20
  1600. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/quality 0
  1601. /ev/pro/l/texture/bottom/right/x/ds/slave 0
  1602. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/resolution 100
  1603. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/weight 0
  1604. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/shape 0
  1605. /ev/pro/l/texture/bottom/right/x/ds/morph/time 0
  1606. /ev/pro/l/texture/bottom/right/x/ds/set 0
  1607. /ev/pro/l/texture/bottom/right/x/ds/morph 0
  1608. /ev/pro/l/texture/bottom/left/y/ds/occupy 0
  1609. /ev/pro/l/texture/bottom/left/y/ds/change 0
  1610. /ev/pro/l/texture/bottom/left/y/ds/delay 0
  1611. /ev/pro/l/texture/bottom/left/y/ds/morph/timegrain 20
  1612. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/quality 0
  1613. /ev/pro/l/texture/bottom/left/y/ds/slave 0
  1614. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/resolution 100
  1615. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/weight 0
  1616. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/shape 0
  1617. /ev/pro/l/texture/bottom/left/y/ds/morph/time 0
  1618. /ev/pro/l/texture/bottom/left/y/ds/set 0
  1619. /ev/pro/l/texture/bottom/left/y/ds/morph 0
  1620. /ev/pro/l/texture/bottom/left/x/ds/occupy 0
  1621. /ev/pro/l/texture/bottom/left/x/ds/change 0
  1622. /ev/pro/l/texture/bottom/left/x/ds/delay 0
  1623. /ev/pro/l/texture/bottom/left/x/ds/morph/timegrain 20
  1624. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/quality 0
  1625. /ev/pro/l/texture/bottom/left/x/ds/slave 0
  1626. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/resolution 100
  1627. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/weight 0
  1628. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/shape 0
  1629. /ev/pro/l/texture/bottom/left/x/ds/morph/time 0
  1630. /ev/pro/l/texture/bottom/left/x/ds/set 0
  1631. /ev/pro/l/texture/bottom/left/x/ds/morph 0
  1632. /ev/pro/l/texture/top/right/y/ds/occupy 0
  1633. /ev/pro/l/texture/top/right/y/ds/change 0
  1634. /ev/pro/l/texture/top/right/y/ds/delay 0
  1635. /ev/pro/l/texture/top/right/y/ds/morph/timegrain 20
  1636. /ev/pro/l/texture/top/right/y/ds/morph/curve/quality 0
  1637. /ev/pro/l/texture/top/right/y/ds/slave 0
  1638. /ev/pro/l/texture/top/right/y/ds/morph/curve/resolution 100
  1639. /ev/pro/l/texture/top/right/y/ds/morph/curve/weight 0
  1640. /ev/pro/l/texture/top/right/y/ds/morph/curve/shape 0
  1641. /ev/pro/l/texture/top/right/y/ds/morph/time 0
  1642. /ev/pro/l/texture/top/right/y/ds/set 0
  1643. /ev/pro/l/texture/top/right/y/ds/morph 0
  1644. /ev/pro/l/texture/top/right/x/ds/occupy 0
  1645. /ev/pro/l/texture/top/right/x/ds/change 0
  1646. /ev/pro/l/texture/top/right/x/ds/delay 0
  1647. /ev/pro/l/texture/top/right/x/ds/morph/timegrain 20
  1648. /ev/pro/l/texture/top/right/x/ds/morph/curve/quality 0
  1649. /ev/pro/l/texture/top/right/x/ds/slave 0
  1650. /ev/pro/l/texture/top/right/x/ds/morph/curve/resolution 100
  1651. /ev/pro/l/texture/top/right/x/ds/morph/curve/weight 0
  1652. /ev/pro/l/texture/top/right/x/ds/morph/curve/shape 0
  1653. /ev/pro/l/texture/top/right/x/ds/morph/time 0
  1654. /ev/pro/l/texture/top/right/x/ds/set 0
  1655. /ev/pro/l/texture/top/right/x/ds/morph 0
  1656. /ev/pro/l/texture/top/left/y/ds/occupy 0
  1657. /ev/pro/l/texture/top/left/y/ds/change 0
  1658. /ev/pro/l/texture/top/left/y/ds/delay 0
  1659. /ev/pro/l/texture/top/left/y/ds/morph/timegrain 20
  1660. /ev/pro/l/texture/top/left/y/ds/morph/curve/quality 0
  1661. /ev/pro/l/texture/top/left/y/ds/slave 0
  1662. /ev/pro/l/texture/top/left/y/ds/morph/curve/resolution 100
  1663. /ev/pro/l/texture/top/left/y/ds/morph/curve/weight 0
  1664. /ev/pro/l/texture/top/left/y/ds/morph/curve/shape 0
  1665. /ev/pro/l/texture/top/left/y/ds/morph/time 0
  1666. /ev/pro/l/texture/top/left/y/ds/set 0
  1667. /ev/pro/l/texture/top/left/y/ds/morph 0
  1668. /ev/pro/l/texture/top/left/x/ds/occupy 0
  1669. /ev/pro/l/texture/top/left/x/ds/change 0
  1670. /ev/pro/l/texture/top/left/x/ds/delay 0
  1671. /ev/pro/l/texture/top/left/x/ds/morph/timegrain 20
  1672. /ev/pro/l/texture/top/left/x/ds/morph/curve/quality 0
  1673. /ev/pro/l/texture/top/left/x/ds/slave 0
  1674. /ev/pro/l/texture/top/left/x/ds/morph/curve/resolution 100
  1675. /ev/pro/l/texture/top/left/x/ds/morph/curve/weight 0
  1676. /ev/pro/l/texture/top/left/x/ds/morph/curve/shape 0
  1677. /ev/pro/l/texture/top/left/x/ds/morph/time 0
  1678. /ev/pro/l/texture/top/left/x/ds/set 0
  1679. /ev/pro/l/texture/top/left/x/ds/morph 0
  1680. /ev/pro/l/vertex/bottom/right/y/ds/occupy 0
  1681. /ev/pro/l/vertex/bottom/right/y/ds/change 0
  1682. /ev/pro/l/vertex/bottom/right/y/ds/delay 0
  1683. /ev/pro/l/vertex/bottom/right/y/ds/morph/timegrain 20
  1684. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/quality 0
  1685. /ev/pro/l/vertex/bottom/right/y/ds/slave 0
  1686. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/resolution 100
  1687. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/weight 0
  1688. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/shape 0
  1689. /ev/pro/l/vertex/bottom/right/y/ds/morph/time 0
  1690. /ev/pro/l/vertex/bottom/right/y/ds/set 0
  1691. /ev/pro/l/vertex/bottom/right/y/ds/morph 0
  1692. /ev/pro/l/vertex/bottom/right/x/ds/occupy 0
  1693. /ev/pro/l/vertex/bottom/right/x/ds/change 0
  1694. /ev/pro/l/vertex/bottom/right/x/ds/delay 0
  1695. /ev/pro/l/vertex/bottom/right/x/ds/morph/timegrain 20
  1696. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/quality 0
  1697. /ev/pro/l/vertex/bottom/right/x/ds/slave 0
  1698. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/resolution 100
  1699. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/weight 0
  1700. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/shape 0
  1701. /ev/pro/l/vertex/bottom/right/x/ds/morph/time 0
  1702. /ev/pro/l/vertex/bottom/right/x/ds/set 0
  1703. /ev/pro/l/vertex/bottom/right/x/ds/morph 0
  1704. /ev/pro/l/vertex/bottom/left/y/ds/occupy 0
  1705. /ev/pro/l/vertex/bottom/left/y/ds/change 0
  1706. /ev/pro/l/vertex/bottom/left/y/ds/delay 0
  1707. /ev/pro/l/vertex/bottom/left/y/ds/morph/timegrain 20
  1708. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/quality 0
  1709. /ev/pro/l/vertex/bottom/left/y/ds/slave 0
  1710. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/resolution 100
  1711. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/weight 0
  1712. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/shape 0
  1713. /ev/pro/l/vertex/bottom/left/y/ds/morph/time 0
  1714. /ev/pro/l/vertex/bottom/left/y/ds/set 0
  1715. /ev/pro/l/vertex/bottom/left/y/ds/morph 0
  1716. /ev/pro/l/vertex/bottom/left/x/ds/occupy 0
  1717. /ev/pro/l/vertex/bottom/left/x/ds/change 0
  1718. /ev/pro/l/vertex/bottom/left/x/ds/delay 0
  1719. /ev/pro/l/vertex/bottom/left/x/ds/morph/timegrain 20
  1720. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/quality 0
  1721. /ev/pro/l/vertex/bottom/left/x/ds/slave 0
  1722. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/resolution 100
  1723. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/weight 0
  1724. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/shape 0
  1725. /ev/pro/l/vertex/bottom/left/x/ds/morph/time 0
  1726. /ev/pro/l/vertex/bottom/left/x/ds/set 0
  1727. /ev/pro/l/vertex/bottom/left/x/ds/morph 0
  1728. /ev/pro/l/vertex/top/right/y/ds/occupy 0
  1729. /ev/pro/l/vertex/top/right/y/ds/change 0
  1730. /ev/pro/l/vertex/top/right/y/ds/delay 0
  1731. /ev/pro/l/vertex/top/right/y/ds/morph/timegrain 20
  1732. /ev/pro/l/vertex/top/right/y/ds/morph/curve/quality 0
  1733. /ev/pro/l/vertex/top/right/y/ds/slave 0
  1734. /ev/pro/l/vertex/top/right/y/ds/morph/curve/resolution 100
  1735. /ev/pro/l/vertex/top/right/y/ds/morph/curve/weight 0
  1736. /ev/pro/l/vertex/top/right/y/ds/morph/curve/shape 0
  1737. /ev/pro/l/vertex/top/right/y/ds/morph/time 0
  1738. /ev/pro/l/vertex/top/right/y/ds/set 0
  1739. /ev/pro/l/vertex/top/right/y/ds/morph 0
  1740. /ev/pro/l/vertex/top/right/x/ds/occupy 0
  1741. /ev/pro/l/vertex/top/right/x/ds/change 0
  1742. /ev/pro/l/vertex/top/right/x/ds/delay 0
  1743. /ev/pro/l/vertex/top/right/x/ds/morph/timegrain 20
  1744. /ev/pro/l/vertex/top/right/x/ds/morph/curve/quality 0
  1745. /ev/pro/l/vertex/top/right/x/ds/slave 0
  1746. /ev/pro/l/vertex/top/right/x/ds/morph/curve/resolution 100
  1747. /ev/pro/l/vertex/top/right/x/ds/morph/curve/weight 0
  1748. /ev/pro/l/vertex/top/right/x/ds/morph/curve/shape 0
  1749. /ev/pro/l/vertex/top/right/x/ds/morph/time 0
  1750. /ev/pro/l/vertex/top/right/x/ds/set 0
  1751. /ev/pro/l/vertex/top/right/x/ds/morph 0
  1752. /ev/pro/l/vertex/top/left/y/ds/occupy 0
  1753. /ev/pro/l/vertex/top/left/y/ds/change 0
  1754. /ev/pro/l/vertex/top/left/y/ds/delay 0
  1755. /ev/pro/l/vertex/top/left/y/ds/morph/timegrain 20
  1756. /ev/pro/l/vertex/top/left/y/ds/morph/curve/quality 0
  1757. /ev/pro/l/vertex/top/left/y/ds/slave 0
  1758. /ev/pro/l/vertex/top/left/y/ds/morph/curve/resolution 100
  1759. /ev/pro/l/vertex/top/left/y/ds/morph/curve/weight 0
  1760. /ev/pro/l/vertex/top/left/y/ds/morph/curve/shape 0
  1761. /ev/pro/l/vertex/top/left/y/ds/morph/time 0
  1762. /ev/pro/l/vertex/top/left/y/ds/set 0
  1763. /ev/pro/l/vertex/top/left/y/ds/morph 0
  1764. /ev/pro/l/vertex/top/left/x/ds/occupy 0
  1765. /ev/pro/l/vertex/top/left/x/ds/change 0
  1766. /ev/pro/l/vertex/top/left/x/ds/delay 0
  1767. /ev/pro/l/vertex/top/left/x/ds/morph/timegrain 20
  1768. /ev/pro/l/vertex/top/left/x/ds/morph/curve/quality 0
  1769. /ev/pro/l/vertex/top/left/x/ds/slave 0
  1770. /ev/pro/l/vertex/top/left/x/ds/morph/curve/resolution 100
  1771. /ev/pro/l/vertex/top/left/x/ds/morph/curve/weight 0
  1772. /ev/pro/l/vertex/top/left/x/ds/morph/curve/shape 0
  1773. /ev/pro/l/vertex/top/left/x/ds/morph/time 0
  1774. /ev/pro/l/vertex/top/left/x/ds/set 0
  1775. /ev/pro/l/vertex/top/left/x/ds/morph 0
  1776. /ev/pro/grid/flip/vertical/ds/occupy 0
  1777. /ev/pro/grid/flip/vertical/ds/change 0
  1778. /ev/pro/grid/flip/vertical/ds/delay 0
  1779. /ev/pro/grid/flip/vertical/ds/morph/timegrain 20
  1780. /ev/pro/grid/flip/vertical/ds/morph/curve/quality 0
  1781. /ev/pro/grid/flip/vertical/ds/slave 0
  1782. /ev/pro/grid/flip/vertical/ds/morph/curve/resolution 100
  1783. /ev/pro/grid/flip/vertical/ds/morph/curve/weight 0
  1784. /ev/pro/grid/flip/vertical/ds/morph/curve/shape 0
  1785. /ev/pro/grid/flip/vertical/ds/morph/time 0
  1786. /ev/pro/grid/flip/vertical/ds/set 0
  1787. /ev/pro/grid/flip/vertical/ds/morph 0
  1788. /ev/pro/grid/flip/horizontal/ds/occupy 0
  1789. /ev/pro/grid/flip/horizontal/ds/change 0
  1790. /ev/pro/grid/flip/horizontal/ds/delay 0
  1791. /ev/pro/grid/flip/horizontal/ds/morph/timegrain 20
  1792. /ev/pro/grid/flip/horizontal/ds/morph/curve/quality 0
  1793. /ev/pro/grid/flip/horizontal/ds/slave 0
  1794. /ev/pro/grid/flip/horizontal/ds/morph/curve/resolution 100
  1795. /ev/pro/grid/flip/horizontal/ds/morph/curve/weight 0
  1796. /ev/pro/grid/flip/horizontal/ds/morph/curve/shape 0
  1797. /ev/pro/grid/flip/horizontal/ds/morph/time 0
  1798. /ev/pro/grid/flip/horizontal/ds/set 0
  1799. /ev/pro/grid/flip/horizontal/ds/morph 0
  1800. /ev/pro/grid/filename/ds/occupy 0
  1801. /ev/pro/grid/filename/ds/change 0
  1802. /ev/pro/grid/filename/ds/delay 0
  1803. /ev/pro/grid/filename/ds/morph/timegrain 20
  1804. /ev/pro/grid/filename/ds/morph/curve/quality 0
  1805. /ev/pro/grid/filename/ds/slave 0
  1806. /ev/pro/grid/filename/ds/morph/curve/resolution 100
  1807. /ev/pro/grid/filename/ds/morph/curve/weight 0
  1808. /ev/pro/grid/filename/ds/morph/curve/shape 0
  1809. /ev/pro/grid/filename/ds/morph/time 0
  1810. /ev/pro/grid/filename/ds/set 0
  1811. /ev/pro/grid/filename/ds/morph 0
  1812. /ev/pro/grid/state/ds/occupy 0
  1813. /ev/pro/grid/state/ds/change 0
  1814. /ev/pro/grid/state/ds/delay 0
  1815. /ev/pro/grid/state/ds/morph/timegrain 20
  1816. /ev/pro/grid/state/ds/morph/curve/quality 0
  1817. /ev/pro/grid/state/ds/slave 0
  1818. /ev/pro/grid/state/ds/morph/curve/resolution 100
  1819. /ev/pro/grid/state/ds/morph/curve/weight 0
  1820. /ev/pro/grid/state/ds/morph/curve/shape 0
  1821. /ev/pro/grid/state/ds/morph/time 0
  1822. /ev/pro/grid/state/ds/set 0
  1823. /ev/pro/grid/state/ds/morph 0
  1824. /ev/pro/r/cursor/mode/ds/occupy 0
  1825. /ev/pro/r/cursor/mode/ds/change 0
  1826. /ev/pro/r/cursor/mode/ds/delay 0
  1827. /ev/pro/r/cursor/mode/ds/morph/timegrain 20
  1828. /ev/pro/r/cursor/mode/ds/morph/curve/quality 0
  1829. /ev/pro/r/cursor/mode/ds/slave 0
  1830. /ev/pro/r/cursor/mode/ds/morph/curve/resolution 100
  1831. /ev/pro/r/cursor/mode/ds/morph/curve/weight 0
  1832. /ev/pro/r/cursor/mode/ds/morph/curve/shape 0
  1833. /ev/pro/r/cursor/mode/ds/morph/time 0
  1834. /ev/pro/r/cursor/mode/ds/set 0
  1835. /ev/pro/r/cursor/mode/ds/morph 0
  1836. /ev/pro/r/grid/state/ds/occupy 0
  1837. /ev/pro/r/grid/state/ds/change 0
  1838. /ev/pro/r/grid/state/ds/delay 0
  1839. /ev/pro/r/grid/state/ds/morph/timegrain 20
  1840. /ev/pro/r/grid/state/ds/morph/curve/quality 0
  1841. /ev/pro/r/grid/state/ds/slave 0
  1842. /ev/pro/r/grid/state/ds/morph/curve/resolution 100
  1843. /ev/pro/r/grid/state/ds/morph/curve/weight 0
  1844. /ev/pro/r/grid/state/ds/morph/curve/shape 0
  1845. /ev/pro/r/grid/state/ds/morph/time 0
  1846. /ev/pro/r/grid/state/ds/set 0
  1847. /ev/pro/r/grid/state/ds/morph 0
  1848. /ev/pro/r/state/ds/occupy 0
  1849. /ev/pro/r/state/ds/change 0
  1850. /ev/pro/r/state/ds/delay 0
  1851. /ev/pro/r/state/ds/morph/timegrain 20
  1852. /ev/pro/r/state/ds/morph/curve/quality 0
  1853. /ev/pro/r/state/ds/slave 0
  1854. /ev/pro/r/state/ds/morph/curve/resolution 100
  1855. /ev/pro/r/state/ds/morph/curve/weight 0
  1856. /ev/pro/r/state/ds/morph/curve/shape 0
  1857. /ev/pro/r/state/ds/morph/time 0
  1858. /ev/pro/r/state/ds/set 0
  1859. /ev/pro/r/state/ds/morph 0
  1860. /ev/pro/r/shade/left/ds/occupy 0
  1861. /ev/pro/r/shade/left/ds/change 0
  1862. /ev/pro/r/shade/left/ds/delay 0
  1863. /ev/pro/r/shade/left/ds/morph/timegrain 20
  1864. /ev/pro/r/shade/left/ds/morph/curve/quality 0
  1865. /ev/pro/r/shade/left/ds/slave 0
  1866. /ev/pro/r/shade/left/ds/morph/curve/resolution 100
  1867. /ev/pro/r/shade/left/ds/morph/curve/weight 0
  1868. /ev/pro/r/shade/left/ds/morph/curve/shape 0
  1869. /ev/pro/r/shade/left/ds/morph/time 0
  1870. /ev/pro/r/shade/left/ds/set 0
  1871. /ev/pro/r/shade/left/ds/morph 0
  1872. /ev/pro/r/shade/bottom/ds/occupy 0
  1873. /ev/pro/r/shade/bottom/ds/change 0
  1874. /ev/pro/r/shade/bottom/ds/delay 0
  1875. /ev/pro/r/shade/bottom/ds/morph/timegrain 20
  1876. /ev/pro/r/shade/bottom/ds/morph/curve/quality 0
  1877. /ev/pro/r/shade/bottom/ds/slave 0
  1878. /ev/pro/r/shade/bottom/ds/morph/curve/resolution 100
  1879. /ev/pro/r/shade/bottom/ds/morph/curve/weight 0
  1880. /ev/pro/r/shade/bottom/ds/morph/curve/shape 0
  1881. /ev/pro/r/shade/bottom/ds/morph/time 0
  1882. /ev/pro/r/shade/bottom/ds/set 0
  1883. /ev/pro/r/shade/bottom/ds/morph 0
  1884. /ev/pro/r/shade/right/ds/occupy 0
  1885. /ev/pro/r/shade/right/ds/change 0
  1886. /ev/pro/r/shade/right/ds/delay 0
  1887. /ev/pro/r/shade/right/ds/morph/timegrain 20
  1888. /ev/pro/r/shade/right/ds/morph/curve/quality 0
  1889. /ev/pro/r/shade/right/ds/slave 0
  1890. /ev/pro/r/shade/right/ds/morph/curve/resolution 100
  1891. /ev/pro/r/shade/right/ds/morph/curve/weight 0
  1892. /ev/pro/r/shade/right/ds/morph/curve/shape 0
  1893. /ev/pro/r/shade/right/ds/morph/time 0
  1894. /ev/pro/r/shade/right/ds/set 0
  1895. /ev/pro/r/shade/right/ds/morph 0
  1896. /ev/pro/r/shade/top/ds/occupy 0
  1897. /ev/pro/r/shade/top/ds/change 0
  1898. /ev/pro/r/shade/top/ds/delay 0
  1899. /ev/pro/r/shade/top/ds/morph/timegrain 20
  1900. /ev/pro/r/shade/top/ds/morph/curve/quality 0
  1901. /ev/pro/r/shade/top/ds/slave 0
  1902. /ev/pro/r/shade/top/ds/morph/curve/resolution 100
  1903. /ev/pro/r/shade/top/ds/morph/curve/weight 0
  1904. /ev/pro/r/shade/top/ds/morph/curve/shape 0
  1905. /ev/pro/r/shade/top/ds/morph/time 0
  1906. /ev/pro/r/shade/top/ds/set 0
  1907. /ev/pro/r/shade/top/ds/morph 0
  1908. /ev/pro/r/texture/bottom/right/y/ds/occupy 0
  1909. /ev/pro/r/texture/bottom/right/y/ds/change 0
  1910. /ev/pro/r/texture/bottom/right/y/ds/delay 0
  1911. /ev/pro/r/texture/bottom/right/y/ds/morph/timegrain 20
  1912. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/quality 0
  1913. /ev/pro/r/texture/bottom/right/y/ds/slave 0
  1914. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/resolution 100
  1915. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/weight 0
  1916. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/shape 0
  1917. /ev/pro/r/texture/bottom/right/y/ds/morph/time 0
  1918. /ev/pro/r/texture/bottom/right/y/ds/set 0
  1919. /ev/pro/r/texture/bottom/right/y/ds/morph 0
  1920. /ev/pro/r/texture/bottom/right/x/ds/occupy 0
  1921. /ev/pro/r/texture/bottom/right/x/ds/change 0
  1922. /ev/pro/r/texture/bottom/right/x/ds/delay 0
  1923. /ev/pro/r/texture/bottom/right/x/ds/morph/timegrain 20
  1924. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/quality 0
  1925. /ev/pro/r/texture/bottom/right/x/ds/slave 0
  1926. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/resolution 100
  1927. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/weight 0
  1928. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/shape 0
  1929. /ev/pro/r/texture/bottom/right/x/ds/morph/time 0
  1930. /ev/pro/r/texture/bottom/right/x/ds/set 0
  1931. /ev/pro/r/texture/bottom/right/x/ds/morph 0
  1932. /ev/pro/r/texture/bottom/left/y/ds/occupy 0
  1933. /ev/pro/r/texture/bottom/left/y/ds/change 0
  1934. /ev/pro/r/texture/bottom/left/y/ds/delay 0
  1935. /ev/pro/r/texture/bottom/left/y/ds/morph/timegrain 20
  1936. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/quality 0
  1937. /ev/pro/r/texture/bottom/left/y/ds/slave 0
  1938. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/resolution 100
  1939. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/weight 0
  1940. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/shape 0
  1941. /ev/pro/r/texture/bottom/left/y/ds/morph/time 0
  1942. /ev/pro/r/texture/bottom/left/y/ds/set 0
  1943. /ev/pro/r/texture/bottom/left/y/ds/morph 0
  1944. /ev/pro/r/texture/bottom/left/x/ds/occupy 0
  1945. /ev/pro/r/texture/bottom/left/x/ds/change 0
  1946. /ev/pro/r/texture/bottom/left/x/ds/delay 0
  1947. /ev/pro/r/texture/bottom/left/x/ds/morph/timegrain 20
  1948. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/quality 0
  1949. /ev/pro/r/texture/bottom/left/x/ds/slave 0
  1950. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/resolution 100
  1951. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/weight 0
  1952. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/shape 0
  1953. /ev/pro/r/texture/bottom/left/x/ds/morph/time 0
  1954. /ev/pro/r/texture/bottom/left/x/ds/set 0
  1955. /ev/pro/r/texture/bottom/left/x/ds/morph 0
  1956. /ev/pro/r/texture/top/right/y/ds/occupy 0
  1957. /ev/pro/r/texture/top/right/y/ds/change 0
  1958. /ev/pro/r/texture/top/right/y/ds/delay 0
  1959. /ev/pro/r/texture/top/right/y/ds/morph/timegrain 20
  1960. /ev/pro/r/texture/top/right/y/ds/morph/curve/quality 0
  1961. /ev/pro/r/texture/top/right/y/ds/slave 0
  1962. /ev/pro/r/texture/top/right/y/ds/morph/curve/resolution 100
  1963. /ev/pro/r/texture/top/right/y/ds/morph/curve/weight 0
  1964. /ev/pro/r/texture/top/right/y/ds/morph/curve/shape 0
  1965. /ev/pro/r/texture/top/right/y/ds/morph/time 0
  1966. /ev/pro/r/texture/top/right/y/ds/set 0
  1967. /ev/pro/r/texture/top/right/y/ds/morph 0
  1968. /ev/pro/r/texture/top/right/x/ds/occupy 0
  1969. /ev/pro/r/texture/top/right/x/ds/change 0
  1970. /ev/pro/r/texture/top/right/x/ds/delay 0
  1971. /ev/pro/r/texture/top/right/x/ds/morph/timegrain 20
  1972. /ev/pro/r/texture/top/right/x/ds/morph/curve/quality 0
  1973. /ev/pro/r/texture/top/right/x/ds/slave 0
  1974. /ev/pro/r/texture/top/right/x/ds/morph/curve/resolution 100
  1975. /ev/pro/r/texture/top/right/x/ds/morph/curve/weight 0
  1976. /ev/pro/r/texture/top/right/x/ds/morph/curve/shape 0
  1977. /ev/pro/r/texture/top/right/x/ds/morph/time 0
  1978. /ev/pro/r/texture/top/right/x/ds/set 0
  1979. /ev/pro/r/texture/top/right/x/ds/morph 0
  1980. /ev/pro/r/texture/top/left/y/ds/occupy 0
  1981. /ev/pro/r/texture/top/left/y/ds/change 0
  1982. /ev/pro/r/texture/top/left/y/ds/delay 0
  1983. /ev/pro/r/texture/top/left/y/ds/morph/timegrain 20
  1984. /ev/pro/r/texture/top/left/y/ds/morph/curve/quality 0
  1985. /ev/pro/r/texture/top/left/y/ds/slave 0
  1986. /ev/pro/r/texture/top/left/y/ds/morph/curve/resolution 100
  1987. /ev/pro/r/texture/top/left/y/ds/morph/curve/weight 0
  1988. /ev/pro/r/texture/top/left/y/ds/morph/curve/shape 0
  1989. /ev/pro/r/texture/top/left/y/ds/morph/time 0
  1990. /ev/pro/r/texture/top/left/y/ds/set 0
  1991. /ev/pro/r/texture/top/left/y/ds/morph 0
  1992. /ev/pro/r/texture/top/left/x/ds/occupy 0
  1993. /ev/pro/r/texture/top/left/x/ds/change 0
  1994. /ev/pro/r/texture/top/left/x/ds/delay 0
  1995. /ev/pro/r/texture/top/left/x/ds/morph/timegrain 20
  1996. /ev/pro/r/texture/top/left/x/ds/morph/curve/quality 0
  1997. /ev/pro/r/texture/top/left/x/ds/slave 0
  1998. /ev/pro/r/texture/top/left/x/ds/morph/curve/resolution 100
  1999. /ev/pro/r/texture/top/left/x/ds/morph/curve/weight 0
  2000. /ev/pro/r/texture/top/left/x/ds/morph/curve/shape 0
  2001. /ev/pro/r/texture/top/left/x/ds/morph/time 0
  2002. /ev/pro/r/texture/top/left/x/ds/set 0
  2003. /ev/pro/r/texture/top/left/x/ds/morph 0
  2004. /ev/pro/r/vertex/bottom/right/y/ds/occupy 0
  2005. /ev/pro/r/vertex/bottom/right/y/ds/change 0
  2006. /ev/pro/r/vertex/bottom/right/y/ds/delay 0
  2007. /ev/pro/r/vertex/bottom/right/y/ds/morph/timegrain 20
  2008. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/quality 0
  2009. /ev/pro/r/vertex/bottom/right/y/ds/slave 0
  2010. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/resolution 100
  2011. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/weight 0
  2012. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/shape 0
  2013. /ev/pro/r/vertex/bottom/right/y/ds/morph/time 0
  2014. /ev/pro/r/vertex/bottom/right/y/ds/set 0
  2015. /ev/pro/r/vertex/bottom/right/y/ds/morph 0
  2016. /ev/pro/r/vertex/bottom/right/x/ds/occupy 0
  2017. /ev/pro/r/vertex/bottom/right/x/ds/change 0
  2018. /ev/pro/r/vertex/bottom/right/x/ds/delay 0
  2019. /ev/pro/r/vertex/bottom/right/x/ds/morph/timegrain 20
  2020. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/quality 0
  2021. /ev/pro/r/vertex/bottom/right/x/ds/slave 0
  2022. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/resolution 100
  2023. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/weight 0
  2024. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/shape 0
  2025. /ev/pro/r/vertex/bottom/right/x/ds/morph/time 0
  2026. /ev/pro/r/vertex/bottom/right/x/ds/set 0
  2027. /ev/pro/r/vertex/bottom/right/x/ds/morph 0
  2028. /ev/pro/r/vertex/bottom/left/y/ds/occupy 0
  2029. /ev/pro/r/vertex/bottom/left/y/ds/change 0
  2030. /ev/pro/r/vertex/bottom/left/y/ds/delay 0
  2031. /ev/pro/r/vertex/bottom/left/y/ds/morph/timegrain 20
  2032. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/quality 0
  2033. /ev/pro/r/vertex/bottom/left/y/ds/slave 0
  2034. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/resolution 100
  2035. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/weight 0
  2036. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/shape 0
  2037. /ev/pro/r/vertex/bottom/left/y/ds/morph/time 0
  2038. /ev/pro/r/vertex/bottom/left/y/ds/set 0
  2039. /ev/pro/r/vertex/bottom/left/y/ds/morph 0
  2040. /ev/pro/r/vertex/bottom/left/x/ds/occupy 0
  2041. /ev/pro/r/vertex/bottom/left/x/ds/change 0
  2042. /ev/pro/r/vertex/bottom/left/x/ds/delay 0
  2043. /ev/pro/r/vertex/bottom/left/x/ds/morph/timegrain 20
  2044. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/quality 0
  2045. /ev/pro/r/vertex/bottom/left/x/ds/slave 0
  2046. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/resolution 100
  2047. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/weight 0
  2048. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/shape 0
  2049. /ev/pro/r/vertex/bottom/left/x/ds/morph/time 0
  2050. /ev/pro/r/vertex/bottom/left/x/ds/set 0
  2051. /ev/pro/r/vertex/bottom/left/x/ds/morph 0
  2052. /ev/pro/r/vertex/top/right/y/ds/occupy 0
  2053. /ev/pro/r/vertex/top/right/y/ds/change 0
  2054. /ev/pro/r/vertex/top/right/y/ds/delay 0
  2055. /ev/pro/r/vertex/top/right/y/ds/morph/timegrain 20
  2056. /ev/pro/r/vertex/top/right/y/ds/morph/curve/quality 0
  2057. /ev/pro/r/vertex/top/right/y/ds/slave 0
  2058. /ev/pro/r/vertex/top/right/y/ds/morph/curve/resolution 100
  2059. /ev/pro/r/vertex/top/right/y/ds/morph/curve/weight 0
  2060. /ev/pro/r/vertex/top/right/y/ds/morph/curve/shape 0
  2061. /ev/pro/r/vertex/top/right/y/ds/morph/time 0
  2062. /ev/pro/r/vertex/top/right/y/ds/set 0
  2063. /ev/pro/r/vertex/top/right/y/ds/morph 0
  2064. /ev/pro/r/vertex/top/right/x/ds/occupy 0
  2065. /ev/pro/r/vertex/top/right/x/ds/change 0
  2066. /ev/pro/r/vertex/top/right/x/ds/delay 0
  2067. /ev/pro/r/vertex/top/right/x/ds/morph/timegrain 20
  2068. /ev/pro/r/vertex/top/right/x/ds/morph/curve/quality 0
  2069. /ev/pro/r/vertex/top/right/x/ds/slave 0
  2070. /ev/pro/r/vertex/top/right/x/ds/morph/curve/resolution 100
  2071. /ev/pro/r/vertex/top/right/x/ds/morph/curve/weight 0
  2072. /ev/pro/r/vertex/top/right/x/ds/morph/curve/shape 0
  2073. /ev/pro/r/vertex/top/right/x/ds/morph/time 0
  2074. /ev/pro/r/vertex/top/right/x/ds/set 0
  2075. /ev/pro/r/vertex/top/right/x/ds/morph 0
  2076. /ev/pro/r/vertex/top/left/y/ds/occupy 0
  2077. /ev/pro/r/vertex/top/left/y/ds/change 0
  2078. /ev/pro/r/vertex/top/left/y/ds/delay 0
  2079. /ev/pro/r/vertex/top/left/y/ds/morph/timegrain 20
  2080. /ev/pro/r/vertex/top/left/y/ds/morph/curve/quality 0
  2081. /ev/pro/r/vertex/top/left/y/ds/slave 0
  2082. /ev/pro/r/vertex/top/left/y/ds/morph/curve/resolution 100
  2083. /ev/pro/r/vertex/top/left/y/ds/morph/curve/weight 0
  2084. /ev/pro/r/vertex/top/left/y/ds/morph/curve/shape 0
  2085. /ev/pro/r/vertex/top/left/y/ds/morph/time 0
  2086. /ev/pro/r/vertex/top/left/y/ds/set 0
  2087. /ev/pro/r/vertex/top/left/y/ds/morph 0
  2088. /ev/pro/r/vertex/top/left/x/ds/occupy 0
  2089. /ev/pro/r/vertex/top/left/x/ds/change 0
  2090. /ev/pro/r/vertex/top/left/x/ds/delay 0
  2091. /ev/pro/r/vertex/top/left/x/ds/morph/timegrain 20
  2092. /ev/pro/r/vertex/top/left/x/ds/morph/curve/quality 0
  2093. /ev/pro/r/vertex/top/left/x/ds/slave 0
  2094. /ev/pro/r/vertex/top/left/x/ds/morph/curve/resolution 100
  2095. /ev/pro/r/vertex/top/left/x/ds/morph/curve/weight 0
  2096. /ev/pro/r/vertex/top/left/x/ds/morph/curve/shape 0
  2097. /ev/pro/r/vertex/top/left/x/ds/morph/time 0
  2098. /ev/pro/r/vertex/top/left/x/ds/set 0
  2099. /ev/pro/r/vertex/top/left/x/ds/morph 0
  2100. /ev/gemwin/dimen/x/ds/occupy 0
  2101. /ev/gemwin/dimen/x/ds/change 0
  2102. /ev/gemwin/dimen/x/ds/delay 0
  2103. /ev/gemwin/dimen/x/ds/morph/timegrain 20
  2104. /ev/gemwin/dimen/x/ds/morph/curve/quality 0
  2105. /ev/gemwin/dimen/x/ds/slave 0
  2106. /ev/gemwin/dimen/x/ds/morph/curve/resolution 100
  2107. /ev/gemwin/dimen/x/ds/morph/curve/weight 0
  2108. /ev/gemwin/dimen/x/ds/morph/curve/shape 0
  2109. /ev/gemwin/dimen/x/ds/morph/time 0
  2110. /ev/gemwin/dimen/x/ds/set 0
  2111. /ev/gemwin/dimen/x/ds/morph 0
  2112. /ev/gemwin/dimen/y/ds/occupy 0
  2113. /ev/gemwin/dimen/y/ds/change 0
  2114. /ev/gemwin/dimen/y/ds/delay 0
  2115. /ev/gemwin/dimen/y/ds/morph/timegrain 20
  2116. /ev/gemwin/dimen/y/ds/morph/curve/quality 0
  2117. /ev/gemwin/dimen/y/ds/slave 0
  2118. /ev/gemwin/dimen/y/ds/morph/curve/resolution 100
  2119. /ev/gemwin/dimen/y/ds/morph/curve/weight 0
  2120. /ev/gemwin/dimen/y/ds/morph/curve/shape 0
  2121. /ev/gemwin/dimen/y/ds/morph/time 0
  2122. /ev/gemwin/dimen/y/ds/set 0
  2123. /ev/gemwin/dimen/y/ds/morph 0
  2124. /ev/gemwin/offset/x/ds/occupy 0
  2125. /ev/gemwin/offset/x/ds/change 0
  2126. /ev/gemwin/offset/x/ds/delay 0
  2127. /ev/gemwin/offset/x/ds/morph/timegrain 20
  2128. /ev/gemwin/offset/x/ds/morph/curve/quality 0
  2129. /ev/gemwin/offset/x/ds/slave 0
  2130. /ev/gemwin/offset/x/ds/morph/curve/resolution 100
  2131. /ev/gemwin/offset/x/ds/morph/curve/weight 0
  2132. /ev/gemwin/offset/x/ds/morph/curve/shape 0
  2133. /ev/gemwin/offset/x/ds/morph/time 0
  2134. /ev/gemwin/offset/x/ds/set 0
  2135. /ev/gemwin/offset/x/ds/morph 0
  2136. /ev/gemwin/offset/y/ds/occupy 0
  2137. /ev/gemwin/offset/y/ds/change 0
  2138. /ev/gemwin/offset/y/ds/delay 0
  2139. /ev/gemwin/offset/y/ds/morph/timegrain 20
  2140. /ev/gemwin/offset/y/ds/morph/curve/quality 0
  2141. /ev/gemwin/offset/y/ds/slave 0
  2142. /ev/gemwin/offset/y/ds/morph/curve/resolution 100
  2143. /ev/gemwin/offset/y/ds/morph/curve/weight 0
  2144. /ev/gemwin/offset/y/ds/morph/curve/shape 0
  2145. /ev/gemwin/offset/y/ds/morph/time 0
  2146. /ev/gemwin/offset/y/ds/set 0
  2147. /ev/gemwin/offset/y/ds/morph 0
  2148. /ev/gemwin/frame/ds/occupy 0
  2149. /ev/gemwin/frame/ds/change 0
  2150. /ev/gemwin/frame/ds/delay 0
  2151. /ev/gemwin/frame/ds/morph/timegrain 20
  2152. /ev/gemwin/frame/ds/morph/curve/quality 0
  2153. /ev/gemwin/frame/ds/slave 0
  2154. /ev/gemwin/frame/ds/morph/curve/resolution 100
  2155. /ev/gemwin/frame/ds/morph/curve/weight 0
  2156. /ev/gemwin/frame/ds/morph/curve/shape 0
  2157. /ev/gemwin/frame/ds/morph/time 0
  2158. /ev/gemwin/frame/ds/set 0
  2159. /ev/gemwin/frame/ds/morph 0
  2160. /ev/gemwin/lighting/ds/occupy 0
  2161. /ev/gemwin/lighting/ds/change 0
  2162. /ev/gemwin/lighting/ds/delay 0
  2163. /ev/gemwin/lighting/ds/morph/timegrain 20
  2164. /ev/gemwin/lighting/ds/morph/curve/quality 0
  2165. /ev/gemwin/lighting/ds/slave 0
  2166. /ev/gemwin/lighting/ds/morph/curve/resolution 100
  2167. /ev/gemwin/lighting/ds/morph/curve/weight 0
  2168. /ev/gemwin/lighting/ds/morph/curve/shape 0
  2169. /ev/gemwin/lighting/ds/morph/time 0
  2170. /ev/gemwin/lighting/ds/set 0
  2171. /ev/gemwin/lighting/ds/morph 0
  2172. /ev/gemwin/border/ds/occupy 0
  2173. /ev/gemwin/border/ds/change 0
  2174. /ev/gemwin/border/ds/delay 0
  2175. /ev/gemwin/border/ds/morph/timegrain 20
  2176. /ev/gemwin/border/ds/morph/curve/quality 0
  2177. /ev/gemwin/border/ds/slave 0
  2178. /ev/gemwin/border/ds/morph/curve/resolution 100
  2179. /ev/gemwin/border/ds/morph/curve/weight 0
  2180. /ev/gemwin/border/ds/morph/curve/shape 0
  2181. /ev/gemwin/border/ds/morph/time 0
  2182. /ev/gemwin/border/ds/set 0
  2183. /ev/gemwin/border/ds/morph 0
  2184. /ev/buf/0/color/ds/occupy 0
  2185. /ev/buf/0/color/ds/change 0
  2186. /ev/buf/0/color/ds/delay 0
  2187. /ev/buf/0/color/ds/morph/timegrain 20
  2188. /ev/buf/0/color/ds/morph/curve/quality 0
  2189. /ev/buf/0/color/ds/slave 0
  2190. /ev/buf/0/color/ds/morph/curve/resolution 100
  2191. /ev/buf/0/color/ds/morph/curve/weight 0
  2192. /ev/buf/0/color/ds/morph/curve/shape 0
  2193. /ev/buf/0/color/ds/morph/time 0
  2194. /ev/buf/0/color/ds/set 0
  2195. /ev/buf/0/color/ds/morph 0
  2196. /ev/buf/0/format/ds/occupy 0
  2197. /ev/buf/0/format/ds/change 0
  2198. /ev/buf/0/format/ds/delay 0
  2199. /ev/buf/0/format/ds/morph/timegrain 20
  2200. /ev/buf/0/format/ds/morph/curve/quality 0
  2201. /ev/buf/0/format/ds/slave 0
  2202. /ev/buf/0/format/ds/morph/curve/resolution 100
  2203. /ev/buf/0/format/ds/morph/curve/weight 0
  2204. /ev/buf/0/format/ds/morph/curve/shape 0
  2205. /ev/buf/0/format/ds/morph/time 0
  2206. /ev/buf/0/format/ds/set 0
  2207. /ev/buf/0/format/ds/morph 0
  2208. /ev/buf/0/rectangle/ds/occupy 0
  2209. /ev/buf/0/rectangle/ds/change 0
  2210. /ev/buf/0/rectangle/ds/delay 0
  2211. /ev/buf/0/rectangle/ds/morph/timegrain 20
  2212. /ev/buf/0/rectangle/ds/morph/curve/quality 0
  2213. /ev/buf/0/rectangle/ds/slave 0
  2214. /ev/buf/0/rectangle/ds/morph/curve/resolution 100
  2215. /ev/buf/0/rectangle/ds/morph/curve/weight 0
  2216. /ev/buf/0/rectangle/ds/morph/curve/shape 0
  2217. /ev/buf/0/rectangle/ds/morph/time 0
  2218. /ev/buf/0/rectangle/ds/set 0
  2219. /ev/buf/0/rectangle/ds/morph 0
  2220. /ev/buf/0/type/ds/occupy 0
  2221. /ev/buf/0/type/ds/change 0
  2222. /ev/buf/0/type/ds/delay 0
  2223. /ev/buf/0/type/ds/morph/timegrain 20
  2224. /ev/buf/0/type/ds/morph/curve/quality 0
  2225. /ev/buf/0/type/ds/slave 0
  2226. /ev/buf/0/type/ds/morph/curve/resolution 100
  2227. /ev/buf/0/type/ds/morph/curve/weight 0
  2228. /ev/buf/0/type/ds/morph/curve/shape 0
  2229. /ev/buf/0/type/ds/morph/time 0
  2230. /ev/buf/0/type/ds/set 0
  2231. /ev/buf/0/type/ds/morph 0
  2232. /ev/buf/0/shift/y/ds/occupy 0
  2233. /ev/buf/0/shift/y/ds/change 0
  2234. /ev/buf/0/shift/y/ds/delay 0
  2235. /ev/buf/0/shift/y/ds/morph/timegrain 20
  2236. /ev/buf/0/shift/y/ds/morph/curve/quality 0
  2237. /ev/buf/0/shift/y/ds/slave 0
  2238. /ev/buf/0/shift/y/ds/morph/curve/resolution 100
  2239. /ev/buf/0/shift/y/ds/morph/curve/weight 0
  2240. /ev/buf/0/shift/y/ds/morph/curve/shape 0
  2241. /ev/buf/0/shift/y/ds/morph/time 0
  2242. /ev/buf/0/shift/y/ds/set 0
  2243. /ev/buf/0/shift/y/ds/morph 0
  2244. /ev/buf/0/shift/x/ds/occupy 0
  2245. /ev/buf/0/shift/x/ds/change 0
  2246. /ev/buf/0/shift/x/ds/delay 0
  2247. /ev/buf/0/shift/x/ds/morph/timegrain 20
  2248. /ev/buf/0/shift/x/ds/morph/curve/quality 0
  2249. /ev/buf/0/shift/x/ds/slave 0
  2250. /ev/buf/0/shift/x/ds/morph/curve/resolution 100
  2251. /ev/buf/0/shift/x/ds/morph/curve/weight 0
  2252. /ev/buf/0/shift/x/ds/morph/curve/shape 0
  2253. /ev/buf/0/shift/x/ds/morph/time 0
  2254. /ev/buf/0/shift/x/ds/set 0
  2255. /ev/buf/0/shift/x/ds/morph 0
  2256. /ev/buf/0/scale/y/ds/occupy 0
  2257. /ev/buf/0/scale/y/ds/change 0
  2258. /ev/buf/0/scale/y/ds/delay 0
  2259. /ev/buf/0/scale/y/ds/morph/timegrain 20
  2260. /ev/buf/0/scale/y/ds/morph/curve/quality 0
  2261. /ev/buf/0/scale/y/ds/slave 0
  2262. /ev/buf/0/scale/y/ds/morph/curve/resolution 100
  2263. /ev/buf/0/scale/y/ds/morph/curve/weight 0
  2264. /ev/buf/0/scale/y/ds/morph/curve/shape 0
  2265. /ev/buf/0/scale/y/ds/morph/time 0
  2266. /ev/buf/0/scale/y/ds/set 0
  2267. /ev/buf/0/scale/y/ds/morph 0
  2268. /ev/buf/0/scale/x/ds/occupy 0
  2269. /ev/buf/0/scale/x/ds/change 0
  2270. /ev/buf/0/scale/x/ds/delay 0
  2271. /ev/buf/0/scale/x/ds/morph/timegrain 20
  2272. /ev/buf/0/scale/x/ds/morph/curve/quality 0
  2273. /ev/buf/0/scale/x/ds/slave 0
  2274. /ev/buf/0/scale/x/ds/morph/curve/resolution 100
  2275. /ev/buf/0/scale/x/ds/morph/curve/weight 0
  2276. /ev/buf/0/scale/x/ds/morph/curve/shape 0
  2277. /ev/buf/0/scale/x/ds/morph/time 0
  2278. /ev/buf/0/scale/x/ds/set 0
  2279. /ev/buf/0/scale/x/ds/morph 0
  2280. /ev/buf/0/dimen/y/ds/occupy 0
  2281. /ev/buf/0/dimen/y/ds/change 0
  2282. /ev/buf/0/dimen/y/ds/delay 0
  2283. /ev/buf/0/dimen/y/ds/morph/timegrain 20
  2284. /ev/buf/0/dimen/y/ds/morph/curve/quality 0
  2285. /ev/buf/0/dimen/y/ds/slave 0
  2286. /ev/buf/0/dimen/y/ds/morph/curve/resolution 100
  2287. /ev/buf/0/dimen/y/ds/morph/curve/weight 0
  2288. /ev/buf/0/dimen/y/ds/morph/curve/shape 0
  2289. /ev/buf/0/dimen/y/ds/morph/time 0
  2290. /ev/buf/0/dimen/y/ds/set 0
  2291. /ev/buf/0/dimen/y/ds/morph 0
  2292. /ev/buf/0/dimen/x/ds/occupy 0
  2293. /ev/buf/0/dimen/x/ds/change 0
  2294. /ev/buf/0/dimen/x/ds/delay 0
  2295. /ev/buf/0/dimen/x/ds/morph/timegrain 20
  2296. /ev/buf/0/dimen/x/ds/morph/curve/quality 0
  2297. /ev/buf/0/dimen/x/ds/slave 0
  2298. /ev/buf/0/dimen/x/ds/morph/curve/resolution 100
  2299. /ev/buf/0/dimen/x/ds/morph/curve/weight 0
  2300. /ev/buf/0/dimen/x/ds/morph/curve/shape 0
  2301. /ev/buf/0/dimen/x/ds/morph/time 0
  2302. /ev/buf/0/dimen/x/ds/set 0
  2303. /ev/buf/0/dimen/x/ds/morph 0
  2304. /ev/buf/0/state/ds/occupy 0
  2305. /ev/buf/0/state/ds/change 0
  2306. /ev/buf/0/state/ds/delay 0
  2307. /ev/buf/0/state/ds/morph/timegrain 20
  2308. /ev/buf/0/state/ds/morph/curve/quality 0
  2309. /ev/buf/0/state/ds/slave 0
  2310. /ev/buf/0/state/ds/morph/curve/resolution 100
  2311. /ev/buf/0/state/ds/morph/curve/weight 0
  2312. /ev/buf/0/state/ds/morph/curve/shape 0
  2313. /ev/buf/0/state/ds/morph/time 0
  2314. /ev/buf/0/state/ds/set 0
  2315. /ev/buf/0/state/ds/morph 0
  2316. #data
  2317. /ev/pro/l/cursor/mode 2
  2318. /ev/pro/l/grid/state 0
  2319. /ev/pro/l/state 1
  2320. /ev/pro/l/shade/left 0.15
  2321. /ev/pro/l/shade/bottom 0.0214286
  2322. /ev/pro/l/shade/right 0
  2323. /ev/pro/l/shade/top 0.0306122
  2324. /ev/pro/l/texture/bottom/right/y 421
  2325. /ev/pro/l/texture/bottom/right/x 507.904
  2326. /ev/pro/l/texture/bottom/left/y 421
  2327. /ev/pro/l/texture/bottom/left/x 0
  2328. /ev/pro/l/texture/top/right/y 610
  2329. /ev/pro/l/texture/top/right/x 505.856
  2330. /ev/pro/l/texture/top/left/y 610
  2331. /ev/pro/l/texture/top/left/x 0
  2332. /ev/pro/l/vertex/bottom/right/y -3.656
  2333. /ev/pro/l/vertex/bottom/right/x -3.02934
  2334. /ev/pro/l/vertex/bottom/left/y -3.024
  2335. /ev/pro/l/vertex/bottom/left/x -4.66134
  2336. /ev/pro/l/vertex/top/right/y 3.26134
  2337. /ev/pro/l/vertex/top/right/x -0.766
  2338. /ev/pro/l/vertex/top/left/y 2.90667
  2339. /ev/pro/l/vertex/top/left/x -4.63134
  2340. /ev/pro/grid/flip/vertical 0
  2341. /ev/pro/grid/flip/horizontal 0
  2342. /ev/pro/grid/filename ../media/grid.png
  2343. /ev/pro/grid/state 1
  2344. /ev/pro/r/cursor/mode 2
  2345. /ev/pro/r/grid/state 0
  2346. /ev/pro/r/state 1
  2347. /ev/pro/r/shade/left 0
  2348. /ev/pro/r/shade/bottom 0.0183673
  2349. /ev/pro/r/shade/right 0.15
  2350. /ev/pro/r/shade/top 0.0336735
  2351. /ev/pro/r/texture/bottom/right/y 421
  2352. /ev/pro/r/texture/bottom/right/x 1024
  2353. /ev/pro/r/texture/bottom/left/y 421
  2354. /ev/pro/r/texture/bottom/left/x 507.904
  2355. /ev/pro/r/texture/top/right/y 610
  2356. /ev/pro/r/texture/top/right/x 1024
  2357. /ev/pro/r/texture/top/left/y 610
  2358. /ev/pro/r/texture/top/left/x 505.856
  2359. /ev/pro/r/vertex/bottom/right/y -3.32533
  2360. /ev/pro/r/vertex/bottom/right/x 4.89667
  2361. /ev/pro/r/vertex/bottom/left/y -3.66267
  2362. /ev/pro/r/vertex/bottom/left/x -3.06267
  2363. /ev/pro/r/vertex/top/right/y 3.30666
  2364. /ev/pro/r/vertex/top/right/x 4.99668
  2365. /ev/pro/r/vertex/top/left/y 3.26134
  2366. /ev/pro/r/vertex/top/left/x -0.776
  2367. /ev/gemwin/dimen/x 800
  2368. /ev/gemwin/dimen/y 600
  2369. /ev/gemwin/offset/x 0
  2370. /ev/gemwin/offset/y 0
  2371. /ev/gemwin/frame 25
  2372. /ev/gemwin/lighting 30
  2373. /ev/gemwin/border 1
  2374. /ev/buf/0/color 0.9 0.6 0.1 1
  2375. /ev/buf/0/format RGBA
  2376. /ev/buf/0/rectangle 1
  2377. /ev/buf/0/type BYTE
  2378. /ev/buf/0/shift/y 0
  2379. /ev/buf/0/shift/x 0
  2380. /ev/buf/0/scale/y 1.3
  2381. /ev/buf/0/scale/x 1.3
  2382. /ev/buf/0/dimen/y 1024
  2383. /ev/buf/0/dimen/x 1024
  2384. /ev/buf/0/state 1
  2385. ======================== SCENE 3 <unnamed> ========================
  2386. #settings
  2387. #data
  2388. ======================== SCENE 4 <unnamed> ========================
  2389. #settings
  2390. #data
  2391. ======================== SCENE 5 <unnamed> ========================
  2392. #settings
  2393. #data
  2394. ======================== SCENE 6 <unnamed> ========================
  2395. #settings
  2396. #data
  2397. ======================== SCENE 7 <unnamed> ========================
  2398. #settings
  2399. #data
  2400. ======================== SCENE 8 <unnamed> ========================
  2401. #settings
  2402. #data
  2403. ======================== SCENE 9 <unnamed> ========================
  2404. #settings
  2405. #data
  2406. ======================== SCENE 10 <unnamed> ========================
  2407. #settings
  2408. #data
  2409. ======================== SCENE 11 <unnamed> ========================
  2410. #settings
  2411. #data
  2412. ======================== SCENE 12 <unnamed> ========================
  2413. #settings
  2414. #data
  2415. ======================== SCENE 13 <unnamed> ========================
  2416. #settings
  2417. #data
  2418. ======================== SCENE 14 <unnamed> ========================
  2419. #settings
  2420. #data
  2421. ======================== SCENE 15 <unnamed> ========================
  2422. #settings
  2423. #data
  2424. ======================== SCENE 16 <unnamed> ========================
  2425. #settings
  2426. #data
  2427. ======================== SCENE 17 <unnamed> ========================
  2428. #settings
  2429. #data
  2430. ======================== SCENE 18 <unnamed> ========================
  2431. #settings
  2432. #data
  2433. ======================== SCENE 19 <unnamed> ========================
  2434. #settings
  2435. #data
  2436. ======================== SCENE 20 <unnamed> ========================
  2437. #settings
  2438. #data
  2439. ======================== SCENE 21 <unnamed> ========================
  2440. #settings
  2441. #data
  2442. ======================== SCENE 22 <unnamed> ========================
  2443. #settings
  2444. #data
  2445. ======================== SCENE 23 <unnamed> ========================
  2446. #settings
  2447. #data
  2448. ======================== SCENE 24 <unnamed> ========================
  2449. #settings
  2450. #data
  2451. ======================== SCENE 25 <unnamed> ========================
  2452. #settings
  2453. #data
  2454. ======================== SCENE 26 <unnamed> ========================
  2455. #settings
  2456. #data
  2457. ======================== SCENE 27 <unnamed> ========================
  2458. #settings
  2459. #data
  2460. ======================== SCENE 28 <unnamed> ========================
  2461. #settings
  2462. #data
  2463. ======================== SCENE 29 <unnamed> ========================
  2464. #settings
  2465. #data
  2466. ======================== SCENE 30 <unnamed> ========================
  2467. #settings
  2468. #data
  2469. ======================== SCENE 31 <unnamed> ========================
  2470. #settings
  2471. #data
  2472. ======================== SCENE 32 <unnamed> ========================
  2473. #settings
  2474. #data
  2475. ======================== SCENE 33 <unnamed> ========================
  2476. #settings
  2477. #data
  2478. ======================== SCENE 34 <unnamed> ========================
  2479. #settings
  2480. #data
  2481. ======================== SCENE 35 <unnamed> ========================
  2482. #settings
  2483. #data
  2484. ======================== SCENE 36 <unnamed> ========================
  2485. #settings
  2486. #data
  2487. ======================== SCENE 37 <unnamed> ========================
  2488. #settings
  2489. #data
  2490. ======================== SCENE 38 <unnamed> ========================
  2491. #settings
  2492. #data
  2493. ======================== SCENE 39 <unnamed> ========================
  2494. #settings
  2495. #data
  2496. ======================== SCENE 40 <unnamed> ========================
  2497. #settings
  2498. #data
  2499. ======================== SCENE 41 <unnamed> ========================
  2500. #settings
  2501. #data
  2502. ======================== SCENE 42 <unnamed> ========================
  2503. #settings
  2504. #data
  2505. ======================== SCENE 43 <unnamed> ========================
  2506. #settings
  2507. #data
  2508. ======================== SCENE 44 <unnamed> ========================
  2509. #settings
  2510. #data
  2511. ======================== SCENE 45 <unnamed> ========================
  2512. #settings
  2513. #data
  2514. ======================== SCENE 46 <unnamed> ========================
  2515. #settings
  2516. #data
  2517. ======================== SCENE 47 <unnamed> ========================
  2518. #settings
  2519. #data
  2520. ======================== SCENE 48 <unnamed> ========================
  2521. #settings
  2522. #data
  2523. ======================== SCENE 49 <unnamed> ========================
  2524. #settings
  2525. #data
  2526. ======================== SCENE 50 <unnamed> ========================
  2527. #settings
  2528. #data
  2529. ======================== SCENE 51 <unnamed> ========================
  2530. #settings
  2531. #data
  2532. ======================== SCENE 52 <unnamed> ========================
  2533. #settings
  2534. #data
  2535. ======================== SCENE 53 <unnamed> ========================
  2536. #settings
  2537. #data
  2538. ======================== SCENE 54 <unnamed> ========================
  2539. #settings
  2540. #data
  2541. ======================== SCENE 55 <unnamed> ========================
  2542. #settings
  2543. #data
  2544. ======================== SCENE 56 <unnamed> ========================
  2545. #settings
  2546. #data
  2547. ======================== SCENE 57 <unnamed> ========================
  2548. #settings
  2549. #data
  2550. ======================== SCENE 58 <unnamed> ========================
  2551. #settings
  2552. #data
  2553. ======================== SCENE 59 <unnamed> ========================
  2554. #settings
  2555. #data
  2556. ======================== SCENE 60 <unnamed> ========================
  2557. #settings
  2558. #data
  2559. ======================== SCENE 61 <unnamed> ========================
  2560. #settings
  2561. #data
  2562. ======================== SCENE 62 <unnamed> ========================
  2563. #settings
  2564. #data
  2565. ======================== SCENE 63 <unnamed> ========================
  2566. #settings
  2567. #data
  2568. ======================== SCENE 64 <unnamed> ========================
  2569. #settings
  2570. #data
  2571. ======================== SCENE 65 <unnamed> ========================
  2572. #settings
  2573. #data
  2574. ======================== SCENE 66 <unnamed> ========================
  2575. #settings
  2576. #data
  2577. ======================== SCENE 67 <unnamed> ========================
  2578. #settings
  2579. #data
  2580. ======================== SCENE 68 <unnamed> ========================
  2581. #settings
  2582. #data
  2583. ======================== SCENE 69 <unnamed> ========================
  2584. #settings
  2585. #data
  2586. ======================== SCENE 70 <unnamed> ========================
  2587. #settings
  2588. #data
  2589. ======================== SCENE 71 <unnamed> ========================
  2590. #settings
  2591. #data
  2592. ======================== SCENE 72 <unnamed> ========================
  2593. #settings
  2594. #data
  2595. ======================== SCENE 73 <unnamed> ========================
  2596. #settings
  2597. #data
  2598. ======================== SCENE 74 <unnamed> ========================
  2599. #settings
  2600. #data
  2601. ======================== SCENE 75 <unnamed> ========================
  2602. #settings
  2603. #data
  2604. ======================== SCENE 76 <unnamed> ========================
  2605. #settings
  2606. #data
  2607. ======================== SCENE 77 <unnamed> ========================
  2608. #settings
  2609. #data
  2610. ======================== SCENE 78 <unnamed> ========================
  2611. #settings
  2612. #data
  2613. ======================== SCENE 79 <unnamed> ========================
  2614. #settings
  2615. #data
  2616. ======================== SCENE 80 <unnamed> ========================
  2617. #settings
  2618. #data
  2619. ======================== SCENE 81 <unnamed> ========================
  2620. #settings
  2621. #data
  2622. ======================== SCENE 82 <unnamed> ========================
  2623. #settings
  2624. #data
  2625. ======================== SCENE 83 <unnamed> ========================
  2626. #settings
  2627. #data
  2628. ======================== SCENE 84 <unnamed> ========================
  2629. #settings
  2630. #data
  2631. ======================== SCENE 85 <unnamed> ========================
  2632. #settings
  2633. #data
  2634. ======================== SCENE 86 <unnamed> ========================
  2635. #settings
  2636. #data
  2637. ======================== SCENE 87 <unnamed> ========================
  2638. #settings
  2639. #data
  2640. ======================== SCENE 88 <unnamed> ========================
  2641. #settings
  2642. #data
  2643. ======================== SCENE 89 <unnamed> ========================
  2644. #settings
  2645. #data
  2646. ======================== SCENE 90 <unnamed> ========================
  2647. #settings
  2648. #data
  2649. ======================== SCENE 91 <unnamed> ========================
  2650. #settings
  2651. #data
  2652. ======================== SCENE 92 <unnamed> ========================
  2653. #settings
  2654. #data
  2655. ======================== SCENE 93 <unnamed> ========================
  2656. #settings
  2657. #data
  2658. ======================== SCENE 94 <unnamed> ========================
  2659. #settings
  2660. #data
  2661. ======================== SCENE 95 <unnamed> ========================
  2662. #settings
  2663. #data
  2664. ======================== SCENE 96 <unnamed> ========================
  2665. #settings
  2666. #data
  2667. ======================== SCENE 97 <unnamed> ========================
  2668. #settings
  2669. #data
  2670. ======================== SCENE 98 <unnamed> ========================
  2671. #settings
  2672. #data
  2673. ======================== SCENE 99 <unnamed> ========================
  2674. #settings
  2675. #data