DiningRoom.defaultIcons.model 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "IconIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 50,
  13. 100
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 2.82,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "1": {
  40. "width": {
  41. "type": "double",
  42. "value": "200"
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": "150"
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": "10"
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "- ",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "stroke-width": 1
  60. }
  61. },
  62. "mapper": {
  63. "type": "code",
  64. "value": ""
  65. },
  66. "parser": {
  67. "type": "code",
  68. "value": ""
  69. },
  70. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  71. "position": {
  72. "type": "list<double>",
  73. "value": [
  74. 0,
  75. 0
  76. ]
  77. },
  78. "orientation": {
  79. "type": "double",
  80. "value": 0
  81. },
  82. "scale": {
  83. "type": "list<double>",
  84. "value": [
  85. 1,
  86. 1
  87. ]
  88. }
  89. },
  90. "2": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "TableIcon"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "stroke-dasharray": "",
  100. "fill": "#000000",
  101. "fill-opacity": "1",
  102. "font-size": "13px"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "({\"textContent\":getAttr(\"typename\")})"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({\"typename\":getAttr(\"textContent\")})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 58,
  118. 151
  119. ]
  120. },
  121. "orientation": {
  122. "type": "double",
  123. "value": 0
  124. },
  125. "scale": {
  126. "type": "list<double>",
  127. "value": [
  128. 1,
  129. 1
  130. ]
  131. }
  132. },
  133. "3": {
  134. "distance": {
  135. "type": "double",
  136. "value": 0
  137. },
  138. "alignment": {
  139. "type": "ENUM(\"right\",\"left\",\"center\")",
  140. "value": "center"
  141. },
  142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  143. "position": {
  144. "type": "list<double>",
  145. "value": [
  146. 93.49899850809561,
  147. 137.49900000000002
  148. ]
  149. },
  150. "orientation": {
  151. "type": "double",
  152. "value": 0
  153. },
  154. "scale": {
  155. "type": "list<double>",
  156. "value": [
  157. 1,
  158. 1
  159. ]
  160. },
  161. "link-style": {
  162. "type": "map<string,string>",
  163. "value": {
  164. "stroke": "#00ff00",
  165. "stroke-dasharray": "",
  166. "stroke-opacity": 1,
  167. "arrow-start": "none",
  168. "arrow-end": "classic-wide-long"
  169. }
  170. }
  171. }
  172. },
  173. "edges": [
  174. {
  175. "src": "2",
  176. "dest": 3
  177. },
  178. {
  179. "src": 3,
  180. "dest": "1"
  181. }
  182. ]
  183. }
  184. },
  185. "$asuri": {
  186. "type": "string",
  187. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/0.instance"
  188. },
  189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  190. },
  191. "1": {
  192. "typename": {
  193. "type": "string",
  194. "value": "RectangleIcon"
  195. },
  196. "position": {
  197. "type": "list<double>",
  198. "value": [
  199. 55,
  200. 104
  201. ]
  202. },
  203. "orientation": {
  204. "type": "double",
  205. "value": 0
  206. },
  207. "scale": {
  208. "type": "list<double>",
  209. "value": [
  210. 1,
  211. 1
  212. ]
  213. },
  214. "mapper": {
  215. "type": "code",
  216. "value": ""
  217. },
  218. "parser": {
  219. "type": "code",
  220. "value": ""
  221. },
  222. "$contents": {
  223. "type": "map<string,*>",
  224. "value": {
  225. "nodes": {
  226. "17": {
  227. "width": {
  228. "type": "double",
  229. "value": 500
  230. },
  231. "height": {
  232. "type": "double",
  233. "value": 20
  234. },
  235. "cornerRadius": {
  236. "type": "double",
  237. "value": 0
  238. },
  239. "style": {
  240. "type": "map<string,string>",
  241. "value": {
  242. "stroke": "#000000",
  243. "stroke-dasharray": "",
  244. "fill": "#000000",
  245. "fill-opacity": 0.75,
  246. "font-size": "20px",
  247. "stroke-width": 1,
  248. "arrow-start": "none",
  249. "arrow-end": "none",
  250. "": ""
  251. }
  252. },
  253. "mapper": {
  254. "type": "code",
  255. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  256. },
  257. "parser": {
  258. "type": "code",
  259. "value": ""
  260. },
  261. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  262. "position": {
  263. "type": "list<double>",
  264. "value": [
  265. 0,
  266. 1
  267. ]
  268. },
  269. "orientation": {
  270. "type": "double",
  271. "value": 0
  272. },
  273. "scale": {
  274. "type": "list<double>",
  275. "value": [
  276. 1,
  277. 1
  278. ]
  279. }
  280. }
  281. },
  282. "edges": []
  283. }
  284. },
  285. "$asuri": {
  286. "type": "string",
  287. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/1.instance"
  288. },
  289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  290. },
  291. "2": {
  292. "typename": {
  293. "type": "string",
  294. "value": "RectangleIcon"
  295. },
  296. "position": {
  297. "type": "list<double>",
  298. "value": [
  299. 81,
  300. 126
  301. ]
  302. },
  303. "orientation": {
  304. "type": "double",
  305. "value": 0
  306. },
  307. "scale": {
  308. "type": "list<double>",
  309. "value": [
  310. 1,
  311. 1
  312. ]
  313. },
  314. "mapper": {
  315. "type": "code",
  316. "value": ""
  317. },
  318. "parser": {
  319. "type": "code",
  320. "value": ""
  321. },
  322. "$contents": {
  323. "type": "map<string,*>",
  324. "value": {
  325. "nodes": {
  326. "17": {
  327. "width": {
  328. "type": "double",
  329. "value": 20
  330. },
  331. "height": {
  332. "type": "double",
  333. "value": 100
  334. },
  335. "cornerRadius": {
  336. "type": "double",
  337. "value": 0
  338. },
  339. "style": {
  340. "type": "map<string,string>",
  341. "value": {
  342. "stroke": "#000000",
  343. "stroke-dasharray": "",
  344. "fill": "#000000",
  345. "fill-opacity": 0.75,
  346. "font-size": "20px",
  347. "stroke-width": 1,
  348. "arrow-start": "none",
  349. "arrow-end": "none",
  350. "": ""
  351. }
  352. },
  353. "mapper": {
  354. "type": "code",
  355. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  356. },
  357. "parser": {
  358. "type": "code",
  359. "value": ""
  360. },
  361. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  362. "position": {
  363. "type": "list<double>",
  364. "value": [
  365. 0,
  366. 1
  367. ]
  368. },
  369. "orientation": {
  370. "type": "double",
  371. "value": 0
  372. },
  373. "scale": {
  374. "type": "list<double>",
  375. "value": [
  376. 1,
  377. 1
  378. ]
  379. }
  380. }
  381. },
  382. "edges": []
  383. }
  384. },
  385. "$asuri": {
  386. "type": "string",
  387. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/2.instance"
  388. },
  389. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  390. },
  391. "3": {
  392. "typename": {
  393. "type": "string",
  394. "value": "RectangleIcon"
  395. },
  396. "position": {
  397. "type": "list<double>",
  398. "value": [
  399. 456,
  400. 126
  401. ]
  402. },
  403. "orientation": {
  404. "type": "double",
  405. "value": 0
  406. },
  407. "scale": {
  408. "type": "list<double>",
  409. "value": [
  410. 1,
  411. 1
  412. ]
  413. },
  414. "mapper": {
  415. "type": "code",
  416. "value": ""
  417. },
  418. "parser": {
  419. "type": "code",
  420. "value": ""
  421. },
  422. "$contents": {
  423. "type": "map<string,*>",
  424. "value": {
  425. "nodes": {
  426. "17": {
  427. "width": {
  428. "type": "double",
  429. "value": 20
  430. },
  431. "height": {
  432. "type": "double",
  433. "value": 100
  434. },
  435. "cornerRadius": {
  436. "type": "double",
  437. "value": 0
  438. },
  439. "style": {
  440. "type": "map<string,string>",
  441. "value": {
  442. "stroke": "#000000",
  443. "stroke-dasharray": "",
  444. "fill": "#000000",
  445. "fill-opacity": 0.75,
  446. "font-size": "20px",
  447. "stroke-width": 1,
  448. "arrow-start": "none",
  449. "arrow-end": "none",
  450. "": ""
  451. }
  452. },
  453. "mapper": {
  454. "type": "code",
  455. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  456. },
  457. "parser": {
  458. "type": "code",
  459. "value": ""
  460. },
  461. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  462. "position": {
  463. "type": "list<double>",
  464. "value": [
  465. 0,
  466. 1
  467. ]
  468. },
  469. "orientation": {
  470. "type": "double",
  471. "value": 0
  472. },
  473. "scale": {
  474. "type": "list<double>",
  475. "value": [
  476. 1,
  477. 1
  478. ]
  479. }
  480. }
  481. },
  482. "edges": []
  483. }
  484. },
  485. "$asuri": {
  486. "type": "string",
  487. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/3.instance"
  488. },
  489. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  490. },
  491. "4": {
  492. "typename": {
  493. "type": "string",
  494. "value": "RectangleIcon"
  495. },
  496. "position": {
  497. "type": "list<double>",
  498. "value": [
  499. 146,
  500. 126
  501. ]
  502. },
  503. "orientation": {
  504. "type": "double",
  505. "value": 0
  506. },
  507. "scale": {
  508. "type": "list<double>",
  509. "value": [
  510. 1,
  511. 1
  512. ]
  513. },
  514. "mapper": {
  515. "type": "code",
  516. "value": ""
  517. },
  518. "parser": {
  519. "type": "code",
  520. "value": ""
  521. },
  522. "$contents": {
  523. "type": "map<string,*>",
  524. "value": {
  525. "nodes": {
  526. "17": {
  527. "width": {
  528. "type": "double",
  529. "value": 20
  530. },
  531. "height": {
  532. "type": "double",
  533. "value": 50
  534. },
  535. "cornerRadius": {
  536. "type": "double",
  537. "value": 0
  538. },
  539. "style": {
  540. "type": "map<string,string>",
  541. "value": {
  542. "stroke": "#000000",
  543. "stroke-dasharray": "",
  544. "fill": "#000000",
  545. "fill-opacity": 0.75,
  546. "font-size": "20px",
  547. "stroke-width": 1,
  548. "arrow-start": "none",
  549. "arrow-end": "none",
  550. "": ""
  551. }
  552. },
  553. "mapper": {
  554. "type": "code",
  555. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  556. },
  557. "parser": {
  558. "type": "code",
  559. "value": ""
  560. },
  561. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  562. "position": {
  563. "type": "list<double>",
  564. "value": [
  565. 0,
  566. 1
  567. ]
  568. },
  569. "orientation": {
  570. "type": "double",
  571. "value": 0
  572. },
  573. "scale": {
  574. "type": "list<double>",
  575. "value": [
  576. 1,
  577. 1
  578. ]
  579. }
  580. }
  581. },
  582. "edges": []
  583. }
  584. },
  585. "$asuri": {
  586. "type": "string",
  587. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/4.instance"
  588. },
  589. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  590. },
  591. "5": {
  592. "typename": {
  593. "type": "string",
  594. "value": "RectangleIcon"
  595. },
  596. "position": {
  597. "type": "list<double>",
  598. "value": [
  599. 512,
  600. 126
  601. ]
  602. },
  603. "orientation": {
  604. "type": "double",
  605. "value": 0
  606. },
  607. "scale": {
  608. "type": "list<double>",
  609. "value": [
  610. 1,
  611. 1
  612. ]
  613. },
  614. "mapper": {
  615. "type": "code",
  616. "value": ""
  617. },
  618. "parser": {
  619. "type": "code",
  620. "value": ""
  621. },
  622. "$contents": {
  623. "type": "map<string,*>",
  624. "value": {
  625. "nodes": {
  626. "17": {
  627. "width": {
  628. "type": "double",
  629. "value": 20
  630. },
  631. "height": {
  632. "type": "double",
  633. "value": 50
  634. },
  635. "cornerRadius": {
  636. "type": "double",
  637. "value": 0
  638. },
  639. "style": {
  640. "type": "map<string,string>",
  641. "value": {
  642. "stroke": "#000000",
  643. "stroke-dasharray": "",
  644. "fill": "#000000",
  645. "fill-opacity": 0.75,
  646. "font-size": "20px",
  647. "stroke-width": 1,
  648. "arrow-start": "none",
  649. "arrow-end": "none",
  650. "": ""
  651. }
  652. },
  653. "mapper": {
  654. "type": "code",
  655. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  656. },
  657. "parser": {
  658. "type": "code",
  659. "value": ""
  660. },
  661. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  662. "position": {
  663. "type": "list<double>",
  664. "value": [
  665. 0,
  666. 1
  667. ]
  668. },
  669. "orientation": {
  670. "type": "double",
  671. "value": 0
  672. },
  673. "scale": {
  674. "type": "list<double>",
  675. "value": [
  676. 1,
  677. 1
  678. ]
  679. }
  680. }
  681. },
  682. "edges": []
  683. }
  684. },
  685. "$asuri": {
  686. "type": "string",
  687. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/5.instance"
  688. },
  689. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  690. },
  691. "6": {
  692. "link-style": {
  693. "type": "map<string,string>",
  694. "value": {
  695. "stroke": "#ff00ff",
  696. "stroke-dasharray": "",
  697. "stroke-opacity": 0.1,
  698. "stroke-width": 1
  699. }
  700. },
  701. "arrowHead": {
  702. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  703. "value": "custom"
  704. },
  705. "arrowTail": {
  706. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  707. "value": "arrow-black"
  708. },
  709. "typename": {
  710. "type": "string",
  711. "value": "IconContentsLink"
  712. },
  713. "position": {
  714. "type": "list<double>",
  715. "value": [
  716. 197,
  717. 117.5
  718. ]
  719. },
  720. "orientation": {
  721. "type": "double",
  722. "value": 0
  723. },
  724. "scale": {
  725. "type": "list<double>",
  726. "value": [
  727. 1,
  728. 1
  729. ]
  730. },
  731. "mapper": {
  732. "type": "code",
  733. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  734. },
  735. "parser": {
  736. "type": "code",
  737. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  738. },
  739. "$contents": {
  740. "type": "map<string,*>",
  741. "value": {
  742. "nodes": {},
  743. "edges": []
  744. }
  745. },
  746. "$asuri": {
  747. "type": "string",
  748. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/6.instance"
  749. },
  750. "$segments": {
  751. "type": "map<string,list<string>>",
  752. "value": {
  753. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/6.instance": "M50.00000000000002,100L196.99999999999994,117.5",
  754. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/6.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/1.instance": "M197.07419124080872,117.50883229057246L304.99909461325706,113.99989221586392"
  755. }
  756. },
  757. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  758. },
  759. "7": {
  760. "link-style": {
  761. "type": "map<string,string>",
  762. "value": {
  763. "stroke": "#ff00ff",
  764. "stroke-dasharray": "",
  765. "stroke-opacity": 0.1,
  766. "stroke-width": 1
  767. }
  768. },
  769. "arrowHead": {
  770. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  771. "value": "custom"
  772. },
  773. "arrowTail": {
  774. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  775. "value": "arrow-black"
  776. },
  777. "typename": {
  778. "type": "string",
  779. "value": "IconContentsLink"
  780. },
  781. "position": {
  782. "type": "list<double>",
  783. "value": [
  784. 90.09599991807994,
  785. 148.61639990067198
  786. ]
  787. },
  788. "orientation": {
  789. "type": "double",
  790. "value": 0
  791. },
  792. "scale": {
  793. "type": "list<double>",
  794. "value": [
  795. 1,
  796. 1
  797. ]
  798. },
  799. "mapper": {
  800. "type": "code",
  801. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  802. },
  803. "parser": {
  804. "type": "code",
  805. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  806. },
  807. "$contents": {
  808. "type": "map<string,*>",
  809. "value": {
  810. "nodes": {},
  811. "edges": []
  812. }
  813. },
  814. "$asuri": {
  815. "type": "string",
  816. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/7.instance"
  817. },
  818. "$segments": {
  819. "type": "map<string,list<string>>",
  820. "value": {
  821. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/7.instance": "M50.00000000000002,100L90.09599991807994,148.61639990067198",
  822. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/7.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/2.instance": "M90.09569271886397,148.6160274216225L90.99938625535998,175.999255834624"
  823. }
  824. },
  825. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  826. },
  827. "8": {
  828. "link-style": {
  829. "type": "map<string,string>",
  830. "value": {
  831. "stroke": "#ff00ff",
  832. "stroke-dasharray": "",
  833. "stroke-opacity": 0.1,
  834. "stroke-width": 1
  835. }
  836. },
  837. "arrowHead": {
  838. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  839. "value": "custom"
  840. },
  841. "arrowTail": {
  842. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  843. "value": "arrow-black"
  844. },
  845. "typename": {
  846. "type": "string",
  847. "value": "IconContentsLink"
  848. },
  849. "position": {
  850. "type": "list<double>",
  851. "value": [
  852. 277.5,
  853. 148.5
  854. ]
  855. },
  856. "orientation": {
  857. "type": "double",
  858. "value": 0
  859. },
  860. "scale": {
  861. "type": "list<double>",
  862. "value": [
  863. 1,
  864. 1
  865. ]
  866. },
  867. "mapper": {
  868. "type": "code",
  869. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  870. },
  871. "parser": {
  872. "type": "code",
  873. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  874. },
  875. "$contents": {
  876. "type": "map<string,*>",
  877. "value": {
  878. "nodes": {},
  879. "edges": []
  880. }
  881. },
  882. "$asuri": {
  883. "type": "string",
  884. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/8.instance"
  885. },
  886. "$segments": {
  887. "type": "map<string,list<string>>",
  888. "value": {
  889. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/8.instance": "M50.00000000000002,100L277.5,148.5",
  890. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/8.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/3.instance": "M277.57319770959543,148.51560478644126L465.9994320862004,175.99987892826695"
  891. }
  892. },
  893. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  894. },
  895. "9": {
  896. "link-style": {
  897. "type": "map<string,string>",
  898. "value": {
  899. "stroke": "#ff00ff",
  900. "stroke-dasharray": "",
  901. "stroke-opacity": 0.1,
  902. "stroke-width": 1
  903. }
  904. },
  905. "arrowHead": {
  906. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  907. "value": "custom"
  908. },
  909. "arrowTail": {
  910. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  911. "value": "arrow-black"
  912. },
  913. "typename": {
  914. "type": "string",
  915. "value": "IconContentsLink"
  916. },
  917. "position": {
  918. "type": "list<double>",
  919. "value": [
  920. 122.5,
  921. 136
  922. ]
  923. },
  924. "orientation": {
  925. "type": "double",
  926. "value": 0
  927. },
  928. "scale": {
  929. "type": "list<double>",
  930. "value": [
  931. 1,
  932. 1
  933. ]
  934. },
  935. "mapper": {
  936. "type": "code",
  937. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  938. },
  939. "parser": {
  940. "type": "code",
  941. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  942. },
  943. "$contents": {
  944. "type": "map<string,*>",
  945. "value": {
  946. "nodes": {},
  947. "edges": []
  948. }
  949. },
  950. "$asuri": {
  951. "type": "string",
  952. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/9.instance"
  953. },
  954. "$segments": {
  955. "type": "map<string,list<string>>",
  956. "value": {
  957. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/9.instance": "M50.00000000000002,100L122.5,136",
  958. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/9.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/4.instance": "M122.63475746352957,136.06691405085607L155.99932928551894,150.99966695556805"
  959. }
  960. },
  961. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  962. },
  963. "10": {
  964. "link-style": {
  965. "type": "map<string,string>",
  966. "value": {
  967. "stroke": "#ff00ff",
  968. "stroke-dasharray": "",
  969. "stroke-opacity": 0.1,
  970. "stroke-width": 1
  971. }
  972. },
  973. "arrowHead": {
  974. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  975. "value": "custom"
  976. },
  977. "arrowTail": {
  978. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  979. "value": "arrow-black"
  980. },
  981. "typename": {
  982. "type": "string",
  983. "value": "IconContentsLink"
  984. },
  985. "position": {
  986. "type": "list<double>",
  987. "value": [
  988. 305.6485465041892,
  989. 136.02093023151002
  990. ]
  991. },
  992. "orientation": {
  993. "type": "double",
  994. "value": 0
  995. },
  996. "scale": {
  997. "type": "list<double>",
  998. "value": [
  999. 1,
  1000. 1
  1001. ]
  1002. },
  1003. "mapper": {
  1004. "type": "code",
  1005. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1006. },
  1007. "parser": {
  1008. "type": "code",
  1009. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1010. },
  1011. "$contents": {
  1012. "type": "map<string,*>",
  1013. "value": {
  1014. "nodes": {},
  1015. "edges": []
  1016. }
  1017. },
  1018. "$asuri": {
  1019. "type": "string",
  1020. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/10.instance"
  1021. },
  1022. "$segments": {
  1023. "type": "map<string,list<string>>",
  1024. "value": {
  1025. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance": "M50.00000000000002,100L305.6485465041892,136.02093023151002",
  1026. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/5.instance": "M305.6482010472371,136.0208815565579L521.9990792574054,150.99987026718824"
  1027. }
  1028. },
  1029. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1030. },
  1031. "11": {
  1032. "typename": {
  1033. "type": "string",
  1034. "value": "IconIcon"
  1035. },
  1036. "position": {
  1037. "type": "list<double>",
  1038. "value": [
  1039. 861,
  1040. 176
  1041. ]
  1042. },
  1043. "orientation": {
  1044. "type": "double",
  1045. "value": 0
  1046. },
  1047. "scale": {
  1048. "type": "list<double>",
  1049. "value": [
  1050. 1,
  1051. 1
  1052. ]
  1053. },
  1054. "mapper": {
  1055. "type": "code",
  1056. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1057. },
  1058. "parser": {
  1059. "type": "code",
  1060. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1061. },
  1062. "$contents": {
  1063. "type": "map<string,*>",
  1064. "value": {
  1065. "nodes": {
  1066. "1": {
  1067. "width": {
  1068. "type": "double",
  1069. "value": "200"
  1070. },
  1071. "height": {
  1072. "type": "double",
  1073. "value": "150"
  1074. },
  1075. "cornerRadius": {
  1076. "type": "double",
  1077. "value": "10"
  1078. },
  1079. "style": {
  1080. "type": "map<string,string>",
  1081. "value": {
  1082. "stroke": "#000000",
  1083. "stroke-dasharray": "- ",
  1084. "fill": "#ffffff",
  1085. "fill-opacity": 0.75,
  1086. "stroke-width": 1
  1087. }
  1088. },
  1089. "mapper": {
  1090. "type": "code",
  1091. "value": ""
  1092. },
  1093. "parser": {
  1094. "type": "code",
  1095. "value": ""
  1096. },
  1097. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1098. "position": {
  1099. "type": "list<double>",
  1100. "value": [
  1101. 0,
  1102. 0
  1103. ]
  1104. },
  1105. "orientation": {
  1106. "type": "double",
  1107. "value": 0
  1108. },
  1109. "scale": {
  1110. "type": "list<double>",
  1111. "value": [
  1112. 1,
  1113. 1
  1114. ]
  1115. }
  1116. },
  1117. "2": {
  1118. "textContent": {
  1119. "type": "string",
  1120. "value": "ChairIcon"
  1121. },
  1122. "style": {
  1123. "type": "map<string,string>",
  1124. "value": {
  1125. "stroke": "#000000",
  1126. "stroke-dasharray": "",
  1127. "fill": "#000000",
  1128. "fill-opacity": "1",
  1129. "font-size": "13px"
  1130. }
  1131. },
  1132. "mapper": {
  1133. "type": "code",
  1134. "value": "({\"textContent\":getAttr(\"typename\")})"
  1135. },
  1136. "parser": {
  1137. "type": "code",
  1138. "value": "({\"typename\":getAttr(\"textContent\")})"
  1139. },
  1140. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1141. "position": {
  1142. "type": "list<double>",
  1143. "value": [
  1144. 58,
  1145. 151
  1146. ]
  1147. },
  1148. "orientation": {
  1149. "type": "double",
  1150. "value": 0
  1151. },
  1152. "scale": {
  1153. "type": "list<double>",
  1154. "value": [
  1155. 1,
  1156. 1
  1157. ]
  1158. }
  1159. },
  1160. "3": {
  1161. "distance": {
  1162. "type": "double",
  1163. "value": 0
  1164. },
  1165. "alignment": {
  1166. "type": "ENUM(\"right\",\"left\",\"center\")",
  1167. "value": "center"
  1168. },
  1169. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1170. "position": {
  1171. "type": "list<double>",
  1172. "value": [
  1173. 93.49899850809561,
  1174. 137.49900000000002
  1175. ]
  1176. },
  1177. "orientation": {
  1178. "type": "double",
  1179. "value": 0
  1180. },
  1181. "scale": {
  1182. "type": "list<double>",
  1183. "value": [
  1184. 1,
  1185. 1
  1186. ]
  1187. },
  1188. "link-style": {
  1189. "type": "map<string,string>",
  1190. "value": {
  1191. "stroke": "#00ff00",
  1192. "stroke-dasharray": "",
  1193. "stroke-opacity": 1,
  1194. "arrow-start": "none",
  1195. "arrow-end": "classic-wide-long"
  1196. }
  1197. }
  1198. }
  1199. },
  1200. "edges": [
  1201. {
  1202. "src": "2",
  1203. "dest": 3
  1204. },
  1205. {
  1206. "src": 3,
  1207. "dest": "1"
  1208. }
  1209. ]
  1210. }
  1211. },
  1212. "$asuri": {
  1213. "type": "string",
  1214. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/11.instance"
  1215. },
  1216. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  1217. },
  1218. "12": {
  1219. "typename": {
  1220. "type": "string",
  1221. "value": "RectangleIcon"
  1222. },
  1223. "position": {
  1224. "type": "list<double>",
  1225. "value": [
  1226. 877,
  1227. 235
  1228. ]
  1229. },
  1230. "orientation": {
  1231. "type": "double",
  1232. "value": 0
  1233. },
  1234. "scale": {
  1235. "type": "list<double>",
  1236. "value": [
  1237. 1,
  1238. 1
  1239. ]
  1240. },
  1241. "mapper": {
  1242. "type": "code",
  1243. "value": ""
  1244. },
  1245. "parser": {
  1246. "type": "code",
  1247. "value": ""
  1248. },
  1249. "$contents": {
  1250. "type": "map<string,*>",
  1251. "value": {
  1252. "nodes": {
  1253. "17": {
  1254. "width": {
  1255. "type": "double",
  1256. "value": 50
  1257. },
  1258. "height": {
  1259. "type": "double",
  1260. "value": 20
  1261. },
  1262. "cornerRadius": {
  1263. "type": "double",
  1264. "value": 0
  1265. },
  1266. "style": {
  1267. "type": "map<string,string>",
  1268. "value": {
  1269. "stroke": "#000000",
  1270. "stroke-dasharray": "",
  1271. "fill": "#000000",
  1272. "fill-opacity": 0.75,
  1273. "font-size": "20px",
  1274. "stroke-width": 1,
  1275. "arrow-start": "none",
  1276. "arrow-end": "none",
  1277. "": ""
  1278. }
  1279. },
  1280. "mapper": {
  1281. "type": "code",
  1282. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1283. },
  1284. "parser": {
  1285. "type": "code",
  1286. "value": ""
  1287. },
  1288. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1289. "position": {
  1290. "type": "list<double>",
  1291. "value": [
  1292. 0,
  1293. 1
  1294. ]
  1295. },
  1296. "orientation": {
  1297. "type": "double",
  1298. "value": 0
  1299. },
  1300. "scale": {
  1301. "type": "list<double>",
  1302. "value": [
  1303. 1,
  1304. 1
  1305. ]
  1306. }
  1307. }
  1308. },
  1309. "edges": []
  1310. }
  1311. },
  1312. "$asuri": {
  1313. "type": "string",
  1314. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/12.instance"
  1315. },
  1316. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1317. },
  1318. "13": {
  1319. "typename": {
  1320. "type": "string",
  1321. "value": "RectangleIcon"
  1322. },
  1323. "position": {
  1324. "type": "list<double>",
  1325. "value": [
  1326. 866,
  1327. 180
  1328. ]
  1329. },
  1330. "orientation": {
  1331. "type": "double",
  1332. "value": 0
  1333. },
  1334. "scale": {
  1335. "type": "list<double>",
  1336. "value": [
  1337. 1,
  1338. 1
  1339. ]
  1340. },
  1341. "mapper": {
  1342. "type": "code",
  1343. "value": ""
  1344. },
  1345. "parser": {
  1346. "type": "code",
  1347. "value": ""
  1348. },
  1349. "$contents": {
  1350. "type": "map<string,*>",
  1351. "value": {
  1352. "nodes": {
  1353. "17": {
  1354. "width": {
  1355. "type": "double",
  1356. "value": 10
  1357. },
  1358. "height": {
  1359. "type": "double",
  1360. "value": 100
  1361. },
  1362. "cornerRadius": {
  1363. "type": "double",
  1364. "value": 0
  1365. },
  1366. "style": {
  1367. "type": "map<string,string>",
  1368. "value": {
  1369. "stroke": "#000000",
  1370. "stroke-dasharray": "",
  1371. "fill": "#000000",
  1372. "fill-opacity": 0.75,
  1373. "font-size": "20px",
  1374. "stroke-width": 1,
  1375. "arrow-start": "none",
  1376. "arrow-end": "none",
  1377. "": ""
  1378. }
  1379. },
  1380. "mapper": {
  1381. "type": "code",
  1382. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1383. },
  1384. "parser": {
  1385. "type": "code",
  1386. "value": ""
  1387. },
  1388. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1389. "position": {
  1390. "type": "list<double>",
  1391. "value": [
  1392. 0,
  1393. 1
  1394. ]
  1395. },
  1396. "orientation": {
  1397. "type": "double",
  1398. "value": 0
  1399. },
  1400. "scale": {
  1401. "type": "list<double>",
  1402. "value": [
  1403. 1,
  1404. 1
  1405. ]
  1406. }
  1407. }
  1408. },
  1409. "edges": []
  1410. }
  1411. },
  1412. "$asuri": {
  1413. "type": "string",
  1414. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/13.instance"
  1415. },
  1416. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1417. },
  1418. "14": {
  1419. "typename": {
  1420. "type": "string",
  1421. "value": "RectangleIcon"
  1422. },
  1423. "position": {
  1424. "type": "list<double>",
  1425. "value": [
  1426. 917,
  1427. 254
  1428. ]
  1429. },
  1430. "orientation": {
  1431. "type": "double",
  1432. "value": 0
  1433. },
  1434. "scale": {
  1435. "type": "list<double>",
  1436. "value": [
  1437. 1,
  1438. 1
  1439. ]
  1440. },
  1441. "mapper": {
  1442. "type": "code",
  1443. "value": ""
  1444. },
  1445. "parser": {
  1446. "type": "code",
  1447. "value": ""
  1448. },
  1449. "$contents": {
  1450. "type": "map<string,*>",
  1451. "value": {
  1452. "nodes": {
  1453. "17": {
  1454. "width": {
  1455. "type": "double",
  1456. "value": 10
  1457. },
  1458. "height": {
  1459. "type": "double",
  1460. "value": 25
  1461. },
  1462. "cornerRadius": {
  1463. "type": "double",
  1464. "value": 0
  1465. },
  1466. "style": {
  1467. "type": "map<string,string>",
  1468. "value": {
  1469. "stroke": "#000000",
  1470. "stroke-dasharray": "",
  1471. "fill": "#000000",
  1472. "fill-opacity": 0.75,
  1473. "font-size": "20px",
  1474. "stroke-width": 1,
  1475. "arrow-start": "none",
  1476. "arrow-end": "none",
  1477. "": ""
  1478. }
  1479. },
  1480. "mapper": {
  1481. "type": "code",
  1482. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1483. },
  1484. "parser": {
  1485. "type": "code",
  1486. "value": ""
  1487. },
  1488. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1489. "position": {
  1490. "type": "list<double>",
  1491. "value": [
  1492. 0,
  1493. 1
  1494. ]
  1495. },
  1496. "orientation": {
  1497. "type": "double",
  1498. "value": 0
  1499. },
  1500. "scale": {
  1501. "type": "list<double>",
  1502. "value": [
  1503. 1,
  1504. 1
  1505. ]
  1506. }
  1507. }
  1508. },
  1509. "edges": []
  1510. }
  1511. },
  1512. "$asuri": {
  1513. "type": "string",
  1514. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/14.instance"
  1515. },
  1516. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1517. },
  1518. "15": {
  1519. "link-style": {
  1520. "type": "map<string,string>",
  1521. "value": {
  1522. "stroke": "#ff00ff",
  1523. "stroke-dasharray": "",
  1524. "stroke-opacity": 0.1,
  1525. "stroke-width": 1
  1526. }
  1527. },
  1528. "arrowHead": {
  1529. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1530. "value": "custom"
  1531. },
  1532. "arrowTail": {
  1533. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1534. "value": "arrow-black"
  1535. },
  1536. "typename": {
  1537. "type": "string",
  1538. "value": "IconContentsLink"
  1539. },
  1540. "position": {
  1541. "type": "list<double>",
  1542. "value": [
  1543. 881.5,
  1544. 210.5
  1545. ]
  1546. },
  1547. "orientation": {
  1548. "type": "double",
  1549. "value": 0
  1550. },
  1551. "scale": {
  1552. "type": "list<double>",
  1553. "value": [
  1554. 1,
  1555. 1
  1556. ]
  1557. },
  1558. "mapper": {
  1559. "type": "code",
  1560. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1561. },
  1562. "parser": {
  1563. "type": "code",
  1564. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1565. },
  1566. "$contents": {
  1567. "type": "map<string,*>",
  1568. "value": {
  1569. "nodes": {},
  1570. "edges": []
  1571. }
  1572. },
  1573. "$asuri": {
  1574. "type": "string",
  1575. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/15.instance"
  1576. },
  1577. "$segments": {
  1578. "type": "map<string,list<string>>",
  1579. "value": {
  1580. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/11.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/15.instance": "M861,176L881.5,210.5",
  1581. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/15.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/12.instance": "M881.5383413863802,210.56452574781062L901.9998079726563,244.99967683203127"
  1582. }
  1583. },
  1584. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1585. },
  1586. "16": {
  1587. "link-style": {
  1588. "type": "map<string,string>",
  1589. "value": {
  1590. "stroke": "#ff00ff",
  1591. "stroke-dasharray": "",
  1592. "stroke-opacity": 0.1,
  1593. "stroke-width": 1
  1594. }
  1595. },
  1596. "arrowHead": {
  1597. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1598. "value": "custom"
  1599. },
  1600. "arrowTail": {
  1601. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1602. "value": "arrow-black"
  1603. },
  1604. "typename": {
  1605. "type": "string",
  1606. "value": "IconContentsLink"
  1607. },
  1608. "position": {
  1609. "type": "list<double>",
  1610. "value": [
  1611. 866.0277776507647,
  1612. 203.14999931412896
  1613. ]
  1614. },
  1615. "orientation": {
  1616. "type": "double",
  1617. "value": 0
  1618. },
  1619. "scale": {
  1620. "type": "list<double>",
  1621. "value": [
  1622. 1,
  1623. 1
  1624. ]
  1625. },
  1626. "mapper": {
  1627. "type": "code",
  1628. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1629. },
  1630. "parser": {
  1631. "type": "code",
  1632. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1633. },
  1634. "$contents": {
  1635. "type": "map<string,*>",
  1636. "value": {
  1637. "nodes": {},
  1638. "edges": []
  1639. }
  1640. },
  1641. "$asuri": {
  1642. "type": "string",
  1643. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/16.instance"
  1644. },
  1645. "$segments": {
  1646. "type": "map<string,list<string>>",
  1647. "value": {
  1648. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/11.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/16.instance": "M861,176L866.0277776507647,203.14999931412896",
  1649. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/16.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/13.instance": "M866.013837432859,203.07472213743745L870.9998972463547,229.9994451303155"
  1650. }
  1651. },
  1652. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1653. },
  1654. "17": {
  1655. "link-style": {
  1656. "type": "map<string,string>",
  1657. "value": {
  1658. "stroke": "#ff00ff",
  1659. "stroke-dasharray": "",
  1660. "stroke-opacity": 0.1,
  1661. "stroke-width": 1
  1662. }
  1663. },
  1664. "arrowHead": {
  1665. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1666. "value": "custom"
  1667. },
  1668. "arrowTail": {
  1669. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1670. "value": "arrow-black"
  1671. },
  1672. "typename": {
  1673. "type": "string",
  1674. "value": "IconContentsLink"
  1675. },
  1676. "position": {
  1677. "type": "list<double>",
  1678. "value": [
  1679. 891.5,
  1680. 221.25
  1681. ]
  1682. },
  1683. "orientation": {
  1684. "type": "double",
  1685. "value": 0
  1686. },
  1687. "scale": {
  1688. "type": "list<double>",
  1689. "value": [
  1690. 1,
  1691. 1
  1692. ]
  1693. },
  1694. "mapper": {
  1695. "type": "code",
  1696. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1697. },
  1698. "parser": {
  1699. "type": "code",
  1700. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1701. },
  1702. "$contents": {
  1703. "type": "map<string,*>",
  1704. "value": {
  1705. "nodes": {},
  1706. "edges": []
  1707. }
  1708. },
  1709. "$asuri": {
  1710. "type": "string",
  1711. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/17.instance"
  1712. },
  1713. "$segments": {
  1714. "type": "map<string,list<string>>",
  1715. "value": {
  1716. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/11.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/17.instance": "M861,176L891.5,221.25",
  1717. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/17.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/14.instance": "M891.5418954516336,221.31215636676808L921.9998460667676,266.49977162364706"
  1718. }
  1719. },
  1720. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1721. },
  1722. "18": {
  1723. "typename": {
  1724. "type": "string",
  1725. "value": "LinkIcon"
  1726. },
  1727. "position": {
  1728. "type": "list<double>",
  1729. "value": [
  1730. 565,
  1731. 386
  1732. ]
  1733. },
  1734. "orientation": {
  1735. "type": "double",
  1736. "value": 0
  1737. },
  1738. "scale": {
  1739. "type": "list<double>",
  1740. "value": [
  1741. 1,
  1742. 1
  1743. ]
  1744. },
  1745. "mapper": {
  1746. "type": "code",
  1747. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1748. },
  1749. "parser": {
  1750. "type": "code",
  1751. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1752. },
  1753. "$contents": {
  1754. "type": "map<string,*>",
  1755. "value": {
  1756. "nodes": {
  1757. "92": {
  1758. "textContent": {
  1759. "type": "string",
  1760. "value": "aroundLink"
  1761. },
  1762. "style": {
  1763. "type": "map<string,string>",
  1764. "value": {
  1765. "stroke": "#000000",
  1766. "stroke-dasharray": "",
  1767. "fill": "#000000",
  1768. "fill-opacity": "1",
  1769. "font-size": "13px"
  1770. }
  1771. },
  1772. "mapper": {
  1773. "type": "code",
  1774. "value": "({\"textContent\":getAttr(\"typename\")})"
  1775. },
  1776. "parser": {
  1777. "type": "code",
  1778. "value": "({\"typename\":getAttr(\"textContent\")})"
  1779. },
  1780. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1781. "position": {
  1782. "type": "list<double>",
  1783. "value": [
  1784. 56,
  1785. 156
  1786. ]
  1787. },
  1788. "orientation": {
  1789. "type": "double",
  1790. "value": 0
  1791. },
  1792. "scale": {
  1793. "type": "list<double>",
  1794. "value": [
  1795. 1,
  1796. 1
  1797. ]
  1798. }
  1799. },
  1800. "100": {
  1801. "width": {
  1802. "type": "double",
  1803. "value": 250
  1804. },
  1805. "height": {
  1806. "type": "double",
  1807. "value": "150"
  1808. },
  1809. "cornerRadius": {
  1810. "type": "double",
  1811. "value": "10"
  1812. },
  1813. "style": {
  1814. "type": "map<string,string>",
  1815. "value": {
  1816. "stroke": "#000000",
  1817. "stroke-dasharray": ". ",
  1818. "fill": "#ffffff",
  1819. "fill-opacity": 0.75,
  1820. "stroke-width": 1
  1821. }
  1822. },
  1823. "mapper": {
  1824. "type": "code",
  1825. "value": ""
  1826. },
  1827. "parser": {
  1828. "type": "code",
  1829. "value": ""
  1830. },
  1831. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1832. "position": {
  1833. "type": "list<double>",
  1834. "value": [
  1835. 3,
  1836. 2
  1837. ]
  1838. },
  1839. "orientation": {
  1840. "type": "double",
  1841. "value": 0
  1842. },
  1843. "scale": {
  1844. "type": "list<double>",
  1845. "value": [
  1846. 1.0327000000000006,
  1847. 1
  1848. ]
  1849. }
  1850. },
  1851. "122": {
  1852. "distance": {
  1853. "type": "double",
  1854. "value": 0
  1855. },
  1856. "alignment": {
  1857. "type": "ENUM('right','left','center')",
  1858. "value": "center"
  1859. },
  1860. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1861. "position": {
  1862. "type": "list<double>",
  1863. "value": [
  1864. 82,
  1865. 151.5
  1866. ]
  1867. },
  1868. "orientation": {
  1869. "type": "double",
  1870. "value": 0
  1871. },
  1872. "scale": {
  1873. "type": "list<double>",
  1874. "value": [
  1875. 1,
  1876. 1
  1877. ]
  1878. },
  1879. "link-style": {
  1880. "type": "map<string,string>",
  1881. "value": {
  1882. "stroke": "#00ff00",
  1883. "stroke-dasharray": "",
  1884. "stroke-opacity": 1,
  1885. "stroke-width": 1
  1886. }
  1887. }
  1888. },
  1889. "162": {
  1890. "segments": {
  1891. "type": "string",
  1892. "value": "m0,0l198,0"
  1893. },
  1894. "style": {
  1895. "type": "map<string,string>",
  1896. "value": {
  1897. "stroke": "#000000",
  1898. "stroke-dasharray": "",
  1899. "stroke-opacity": 1,
  1900. "stroke-width": 2
  1901. }
  1902. },
  1903. "mapper": {
  1904. "type": "code",
  1905. "value": "({'style':getAttr('link-style')})"
  1906. },
  1907. "parser": {
  1908. "type": "code",
  1909. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1910. },
  1911. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1912. "position": {
  1913. "type": "list<double>",
  1914. "value": [
  1915. 34,
  1916. 77
  1917. ]
  1918. },
  1919. "orientation": {
  1920. "type": "double",
  1921. "value": 0
  1922. },
  1923. "scale": {
  1924. "type": "list<double>",
  1925. "value": [
  1926. 1,
  1927. 1
  1928. ]
  1929. }
  1930. },
  1931. "195": {
  1932. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1933. "position": {
  1934. "type": "list<double>",
  1935. "value": [
  1936. 68.12999992296295,
  1937. 39.57499995555554
  1938. ]
  1939. },
  1940. "orientation": {
  1941. "type": "double",
  1942. "value": 0
  1943. },
  1944. "scale": {
  1945. "type": "list<double>",
  1946. "value": [
  1947. 1,
  1948. 1
  1949. ]
  1950. },
  1951. "link-style": {
  1952. "type": "map<string,string>",
  1953. "value": {
  1954. "stroke": "#00ffff",
  1955. "stroke-dasharray": "",
  1956. "stroke-opacity": 0.1,
  1957. "stroke-width": 1
  1958. }
  1959. }
  1960. },
  1961. "267": {
  1962. "segments": {
  1963. "type": "string",
  1964. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1965. },
  1966. "style": {
  1967. "type": "map<string,string>",
  1968. "value": {
  1969. "stroke": "#000000",
  1970. "fill": "#000000",
  1971. "opacity": 1,
  1972. "stroke-width": 1
  1973. }
  1974. },
  1975. "mapper": {
  1976. "type": "code",
  1977. "value": "'arrow-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  1978. },
  1979. "parser": {
  1980. "type": "code",
  1981. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1982. },
  1983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1984. "position": {
  1985. "type": "list<double>",
  1986. "value": [
  1987. 222,
  1988. 73
  1989. ]
  1990. },
  1991. "orientation": {
  1992. "type": "double",
  1993. "value": 0
  1994. },
  1995. "scale": {
  1996. "type": "list<double>",
  1997. "value": [
  1998. 1,
  1999. 1
  2000. ]
  2001. }
  2002. },
  2003. "268": {
  2004. "segments": {
  2005. "type": "string",
  2006. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2007. },
  2008. "style": {
  2009. "type": "map<string,string>",
  2010. "value": {
  2011. "stroke": "#000000",
  2012. "fill": "#000000",
  2013. "opacity": 0,
  2014. "stroke-width": 1
  2015. }
  2016. },
  2017. "mapper": {
  2018. "type": "code",
  2019. "value": "'diamond-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2020. },
  2021. "parser": {
  2022. "type": "code",
  2023. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2024. },
  2025. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2026. "position": {
  2027. "type": "list<double>",
  2028. "value": [
  2029. 222,
  2030. 67
  2031. ]
  2032. },
  2033. "orientation": {
  2034. "type": "double",
  2035. "value": 0
  2036. },
  2037. "scale": {
  2038. "type": "list<double>",
  2039. "value": [
  2040. 1,
  2041. 1
  2042. ]
  2043. }
  2044. },
  2045. "269": {
  2046. "r": {
  2047. "type": "double",
  2048. "value": 10
  2049. },
  2050. "style": {
  2051. "type": "map<string,string>",
  2052. "value": {
  2053. "stroke": "#000000",
  2054. "fill": "#000000",
  2055. "opacity": 0,
  2056. "stroke-width": 1
  2057. }
  2058. },
  2059. "mapper": {
  2060. "type": "code",
  2061. "value": "'circle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2062. },
  2063. "parser": {
  2064. "type": "code",
  2065. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2066. },
  2067. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2068. "position": {
  2069. "type": "list<double>",
  2070. "value": [
  2071. 212,
  2072. 67
  2073. ]
  2074. },
  2075. "orientation": {
  2076. "type": "double",
  2077. "value": 0
  2078. },
  2079. "scale": {
  2080. "type": "list<double>",
  2081. "value": [
  2082. 1,
  2083. 1
  2084. ]
  2085. }
  2086. },
  2087. "270": {
  2088. "r": {
  2089. "type": "double",
  2090. "value": 10
  2091. },
  2092. "style": {
  2093. "type": "map<string,string>",
  2094. "value": {
  2095. "stroke": "#000000",
  2096. "fill": "#ffffff",
  2097. "opacity": 0,
  2098. "stroke-width": 1
  2099. }
  2100. },
  2101. "mapper": {
  2102. "type": "code",
  2103. "value": "'circle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2104. },
  2105. "parser": {
  2106. "type": "code",
  2107. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2108. },
  2109. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2110. "position": {
  2111. "type": "list<double>",
  2112. "value": [
  2113. 212,
  2114. 67
  2115. ]
  2116. },
  2117. "orientation": {
  2118. "type": "double",
  2119. "value": 0
  2120. },
  2121. "scale": {
  2122. "type": "list<double>",
  2123. "value": [
  2124. 1,
  2125. 1
  2126. ]
  2127. }
  2128. },
  2129. "271": {
  2130. "r": {
  2131. "type": "double",
  2132. "value": 5
  2133. },
  2134. "style": {
  2135. "type": "map<string,string>",
  2136. "value": {
  2137. "stroke": "#000000",
  2138. "fill": "#000000",
  2139. "opacity": 0,
  2140. "stroke-width": 1
  2141. }
  2142. },
  2143. "mapper": {
  2144. "type": "code",
  2145. "value": "'circle-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2146. },
  2147. "parser": {
  2148. "type": "code",
  2149. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2150. },
  2151. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2152. "position": {
  2153. "type": "list<double>",
  2154. "value": [
  2155. 222,
  2156. 72
  2157. ]
  2158. },
  2159. "orientation": {
  2160. "type": "double",
  2161. "value": 0
  2162. },
  2163. "scale": {
  2164. "type": "list<double>",
  2165. "value": [
  2166. 1,
  2167. 1
  2168. ]
  2169. }
  2170. },
  2171. "272": {
  2172. "segments": {
  2173. "type": "string",
  2174. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2175. },
  2176. "style": {
  2177. "type": "map<string,string>",
  2178. "value": {
  2179. "stroke": "#000000",
  2180. "fill": "#000000",
  2181. "opacity": 0,
  2182. "stroke-width": 1
  2183. }
  2184. },
  2185. "mapper": {
  2186. "type": "code",
  2187. "value": "'diamond-black:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2188. },
  2189. "parser": {
  2190. "type": "code",
  2191. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2192. },
  2193. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2194. "position": {
  2195. "type": "list<double>",
  2196. "value": [
  2197. 227,
  2198. 72
  2199. ]
  2200. },
  2201. "orientation": {
  2202. "type": "double",
  2203. "value": 0
  2204. },
  2205. "scale": {
  2206. "type": "list<double>",
  2207. "value": [
  2208. 1,
  2209. 1
  2210. ]
  2211. }
  2212. },
  2213. "273": {
  2214. "segments": {
  2215. "type": "string",
  2216. "value": "m0,0 l20,10 l-20,10 z"
  2217. },
  2218. "style": {
  2219. "type": "map<string,string>",
  2220. "value": {
  2221. "stroke": "#000000",
  2222. "fill": "#000000",
  2223. "opacity": 0,
  2224. "stroke-width": 1
  2225. }
  2226. },
  2227. "mapper": {
  2228. "type": "code",
  2229. "value": "'triangle-black-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2230. },
  2231. "parser": {
  2232. "type": "code",
  2233. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2234. },
  2235. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2236. "position": {
  2237. "type": "list<double>",
  2238. "value": [
  2239. 212,
  2240. 67
  2241. ]
  2242. },
  2243. "orientation": {
  2244. "type": "double",
  2245. "value": 0
  2246. },
  2247. "scale": {
  2248. "type": "list<double>",
  2249. "value": [
  2250. 1,
  2251. 1
  2252. ]
  2253. }
  2254. },
  2255. "274": {
  2256. "segments": {
  2257. "type": "string",
  2258. "value": "m0,0 l10,4 l-10,4 z"
  2259. },
  2260. "style": {
  2261. "type": "map<string,string>",
  2262. "value": {
  2263. "stroke": "#000000",
  2264. "fill": "#000000",
  2265. "opacity": 0,
  2266. "stroke-width": 1
  2267. }
  2268. },
  2269. "mapper": {
  2270. "type": "code",
  2271. "value": "'triangle-black:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2272. },
  2273. "parser": {
  2274. "type": "code",
  2275. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2276. },
  2277. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2278. "position": {
  2279. "type": "list<double>",
  2280. "value": [
  2281. 222,
  2282. 73
  2283. ]
  2284. },
  2285. "orientation": {
  2286. "type": "double",
  2287. "value": 0
  2288. },
  2289. "scale": {
  2290. "type": "list<double>",
  2291. "value": [
  2292. 1,
  2293. 1
  2294. ]
  2295. }
  2296. },
  2297. "275": {
  2298. "segments": {
  2299. "type": "string",
  2300. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  2301. },
  2302. "style": {
  2303. "type": "map<string,string>",
  2304. "value": {
  2305. "stroke": "#000000",
  2306. "fill": "#000000",
  2307. "opacity": 0,
  2308. "stroke-width": 1
  2309. }
  2310. },
  2311. "mapper": {
  2312. "type": "code",
  2313. "value": "'arrow-black-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowTail') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2314. },
  2315. "parser": {
  2316. "type": "code",
  2317. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2318. },
  2319. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2320. "position": {
  2321. "type": "list<double>",
  2322. "value": [
  2323. 212,
  2324. 69
  2325. ]
  2326. },
  2327. "orientation": {
  2328. "type": "double",
  2329. "value": 0
  2330. },
  2331. "scale": {
  2332. "type": "list<double>",
  2333. "value": [
  2334. 1,
  2335. 1
  2336. ]
  2337. }
  2338. },
  2339. "276": {
  2340. "segments": {
  2341. "type": "string",
  2342. "value": "m0,0 l20,10 l-20,10 z"
  2343. },
  2344. "style": {
  2345. "type": "map<string,string>",
  2346. "value": {
  2347. "stroke": "#000000",
  2348. "fill": "#ffffff",
  2349. "opacity": 0,
  2350. "stroke-width": 1
  2351. }
  2352. },
  2353. "mapper": {
  2354. "type": "code",
  2355. "value": "'triangle-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2356. },
  2357. "parser": {
  2358. "type": "code",
  2359. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2360. },
  2361. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2362. "position": {
  2363. "type": "list<double>",
  2364. "value": [
  2365. 212,
  2366. 67
  2367. ]
  2368. },
  2369. "orientation": {
  2370. "type": "double",
  2371. "value": 0
  2372. },
  2373. "scale": {
  2374. "type": "list<double>",
  2375. "value": [
  2376. 1,
  2377. 1
  2378. ]
  2379. }
  2380. },
  2381. "277": {
  2382. "segments": {
  2383. "type": "string",
  2384. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2385. },
  2386. "style": {
  2387. "type": "map<string,string>",
  2388. "value": {
  2389. "stroke": "#000000",
  2390. "fill": "#ffffff",
  2391. "opacity": 0,
  2392. "stroke-width": 1
  2393. }
  2394. },
  2395. "mapper": {
  2396. "type": "code",
  2397. "value": "'diamond-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2398. },
  2399. "parser": {
  2400. "type": "code",
  2401. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2402. },
  2403. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2404. "position": {
  2405. "type": "list<double>",
  2406. "value": [
  2407. 227,
  2408. 72
  2409. ]
  2410. },
  2411. "orientation": {
  2412. "type": "double",
  2413. "value": 0
  2414. },
  2415. "scale": {
  2416. "type": "list<double>",
  2417. "value": [
  2418. 1,
  2419. 1
  2420. ]
  2421. }
  2422. },
  2423. "278": {
  2424. "segments": {
  2425. "type": "string",
  2426. "value": "m0,0 l20,8 l-20,8"
  2427. },
  2428. "style": {
  2429. "type": "map<string,string>",
  2430. "value": {
  2431. "stroke": "#000000",
  2432. "fill": "#000000",
  2433. "fill-opacity": 0,
  2434. "stroke-width": 1,
  2435. "opacity": 0
  2436. }
  2437. },
  2438. "mapper": {
  2439. "type": "code",
  2440. "value": "'arrow-empty-large:arrowTail:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2441. },
  2442. "parser": {
  2443. "type": "code",
  2444. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2445. },
  2446. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2447. "position": {
  2448. "type": "list<double>",
  2449. "value": [
  2450. 212,
  2451. 69
  2452. ]
  2453. },
  2454. "orientation": {
  2455. "type": "double",
  2456. "value": 0
  2457. },
  2458. "scale": {
  2459. "type": "list<double>",
  2460. "value": [
  2461. 1,
  2462. 1
  2463. ]
  2464. }
  2465. },
  2466. "279": {
  2467. "r": {
  2468. "type": "double",
  2469. "value": 5
  2470. },
  2471. "style": {
  2472. "type": "map<string,string>",
  2473. "value": {
  2474. "stroke": "#000000",
  2475. "fill": "#ffffff",
  2476. "opacity": 0,
  2477. "stroke-width": 1
  2478. }
  2479. },
  2480. "mapper": {
  2481. "type": "code",
  2482. "value": "'circle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2483. },
  2484. "parser": {
  2485. "type": "code",
  2486. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2487. },
  2488. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2489. "position": {
  2490. "type": "list<double>",
  2491. "value": [
  2492. 222,
  2493. 72
  2494. ]
  2495. },
  2496. "orientation": {
  2497. "type": "double",
  2498. "value": 0
  2499. },
  2500. "scale": {
  2501. "type": "list<double>",
  2502. "value": [
  2503. 1,
  2504. 1
  2505. ]
  2506. }
  2507. },
  2508. "280": {
  2509. "segments": {
  2510. "type": "string",
  2511. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2512. },
  2513. "style": {
  2514. "type": "map<string,string>",
  2515. "value": {
  2516. "stroke": "#000000",
  2517. "fill": "#ffffff",
  2518. "opacity": 0,
  2519. "stroke-width": 1
  2520. }
  2521. },
  2522. "mapper": {
  2523. "type": "code",
  2524. "value": "'diamond-white-large:arrowTail:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2525. },
  2526. "parser": {
  2527. "type": "code",
  2528. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2529. },
  2530. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2531. "position": {
  2532. "type": "list<double>",
  2533. "value": [
  2534. 222,
  2535. 67
  2536. ]
  2537. },
  2538. "orientation": {
  2539. "type": "double",
  2540. "value": 0
  2541. },
  2542. "scale": {
  2543. "type": "list<double>",
  2544. "value": [
  2545. 1,
  2546. 1
  2547. ]
  2548. }
  2549. },
  2550. "281": {
  2551. "segments": {
  2552. "type": "string",
  2553. "value": "m0,0 l10,4 l-10,4"
  2554. },
  2555. "style": {
  2556. "type": "map<string,string>",
  2557. "value": {
  2558. "stroke": "#000000",
  2559. "fill": "#000000",
  2560. "fill-opacity": 0,
  2561. "stroke-width": 1,
  2562. "opacity": 0
  2563. }
  2564. },
  2565. "mapper": {
  2566. "type": "code",
  2567. "value": "'arrow-empty:arrowTail:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowTail') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2568. },
  2569. "parser": {
  2570. "type": "code",
  2571. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2572. },
  2573. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2574. "position": {
  2575. "type": "list<double>",
  2576. "value": [
  2577. 222,
  2578. 73
  2579. ]
  2580. },
  2581. "orientation": {
  2582. "type": "double",
  2583. "value": 0
  2584. },
  2585. "scale": {
  2586. "type": "list<double>",
  2587. "value": [
  2588. 1,
  2589. 1
  2590. ]
  2591. }
  2592. },
  2593. "282": {
  2594. "segments": {
  2595. "type": "string",
  2596. "value": "m0,0 l10,5 l-10,5 z"
  2597. },
  2598. "style": {
  2599. "type": "map<string,string>",
  2600. "value": {
  2601. "stroke": "#000000",
  2602. "fill": "#ffffff",
  2603. "opacity": 0,
  2604. "stroke-width": 1
  2605. }
  2606. },
  2607. "mapper": {
  2608. "type": "code",
  2609. "value": "'triangle-white:arrowTail:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowTail') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2610. },
  2611. "parser": {
  2612. "type": "code",
  2613. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2614. },
  2615. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2616. "position": {
  2617. "type": "list<double>",
  2618. "value": [
  2619. 222,
  2620. 72
  2621. ]
  2622. },
  2623. "orientation": {
  2624. "type": "double",
  2625. "value": 0
  2626. },
  2627. "scale": {
  2628. "type": "list<double>",
  2629. "value": [
  2630. 1,
  2631. 1
  2632. ]
  2633. }
  2634. },
  2635. "283": {
  2636. "segments": {
  2637. "type": "string",
  2638. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2639. },
  2640. "style": {
  2641. "type": "map<string,string>",
  2642. "value": {
  2643. "stroke": "#000000",
  2644. "fill": "#ffffff",
  2645. "opacity": 0,
  2646. "stroke-width": 1
  2647. }
  2648. },
  2649. "mapper": {
  2650. "type": "code",
  2651. "value": "'diamond-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2652. },
  2653. "parser": {
  2654. "type": "code",
  2655. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2656. },
  2657. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2658. "position": {
  2659. "type": "list<double>",
  2660. "value": [
  2661. 39,
  2662. 72
  2663. ]
  2664. },
  2665. "orientation": {
  2666. "type": "double",
  2667. "value": 0
  2668. },
  2669. "scale": {
  2670. "type": "list<double>",
  2671. "value": [
  2672. 1,
  2673. 1
  2674. ]
  2675. }
  2676. },
  2677. "284": {
  2678. "segments": {
  2679. "type": "string",
  2680. "value": "m0,0 l-10,5 l10,5 z"
  2681. },
  2682. "style": {
  2683. "type": "map<string,string>",
  2684. "value": {
  2685. "stroke": "#000000",
  2686. "fill": "#ffffff",
  2687. "opacity": 0,
  2688. "stroke-width": 1
  2689. }
  2690. },
  2691. "mapper": {
  2692. "type": "code",
  2693. "value": "'triangle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2694. },
  2695. "parser": {
  2696. "type": "code",
  2697. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2698. },
  2699. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2700. "position": {
  2701. "type": "list<double>",
  2702. "value": [
  2703. 43,
  2704. 72
  2705. ]
  2706. },
  2707. "orientation": {
  2708. "type": "double",
  2709. "value": 0
  2710. },
  2711. "scale": {
  2712. "type": "list<double>",
  2713. "value": [
  2714. 1,
  2715. 1
  2716. ]
  2717. }
  2718. },
  2719. "285": {
  2720. "segments": {
  2721. "type": "string",
  2722. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2723. },
  2724. "style": {
  2725. "type": "map<string,string>",
  2726. "value": {
  2727. "stroke": "#000000",
  2728. "fill": "#000000",
  2729. "opacity": 0,
  2730. "stroke-width": 1
  2731. }
  2732. },
  2733. "mapper": {
  2734. "type": "code",
  2735. "value": "'diamond-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2736. },
  2737. "parser": {
  2738. "type": "code",
  2739. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2740. },
  2741. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2742. "position": {
  2743. "type": "list<double>",
  2744. "value": [
  2745. 39,
  2746. 72
  2747. ]
  2748. },
  2749. "orientation": {
  2750. "type": "double",
  2751. "value": 0
  2752. },
  2753. "scale": {
  2754. "type": "list<double>",
  2755. "value": [
  2756. 1,
  2757. 1
  2758. ]
  2759. }
  2760. },
  2761. "286": {
  2762. "r": {
  2763. "type": "double",
  2764. "value": 10
  2765. },
  2766. "style": {
  2767. "type": "map<string,string>",
  2768. "value": {
  2769. "stroke": "#000000",
  2770. "fill": "#000000",
  2771. "opacity": 0,
  2772. "stroke-width": 1
  2773. }
  2774. },
  2775. "mapper": {
  2776. "type": "code",
  2777. "value": "'circle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2778. },
  2779. "parser": {
  2780. "type": "code",
  2781. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2782. },
  2783. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2784. "position": {
  2785. "type": "list<double>",
  2786. "value": [
  2787. 34,
  2788. 67
  2789. ]
  2790. },
  2791. "orientation": {
  2792. "type": "double",
  2793. "value": 0
  2794. },
  2795. "scale": {
  2796. "type": "list<double>",
  2797. "value": [
  2798. 1,
  2799. 1
  2800. ]
  2801. }
  2802. },
  2803. "287": {
  2804. "segments": {
  2805. "type": "string",
  2806. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  2807. },
  2808. "style": {
  2809. "type": "map<string,string>",
  2810. "value": {
  2811. "stroke": "#000000",
  2812. "fill": "#000000",
  2813. "opacity": 0,
  2814. "stroke-width": 1
  2815. }
  2816. },
  2817. "mapper": {
  2818. "type": "code",
  2819. "value": "'arrow-black-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2820. },
  2821. "parser": {
  2822. "type": "code",
  2823. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2824. },
  2825. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2826. "position": {
  2827. "type": "list<double>",
  2828. "value": [
  2829. 54,
  2830. 69
  2831. ]
  2832. },
  2833. "orientation": {
  2834. "type": "double",
  2835. "value": 0
  2836. },
  2837. "scale": {
  2838. "type": "list<double>",
  2839. "value": [
  2840. 1,
  2841. 1
  2842. ]
  2843. }
  2844. },
  2845. "288": {
  2846. "segments": {
  2847. "type": "string",
  2848. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  2849. },
  2850. "style": {
  2851. "type": "map<string,string>",
  2852. "value": {
  2853. "stroke": "#000000",
  2854. "fill": "#000000",
  2855. "opacity": 0,
  2856. "stroke-width": 1
  2857. }
  2858. },
  2859. "mapper": {
  2860. "type": "code",
  2861. "value": "'arrow-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'arrow-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2862. },
  2863. "parser": {
  2864. "type": "code",
  2865. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2866. },
  2867. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2868. "position": {
  2869. "type": "list<double>",
  2870. "value": [
  2871. 43,
  2872. 73
  2873. ]
  2874. },
  2875. "orientation": {
  2876. "type": "double",
  2877. "value": 0
  2878. },
  2879. "scale": {
  2880. "type": "list<double>",
  2881. "value": [
  2882. 1,
  2883. 1
  2884. ]
  2885. }
  2886. },
  2887. "289": {
  2888. "segments": {
  2889. "type": "string",
  2890. "value": "m0,0 l-20,10 l20,10 z"
  2891. },
  2892. "style": {
  2893. "type": "map<string,string>",
  2894. "value": {
  2895. "stroke": "#000000",
  2896. "fill": "#ffffff",
  2897. "opacity": 0,
  2898. "stroke-width": 1
  2899. }
  2900. },
  2901. "mapper": {
  2902. "type": "code",
  2903. "value": "'triangle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2904. },
  2905. "parser": {
  2906. "type": "code",
  2907. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2908. },
  2909. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2910. "position": {
  2911. "type": "list<double>",
  2912. "value": [
  2913. 54,
  2914. 67
  2915. ]
  2916. },
  2917. "orientation": {
  2918. "type": "double",
  2919. "value": 0
  2920. },
  2921. "scale": {
  2922. "type": "list<double>",
  2923. "value": [
  2924. 1,
  2925. 1
  2926. ]
  2927. }
  2928. },
  2929. "290": {
  2930. "segments": {
  2931. "type": "string",
  2932. "value": "m0,0 l-20,10 l20,10 z"
  2933. },
  2934. "style": {
  2935. "type": "map<string,string>",
  2936. "value": {
  2937. "stroke": "#000000",
  2938. "fill": "#000000",
  2939. "opacity": 0,
  2940. "stroke-width": 1
  2941. }
  2942. },
  2943. "mapper": {
  2944. "type": "code",
  2945. "value": "'triangle-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2946. },
  2947. "parser": {
  2948. "type": "code",
  2949. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2950. },
  2951. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2952. "position": {
  2953. "type": "list<double>",
  2954. "value": [
  2955. 54,
  2956. 67
  2957. ]
  2958. },
  2959. "orientation": {
  2960. "type": "double",
  2961. "value": 0
  2962. },
  2963. "scale": {
  2964. "type": "list<double>",
  2965. "value": [
  2966. 1,
  2967. 1
  2968. ]
  2969. }
  2970. },
  2971. "291": {
  2972. "r": {
  2973. "type": "double",
  2974. "value": 5
  2975. },
  2976. "style": {
  2977. "type": "map<string,string>",
  2978. "value": {
  2979. "stroke": "#000000",
  2980. "fill": "#000000",
  2981. "opacity": 0,
  2982. "stroke-width": 1
  2983. }
  2984. },
  2985. "mapper": {
  2986. "type": "code",
  2987. "value": "'circle-black:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'circle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  2988. },
  2989. "parser": {
  2990. "type": "code",
  2991. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2992. },
  2993. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2994. "position": {
  2995. "type": "list<double>",
  2996. "value": [
  2997. 34,
  2998. 72
  2999. ]
  3000. },
  3001. "orientation": {
  3002. "type": "double",
  3003. "value": 0
  3004. },
  3005. "scale": {
  3006. "type": "list<double>",
  3007. "value": [
  3008. 1,
  3009. 1
  3010. ]
  3011. }
  3012. },
  3013. "292": {
  3014. "r": {
  3015. "type": "double",
  3016. "value": 5
  3017. },
  3018. "style": {
  3019. "type": "map<string,string>",
  3020. "value": {
  3021. "stroke": "#000000",
  3022. "fill": "#ffffff",
  3023. "opacity": 0,
  3024. "stroke-width": 1
  3025. }
  3026. },
  3027. "mapper": {
  3028. "type": "code",
  3029. "value": "'circle-white:arrowHead:10';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3030. },
  3031. "parser": {
  3032. "type": "code",
  3033. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3034. },
  3035. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3036. "position": {
  3037. "type": "list<double>",
  3038. "value": [
  3039. 34,
  3040. 72
  3041. ]
  3042. },
  3043. "orientation": {
  3044. "type": "double",
  3045. "value": 0
  3046. },
  3047. "scale": {
  3048. "type": "list<double>",
  3049. "value": [
  3050. 1,
  3051. 1
  3052. ]
  3053. }
  3054. },
  3055. "293": {
  3056. "r": {
  3057. "type": "double",
  3058. "value": 10
  3059. },
  3060. "style": {
  3061. "type": "map<string,string>",
  3062. "value": {
  3063. "stroke": "#000000",
  3064. "fill": "#ffffff",
  3065. "opacity": 0,
  3066. "stroke-width": 1
  3067. }
  3068. },
  3069. "mapper": {
  3070. "type": "code",
  3071. "value": "'circle-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'circle-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3072. },
  3073. "parser": {
  3074. "type": "code",
  3075. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3076. },
  3077. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3078. "position": {
  3079. "type": "list<double>",
  3080. "value": [
  3081. 34,
  3082. 67
  3083. ]
  3084. },
  3085. "orientation": {
  3086. "type": "double",
  3087. "value": 0
  3088. },
  3089. "scale": {
  3090. "type": "list<double>",
  3091. "value": [
  3092. 1,
  3093. 1
  3094. ]
  3095. }
  3096. },
  3097. "294": {
  3098. "segments": {
  3099. "type": "string",
  3100. "value": "m0,0 l-20,8 l20,8"
  3101. },
  3102. "style": {
  3103. "type": "map<string,string>",
  3104. "value": {
  3105. "stroke": "#000000",
  3106. "fill": "#000000",
  3107. "fill-opacity": 0,
  3108. "stroke-width": 1,
  3109. "opacity": 0
  3110. }
  3111. },
  3112. "mapper": {
  3113. "type": "code",
  3114. "value": "'arrow-empty-large:arrowHead:16';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3115. },
  3116. "parser": {
  3117. "type": "code",
  3118. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3119. },
  3120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3121. "position": {
  3122. "type": "list<double>",
  3123. "value": [
  3124. 54,
  3125. 69
  3126. ]
  3127. },
  3128. "orientation": {
  3129. "type": "double",
  3130. "value": 0
  3131. },
  3132. "scale": {
  3133. "type": "list<double>",
  3134. "value": [
  3135. 1,
  3136. 1
  3137. ]
  3138. }
  3139. },
  3140. "295": {
  3141. "segments": {
  3142. "type": "string",
  3143. "value": "m0,0 l-10,4 l10,4"
  3144. },
  3145. "style": {
  3146. "type": "map<string,string>",
  3147. "value": {
  3148. "stroke": "#000000",
  3149. "fill": "#000000",
  3150. "fill-opacity": 0,
  3151. "stroke-width": 1,
  3152. "opacity": 0
  3153. }
  3154. },
  3155. "mapper": {
  3156. "type": "code",
  3157. "value": "'arrow-empty:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"fill-opacity\": 0,\n \"stroke-width\": 1.1,\n \"opacity\": (getAttr('arrowHead') == 'arrow-empty' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3158. },
  3159. "parser": {
  3160. "type": "code",
  3161. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3162. },
  3163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3164. "position": {
  3165. "type": "list<double>",
  3166. "value": [
  3167. 43,
  3168. 73
  3169. ]
  3170. },
  3171. "orientation": {
  3172. "type": "double",
  3173. "value": 0
  3174. },
  3175. "scale": {
  3176. "type": "list<double>",
  3177. "value": [
  3178. 1,
  3179. 1
  3180. ]
  3181. }
  3182. },
  3183. "296": {
  3184. "segments": {
  3185. "type": "string",
  3186. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3187. },
  3188. "style": {
  3189. "type": "map<string,string>",
  3190. "value": {
  3191. "stroke": "#000000",
  3192. "fill": "#000000",
  3193. "opacity": 0,
  3194. "stroke-width": 1
  3195. }
  3196. },
  3197. "mapper": {
  3198. "type": "code",
  3199. "value": "'diamond-black-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-black-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3200. },
  3201. "parser": {
  3202. "type": "code",
  3203. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3204. },
  3205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3206. "position": {
  3207. "type": "list<double>",
  3208. "value": [
  3209. 43,
  3210. 67
  3211. ]
  3212. },
  3213. "orientation": {
  3214. "type": "double",
  3215. "value": 0
  3216. },
  3217. "scale": {
  3218. "type": "list<double>",
  3219. "value": [
  3220. 1,
  3221. 1
  3222. ]
  3223. }
  3224. },
  3225. "297": {
  3226. "segments": {
  3227. "type": "string",
  3228. "value": "m0,0 l-10,4 l10,4 z"
  3229. },
  3230. "style": {
  3231. "type": "map<string,string>",
  3232. "value": {
  3233. "stroke": "#000000",
  3234. "fill": "#000000",
  3235. "opacity": 0,
  3236. "stroke-width": 1
  3237. }
  3238. },
  3239. "mapper": {
  3240. "type": "code",
  3241. "value": "'triangle-black:arrowHead:8';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#000000\",\n \"opacity\": (getAttr('arrowHead') == 'triangle-black' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3242. },
  3243. "parser": {
  3244. "type": "code",
  3245. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3246. },
  3247. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3248. "position": {
  3249. "type": "list<double>",
  3250. "value": [
  3251. 43,
  3252. 73
  3253. ]
  3254. },
  3255. "orientation": {
  3256. "type": "double",
  3257. "value": 0
  3258. },
  3259. "scale": {
  3260. "type": "list<double>",
  3261. "value": [
  3262. 1,
  3263. 1
  3264. ]
  3265. }
  3266. },
  3267. "298": {
  3268. "segments": {
  3269. "type": "string",
  3270. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3271. },
  3272. "style": {
  3273. "type": "map<string,string>",
  3274. "value": {
  3275. "stroke": "#000000",
  3276. "fill": "#ffffff",
  3277. "opacity": 0,
  3278. "stroke-width": 1
  3279. }
  3280. },
  3281. "mapper": {
  3282. "type": "code",
  3283. "value": "'diamond-white-large:arrowHead:20';\nvar style = \n {\"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"opacity\": (getAttr('arrowHead') == 'diamond-white-large' ? 1 : 0),\n \"stroke-width\": 1};\n({'style':style})"
  3284. },
  3285. "parser": {
  3286. "type": "code",
  3287. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3288. },
  3289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3290. "position": {
  3291. "type": "list<double>",
  3292. "value": [
  3293. 43,
  3294. 67
  3295. ]
  3296. },
  3297. "orientation": {
  3298. "type": "double",
  3299. "value": 0
  3300. },
  3301. "scale": {
  3302. "type": "list<double>",
  3303. "value": [
  3304. 1,
  3305. 1
  3306. ]
  3307. }
  3308. },
  3309. "299": {
  3310. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3311. "position": {
  3312. "type": "list<double>",
  3313. "value": [
  3314. 114.64294868314005,
  3315. 39.04743588588505
  3316. ]
  3317. },
  3318. "orientation": {
  3319. "type": "double",
  3320. "value": 0
  3321. },
  3322. "scale": {
  3323. "type": "list<double>",
  3324. "value": [
  3325. 1,
  3326. 1
  3327. ]
  3328. },
  3329. "link-style": {
  3330. "type": "map<string,string>",
  3331. "value": {
  3332. "stroke": "#00ffff",
  3333. "stroke-dasharray": "",
  3334. "stroke-opacity": 0.1,
  3335. "stroke-width": 1
  3336. }
  3337. }
  3338. },
  3339. "300": {
  3340. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3341. "position": {
  3342. "type": "list<double>",
  3343. "value": [
  3344. 117.14309620090773,
  3345. 39.046443503803374
  3346. ]
  3347. },
  3348. "orientation": {
  3349. "type": "double",
  3350. "value": 0
  3351. },
  3352. "scale": {
  3353. "type": "list<double>",
  3354. "value": [
  3355. 1,
  3356. 1
  3357. ]
  3358. },
  3359. "link-style": {
  3360. "type": "map<string,string>",
  3361. "value": {
  3362. "stroke": "#00ffff",
  3363. "stroke-dasharray": "",
  3364. "stroke-opacity": 0.1,
  3365. "stroke-width": 1
  3366. }
  3367. }
  3368. },
  3369. "301": {
  3370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3371. "position": {
  3372. "type": "list<double>",
  3373. "value": [
  3374. 112,
  3375. 39
  3376. ]
  3377. },
  3378. "orientation": {
  3379. "type": "double",
  3380. "value": 0
  3381. },
  3382. "scale": {
  3383. "type": "list<double>",
  3384. "value": [
  3385. 1,
  3386. 1
  3387. ]
  3388. },
  3389. "link-style": {
  3390. "type": "map<string,string>",
  3391. "value": {
  3392. "stroke": "#00ffff",
  3393. "stroke-dasharray": "",
  3394. "stroke-opacity": 0.1,
  3395. "stroke-width": 1
  3396. }
  3397. }
  3398. },
  3399. "302": {
  3400. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3401. "position": {
  3402. "type": "list<double>",
  3403. "value": [
  3404. 112,
  3405. 39
  3406. ]
  3407. },
  3408. "orientation": {
  3409. "type": "double",
  3410. "value": 0
  3411. },
  3412. "scale": {
  3413. "type": "list<double>",
  3414. "value": [
  3415. 1,
  3416. 1
  3417. ]
  3418. },
  3419. "link-style": {
  3420. "type": "map<string,string>",
  3421. "value": {
  3422. "stroke": "#00ffff",
  3423. "stroke-dasharray": "",
  3424. "stroke-opacity": 0.1,
  3425. "stroke-width": 1
  3426. }
  3427. }
  3428. },
  3429. "303": {
  3430. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3431. "position": {
  3432. "type": "list<double>",
  3433. "value": [
  3434. 114.64294868314005,
  3435. 39.04743588588505
  3436. ]
  3437. },
  3438. "orientation": {
  3439. "type": "double",
  3440. "value": 0
  3441. },
  3442. "scale": {
  3443. "type": "list<double>",
  3444. "value": [
  3445. 1,
  3446. 1
  3447. ]
  3448. },
  3449. "link-style": {
  3450. "type": "map<string,string>",
  3451. "value": {
  3452. "stroke": "#00ffff",
  3453. "stroke-dasharray": "",
  3454. "stroke-opacity": 0.1,
  3455. "stroke-width": 1
  3456. }
  3457. }
  3458. },
  3459. "304": {
  3460. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3461. "position": {
  3462. "type": "list<double>",
  3463. "value": [
  3464. 117.14309620090773,
  3465. 39.046443503803374
  3466. ]
  3467. },
  3468. "orientation": {
  3469. "type": "double",
  3470. "value": 0
  3471. },
  3472. "scale": {
  3473. "type": "list<double>",
  3474. "value": [
  3475. 1,
  3476. 1
  3477. ]
  3478. },
  3479. "link-style": {
  3480. "type": "map<string,string>",
  3481. "value": {
  3482. "stroke": "#00ffff",
  3483. "stroke-dasharray": "",
  3484. "stroke-opacity": 0.1,
  3485. "stroke-width": 1
  3486. }
  3487. }
  3488. },
  3489. "305": {
  3490. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3491. "position": {
  3492. "type": "list<double>",
  3493. "value": [
  3494. 112,
  3495. 39
  3496. ]
  3497. },
  3498. "orientation": {
  3499. "type": "double",
  3500. "value": 0
  3501. },
  3502. "scale": {
  3503. "type": "list<double>",
  3504. "value": [
  3505. 1,
  3506. 1
  3507. ]
  3508. },
  3509. "link-style": {
  3510. "type": "map<string,string>",
  3511. "value": {
  3512. "stroke": "#00ffff",
  3513. "stroke-dasharray": "",
  3514. "stroke-opacity": 0.1,
  3515. "stroke-width": 1
  3516. }
  3517. }
  3518. },
  3519. "306": {
  3520. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3521. "position": {
  3522. "type": "list<double>",
  3523. "value": [
  3524. 114.64294868314005,
  3525. 39.04743588588505
  3526. ]
  3527. },
  3528. "orientation": {
  3529. "type": "double",
  3530. "value": 0
  3531. },
  3532. "scale": {
  3533. "type": "list<double>",
  3534. "value": [
  3535. 1,
  3536. 1
  3537. ]
  3538. },
  3539. "link-style": {
  3540. "type": "map<string,string>",
  3541. "value": {
  3542. "stroke": "#00ffff",
  3543. "stroke-dasharray": "",
  3544. "stroke-opacity": 0.1,
  3545. "stroke-width": 1
  3546. }
  3547. }
  3548. },
  3549. "307": {
  3550. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3551. "position": {
  3552. "type": "list<double>",
  3553. "value": [
  3554. 112,
  3555. 39
  3556. ]
  3557. },
  3558. "orientation": {
  3559. "type": "double",
  3560. "value": 0
  3561. },
  3562. "scale": {
  3563. "type": "list<double>",
  3564. "value": [
  3565. 1,
  3566. 1
  3567. ]
  3568. },
  3569. "link-style": {
  3570. "type": "map<string,string>",
  3571. "value": {
  3572. "stroke": "#00ffff",
  3573. "stroke-dasharray": "",
  3574. "stroke-opacity": 0.1,
  3575. "stroke-width": 1
  3576. }
  3577. }
  3578. },
  3579. "308": {
  3580. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3581. "position": {
  3582. "type": "list<double>",
  3583. "value": [
  3584. 112,
  3585. 39
  3586. ]
  3587. },
  3588. "orientation": {
  3589. "type": "double",
  3590. "value": 0
  3591. },
  3592. "scale": {
  3593. "type": "list<double>",
  3594. "value": [
  3595. 1,
  3596. 1
  3597. ]
  3598. },
  3599. "link-style": {
  3600. "type": "map<string,string>",
  3601. "value": {
  3602. "stroke": "#00ffff",
  3603. "stroke-dasharray": "",
  3604. "stroke-opacity": 0.1,
  3605. "stroke-width": 1
  3606. }
  3607. }
  3608. },
  3609. "309": {
  3610. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3611. "position": {
  3612. "type": "list<double>",
  3613. "value": [
  3614. 117.14309620090773,
  3615. 39.046443503803374
  3616. ]
  3617. },
  3618. "orientation": {
  3619. "type": "double",
  3620. "value": 0
  3621. },
  3622. "scale": {
  3623. "type": "list<double>",
  3624. "value": [
  3625. 1,
  3626. 1
  3627. ]
  3628. },
  3629. "link-style": {
  3630. "type": "map<string,string>",
  3631. "value": {
  3632. "stroke": "#00ffff",
  3633. "stroke-dasharray": "",
  3634. "stroke-opacity": 0.1,
  3635. "stroke-width": 1
  3636. }
  3637. }
  3638. },
  3639. "310": {
  3640. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3641. "position": {
  3642. "type": "list<double>",
  3643. "value": [
  3644. 112,
  3645. 39
  3646. ]
  3647. },
  3648. "orientation": {
  3649. "type": "double",
  3650. "value": 0
  3651. },
  3652. "scale": {
  3653. "type": "list<double>",
  3654. "value": [
  3655. 1,
  3656. 1
  3657. ]
  3658. },
  3659. "link-style": {
  3660. "type": "map<string,string>",
  3661. "value": {
  3662. "stroke": "#00ffff",
  3663. "stroke-dasharray": "",
  3664. "stroke-opacity": 0.1,
  3665. "stroke-width": 1
  3666. }
  3667. }
  3668. },
  3669. "311": {
  3670. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3671. "position": {
  3672. "type": "list<double>",
  3673. "value": [
  3674. 114.64294868314005,
  3675. 39.04743588588505
  3676. ]
  3677. },
  3678. "orientation": {
  3679. "type": "double",
  3680. "value": 0
  3681. },
  3682. "scale": {
  3683. "type": "list<double>",
  3684. "value": [
  3685. 1,
  3686. 1
  3687. ]
  3688. },
  3689. "link-style": {
  3690. "type": "map<string,string>",
  3691. "value": {
  3692. "stroke": "#00ffff",
  3693. "stroke-dasharray": "",
  3694. "stroke-opacity": 0.1,
  3695. "stroke-width": 1
  3696. }
  3697. }
  3698. },
  3699. "312": {
  3700. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3701. "position": {
  3702. "type": "list<double>",
  3703. "value": [
  3704. 117.14309620090773,
  3705. 39.046443503803374
  3706. ]
  3707. },
  3708. "orientation": {
  3709. "type": "double",
  3710. "value": 0
  3711. },
  3712. "scale": {
  3713. "type": "list<double>",
  3714. "value": [
  3715. 1,
  3716. 1
  3717. ]
  3718. },
  3719. "link-style": {
  3720. "type": "map<string,string>",
  3721. "value": {
  3722. "stroke": "#00ffff",
  3723. "stroke-dasharray": "",
  3724. "stroke-opacity": 0.1,
  3725. "stroke-width": 1
  3726. }
  3727. }
  3728. },
  3729. "313": {
  3730. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3731. "position": {
  3732. "type": "list<double>",
  3733. "value": [
  3734. 114.64294868314005,
  3735. 39.04743588588505
  3736. ]
  3737. },
  3738. "orientation": {
  3739. "type": "double",
  3740. "value": 0
  3741. },
  3742. "scale": {
  3743. "type": "list<double>",
  3744. "value": [
  3745. 1,
  3746. 1
  3747. ]
  3748. },
  3749. "link-style": {
  3750. "type": "map<string,string>",
  3751. "value": {
  3752. "stroke": "#00ffff",
  3753. "stroke-dasharray": "",
  3754. "stroke-opacity": 0.1,
  3755. "stroke-width": 1
  3756. }
  3757. }
  3758. },
  3759. "314": {
  3760. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3761. "position": {
  3762. "type": "list<double>",
  3763. "value": [
  3764. 114.64294868314005,
  3765. 39.04743588588505
  3766. ]
  3767. },
  3768. "orientation": {
  3769. "type": "double",
  3770. "value": 0
  3771. },
  3772. "scale": {
  3773. "type": "list<double>",
  3774. "value": [
  3775. 1,
  3776. 1
  3777. ]
  3778. },
  3779. "link-style": {
  3780. "type": "map<string,string>",
  3781. "value": {
  3782. "stroke": "#00ffff",
  3783. "stroke-dasharray": "",
  3784. "stroke-opacity": 0.1,
  3785. "stroke-width": 1
  3786. }
  3787. }
  3788. },
  3789. "315": {
  3790. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3791. "position": {
  3792. "type": "list<double>",
  3793. "value": [
  3794. 23.5,
  3795. 39
  3796. ]
  3797. },
  3798. "orientation": {
  3799. "type": "double",
  3800. "value": 0
  3801. },
  3802. "scale": {
  3803. "type": "list<double>",
  3804. "value": [
  3805. 1,
  3806. 1
  3807. ]
  3808. },
  3809. "link-style": {
  3810. "type": "map<string,string>",
  3811. "value": {
  3812. "stroke": "#00ffff",
  3813. "stroke-dasharray": "",
  3814. "stroke-opacity": 0.1,
  3815. "stroke-width": 1
  3816. }
  3817. }
  3818. },
  3819. "316": {
  3820. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3821. "position": {
  3822. "type": "list<double>",
  3823. "value": [
  3824. 25.578488230596065,
  3825. 39.129069534757946
  3826. ]
  3827. },
  3828. "orientation": {
  3829. "type": "double",
  3830. "value": 0
  3831. },
  3832. "scale": {
  3833. "type": "list<double>",
  3834. "value": [
  3835. 1,
  3836. 1
  3837. ]
  3838. },
  3839. "link-style": {
  3840. "type": "map<string,string>",
  3841. "value": {
  3842. "stroke": "#00ffff",
  3843. "stroke-dasharray": "",
  3844. "stroke-opacity": 0.1,
  3845. "stroke-width": 1
  3846. }
  3847. }
  3848. },
  3849. "317": {
  3850. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3851. "position": {
  3852. "type": "list<double>",
  3853. "value": [
  3854. 23.5,
  3855. 39
  3856. ]
  3857. },
  3858. "orientation": {
  3859. "type": "double",
  3860. "value": 0
  3861. },
  3862. "scale": {
  3863. "type": "list<double>",
  3864. "value": [
  3865. 1,
  3866. 1
  3867. ]
  3868. },
  3869. "link-style": {
  3870. "type": "map<string,string>",
  3871. "value": {
  3872. "stroke": "#00ffff",
  3873. "stroke-dasharray": "",
  3874. "stroke-opacity": 0.1,
  3875. "stroke-width": 1
  3876. }
  3877. }
  3878. },
  3879. "318": {
  3880. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3881. "position": {
  3882. "type": "list<double>",
  3883. "value": [
  3884. 23.5,
  3885. 39
  3886. ]
  3887. },
  3888. "orientation": {
  3889. "type": "double",
  3890. "value": 0
  3891. },
  3892. "scale": {
  3893. "type": "list<double>",
  3894. "value": [
  3895. 1,
  3896. 1
  3897. ]
  3898. },
  3899. "link-style": {
  3900. "type": "map<string,string>",
  3901. "value": {
  3902. "stroke": "#00ffff",
  3903. "stroke-dasharray": "",
  3904. "stroke-opacity": 0.1,
  3905. "stroke-width": 1
  3906. }
  3907. }
  3908. },
  3909. "319": {
  3910. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3911. "position": {
  3912. "type": "list<double>",
  3913. "value": [
  3914. 33.596315647178926,
  3915. 39.11684193264324
  3916. ]
  3917. },
  3918. "orientation": {
  3919. "type": "double",
  3920. "value": 0
  3921. },
  3922. "scale": {
  3923. "type": "list<double>",
  3924. "value": [
  3925. 1,
  3926. 1
  3927. ]
  3928. },
  3929. "link-style": {
  3930. "type": "map<string,string>",
  3931. "value": {
  3932. "stroke": "#00ffff",
  3933. "stroke-dasharray": "",
  3934. "stroke-opacity": 0.1,
  3935. "stroke-width": 1
  3936. }
  3937. }
  3938. },
  3939. "320": {
  3940. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3941. "position": {
  3942. "type": "list<double>",
  3943. "value": [
  3944. 25.578488230596065,
  3945. 39.129069534757946
  3946. ]
  3947. },
  3948. "orientation": {
  3949. "type": "double",
  3950. "value": 0
  3951. },
  3952. "scale": {
  3953. "type": "list<double>",
  3954. "value": [
  3955. 1,
  3956. 1
  3957. ]
  3958. },
  3959. "link-style": {
  3960. "type": "map<string,string>",
  3961. "value": {
  3962. "stroke": "#00ffff",
  3963. "stroke-dasharray": "",
  3964. "stroke-opacity": 0.1,
  3965. "stroke-width": 1
  3966. }
  3967. }
  3968. },
  3969. "321": {
  3970. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3971. "position": {
  3972. "type": "list<double>",
  3973. "value": [
  3974. 33.596315647178926,
  3975. 39.11684193264324
  3976. ]
  3977. },
  3978. "orientation": {
  3979. "type": "double",
  3980. "value": 0
  3981. },
  3982. "scale": {
  3983. "type": "list<double>",
  3984. "value": [
  3985. 1,
  3986. 1
  3987. ]
  3988. },
  3989. "link-style": {
  3990. "type": "map<string,string>",
  3991. "value": {
  3992. "stroke": "#00ffff",
  3993. "stroke-dasharray": "",
  3994. "stroke-opacity": 0.1,
  3995. "stroke-width": 1
  3996. }
  3997. }
  3998. },
  3999. "322": {
  4000. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4001. "position": {
  4002. "type": "list<double>",
  4003. "value": [
  4004. 33.596315647178926,
  4005. 39.11684193264324
  4006. ]
  4007. },
  4008. "orientation": {
  4009. "type": "double",
  4010. "value": 0
  4011. },
  4012. "scale": {
  4013. "type": "list<double>",
  4014. "value": [
  4015. 1,
  4016. 1
  4017. ]
  4018. },
  4019. "link-style": {
  4020. "type": "map<string,string>",
  4021. "value": {
  4022. "stroke": "#00ffff",
  4023. "stroke-dasharray": "",
  4024. "stroke-opacity": 0.1,
  4025. "stroke-width": 1
  4026. }
  4027. }
  4028. },
  4029. "323": {
  4030. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4031. "position": {
  4032. "type": "list<double>",
  4033. "value": [
  4034. 21,
  4035. 39
  4036. ]
  4037. },
  4038. "orientation": {
  4039. "type": "double",
  4040. "value": 0
  4041. },
  4042. "scale": {
  4043. "type": "list<double>",
  4044. "value": [
  4045. 1,
  4046. 1
  4047. ]
  4048. },
  4049. "link-style": {
  4050. "type": "map<string,string>",
  4051. "value": {
  4052. "stroke": "#00ffff",
  4053. "stroke-dasharray": "",
  4054. "stroke-opacity": 0.1,
  4055. "stroke-width": 1
  4056. }
  4057. }
  4058. },
  4059. "324": {
  4060. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4061. "position": {
  4062. "type": "list<double>",
  4063. "value": [
  4064. 21,
  4065. 39
  4066. ]
  4067. },
  4068. "orientation": {
  4069. "type": "double",
  4070. "value": 0
  4071. },
  4072. "scale": {
  4073. "type": "list<double>",
  4074. "value": [
  4075. 1,
  4076. 1
  4077. ]
  4078. },
  4079. "link-style": {
  4080. "type": "map<string,string>",
  4081. "value": {
  4082. "stroke": "#00ffff",
  4083. "stroke-dasharray": "",
  4084. "stroke-opacity": 0.1,
  4085. "stroke-width": 1
  4086. }
  4087. }
  4088. },
  4089. "325": {
  4090. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4091. "position": {
  4092. "type": "list<double>",
  4093. "value": [
  4094. 23.5,
  4095. 39
  4096. ]
  4097. },
  4098. "orientation": {
  4099. "type": "double",
  4100. "value": 0
  4101. },
  4102. "scale": {
  4103. "type": "list<double>",
  4104. "value": [
  4105. 1,
  4106. 1
  4107. ]
  4108. },
  4109. "link-style": {
  4110. "type": "map<string,string>",
  4111. "value": {
  4112. "stroke": "#00ffff",
  4113. "stroke-dasharray": "",
  4114. "stroke-opacity": 0.1,
  4115. "stroke-width": 1
  4116. }
  4117. }
  4118. },
  4119. "326": {
  4120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4121. "position": {
  4122. "type": "list<double>",
  4123. "value": [
  4124. 33.596315647178926,
  4125. 39.11684193264324
  4126. ]
  4127. },
  4128. "orientation": {
  4129. "type": "double",
  4130. "value": 0
  4131. },
  4132. "scale": {
  4133. "type": "list<double>",
  4134. "value": [
  4135. 1,
  4136. 1
  4137. ]
  4138. },
  4139. "link-style": {
  4140. "type": "map<string,string>",
  4141. "value": {
  4142. "stroke": "#00ffff",
  4143. "stroke-dasharray": "",
  4144. "stroke-opacity": 0.1,
  4145. "stroke-width": 1
  4146. }
  4147. }
  4148. },
  4149. "327": {
  4150. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4151. "position": {
  4152. "type": "list<double>",
  4153. "value": [
  4154. 25.578488230596065,
  4155. 39.129069534757946
  4156. ]
  4157. },
  4158. "orientation": {
  4159. "type": "double",
  4160. "value": 0
  4161. },
  4162. "scale": {
  4163. "type": "list<double>",
  4164. "value": [
  4165. 1,
  4166. 1
  4167. ]
  4168. },
  4169. "link-style": {
  4170. "type": "map<string,string>",
  4171. "value": {
  4172. "stroke": "#00ffff",
  4173. "stroke-dasharray": "",
  4174. "stroke-opacity": 0.1,
  4175. "stroke-width": 1
  4176. }
  4177. }
  4178. },
  4179. "328": {
  4180. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4181. "position": {
  4182. "type": "list<double>",
  4183. "value": [
  4184. 28.08426952107112,
  4185. 39.124718891185296
  4186. ]
  4187. },
  4188. "orientation": {
  4189. "type": "double",
  4190. "value": 0
  4191. },
  4192. "scale": {
  4193. "type": "list<double>",
  4194. "value": [
  4195. 1,
  4196. 1
  4197. ]
  4198. },
  4199. "link-style": {
  4200. "type": "map<string,string>",
  4201. "value": {
  4202. "stroke": "#00ffff",
  4203. "stroke-dasharray": "",
  4204. "stroke-opacity": 0.1,
  4205. "stroke-width": 1
  4206. }
  4207. }
  4208. },
  4209. "329": {
  4210. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4211. "position": {
  4212. "type": "list<double>",
  4213. "value": [
  4214. 25.578488230596065,
  4215. 39.129069534757946
  4216. ]
  4217. },
  4218. "orientation": {
  4219. "type": "double",
  4220. "value": 0
  4221. },
  4222. "scale": {
  4223. "type": "list<double>",
  4224. "value": [
  4225. 1,
  4226. 1
  4227. ]
  4228. },
  4229. "link-style": {
  4230. "type": "map<string,string>",
  4231. "value": {
  4232. "stroke": "#00ffff",
  4233. "stroke-dasharray": "",
  4234. "stroke-opacity": 0.1,
  4235. "stroke-width": 1
  4236. }
  4237. }
  4238. },
  4239. "330": {
  4240. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4241. "position": {
  4242. "type": "list<double>",
  4243. "value": [
  4244. 28.08426952107112,
  4245. 39.124718891185296
  4246. ]
  4247. },
  4248. "orientation": {
  4249. "type": "double",
  4250. "value": 0
  4251. },
  4252. "scale": {
  4253. "type": "list<double>",
  4254. "value": [
  4255. 1,
  4256. 1
  4257. ]
  4258. },
  4259. "link-style": {
  4260. "type": "map<string,string>",
  4261. "value": {
  4262. "stroke": "#00ffff",
  4263. "stroke-dasharray": "",
  4264. "stroke-opacity": 0.1,
  4265. "stroke-width": 1
  4266. }
  4267. }
  4268. }
  4269. },
  4270. "edges": [
  4271. {
  4272. "src": "92",
  4273. "dest": "122"
  4274. },
  4275. {
  4276. "src": "122",
  4277. "dest": "100"
  4278. },
  4279. {
  4280. "src": "100",
  4281. "dest": "195"
  4282. },
  4283. {
  4284. "src": "195",
  4285. "dest": "162"
  4286. },
  4287. {
  4288. "src": "100",
  4289. "dest": "299"
  4290. },
  4291. {
  4292. "src": "299",
  4293. "dest": "267"
  4294. },
  4295. {
  4296. "src": "100",
  4297. "dest": "300"
  4298. },
  4299. {
  4300. "src": "300",
  4301. "dest": "268"
  4302. },
  4303. {
  4304. "src": "100",
  4305. "dest": "301"
  4306. },
  4307. {
  4308. "src": "301",
  4309. "dest": "269"
  4310. },
  4311. {
  4312. "src": "100",
  4313. "dest": "302"
  4314. },
  4315. {
  4316. "src": "302",
  4317. "dest": "270"
  4318. },
  4319. {
  4320. "src": "100",
  4321. "dest": "303"
  4322. },
  4323. {
  4324. "src": "303",
  4325. "dest": "271"
  4326. },
  4327. {
  4328. "src": "100",
  4329. "dest": "304"
  4330. },
  4331. {
  4332. "src": "304",
  4333. "dest": "272"
  4334. },
  4335. {
  4336. "src": "100",
  4337. "dest": "305"
  4338. },
  4339. {
  4340. "src": "305",
  4341. "dest": "273"
  4342. },
  4343. {
  4344. "src": "100",
  4345. "dest": "306"
  4346. },
  4347. {
  4348. "src": "306",
  4349. "dest": "274"
  4350. },
  4351. {
  4352. "src": "100",
  4353. "dest": "307"
  4354. },
  4355. {
  4356. "src": "307",
  4357. "dest": "275"
  4358. },
  4359. {
  4360. "src": "100",
  4361. "dest": "308"
  4362. },
  4363. {
  4364. "src": "308",
  4365. "dest": "276"
  4366. },
  4367. {
  4368. "src": "100",
  4369. "dest": "309"
  4370. },
  4371. {
  4372. "src": "309",
  4373. "dest": "277"
  4374. },
  4375. {
  4376. "src": "100",
  4377. "dest": "310"
  4378. },
  4379. {
  4380. "src": "310",
  4381. "dest": "278"
  4382. },
  4383. {
  4384. "src": "100",
  4385. "dest": "311"
  4386. },
  4387. {
  4388. "src": "311",
  4389. "dest": "279"
  4390. },
  4391. {
  4392. "src": "100",
  4393. "dest": "312"
  4394. },
  4395. {
  4396. "src": "312",
  4397. "dest": "280"
  4398. },
  4399. {
  4400. "src": "100",
  4401. "dest": "313"
  4402. },
  4403. {
  4404. "src": "313",
  4405. "dest": "281"
  4406. },
  4407. {
  4408. "src": "100",
  4409. "dest": "314"
  4410. },
  4411. {
  4412. "src": "314",
  4413. "dest": "282"
  4414. },
  4415. {
  4416. "src": "100",
  4417. "dest": "315"
  4418. },
  4419. {
  4420. "src": "315",
  4421. "dest": "283"
  4422. },
  4423. {
  4424. "src": "100",
  4425. "dest": "316"
  4426. },
  4427. {
  4428. "src": "316",
  4429. "dest": "284"
  4430. },
  4431. {
  4432. "src": "100",
  4433. "dest": "317"
  4434. },
  4435. {
  4436. "src": "317",
  4437. "dest": "285"
  4438. },
  4439. {
  4440. "src": "100",
  4441. "dest": "318"
  4442. },
  4443. {
  4444. "src": "318",
  4445. "dest": "286"
  4446. },
  4447. {
  4448. "src": "100",
  4449. "dest": "319"
  4450. },
  4451. {
  4452. "src": "319",
  4453. "dest": "287"
  4454. },
  4455. {
  4456. "src": "100",
  4457. "dest": "320"
  4458. },
  4459. {
  4460. "src": "320",
  4461. "dest": "288"
  4462. },
  4463. {
  4464. "src": "100",
  4465. "dest": "321"
  4466. },
  4467. {
  4468. "src": "321",
  4469. "dest": "289"
  4470. },
  4471. {
  4472. "src": "100",
  4473. "dest": "322"
  4474. },
  4475. {
  4476. "src": "322",
  4477. "dest": "290"
  4478. },
  4479. {
  4480. "src": "100",
  4481. "dest": "323"
  4482. },
  4483. {
  4484. "src": "323",
  4485. "dest": "291"
  4486. },
  4487. {
  4488. "src": "100",
  4489. "dest": "324"
  4490. },
  4491. {
  4492. "src": "324",
  4493. "dest": "292"
  4494. },
  4495. {
  4496. "src": "100",
  4497. "dest": "325"
  4498. },
  4499. {
  4500. "src": "325",
  4501. "dest": "293"
  4502. },
  4503. {
  4504. "src": "100",
  4505. "dest": "326"
  4506. },
  4507. {
  4508. "src": "326",
  4509. "dest": "294"
  4510. },
  4511. {
  4512. "src": "100",
  4513. "dest": "327"
  4514. },
  4515. {
  4516. "src": "327",
  4517. "dest": "295"
  4518. },
  4519. {
  4520. "src": "100",
  4521. "dest": "328"
  4522. },
  4523. {
  4524. "src": "328",
  4525. "dest": "296"
  4526. },
  4527. {
  4528. "src": "100",
  4529. "dest": "329"
  4530. },
  4531. {
  4532. "src": "329",
  4533. "dest": "297"
  4534. },
  4535. {
  4536. "src": "100",
  4537. "dest": "330"
  4538. },
  4539. {
  4540. "src": "330",
  4541. "dest": "298"
  4542. }
  4543. ]
  4544. }
  4545. },
  4546. "$asuri": {
  4547. "type": "string",
  4548. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/18.instance"
  4549. },
  4550. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  4551. }
  4552. },
  4553. "edges": [],
  4554. "metamodels": [
  4555. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons"
  4556. ]
  4557. },
  4558. "asm": {
  4559. "nodes": {
  4560. "0": {
  4561. "typename": {
  4562. "type": "string",
  4563. "value": "TableIcon"
  4564. },
  4565. "position": {
  4566. "type": "list<double>",
  4567. "value": [
  4568. 50,
  4569. 100
  4570. ]
  4571. },
  4572. "orientation": {
  4573. "type": "double",
  4574. "value": 0
  4575. },
  4576. "scale": {
  4577. "type": "list<double>",
  4578. "value": [
  4579. 2.82,
  4580. 1
  4581. ]
  4582. },
  4583. "mapper": {
  4584. "type": "code",
  4585. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4586. },
  4587. "parser": {
  4588. "type": "code",
  4589. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4590. },
  4591. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  4592. },
  4593. "1": {
  4594. "width": {
  4595. "type": "double",
  4596. "value": 500
  4597. },
  4598. "height": {
  4599. "type": "double",
  4600. "value": 20
  4601. },
  4602. "cornerRadius": {
  4603. "type": "double",
  4604. "value": 0
  4605. },
  4606. "style": {
  4607. "type": "map<string,string>",
  4608. "value": {
  4609. "stroke": "#000000",
  4610. "stroke-dasharray": "",
  4611. "fill": "#000000",
  4612. "fill-opacity": 0.75,
  4613. "font-size": "20px",
  4614. "stroke-width": 1,
  4615. "arrow-start": "none",
  4616. "arrow-end": "none",
  4617. "": ""
  4618. }
  4619. },
  4620. "mapper": {
  4621. "type": "code",
  4622. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4623. },
  4624. "parser": {
  4625. "type": "code",
  4626. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4627. },
  4628. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4629. },
  4630. "2": {
  4631. "width": {
  4632. "type": "double",
  4633. "value": 20
  4634. },
  4635. "height": {
  4636. "type": "double",
  4637. "value": 100
  4638. },
  4639. "cornerRadius": {
  4640. "type": "double",
  4641. "value": 0
  4642. },
  4643. "style": {
  4644. "type": "map<string,string>",
  4645. "value": {
  4646. "stroke": "#000000",
  4647. "stroke-dasharray": "",
  4648. "fill": "#000000",
  4649. "fill-opacity": 0.75,
  4650. "font-size": "20px",
  4651. "stroke-width": 1,
  4652. "arrow-start": "none",
  4653. "arrow-end": "none",
  4654. "": ""
  4655. }
  4656. },
  4657. "mapper": {
  4658. "type": "code",
  4659. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4660. },
  4661. "parser": {
  4662. "type": "code",
  4663. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4664. },
  4665. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4666. },
  4667. "3": {
  4668. "width": {
  4669. "type": "double",
  4670. "value": 20
  4671. },
  4672. "height": {
  4673. "type": "double",
  4674. "value": 100
  4675. },
  4676. "cornerRadius": {
  4677. "type": "double",
  4678. "value": 0
  4679. },
  4680. "style": {
  4681. "type": "map<string,string>",
  4682. "value": {
  4683. "stroke": "#000000",
  4684. "stroke-dasharray": "",
  4685. "fill": "#000000",
  4686. "fill-opacity": 0.75,
  4687. "font-size": "20px",
  4688. "stroke-width": 1,
  4689. "arrow-start": "none",
  4690. "arrow-end": "none",
  4691. "": ""
  4692. }
  4693. },
  4694. "mapper": {
  4695. "type": "code",
  4696. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4697. },
  4698. "parser": {
  4699. "type": "code",
  4700. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4701. },
  4702. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4703. },
  4704. "4": {
  4705. "width": {
  4706. "type": "double",
  4707. "value": 20
  4708. },
  4709. "height": {
  4710. "type": "double",
  4711. "value": 50
  4712. },
  4713. "cornerRadius": {
  4714. "type": "double",
  4715. "value": 0
  4716. },
  4717. "style": {
  4718. "type": "map<string,string>",
  4719. "value": {
  4720. "stroke": "#000000",
  4721. "stroke-dasharray": "",
  4722. "fill": "#000000",
  4723. "fill-opacity": 0.75,
  4724. "font-size": "20px",
  4725. "stroke-width": 1,
  4726. "arrow-start": "none",
  4727. "arrow-end": "none",
  4728. "": ""
  4729. }
  4730. },
  4731. "mapper": {
  4732. "type": "code",
  4733. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4734. },
  4735. "parser": {
  4736. "type": "code",
  4737. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4738. },
  4739. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4740. },
  4741. "5": {
  4742. "width": {
  4743. "type": "double",
  4744. "value": 20
  4745. },
  4746. "height": {
  4747. "type": "double",
  4748. "value": 50
  4749. },
  4750. "cornerRadius": {
  4751. "type": "double",
  4752. "value": 0
  4753. },
  4754. "style": {
  4755. "type": "map<string,string>",
  4756. "value": {
  4757. "stroke": "#000000",
  4758. "stroke-dasharray": "",
  4759. "fill": "#000000",
  4760. "fill-opacity": 0.75,
  4761. "font-size": "20px",
  4762. "stroke-width": 1,
  4763. "arrow-start": "none",
  4764. "arrow-end": "none",
  4765. "": ""
  4766. }
  4767. },
  4768. "mapper": {
  4769. "type": "code",
  4770. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4771. },
  4772. "parser": {
  4773. "type": "code",
  4774. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4775. },
  4776. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4777. },
  4778. "6": {
  4779. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4780. },
  4781. "7": {
  4782. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4783. },
  4784. "8": {
  4785. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4786. },
  4787. "9": {
  4788. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4789. },
  4790. "10": {
  4791. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4792. },
  4793. "11": {
  4794. "typename": {
  4795. "type": "string",
  4796. "value": "ChairIcon"
  4797. },
  4798. "position": {
  4799. "type": "list<double>",
  4800. "value": [
  4801. 861,
  4802. 176
  4803. ]
  4804. },
  4805. "orientation": {
  4806. "type": "double",
  4807. "value": 0
  4808. },
  4809. "scale": {
  4810. "type": "list<double>",
  4811. "value": [
  4812. 1,
  4813. 1
  4814. ]
  4815. },
  4816. "mapper": {
  4817. "type": "code",
  4818. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4819. },
  4820. "parser": {
  4821. "type": "code",
  4822. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4823. },
  4824. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  4825. },
  4826. "12": {
  4827. "width": {
  4828. "type": "double",
  4829. "value": 50
  4830. },
  4831. "height": {
  4832. "type": "double",
  4833. "value": 20
  4834. },
  4835. "cornerRadius": {
  4836. "type": "double",
  4837. "value": 0
  4838. },
  4839. "style": {
  4840. "type": "map<string,string>",
  4841. "value": {
  4842. "stroke": "#000000",
  4843. "stroke-dasharray": "",
  4844. "fill": "#000000",
  4845. "fill-opacity": 0.75,
  4846. "font-size": "20px",
  4847. "stroke-width": 1,
  4848. "arrow-start": "none",
  4849. "arrow-end": "none",
  4850. "": ""
  4851. }
  4852. },
  4853. "mapper": {
  4854. "type": "code",
  4855. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4856. },
  4857. "parser": {
  4858. "type": "code",
  4859. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4860. },
  4861. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4862. },
  4863. "13": {
  4864. "width": {
  4865. "type": "double",
  4866. "value": 10
  4867. },
  4868. "height": {
  4869. "type": "double",
  4870. "value": 100
  4871. },
  4872. "cornerRadius": {
  4873. "type": "double",
  4874. "value": 0
  4875. },
  4876. "style": {
  4877. "type": "map<string,string>",
  4878. "value": {
  4879. "stroke": "#000000",
  4880. "stroke-dasharray": "",
  4881. "fill": "#000000",
  4882. "fill-opacity": 0.75,
  4883. "font-size": "20px",
  4884. "stroke-width": 1,
  4885. "arrow-start": "none",
  4886. "arrow-end": "none",
  4887. "": ""
  4888. }
  4889. },
  4890. "mapper": {
  4891. "type": "code",
  4892. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4893. },
  4894. "parser": {
  4895. "type": "code",
  4896. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4897. },
  4898. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4899. },
  4900. "14": {
  4901. "width": {
  4902. "type": "double",
  4903. "value": 10
  4904. },
  4905. "height": {
  4906. "type": "double",
  4907. "value": 25
  4908. },
  4909. "cornerRadius": {
  4910. "type": "double",
  4911. "value": 0
  4912. },
  4913. "style": {
  4914. "type": "map<string,string>",
  4915. "value": {
  4916. "stroke": "#000000",
  4917. "stroke-dasharray": "",
  4918. "fill": "#000000",
  4919. "fill-opacity": 0.75,
  4920. "font-size": "20px",
  4921. "stroke-width": 1,
  4922. "arrow-start": "none",
  4923. "arrow-end": "none",
  4924. "": ""
  4925. }
  4926. },
  4927. "mapper": {
  4928. "type": "code",
  4929. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4930. },
  4931. "parser": {
  4932. "type": "code",
  4933. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4934. },
  4935. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  4936. },
  4937. "15": {
  4938. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4939. },
  4940. "16": {
  4941. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4942. },
  4943. "17": {
  4944. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  4945. },
  4946. "18": {
  4947. "link-style": {
  4948. "type": "map<string,string>",
  4949. "value": {
  4950. "stroke": "#000000",
  4951. "stroke-dasharray": "",
  4952. "stroke-opacity": 1,
  4953. "stroke-width": 2
  4954. }
  4955. },
  4956. "arrowHead": {
  4957. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4958. "value": "custom"
  4959. },
  4960. "arrowTail": {
  4961. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  4962. "value": "arrow-black"
  4963. },
  4964. "typename": {
  4965. "type": "string",
  4966. "value": "aroundLink"
  4967. },
  4968. "position": {
  4969. "type": "list<double>",
  4970. "value": [
  4971. 565,
  4972. 386
  4973. ]
  4974. },
  4975. "orientation": {
  4976. "type": "double",
  4977. "value": 0
  4978. },
  4979. "scale": {
  4980. "type": "list<double>",
  4981. "value": [
  4982. 1,
  4983. 1
  4984. ]
  4985. },
  4986. "mapper": {
  4987. "type": "code",
  4988. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4989. },
  4990. "parser": {
  4991. "type": "code",
  4992. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4993. },
  4994. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  4995. }
  4996. },
  4997. "edges": [
  4998. {
  4999. "src": "0",
  5000. "dest": "6"
  5001. },
  5002. {
  5003. "src": "6",
  5004. "dest": "1"
  5005. },
  5006. {
  5007. "src": "0",
  5008. "dest": "7"
  5009. },
  5010. {
  5011. "src": "7",
  5012. "dest": "2"
  5013. },
  5014. {
  5015. "src": "0",
  5016. "dest": "8"
  5017. },
  5018. {
  5019. "src": "8",
  5020. "dest": "3"
  5021. },
  5022. {
  5023. "src": "0",
  5024. "dest": "9"
  5025. },
  5026. {
  5027. "src": "9",
  5028. "dest": "4"
  5029. },
  5030. {
  5031. "src": "0",
  5032. "dest": "10"
  5033. },
  5034. {
  5035. "src": "10",
  5036. "dest": "5"
  5037. },
  5038. {
  5039. "src": "11",
  5040. "dest": "15"
  5041. },
  5042. {
  5043. "src": "15",
  5044. "dest": "12"
  5045. },
  5046. {
  5047. "src": "11",
  5048. "dest": "16"
  5049. },
  5050. {
  5051. "src": "16",
  5052. "dest": "13"
  5053. },
  5054. {
  5055. "src": "11",
  5056. "dest": "17"
  5057. },
  5058. {
  5059. "src": "17",
  5060. "dest": "14"
  5061. }
  5062. ],
  5063. "metamodels": [
  5064. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax"
  5065. ]
  5066. }
  5067. }