TrafficLight.defaultIcons.model 399 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601156021560315604156051560615607156081560915610156111561215613156141561515616156171561815619156201562115622156231562415625156261562715628156291563015631156321563315634156351563615637156381563915640156411564215643156441564515646156471564815649156501565115652156531565415655156561565715658156591566015661156621566315664156651566615667156681566915670156711567215673156741567515676156771567815679156801568115682156831568415685156861568715688156891569015691156921569315694156951569615697156981569915700157011570215703157041570515706157071570815709157101571115712157131571415715157161571715718157191572015721157221572315724157251572615727157281572915730157311573215733157341573515736157371573815739157401574115742157431574415745157461574715748157491575015751157521575315754157551575615757157581575915760157611576215763157641576515766157671576815769157701577115772157731577415775157761577715778157791578015781157821578315784157851578615787157881578915790157911579215793157941579515796157971579815799158001580115802158031580415805158061580715808158091581015811158121581315814158151581615817158181581915820158211582215823158241582515826158271582815829158301583115832158331583415835158361583715838158391584015841158421584315844158451584615847
  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. 525,
  13. 200
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1.3233532934131738
  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": "VisualisationIcon"
  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. "3": {
  192. "typename": {
  193. "type": "string",
  194. "value": "IconIcon"
  195. },
  196. "position": {
  197. "type": "list<double>",
  198. "value": [
  199. 750,
  200. 200
  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": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  217. },
  218. "parser": {
  219. "type": "code",
  220. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  221. },
  222. "$contents": {
  223. "type": "map<string,*>",
  224. "value": {
  225. "nodes": {
  226. "1": {
  227. "width": {
  228. "type": "double",
  229. "value": "200"
  230. },
  231. "height": {
  232. "type": "double",
  233. "value": "150"
  234. },
  235. "cornerRadius": {
  236. "type": "double",
  237. "value": "10"
  238. },
  239. "style": {
  240. "type": "map<string,string>",
  241. "value": {
  242. "stroke": "#000000",
  243. "stroke-dasharray": "- ",
  244. "fill": "#ffffff",
  245. "fill-opacity": 0.75,
  246. "stroke-width": 1
  247. }
  248. },
  249. "mapper": {
  250. "type": "code",
  251. "value": ""
  252. },
  253. "parser": {
  254. "type": "code",
  255. "value": ""
  256. },
  257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  258. "position": {
  259. "type": "list<double>",
  260. "value": [
  261. 0,
  262. 0
  263. ]
  264. },
  265. "orientation": {
  266. "type": "double",
  267. "value": 0
  268. },
  269. "scale": {
  270. "type": "list<double>",
  271. "value": [
  272. 1,
  273. 1
  274. ]
  275. }
  276. },
  277. "2": {
  278. "textContent": {
  279. "type": "string",
  280. "value": "InterruptIcon"
  281. },
  282. "style": {
  283. "type": "map<string,string>",
  284. "value": {
  285. "stroke": "#000000",
  286. "stroke-dasharray": "",
  287. "fill": "#000000",
  288. "fill-opacity": "1",
  289. "font-size": "13px"
  290. }
  291. },
  292. "mapper": {
  293. "type": "code",
  294. "value": "({\"textContent\":getAttr(\"typename\")})"
  295. },
  296. "parser": {
  297. "type": "code",
  298. "value": "({\"typename\":getAttr(\"textContent\")})"
  299. },
  300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  301. "position": {
  302. "type": "list<double>",
  303. "value": [
  304. 58,
  305. 151
  306. ]
  307. },
  308. "orientation": {
  309. "type": "double",
  310. "value": 0
  311. },
  312. "scale": {
  313. "type": "list<double>",
  314. "value": [
  315. 1,
  316. 1
  317. ]
  318. }
  319. },
  320. "3": {
  321. "distance": {
  322. "type": "double",
  323. "value": 0
  324. },
  325. "alignment": {
  326. "type": "ENUM(\"right\",\"left\",\"center\")",
  327. "value": "center"
  328. },
  329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  330. "position": {
  331. "type": "list<double>",
  332. "value": [
  333. 93.49899850809561,
  334. 137.49900000000002
  335. ]
  336. },
  337. "orientation": {
  338. "type": "double",
  339. "value": 0
  340. },
  341. "scale": {
  342. "type": "list<double>",
  343. "value": [
  344. 1,
  345. 1
  346. ]
  347. },
  348. "link-style": {
  349. "type": "map<string,string>",
  350. "value": {
  351. "stroke": "#00ff00",
  352. "stroke-dasharray": "",
  353. "stroke-opacity": 1,
  354. "arrow-start": "none",
  355. "arrow-end": "classic-wide-long"
  356. }
  357. }
  358. }
  359. },
  360. "edges": [
  361. {
  362. "src": "2",
  363. "dest": 3
  364. },
  365. {
  366. "src": 3,
  367. "dest": "1"
  368. }
  369. ]
  370. }
  371. },
  372. "$asuri": {
  373. "type": "string",
  374. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/3.instance"
  375. },
  376. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  377. },
  378. "4": {
  379. "typename": {
  380. "type": "string",
  381. "value": "IconIcon"
  382. },
  383. "position": {
  384. "type": "list<double>",
  385. "value": [
  386. 1200,
  387. 200
  388. ]
  389. },
  390. "orientation": {
  391. "type": "double",
  392. "value": 0
  393. },
  394. "scale": {
  395. "type": "list<double>",
  396. "value": [
  397. 1,
  398. 1
  399. ]
  400. },
  401. "mapper": {
  402. "type": "code",
  403. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  404. },
  405. "parser": {
  406. "type": "code",
  407. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  408. },
  409. "$contents": {
  410. "type": "map<string,*>",
  411. "value": {
  412. "nodes": {
  413. "1": {
  414. "width": {
  415. "type": "double",
  416. "value": "200"
  417. },
  418. "height": {
  419. "type": "double",
  420. "value": "150"
  421. },
  422. "cornerRadius": {
  423. "type": "double",
  424. "value": "10"
  425. },
  426. "style": {
  427. "type": "map<string,string>",
  428. "value": {
  429. "stroke": "#000000",
  430. "stroke-dasharray": "- ",
  431. "fill": "#ffffff",
  432. "fill-opacity": 0.75,
  433. "stroke-width": 1
  434. }
  435. },
  436. "mapper": {
  437. "type": "code",
  438. "value": ""
  439. },
  440. "parser": {
  441. "type": "code",
  442. "value": ""
  443. },
  444. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  445. "position": {
  446. "type": "list<double>",
  447. "value": [
  448. 0,
  449. 0
  450. ]
  451. },
  452. "orientation": {
  453. "type": "double",
  454. "value": 0
  455. },
  456. "scale": {
  457. "type": "list<double>",
  458. "value": [
  459. 1,
  460. 1
  461. ]
  462. }
  463. },
  464. "2": {
  465. "textContent": {
  466. "type": "string",
  467. "value": "TimeIcon"
  468. },
  469. "style": {
  470. "type": "map<string,string>",
  471. "value": {
  472. "stroke": "#000000",
  473. "stroke-dasharray": "",
  474. "fill": "#000000",
  475. "fill-opacity": "1",
  476. "font-size": "13px"
  477. }
  478. },
  479. "mapper": {
  480. "type": "code",
  481. "value": "({\"textContent\":getAttr(\"typename\")})"
  482. },
  483. "parser": {
  484. "type": "code",
  485. "value": "({\"typename\":getAttr(\"textContent\")})"
  486. },
  487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  488. "position": {
  489. "type": "list<double>",
  490. "value": [
  491. 58,
  492. 151
  493. ]
  494. },
  495. "orientation": {
  496. "type": "double",
  497. "value": 0
  498. },
  499. "scale": {
  500. "type": "list<double>",
  501. "value": [
  502. 1,
  503. 1
  504. ]
  505. }
  506. },
  507. "3": {
  508. "distance": {
  509. "type": "double",
  510. "value": 0
  511. },
  512. "alignment": {
  513. "type": "ENUM(\"right\",\"left\",\"center\")",
  514. "value": "center"
  515. },
  516. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  517. "position": {
  518. "type": "list<double>",
  519. "value": [
  520. 93.49899850809561,
  521. 137.49900000000002
  522. ]
  523. },
  524. "orientation": {
  525. "type": "double",
  526. "value": 0
  527. },
  528. "scale": {
  529. "type": "list<double>",
  530. "value": [
  531. 1,
  532. 1
  533. ]
  534. },
  535. "link-style": {
  536. "type": "map<string,string>",
  537. "value": {
  538. "stroke": "#00ff00",
  539. "stroke-dasharray": "",
  540. "stroke-opacity": 1,
  541. "arrow-start": "none",
  542. "arrow-end": "classic-wide-long"
  543. }
  544. }
  545. }
  546. },
  547. "edges": [
  548. {
  549. "src": "2",
  550. "dest": 3
  551. },
  552. {
  553. "src": 3,
  554. "dest": "1"
  555. }
  556. ]
  557. }
  558. },
  559. "$asuri": {
  560. "type": "string",
  561. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/4.instance"
  562. },
  563. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  564. },
  565. "5": {
  566. "typename": {
  567. "type": "string",
  568. "value": "LinkIcon"
  569. },
  570. "position": {
  571. "type": "list<double>",
  572. "value": [
  573. 846,
  574. 448
  575. ]
  576. },
  577. "orientation": {
  578. "type": "double",
  579. "value": 0
  580. },
  581. "scale": {
  582. "type": "list<double>",
  583. "value": [
  584. 1,
  585. 1
  586. ]
  587. },
  588. "mapper": {
  589. "type": "code",
  590. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  591. },
  592. "parser": {
  593. "type": "code",
  594. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  595. },
  596. "$contents": {
  597. "type": "map<string,*>",
  598. "value": {
  599. "nodes": {
  600. "92": {
  601. "textContent": {
  602. "type": "string",
  603. "value": "TimedTransitionLink"
  604. },
  605. "style": {
  606. "type": "map<string,string>",
  607. "value": {
  608. "stroke": "#000000",
  609. "stroke-dasharray": "",
  610. "fill": "#000000",
  611. "fill-opacity": "1",
  612. "font-size": "13px"
  613. }
  614. },
  615. "mapper": {
  616. "type": "code",
  617. "value": "({\"textContent\":getAttr(\"typename\")})"
  618. },
  619. "parser": {
  620. "type": "code",
  621. "value": "({\"typename\":getAttr(\"textContent\")})"
  622. },
  623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  624. "position": {
  625. "type": "list<double>",
  626. "value": [
  627. 56,
  628. 156
  629. ]
  630. },
  631. "orientation": {
  632. "type": "double",
  633. "value": 0
  634. },
  635. "scale": {
  636. "type": "list<double>",
  637. "value": [
  638. 1,
  639. 1
  640. ]
  641. }
  642. },
  643. "100": {
  644. "width": {
  645. "type": "double",
  646. "value": 250
  647. },
  648. "height": {
  649. "type": "double",
  650. "value": "150"
  651. },
  652. "cornerRadius": {
  653. "type": "double",
  654. "value": "10"
  655. },
  656. "style": {
  657. "type": "map<string,string>",
  658. "value": {
  659. "stroke": "#000000",
  660. "stroke-dasharray": ". ",
  661. "fill": "#ffffff",
  662. "fill-opacity": 0.75,
  663. "stroke-width": 1
  664. }
  665. },
  666. "mapper": {
  667. "type": "code",
  668. "value": ""
  669. },
  670. "parser": {
  671. "type": "code",
  672. "value": ""
  673. },
  674. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  675. "position": {
  676. "type": "list<double>",
  677. "value": [
  678. 3,
  679. 2
  680. ]
  681. },
  682. "orientation": {
  683. "type": "double",
  684. "value": 0
  685. },
  686. "scale": {
  687. "type": "list<double>",
  688. "value": [
  689. 1.0327000000000006,
  690. 1
  691. ]
  692. }
  693. },
  694. "122": {
  695. "distance": {
  696. "type": "double",
  697. "value": 0
  698. },
  699. "alignment": {
  700. "type": "ENUM('right','left','center')",
  701. "value": "center"
  702. },
  703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  704. "position": {
  705. "type": "list<double>",
  706. "value": [
  707. 82,
  708. 151.5
  709. ]
  710. },
  711. "orientation": {
  712. "type": "double",
  713. "value": 0
  714. },
  715. "scale": {
  716. "type": "list<double>",
  717. "value": [
  718. 1,
  719. 1
  720. ]
  721. },
  722. "link-style": {
  723. "type": "map<string,string>",
  724. "value": {
  725. "stroke": "#00ff00",
  726. "stroke-dasharray": "",
  727. "stroke-opacity": 1,
  728. "stroke-width": 1
  729. }
  730. }
  731. },
  732. "162": {
  733. "segments": {
  734. "type": "string",
  735. "value": "m0,0l198,0"
  736. },
  737. "style": {
  738. "type": "map<string,string>",
  739. "value": {
  740. "stroke": "#000000",
  741. "stroke-dasharray": "",
  742. "stroke-opacity": 1,
  743. "stroke-width": 2
  744. }
  745. },
  746. "mapper": {
  747. "type": "code",
  748. "value": "({'style':getAttr('link-style')})"
  749. },
  750. "parser": {
  751. "type": "code",
  752. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  753. },
  754. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  755. "position": {
  756. "type": "list<double>",
  757. "value": [
  758. 34,
  759. 77
  760. ]
  761. },
  762. "orientation": {
  763. "type": "double",
  764. "value": 0
  765. },
  766. "scale": {
  767. "type": "list<double>",
  768. "value": [
  769. 1,
  770. 1
  771. ]
  772. }
  773. },
  774. "195": {
  775. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  776. "position": {
  777. "type": "list<double>",
  778. "value": [
  779. 68.12999992296295,
  780. 39.57499995555554
  781. ]
  782. },
  783. "orientation": {
  784. "type": "double",
  785. "value": 0
  786. },
  787. "scale": {
  788. "type": "list<double>",
  789. "value": [
  790. 1,
  791. 1
  792. ]
  793. },
  794. "link-style": {
  795. "type": "map<string,string>",
  796. "value": {
  797. "stroke": "#00ffff",
  798. "stroke-dasharray": "",
  799. "stroke-opacity": 0.1,
  800. "stroke-width": 1
  801. }
  802. }
  803. },
  804. "267": {
  805. "segments": {
  806. "type": "string",
  807. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  808. },
  809. "style": {
  810. "type": "map<string,string>",
  811. "value": {
  812. "stroke": "#000000",
  813. "fill": "#000000",
  814. "opacity": 1,
  815. "stroke-width": 1
  816. }
  817. },
  818. "mapper": {
  819. "type": "code",
  820. "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})"
  821. },
  822. "parser": {
  823. "type": "code",
  824. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  825. },
  826. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  827. "position": {
  828. "type": "list<double>",
  829. "value": [
  830. 222,
  831. 73
  832. ]
  833. },
  834. "orientation": {
  835. "type": "double",
  836. "value": 0
  837. },
  838. "scale": {
  839. "type": "list<double>",
  840. "value": [
  841. 1,
  842. 1
  843. ]
  844. }
  845. },
  846. "268": {
  847. "segments": {
  848. "type": "string",
  849. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  850. },
  851. "style": {
  852. "type": "map<string,string>",
  853. "value": {
  854. "stroke": "#000000",
  855. "fill": "#000000",
  856. "opacity": 0,
  857. "stroke-width": 1
  858. }
  859. },
  860. "mapper": {
  861. "type": "code",
  862. "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})"
  863. },
  864. "parser": {
  865. "type": "code",
  866. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  867. },
  868. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  869. "position": {
  870. "type": "list<double>",
  871. "value": [
  872. 222,
  873. 67
  874. ]
  875. },
  876. "orientation": {
  877. "type": "double",
  878. "value": 0
  879. },
  880. "scale": {
  881. "type": "list<double>",
  882. "value": [
  883. 1,
  884. 1
  885. ]
  886. }
  887. },
  888. "269": {
  889. "r": {
  890. "type": "double",
  891. "value": 10
  892. },
  893. "style": {
  894. "type": "map<string,string>",
  895. "value": {
  896. "stroke": "#000000",
  897. "fill": "#000000",
  898. "opacity": 0,
  899. "stroke-width": 1
  900. }
  901. },
  902. "mapper": {
  903. "type": "code",
  904. "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})"
  905. },
  906. "parser": {
  907. "type": "code",
  908. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  909. },
  910. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  911. "position": {
  912. "type": "list<double>",
  913. "value": [
  914. 212,
  915. 67
  916. ]
  917. },
  918. "orientation": {
  919. "type": "double",
  920. "value": 0
  921. },
  922. "scale": {
  923. "type": "list<double>",
  924. "value": [
  925. 1,
  926. 1
  927. ]
  928. }
  929. },
  930. "270": {
  931. "r": {
  932. "type": "double",
  933. "value": 10
  934. },
  935. "style": {
  936. "type": "map<string,string>",
  937. "value": {
  938. "stroke": "#000000",
  939. "fill": "#ffffff",
  940. "opacity": 0,
  941. "stroke-width": 1
  942. }
  943. },
  944. "mapper": {
  945. "type": "code",
  946. "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})"
  947. },
  948. "parser": {
  949. "type": "code",
  950. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  951. },
  952. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  953. "position": {
  954. "type": "list<double>",
  955. "value": [
  956. 212,
  957. 67
  958. ]
  959. },
  960. "orientation": {
  961. "type": "double",
  962. "value": 0
  963. },
  964. "scale": {
  965. "type": "list<double>",
  966. "value": [
  967. 1,
  968. 1
  969. ]
  970. }
  971. },
  972. "271": {
  973. "r": {
  974. "type": "double",
  975. "value": 5
  976. },
  977. "style": {
  978. "type": "map<string,string>",
  979. "value": {
  980. "stroke": "#000000",
  981. "fill": "#000000",
  982. "opacity": 0,
  983. "stroke-width": 1
  984. }
  985. },
  986. "mapper": {
  987. "type": "code",
  988. "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})"
  989. },
  990. "parser": {
  991. "type": "code",
  992. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  993. },
  994. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  995. "position": {
  996. "type": "list<double>",
  997. "value": [
  998. 222,
  999. 72
  1000. ]
  1001. },
  1002. "orientation": {
  1003. "type": "double",
  1004. "value": 0
  1005. },
  1006. "scale": {
  1007. "type": "list<double>",
  1008. "value": [
  1009. 1,
  1010. 1
  1011. ]
  1012. }
  1013. },
  1014. "272": {
  1015. "segments": {
  1016. "type": "string",
  1017. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1018. },
  1019. "style": {
  1020. "type": "map<string,string>",
  1021. "value": {
  1022. "stroke": "#000000",
  1023. "fill": "#000000",
  1024. "opacity": 0,
  1025. "stroke-width": 1
  1026. }
  1027. },
  1028. "mapper": {
  1029. "type": "code",
  1030. "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})"
  1031. },
  1032. "parser": {
  1033. "type": "code",
  1034. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1035. },
  1036. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1037. "position": {
  1038. "type": "list<double>",
  1039. "value": [
  1040. 227,
  1041. 72
  1042. ]
  1043. },
  1044. "orientation": {
  1045. "type": "double",
  1046. "value": 0
  1047. },
  1048. "scale": {
  1049. "type": "list<double>",
  1050. "value": [
  1051. 1,
  1052. 1
  1053. ]
  1054. }
  1055. },
  1056. "273": {
  1057. "segments": {
  1058. "type": "string",
  1059. "value": "m0,0 l20,10 l-20,10 z"
  1060. },
  1061. "style": {
  1062. "type": "map<string,string>",
  1063. "value": {
  1064. "stroke": "#000000",
  1065. "fill": "#000000",
  1066. "opacity": 0,
  1067. "stroke-width": 1
  1068. }
  1069. },
  1070. "mapper": {
  1071. "type": "code",
  1072. "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})"
  1073. },
  1074. "parser": {
  1075. "type": "code",
  1076. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1077. },
  1078. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1079. "position": {
  1080. "type": "list<double>",
  1081. "value": [
  1082. 212,
  1083. 67
  1084. ]
  1085. },
  1086. "orientation": {
  1087. "type": "double",
  1088. "value": 0
  1089. },
  1090. "scale": {
  1091. "type": "list<double>",
  1092. "value": [
  1093. 1,
  1094. 1
  1095. ]
  1096. }
  1097. },
  1098. "274": {
  1099. "segments": {
  1100. "type": "string",
  1101. "value": "m0,0 l10,4 l-10,4 z"
  1102. },
  1103. "style": {
  1104. "type": "map<string,string>",
  1105. "value": {
  1106. "stroke": "#000000",
  1107. "fill": "#000000",
  1108. "opacity": 0,
  1109. "stroke-width": 1
  1110. }
  1111. },
  1112. "mapper": {
  1113. "type": "code",
  1114. "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})"
  1115. },
  1116. "parser": {
  1117. "type": "code",
  1118. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1119. },
  1120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1121. "position": {
  1122. "type": "list<double>",
  1123. "value": [
  1124. 222,
  1125. 73
  1126. ]
  1127. },
  1128. "orientation": {
  1129. "type": "double",
  1130. "value": 0
  1131. },
  1132. "scale": {
  1133. "type": "list<double>",
  1134. "value": [
  1135. 1,
  1136. 1
  1137. ]
  1138. }
  1139. },
  1140. "275": {
  1141. "segments": {
  1142. "type": "string",
  1143. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1144. },
  1145. "style": {
  1146. "type": "map<string,string>",
  1147. "value": {
  1148. "stroke": "#000000",
  1149. "fill": "#000000",
  1150. "opacity": 0,
  1151. "stroke-width": 1
  1152. }
  1153. },
  1154. "mapper": {
  1155. "type": "code",
  1156. "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})"
  1157. },
  1158. "parser": {
  1159. "type": "code",
  1160. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1161. },
  1162. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1163. "position": {
  1164. "type": "list<double>",
  1165. "value": [
  1166. 212,
  1167. 69
  1168. ]
  1169. },
  1170. "orientation": {
  1171. "type": "double",
  1172. "value": 0
  1173. },
  1174. "scale": {
  1175. "type": "list<double>",
  1176. "value": [
  1177. 1,
  1178. 1
  1179. ]
  1180. }
  1181. },
  1182. "276": {
  1183. "segments": {
  1184. "type": "string",
  1185. "value": "m0,0 l20,10 l-20,10 z"
  1186. },
  1187. "style": {
  1188. "type": "map<string,string>",
  1189. "value": {
  1190. "stroke": "#000000",
  1191. "fill": "#ffffff",
  1192. "opacity": 0,
  1193. "stroke-width": 1
  1194. }
  1195. },
  1196. "mapper": {
  1197. "type": "code",
  1198. "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})"
  1199. },
  1200. "parser": {
  1201. "type": "code",
  1202. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1203. },
  1204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1205. "position": {
  1206. "type": "list<double>",
  1207. "value": [
  1208. 212,
  1209. 67
  1210. ]
  1211. },
  1212. "orientation": {
  1213. "type": "double",
  1214. "value": 0
  1215. },
  1216. "scale": {
  1217. "type": "list<double>",
  1218. "value": [
  1219. 1,
  1220. 1
  1221. ]
  1222. }
  1223. },
  1224. "277": {
  1225. "segments": {
  1226. "type": "string",
  1227. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1228. },
  1229. "style": {
  1230. "type": "map<string,string>",
  1231. "value": {
  1232. "stroke": "#000000",
  1233. "fill": "#ffffff",
  1234. "opacity": 0,
  1235. "stroke-width": 1
  1236. }
  1237. },
  1238. "mapper": {
  1239. "type": "code",
  1240. "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})"
  1241. },
  1242. "parser": {
  1243. "type": "code",
  1244. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1245. },
  1246. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1247. "position": {
  1248. "type": "list<double>",
  1249. "value": [
  1250. 227,
  1251. 72
  1252. ]
  1253. },
  1254. "orientation": {
  1255. "type": "double",
  1256. "value": 0
  1257. },
  1258. "scale": {
  1259. "type": "list<double>",
  1260. "value": [
  1261. 1,
  1262. 1
  1263. ]
  1264. }
  1265. },
  1266. "278": {
  1267. "segments": {
  1268. "type": "string",
  1269. "value": "m0,0 l20,8 l-20,8"
  1270. },
  1271. "style": {
  1272. "type": "map<string,string>",
  1273. "value": {
  1274. "stroke": "#000000",
  1275. "fill": "#000000",
  1276. "fill-opacity": 0,
  1277. "stroke-width": 1,
  1278. "opacity": 0
  1279. }
  1280. },
  1281. "mapper": {
  1282. "type": "code",
  1283. "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})"
  1284. },
  1285. "parser": {
  1286. "type": "code",
  1287. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1288. },
  1289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1290. "position": {
  1291. "type": "list<double>",
  1292. "value": [
  1293. 212,
  1294. 69
  1295. ]
  1296. },
  1297. "orientation": {
  1298. "type": "double",
  1299. "value": 0
  1300. },
  1301. "scale": {
  1302. "type": "list<double>",
  1303. "value": [
  1304. 1,
  1305. 1
  1306. ]
  1307. }
  1308. },
  1309. "279": {
  1310. "r": {
  1311. "type": "double",
  1312. "value": 5
  1313. },
  1314. "style": {
  1315. "type": "map<string,string>",
  1316. "value": {
  1317. "stroke": "#000000",
  1318. "fill": "#ffffff",
  1319. "opacity": 0,
  1320. "stroke-width": 1
  1321. }
  1322. },
  1323. "mapper": {
  1324. "type": "code",
  1325. "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})"
  1326. },
  1327. "parser": {
  1328. "type": "code",
  1329. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1330. },
  1331. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1332. "position": {
  1333. "type": "list<double>",
  1334. "value": [
  1335. 222,
  1336. 72
  1337. ]
  1338. },
  1339. "orientation": {
  1340. "type": "double",
  1341. "value": 0
  1342. },
  1343. "scale": {
  1344. "type": "list<double>",
  1345. "value": [
  1346. 1,
  1347. 1
  1348. ]
  1349. }
  1350. },
  1351. "280": {
  1352. "segments": {
  1353. "type": "string",
  1354. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1355. },
  1356. "style": {
  1357. "type": "map<string,string>",
  1358. "value": {
  1359. "stroke": "#000000",
  1360. "fill": "#ffffff",
  1361. "opacity": 0,
  1362. "stroke-width": 1
  1363. }
  1364. },
  1365. "mapper": {
  1366. "type": "code",
  1367. "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})"
  1368. },
  1369. "parser": {
  1370. "type": "code",
  1371. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1372. },
  1373. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1374. "position": {
  1375. "type": "list<double>",
  1376. "value": [
  1377. 222,
  1378. 67
  1379. ]
  1380. },
  1381. "orientation": {
  1382. "type": "double",
  1383. "value": 0
  1384. },
  1385. "scale": {
  1386. "type": "list<double>",
  1387. "value": [
  1388. 1,
  1389. 1
  1390. ]
  1391. }
  1392. },
  1393. "281": {
  1394. "segments": {
  1395. "type": "string",
  1396. "value": "m0,0 l10,4 l-10,4"
  1397. },
  1398. "style": {
  1399. "type": "map<string,string>",
  1400. "value": {
  1401. "stroke": "#000000",
  1402. "fill": "#000000",
  1403. "fill-opacity": 0,
  1404. "stroke-width": 1,
  1405. "opacity": 0
  1406. }
  1407. },
  1408. "mapper": {
  1409. "type": "code",
  1410. "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})"
  1411. },
  1412. "parser": {
  1413. "type": "code",
  1414. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1415. },
  1416. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1417. "position": {
  1418. "type": "list<double>",
  1419. "value": [
  1420. 222,
  1421. 73
  1422. ]
  1423. },
  1424. "orientation": {
  1425. "type": "double",
  1426. "value": 0
  1427. },
  1428. "scale": {
  1429. "type": "list<double>",
  1430. "value": [
  1431. 1,
  1432. 1
  1433. ]
  1434. }
  1435. },
  1436. "282": {
  1437. "segments": {
  1438. "type": "string",
  1439. "value": "m0,0 l10,5 l-10,5 z"
  1440. },
  1441. "style": {
  1442. "type": "map<string,string>",
  1443. "value": {
  1444. "stroke": "#000000",
  1445. "fill": "#ffffff",
  1446. "opacity": 0,
  1447. "stroke-width": 1
  1448. }
  1449. },
  1450. "mapper": {
  1451. "type": "code",
  1452. "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})"
  1453. },
  1454. "parser": {
  1455. "type": "code",
  1456. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1457. },
  1458. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1459. "position": {
  1460. "type": "list<double>",
  1461. "value": [
  1462. 222,
  1463. 72
  1464. ]
  1465. },
  1466. "orientation": {
  1467. "type": "double",
  1468. "value": 0
  1469. },
  1470. "scale": {
  1471. "type": "list<double>",
  1472. "value": [
  1473. 1,
  1474. 1
  1475. ]
  1476. }
  1477. },
  1478. "283": {
  1479. "segments": {
  1480. "type": "string",
  1481. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1482. },
  1483. "style": {
  1484. "type": "map<string,string>",
  1485. "value": {
  1486. "stroke": "#000000",
  1487. "fill": "#ffffff",
  1488. "opacity": 0,
  1489. "stroke-width": 1
  1490. }
  1491. },
  1492. "mapper": {
  1493. "type": "code",
  1494. "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})"
  1495. },
  1496. "parser": {
  1497. "type": "code",
  1498. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1499. },
  1500. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1501. "position": {
  1502. "type": "list<double>",
  1503. "value": [
  1504. 39,
  1505. 72
  1506. ]
  1507. },
  1508. "orientation": {
  1509. "type": "double",
  1510. "value": 0
  1511. },
  1512. "scale": {
  1513. "type": "list<double>",
  1514. "value": [
  1515. 1,
  1516. 1
  1517. ]
  1518. }
  1519. },
  1520. "284": {
  1521. "segments": {
  1522. "type": "string",
  1523. "value": "m0,0 l-10,5 l10,5 z"
  1524. },
  1525. "style": {
  1526. "type": "map<string,string>",
  1527. "value": {
  1528. "stroke": "#000000",
  1529. "fill": "#ffffff",
  1530. "opacity": 0,
  1531. "stroke-width": 1
  1532. }
  1533. },
  1534. "mapper": {
  1535. "type": "code",
  1536. "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})"
  1537. },
  1538. "parser": {
  1539. "type": "code",
  1540. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1541. },
  1542. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1543. "position": {
  1544. "type": "list<double>",
  1545. "value": [
  1546. 43,
  1547. 72
  1548. ]
  1549. },
  1550. "orientation": {
  1551. "type": "double",
  1552. "value": 0
  1553. },
  1554. "scale": {
  1555. "type": "list<double>",
  1556. "value": [
  1557. 1,
  1558. 1
  1559. ]
  1560. }
  1561. },
  1562. "285": {
  1563. "segments": {
  1564. "type": "string",
  1565. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1566. },
  1567. "style": {
  1568. "type": "map<string,string>",
  1569. "value": {
  1570. "stroke": "#000000",
  1571. "fill": "#000000",
  1572. "opacity": 0,
  1573. "stroke-width": 1
  1574. }
  1575. },
  1576. "mapper": {
  1577. "type": "code",
  1578. "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})"
  1579. },
  1580. "parser": {
  1581. "type": "code",
  1582. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1583. },
  1584. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1585. "position": {
  1586. "type": "list<double>",
  1587. "value": [
  1588. 39,
  1589. 72
  1590. ]
  1591. },
  1592. "orientation": {
  1593. "type": "double",
  1594. "value": 0
  1595. },
  1596. "scale": {
  1597. "type": "list<double>",
  1598. "value": [
  1599. 1,
  1600. 1
  1601. ]
  1602. }
  1603. },
  1604. "286": {
  1605. "r": {
  1606. "type": "double",
  1607. "value": 10
  1608. },
  1609. "style": {
  1610. "type": "map<string,string>",
  1611. "value": {
  1612. "stroke": "#000000",
  1613. "fill": "#000000",
  1614. "opacity": 0,
  1615. "stroke-width": 1
  1616. }
  1617. },
  1618. "mapper": {
  1619. "type": "code",
  1620. "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})"
  1621. },
  1622. "parser": {
  1623. "type": "code",
  1624. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1625. },
  1626. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1627. "position": {
  1628. "type": "list<double>",
  1629. "value": [
  1630. 34,
  1631. 67
  1632. ]
  1633. },
  1634. "orientation": {
  1635. "type": "double",
  1636. "value": 0
  1637. },
  1638. "scale": {
  1639. "type": "list<double>",
  1640. "value": [
  1641. 1,
  1642. 1
  1643. ]
  1644. }
  1645. },
  1646. "287": {
  1647. "segments": {
  1648. "type": "string",
  1649. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1650. },
  1651. "style": {
  1652. "type": "map<string,string>",
  1653. "value": {
  1654. "stroke": "#000000",
  1655. "fill": "#000000",
  1656. "opacity": 0,
  1657. "stroke-width": 1
  1658. }
  1659. },
  1660. "mapper": {
  1661. "type": "code",
  1662. "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})"
  1663. },
  1664. "parser": {
  1665. "type": "code",
  1666. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1667. },
  1668. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1669. "position": {
  1670. "type": "list<double>",
  1671. "value": [
  1672. 54,
  1673. 69
  1674. ]
  1675. },
  1676. "orientation": {
  1677. "type": "double",
  1678. "value": 0
  1679. },
  1680. "scale": {
  1681. "type": "list<double>",
  1682. "value": [
  1683. 1,
  1684. 1
  1685. ]
  1686. }
  1687. },
  1688. "288": {
  1689. "segments": {
  1690. "type": "string",
  1691. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1692. },
  1693. "style": {
  1694. "type": "map<string,string>",
  1695. "value": {
  1696. "stroke": "#000000",
  1697. "fill": "#000000",
  1698. "opacity": 0,
  1699. "stroke-width": 1
  1700. }
  1701. },
  1702. "mapper": {
  1703. "type": "code",
  1704. "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})"
  1705. },
  1706. "parser": {
  1707. "type": "code",
  1708. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1709. },
  1710. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1711. "position": {
  1712. "type": "list<double>",
  1713. "value": [
  1714. 43,
  1715. 73
  1716. ]
  1717. },
  1718. "orientation": {
  1719. "type": "double",
  1720. "value": 0
  1721. },
  1722. "scale": {
  1723. "type": "list<double>",
  1724. "value": [
  1725. 1,
  1726. 1
  1727. ]
  1728. }
  1729. },
  1730. "289": {
  1731. "segments": {
  1732. "type": "string",
  1733. "value": "m0,0 l-20,10 l20,10 z"
  1734. },
  1735. "style": {
  1736. "type": "map<string,string>",
  1737. "value": {
  1738. "stroke": "#000000",
  1739. "fill": "#ffffff",
  1740. "opacity": 0,
  1741. "stroke-width": 1
  1742. }
  1743. },
  1744. "mapper": {
  1745. "type": "code",
  1746. "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})"
  1747. },
  1748. "parser": {
  1749. "type": "code",
  1750. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1751. },
  1752. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1753. "position": {
  1754. "type": "list<double>",
  1755. "value": [
  1756. 54,
  1757. 67
  1758. ]
  1759. },
  1760. "orientation": {
  1761. "type": "double",
  1762. "value": 0
  1763. },
  1764. "scale": {
  1765. "type": "list<double>",
  1766. "value": [
  1767. 1,
  1768. 1
  1769. ]
  1770. }
  1771. },
  1772. "290": {
  1773. "segments": {
  1774. "type": "string",
  1775. "value": "m0,0 l-20,10 l20,10 z"
  1776. },
  1777. "style": {
  1778. "type": "map<string,string>",
  1779. "value": {
  1780. "stroke": "#000000",
  1781. "fill": "#000000",
  1782. "opacity": 0,
  1783. "stroke-width": 1
  1784. }
  1785. },
  1786. "mapper": {
  1787. "type": "code",
  1788. "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})"
  1789. },
  1790. "parser": {
  1791. "type": "code",
  1792. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1793. },
  1794. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1795. "position": {
  1796. "type": "list<double>",
  1797. "value": [
  1798. 54,
  1799. 67
  1800. ]
  1801. },
  1802. "orientation": {
  1803. "type": "double",
  1804. "value": 0
  1805. },
  1806. "scale": {
  1807. "type": "list<double>",
  1808. "value": [
  1809. 1,
  1810. 1
  1811. ]
  1812. }
  1813. },
  1814. "291": {
  1815. "r": {
  1816. "type": "double",
  1817. "value": 5
  1818. },
  1819. "style": {
  1820. "type": "map<string,string>",
  1821. "value": {
  1822. "stroke": "#000000",
  1823. "fill": "#000000",
  1824. "opacity": 0,
  1825. "stroke-width": 1
  1826. }
  1827. },
  1828. "mapper": {
  1829. "type": "code",
  1830. "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})"
  1831. },
  1832. "parser": {
  1833. "type": "code",
  1834. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1835. },
  1836. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1837. "position": {
  1838. "type": "list<double>",
  1839. "value": [
  1840. 34,
  1841. 72
  1842. ]
  1843. },
  1844. "orientation": {
  1845. "type": "double",
  1846. "value": 0
  1847. },
  1848. "scale": {
  1849. "type": "list<double>",
  1850. "value": [
  1851. 1,
  1852. 1
  1853. ]
  1854. }
  1855. },
  1856. "292": {
  1857. "r": {
  1858. "type": "double",
  1859. "value": 5
  1860. },
  1861. "style": {
  1862. "type": "map<string,string>",
  1863. "value": {
  1864. "stroke": "#000000",
  1865. "fill": "#ffffff",
  1866. "opacity": 0,
  1867. "stroke-width": 1
  1868. }
  1869. },
  1870. "mapper": {
  1871. "type": "code",
  1872. "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})"
  1873. },
  1874. "parser": {
  1875. "type": "code",
  1876. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1877. },
  1878. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1879. "position": {
  1880. "type": "list<double>",
  1881. "value": [
  1882. 34,
  1883. 72
  1884. ]
  1885. },
  1886. "orientation": {
  1887. "type": "double",
  1888. "value": 0
  1889. },
  1890. "scale": {
  1891. "type": "list<double>",
  1892. "value": [
  1893. 1,
  1894. 1
  1895. ]
  1896. }
  1897. },
  1898. "293": {
  1899. "r": {
  1900. "type": "double",
  1901. "value": 10
  1902. },
  1903. "style": {
  1904. "type": "map<string,string>",
  1905. "value": {
  1906. "stroke": "#000000",
  1907. "fill": "#ffffff",
  1908. "opacity": 0,
  1909. "stroke-width": 1
  1910. }
  1911. },
  1912. "mapper": {
  1913. "type": "code",
  1914. "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})"
  1915. },
  1916. "parser": {
  1917. "type": "code",
  1918. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1919. },
  1920. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1921. "position": {
  1922. "type": "list<double>",
  1923. "value": [
  1924. 34,
  1925. 67
  1926. ]
  1927. },
  1928. "orientation": {
  1929. "type": "double",
  1930. "value": 0
  1931. },
  1932. "scale": {
  1933. "type": "list<double>",
  1934. "value": [
  1935. 1,
  1936. 1
  1937. ]
  1938. }
  1939. },
  1940. "294": {
  1941. "segments": {
  1942. "type": "string",
  1943. "value": "m0,0 l-20,8 l20,8"
  1944. },
  1945. "style": {
  1946. "type": "map<string,string>",
  1947. "value": {
  1948. "stroke": "#000000",
  1949. "fill": "#000000",
  1950. "fill-opacity": 0,
  1951. "stroke-width": 1,
  1952. "opacity": 0
  1953. }
  1954. },
  1955. "mapper": {
  1956. "type": "code",
  1957. "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})"
  1958. },
  1959. "parser": {
  1960. "type": "code",
  1961. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1962. },
  1963. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1964. "position": {
  1965. "type": "list<double>",
  1966. "value": [
  1967. 54,
  1968. 69
  1969. ]
  1970. },
  1971. "orientation": {
  1972. "type": "double",
  1973. "value": 0
  1974. },
  1975. "scale": {
  1976. "type": "list<double>",
  1977. "value": [
  1978. 1,
  1979. 1
  1980. ]
  1981. }
  1982. },
  1983. "295": {
  1984. "segments": {
  1985. "type": "string",
  1986. "value": "m0,0 l-10,4 l10,4"
  1987. },
  1988. "style": {
  1989. "type": "map<string,string>",
  1990. "value": {
  1991. "stroke": "#000000",
  1992. "fill": "#000000",
  1993. "fill-opacity": 0,
  1994. "stroke-width": 1,
  1995. "opacity": 0
  1996. }
  1997. },
  1998. "mapper": {
  1999. "type": "code",
  2000. "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})"
  2001. },
  2002. "parser": {
  2003. "type": "code",
  2004. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2005. },
  2006. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2007. "position": {
  2008. "type": "list<double>",
  2009. "value": [
  2010. 43,
  2011. 73
  2012. ]
  2013. },
  2014. "orientation": {
  2015. "type": "double",
  2016. "value": 0
  2017. },
  2018. "scale": {
  2019. "type": "list<double>",
  2020. "value": [
  2021. 1,
  2022. 1
  2023. ]
  2024. }
  2025. },
  2026. "296": {
  2027. "segments": {
  2028. "type": "string",
  2029. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2030. },
  2031. "style": {
  2032. "type": "map<string,string>",
  2033. "value": {
  2034. "stroke": "#000000",
  2035. "fill": "#000000",
  2036. "opacity": 0,
  2037. "stroke-width": 1
  2038. }
  2039. },
  2040. "mapper": {
  2041. "type": "code",
  2042. "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})"
  2043. },
  2044. "parser": {
  2045. "type": "code",
  2046. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2047. },
  2048. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2049. "position": {
  2050. "type": "list<double>",
  2051. "value": [
  2052. 43,
  2053. 67
  2054. ]
  2055. },
  2056. "orientation": {
  2057. "type": "double",
  2058. "value": 0
  2059. },
  2060. "scale": {
  2061. "type": "list<double>",
  2062. "value": [
  2063. 1,
  2064. 1
  2065. ]
  2066. }
  2067. },
  2068. "297": {
  2069. "segments": {
  2070. "type": "string",
  2071. "value": "m0,0 l-10,4 l10,4 z"
  2072. },
  2073. "style": {
  2074. "type": "map<string,string>",
  2075. "value": {
  2076. "stroke": "#000000",
  2077. "fill": "#000000",
  2078. "opacity": 0,
  2079. "stroke-width": 1
  2080. }
  2081. },
  2082. "mapper": {
  2083. "type": "code",
  2084. "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})"
  2085. },
  2086. "parser": {
  2087. "type": "code",
  2088. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2089. },
  2090. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2091. "position": {
  2092. "type": "list<double>",
  2093. "value": [
  2094. 43,
  2095. 73
  2096. ]
  2097. },
  2098. "orientation": {
  2099. "type": "double",
  2100. "value": 0
  2101. },
  2102. "scale": {
  2103. "type": "list<double>",
  2104. "value": [
  2105. 1,
  2106. 1
  2107. ]
  2108. }
  2109. },
  2110. "298": {
  2111. "segments": {
  2112. "type": "string",
  2113. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2114. },
  2115. "style": {
  2116. "type": "map<string,string>",
  2117. "value": {
  2118. "stroke": "#000000",
  2119. "fill": "#ffffff",
  2120. "opacity": 0,
  2121. "stroke-width": 1
  2122. }
  2123. },
  2124. "mapper": {
  2125. "type": "code",
  2126. "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})"
  2127. },
  2128. "parser": {
  2129. "type": "code",
  2130. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2131. },
  2132. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2133. "position": {
  2134. "type": "list<double>",
  2135. "value": [
  2136. 43,
  2137. 67
  2138. ]
  2139. },
  2140. "orientation": {
  2141. "type": "double",
  2142. "value": 0
  2143. },
  2144. "scale": {
  2145. "type": "list<double>",
  2146. "value": [
  2147. 1,
  2148. 1
  2149. ]
  2150. }
  2151. },
  2152. "299": {
  2153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2154. "position": {
  2155. "type": "list<double>",
  2156. "value": [
  2157. 114.64294868314005,
  2158. 39.04743588588505
  2159. ]
  2160. },
  2161. "orientation": {
  2162. "type": "double",
  2163. "value": 0
  2164. },
  2165. "scale": {
  2166. "type": "list<double>",
  2167. "value": [
  2168. 1,
  2169. 1
  2170. ]
  2171. },
  2172. "link-style": {
  2173. "type": "map<string,string>",
  2174. "value": {
  2175. "stroke": "#00ffff",
  2176. "stroke-dasharray": "",
  2177. "stroke-opacity": 0.1,
  2178. "stroke-width": 1
  2179. }
  2180. }
  2181. },
  2182. "300": {
  2183. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2184. "position": {
  2185. "type": "list<double>",
  2186. "value": [
  2187. 117.14309620090773,
  2188. 39.046443503803374
  2189. ]
  2190. },
  2191. "orientation": {
  2192. "type": "double",
  2193. "value": 0
  2194. },
  2195. "scale": {
  2196. "type": "list<double>",
  2197. "value": [
  2198. 1,
  2199. 1
  2200. ]
  2201. },
  2202. "link-style": {
  2203. "type": "map<string,string>",
  2204. "value": {
  2205. "stroke": "#00ffff",
  2206. "stroke-dasharray": "",
  2207. "stroke-opacity": 0.1,
  2208. "stroke-width": 1
  2209. }
  2210. }
  2211. },
  2212. "301": {
  2213. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2214. "position": {
  2215. "type": "list<double>",
  2216. "value": [
  2217. 112,
  2218. 39
  2219. ]
  2220. },
  2221. "orientation": {
  2222. "type": "double",
  2223. "value": 0
  2224. },
  2225. "scale": {
  2226. "type": "list<double>",
  2227. "value": [
  2228. 1,
  2229. 1
  2230. ]
  2231. },
  2232. "link-style": {
  2233. "type": "map<string,string>",
  2234. "value": {
  2235. "stroke": "#00ffff",
  2236. "stroke-dasharray": "",
  2237. "stroke-opacity": 0.1,
  2238. "stroke-width": 1
  2239. }
  2240. }
  2241. },
  2242. "302": {
  2243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2244. "position": {
  2245. "type": "list<double>",
  2246. "value": [
  2247. 112,
  2248. 39
  2249. ]
  2250. },
  2251. "orientation": {
  2252. "type": "double",
  2253. "value": 0
  2254. },
  2255. "scale": {
  2256. "type": "list<double>",
  2257. "value": [
  2258. 1,
  2259. 1
  2260. ]
  2261. },
  2262. "link-style": {
  2263. "type": "map<string,string>",
  2264. "value": {
  2265. "stroke": "#00ffff",
  2266. "stroke-dasharray": "",
  2267. "stroke-opacity": 0.1,
  2268. "stroke-width": 1
  2269. }
  2270. }
  2271. },
  2272. "303": {
  2273. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2274. "position": {
  2275. "type": "list<double>",
  2276. "value": [
  2277. 114.64294868314005,
  2278. 39.04743588588505
  2279. ]
  2280. },
  2281. "orientation": {
  2282. "type": "double",
  2283. "value": 0
  2284. },
  2285. "scale": {
  2286. "type": "list<double>",
  2287. "value": [
  2288. 1,
  2289. 1
  2290. ]
  2291. },
  2292. "link-style": {
  2293. "type": "map<string,string>",
  2294. "value": {
  2295. "stroke": "#00ffff",
  2296. "stroke-dasharray": "",
  2297. "stroke-opacity": 0.1,
  2298. "stroke-width": 1
  2299. }
  2300. }
  2301. },
  2302. "304": {
  2303. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2304. "position": {
  2305. "type": "list<double>",
  2306. "value": [
  2307. 117.14309620090773,
  2308. 39.046443503803374
  2309. ]
  2310. },
  2311. "orientation": {
  2312. "type": "double",
  2313. "value": 0
  2314. },
  2315. "scale": {
  2316. "type": "list<double>",
  2317. "value": [
  2318. 1,
  2319. 1
  2320. ]
  2321. },
  2322. "link-style": {
  2323. "type": "map<string,string>",
  2324. "value": {
  2325. "stroke": "#00ffff",
  2326. "stroke-dasharray": "",
  2327. "stroke-opacity": 0.1,
  2328. "stroke-width": 1
  2329. }
  2330. }
  2331. },
  2332. "305": {
  2333. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2334. "position": {
  2335. "type": "list<double>",
  2336. "value": [
  2337. 112,
  2338. 39
  2339. ]
  2340. },
  2341. "orientation": {
  2342. "type": "double",
  2343. "value": 0
  2344. },
  2345. "scale": {
  2346. "type": "list<double>",
  2347. "value": [
  2348. 1,
  2349. 1
  2350. ]
  2351. },
  2352. "link-style": {
  2353. "type": "map<string,string>",
  2354. "value": {
  2355. "stroke": "#00ffff",
  2356. "stroke-dasharray": "",
  2357. "stroke-opacity": 0.1,
  2358. "stroke-width": 1
  2359. }
  2360. }
  2361. },
  2362. "306": {
  2363. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2364. "position": {
  2365. "type": "list<double>",
  2366. "value": [
  2367. 114.64294868314005,
  2368. 39.04743588588505
  2369. ]
  2370. },
  2371. "orientation": {
  2372. "type": "double",
  2373. "value": 0
  2374. },
  2375. "scale": {
  2376. "type": "list<double>",
  2377. "value": [
  2378. 1,
  2379. 1
  2380. ]
  2381. },
  2382. "link-style": {
  2383. "type": "map<string,string>",
  2384. "value": {
  2385. "stroke": "#00ffff",
  2386. "stroke-dasharray": "",
  2387. "stroke-opacity": 0.1,
  2388. "stroke-width": 1
  2389. }
  2390. }
  2391. },
  2392. "307": {
  2393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2394. "position": {
  2395. "type": "list<double>",
  2396. "value": [
  2397. 112,
  2398. 39
  2399. ]
  2400. },
  2401. "orientation": {
  2402. "type": "double",
  2403. "value": 0
  2404. },
  2405. "scale": {
  2406. "type": "list<double>",
  2407. "value": [
  2408. 1,
  2409. 1
  2410. ]
  2411. },
  2412. "link-style": {
  2413. "type": "map<string,string>",
  2414. "value": {
  2415. "stroke": "#00ffff",
  2416. "stroke-dasharray": "",
  2417. "stroke-opacity": 0.1,
  2418. "stroke-width": 1
  2419. }
  2420. }
  2421. },
  2422. "308": {
  2423. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2424. "position": {
  2425. "type": "list<double>",
  2426. "value": [
  2427. 112,
  2428. 39
  2429. ]
  2430. },
  2431. "orientation": {
  2432. "type": "double",
  2433. "value": 0
  2434. },
  2435. "scale": {
  2436. "type": "list<double>",
  2437. "value": [
  2438. 1,
  2439. 1
  2440. ]
  2441. },
  2442. "link-style": {
  2443. "type": "map<string,string>",
  2444. "value": {
  2445. "stroke": "#00ffff",
  2446. "stroke-dasharray": "",
  2447. "stroke-opacity": 0.1,
  2448. "stroke-width": 1
  2449. }
  2450. }
  2451. },
  2452. "309": {
  2453. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2454. "position": {
  2455. "type": "list<double>",
  2456. "value": [
  2457. 117.14309620090773,
  2458. 39.046443503803374
  2459. ]
  2460. },
  2461. "orientation": {
  2462. "type": "double",
  2463. "value": 0
  2464. },
  2465. "scale": {
  2466. "type": "list<double>",
  2467. "value": [
  2468. 1,
  2469. 1
  2470. ]
  2471. },
  2472. "link-style": {
  2473. "type": "map<string,string>",
  2474. "value": {
  2475. "stroke": "#00ffff",
  2476. "stroke-dasharray": "",
  2477. "stroke-opacity": 0.1,
  2478. "stroke-width": 1
  2479. }
  2480. }
  2481. },
  2482. "310": {
  2483. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2484. "position": {
  2485. "type": "list<double>",
  2486. "value": [
  2487. 112,
  2488. 39
  2489. ]
  2490. },
  2491. "orientation": {
  2492. "type": "double",
  2493. "value": 0
  2494. },
  2495. "scale": {
  2496. "type": "list<double>",
  2497. "value": [
  2498. 1,
  2499. 1
  2500. ]
  2501. },
  2502. "link-style": {
  2503. "type": "map<string,string>",
  2504. "value": {
  2505. "stroke": "#00ffff",
  2506. "stroke-dasharray": "",
  2507. "stroke-opacity": 0.1,
  2508. "stroke-width": 1
  2509. }
  2510. }
  2511. },
  2512. "311": {
  2513. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2514. "position": {
  2515. "type": "list<double>",
  2516. "value": [
  2517. 114.64294868314005,
  2518. 39.04743588588505
  2519. ]
  2520. },
  2521. "orientation": {
  2522. "type": "double",
  2523. "value": 0
  2524. },
  2525. "scale": {
  2526. "type": "list<double>",
  2527. "value": [
  2528. 1,
  2529. 1
  2530. ]
  2531. },
  2532. "link-style": {
  2533. "type": "map<string,string>",
  2534. "value": {
  2535. "stroke": "#00ffff",
  2536. "stroke-dasharray": "",
  2537. "stroke-opacity": 0.1,
  2538. "stroke-width": 1
  2539. }
  2540. }
  2541. },
  2542. "312": {
  2543. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2544. "position": {
  2545. "type": "list<double>",
  2546. "value": [
  2547. 117.14309620090773,
  2548. 39.046443503803374
  2549. ]
  2550. },
  2551. "orientation": {
  2552. "type": "double",
  2553. "value": 0
  2554. },
  2555. "scale": {
  2556. "type": "list<double>",
  2557. "value": [
  2558. 1,
  2559. 1
  2560. ]
  2561. },
  2562. "link-style": {
  2563. "type": "map<string,string>",
  2564. "value": {
  2565. "stroke": "#00ffff",
  2566. "stroke-dasharray": "",
  2567. "stroke-opacity": 0.1,
  2568. "stroke-width": 1
  2569. }
  2570. }
  2571. },
  2572. "313": {
  2573. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2574. "position": {
  2575. "type": "list<double>",
  2576. "value": [
  2577. 114.64294868314005,
  2578. 39.04743588588505
  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. "link-style": {
  2593. "type": "map<string,string>",
  2594. "value": {
  2595. "stroke": "#00ffff",
  2596. "stroke-dasharray": "",
  2597. "stroke-opacity": 0.1,
  2598. "stroke-width": 1
  2599. }
  2600. }
  2601. },
  2602. "314": {
  2603. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2604. "position": {
  2605. "type": "list<double>",
  2606. "value": [
  2607. 114.64294868314005,
  2608. 39.04743588588505
  2609. ]
  2610. },
  2611. "orientation": {
  2612. "type": "double",
  2613. "value": 0
  2614. },
  2615. "scale": {
  2616. "type": "list<double>",
  2617. "value": [
  2618. 1,
  2619. 1
  2620. ]
  2621. },
  2622. "link-style": {
  2623. "type": "map<string,string>",
  2624. "value": {
  2625. "stroke": "#00ffff",
  2626. "stroke-dasharray": "",
  2627. "stroke-opacity": 0.1,
  2628. "stroke-width": 1
  2629. }
  2630. }
  2631. },
  2632. "315": {
  2633. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2634. "position": {
  2635. "type": "list<double>",
  2636. "value": [
  2637. 23.5,
  2638. 39
  2639. ]
  2640. },
  2641. "orientation": {
  2642. "type": "double",
  2643. "value": 0
  2644. },
  2645. "scale": {
  2646. "type": "list<double>",
  2647. "value": [
  2648. 1,
  2649. 1
  2650. ]
  2651. },
  2652. "link-style": {
  2653. "type": "map<string,string>",
  2654. "value": {
  2655. "stroke": "#00ffff",
  2656. "stroke-dasharray": "",
  2657. "stroke-opacity": 0.1,
  2658. "stroke-width": 1
  2659. }
  2660. }
  2661. },
  2662. "316": {
  2663. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2664. "position": {
  2665. "type": "list<double>",
  2666. "value": [
  2667. 25.578488230596065,
  2668. 39.129069534757946
  2669. ]
  2670. },
  2671. "orientation": {
  2672. "type": "double",
  2673. "value": 0
  2674. },
  2675. "scale": {
  2676. "type": "list<double>",
  2677. "value": [
  2678. 1,
  2679. 1
  2680. ]
  2681. },
  2682. "link-style": {
  2683. "type": "map<string,string>",
  2684. "value": {
  2685. "stroke": "#00ffff",
  2686. "stroke-dasharray": "",
  2687. "stroke-opacity": 0.1,
  2688. "stroke-width": 1
  2689. }
  2690. }
  2691. },
  2692. "317": {
  2693. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2694. "position": {
  2695. "type": "list<double>",
  2696. "value": [
  2697. 23.5,
  2698. 39
  2699. ]
  2700. },
  2701. "orientation": {
  2702. "type": "double",
  2703. "value": 0
  2704. },
  2705. "scale": {
  2706. "type": "list<double>",
  2707. "value": [
  2708. 1,
  2709. 1
  2710. ]
  2711. },
  2712. "link-style": {
  2713. "type": "map<string,string>",
  2714. "value": {
  2715. "stroke": "#00ffff",
  2716. "stroke-dasharray": "",
  2717. "stroke-opacity": 0.1,
  2718. "stroke-width": 1
  2719. }
  2720. }
  2721. },
  2722. "318": {
  2723. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2724. "position": {
  2725. "type": "list<double>",
  2726. "value": [
  2727. 23.5,
  2728. 39
  2729. ]
  2730. },
  2731. "orientation": {
  2732. "type": "double",
  2733. "value": 0
  2734. },
  2735. "scale": {
  2736. "type": "list<double>",
  2737. "value": [
  2738. 1,
  2739. 1
  2740. ]
  2741. },
  2742. "link-style": {
  2743. "type": "map<string,string>",
  2744. "value": {
  2745. "stroke": "#00ffff",
  2746. "stroke-dasharray": "",
  2747. "stroke-opacity": 0.1,
  2748. "stroke-width": 1
  2749. }
  2750. }
  2751. },
  2752. "319": {
  2753. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2754. "position": {
  2755. "type": "list<double>",
  2756. "value": [
  2757. 33.596315647178926,
  2758. 39.11684193264324
  2759. ]
  2760. },
  2761. "orientation": {
  2762. "type": "double",
  2763. "value": 0
  2764. },
  2765. "scale": {
  2766. "type": "list<double>",
  2767. "value": [
  2768. 1,
  2769. 1
  2770. ]
  2771. },
  2772. "link-style": {
  2773. "type": "map<string,string>",
  2774. "value": {
  2775. "stroke": "#00ffff",
  2776. "stroke-dasharray": "",
  2777. "stroke-opacity": 0.1,
  2778. "stroke-width": 1
  2779. }
  2780. }
  2781. },
  2782. "320": {
  2783. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2784. "position": {
  2785. "type": "list<double>",
  2786. "value": [
  2787. 25.578488230596065,
  2788. 39.129069534757946
  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. "link-style": {
  2803. "type": "map<string,string>",
  2804. "value": {
  2805. "stroke": "#00ffff",
  2806. "stroke-dasharray": "",
  2807. "stroke-opacity": 0.1,
  2808. "stroke-width": 1
  2809. }
  2810. }
  2811. },
  2812. "321": {
  2813. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2814. "position": {
  2815. "type": "list<double>",
  2816. "value": [
  2817. 33.596315647178926,
  2818. 39.11684193264324
  2819. ]
  2820. },
  2821. "orientation": {
  2822. "type": "double",
  2823. "value": 0
  2824. },
  2825. "scale": {
  2826. "type": "list<double>",
  2827. "value": [
  2828. 1,
  2829. 1
  2830. ]
  2831. },
  2832. "link-style": {
  2833. "type": "map<string,string>",
  2834. "value": {
  2835. "stroke": "#00ffff",
  2836. "stroke-dasharray": "",
  2837. "stroke-opacity": 0.1,
  2838. "stroke-width": 1
  2839. }
  2840. }
  2841. },
  2842. "322": {
  2843. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2844. "position": {
  2845. "type": "list<double>",
  2846. "value": [
  2847. 33.596315647178926,
  2848. 39.11684193264324
  2849. ]
  2850. },
  2851. "orientation": {
  2852. "type": "double",
  2853. "value": 0
  2854. },
  2855. "scale": {
  2856. "type": "list<double>",
  2857. "value": [
  2858. 1,
  2859. 1
  2860. ]
  2861. },
  2862. "link-style": {
  2863. "type": "map<string,string>",
  2864. "value": {
  2865. "stroke": "#00ffff",
  2866. "stroke-dasharray": "",
  2867. "stroke-opacity": 0.1,
  2868. "stroke-width": 1
  2869. }
  2870. }
  2871. },
  2872. "323": {
  2873. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2874. "position": {
  2875. "type": "list<double>",
  2876. "value": [
  2877. 21,
  2878. 39
  2879. ]
  2880. },
  2881. "orientation": {
  2882. "type": "double",
  2883. "value": 0
  2884. },
  2885. "scale": {
  2886. "type": "list<double>",
  2887. "value": [
  2888. 1,
  2889. 1
  2890. ]
  2891. },
  2892. "link-style": {
  2893. "type": "map<string,string>",
  2894. "value": {
  2895. "stroke": "#00ffff",
  2896. "stroke-dasharray": "",
  2897. "stroke-opacity": 0.1,
  2898. "stroke-width": 1
  2899. }
  2900. }
  2901. },
  2902. "324": {
  2903. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2904. "position": {
  2905. "type": "list<double>",
  2906. "value": [
  2907. 21,
  2908. 39
  2909. ]
  2910. },
  2911. "orientation": {
  2912. "type": "double",
  2913. "value": 0
  2914. },
  2915. "scale": {
  2916. "type": "list<double>",
  2917. "value": [
  2918. 1,
  2919. 1
  2920. ]
  2921. },
  2922. "link-style": {
  2923. "type": "map<string,string>",
  2924. "value": {
  2925. "stroke": "#00ffff",
  2926. "stroke-dasharray": "",
  2927. "stroke-opacity": 0.1,
  2928. "stroke-width": 1
  2929. }
  2930. }
  2931. },
  2932. "325": {
  2933. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2934. "position": {
  2935. "type": "list<double>",
  2936. "value": [
  2937. 23.5,
  2938. 39
  2939. ]
  2940. },
  2941. "orientation": {
  2942. "type": "double",
  2943. "value": 0
  2944. },
  2945. "scale": {
  2946. "type": "list<double>",
  2947. "value": [
  2948. 1,
  2949. 1
  2950. ]
  2951. },
  2952. "link-style": {
  2953. "type": "map<string,string>",
  2954. "value": {
  2955. "stroke": "#00ffff",
  2956. "stroke-dasharray": "",
  2957. "stroke-opacity": 0.1,
  2958. "stroke-width": 1
  2959. }
  2960. }
  2961. },
  2962. "326": {
  2963. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2964. "position": {
  2965. "type": "list<double>",
  2966. "value": [
  2967. 33.596315647178926,
  2968. 39.11684193264324
  2969. ]
  2970. },
  2971. "orientation": {
  2972. "type": "double",
  2973. "value": 0
  2974. },
  2975. "scale": {
  2976. "type": "list<double>",
  2977. "value": [
  2978. 1,
  2979. 1
  2980. ]
  2981. },
  2982. "link-style": {
  2983. "type": "map<string,string>",
  2984. "value": {
  2985. "stroke": "#00ffff",
  2986. "stroke-dasharray": "",
  2987. "stroke-opacity": 0.1,
  2988. "stroke-width": 1
  2989. }
  2990. }
  2991. },
  2992. "327": {
  2993. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2994. "position": {
  2995. "type": "list<double>",
  2996. "value": [
  2997. 25.578488230596065,
  2998. 39.129069534757946
  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. "link-style": {
  3013. "type": "map<string,string>",
  3014. "value": {
  3015. "stroke": "#00ffff",
  3016. "stroke-dasharray": "",
  3017. "stroke-opacity": 0.1,
  3018. "stroke-width": 1
  3019. }
  3020. }
  3021. },
  3022. "328": {
  3023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3024. "position": {
  3025. "type": "list<double>",
  3026. "value": [
  3027. 28.08426952107112,
  3028. 39.124718891185296
  3029. ]
  3030. },
  3031. "orientation": {
  3032. "type": "double",
  3033. "value": 0
  3034. },
  3035. "scale": {
  3036. "type": "list<double>",
  3037. "value": [
  3038. 1,
  3039. 1
  3040. ]
  3041. },
  3042. "link-style": {
  3043. "type": "map<string,string>",
  3044. "value": {
  3045. "stroke": "#00ffff",
  3046. "stroke-dasharray": "",
  3047. "stroke-opacity": 0.1,
  3048. "stroke-width": 1
  3049. }
  3050. }
  3051. },
  3052. "329": {
  3053. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3054. "position": {
  3055. "type": "list<double>",
  3056. "value": [
  3057. 25.578488230596065,
  3058. 39.129069534757946
  3059. ]
  3060. },
  3061. "orientation": {
  3062. "type": "double",
  3063. "value": 0
  3064. },
  3065. "scale": {
  3066. "type": "list<double>",
  3067. "value": [
  3068. 1,
  3069. 1
  3070. ]
  3071. },
  3072. "link-style": {
  3073. "type": "map<string,string>",
  3074. "value": {
  3075. "stroke": "#00ffff",
  3076. "stroke-dasharray": "",
  3077. "stroke-opacity": 0.1,
  3078. "stroke-width": 1
  3079. }
  3080. }
  3081. },
  3082. "330": {
  3083. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3084. "position": {
  3085. "type": "list<double>",
  3086. "value": [
  3087. 28.08426952107112,
  3088. 39.124718891185296
  3089. ]
  3090. },
  3091. "orientation": {
  3092. "type": "double",
  3093. "value": 0
  3094. },
  3095. "scale": {
  3096. "type": "list<double>",
  3097. "value": [
  3098. 1,
  3099. 1
  3100. ]
  3101. },
  3102. "link-style": {
  3103. "type": "map<string,string>",
  3104. "value": {
  3105. "stroke": "#00ffff",
  3106. "stroke-dasharray": "",
  3107. "stroke-opacity": 0.1,
  3108. "stroke-width": 1
  3109. }
  3110. }
  3111. }
  3112. },
  3113. "edges": [
  3114. {
  3115. "src": "92",
  3116. "dest": "122"
  3117. },
  3118. {
  3119. "src": "122",
  3120. "dest": "100"
  3121. },
  3122. {
  3123. "src": "100",
  3124. "dest": "195"
  3125. },
  3126. {
  3127. "src": "195",
  3128. "dest": "162"
  3129. },
  3130. {
  3131. "src": "100",
  3132. "dest": "299"
  3133. },
  3134. {
  3135. "src": "299",
  3136. "dest": "267"
  3137. },
  3138. {
  3139. "src": "100",
  3140. "dest": "300"
  3141. },
  3142. {
  3143. "src": "300",
  3144. "dest": "268"
  3145. },
  3146. {
  3147. "src": "100",
  3148. "dest": "301"
  3149. },
  3150. {
  3151. "src": "301",
  3152. "dest": "269"
  3153. },
  3154. {
  3155. "src": "100",
  3156. "dest": "302"
  3157. },
  3158. {
  3159. "src": "302",
  3160. "dest": "270"
  3161. },
  3162. {
  3163. "src": "100",
  3164. "dest": "303"
  3165. },
  3166. {
  3167. "src": "303",
  3168. "dest": "271"
  3169. },
  3170. {
  3171. "src": "100",
  3172. "dest": "304"
  3173. },
  3174. {
  3175. "src": "304",
  3176. "dest": "272"
  3177. },
  3178. {
  3179. "src": "100",
  3180. "dest": "305"
  3181. },
  3182. {
  3183. "src": "305",
  3184. "dest": "273"
  3185. },
  3186. {
  3187. "src": "100",
  3188. "dest": "306"
  3189. },
  3190. {
  3191. "src": "306",
  3192. "dest": "274"
  3193. },
  3194. {
  3195. "src": "100",
  3196. "dest": "307"
  3197. },
  3198. {
  3199. "src": "307",
  3200. "dest": "275"
  3201. },
  3202. {
  3203. "src": "100",
  3204. "dest": "308"
  3205. },
  3206. {
  3207. "src": "308",
  3208. "dest": "276"
  3209. },
  3210. {
  3211. "src": "100",
  3212. "dest": "309"
  3213. },
  3214. {
  3215. "src": "309",
  3216. "dest": "277"
  3217. },
  3218. {
  3219. "src": "100",
  3220. "dest": "310"
  3221. },
  3222. {
  3223. "src": "310",
  3224. "dest": "278"
  3225. },
  3226. {
  3227. "src": "100",
  3228. "dest": "311"
  3229. },
  3230. {
  3231. "src": "311",
  3232. "dest": "279"
  3233. },
  3234. {
  3235. "src": "100",
  3236. "dest": "312"
  3237. },
  3238. {
  3239. "src": "312",
  3240. "dest": "280"
  3241. },
  3242. {
  3243. "src": "100",
  3244. "dest": "313"
  3245. },
  3246. {
  3247. "src": "313",
  3248. "dest": "281"
  3249. },
  3250. {
  3251. "src": "100",
  3252. "dest": "314"
  3253. },
  3254. {
  3255. "src": "314",
  3256. "dest": "282"
  3257. },
  3258. {
  3259. "src": "100",
  3260. "dest": "315"
  3261. },
  3262. {
  3263. "src": "315",
  3264. "dest": "283"
  3265. },
  3266. {
  3267. "src": "100",
  3268. "dest": "316"
  3269. },
  3270. {
  3271. "src": "316",
  3272. "dest": "284"
  3273. },
  3274. {
  3275. "src": "100",
  3276. "dest": "317"
  3277. },
  3278. {
  3279. "src": "317",
  3280. "dest": "285"
  3281. },
  3282. {
  3283. "src": "100",
  3284. "dest": "318"
  3285. },
  3286. {
  3287. "src": "318",
  3288. "dest": "286"
  3289. },
  3290. {
  3291. "src": "100",
  3292. "dest": "319"
  3293. },
  3294. {
  3295. "src": "319",
  3296. "dest": "287"
  3297. },
  3298. {
  3299. "src": "100",
  3300. "dest": "320"
  3301. },
  3302. {
  3303. "src": "320",
  3304. "dest": "288"
  3305. },
  3306. {
  3307. "src": "100",
  3308. "dest": "321"
  3309. },
  3310. {
  3311. "src": "321",
  3312. "dest": "289"
  3313. },
  3314. {
  3315. "src": "100",
  3316. "dest": "322"
  3317. },
  3318. {
  3319. "src": "322",
  3320. "dest": "290"
  3321. },
  3322. {
  3323. "src": "100",
  3324. "dest": "323"
  3325. },
  3326. {
  3327. "src": "323",
  3328. "dest": "291"
  3329. },
  3330. {
  3331. "src": "100",
  3332. "dest": "324"
  3333. },
  3334. {
  3335. "src": "324",
  3336. "dest": "292"
  3337. },
  3338. {
  3339. "src": "100",
  3340. "dest": "325"
  3341. },
  3342. {
  3343. "src": "325",
  3344. "dest": "293"
  3345. },
  3346. {
  3347. "src": "100",
  3348. "dest": "326"
  3349. },
  3350. {
  3351. "src": "326",
  3352. "dest": "294"
  3353. },
  3354. {
  3355. "src": "100",
  3356. "dest": "327"
  3357. },
  3358. {
  3359. "src": "327",
  3360. "dest": "295"
  3361. },
  3362. {
  3363. "src": "100",
  3364. "dest": "328"
  3365. },
  3366. {
  3367. "src": "328",
  3368. "dest": "296"
  3369. },
  3370. {
  3371. "src": "100",
  3372. "dest": "329"
  3373. },
  3374. {
  3375. "src": "329",
  3376. "dest": "297"
  3377. },
  3378. {
  3379. "src": "100",
  3380. "dest": "330"
  3381. },
  3382. {
  3383. "src": "330",
  3384. "dest": "298"
  3385. }
  3386. ]
  3387. }
  3388. },
  3389. "$asuri": {
  3390. "type": "string",
  3391. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/5.instance"
  3392. },
  3393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  3394. },
  3395. "6": {
  3396. "typename": {
  3397. "type": "string",
  3398. "value": "LinkIcon"
  3399. },
  3400. "position": {
  3401. "type": "list<double>",
  3402. "value": [
  3403. 571,
  3404. 448
  3405. ]
  3406. },
  3407. "orientation": {
  3408. "type": "double",
  3409. "value": 0
  3410. },
  3411. "scale": {
  3412. "type": "list<double>",
  3413. "value": [
  3414. 1,
  3415. 1
  3416. ]
  3417. },
  3418. "mapper": {
  3419. "type": "code",
  3420. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  3421. },
  3422. "parser": {
  3423. "type": "code",
  3424. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  3425. },
  3426. "$contents": {
  3427. "type": "map<string,*>",
  3428. "value": {
  3429. "nodes": {
  3430. "92": {
  3431. "textContent": {
  3432. "type": "string",
  3433. "value": "InterruptTransitionLink"
  3434. },
  3435. "style": {
  3436. "type": "map<string,string>",
  3437. "value": {
  3438. "stroke": "#000000",
  3439. "stroke-dasharray": "",
  3440. "fill": "#000000",
  3441. "fill-opacity": "1",
  3442. "font-size": "13px"
  3443. }
  3444. },
  3445. "mapper": {
  3446. "type": "code",
  3447. "value": "({\"textContent\":getAttr(\"typename\")})"
  3448. },
  3449. "parser": {
  3450. "type": "code",
  3451. "value": "({\"typename\":getAttr(\"textContent\")})"
  3452. },
  3453. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3454. "position": {
  3455. "type": "list<double>",
  3456. "value": [
  3457. 56,
  3458. 156
  3459. ]
  3460. },
  3461. "orientation": {
  3462. "type": "double",
  3463. "value": 0
  3464. },
  3465. "scale": {
  3466. "type": "list<double>",
  3467. "value": [
  3468. 1,
  3469. 1
  3470. ]
  3471. }
  3472. },
  3473. "100": {
  3474. "width": {
  3475. "type": "double",
  3476. "value": 250
  3477. },
  3478. "height": {
  3479. "type": "double",
  3480. "value": "150"
  3481. },
  3482. "cornerRadius": {
  3483. "type": "double",
  3484. "value": "10"
  3485. },
  3486. "style": {
  3487. "type": "map<string,string>",
  3488. "value": {
  3489. "stroke": "#000000",
  3490. "stroke-dasharray": ". ",
  3491. "fill": "#ffffff",
  3492. "fill-opacity": 0.75,
  3493. "stroke-width": 1
  3494. }
  3495. },
  3496. "mapper": {
  3497. "type": "code",
  3498. "value": ""
  3499. },
  3500. "parser": {
  3501. "type": "code",
  3502. "value": ""
  3503. },
  3504. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3505. "position": {
  3506. "type": "list<double>",
  3507. "value": [
  3508. 3,
  3509. 2
  3510. ]
  3511. },
  3512. "orientation": {
  3513. "type": "double",
  3514. "value": 0
  3515. },
  3516. "scale": {
  3517. "type": "list<double>",
  3518. "value": [
  3519. 1.0327000000000006,
  3520. 1
  3521. ]
  3522. }
  3523. },
  3524. "122": {
  3525. "distance": {
  3526. "type": "double",
  3527. "value": 0
  3528. },
  3529. "alignment": {
  3530. "type": "ENUM('right','left','center')",
  3531. "value": "center"
  3532. },
  3533. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  3534. "position": {
  3535. "type": "list<double>",
  3536. "value": [
  3537. 82,
  3538. 151.5
  3539. ]
  3540. },
  3541. "orientation": {
  3542. "type": "double",
  3543. "value": 0
  3544. },
  3545. "scale": {
  3546. "type": "list<double>",
  3547. "value": [
  3548. 1,
  3549. 1
  3550. ]
  3551. },
  3552. "link-style": {
  3553. "type": "map<string,string>",
  3554. "value": {
  3555. "stroke": "#00ff00",
  3556. "stroke-dasharray": "",
  3557. "stroke-opacity": 1,
  3558. "stroke-width": 1
  3559. }
  3560. }
  3561. },
  3562. "162": {
  3563. "segments": {
  3564. "type": "string",
  3565. "value": "m0,0l198,0"
  3566. },
  3567. "style": {
  3568. "type": "map<string,string>",
  3569. "value": {
  3570. "stroke": "#00ff00",
  3571. "stroke-dasharray": "",
  3572. "stroke-opacity": 1,
  3573. "stroke-width": 2
  3574. }
  3575. },
  3576. "mapper": {
  3577. "type": "code",
  3578. "value": "({'style':getAttr('link-style')})"
  3579. },
  3580. "parser": {
  3581. "type": "code",
  3582. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3583. },
  3584. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3585. "position": {
  3586. "type": "list<double>",
  3587. "value": [
  3588. 34,
  3589. 77
  3590. ]
  3591. },
  3592. "orientation": {
  3593. "type": "double",
  3594. "value": 0
  3595. },
  3596. "scale": {
  3597. "type": "list<double>",
  3598. "value": [
  3599. 1,
  3600. 1
  3601. ]
  3602. }
  3603. },
  3604. "195": {
  3605. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3606. "position": {
  3607. "type": "list<double>",
  3608. "value": [
  3609. 68.12999992296295,
  3610. 39.57499995555554
  3611. ]
  3612. },
  3613. "orientation": {
  3614. "type": "double",
  3615. "value": 0
  3616. },
  3617. "scale": {
  3618. "type": "list<double>",
  3619. "value": [
  3620. 1,
  3621. 1
  3622. ]
  3623. },
  3624. "link-style": {
  3625. "type": "map<string,string>",
  3626. "value": {
  3627. "stroke": "#00ffff",
  3628. "stroke-dasharray": "",
  3629. "stroke-opacity": 0.1,
  3630. "stroke-width": 1
  3631. }
  3632. }
  3633. },
  3634. "267": {
  3635. "segments": {
  3636. "type": "string",
  3637. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3638. },
  3639. "style": {
  3640. "type": "map<string,string>",
  3641. "value": {
  3642. "stroke": "#000000",
  3643. "fill": "#000000",
  3644. "opacity": 1,
  3645. "stroke-width": 1
  3646. }
  3647. },
  3648. "mapper": {
  3649. "type": "code",
  3650. "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})"
  3651. },
  3652. "parser": {
  3653. "type": "code",
  3654. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3655. },
  3656. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3657. "position": {
  3658. "type": "list<double>",
  3659. "value": [
  3660. 222,
  3661. 73
  3662. ]
  3663. },
  3664. "orientation": {
  3665. "type": "double",
  3666. "value": 0
  3667. },
  3668. "scale": {
  3669. "type": "list<double>",
  3670. "value": [
  3671. 1,
  3672. 1
  3673. ]
  3674. }
  3675. },
  3676. "268": {
  3677. "segments": {
  3678. "type": "string",
  3679. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3680. },
  3681. "style": {
  3682. "type": "map<string,string>",
  3683. "value": {
  3684. "stroke": "#000000",
  3685. "fill": "#000000",
  3686. "opacity": 0,
  3687. "stroke-width": 1
  3688. }
  3689. },
  3690. "mapper": {
  3691. "type": "code",
  3692. "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})"
  3693. },
  3694. "parser": {
  3695. "type": "code",
  3696. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3697. },
  3698. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3699. "position": {
  3700. "type": "list<double>",
  3701. "value": [
  3702. 222,
  3703. 67
  3704. ]
  3705. },
  3706. "orientation": {
  3707. "type": "double",
  3708. "value": 0
  3709. },
  3710. "scale": {
  3711. "type": "list<double>",
  3712. "value": [
  3713. 1,
  3714. 1
  3715. ]
  3716. }
  3717. },
  3718. "269": {
  3719. "r": {
  3720. "type": "double",
  3721. "value": 10
  3722. },
  3723. "style": {
  3724. "type": "map<string,string>",
  3725. "value": {
  3726. "stroke": "#000000",
  3727. "fill": "#000000",
  3728. "opacity": 0,
  3729. "stroke-width": 1
  3730. }
  3731. },
  3732. "mapper": {
  3733. "type": "code",
  3734. "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})"
  3735. },
  3736. "parser": {
  3737. "type": "code",
  3738. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3739. },
  3740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3741. "position": {
  3742. "type": "list<double>",
  3743. "value": [
  3744. 212,
  3745. 67
  3746. ]
  3747. },
  3748. "orientation": {
  3749. "type": "double",
  3750. "value": 0
  3751. },
  3752. "scale": {
  3753. "type": "list<double>",
  3754. "value": [
  3755. 1,
  3756. 1
  3757. ]
  3758. }
  3759. },
  3760. "270": {
  3761. "r": {
  3762. "type": "double",
  3763. "value": 10
  3764. },
  3765. "style": {
  3766. "type": "map<string,string>",
  3767. "value": {
  3768. "stroke": "#000000",
  3769. "fill": "#ffffff",
  3770. "opacity": 0,
  3771. "stroke-width": 1
  3772. }
  3773. },
  3774. "mapper": {
  3775. "type": "code",
  3776. "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})"
  3777. },
  3778. "parser": {
  3779. "type": "code",
  3780. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3781. },
  3782. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3783. "position": {
  3784. "type": "list<double>",
  3785. "value": [
  3786. 212,
  3787. 67
  3788. ]
  3789. },
  3790. "orientation": {
  3791. "type": "double",
  3792. "value": 0
  3793. },
  3794. "scale": {
  3795. "type": "list<double>",
  3796. "value": [
  3797. 1,
  3798. 1
  3799. ]
  3800. }
  3801. },
  3802. "271": {
  3803. "r": {
  3804. "type": "double",
  3805. "value": 5
  3806. },
  3807. "style": {
  3808. "type": "map<string,string>",
  3809. "value": {
  3810. "stroke": "#000000",
  3811. "fill": "#000000",
  3812. "opacity": 0,
  3813. "stroke-width": 1
  3814. }
  3815. },
  3816. "mapper": {
  3817. "type": "code",
  3818. "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})"
  3819. },
  3820. "parser": {
  3821. "type": "code",
  3822. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3823. },
  3824. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3825. "position": {
  3826. "type": "list<double>",
  3827. "value": [
  3828. 222,
  3829. 72
  3830. ]
  3831. },
  3832. "orientation": {
  3833. "type": "double",
  3834. "value": 0
  3835. },
  3836. "scale": {
  3837. "type": "list<double>",
  3838. "value": [
  3839. 1,
  3840. 1
  3841. ]
  3842. }
  3843. },
  3844. "272": {
  3845. "segments": {
  3846. "type": "string",
  3847. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3848. },
  3849. "style": {
  3850. "type": "map<string,string>",
  3851. "value": {
  3852. "stroke": "#000000",
  3853. "fill": "#000000",
  3854. "opacity": 0,
  3855. "stroke-width": 1
  3856. }
  3857. },
  3858. "mapper": {
  3859. "type": "code",
  3860. "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})"
  3861. },
  3862. "parser": {
  3863. "type": "code",
  3864. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3865. },
  3866. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3867. "position": {
  3868. "type": "list<double>",
  3869. "value": [
  3870. 227,
  3871. 72
  3872. ]
  3873. },
  3874. "orientation": {
  3875. "type": "double",
  3876. "value": 0
  3877. },
  3878. "scale": {
  3879. "type": "list<double>",
  3880. "value": [
  3881. 1,
  3882. 1
  3883. ]
  3884. }
  3885. },
  3886. "273": {
  3887. "segments": {
  3888. "type": "string",
  3889. "value": "m0,0 l20,10 l-20,10 z"
  3890. },
  3891. "style": {
  3892. "type": "map<string,string>",
  3893. "value": {
  3894. "stroke": "#000000",
  3895. "fill": "#000000",
  3896. "opacity": 0,
  3897. "stroke-width": 1
  3898. }
  3899. },
  3900. "mapper": {
  3901. "type": "code",
  3902. "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})"
  3903. },
  3904. "parser": {
  3905. "type": "code",
  3906. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3907. },
  3908. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3909. "position": {
  3910. "type": "list<double>",
  3911. "value": [
  3912. 212,
  3913. 67
  3914. ]
  3915. },
  3916. "orientation": {
  3917. "type": "double",
  3918. "value": 0
  3919. },
  3920. "scale": {
  3921. "type": "list<double>",
  3922. "value": [
  3923. 1,
  3924. 1
  3925. ]
  3926. }
  3927. },
  3928. "274": {
  3929. "segments": {
  3930. "type": "string",
  3931. "value": "m0,0 l10,4 l-10,4 z"
  3932. },
  3933. "style": {
  3934. "type": "map<string,string>",
  3935. "value": {
  3936. "stroke": "#000000",
  3937. "fill": "#000000",
  3938. "opacity": 0,
  3939. "stroke-width": 1
  3940. }
  3941. },
  3942. "mapper": {
  3943. "type": "code",
  3944. "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})"
  3945. },
  3946. "parser": {
  3947. "type": "code",
  3948. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3949. },
  3950. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3951. "position": {
  3952. "type": "list<double>",
  3953. "value": [
  3954. 222,
  3955. 73
  3956. ]
  3957. },
  3958. "orientation": {
  3959. "type": "double",
  3960. "value": 0
  3961. },
  3962. "scale": {
  3963. "type": "list<double>",
  3964. "value": [
  3965. 1,
  3966. 1
  3967. ]
  3968. }
  3969. },
  3970. "275": {
  3971. "segments": {
  3972. "type": "string",
  3973. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  3974. },
  3975. "style": {
  3976. "type": "map<string,string>",
  3977. "value": {
  3978. "stroke": "#000000",
  3979. "fill": "#000000",
  3980. "opacity": 0,
  3981. "stroke-width": 1
  3982. }
  3983. },
  3984. "mapper": {
  3985. "type": "code",
  3986. "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})"
  3987. },
  3988. "parser": {
  3989. "type": "code",
  3990. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3991. },
  3992. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3993. "position": {
  3994. "type": "list<double>",
  3995. "value": [
  3996. 212,
  3997. 69
  3998. ]
  3999. },
  4000. "orientation": {
  4001. "type": "double",
  4002. "value": 0
  4003. },
  4004. "scale": {
  4005. "type": "list<double>",
  4006. "value": [
  4007. 1,
  4008. 1
  4009. ]
  4010. }
  4011. },
  4012. "276": {
  4013. "segments": {
  4014. "type": "string",
  4015. "value": "m0,0 l20,10 l-20,10 z"
  4016. },
  4017. "style": {
  4018. "type": "map<string,string>",
  4019. "value": {
  4020. "stroke": "#000000",
  4021. "fill": "#ffffff",
  4022. "opacity": 0,
  4023. "stroke-width": 1
  4024. }
  4025. },
  4026. "mapper": {
  4027. "type": "code",
  4028. "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})"
  4029. },
  4030. "parser": {
  4031. "type": "code",
  4032. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4033. },
  4034. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4035. "position": {
  4036. "type": "list<double>",
  4037. "value": [
  4038. 212,
  4039. 67
  4040. ]
  4041. },
  4042. "orientation": {
  4043. "type": "double",
  4044. "value": 0
  4045. },
  4046. "scale": {
  4047. "type": "list<double>",
  4048. "value": [
  4049. 1,
  4050. 1
  4051. ]
  4052. }
  4053. },
  4054. "277": {
  4055. "segments": {
  4056. "type": "string",
  4057. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4058. },
  4059. "style": {
  4060. "type": "map<string,string>",
  4061. "value": {
  4062. "stroke": "#000000",
  4063. "fill": "#ffffff",
  4064. "opacity": 0,
  4065. "stroke-width": 1
  4066. }
  4067. },
  4068. "mapper": {
  4069. "type": "code",
  4070. "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})"
  4071. },
  4072. "parser": {
  4073. "type": "code",
  4074. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4075. },
  4076. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4077. "position": {
  4078. "type": "list<double>",
  4079. "value": [
  4080. 227,
  4081. 72
  4082. ]
  4083. },
  4084. "orientation": {
  4085. "type": "double",
  4086. "value": 0
  4087. },
  4088. "scale": {
  4089. "type": "list<double>",
  4090. "value": [
  4091. 1,
  4092. 1
  4093. ]
  4094. }
  4095. },
  4096. "278": {
  4097. "segments": {
  4098. "type": "string",
  4099. "value": "m0,0 l20,8 l-20,8"
  4100. },
  4101. "style": {
  4102. "type": "map<string,string>",
  4103. "value": {
  4104. "stroke": "#000000",
  4105. "fill": "#000000",
  4106. "fill-opacity": 0,
  4107. "stroke-width": 1,
  4108. "opacity": 0
  4109. }
  4110. },
  4111. "mapper": {
  4112. "type": "code",
  4113. "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})"
  4114. },
  4115. "parser": {
  4116. "type": "code",
  4117. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4118. },
  4119. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4120. "position": {
  4121. "type": "list<double>",
  4122. "value": [
  4123. 212,
  4124. 69
  4125. ]
  4126. },
  4127. "orientation": {
  4128. "type": "double",
  4129. "value": 0
  4130. },
  4131. "scale": {
  4132. "type": "list<double>",
  4133. "value": [
  4134. 1,
  4135. 1
  4136. ]
  4137. }
  4138. },
  4139. "279": {
  4140. "r": {
  4141. "type": "double",
  4142. "value": 5
  4143. },
  4144. "style": {
  4145. "type": "map<string,string>",
  4146. "value": {
  4147. "stroke": "#000000",
  4148. "fill": "#ffffff",
  4149. "opacity": 0,
  4150. "stroke-width": 1
  4151. }
  4152. },
  4153. "mapper": {
  4154. "type": "code",
  4155. "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})"
  4156. },
  4157. "parser": {
  4158. "type": "code",
  4159. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4160. },
  4161. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4162. "position": {
  4163. "type": "list<double>",
  4164. "value": [
  4165. 222,
  4166. 72
  4167. ]
  4168. },
  4169. "orientation": {
  4170. "type": "double",
  4171. "value": 0
  4172. },
  4173. "scale": {
  4174. "type": "list<double>",
  4175. "value": [
  4176. 1,
  4177. 1
  4178. ]
  4179. }
  4180. },
  4181. "280": {
  4182. "segments": {
  4183. "type": "string",
  4184. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4185. },
  4186. "style": {
  4187. "type": "map<string,string>",
  4188. "value": {
  4189. "stroke": "#000000",
  4190. "fill": "#ffffff",
  4191. "opacity": 0,
  4192. "stroke-width": 1
  4193. }
  4194. },
  4195. "mapper": {
  4196. "type": "code",
  4197. "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})"
  4198. },
  4199. "parser": {
  4200. "type": "code",
  4201. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4202. },
  4203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4204. "position": {
  4205. "type": "list<double>",
  4206. "value": [
  4207. 222,
  4208. 67
  4209. ]
  4210. },
  4211. "orientation": {
  4212. "type": "double",
  4213. "value": 0
  4214. },
  4215. "scale": {
  4216. "type": "list<double>",
  4217. "value": [
  4218. 1,
  4219. 1
  4220. ]
  4221. }
  4222. },
  4223. "281": {
  4224. "segments": {
  4225. "type": "string",
  4226. "value": "m0,0 l10,4 l-10,4"
  4227. },
  4228. "style": {
  4229. "type": "map<string,string>",
  4230. "value": {
  4231. "stroke": "#000000",
  4232. "fill": "#000000",
  4233. "fill-opacity": 0,
  4234. "stroke-width": 1,
  4235. "opacity": 0
  4236. }
  4237. },
  4238. "mapper": {
  4239. "type": "code",
  4240. "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})"
  4241. },
  4242. "parser": {
  4243. "type": "code",
  4244. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4245. },
  4246. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4247. "position": {
  4248. "type": "list<double>",
  4249. "value": [
  4250. 222,
  4251. 73
  4252. ]
  4253. },
  4254. "orientation": {
  4255. "type": "double",
  4256. "value": 0
  4257. },
  4258. "scale": {
  4259. "type": "list<double>",
  4260. "value": [
  4261. 1,
  4262. 1
  4263. ]
  4264. }
  4265. },
  4266. "282": {
  4267. "segments": {
  4268. "type": "string",
  4269. "value": "m0,0 l10,5 l-10,5 z"
  4270. },
  4271. "style": {
  4272. "type": "map<string,string>",
  4273. "value": {
  4274. "stroke": "#000000",
  4275. "fill": "#ffffff",
  4276. "opacity": 0,
  4277. "stroke-width": 1
  4278. }
  4279. },
  4280. "mapper": {
  4281. "type": "code",
  4282. "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})"
  4283. },
  4284. "parser": {
  4285. "type": "code",
  4286. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4287. },
  4288. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4289. "position": {
  4290. "type": "list<double>",
  4291. "value": [
  4292. 222,
  4293. 72
  4294. ]
  4295. },
  4296. "orientation": {
  4297. "type": "double",
  4298. "value": 0
  4299. },
  4300. "scale": {
  4301. "type": "list<double>",
  4302. "value": [
  4303. 1,
  4304. 1
  4305. ]
  4306. }
  4307. },
  4308. "283": {
  4309. "segments": {
  4310. "type": "string",
  4311. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4312. },
  4313. "style": {
  4314. "type": "map<string,string>",
  4315. "value": {
  4316. "stroke": "#000000",
  4317. "fill": "#ffffff",
  4318. "opacity": 0,
  4319. "stroke-width": 1
  4320. }
  4321. },
  4322. "mapper": {
  4323. "type": "code",
  4324. "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})"
  4325. },
  4326. "parser": {
  4327. "type": "code",
  4328. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4329. },
  4330. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4331. "position": {
  4332. "type": "list<double>",
  4333. "value": [
  4334. 39,
  4335. 72
  4336. ]
  4337. },
  4338. "orientation": {
  4339. "type": "double",
  4340. "value": 0
  4341. },
  4342. "scale": {
  4343. "type": "list<double>",
  4344. "value": [
  4345. 1,
  4346. 1
  4347. ]
  4348. }
  4349. },
  4350. "284": {
  4351. "segments": {
  4352. "type": "string",
  4353. "value": "m0,0 l-10,5 l10,5 z"
  4354. },
  4355. "style": {
  4356. "type": "map<string,string>",
  4357. "value": {
  4358. "stroke": "#000000",
  4359. "fill": "#ffffff",
  4360. "opacity": 0,
  4361. "stroke-width": 1
  4362. }
  4363. },
  4364. "mapper": {
  4365. "type": "code",
  4366. "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})"
  4367. },
  4368. "parser": {
  4369. "type": "code",
  4370. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4371. },
  4372. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4373. "position": {
  4374. "type": "list<double>",
  4375. "value": [
  4376. 43,
  4377. 72
  4378. ]
  4379. },
  4380. "orientation": {
  4381. "type": "double",
  4382. "value": 0
  4383. },
  4384. "scale": {
  4385. "type": "list<double>",
  4386. "value": [
  4387. 1,
  4388. 1
  4389. ]
  4390. }
  4391. },
  4392. "285": {
  4393. "segments": {
  4394. "type": "string",
  4395. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4396. },
  4397. "style": {
  4398. "type": "map<string,string>",
  4399. "value": {
  4400. "stroke": "#000000",
  4401. "fill": "#000000",
  4402. "opacity": 0,
  4403. "stroke-width": 1
  4404. }
  4405. },
  4406. "mapper": {
  4407. "type": "code",
  4408. "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})"
  4409. },
  4410. "parser": {
  4411. "type": "code",
  4412. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4413. },
  4414. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4415. "position": {
  4416. "type": "list<double>",
  4417. "value": [
  4418. 39,
  4419. 72
  4420. ]
  4421. },
  4422. "orientation": {
  4423. "type": "double",
  4424. "value": 0
  4425. },
  4426. "scale": {
  4427. "type": "list<double>",
  4428. "value": [
  4429. 1,
  4430. 1
  4431. ]
  4432. }
  4433. },
  4434. "286": {
  4435. "r": {
  4436. "type": "double",
  4437. "value": 10
  4438. },
  4439. "style": {
  4440. "type": "map<string,string>",
  4441. "value": {
  4442. "stroke": "#000000",
  4443. "fill": "#000000",
  4444. "opacity": 0,
  4445. "stroke-width": 1
  4446. }
  4447. },
  4448. "mapper": {
  4449. "type": "code",
  4450. "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})"
  4451. },
  4452. "parser": {
  4453. "type": "code",
  4454. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4455. },
  4456. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4457. "position": {
  4458. "type": "list<double>",
  4459. "value": [
  4460. 34,
  4461. 67
  4462. ]
  4463. },
  4464. "orientation": {
  4465. "type": "double",
  4466. "value": 0
  4467. },
  4468. "scale": {
  4469. "type": "list<double>",
  4470. "value": [
  4471. 1,
  4472. 1
  4473. ]
  4474. }
  4475. },
  4476. "287": {
  4477. "segments": {
  4478. "type": "string",
  4479. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  4480. },
  4481. "style": {
  4482. "type": "map<string,string>",
  4483. "value": {
  4484. "stroke": "#000000",
  4485. "fill": "#000000",
  4486. "opacity": 0,
  4487. "stroke-width": 1
  4488. }
  4489. },
  4490. "mapper": {
  4491. "type": "code",
  4492. "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})"
  4493. },
  4494. "parser": {
  4495. "type": "code",
  4496. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4497. },
  4498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4499. "position": {
  4500. "type": "list<double>",
  4501. "value": [
  4502. 54,
  4503. 69
  4504. ]
  4505. },
  4506. "orientation": {
  4507. "type": "double",
  4508. "value": 0
  4509. },
  4510. "scale": {
  4511. "type": "list<double>",
  4512. "value": [
  4513. 1,
  4514. 1
  4515. ]
  4516. }
  4517. },
  4518. "288": {
  4519. "segments": {
  4520. "type": "string",
  4521. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  4522. },
  4523. "style": {
  4524. "type": "map<string,string>",
  4525. "value": {
  4526. "stroke": "#000000",
  4527. "fill": "#000000",
  4528. "opacity": 0,
  4529. "stroke-width": 1
  4530. }
  4531. },
  4532. "mapper": {
  4533. "type": "code",
  4534. "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})"
  4535. },
  4536. "parser": {
  4537. "type": "code",
  4538. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4539. },
  4540. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4541. "position": {
  4542. "type": "list<double>",
  4543. "value": [
  4544. 43,
  4545. 73
  4546. ]
  4547. },
  4548. "orientation": {
  4549. "type": "double",
  4550. "value": 0
  4551. },
  4552. "scale": {
  4553. "type": "list<double>",
  4554. "value": [
  4555. 1,
  4556. 1
  4557. ]
  4558. }
  4559. },
  4560. "289": {
  4561. "segments": {
  4562. "type": "string",
  4563. "value": "m0,0 l-20,10 l20,10 z"
  4564. },
  4565. "style": {
  4566. "type": "map<string,string>",
  4567. "value": {
  4568. "stroke": "#000000",
  4569. "fill": "#ffffff",
  4570. "opacity": 0,
  4571. "stroke-width": 1
  4572. }
  4573. },
  4574. "mapper": {
  4575. "type": "code",
  4576. "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})"
  4577. },
  4578. "parser": {
  4579. "type": "code",
  4580. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4581. },
  4582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4583. "position": {
  4584. "type": "list<double>",
  4585. "value": [
  4586. 54,
  4587. 67
  4588. ]
  4589. },
  4590. "orientation": {
  4591. "type": "double",
  4592. "value": 0
  4593. },
  4594. "scale": {
  4595. "type": "list<double>",
  4596. "value": [
  4597. 1,
  4598. 1
  4599. ]
  4600. }
  4601. },
  4602. "290": {
  4603. "segments": {
  4604. "type": "string",
  4605. "value": "m0,0 l-20,10 l20,10 z"
  4606. },
  4607. "style": {
  4608. "type": "map<string,string>",
  4609. "value": {
  4610. "stroke": "#000000",
  4611. "fill": "#000000",
  4612. "opacity": 0,
  4613. "stroke-width": 1
  4614. }
  4615. },
  4616. "mapper": {
  4617. "type": "code",
  4618. "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})"
  4619. },
  4620. "parser": {
  4621. "type": "code",
  4622. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4623. },
  4624. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4625. "position": {
  4626. "type": "list<double>",
  4627. "value": [
  4628. 54,
  4629. 67
  4630. ]
  4631. },
  4632. "orientation": {
  4633. "type": "double",
  4634. "value": 0
  4635. },
  4636. "scale": {
  4637. "type": "list<double>",
  4638. "value": [
  4639. 1,
  4640. 1
  4641. ]
  4642. }
  4643. },
  4644. "291": {
  4645. "r": {
  4646. "type": "double",
  4647. "value": 5
  4648. },
  4649. "style": {
  4650. "type": "map<string,string>",
  4651. "value": {
  4652. "stroke": "#000000",
  4653. "fill": "#000000",
  4654. "opacity": 0,
  4655. "stroke-width": 1
  4656. }
  4657. },
  4658. "mapper": {
  4659. "type": "code",
  4660. "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})"
  4661. },
  4662. "parser": {
  4663. "type": "code",
  4664. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4665. },
  4666. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4667. "position": {
  4668. "type": "list<double>",
  4669. "value": [
  4670. 34,
  4671. 72
  4672. ]
  4673. },
  4674. "orientation": {
  4675. "type": "double",
  4676. "value": 0
  4677. },
  4678. "scale": {
  4679. "type": "list<double>",
  4680. "value": [
  4681. 1,
  4682. 1
  4683. ]
  4684. }
  4685. },
  4686. "292": {
  4687. "r": {
  4688. "type": "double",
  4689. "value": 5
  4690. },
  4691. "style": {
  4692. "type": "map<string,string>",
  4693. "value": {
  4694. "stroke": "#000000",
  4695. "fill": "#ffffff",
  4696. "opacity": 0,
  4697. "stroke-width": 1
  4698. }
  4699. },
  4700. "mapper": {
  4701. "type": "code",
  4702. "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})"
  4703. },
  4704. "parser": {
  4705. "type": "code",
  4706. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4707. },
  4708. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4709. "position": {
  4710. "type": "list<double>",
  4711. "value": [
  4712. 34,
  4713. 72
  4714. ]
  4715. },
  4716. "orientation": {
  4717. "type": "double",
  4718. "value": 0
  4719. },
  4720. "scale": {
  4721. "type": "list<double>",
  4722. "value": [
  4723. 1,
  4724. 1
  4725. ]
  4726. }
  4727. },
  4728. "293": {
  4729. "r": {
  4730. "type": "double",
  4731. "value": 10
  4732. },
  4733. "style": {
  4734. "type": "map<string,string>",
  4735. "value": {
  4736. "stroke": "#000000",
  4737. "fill": "#ffffff",
  4738. "opacity": 0,
  4739. "stroke-width": 1
  4740. }
  4741. },
  4742. "mapper": {
  4743. "type": "code",
  4744. "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})"
  4745. },
  4746. "parser": {
  4747. "type": "code",
  4748. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4749. },
  4750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4751. "position": {
  4752. "type": "list<double>",
  4753. "value": [
  4754. 34,
  4755. 67
  4756. ]
  4757. },
  4758. "orientation": {
  4759. "type": "double",
  4760. "value": 0
  4761. },
  4762. "scale": {
  4763. "type": "list<double>",
  4764. "value": [
  4765. 1,
  4766. 1
  4767. ]
  4768. }
  4769. },
  4770. "294": {
  4771. "segments": {
  4772. "type": "string",
  4773. "value": "m0,0 l-20,8 l20,8"
  4774. },
  4775. "style": {
  4776. "type": "map<string,string>",
  4777. "value": {
  4778. "stroke": "#000000",
  4779. "fill": "#000000",
  4780. "fill-opacity": 0,
  4781. "stroke-width": 1,
  4782. "opacity": 0
  4783. }
  4784. },
  4785. "mapper": {
  4786. "type": "code",
  4787. "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})"
  4788. },
  4789. "parser": {
  4790. "type": "code",
  4791. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4792. },
  4793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4794. "position": {
  4795. "type": "list<double>",
  4796. "value": [
  4797. 54,
  4798. 69
  4799. ]
  4800. },
  4801. "orientation": {
  4802. "type": "double",
  4803. "value": 0
  4804. },
  4805. "scale": {
  4806. "type": "list<double>",
  4807. "value": [
  4808. 1,
  4809. 1
  4810. ]
  4811. }
  4812. },
  4813. "295": {
  4814. "segments": {
  4815. "type": "string",
  4816. "value": "m0,0 l-10,4 l10,4"
  4817. },
  4818. "style": {
  4819. "type": "map<string,string>",
  4820. "value": {
  4821. "stroke": "#000000",
  4822. "fill": "#000000",
  4823. "fill-opacity": 0,
  4824. "stroke-width": 1,
  4825. "opacity": 0
  4826. }
  4827. },
  4828. "mapper": {
  4829. "type": "code",
  4830. "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})"
  4831. },
  4832. "parser": {
  4833. "type": "code",
  4834. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4835. },
  4836. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4837. "position": {
  4838. "type": "list<double>",
  4839. "value": [
  4840. 43,
  4841. 73
  4842. ]
  4843. },
  4844. "orientation": {
  4845. "type": "double",
  4846. "value": 0
  4847. },
  4848. "scale": {
  4849. "type": "list<double>",
  4850. "value": [
  4851. 1,
  4852. 1
  4853. ]
  4854. }
  4855. },
  4856. "296": {
  4857. "segments": {
  4858. "type": "string",
  4859. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4860. },
  4861. "style": {
  4862. "type": "map<string,string>",
  4863. "value": {
  4864. "stroke": "#000000",
  4865. "fill": "#000000",
  4866. "opacity": 0,
  4867. "stroke-width": 1
  4868. }
  4869. },
  4870. "mapper": {
  4871. "type": "code",
  4872. "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})"
  4873. },
  4874. "parser": {
  4875. "type": "code",
  4876. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4877. },
  4878. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4879. "position": {
  4880. "type": "list<double>",
  4881. "value": [
  4882. 43,
  4883. 67
  4884. ]
  4885. },
  4886. "orientation": {
  4887. "type": "double",
  4888. "value": 0
  4889. },
  4890. "scale": {
  4891. "type": "list<double>",
  4892. "value": [
  4893. 1,
  4894. 1
  4895. ]
  4896. }
  4897. },
  4898. "297": {
  4899. "segments": {
  4900. "type": "string",
  4901. "value": "m0,0 l-10,4 l10,4 z"
  4902. },
  4903. "style": {
  4904. "type": "map<string,string>",
  4905. "value": {
  4906. "stroke": "#000000",
  4907. "fill": "#000000",
  4908. "opacity": 0,
  4909. "stroke-width": 1
  4910. }
  4911. },
  4912. "mapper": {
  4913. "type": "code",
  4914. "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})"
  4915. },
  4916. "parser": {
  4917. "type": "code",
  4918. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4919. },
  4920. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4921. "position": {
  4922. "type": "list<double>",
  4923. "value": [
  4924. 43,
  4925. 73
  4926. ]
  4927. },
  4928. "orientation": {
  4929. "type": "double",
  4930. "value": 0
  4931. },
  4932. "scale": {
  4933. "type": "list<double>",
  4934. "value": [
  4935. 1,
  4936. 1
  4937. ]
  4938. }
  4939. },
  4940. "298": {
  4941. "segments": {
  4942. "type": "string",
  4943. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4944. },
  4945. "style": {
  4946. "type": "map<string,string>",
  4947. "value": {
  4948. "stroke": "#000000",
  4949. "fill": "#ffffff",
  4950. "opacity": 0,
  4951. "stroke-width": 1
  4952. }
  4953. },
  4954. "mapper": {
  4955. "type": "code",
  4956. "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})"
  4957. },
  4958. "parser": {
  4959. "type": "code",
  4960. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4961. },
  4962. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4963. "position": {
  4964. "type": "list<double>",
  4965. "value": [
  4966. 43,
  4967. 67
  4968. ]
  4969. },
  4970. "orientation": {
  4971. "type": "double",
  4972. "value": 0
  4973. },
  4974. "scale": {
  4975. "type": "list<double>",
  4976. "value": [
  4977. 1,
  4978. 1
  4979. ]
  4980. }
  4981. },
  4982. "299": {
  4983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4984. "position": {
  4985. "type": "list<double>",
  4986. "value": [
  4987. 114.64294868314005,
  4988. 39.04743588588505
  4989. ]
  4990. },
  4991. "orientation": {
  4992. "type": "double",
  4993. "value": 0
  4994. },
  4995. "scale": {
  4996. "type": "list<double>",
  4997. "value": [
  4998. 1,
  4999. 1
  5000. ]
  5001. },
  5002. "link-style": {
  5003. "type": "map<string,string>",
  5004. "value": {
  5005. "stroke": "#00ffff",
  5006. "stroke-dasharray": "",
  5007. "stroke-opacity": 0.1,
  5008. "stroke-width": 1
  5009. }
  5010. }
  5011. },
  5012. "300": {
  5013. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5014. "position": {
  5015. "type": "list<double>",
  5016. "value": [
  5017. 117.14309620090773,
  5018. 39.046443503803374
  5019. ]
  5020. },
  5021. "orientation": {
  5022. "type": "double",
  5023. "value": 0
  5024. },
  5025. "scale": {
  5026. "type": "list<double>",
  5027. "value": [
  5028. 1,
  5029. 1
  5030. ]
  5031. },
  5032. "link-style": {
  5033. "type": "map<string,string>",
  5034. "value": {
  5035. "stroke": "#00ffff",
  5036. "stroke-dasharray": "",
  5037. "stroke-opacity": 0.1,
  5038. "stroke-width": 1
  5039. }
  5040. }
  5041. },
  5042. "301": {
  5043. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5044. "position": {
  5045. "type": "list<double>",
  5046. "value": [
  5047. 112,
  5048. 39
  5049. ]
  5050. },
  5051. "orientation": {
  5052. "type": "double",
  5053. "value": 0
  5054. },
  5055. "scale": {
  5056. "type": "list<double>",
  5057. "value": [
  5058. 1,
  5059. 1
  5060. ]
  5061. },
  5062. "link-style": {
  5063. "type": "map<string,string>",
  5064. "value": {
  5065. "stroke": "#00ffff",
  5066. "stroke-dasharray": "",
  5067. "stroke-opacity": 0.1,
  5068. "stroke-width": 1
  5069. }
  5070. }
  5071. },
  5072. "302": {
  5073. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5074. "position": {
  5075. "type": "list<double>",
  5076. "value": [
  5077. 112,
  5078. 39
  5079. ]
  5080. },
  5081. "orientation": {
  5082. "type": "double",
  5083. "value": 0
  5084. },
  5085. "scale": {
  5086. "type": "list<double>",
  5087. "value": [
  5088. 1,
  5089. 1
  5090. ]
  5091. },
  5092. "link-style": {
  5093. "type": "map<string,string>",
  5094. "value": {
  5095. "stroke": "#00ffff",
  5096. "stroke-dasharray": "",
  5097. "stroke-opacity": 0.1,
  5098. "stroke-width": 1
  5099. }
  5100. }
  5101. },
  5102. "303": {
  5103. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5104. "position": {
  5105. "type": "list<double>",
  5106. "value": [
  5107. 114.64294868314005,
  5108. 39.04743588588505
  5109. ]
  5110. },
  5111. "orientation": {
  5112. "type": "double",
  5113. "value": 0
  5114. },
  5115. "scale": {
  5116. "type": "list<double>",
  5117. "value": [
  5118. 1,
  5119. 1
  5120. ]
  5121. },
  5122. "link-style": {
  5123. "type": "map<string,string>",
  5124. "value": {
  5125. "stroke": "#00ffff",
  5126. "stroke-dasharray": "",
  5127. "stroke-opacity": 0.1,
  5128. "stroke-width": 1
  5129. }
  5130. }
  5131. },
  5132. "304": {
  5133. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5134. "position": {
  5135. "type": "list<double>",
  5136. "value": [
  5137. 117.14309620090773,
  5138. 39.046443503803374
  5139. ]
  5140. },
  5141. "orientation": {
  5142. "type": "double",
  5143. "value": 0
  5144. },
  5145. "scale": {
  5146. "type": "list<double>",
  5147. "value": [
  5148. 1,
  5149. 1
  5150. ]
  5151. },
  5152. "link-style": {
  5153. "type": "map<string,string>",
  5154. "value": {
  5155. "stroke": "#00ffff",
  5156. "stroke-dasharray": "",
  5157. "stroke-opacity": 0.1,
  5158. "stroke-width": 1
  5159. }
  5160. }
  5161. },
  5162. "305": {
  5163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5164. "position": {
  5165. "type": "list<double>",
  5166. "value": [
  5167. 112,
  5168. 39
  5169. ]
  5170. },
  5171. "orientation": {
  5172. "type": "double",
  5173. "value": 0
  5174. },
  5175. "scale": {
  5176. "type": "list<double>",
  5177. "value": [
  5178. 1,
  5179. 1
  5180. ]
  5181. },
  5182. "link-style": {
  5183. "type": "map<string,string>",
  5184. "value": {
  5185. "stroke": "#00ffff",
  5186. "stroke-dasharray": "",
  5187. "stroke-opacity": 0.1,
  5188. "stroke-width": 1
  5189. }
  5190. }
  5191. },
  5192. "306": {
  5193. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5194. "position": {
  5195. "type": "list<double>",
  5196. "value": [
  5197. 114.64294868314005,
  5198. 39.04743588588505
  5199. ]
  5200. },
  5201. "orientation": {
  5202. "type": "double",
  5203. "value": 0
  5204. },
  5205. "scale": {
  5206. "type": "list<double>",
  5207. "value": [
  5208. 1,
  5209. 1
  5210. ]
  5211. },
  5212. "link-style": {
  5213. "type": "map<string,string>",
  5214. "value": {
  5215. "stroke": "#00ffff",
  5216. "stroke-dasharray": "",
  5217. "stroke-opacity": 0.1,
  5218. "stroke-width": 1
  5219. }
  5220. }
  5221. },
  5222. "307": {
  5223. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5224. "position": {
  5225. "type": "list<double>",
  5226. "value": [
  5227. 112,
  5228. 39
  5229. ]
  5230. },
  5231. "orientation": {
  5232. "type": "double",
  5233. "value": 0
  5234. },
  5235. "scale": {
  5236. "type": "list<double>",
  5237. "value": [
  5238. 1,
  5239. 1
  5240. ]
  5241. },
  5242. "link-style": {
  5243. "type": "map<string,string>",
  5244. "value": {
  5245. "stroke": "#00ffff",
  5246. "stroke-dasharray": "",
  5247. "stroke-opacity": 0.1,
  5248. "stroke-width": 1
  5249. }
  5250. }
  5251. },
  5252. "308": {
  5253. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5254. "position": {
  5255. "type": "list<double>",
  5256. "value": [
  5257. 112,
  5258. 39
  5259. ]
  5260. },
  5261. "orientation": {
  5262. "type": "double",
  5263. "value": 0
  5264. },
  5265. "scale": {
  5266. "type": "list<double>",
  5267. "value": [
  5268. 1,
  5269. 1
  5270. ]
  5271. },
  5272. "link-style": {
  5273. "type": "map<string,string>",
  5274. "value": {
  5275. "stroke": "#00ffff",
  5276. "stroke-dasharray": "",
  5277. "stroke-opacity": 0.1,
  5278. "stroke-width": 1
  5279. }
  5280. }
  5281. },
  5282. "309": {
  5283. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5284. "position": {
  5285. "type": "list<double>",
  5286. "value": [
  5287. 117.14309620090773,
  5288. 39.046443503803374
  5289. ]
  5290. },
  5291. "orientation": {
  5292. "type": "double",
  5293. "value": 0
  5294. },
  5295. "scale": {
  5296. "type": "list<double>",
  5297. "value": [
  5298. 1,
  5299. 1
  5300. ]
  5301. },
  5302. "link-style": {
  5303. "type": "map<string,string>",
  5304. "value": {
  5305. "stroke": "#00ffff",
  5306. "stroke-dasharray": "",
  5307. "stroke-opacity": 0.1,
  5308. "stroke-width": 1
  5309. }
  5310. }
  5311. },
  5312. "310": {
  5313. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5314. "position": {
  5315. "type": "list<double>",
  5316. "value": [
  5317. 112,
  5318. 39
  5319. ]
  5320. },
  5321. "orientation": {
  5322. "type": "double",
  5323. "value": 0
  5324. },
  5325. "scale": {
  5326. "type": "list<double>",
  5327. "value": [
  5328. 1,
  5329. 1
  5330. ]
  5331. },
  5332. "link-style": {
  5333. "type": "map<string,string>",
  5334. "value": {
  5335. "stroke": "#00ffff",
  5336. "stroke-dasharray": "",
  5337. "stroke-opacity": 0.1,
  5338. "stroke-width": 1
  5339. }
  5340. }
  5341. },
  5342. "311": {
  5343. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5344. "position": {
  5345. "type": "list<double>",
  5346. "value": [
  5347. 114.64294868314005,
  5348. 39.04743588588505
  5349. ]
  5350. },
  5351. "orientation": {
  5352. "type": "double",
  5353. "value": 0
  5354. },
  5355. "scale": {
  5356. "type": "list<double>",
  5357. "value": [
  5358. 1,
  5359. 1
  5360. ]
  5361. },
  5362. "link-style": {
  5363. "type": "map<string,string>",
  5364. "value": {
  5365. "stroke": "#00ffff",
  5366. "stroke-dasharray": "",
  5367. "stroke-opacity": 0.1,
  5368. "stroke-width": 1
  5369. }
  5370. }
  5371. },
  5372. "312": {
  5373. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5374. "position": {
  5375. "type": "list<double>",
  5376. "value": [
  5377. 117.14309620090773,
  5378. 39.046443503803374
  5379. ]
  5380. },
  5381. "orientation": {
  5382. "type": "double",
  5383. "value": 0
  5384. },
  5385. "scale": {
  5386. "type": "list<double>",
  5387. "value": [
  5388. 1,
  5389. 1
  5390. ]
  5391. },
  5392. "link-style": {
  5393. "type": "map<string,string>",
  5394. "value": {
  5395. "stroke": "#00ffff",
  5396. "stroke-dasharray": "",
  5397. "stroke-opacity": 0.1,
  5398. "stroke-width": 1
  5399. }
  5400. }
  5401. },
  5402. "313": {
  5403. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5404. "position": {
  5405. "type": "list<double>",
  5406. "value": [
  5407. 114.64294868314005,
  5408. 39.04743588588505
  5409. ]
  5410. },
  5411. "orientation": {
  5412. "type": "double",
  5413. "value": 0
  5414. },
  5415. "scale": {
  5416. "type": "list<double>",
  5417. "value": [
  5418. 1,
  5419. 1
  5420. ]
  5421. },
  5422. "link-style": {
  5423. "type": "map<string,string>",
  5424. "value": {
  5425. "stroke": "#00ffff",
  5426. "stroke-dasharray": "",
  5427. "stroke-opacity": 0.1,
  5428. "stroke-width": 1
  5429. }
  5430. }
  5431. },
  5432. "314": {
  5433. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5434. "position": {
  5435. "type": "list<double>",
  5436. "value": [
  5437. 114.64294868314005,
  5438. 39.04743588588505
  5439. ]
  5440. },
  5441. "orientation": {
  5442. "type": "double",
  5443. "value": 0
  5444. },
  5445. "scale": {
  5446. "type": "list<double>",
  5447. "value": [
  5448. 1,
  5449. 1
  5450. ]
  5451. },
  5452. "link-style": {
  5453. "type": "map<string,string>",
  5454. "value": {
  5455. "stroke": "#00ffff",
  5456. "stroke-dasharray": "",
  5457. "stroke-opacity": 0.1,
  5458. "stroke-width": 1
  5459. }
  5460. }
  5461. },
  5462. "315": {
  5463. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5464. "position": {
  5465. "type": "list<double>",
  5466. "value": [
  5467. 23.5,
  5468. 39
  5469. ]
  5470. },
  5471. "orientation": {
  5472. "type": "double",
  5473. "value": 0
  5474. },
  5475. "scale": {
  5476. "type": "list<double>",
  5477. "value": [
  5478. 1,
  5479. 1
  5480. ]
  5481. },
  5482. "link-style": {
  5483. "type": "map<string,string>",
  5484. "value": {
  5485. "stroke": "#00ffff",
  5486. "stroke-dasharray": "",
  5487. "stroke-opacity": 0.1,
  5488. "stroke-width": 1
  5489. }
  5490. }
  5491. },
  5492. "316": {
  5493. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5494. "position": {
  5495. "type": "list<double>",
  5496. "value": [
  5497. 25.578488230596065,
  5498. 39.129069534757946
  5499. ]
  5500. },
  5501. "orientation": {
  5502. "type": "double",
  5503. "value": 0
  5504. },
  5505. "scale": {
  5506. "type": "list<double>",
  5507. "value": [
  5508. 1,
  5509. 1
  5510. ]
  5511. },
  5512. "link-style": {
  5513. "type": "map<string,string>",
  5514. "value": {
  5515. "stroke": "#00ffff",
  5516. "stroke-dasharray": "",
  5517. "stroke-opacity": 0.1,
  5518. "stroke-width": 1
  5519. }
  5520. }
  5521. },
  5522. "317": {
  5523. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5524. "position": {
  5525. "type": "list<double>",
  5526. "value": [
  5527. 23.5,
  5528. 39
  5529. ]
  5530. },
  5531. "orientation": {
  5532. "type": "double",
  5533. "value": 0
  5534. },
  5535. "scale": {
  5536. "type": "list<double>",
  5537. "value": [
  5538. 1,
  5539. 1
  5540. ]
  5541. },
  5542. "link-style": {
  5543. "type": "map<string,string>",
  5544. "value": {
  5545. "stroke": "#00ffff",
  5546. "stroke-dasharray": "",
  5547. "stroke-opacity": 0.1,
  5548. "stroke-width": 1
  5549. }
  5550. }
  5551. },
  5552. "318": {
  5553. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5554. "position": {
  5555. "type": "list<double>",
  5556. "value": [
  5557. 23.5,
  5558. 39
  5559. ]
  5560. },
  5561. "orientation": {
  5562. "type": "double",
  5563. "value": 0
  5564. },
  5565. "scale": {
  5566. "type": "list<double>",
  5567. "value": [
  5568. 1,
  5569. 1
  5570. ]
  5571. },
  5572. "link-style": {
  5573. "type": "map<string,string>",
  5574. "value": {
  5575. "stroke": "#00ffff",
  5576. "stroke-dasharray": "",
  5577. "stroke-opacity": 0.1,
  5578. "stroke-width": 1
  5579. }
  5580. }
  5581. },
  5582. "319": {
  5583. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5584. "position": {
  5585. "type": "list<double>",
  5586. "value": [
  5587. 33.596315647178926,
  5588. 39.11684193264324
  5589. ]
  5590. },
  5591. "orientation": {
  5592. "type": "double",
  5593. "value": 0
  5594. },
  5595. "scale": {
  5596. "type": "list<double>",
  5597. "value": [
  5598. 1,
  5599. 1
  5600. ]
  5601. },
  5602. "link-style": {
  5603. "type": "map<string,string>",
  5604. "value": {
  5605. "stroke": "#00ffff",
  5606. "stroke-dasharray": "",
  5607. "stroke-opacity": 0.1,
  5608. "stroke-width": 1
  5609. }
  5610. }
  5611. },
  5612. "320": {
  5613. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5614. "position": {
  5615. "type": "list<double>",
  5616. "value": [
  5617. 25.578488230596065,
  5618. 39.129069534757946
  5619. ]
  5620. },
  5621. "orientation": {
  5622. "type": "double",
  5623. "value": 0
  5624. },
  5625. "scale": {
  5626. "type": "list<double>",
  5627. "value": [
  5628. 1,
  5629. 1
  5630. ]
  5631. },
  5632. "link-style": {
  5633. "type": "map<string,string>",
  5634. "value": {
  5635. "stroke": "#00ffff",
  5636. "stroke-dasharray": "",
  5637. "stroke-opacity": 0.1,
  5638. "stroke-width": 1
  5639. }
  5640. }
  5641. },
  5642. "321": {
  5643. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5644. "position": {
  5645. "type": "list<double>",
  5646. "value": [
  5647. 33.596315647178926,
  5648. 39.11684193264324
  5649. ]
  5650. },
  5651. "orientation": {
  5652. "type": "double",
  5653. "value": 0
  5654. },
  5655. "scale": {
  5656. "type": "list<double>",
  5657. "value": [
  5658. 1,
  5659. 1
  5660. ]
  5661. },
  5662. "link-style": {
  5663. "type": "map<string,string>",
  5664. "value": {
  5665. "stroke": "#00ffff",
  5666. "stroke-dasharray": "",
  5667. "stroke-opacity": 0.1,
  5668. "stroke-width": 1
  5669. }
  5670. }
  5671. },
  5672. "322": {
  5673. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5674. "position": {
  5675. "type": "list<double>",
  5676. "value": [
  5677. 33.596315647178926,
  5678. 39.11684193264324
  5679. ]
  5680. },
  5681. "orientation": {
  5682. "type": "double",
  5683. "value": 0
  5684. },
  5685. "scale": {
  5686. "type": "list<double>",
  5687. "value": [
  5688. 1,
  5689. 1
  5690. ]
  5691. },
  5692. "link-style": {
  5693. "type": "map<string,string>",
  5694. "value": {
  5695. "stroke": "#00ffff",
  5696. "stroke-dasharray": "",
  5697. "stroke-opacity": 0.1,
  5698. "stroke-width": 1
  5699. }
  5700. }
  5701. },
  5702. "323": {
  5703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5704. "position": {
  5705. "type": "list<double>",
  5706. "value": [
  5707. 21,
  5708. 39
  5709. ]
  5710. },
  5711. "orientation": {
  5712. "type": "double",
  5713. "value": 0
  5714. },
  5715. "scale": {
  5716. "type": "list<double>",
  5717. "value": [
  5718. 1,
  5719. 1
  5720. ]
  5721. },
  5722. "link-style": {
  5723. "type": "map<string,string>",
  5724. "value": {
  5725. "stroke": "#00ffff",
  5726. "stroke-dasharray": "",
  5727. "stroke-opacity": 0.1,
  5728. "stroke-width": 1
  5729. }
  5730. }
  5731. },
  5732. "324": {
  5733. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5734. "position": {
  5735. "type": "list<double>",
  5736. "value": [
  5737. 21,
  5738. 39
  5739. ]
  5740. },
  5741. "orientation": {
  5742. "type": "double",
  5743. "value": 0
  5744. },
  5745. "scale": {
  5746. "type": "list<double>",
  5747. "value": [
  5748. 1,
  5749. 1
  5750. ]
  5751. },
  5752. "link-style": {
  5753. "type": "map<string,string>",
  5754. "value": {
  5755. "stroke": "#00ffff",
  5756. "stroke-dasharray": "",
  5757. "stroke-opacity": 0.1,
  5758. "stroke-width": 1
  5759. }
  5760. }
  5761. },
  5762. "325": {
  5763. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5764. "position": {
  5765. "type": "list<double>",
  5766. "value": [
  5767. 23.5,
  5768. 39
  5769. ]
  5770. },
  5771. "orientation": {
  5772. "type": "double",
  5773. "value": 0
  5774. },
  5775. "scale": {
  5776. "type": "list<double>",
  5777. "value": [
  5778. 1,
  5779. 1
  5780. ]
  5781. },
  5782. "link-style": {
  5783. "type": "map<string,string>",
  5784. "value": {
  5785. "stroke": "#00ffff",
  5786. "stroke-dasharray": "",
  5787. "stroke-opacity": 0.1,
  5788. "stroke-width": 1
  5789. }
  5790. }
  5791. },
  5792. "326": {
  5793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5794. "position": {
  5795. "type": "list<double>",
  5796. "value": [
  5797. 33.596315647178926,
  5798. 39.11684193264324
  5799. ]
  5800. },
  5801. "orientation": {
  5802. "type": "double",
  5803. "value": 0
  5804. },
  5805. "scale": {
  5806. "type": "list<double>",
  5807. "value": [
  5808. 1,
  5809. 1
  5810. ]
  5811. },
  5812. "link-style": {
  5813. "type": "map<string,string>",
  5814. "value": {
  5815. "stroke": "#00ffff",
  5816. "stroke-dasharray": "",
  5817. "stroke-opacity": 0.1,
  5818. "stroke-width": 1
  5819. }
  5820. }
  5821. },
  5822. "327": {
  5823. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5824. "position": {
  5825. "type": "list<double>",
  5826. "value": [
  5827. 25.578488230596065,
  5828. 39.129069534757946
  5829. ]
  5830. },
  5831. "orientation": {
  5832. "type": "double",
  5833. "value": 0
  5834. },
  5835. "scale": {
  5836. "type": "list<double>",
  5837. "value": [
  5838. 1,
  5839. 1
  5840. ]
  5841. },
  5842. "link-style": {
  5843. "type": "map<string,string>",
  5844. "value": {
  5845. "stroke": "#00ffff",
  5846. "stroke-dasharray": "",
  5847. "stroke-opacity": 0.1,
  5848. "stroke-width": 1
  5849. }
  5850. }
  5851. },
  5852. "328": {
  5853. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5854. "position": {
  5855. "type": "list<double>",
  5856. "value": [
  5857. 28.08426952107112,
  5858. 39.124718891185296
  5859. ]
  5860. },
  5861. "orientation": {
  5862. "type": "double",
  5863. "value": 0
  5864. },
  5865. "scale": {
  5866. "type": "list<double>",
  5867. "value": [
  5868. 1,
  5869. 1
  5870. ]
  5871. },
  5872. "link-style": {
  5873. "type": "map<string,string>",
  5874. "value": {
  5875. "stroke": "#00ffff",
  5876. "stroke-dasharray": "",
  5877. "stroke-opacity": 0.1,
  5878. "stroke-width": 1
  5879. }
  5880. }
  5881. },
  5882. "329": {
  5883. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5884. "position": {
  5885. "type": "list<double>",
  5886. "value": [
  5887. 25.578488230596065,
  5888. 39.129069534757946
  5889. ]
  5890. },
  5891. "orientation": {
  5892. "type": "double",
  5893. "value": 0
  5894. },
  5895. "scale": {
  5896. "type": "list<double>",
  5897. "value": [
  5898. 1,
  5899. 1
  5900. ]
  5901. },
  5902. "link-style": {
  5903. "type": "map<string,string>",
  5904. "value": {
  5905. "stroke": "#00ffff",
  5906. "stroke-dasharray": "",
  5907. "stroke-opacity": 0.1,
  5908. "stroke-width": 1
  5909. }
  5910. }
  5911. },
  5912. "330": {
  5913. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  5914. "position": {
  5915. "type": "list<double>",
  5916. "value": [
  5917. 28.08426952107112,
  5918. 39.124718891185296
  5919. ]
  5920. },
  5921. "orientation": {
  5922. "type": "double",
  5923. "value": 0
  5924. },
  5925. "scale": {
  5926. "type": "list<double>",
  5927. "value": [
  5928. 1,
  5929. 1
  5930. ]
  5931. },
  5932. "link-style": {
  5933. "type": "map<string,string>",
  5934. "value": {
  5935. "stroke": "#00ffff",
  5936. "stroke-dasharray": "",
  5937. "stroke-opacity": 0.1,
  5938. "stroke-width": 1
  5939. }
  5940. }
  5941. }
  5942. },
  5943. "edges": [
  5944. {
  5945. "src": "92",
  5946. "dest": "122"
  5947. },
  5948. {
  5949. "src": "122",
  5950. "dest": "100"
  5951. },
  5952. {
  5953. "src": "100",
  5954. "dest": "195"
  5955. },
  5956. {
  5957. "src": "195",
  5958. "dest": "162"
  5959. },
  5960. {
  5961. "src": "100",
  5962. "dest": "299"
  5963. },
  5964. {
  5965. "src": "299",
  5966. "dest": "267"
  5967. },
  5968. {
  5969. "src": "100",
  5970. "dest": "300"
  5971. },
  5972. {
  5973. "src": "300",
  5974. "dest": "268"
  5975. },
  5976. {
  5977. "src": "100",
  5978. "dest": "301"
  5979. },
  5980. {
  5981. "src": "301",
  5982. "dest": "269"
  5983. },
  5984. {
  5985. "src": "100",
  5986. "dest": "302"
  5987. },
  5988. {
  5989. "src": "302",
  5990. "dest": "270"
  5991. },
  5992. {
  5993. "src": "100",
  5994. "dest": "303"
  5995. },
  5996. {
  5997. "src": "303",
  5998. "dest": "271"
  5999. },
  6000. {
  6001. "src": "100",
  6002. "dest": "304"
  6003. },
  6004. {
  6005. "src": "304",
  6006. "dest": "272"
  6007. },
  6008. {
  6009. "src": "100",
  6010. "dest": "305"
  6011. },
  6012. {
  6013. "src": "305",
  6014. "dest": "273"
  6015. },
  6016. {
  6017. "src": "100",
  6018. "dest": "306"
  6019. },
  6020. {
  6021. "src": "306",
  6022. "dest": "274"
  6023. },
  6024. {
  6025. "src": "100",
  6026. "dest": "307"
  6027. },
  6028. {
  6029. "src": "307",
  6030. "dest": "275"
  6031. },
  6032. {
  6033. "src": "100",
  6034. "dest": "308"
  6035. },
  6036. {
  6037. "src": "308",
  6038. "dest": "276"
  6039. },
  6040. {
  6041. "src": "100",
  6042. "dest": "309"
  6043. },
  6044. {
  6045. "src": "309",
  6046. "dest": "277"
  6047. },
  6048. {
  6049. "src": "100",
  6050. "dest": "310"
  6051. },
  6052. {
  6053. "src": "310",
  6054. "dest": "278"
  6055. },
  6056. {
  6057. "src": "100",
  6058. "dest": "311"
  6059. },
  6060. {
  6061. "src": "311",
  6062. "dest": "279"
  6063. },
  6064. {
  6065. "src": "100",
  6066. "dest": "312"
  6067. },
  6068. {
  6069. "src": "312",
  6070. "dest": "280"
  6071. },
  6072. {
  6073. "src": "100",
  6074. "dest": "313"
  6075. },
  6076. {
  6077. "src": "313",
  6078. "dest": "281"
  6079. },
  6080. {
  6081. "src": "100",
  6082. "dest": "314"
  6083. },
  6084. {
  6085. "src": "314",
  6086. "dest": "282"
  6087. },
  6088. {
  6089. "src": "100",
  6090. "dest": "315"
  6091. },
  6092. {
  6093. "src": "315",
  6094. "dest": "283"
  6095. },
  6096. {
  6097. "src": "100",
  6098. "dest": "316"
  6099. },
  6100. {
  6101. "src": "316",
  6102. "dest": "284"
  6103. },
  6104. {
  6105. "src": "100",
  6106. "dest": "317"
  6107. },
  6108. {
  6109. "src": "317",
  6110. "dest": "285"
  6111. },
  6112. {
  6113. "src": "100",
  6114. "dest": "318"
  6115. },
  6116. {
  6117. "src": "318",
  6118. "dest": "286"
  6119. },
  6120. {
  6121. "src": "100",
  6122. "dest": "319"
  6123. },
  6124. {
  6125. "src": "319",
  6126. "dest": "287"
  6127. },
  6128. {
  6129. "src": "100",
  6130. "dest": "320"
  6131. },
  6132. {
  6133. "src": "320",
  6134. "dest": "288"
  6135. },
  6136. {
  6137. "src": "100",
  6138. "dest": "321"
  6139. },
  6140. {
  6141. "src": "321",
  6142. "dest": "289"
  6143. },
  6144. {
  6145. "src": "100",
  6146. "dest": "322"
  6147. },
  6148. {
  6149. "src": "322",
  6150. "dest": "290"
  6151. },
  6152. {
  6153. "src": "100",
  6154. "dest": "323"
  6155. },
  6156. {
  6157. "src": "323",
  6158. "dest": "291"
  6159. },
  6160. {
  6161. "src": "100",
  6162. "dest": "324"
  6163. },
  6164. {
  6165. "src": "324",
  6166. "dest": "292"
  6167. },
  6168. {
  6169. "src": "100",
  6170. "dest": "325"
  6171. },
  6172. {
  6173. "src": "325",
  6174. "dest": "293"
  6175. },
  6176. {
  6177. "src": "100",
  6178. "dest": "326"
  6179. },
  6180. {
  6181. "src": "326",
  6182. "dest": "294"
  6183. },
  6184. {
  6185. "src": "100",
  6186. "dest": "327"
  6187. },
  6188. {
  6189. "src": "327",
  6190. "dest": "295"
  6191. },
  6192. {
  6193. "src": "100",
  6194. "dest": "328"
  6195. },
  6196. {
  6197. "src": "328",
  6198. "dest": "296"
  6199. },
  6200. {
  6201. "src": "100",
  6202. "dest": "329"
  6203. },
  6204. {
  6205. "src": "329",
  6206. "dest": "297"
  6207. },
  6208. {
  6209. "src": "100",
  6210. "dest": "330"
  6211. },
  6212. {
  6213. "src": "330",
  6214. "dest": "298"
  6215. }
  6216. ]
  6217. }
  6218. },
  6219. "$asuri": {
  6220. "type": "string",
  6221. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/6.instance"
  6222. },
  6223. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  6224. },
  6225. "7": {
  6226. "typename": {
  6227. "type": "string",
  6228. "value": "LinkIcon"
  6229. },
  6230. "position": {
  6231. "type": "list<double>",
  6232. "value": [
  6233. 1121,
  6234. 448
  6235. ]
  6236. },
  6237. "orientation": {
  6238. "type": "double",
  6239. "value": 0
  6240. },
  6241. "scale": {
  6242. "type": "list<double>",
  6243. "value": [
  6244. 1,
  6245. 1
  6246. ]
  6247. },
  6248. "mapper": {
  6249. "type": "code",
  6250. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  6251. },
  6252. "parser": {
  6253. "type": "code",
  6254. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  6255. },
  6256. "$contents": {
  6257. "type": "map<string,*>",
  6258. "value": {
  6259. "nodes": {
  6260. "92": {
  6261. "textContent": {
  6262. "type": "string",
  6263. "value": "NextLink"
  6264. },
  6265. "style": {
  6266. "type": "map<string,string>",
  6267. "value": {
  6268. "stroke": "#000000",
  6269. "stroke-dasharray": "",
  6270. "fill": "#000000",
  6271. "fill-opacity": "1",
  6272. "font-size": "13px"
  6273. }
  6274. },
  6275. "mapper": {
  6276. "type": "code",
  6277. "value": "({\"textContent\":getAttr(\"typename\")})"
  6278. },
  6279. "parser": {
  6280. "type": "code",
  6281. "value": "({\"typename\":getAttr(\"textContent\")})"
  6282. },
  6283. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6284. "position": {
  6285. "type": "list<double>",
  6286. "value": [
  6287. 56,
  6288. 156
  6289. ]
  6290. },
  6291. "orientation": {
  6292. "type": "double",
  6293. "value": 0
  6294. },
  6295. "scale": {
  6296. "type": "list<double>",
  6297. "value": [
  6298. 1,
  6299. 1
  6300. ]
  6301. }
  6302. },
  6303. "100": {
  6304. "width": {
  6305. "type": "double",
  6306. "value": 250
  6307. },
  6308. "height": {
  6309. "type": "double",
  6310. "value": "150"
  6311. },
  6312. "cornerRadius": {
  6313. "type": "double",
  6314. "value": "10"
  6315. },
  6316. "style": {
  6317. "type": "map<string,string>",
  6318. "value": {
  6319. "stroke": "#000000",
  6320. "stroke-dasharray": ". ",
  6321. "fill": "#ffffff",
  6322. "fill-opacity": 0.75,
  6323. "stroke-width": 1
  6324. }
  6325. },
  6326. "mapper": {
  6327. "type": "code",
  6328. "value": ""
  6329. },
  6330. "parser": {
  6331. "type": "code",
  6332. "value": ""
  6333. },
  6334. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6335. "position": {
  6336. "type": "list<double>",
  6337. "value": [
  6338. 3,
  6339. 2
  6340. ]
  6341. },
  6342. "orientation": {
  6343. "type": "double",
  6344. "value": 0
  6345. },
  6346. "scale": {
  6347. "type": "list<double>",
  6348. "value": [
  6349. 1.0327000000000006,
  6350. 1
  6351. ]
  6352. }
  6353. },
  6354. "122": {
  6355. "distance": {
  6356. "type": "double",
  6357. "value": 0
  6358. },
  6359. "alignment": {
  6360. "type": "ENUM('right','left','center')",
  6361. "value": "center"
  6362. },
  6363. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  6364. "position": {
  6365. "type": "list<double>",
  6366. "value": [
  6367. 82,
  6368. 151.5
  6369. ]
  6370. },
  6371. "orientation": {
  6372. "type": "double",
  6373. "value": 0
  6374. },
  6375. "scale": {
  6376. "type": "list<double>",
  6377. "value": [
  6378. 1,
  6379. 1
  6380. ]
  6381. },
  6382. "link-style": {
  6383. "type": "map<string,string>",
  6384. "value": {
  6385. "stroke": "#00ff00",
  6386. "stroke-dasharray": "",
  6387. "stroke-opacity": 1,
  6388. "stroke-width": 1
  6389. }
  6390. }
  6391. },
  6392. "162": {
  6393. "segments": {
  6394. "type": "string",
  6395. "value": "m0,0l198,0"
  6396. },
  6397. "style": {
  6398. "type": "map<string,string>",
  6399. "value": {
  6400. "stroke": "#000000",
  6401. "stroke-dasharray": "",
  6402. "stroke-opacity": 1,
  6403. "stroke-width": 2
  6404. }
  6405. },
  6406. "mapper": {
  6407. "type": "code",
  6408. "value": "({'style':getAttr('link-style')})"
  6409. },
  6410. "parser": {
  6411. "type": "code",
  6412. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6413. },
  6414. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6415. "position": {
  6416. "type": "list<double>",
  6417. "value": [
  6418. 34,
  6419. 77
  6420. ]
  6421. },
  6422. "orientation": {
  6423. "type": "double",
  6424. "value": 0
  6425. },
  6426. "scale": {
  6427. "type": "list<double>",
  6428. "value": [
  6429. 1,
  6430. 1
  6431. ]
  6432. }
  6433. },
  6434. "195": {
  6435. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6436. "position": {
  6437. "type": "list<double>",
  6438. "value": [
  6439. 68.12999992296295,
  6440. 39.57499995555554
  6441. ]
  6442. },
  6443. "orientation": {
  6444. "type": "double",
  6445. "value": 0
  6446. },
  6447. "scale": {
  6448. "type": "list<double>",
  6449. "value": [
  6450. 1,
  6451. 1
  6452. ]
  6453. },
  6454. "link-style": {
  6455. "type": "map<string,string>",
  6456. "value": {
  6457. "stroke": "#00ffff",
  6458. "stroke-dasharray": "",
  6459. "stroke-opacity": 0.1,
  6460. "stroke-width": 1
  6461. }
  6462. }
  6463. },
  6464. "267": {
  6465. "segments": {
  6466. "type": "string",
  6467. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  6468. },
  6469. "style": {
  6470. "type": "map<string,string>",
  6471. "value": {
  6472. "stroke": "#000000",
  6473. "fill": "#000000",
  6474. "opacity": 1,
  6475. "stroke-width": 1
  6476. }
  6477. },
  6478. "mapper": {
  6479. "type": "code",
  6480. "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})"
  6481. },
  6482. "parser": {
  6483. "type": "code",
  6484. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6485. },
  6486. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6487. "position": {
  6488. "type": "list<double>",
  6489. "value": [
  6490. 222,
  6491. 73
  6492. ]
  6493. },
  6494. "orientation": {
  6495. "type": "double",
  6496. "value": 0
  6497. },
  6498. "scale": {
  6499. "type": "list<double>",
  6500. "value": [
  6501. 1,
  6502. 1
  6503. ]
  6504. }
  6505. },
  6506. "268": {
  6507. "segments": {
  6508. "type": "string",
  6509. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6510. },
  6511. "style": {
  6512. "type": "map<string,string>",
  6513. "value": {
  6514. "stroke": "#000000",
  6515. "fill": "#000000",
  6516. "opacity": 0,
  6517. "stroke-width": 1
  6518. }
  6519. },
  6520. "mapper": {
  6521. "type": "code",
  6522. "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})"
  6523. },
  6524. "parser": {
  6525. "type": "code",
  6526. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6527. },
  6528. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6529. "position": {
  6530. "type": "list<double>",
  6531. "value": [
  6532. 222,
  6533. 67
  6534. ]
  6535. },
  6536. "orientation": {
  6537. "type": "double",
  6538. "value": 0
  6539. },
  6540. "scale": {
  6541. "type": "list<double>",
  6542. "value": [
  6543. 1,
  6544. 1
  6545. ]
  6546. }
  6547. },
  6548. "269": {
  6549. "r": {
  6550. "type": "double",
  6551. "value": 10
  6552. },
  6553. "style": {
  6554. "type": "map<string,string>",
  6555. "value": {
  6556. "stroke": "#000000",
  6557. "fill": "#000000",
  6558. "opacity": 0,
  6559. "stroke-width": 1
  6560. }
  6561. },
  6562. "mapper": {
  6563. "type": "code",
  6564. "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})"
  6565. },
  6566. "parser": {
  6567. "type": "code",
  6568. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6569. },
  6570. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6571. "position": {
  6572. "type": "list<double>",
  6573. "value": [
  6574. 212,
  6575. 67
  6576. ]
  6577. },
  6578. "orientation": {
  6579. "type": "double",
  6580. "value": 0
  6581. },
  6582. "scale": {
  6583. "type": "list<double>",
  6584. "value": [
  6585. 1,
  6586. 1
  6587. ]
  6588. }
  6589. },
  6590. "270": {
  6591. "r": {
  6592. "type": "double",
  6593. "value": 10
  6594. },
  6595. "style": {
  6596. "type": "map<string,string>",
  6597. "value": {
  6598. "stroke": "#000000",
  6599. "fill": "#ffffff",
  6600. "opacity": 0,
  6601. "stroke-width": 1
  6602. }
  6603. },
  6604. "mapper": {
  6605. "type": "code",
  6606. "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})"
  6607. },
  6608. "parser": {
  6609. "type": "code",
  6610. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6611. },
  6612. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6613. "position": {
  6614. "type": "list<double>",
  6615. "value": [
  6616. 212,
  6617. 67
  6618. ]
  6619. },
  6620. "orientation": {
  6621. "type": "double",
  6622. "value": 0
  6623. },
  6624. "scale": {
  6625. "type": "list<double>",
  6626. "value": [
  6627. 1,
  6628. 1
  6629. ]
  6630. }
  6631. },
  6632. "271": {
  6633. "r": {
  6634. "type": "double",
  6635. "value": 5
  6636. },
  6637. "style": {
  6638. "type": "map<string,string>",
  6639. "value": {
  6640. "stroke": "#000000",
  6641. "fill": "#000000",
  6642. "opacity": 0,
  6643. "stroke-width": 1
  6644. }
  6645. },
  6646. "mapper": {
  6647. "type": "code",
  6648. "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})"
  6649. },
  6650. "parser": {
  6651. "type": "code",
  6652. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6653. },
  6654. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6655. "position": {
  6656. "type": "list<double>",
  6657. "value": [
  6658. 222,
  6659. 72
  6660. ]
  6661. },
  6662. "orientation": {
  6663. "type": "double",
  6664. "value": 0
  6665. },
  6666. "scale": {
  6667. "type": "list<double>",
  6668. "value": [
  6669. 1,
  6670. 1
  6671. ]
  6672. }
  6673. },
  6674. "272": {
  6675. "segments": {
  6676. "type": "string",
  6677. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6678. },
  6679. "style": {
  6680. "type": "map<string,string>",
  6681. "value": {
  6682. "stroke": "#000000",
  6683. "fill": "#000000",
  6684. "opacity": 0,
  6685. "stroke-width": 1
  6686. }
  6687. },
  6688. "mapper": {
  6689. "type": "code",
  6690. "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})"
  6691. },
  6692. "parser": {
  6693. "type": "code",
  6694. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6695. },
  6696. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6697. "position": {
  6698. "type": "list<double>",
  6699. "value": [
  6700. 227,
  6701. 72
  6702. ]
  6703. },
  6704. "orientation": {
  6705. "type": "double",
  6706. "value": 0
  6707. },
  6708. "scale": {
  6709. "type": "list<double>",
  6710. "value": [
  6711. 1,
  6712. 1
  6713. ]
  6714. }
  6715. },
  6716. "273": {
  6717. "segments": {
  6718. "type": "string",
  6719. "value": "m0,0 l20,10 l-20,10 z"
  6720. },
  6721. "style": {
  6722. "type": "map<string,string>",
  6723. "value": {
  6724. "stroke": "#000000",
  6725. "fill": "#000000",
  6726. "opacity": 0,
  6727. "stroke-width": 1
  6728. }
  6729. },
  6730. "mapper": {
  6731. "type": "code",
  6732. "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})"
  6733. },
  6734. "parser": {
  6735. "type": "code",
  6736. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6737. },
  6738. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6739. "position": {
  6740. "type": "list<double>",
  6741. "value": [
  6742. 212,
  6743. 67
  6744. ]
  6745. },
  6746. "orientation": {
  6747. "type": "double",
  6748. "value": 0
  6749. },
  6750. "scale": {
  6751. "type": "list<double>",
  6752. "value": [
  6753. 1,
  6754. 1
  6755. ]
  6756. }
  6757. },
  6758. "274": {
  6759. "segments": {
  6760. "type": "string",
  6761. "value": "m0,0 l10,4 l-10,4 z"
  6762. },
  6763. "style": {
  6764. "type": "map<string,string>",
  6765. "value": {
  6766. "stroke": "#000000",
  6767. "fill": "#000000",
  6768. "opacity": 0,
  6769. "stroke-width": 1
  6770. }
  6771. },
  6772. "mapper": {
  6773. "type": "code",
  6774. "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})"
  6775. },
  6776. "parser": {
  6777. "type": "code",
  6778. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6779. },
  6780. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6781. "position": {
  6782. "type": "list<double>",
  6783. "value": [
  6784. 222,
  6785. 73
  6786. ]
  6787. },
  6788. "orientation": {
  6789. "type": "double",
  6790. "value": 0
  6791. },
  6792. "scale": {
  6793. "type": "list<double>",
  6794. "value": [
  6795. 1,
  6796. 1
  6797. ]
  6798. }
  6799. },
  6800. "275": {
  6801. "segments": {
  6802. "type": "string",
  6803. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  6804. },
  6805. "style": {
  6806. "type": "map<string,string>",
  6807. "value": {
  6808. "stroke": "#000000",
  6809. "fill": "#000000",
  6810. "opacity": 0,
  6811. "stroke-width": 1
  6812. }
  6813. },
  6814. "mapper": {
  6815. "type": "code",
  6816. "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})"
  6817. },
  6818. "parser": {
  6819. "type": "code",
  6820. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6821. },
  6822. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6823. "position": {
  6824. "type": "list<double>",
  6825. "value": [
  6826. 212,
  6827. 69
  6828. ]
  6829. },
  6830. "orientation": {
  6831. "type": "double",
  6832. "value": 0
  6833. },
  6834. "scale": {
  6835. "type": "list<double>",
  6836. "value": [
  6837. 1,
  6838. 1
  6839. ]
  6840. }
  6841. },
  6842. "276": {
  6843. "segments": {
  6844. "type": "string",
  6845. "value": "m0,0 l20,10 l-20,10 z"
  6846. },
  6847. "style": {
  6848. "type": "map<string,string>",
  6849. "value": {
  6850. "stroke": "#000000",
  6851. "fill": "#ffffff",
  6852. "opacity": 0,
  6853. "stroke-width": 1
  6854. }
  6855. },
  6856. "mapper": {
  6857. "type": "code",
  6858. "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})"
  6859. },
  6860. "parser": {
  6861. "type": "code",
  6862. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6863. },
  6864. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6865. "position": {
  6866. "type": "list<double>",
  6867. "value": [
  6868. 212,
  6869. 67
  6870. ]
  6871. },
  6872. "orientation": {
  6873. "type": "double",
  6874. "value": 0
  6875. },
  6876. "scale": {
  6877. "type": "list<double>",
  6878. "value": [
  6879. 1,
  6880. 1
  6881. ]
  6882. }
  6883. },
  6884. "277": {
  6885. "segments": {
  6886. "type": "string",
  6887. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6888. },
  6889. "style": {
  6890. "type": "map<string,string>",
  6891. "value": {
  6892. "stroke": "#000000",
  6893. "fill": "#ffffff",
  6894. "opacity": 0,
  6895. "stroke-width": 1
  6896. }
  6897. },
  6898. "mapper": {
  6899. "type": "code",
  6900. "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})"
  6901. },
  6902. "parser": {
  6903. "type": "code",
  6904. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6905. },
  6906. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6907. "position": {
  6908. "type": "list<double>",
  6909. "value": [
  6910. 227,
  6911. 72
  6912. ]
  6913. },
  6914. "orientation": {
  6915. "type": "double",
  6916. "value": 0
  6917. },
  6918. "scale": {
  6919. "type": "list<double>",
  6920. "value": [
  6921. 1,
  6922. 1
  6923. ]
  6924. }
  6925. },
  6926. "278": {
  6927. "segments": {
  6928. "type": "string",
  6929. "value": "m0,0 l20,8 l-20,8"
  6930. },
  6931. "style": {
  6932. "type": "map<string,string>",
  6933. "value": {
  6934. "stroke": "#000000",
  6935. "fill": "#000000",
  6936. "fill-opacity": 0,
  6937. "stroke-width": 1,
  6938. "opacity": 0
  6939. }
  6940. },
  6941. "mapper": {
  6942. "type": "code",
  6943. "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})"
  6944. },
  6945. "parser": {
  6946. "type": "code",
  6947. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6948. },
  6949. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6950. "position": {
  6951. "type": "list<double>",
  6952. "value": [
  6953. 212,
  6954. 69
  6955. ]
  6956. },
  6957. "orientation": {
  6958. "type": "double",
  6959. "value": 0
  6960. },
  6961. "scale": {
  6962. "type": "list<double>",
  6963. "value": [
  6964. 1,
  6965. 1
  6966. ]
  6967. }
  6968. },
  6969. "279": {
  6970. "r": {
  6971. "type": "double",
  6972. "value": 5
  6973. },
  6974. "style": {
  6975. "type": "map<string,string>",
  6976. "value": {
  6977. "stroke": "#000000",
  6978. "fill": "#ffffff",
  6979. "opacity": 0,
  6980. "stroke-width": 1
  6981. }
  6982. },
  6983. "mapper": {
  6984. "type": "code",
  6985. "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})"
  6986. },
  6987. "parser": {
  6988. "type": "code",
  6989. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6990. },
  6991. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6992. "position": {
  6993. "type": "list<double>",
  6994. "value": [
  6995. 222,
  6996. 72
  6997. ]
  6998. },
  6999. "orientation": {
  7000. "type": "double",
  7001. "value": 0
  7002. },
  7003. "scale": {
  7004. "type": "list<double>",
  7005. "value": [
  7006. 1,
  7007. 1
  7008. ]
  7009. }
  7010. },
  7011. "280": {
  7012. "segments": {
  7013. "type": "string",
  7014. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7015. },
  7016. "style": {
  7017. "type": "map<string,string>",
  7018. "value": {
  7019. "stroke": "#000000",
  7020. "fill": "#ffffff",
  7021. "opacity": 0,
  7022. "stroke-width": 1
  7023. }
  7024. },
  7025. "mapper": {
  7026. "type": "code",
  7027. "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})"
  7028. },
  7029. "parser": {
  7030. "type": "code",
  7031. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7032. },
  7033. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7034. "position": {
  7035. "type": "list<double>",
  7036. "value": [
  7037. 222,
  7038. 67
  7039. ]
  7040. },
  7041. "orientation": {
  7042. "type": "double",
  7043. "value": 0
  7044. },
  7045. "scale": {
  7046. "type": "list<double>",
  7047. "value": [
  7048. 1,
  7049. 1
  7050. ]
  7051. }
  7052. },
  7053. "281": {
  7054. "segments": {
  7055. "type": "string",
  7056. "value": "m0,0 l10,4 l-10,4"
  7057. },
  7058. "style": {
  7059. "type": "map<string,string>",
  7060. "value": {
  7061. "stroke": "#000000",
  7062. "fill": "#000000",
  7063. "fill-opacity": 0,
  7064. "stroke-width": 1,
  7065. "opacity": 0
  7066. }
  7067. },
  7068. "mapper": {
  7069. "type": "code",
  7070. "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})"
  7071. },
  7072. "parser": {
  7073. "type": "code",
  7074. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7075. },
  7076. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7077. "position": {
  7078. "type": "list<double>",
  7079. "value": [
  7080. 222,
  7081. 73
  7082. ]
  7083. },
  7084. "orientation": {
  7085. "type": "double",
  7086. "value": 0
  7087. },
  7088. "scale": {
  7089. "type": "list<double>",
  7090. "value": [
  7091. 1,
  7092. 1
  7093. ]
  7094. }
  7095. },
  7096. "282": {
  7097. "segments": {
  7098. "type": "string",
  7099. "value": "m0,0 l10,5 l-10,5 z"
  7100. },
  7101. "style": {
  7102. "type": "map<string,string>",
  7103. "value": {
  7104. "stroke": "#000000",
  7105. "fill": "#ffffff",
  7106. "opacity": 0,
  7107. "stroke-width": 1
  7108. }
  7109. },
  7110. "mapper": {
  7111. "type": "code",
  7112. "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})"
  7113. },
  7114. "parser": {
  7115. "type": "code",
  7116. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7117. },
  7118. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7119. "position": {
  7120. "type": "list<double>",
  7121. "value": [
  7122. 222,
  7123. 72
  7124. ]
  7125. },
  7126. "orientation": {
  7127. "type": "double",
  7128. "value": 0
  7129. },
  7130. "scale": {
  7131. "type": "list<double>",
  7132. "value": [
  7133. 1,
  7134. 1
  7135. ]
  7136. }
  7137. },
  7138. "283": {
  7139. "segments": {
  7140. "type": "string",
  7141. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7142. },
  7143. "style": {
  7144. "type": "map<string,string>",
  7145. "value": {
  7146. "stroke": "#000000",
  7147. "fill": "#ffffff",
  7148. "opacity": 0,
  7149. "stroke-width": 1
  7150. }
  7151. },
  7152. "mapper": {
  7153. "type": "code",
  7154. "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})"
  7155. },
  7156. "parser": {
  7157. "type": "code",
  7158. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7159. },
  7160. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7161. "position": {
  7162. "type": "list<double>",
  7163. "value": [
  7164. 39,
  7165. 72
  7166. ]
  7167. },
  7168. "orientation": {
  7169. "type": "double",
  7170. "value": 0
  7171. },
  7172. "scale": {
  7173. "type": "list<double>",
  7174. "value": [
  7175. 1,
  7176. 1
  7177. ]
  7178. }
  7179. },
  7180. "284": {
  7181. "segments": {
  7182. "type": "string",
  7183. "value": "m0,0 l-10,5 l10,5 z"
  7184. },
  7185. "style": {
  7186. "type": "map<string,string>",
  7187. "value": {
  7188. "stroke": "#000000",
  7189. "fill": "#ffffff",
  7190. "opacity": 0,
  7191. "stroke-width": 1
  7192. }
  7193. },
  7194. "mapper": {
  7195. "type": "code",
  7196. "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})"
  7197. },
  7198. "parser": {
  7199. "type": "code",
  7200. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7201. },
  7202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7203. "position": {
  7204. "type": "list<double>",
  7205. "value": [
  7206. 43,
  7207. 72
  7208. ]
  7209. },
  7210. "orientation": {
  7211. "type": "double",
  7212. "value": 0
  7213. },
  7214. "scale": {
  7215. "type": "list<double>",
  7216. "value": [
  7217. 1,
  7218. 1
  7219. ]
  7220. }
  7221. },
  7222. "285": {
  7223. "segments": {
  7224. "type": "string",
  7225. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7226. },
  7227. "style": {
  7228. "type": "map<string,string>",
  7229. "value": {
  7230. "stroke": "#000000",
  7231. "fill": "#000000",
  7232. "opacity": 0,
  7233. "stroke-width": 1
  7234. }
  7235. },
  7236. "mapper": {
  7237. "type": "code",
  7238. "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})"
  7239. },
  7240. "parser": {
  7241. "type": "code",
  7242. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7243. },
  7244. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7245. "position": {
  7246. "type": "list<double>",
  7247. "value": [
  7248. 39,
  7249. 72
  7250. ]
  7251. },
  7252. "orientation": {
  7253. "type": "double",
  7254. "value": 0
  7255. },
  7256. "scale": {
  7257. "type": "list<double>",
  7258. "value": [
  7259. 1,
  7260. 1
  7261. ]
  7262. }
  7263. },
  7264. "286": {
  7265. "r": {
  7266. "type": "double",
  7267. "value": 10
  7268. },
  7269. "style": {
  7270. "type": "map<string,string>",
  7271. "value": {
  7272. "stroke": "#000000",
  7273. "fill": "#000000",
  7274. "opacity": 0,
  7275. "stroke-width": 1
  7276. }
  7277. },
  7278. "mapper": {
  7279. "type": "code",
  7280. "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})"
  7281. },
  7282. "parser": {
  7283. "type": "code",
  7284. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7285. },
  7286. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7287. "position": {
  7288. "type": "list<double>",
  7289. "value": [
  7290. 34,
  7291. 67
  7292. ]
  7293. },
  7294. "orientation": {
  7295. "type": "double",
  7296. "value": 0
  7297. },
  7298. "scale": {
  7299. "type": "list<double>",
  7300. "value": [
  7301. 1,
  7302. 1
  7303. ]
  7304. }
  7305. },
  7306. "287": {
  7307. "segments": {
  7308. "type": "string",
  7309. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  7310. },
  7311. "style": {
  7312. "type": "map<string,string>",
  7313. "value": {
  7314. "stroke": "#000000",
  7315. "fill": "#000000",
  7316. "opacity": 0,
  7317. "stroke-width": 1
  7318. }
  7319. },
  7320. "mapper": {
  7321. "type": "code",
  7322. "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})"
  7323. },
  7324. "parser": {
  7325. "type": "code",
  7326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7327. },
  7328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7329. "position": {
  7330. "type": "list<double>",
  7331. "value": [
  7332. 54,
  7333. 69
  7334. ]
  7335. },
  7336. "orientation": {
  7337. "type": "double",
  7338. "value": 0
  7339. },
  7340. "scale": {
  7341. "type": "list<double>",
  7342. "value": [
  7343. 1,
  7344. 1
  7345. ]
  7346. }
  7347. },
  7348. "288": {
  7349. "segments": {
  7350. "type": "string",
  7351. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  7352. },
  7353. "style": {
  7354. "type": "map<string,string>",
  7355. "value": {
  7356. "stroke": "#000000",
  7357. "fill": "#000000",
  7358. "opacity": 0,
  7359. "stroke-width": 1
  7360. }
  7361. },
  7362. "mapper": {
  7363. "type": "code",
  7364. "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})"
  7365. },
  7366. "parser": {
  7367. "type": "code",
  7368. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7369. },
  7370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7371. "position": {
  7372. "type": "list<double>",
  7373. "value": [
  7374. 43,
  7375. 73
  7376. ]
  7377. },
  7378. "orientation": {
  7379. "type": "double",
  7380. "value": 0
  7381. },
  7382. "scale": {
  7383. "type": "list<double>",
  7384. "value": [
  7385. 1,
  7386. 1
  7387. ]
  7388. }
  7389. },
  7390. "289": {
  7391. "segments": {
  7392. "type": "string",
  7393. "value": "m0,0 l-20,10 l20,10 z"
  7394. },
  7395. "style": {
  7396. "type": "map<string,string>",
  7397. "value": {
  7398. "stroke": "#000000",
  7399. "fill": "#ffffff",
  7400. "opacity": 0,
  7401. "stroke-width": 1
  7402. }
  7403. },
  7404. "mapper": {
  7405. "type": "code",
  7406. "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})"
  7407. },
  7408. "parser": {
  7409. "type": "code",
  7410. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7411. },
  7412. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7413. "position": {
  7414. "type": "list<double>",
  7415. "value": [
  7416. 54,
  7417. 67
  7418. ]
  7419. },
  7420. "orientation": {
  7421. "type": "double",
  7422. "value": 0
  7423. },
  7424. "scale": {
  7425. "type": "list<double>",
  7426. "value": [
  7427. 1,
  7428. 1
  7429. ]
  7430. }
  7431. },
  7432. "290": {
  7433. "segments": {
  7434. "type": "string",
  7435. "value": "m0,0 l-20,10 l20,10 z"
  7436. },
  7437. "style": {
  7438. "type": "map<string,string>",
  7439. "value": {
  7440. "stroke": "#000000",
  7441. "fill": "#000000",
  7442. "opacity": 0,
  7443. "stroke-width": 1
  7444. }
  7445. },
  7446. "mapper": {
  7447. "type": "code",
  7448. "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})"
  7449. },
  7450. "parser": {
  7451. "type": "code",
  7452. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7453. },
  7454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7455. "position": {
  7456. "type": "list<double>",
  7457. "value": [
  7458. 54,
  7459. 67
  7460. ]
  7461. },
  7462. "orientation": {
  7463. "type": "double",
  7464. "value": 0
  7465. },
  7466. "scale": {
  7467. "type": "list<double>",
  7468. "value": [
  7469. 1,
  7470. 1
  7471. ]
  7472. }
  7473. },
  7474. "291": {
  7475. "r": {
  7476. "type": "double",
  7477. "value": 5
  7478. },
  7479. "style": {
  7480. "type": "map<string,string>",
  7481. "value": {
  7482. "stroke": "#000000",
  7483. "fill": "#000000",
  7484. "opacity": 0,
  7485. "stroke-width": 1
  7486. }
  7487. },
  7488. "mapper": {
  7489. "type": "code",
  7490. "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})"
  7491. },
  7492. "parser": {
  7493. "type": "code",
  7494. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7495. },
  7496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7497. "position": {
  7498. "type": "list<double>",
  7499. "value": [
  7500. 34,
  7501. 72
  7502. ]
  7503. },
  7504. "orientation": {
  7505. "type": "double",
  7506. "value": 0
  7507. },
  7508. "scale": {
  7509. "type": "list<double>",
  7510. "value": [
  7511. 1,
  7512. 1
  7513. ]
  7514. }
  7515. },
  7516. "292": {
  7517. "r": {
  7518. "type": "double",
  7519. "value": 5
  7520. },
  7521. "style": {
  7522. "type": "map<string,string>",
  7523. "value": {
  7524. "stroke": "#000000",
  7525. "fill": "#ffffff",
  7526. "opacity": 0,
  7527. "stroke-width": 1
  7528. }
  7529. },
  7530. "mapper": {
  7531. "type": "code",
  7532. "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})"
  7533. },
  7534. "parser": {
  7535. "type": "code",
  7536. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7537. },
  7538. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7539. "position": {
  7540. "type": "list<double>",
  7541. "value": [
  7542. 34,
  7543. 72
  7544. ]
  7545. },
  7546. "orientation": {
  7547. "type": "double",
  7548. "value": 0
  7549. },
  7550. "scale": {
  7551. "type": "list<double>",
  7552. "value": [
  7553. 1,
  7554. 1
  7555. ]
  7556. }
  7557. },
  7558. "293": {
  7559. "r": {
  7560. "type": "double",
  7561. "value": 10
  7562. },
  7563. "style": {
  7564. "type": "map<string,string>",
  7565. "value": {
  7566. "stroke": "#000000",
  7567. "fill": "#ffffff",
  7568. "opacity": 0,
  7569. "stroke-width": 1
  7570. }
  7571. },
  7572. "mapper": {
  7573. "type": "code",
  7574. "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})"
  7575. },
  7576. "parser": {
  7577. "type": "code",
  7578. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7579. },
  7580. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7581. "position": {
  7582. "type": "list<double>",
  7583. "value": [
  7584. 34,
  7585. 67
  7586. ]
  7587. },
  7588. "orientation": {
  7589. "type": "double",
  7590. "value": 0
  7591. },
  7592. "scale": {
  7593. "type": "list<double>",
  7594. "value": [
  7595. 1,
  7596. 1
  7597. ]
  7598. }
  7599. },
  7600. "294": {
  7601. "segments": {
  7602. "type": "string",
  7603. "value": "m0,0 l-20,8 l20,8"
  7604. },
  7605. "style": {
  7606. "type": "map<string,string>",
  7607. "value": {
  7608. "stroke": "#000000",
  7609. "fill": "#000000",
  7610. "fill-opacity": 0,
  7611. "stroke-width": 1,
  7612. "opacity": 0
  7613. }
  7614. },
  7615. "mapper": {
  7616. "type": "code",
  7617. "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})"
  7618. },
  7619. "parser": {
  7620. "type": "code",
  7621. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7622. },
  7623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7624. "position": {
  7625. "type": "list<double>",
  7626. "value": [
  7627. 54,
  7628. 69
  7629. ]
  7630. },
  7631. "orientation": {
  7632. "type": "double",
  7633. "value": 0
  7634. },
  7635. "scale": {
  7636. "type": "list<double>",
  7637. "value": [
  7638. 1,
  7639. 1
  7640. ]
  7641. }
  7642. },
  7643. "295": {
  7644. "segments": {
  7645. "type": "string",
  7646. "value": "m0,0 l-10,4 l10,4"
  7647. },
  7648. "style": {
  7649. "type": "map<string,string>",
  7650. "value": {
  7651. "stroke": "#000000",
  7652. "fill": "#000000",
  7653. "fill-opacity": 0,
  7654. "stroke-width": 1,
  7655. "opacity": 0
  7656. }
  7657. },
  7658. "mapper": {
  7659. "type": "code",
  7660. "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})"
  7661. },
  7662. "parser": {
  7663. "type": "code",
  7664. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7665. },
  7666. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7667. "position": {
  7668. "type": "list<double>",
  7669. "value": [
  7670. 43,
  7671. 73
  7672. ]
  7673. },
  7674. "orientation": {
  7675. "type": "double",
  7676. "value": 0
  7677. },
  7678. "scale": {
  7679. "type": "list<double>",
  7680. "value": [
  7681. 1,
  7682. 1
  7683. ]
  7684. }
  7685. },
  7686. "296": {
  7687. "segments": {
  7688. "type": "string",
  7689. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7690. },
  7691. "style": {
  7692. "type": "map<string,string>",
  7693. "value": {
  7694. "stroke": "#000000",
  7695. "fill": "#000000",
  7696. "opacity": 0,
  7697. "stroke-width": 1
  7698. }
  7699. },
  7700. "mapper": {
  7701. "type": "code",
  7702. "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})"
  7703. },
  7704. "parser": {
  7705. "type": "code",
  7706. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7707. },
  7708. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7709. "position": {
  7710. "type": "list<double>",
  7711. "value": [
  7712. 43,
  7713. 67
  7714. ]
  7715. },
  7716. "orientation": {
  7717. "type": "double",
  7718. "value": 0
  7719. },
  7720. "scale": {
  7721. "type": "list<double>",
  7722. "value": [
  7723. 1,
  7724. 1
  7725. ]
  7726. }
  7727. },
  7728. "297": {
  7729. "segments": {
  7730. "type": "string",
  7731. "value": "m0,0 l-10,4 l10,4 z"
  7732. },
  7733. "style": {
  7734. "type": "map<string,string>",
  7735. "value": {
  7736. "stroke": "#000000",
  7737. "fill": "#000000",
  7738. "opacity": 0,
  7739. "stroke-width": 1
  7740. }
  7741. },
  7742. "mapper": {
  7743. "type": "code",
  7744. "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})"
  7745. },
  7746. "parser": {
  7747. "type": "code",
  7748. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7749. },
  7750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7751. "position": {
  7752. "type": "list<double>",
  7753. "value": [
  7754. 43,
  7755. 73
  7756. ]
  7757. },
  7758. "orientation": {
  7759. "type": "double",
  7760. "value": 0
  7761. },
  7762. "scale": {
  7763. "type": "list<double>",
  7764. "value": [
  7765. 1,
  7766. 1
  7767. ]
  7768. }
  7769. },
  7770. "298": {
  7771. "segments": {
  7772. "type": "string",
  7773. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7774. },
  7775. "style": {
  7776. "type": "map<string,string>",
  7777. "value": {
  7778. "stroke": "#000000",
  7779. "fill": "#ffffff",
  7780. "opacity": 0,
  7781. "stroke-width": 1
  7782. }
  7783. },
  7784. "mapper": {
  7785. "type": "code",
  7786. "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})"
  7787. },
  7788. "parser": {
  7789. "type": "code",
  7790. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7791. },
  7792. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7793. "position": {
  7794. "type": "list<double>",
  7795. "value": [
  7796. 43,
  7797. 67
  7798. ]
  7799. },
  7800. "orientation": {
  7801. "type": "double",
  7802. "value": 0
  7803. },
  7804. "scale": {
  7805. "type": "list<double>",
  7806. "value": [
  7807. 1,
  7808. 1
  7809. ]
  7810. }
  7811. },
  7812. "299": {
  7813. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7814. "position": {
  7815. "type": "list<double>",
  7816. "value": [
  7817. 114.64294868314005,
  7818. 39.04743588588505
  7819. ]
  7820. },
  7821. "orientation": {
  7822. "type": "double",
  7823. "value": 0
  7824. },
  7825. "scale": {
  7826. "type": "list<double>",
  7827. "value": [
  7828. 1,
  7829. 1
  7830. ]
  7831. },
  7832. "link-style": {
  7833. "type": "map<string,string>",
  7834. "value": {
  7835. "stroke": "#00ffff",
  7836. "stroke-dasharray": "",
  7837. "stroke-opacity": 0.1,
  7838. "stroke-width": 1
  7839. }
  7840. }
  7841. },
  7842. "300": {
  7843. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7844. "position": {
  7845. "type": "list<double>",
  7846. "value": [
  7847. 117.14309620090773,
  7848. 39.046443503803374
  7849. ]
  7850. },
  7851. "orientation": {
  7852. "type": "double",
  7853. "value": 0
  7854. },
  7855. "scale": {
  7856. "type": "list<double>",
  7857. "value": [
  7858. 1,
  7859. 1
  7860. ]
  7861. },
  7862. "link-style": {
  7863. "type": "map<string,string>",
  7864. "value": {
  7865. "stroke": "#00ffff",
  7866. "stroke-dasharray": "",
  7867. "stroke-opacity": 0.1,
  7868. "stroke-width": 1
  7869. }
  7870. }
  7871. },
  7872. "301": {
  7873. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7874. "position": {
  7875. "type": "list<double>",
  7876. "value": [
  7877. 112,
  7878. 39
  7879. ]
  7880. },
  7881. "orientation": {
  7882. "type": "double",
  7883. "value": 0
  7884. },
  7885. "scale": {
  7886. "type": "list<double>",
  7887. "value": [
  7888. 1,
  7889. 1
  7890. ]
  7891. },
  7892. "link-style": {
  7893. "type": "map<string,string>",
  7894. "value": {
  7895. "stroke": "#00ffff",
  7896. "stroke-dasharray": "",
  7897. "stroke-opacity": 0.1,
  7898. "stroke-width": 1
  7899. }
  7900. }
  7901. },
  7902. "302": {
  7903. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7904. "position": {
  7905. "type": "list<double>",
  7906. "value": [
  7907. 112,
  7908. 39
  7909. ]
  7910. },
  7911. "orientation": {
  7912. "type": "double",
  7913. "value": 0
  7914. },
  7915. "scale": {
  7916. "type": "list<double>",
  7917. "value": [
  7918. 1,
  7919. 1
  7920. ]
  7921. },
  7922. "link-style": {
  7923. "type": "map<string,string>",
  7924. "value": {
  7925. "stroke": "#00ffff",
  7926. "stroke-dasharray": "",
  7927. "stroke-opacity": 0.1,
  7928. "stroke-width": 1
  7929. }
  7930. }
  7931. },
  7932. "303": {
  7933. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7934. "position": {
  7935. "type": "list<double>",
  7936. "value": [
  7937. 114.64294868314005,
  7938. 39.04743588588505
  7939. ]
  7940. },
  7941. "orientation": {
  7942. "type": "double",
  7943. "value": 0
  7944. },
  7945. "scale": {
  7946. "type": "list<double>",
  7947. "value": [
  7948. 1,
  7949. 1
  7950. ]
  7951. },
  7952. "link-style": {
  7953. "type": "map<string,string>",
  7954. "value": {
  7955. "stroke": "#00ffff",
  7956. "stroke-dasharray": "",
  7957. "stroke-opacity": 0.1,
  7958. "stroke-width": 1
  7959. }
  7960. }
  7961. },
  7962. "304": {
  7963. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7964. "position": {
  7965. "type": "list<double>",
  7966. "value": [
  7967. 117.14309620090773,
  7968. 39.046443503803374
  7969. ]
  7970. },
  7971. "orientation": {
  7972. "type": "double",
  7973. "value": 0
  7974. },
  7975. "scale": {
  7976. "type": "list<double>",
  7977. "value": [
  7978. 1,
  7979. 1
  7980. ]
  7981. },
  7982. "link-style": {
  7983. "type": "map<string,string>",
  7984. "value": {
  7985. "stroke": "#00ffff",
  7986. "stroke-dasharray": "",
  7987. "stroke-opacity": 0.1,
  7988. "stroke-width": 1
  7989. }
  7990. }
  7991. },
  7992. "305": {
  7993. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7994. "position": {
  7995. "type": "list<double>",
  7996. "value": [
  7997. 112,
  7998. 39
  7999. ]
  8000. },
  8001. "orientation": {
  8002. "type": "double",
  8003. "value": 0
  8004. },
  8005. "scale": {
  8006. "type": "list<double>",
  8007. "value": [
  8008. 1,
  8009. 1
  8010. ]
  8011. },
  8012. "link-style": {
  8013. "type": "map<string,string>",
  8014. "value": {
  8015. "stroke": "#00ffff",
  8016. "stroke-dasharray": "",
  8017. "stroke-opacity": 0.1,
  8018. "stroke-width": 1
  8019. }
  8020. }
  8021. },
  8022. "306": {
  8023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8024. "position": {
  8025. "type": "list<double>",
  8026. "value": [
  8027. 114.64294868314005,
  8028. 39.04743588588505
  8029. ]
  8030. },
  8031. "orientation": {
  8032. "type": "double",
  8033. "value": 0
  8034. },
  8035. "scale": {
  8036. "type": "list<double>",
  8037. "value": [
  8038. 1,
  8039. 1
  8040. ]
  8041. },
  8042. "link-style": {
  8043. "type": "map<string,string>",
  8044. "value": {
  8045. "stroke": "#00ffff",
  8046. "stroke-dasharray": "",
  8047. "stroke-opacity": 0.1,
  8048. "stroke-width": 1
  8049. }
  8050. }
  8051. },
  8052. "307": {
  8053. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8054. "position": {
  8055. "type": "list<double>",
  8056. "value": [
  8057. 112,
  8058. 39
  8059. ]
  8060. },
  8061. "orientation": {
  8062. "type": "double",
  8063. "value": 0
  8064. },
  8065. "scale": {
  8066. "type": "list<double>",
  8067. "value": [
  8068. 1,
  8069. 1
  8070. ]
  8071. },
  8072. "link-style": {
  8073. "type": "map<string,string>",
  8074. "value": {
  8075. "stroke": "#00ffff",
  8076. "stroke-dasharray": "",
  8077. "stroke-opacity": 0.1,
  8078. "stroke-width": 1
  8079. }
  8080. }
  8081. },
  8082. "308": {
  8083. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8084. "position": {
  8085. "type": "list<double>",
  8086. "value": [
  8087. 112,
  8088. 39
  8089. ]
  8090. },
  8091. "orientation": {
  8092. "type": "double",
  8093. "value": 0
  8094. },
  8095. "scale": {
  8096. "type": "list<double>",
  8097. "value": [
  8098. 1,
  8099. 1
  8100. ]
  8101. },
  8102. "link-style": {
  8103. "type": "map<string,string>",
  8104. "value": {
  8105. "stroke": "#00ffff",
  8106. "stroke-dasharray": "",
  8107. "stroke-opacity": 0.1,
  8108. "stroke-width": 1
  8109. }
  8110. }
  8111. },
  8112. "309": {
  8113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8114. "position": {
  8115. "type": "list<double>",
  8116. "value": [
  8117. 117.14309620090773,
  8118. 39.046443503803374
  8119. ]
  8120. },
  8121. "orientation": {
  8122. "type": "double",
  8123. "value": 0
  8124. },
  8125. "scale": {
  8126. "type": "list<double>",
  8127. "value": [
  8128. 1,
  8129. 1
  8130. ]
  8131. },
  8132. "link-style": {
  8133. "type": "map<string,string>",
  8134. "value": {
  8135. "stroke": "#00ffff",
  8136. "stroke-dasharray": "",
  8137. "stroke-opacity": 0.1,
  8138. "stroke-width": 1
  8139. }
  8140. }
  8141. },
  8142. "310": {
  8143. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8144. "position": {
  8145. "type": "list<double>",
  8146. "value": [
  8147. 112,
  8148. 39
  8149. ]
  8150. },
  8151. "orientation": {
  8152. "type": "double",
  8153. "value": 0
  8154. },
  8155. "scale": {
  8156. "type": "list<double>",
  8157. "value": [
  8158. 1,
  8159. 1
  8160. ]
  8161. },
  8162. "link-style": {
  8163. "type": "map<string,string>",
  8164. "value": {
  8165. "stroke": "#00ffff",
  8166. "stroke-dasharray": "",
  8167. "stroke-opacity": 0.1,
  8168. "stroke-width": 1
  8169. }
  8170. }
  8171. },
  8172. "311": {
  8173. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8174. "position": {
  8175. "type": "list<double>",
  8176. "value": [
  8177. 114.64294868314005,
  8178. 39.04743588588505
  8179. ]
  8180. },
  8181. "orientation": {
  8182. "type": "double",
  8183. "value": 0
  8184. },
  8185. "scale": {
  8186. "type": "list<double>",
  8187. "value": [
  8188. 1,
  8189. 1
  8190. ]
  8191. },
  8192. "link-style": {
  8193. "type": "map<string,string>",
  8194. "value": {
  8195. "stroke": "#00ffff",
  8196. "stroke-dasharray": "",
  8197. "stroke-opacity": 0.1,
  8198. "stroke-width": 1
  8199. }
  8200. }
  8201. },
  8202. "312": {
  8203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8204. "position": {
  8205. "type": "list<double>",
  8206. "value": [
  8207. 117.14309620090773,
  8208. 39.046443503803374
  8209. ]
  8210. },
  8211. "orientation": {
  8212. "type": "double",
  8213. "value": 0
  8214. },
  8215. "scale": {
  8216. "type": "list<double>",
  8217. "value": [
  8218. 1,
  8219. 1
  8220. ]
  8221. },
  8222. "link-style": {
  8223. "type": "map<string,string>",
  8224. "value": {
  8225. "stroke": "#00ffff",
  8226. "stroke-dasharray": "",
  8227. "stroke-opacity": 0.1,
  8228. "stroke-width": 1
  8229. }
  8230. }
  8231. },
  8232. "313": {
  8233. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8234. "position": {
  8235. "type": "list<double>",
  8236. "value": [
  8237. 114.64294868314005,
  8238. 39.04743588588505
  8239. ]
  8240. },
  8241. "orientation": {
  8242. "type": "double",
  8243. "value": 0
  8244. },
  8245. "scale": {
  8246. "type": "list<double>",
  8247. "value": [
  8248. 1,
  8249. 1
  8250. ]
  8251. },
  8252. "link-style": {
  8253. "type": "map<string,string>",
  8254. "value": {
  8255. "stroke": "#00ffff",
  8256. "stroke-dasharray": "",
  8257. "stroke-opacity": 0.1,
  8258. "stroke-width": 1
  8259. }
  8260. }
  8261. },
  8262. "314": {
  8263. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8264. "position": {
  8265. "type": "list<double>",
  8266. "value": [
  8267. 114.64294868314005,
  8268. 39.04743588588505
  8269. ]
  8270. },
  8271. "orientation": {
  8272. "type": "double",
  8273. "value": 0
  8274. },
  8275. "scale": {
  8276. "type": "list<double>",
  8277. "value": [
  8278. 1,
  8279. 1
  8280. ]
  8281. },
  8282. "link-style": {
  8283. "type": "map<string,string>",
  8284. "value": {
  8285. "stroke": "#00ffff",
  8286. "stroke-dasharray": "",
  8287. "stroke-opacity": 0.1,
  8288. "stroke-width": 1
  8289. }
  8290. }
  8291. },
  8292. "315": {
  8293. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8294. "position": {
  8295. "type": "list<double>",
  8296. "value": [
  8297. 23.5,
  8298. 39
  8299. ]
  8300. },
  8301. "orientation": {
  8302. "type": "double",
  8303. "value": 0
  8304. },
  8305. "scale": {
  8306. "type": "list<double>",
  8307. "value": [
  8308. 1,
  8309. 1
  8310. ]
  8311. },
  8312. "link-style": {
  8313. "type": "map<string,string>",
  8314. "value": {
  8315. "stroke": "#00ffff",
  8316. "stroke-dasharray": "",
  8317. "stroke-opacity": 0.1,
  8318. "stroke-width": 1
  8319. }
  8320. }
  8321. },
  8322. "316": {
  8323. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8324. "position": {
  8325. "type": "list<double>",
  8326. "value": [
  8327. 25.578488230596065,
  8328. 39.129069534757946
  8329. ]
  8330. },
  8331. "orientation": {
  8332. "type": "double",
  8333. "value": 0
  8334. },
  8335. "scale": {
  8336. "type": "list<double>",
  8337. "value": [
  8338. 1,
  8339. 1
  8340. ]
  8341. },
  8342. "link-style": {
  8343. "type": "map<string,string>",
  8344. "value": {
  8345. "stroke": "#00ffff",
  8346. "stroke-dasharray": "",
  8347. "stroke-opacity": 0.1,
  8348. "stroke-width": 1
  8349. }
  8350. }
  8351. },
  8352. "317": {
  8353. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8354. "position": {
  8355. "type": "list<double>",
  8356. "value": [
  8357. 23.5,
  8358. 39
  8359. ]
  8360. },
  8361. "orientation": {
  8362. "type": "double",
  8363. "value": 0
  8364. },
  8365. "scale": {
  8366. "type": "list<double>",
  8367. "value": [
  8368. 1,
  8369. 1
  8370. ]
  8371. },
  8372. "link-style": {
  8373. "type": "map<string,string>",
  8374. "value": {
  8375. "stroke": "#00ffff",
  8376. "stroke-dasharray": "",
  8377. "stroke-opacity": 0.1,
  8378. "stroke-width": 1
  8379. }
  8380. }
  8381. },
  8382. "318": {
  8383. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8384. "position": {
  8385. "type": "list<double>",
  8386. "value": [
  8387. 23.5,
  8388. 39
  8389. ]
  8390. },
  8391. "orientation": {
  8392. "type": "double",
  8393. "value": 0
  8394. },
  8395. "scale": {
  8396. "type": "list<double>",
  8397. "value": [
  8398. 1,
  8399. 1
  8400. ]
  8401. },
  8402. "link-style": {
  8403. "type": "map<string,string>",
  8404. "value": {
  8405. "stroke": "#00ffff",
  8406. "stroke-dasharray": "",
  8407. "stroke-opacity": 0.1,
  8408. "stroke-width": 1
  8409. }
  8410. }
  8411. },
  8412. "319": {
  8413. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8414. "position": {
  8415. "type": "list<double>",
  8416. "value": [
  8417. 33.596315647178926,
  8418. 39.11684193264324
  8419. ]
  8420. },
  8421. "orientation": {
  8422. "type": "double",
  8423. "value": 0
  8424. },
  8425. "scale": {
  8426. "type": "list<double>",
  8427. "value": [
  8428. 1,
  8429. 1
  8430. ]
  8431. },
  8432. "link-style": {
  8433. "type": "map<string,string>",
  8434. "value": {
  8435. "stroke": "#00ffff",
  8436. "stroke-dasharray": "",
  8437. "stroke-opacity": 0.1,
  8438. "stroke-width": 1
  8439. }
  8440. }
  8441. },
  8442. "320": {
  8443. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8444. "position": {
  8445. "type": "list<double>",
  8446. "value": [
  8447. 25.578488230596065,
  8448. 39.129069534757946
  8449. ]
  8450. },
  8451. "orientation": {
  8452. "type": "double",
  8453. "value": 0
  8454. },
  8455. "scale": {
  8456. "type": "list<double>",
  8457. "value": [
  8458. 1,
  8459. 1
  8460. ]
  8461. },
  8462. "link-style": {
  8463. "type": "map<string,string>",
  8464. "value": {
  8465. "stroke": "#00ffff",
  8466. "stroke-dasharray": "",
  8467. "stroke-opacity": 0.1,
  8468. "stroke-width": 1
  8469. }
  8470. }
  8471. },
  8472. "321": {
  8473. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8474. "position": {
  8475. "type": "list<double>",
  8476. "value": [
  8477. 33.596315647178926,
  8478. 39.11684193264324
  8479. ]
  8480. },
  8481. "orientation": {
  8482. "type": "double",
  8483. "value": 0
  8484. },
  8485. "scale": {
  8486. "type": "list<double>",
  8487. "value": [
  8488. 1,
  8489. 1
  8490. ]
  8491. },
  8492. "link-style": {
  8493. "type": "map<string,string>",
  8494. "value": {
  8495. "stroke": "#00ffff",
  8496. "stroke-dasharray": "",
  8497. "stroke-opacity": 0.1,
  8498. "stroke-width": 1
  8499. }
  8500. }
  8501. },
  8502. "322": {
  8503. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8504. "position": {
  8505. "type": "list<double>",
  8506. "value": [
  8507. 33.596315647178926,
  8508. 39.11684193264324
  8509. ]
  8510. },
  8511. "orientation": {
  8512. "type": "double",
  8513. "value": 0
  8514. },
  8515. "scale": {
  8516. "type": "list<double>",
  8517. "value": [
  8518. 1,
  8519. 1
  8520. ]
  8521. },
  8522. "link-style": {
  8523. "type": "map<string,string>",
  8524. "value": {
  8525. "stroke": "#00ffff",
  8526. "stroke-dasharray": "",
  8527. "stroke-opacity": 0.1,
  8528. "stroke-width": 1
  8529. }
  8530. }
  8531. },
  8532. "323": {
  8533. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8534. "position": {
  8535. "type": "list<double>",
  8536. "value": [
  8537. 21,
  8538. 39
  8539. ]
  8540. },
  8541. "orientation": {
  8542. "type": "double",
  8543. "value": 0
  8544. },
  8545. "scale": {
  8546. "type": "list<double>",
  8547. "value": [
  8548. 1,
  8549. 1
  8550. ]
  8551. },
  8552. "link-style": {
  8553. "type": "map<string,string>",
  8554. "value": {
  8555. "stroke": "#00ffff",
  8556. "stroke-dasharray": "",
  8557. "stroke-opacity": 0.1,
  8558. "stroke-width": 1
  8559. }
  8560. }
  8561. },
  8562. "324": {
  8563. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8564. "position": {
  8565. "type": "list<double>",
  8566. "value": [
  8567. 21,
  8568. 39
  8569. ]
  8570. },
  8571. "orientation": {
  8572. "type": "double",
  8573. "value": 0
  8574. },
  8575. "scale": {
  8576. "type": "list<double>",
  8577. "value": [
  8578. 1,
  8579. 1
  8580. ]
  8581. },
  8582. "link-style": {
  8583. "type": "map<string,string>",
  8584. "value": {
  8585. "stroke": "#00ffff",
  8586. "stroke-dasharray": "",
  8587. "stroke-opacity": 0.1,
  8588. "stroke-width": 1
  8589. }
  8590. }
  8591. },
  8592. "325": {
  8593. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8594. "position": {
  8595. "type": "list<double>",
  8596. "value": [
  8597. 23.5,
  8598. 39
  8599. ]
  8600. },
  8601. "orientation": {
  8602. "type": "double",
  8603. "value": 0
  8604. },
  8605. "scale": {
  8606. "type": "list<double>",
  8607. "value": [
  8608. 1,
  8609. 1
  8610. ]
  8611. },
  8612. "link-style": {
  8613. "type": "map<string,string>",
  8614. "value": {
  8615. "stroke": "#00ffff",
  8616. "stroke-dasharray": "",
  8617. "stroke-opacity": 0.1,
  8618. "stroke-width": 1
  8619. }
  8620. }
  8621. },
  8622. "326": {
  8623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8624. "position": {
  8625. "type": "list<double>",
  8626. "value": [
  8627. 33.596315647178926,
  8628. 39.11684193264324
  8629. ]
  8630. },
  8631. "orientation": {
  8632. "type": "double",
  8633. "value": 0
  8634. },
  8635. "scale": {
  8636. "type": "list<double>",
  8637. "value": [
  8638. 1,
  8639. 1
  8640. ]
  8641. },
  8642. "link-style": {
  8643. "type": "map<string,string>",
  8644. "value": {
  8645. "stroke": "#00ffff",
  8646. "stroke-dasharray": "",
  8647. "stroke-opacity": 0.1,
  8648. "stroke-width": 1
  8649. }
  8650. }
  8651. },
  8652. "327": {
  8653. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8654. "position": {
  8655. "type": "list<double>",
  8656. "value": [
  8657. 25.578488230596065,
  8658. 39.129069534757946
  8659. ]
  8660. },
  8661. "orientation": {
  8662. "type": "double",
  8663. "value": 0
  8664. },
  8665. "scale": {
  8666. "type": "list<double>",
  8667. "value": [
  8668. 1,
  8669. 1
  8670. ]
  8671. },
  8672. "link-style": {
  8673. "type": "map<string,string>",
  8674. "value": {
  8675. "stroke": "#00ffff",
  8676. "stroke-dasharray": "",
  8677. "stroke-opacity": 0.1,
  8678. "stroke-width": 1
  8679. }
  8680. }
  8681. },
  8682. "328": {
  8683. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8684. "position": {
  8685. "type": "list<double>",
  8686. "value": [
  8687. 28.08426952107112,
  8688. 39.124718891185296
  8689. ]
  8690. },
  8691. "orientation": {
  8692. "type": "double",
  8693. "value": 0
  8694. },
  8695. "scale": {
  8696. "type": "list<double>",
  8697. "value": [
  8698. 1,
  8699. 1
  8700. ]
  8701. },
  8702. "link-style": {
  8703. "type": "map<string,string>",
  8704. "value": {
  8705. "stroke": "#00ffff",
  8706. "stroke-dasharray": "",
  8707. "stroke-opacity": 0.1,
  8708. "stroke-width": 1
  8709. }
  8710. }
  8711. },
  8712. "329": {
  8713. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8714. "position": {
  8715. "type": "list<double>",
  8716. "value": [
  8717. 25.578488230596065,
  8718. 39.129069534757946
  8719. ]
  8720. },
  8721. "orientation": {
  8722. "type": "double",
  8723. "value": 0
  8724. },
  8725. "scale": {
  8726. "type": "list<double>",
  8727. "value": [
  8728. 1,
  8729. 1
  8730. ]
  8731. },
  8732. "link-style": {
  8733. "type": "map<string,string>",
  8734. "value": {
  8735. "stroke": "#00ffff",
  8736. "stroke-dasharray": "",
  8737. "stroke-opacity": 0.1,
  8738. "stroke-width": 1
  8739. }
  8740. }
  8741. },
  8742. "330": {
  8743. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  8744. "position": {
  8745. "type": "list<double>",
  8746. "value": [
  8747. 28.08426952107112,
  8748. 39.124718891185296
  8749. ]
  8750. },
  8751. "orientation": {
  8752. "type": "double",
  8753. "value": 0
  8754. },
  8755. "scale": {
  8756. "type": "list<double>",
  8757. "value": [
  8758. 1,
  8759. 1
  8760. ]
  8761. },
  8762. "link-style": {
  8763. "type": "map<string,string>",
  8764. "value": {
  8765. "stroke": "#00ffff",
  8766. "stroke-dasharray": "",
  8767. "stroke-opacity": 0.1,
  8768. "stroke-width": 1
  8769. }
  8770. }
  8771. }
  8772. },
  8773. "edges": [
  8774. {
  8775. "src": "92",
  8776. "dest": "122"
  8777. },
  8778. {
  8779. "src": "122",
  8780. "dest": "100"
  8781. },
  8782. {
  8783. "src": "100",
  8784. "dest": "195"
  8785. },
  8786. {
  8787. "src": "195",
  8788. "dest": "162"
  8789. },
  8790. {
  8791. "src": "100",
  8792. "dest": "299"
  8793. },
  8794. {
  8795. "src": "299",
  8796. "dest": "267"
  8797. },
  8798. {
  8799. "src": "100",
  8800. "dest": "300"
  8801. },
  8802. {
  8803. "src": "300",
  8804. "dest": "268"
  8805. },
  8806. {
  8807. "src": "100",
  8808. "dest": "301"
  8809. },
  8810. {
  8811. "src": "301",
  8812. "dest": "269"
  8813. },
  8814. {
  8815. "src": "100",
  8816. "dest": "302"
  8817. },
  8818. {
  8819. "src": "302",
  8820. "dest": "270"
  8821. },
  8822. {
  8823. "src": "100",
  8824. "dest": "303"
  8825. },
  8826. {
  8827. "src": "303",
  8828. "dest": "271"
  8829. },
  8830. {
  8831. "src": "100",
  8832. "dest": "304"
  8833. },
  8834. {
  8835. "src": "304",
  8836. "dest": "272"
  8837. },
  8838. {
  8839. "src": "100",
  8840. "dest": "305"
  8841. },
  8842. {
  8843. "src": "305",
  8844. "dest": "273"
  8845. },
  8846. {
  8847. "src": "100",
  8848. "dest": "306"
  8849. },
  8850. {
  8851. "src": "306",
  8852. "dest": "274"
  8853. },
  8854. {
  8855. "src": "100",
  8856. "dest": "307"
  8857. },
  8858. {
  8859. "src": "307",
  8860. "dest": "275"
  8861. },
  8862. {
  8863. "src": "100",
  8864. "dest": "308"
  8865. },
  8866. {
  8867. "src": "308",
  8868. "dest": "276"
  8869. },
  8870. {
  8871. "src": "100",
  8872. "dest": "309"
  8873. },
  8874. {
  8875. "src": "309",
  8876. "dest": "277"
  8877. },
  8878. {
  8879. "src": "100",
  8880. "dest": "310"
  8881. },
  8882. {
  8883. "src": "310",
  8884. "dest": "278"
  8885. },
  8886. {
  8887. "src": "100",
  8888. "dest": "311"
  8889. },
  8890. {
  8891. "src": "311",
  8892. "dest": "279"
  8893. },
  8894. {
  8895. "src": "100",
  8896. "dest": "312"
  8897. },
  8898. {
  8899. "src": "312",
  8900. "dest": "280"
  8901. },
  8902. {
  8903. "src": "100",
  8904. "dest": "313"
  8905. },
  8906. {
  8907. "src": "313",
  8908. "dest": "281"
  8909. },
  8910. {
  8911. "src": "100",
  8912. "dest": "314"
  8913. },
  8914. {
  8915. "src": "314",
  8916. "dest": "282"
  8917. },
  8918. {
  8919. "src": "100",
  8920. "dest": "315"
  8921. },
  8922. {
  8923. "src": "315",
  8924. "dest": "283"
  8925. },
  8926. {
  8927. "src": "100",
  8928. "dest": "316"
  8929. },
  8930. {
  8931. "src": "316",
  8932. "dest": "284"
  8933. },
  8934. {
  8935. "src": "100",
  8936. "dest": "317"
  8937. },
  8938. {
  8939. "src": "317",
  8940. "dest": "285"
  8941. },
  8942. {
  8943. "src": "100",
  8944. "dest": "318"
  8945. },
  8946. {
  8947. "src": "318",
  8948. "dest": "286"
  8949. },
  8950. {
  8951. "src": "100",
  8952. "dest": "319"
  8953. },
  8954. {
  8955. "src": "319",
  8956. "dest": "287"
  8957. },
  8958. {
  8959. "src": "100",
  8960. "dest": "320"
  8961. },
  8962. {
  8963. "src": "320",
  8964. "dest": "288"
  8965. },
  8966. {
  8967. "src": "100",
  8968. "dest": "321"
  8969. },
  8970. {
  8971. "src": "321",
  8972. "dest": "289"
  8973. },
  8974. {
  8975. "src": "100",
  8976. "dest": "322"
  8977. },
  8978. {
  8979. "src": "322",
  8980. "dest": "290"
  8981. },
  8982. {
  8983. "src": "100",
  8984. "dest": "323"
  8985. },
  8986. {
  8987. "src": "323",
  8988. "dest": "291"
  8989. },
  8990. {
  8991. "src": "100",
  8992. "dest": "324"
  8993. },
  8994. {
  8995. "src": "324",
  8996. "dest": "292"
  8997. },
  8998. {
  8999. "src": "100",
  9000. "dest": "325"
  9001. },
  9002. {
  9003. "src": "325",
  9004. "dest": "293"
  9005. },
  9006. {
  9007. "src": "100",
  9008. "dest": "326"
  9009. },
  9010. {
  9011. "src": "326",
  9012. "dest": "294"
  9013. },
  9014. {
  9015. "src": "100",
  9016. "dest": "327"
  9017. },
  9018. {
  9019. "src": "327",
  9020. "dest": "295"
  9021. },
  9022. {
  9023. "src": "100",
  9024. "dest": "328"
  9025. },
  9026. {
  9027. "src": "328",
  9028. "dest": "296"
  9029. },
  9030. {
  9031. "src": "100",
  9032. "dest": "329"
  9033. },
  9034. {
  9035. "src": "329",
  9036. "dest": "297"
  9037. },
  9038. {
  9039. "src": "100",
  9040. "dest": "330"
  9041. },
  9042. {
  9043. "src": "330",
  9044. "dest": "298"
  9045. }
  9046. ]
  9047. }
  9048. },
  9049. "$asuri": {
  9050. "type": "string",
  9051. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/7.instance"
  9052. },
  9053. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  9054. },
  9055. "9": {
  9056. "typename": {
  9057. "type": "string",
  9058. "value": "TextIcon"
  9059. },
  9060. "position": {
  9061. "type": "list<double>",
  9062. "value": [
  9063. 962,
  9064. 499
  9065. ]
  9066. },
  9067. "orientation": {
  9068. "type": "double",
  9069. "value": 0
  9070. },
  9071. "scale": {
  9072. "type": "list<double>",
  9073. "value": [
  9074. 1,
  9075. 1
  9076. ]
  9077. },
  9078. "mapper": {
  9079. "type": "code",
  9080. "value": ""
  9081. },
  9082. "parser": {
  9083. "type": "code",
  9084. "value": ""
  9085. },
  9086. "$contents": {
  9087. "type": "map<string,*>",
  9088. "value": {
  9089. "nodes": {
  9090. "21": {
  9091. "textContent": {
  9092. "type": "string",
  9093. "value": "T..."
  9094. },
  9095. "style": {
  9096. "type": "map<string,string>",
  9097. "value": {
  9098. "stroke": "#0000ff",
  9099. "stroke-dasharray": "",
  9100. "fill": "#0000ff",
  9101. "fill-opacity": 1,
  9102. "font-size": "20px",
  9103. "stroke-width": 0,
  9104. "arrow-start": "none",
  9105. "arrow-end": "none"
  9106. }
  9107. },
  9108. "mapper": {
  9109. "type": "code",
  9110. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  9111. },
  9112. "parser": {
  9113. "type": "code",
  9114. "value": "({\"textContent\":getAttr(\"textContent\")})"
  9115. },
  9116. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  9117. "position": {
  9118. "type": "list<double>",
  9119. "value": [
  9120. 0,
  9121. 0
  9122. ]
  9123. },
  9124. "orientation": {
  9125. "type": "double",
  9126. "value": 0
  9127. },
  9128. "scale": {
  9129. "type": "list<double>",
  9130. "value": [
  9131. 1,
  9132. 1
  9133. ]
  9134. }
  9135. }
  9136. },
  9137. "edges": []
  9138. }
  9139. },
  9140. "$asuri": {
  9141. "type": "string",
  9142. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/9.instance"
  9143. },
  9144. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  9145. },
  9146. "10": {
  9147. "link-style": {
  9148. "type": "map<string,string>",
  9149. "value": {
  9150. "stroke": "#ff00ff",
  9151. "stroke-dasharray": "",
  9152. "stroke-opacity": 0.1,
  9153. "stroke-width": 1
  9154. }
  9155. },
  9156. "arrowHead": {
  9157. "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)",
  9158. "value": "custom"
  9159. },
  9160. "arrowTail": {
  9161. "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)",
  9162. "value": "arrow-black"
  9163. },
  9164. "typename": {
  9165. "type": "string",
  9166. "value": "IconContentsLink"
  9167. },
  9168. "position": {
  9169. "type": "list<double>",
  9170. "value": [
  9171. 913,
  9172. 480.25
  9173. ]
  9174. },
  9175. "orientation": {
  9176. "type": "double",
  9177. "value": 0
  9178. },
  9179. "scale": {
  9180. "type": "list<double>",
  9181. "value": [
  9182. 1,
  9183. 1
  9184. ]
  9185. },
  9186. "mapper": {
  9187. "type": "code",
  9188. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9189. },
  9190. "parser": {
  9191. "type": "code",
  9192. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9193. },
  9194. "$contents": {
  9195. "type": "map<string,*>",
  9196. "value": {
  9197. "nodes": {},
  9198. "edges": []
  9199. }
  9200. },
  9201. "$asuri": {
  9202. "type": "string",
  9203. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/10.instance"
  9204. },
  9205. "$segments": {
  9206. "type": "map<string,list<string>>",
  9207. "value": {
  9208. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon/5.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance": "M849,450L913,480.25",
  9209. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/9.instance": "M913.1357838237416,480.3141790729403L976.9992281336363,510.499635172539"
  9210. }
  9211. },
  9212. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  9213. },
  9214. "11": {
  9215. "typename": {
  9216. "type": "string",
  9217. "value": "TextIcon"
  9218. },
  9219. "position": {
  9220. "type": "list<double>",
  9221. "value": [
  9222. 688,
  9223. 498
  9224. ]
  9225. },
  9226. "orientation": {
  9227. "type": "double",
  9228. "value": 0
  9229. },
  9230. "scale": {
  9231. "type": "list<double>",
  9232. "value": [
  9233. 1,
  9234. 1
  9235. ]
  9236. },
  9237. "mapper": {
  9238. "type": "code",
  9239. "value": ""
  9240. },
  9241. "parser": {
  9242. "type": "code",
  9243. "value": ""
  9244. },
  9245. "$contents": {
  9246. "type": "map<string,*>",
  9247. "value": {
  9248. "nodes": {
  9249. "21": {
  9250. "textContent": {
  9251. "type": "string",
  9252. "value": "T..."
  9253. },
  9254. "style": {
  9255. "type": "map<string,string>",
  9256. "value": {
  9257. "stroke": "#000000",
  9258. "stroke-dasharray": "",
  9259. "fill": "#000000",
  9260. "fill-opacity": 1,
  9261. "font-size": "20px",
  9262. "stroke-width": 0,
  9263. "arrow-start": "none",
  9264. "arrow-end": "none"
  9265. }
  9266. },
  9267. "mapper": {
  9268. "type": "code",
  9269. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  9270. },
  9271. "parser": {
  9272. "type": "code",
  9273. "value": "({\"textContent\":getAttr(\"textContent\")})"
  9274. },
  9275. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  9276. "position": {
  9277. "type": "list<double>",
  9278. "value": [
  9279. 0,
  9280. 0
  9281. ]
  9282. },
  9283. "orientation": {
  9284. "type": "double",
  9285. "value": 0
  9286. },
  9287. "scale": {
  9288. "type": "list<double>",
  9289. "value": [
  9290. 1,
  9291. 1
  9292. ]
  9293. }
  9294. }
  9295. },
  9296. "edges": []
  9297. }
  9298. },
  9299. "$asuri": {
  9300. "type": "string",
  9301. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/11.instance"
  9302. },
  9303. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  9304. },
  9305. "12": {
  9306. "link-style": {
  9307. "type": "map<string,string>",
  9308. "value": {
  9309. "stroke": "#ff00ff",
  9310. "stroke-dasharray": "",
  9311. "stroke-opacity": 0.1,
  9312. "stroke-width": 1
  9313. }
  9314. },
  9315. "arrowHead": {
  9316. "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)",
  9317. "value": "custom"
  9318. },
  9319. "arrowTail": {
  9320. "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)",
  9321. "value": "arrow-black"
  9322. },
  9323. "typename": {
  9324. "type": "string",
  9325. "value": "IconContentsLink"
  9326. },
  9327. "position": {
  9328. "type": "list<double>",
  9329. "value": [
  9330. 638.6362675155276,
  9331. 479.81285207111546
  9332. ]
  9333. },
  9334. "orientation": {
  9335. "type": "double",
  9336. "value": 0
  9337. },
  9338. "scale": {
  9339. "type": "list<double>",
  9340. "value": [
  9341. 1,
  9342. 1
  9343. ]
  9344. },
  9345. "mapper": {
  9346. "type": "code",
  9347. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9348. },
  9349. "parser": {
  9350. "type": "code",
  9351. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9352. },
  9353. "$contents": {
  9354. "type": "map<string,*>",
  9355. "value": {
  9356. "nodes": {},
  9357. "edges": []
  9358. }
  9359. },
  9360. "$asuri": {
  9361. "type": "string",
  9362. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/12.instance"
  9363. },
  9364. "$segments": {
  9365. "type": "map<string,list<string>>",
  9366. "value": {
  9367. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon/6.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/12.instance": "M574,450L638.6362675155276,479.81285207111546",
  9368. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/12.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/11.instance": "M638.6358836638767,479.8126750232609L702.9992330160289,509.4996462360755"
  9369. }
  9370. },
  9371. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  9372. },
  9373. "27": {
  9374. "typename": {
  9375. "type": "string",
  9376. "value": "RectangleIcon"
  9377. },
  9378. "position": {
  9379. "type": "list<double>",
  9380. "value": [
  9381. 757,
  9382. 206
  9383. ]
  9384. },
  9385. "orientation": {
  9386. "type": "double",
  9387. "value": 0
  9388. },
  9389. "scale": {
  9390. "type": "list<double>",
  9391. "value": [
  9392. 1,
  9393. 1
  9394. ]
  9395. },
  9396. "mapper": {
  9397. "type": "code",
  9398. "value": ""
  9399. },
  9400. "parser": {
  9401. "type": "code",
  9402. "value": ""
  9403. },
  9404. "$contents": {
  9405. "type": "map<string,*>",
  9406. "value": {
  9407. "nodes": {
  9408. "17": {
  9409. "width": {
  9410. "type": "double",
  9411. "value": 100
  9412. },
  9413. "height": {
  9414. "type": "double",
  9415. "value": 69
  9416. },
  9417. "cornerRadius": {
  9418. "type": "double",
  9419. "value": 1
  9420. },
  9421. "style": {
  9422. "type": "map<string,string>",
  9423. "value": {
  9424. "stroke": "#000000",
  9425. "stroke-dasharray": "",
  9426. "fill": "#99ff99",
  9427. "fill-opacity": 0.5,
  9428. "font-size": "20px",
  9429. "stroke-width": 1,
  9430. "arrow-start": "none",
  9431. "arrow-end": "none"
  9432. }
  9433. },
  9434. "mapper": {
  9435. "type": "code",
  9436. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  9437. },
  9438. "parser": {
  9439. "type": "code",
  9440. "value": ""
  9441. },
  9442. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  9443. "position": {
  9444. "type": "list<double>",
  9445. "value": [
  9446. 0,
  9447. 1
  9448. ]
  9449. },
  9450. "orientation": {
  9451. "type": "double",
  9452. "value": 0
  9453. },
  9454. "scale": {
  9455. "type": "list<double>",
  9456. "value": [
  9457. 1,
  9458. 1
  9459. ]
  9460. }
  9461. }
  9462. },
  9463. "edges": []
  9464. }
  9465. },
  9466. "$asuri": {
  9467. "type": "string",
  9468. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/27.instance"
  9469. },
  9470. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  9471. },
  9472. "29": {
  9473. "typename": {
  9474. "type": "string",
  9475. "value": "TextIcon"
  9476. },
  9477. "position": {
  9478. "type": "list<double>",
  9479. "value": [
  9480. 765,
  9481. 214
  9482. ]
  9483. },
  9484. "orientation": {
  9485. "type": "double",
  9486. "value": 0
  9487. },
  9488. "scale": {
  9489. "type": "list<double>",
  9490. "value": [
  9491. 1,
  9492. 1
  9493. ]
  9494. },
  9495. "mapper": {
  9496. "type": "code",
  9497. "value": ""
  9498. },
  9499. "parser": {
  9500. "type": "code",
  9501. "value": ""
  9502. },
  9503. "$contents": {
  9504. "type": "map<string,*>",
  9505. "value": {
  9506. "nodes": {
  9507. "21": {
  9508. "textContent": {
  9509. "type": "string",
  9510. "value": "T..."
  9511. },
  9512. "style": {
  9513. "type": "map<string,string>",
  9514. "value": {
  9515. "stroke": "#000000",
  9516. "stroke-dasharray": "",
  9517. "fill": "#0000ff",
  9518. "fill-opacity": 1,
  9519. "font-size": "15px",
  9520. "stroke-width": 0,
  9521. "arrow-start": "none",
  9522. "arrow-end": "none"
  9523. }
  9524. },
  9525. "mapper": {
  9526. "type": "code",
  9527. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  9528. },
  9529. "parser": {
  9530. "type": "code",
  9531. "value": "({\"textContent\":getAttr(\"textContent\")})"
  9532. },
  9533. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  9534. "position": {
  9535. "type": "list<double>",
  9536. "value": [
  9537. 0,
  9538. 0
  9539. ]
  9540. },
  9541. "orientation": {
  9542. "type": "double",
  9543. "value": 0
  9544. },
  9545. "scale": {
  9546. "type": "list<double>",
  9547. "value": [
  9548. 1,
  9549. 1
  9550. ]
  9551. }
  9552. }
  9553. },
  9554. "edges": []
  9555. }
  9556. },
  9557. "$asuri": {
  9558. "type": "string",
  9559. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/29.instance"
  9560. },
  9561. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  9562. },
  9563. "30": {
  9564. "link-style": {
  9565. "type": "map<string,string>",
  9566. "value": {
  9567. "stroke": "#00ffff",
  9568. "stroke-dasharray": "",
  9569. "stroke-opacity": 0.1,
  9570. "stroke-width": 1
  9571. }
  9572. },
  9573. "arrowHead": {
  9574. "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)",
  9575. "value": "custom"
  9576. },
  9577. "arrowTail": {
  9578. "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)",
  9579. "value": "arrow-black"
  9580. },
  9581. "typename": {
  9582. "type": "string",
  9583. "value": "ContainLink"
  9584. },
  9585. "position": {
  9586. "type": "list<double>",
  9587. "value": [
  9588. 780.5,
  9589. 216.25
  9590. ]
  9591. },
  9592. "orientation": {
  9593. "type": "double",
  9594. "value": 0
  9595. },
  9596. "scale": {
  9597. "type": "list<double>",
  9598. "value": [
  9599. 1,
  9600. 1
  9601. ]
  9602. },
  9603. "mapper": {
  9604. "type": "code",
  9605. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9606. },
  9607. "parser": {
  9608. "type": "code",
  9609. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9610. },
  9611. "$contents": {
  9612. "type": "map<string,*>",
  9613. "value": {
  9614. "nodes": {},
  9615. "edges": []
  9616. }
  9617. },
  9618. "$asuri": {
  9619. "type": "string",
  9620. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/30.instance"
  9621. },
  9622. "$segments": {
  9623. "type": "map<string,list<string>>",
  9624. "value": {
  9625. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/27.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/30.instance": "M757,207.00000000000003L780.5,216.25000000000003",
  9626. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/30.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/29.instance": "M780.5702179071236,216.27763896344223L779.9994367520003,225.49977829600007"
  9627. }
  9628. },
  9629. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  9630. },
  9631. "31": {
  9632. "typename": {
  9633. "type": "string",
  9634. "value": "TextIcon"
  9635. },
  9636. "position": {
  9637. "type": "list<double>",
  9638. "value": [
  9639. 766,
  9640. 241
  9641. ]
  9642. },
  9643. "orientation": {
  9644. "type": "double",
  9645. "value": 0
  9646. },
  9647. "scale": {
  9648. "type": "list<double>",
  9649. "value": [
  9650. 1,
  9651. 1
  9652. ]
  9653. },
  9654. "mapper": {
  9655. "type": "code",
  9656. "value": ""
  9657. },
  9658. "parser": {
  9659. "type": "code",
  9660. "value": ""
  9661. },
  9662. "$contents": {
  9663. "type": "map<string,*>",
  9664. "value": {
  9665. "nodes": {
  9666. "21": {
  9667. "textContent": {
  9668. "type": "string",
  9669. "value": "T..."
  9670. },
  9671. "style": {
  9672. "type": "map<string,string>",
  9673. "value": {
  9674. "stroke": "#000000",
  9675. "stroke-dasharray": "",
  9676. "fill": "#000000",
  9677. "fill-opacity": 1,
  9678. "font-size": "15px",
  9679. "stroke-width": 0,
  9680. "arrow-start": "none",
  9681. "arrow-end": "none"
  9682. }
  9683. },
  9684. "mapper": {
  9685. "type": "code",
  9686. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  9687. },
  9688. "parser": {
  9689. "type": "code",
  9690. "value": "({\"textContent\":getAttr(\"textContent\")})"
  9691. },
  9692. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  9693. "position": {
  9694. "type": "list<double>",
  9695. "value": [
  9696. 0,
  9697. 0
  9698. ]
  9699. },
  9700. "orientation": {
  9701. "type": "double",
  9702. "value": 0
  9703. },
  9704. "scale": {
  9705. "type": "list<double>",
  9706. "value": [
  9707. 1,
  9708. 1
  9709. ]
  9710. }
  9711. }
  9712. },
  9713. "edges": []
  9714. }
  9715. },
  9716. "$asuri": {
  9717. "type": "string",
  9718. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/31.instance"
  9719. },
  9720. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  9721. },
  9722. "32": {
  9723. "link-style": {
  9724. "type": "map<string,string>",
  9725. "value": {
  9726. "stroke": "#00ffff",
  9727. "stroke-dasharray": "",
  9728. "stroke-opacity": 0.1,
  9729. "stroke-width": 1
  9730. }
  9731. },
  9732. "arrowHead": {
  9733. "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)",
  9734. "value": "custom"
  9735. },
  9736. "arrowTail": {
  9737. "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)",
  9738. "value": "arrow-black"
  9739. },
  9740. "typename": {
  9741. "type": "string",
  9742. "value": "ContainLink"
  9743. },
  9744. "position": {
  9745. "type": "list<double>",
  9746. "value": [
  9747. 779.1047615528282,
  9748. 229.85833296940177
  9749. ]
  9750. },
  9751. "orientation": {
  9752. "type": "double",
  9753. "value": 0
  9754. },
  9755. "scale": {
  9756. "type": "list<double>",
  9757. "value": [
  9758. 1,
  9759. 1
  9760. ]
  9761. },
  9762. "mapper": {
  9763. "type": "code",
  9764. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9765. },
  9766. "parser": {
  9767. "type": "code",
  9768. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9769. },
  9770. "$contents": {
  9771. "type": "map<string,*>",
  9772. "value": {
  9773. "nodes": {},
  9774. "edges": []
  9775. }
  9776. },
  9777. "$asuri": {
  9778. "type": "string",
  9779. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/32.instance"
  9780. },
  9781. "$segments": {
  9782. "type": "map<string,list<string>>",
  9783. "value": {
  9784. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/27.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/32.instance": "M757,207.00000000000003L779.1047615528282,229.8583329694018",
  9785. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/32.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/31.instance": "M779.0522146200692,229.80399466393524L780.9996677744584,252.49965644858767"
  9786. }
  9787. },
  9788. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  9789. },
  9790. "33": {
  9791. "link-style": {
  9792. "type": "map<string,string>",
  9793. "value": {
  9794. "stroke": "#ff00ff",
  9795. "stroke-dasharray": "",
  9796. "stroke-opacity": 0.1,
  9797. "stroke-width": 1
  9798. }
  9799. },
  9800. "arrowHead": {
  9801. "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)",
  9802. "value": "custom"
  9803. },
  9804. "arrowTail": {
  9805. "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)",
  9806. "value": "arrow-black"
  9807. },
  9808. "typename": {
  9809. "type": "string",
  9810. "value": "IconContentsLink"
  9811. },
  9812. "position": {
  9813. "type": "list<double>",
  9814. "value": [
  9815. 778.5,
  9816. 220.25
  9817. ]
  9818. },
  9819. "orientation": {
  9820. "type": "double",
  9821. "value": 0
  9822. },
  9823. "scale": {
  9824. "type": "list<double>",
  9825. "value": [
  9826. 1,
  9827. 1
  9828. ]
  9829. },
  9830. "mapper": {
  9831. "type": "code",
  9832. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9833. },
  9834. "parser": {
  9835. "type": "code",
  9836. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9837. },
  9838. "$contents": {
  9839. "type": "map<string,*>",
  9840. "value": {
  9841. "nodes": {},
  9842. "edges": []
  9843. }
  9844. },
  9845. "$asuri": {
  9846. "type": "string",
  9847. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/33.instance"
  9848. },
  9849. "$segments": {
  9850. "type": "map<string,list<string>>",
  9851. "value": {
  9852. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/3.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/33.instance": "M750,200L778.5,220.25",
  9853. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/33.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/27.instance": "M778.5617768946165,220.29389410933274L806.9996411787804,240.49974504808088"
  9854. }
  9855. },
  9856. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  9857. },
  9858. "34": {
  9859. "typename": {
  9860. "type": "string",
  9861. "value": "EllipseIcon"
  9862. },
  9863. "position": {
  9864. "type": "list<double>",
  9865. "value": [
  9866. 1207,
  9867. 226
  9868. ]
  9869. },
  9870. "orientation": {
  9871. "type": "double",
  9872. "value": 0
  9873. },
  9874. "scale": {
  9875. "type": "list<double>",
  9876. "value": [
  9877. 1,
  9878. 1
  9879. ]
  9880. },
  9881. "mapper": {
  9882. "type": "code",
  9883. "value": ""
  9884. },
  9885. "parser": {
  9886. "type": "code",
  9887. "value": ""
  9888. },
  9889. "$contents": {
  9890. "type": "map<string,*>",
  9891. "value": {
  9892. "nodes": {
  9893. "33": {
  9894. "rx": {
  9895. "type": "double",
  9896. "value": 50
  9897. },
  9898. "ry": {
  9899. "type": "double",
  9900. "value": 30
  9901. },
  9902. "style": {
  9903. "type": "map<string,string>",
  9904. "value": {
  9905. "stroke": "#000000",
  9906. "stroke-dasharray": "",
  9907. "fill": "#9999ff",
  9908. "fill-opacity": 0.75,
  9909. "font-size": "20px",
  9910. "stroke-width": 1,
  9911. "arrow-start": "none",
  9912. "arrow-end": "none"
  9913. }
  9914. },
  9915. "mapper": {
  9916. "type": "code",
  9917. "value": "({\"rx\":getAttr(\"rx\"), \"ry\":getAttr(\"ry\"), \"style\":getAttr(\"style\")})"
  9918. },
  9919. "parser": {
  9920. "type": "code",
  9921. "value": ""
  9922. },
  9923. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse",
  9924. "position": {
  9925. "type": "list<double>",
  9926. "value": [
  9927. 0,
  9928. 0
  9929. ]
  9930. },
  9931. "orientation": {
  9932. "type": "double",
  9933. "value": 0
  9934. },
  9935. "scale": {
  9936. "type": "list<double>",
  9937. "value": [
  9938. 1,
  9939. 1
  9940. ]
  9941. }
  9942. }
  9943. },
  9944. "edges": []
  9945. }
  9946. },
  9947. "$asuri": {
  9948. "type": "string",
  9949. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse/34.instance"
  9950. },
  9951. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon"
  9952. },
  9953. "35": {
  9954. "link-style": {
  9955. "type": "map<string,string>",
  9956. "value": {
  9957. "stroke": "#ff00ff",
  9958. "stroke-dasharray": "",
  9959. "stroke-opacity": 0.1,
  9960. "stroke-width": 1
  9961. }
  9962. },
  9963. "arrowHead": {
  9964. "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)",
  9965. "value": "custom"
  9966. },
  9967. "arrowTail": {
  9968. "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)",
  9969. "value": "arrow-black"
  9970. },
  9971. "typename": {
  9972. "type": "string",
  9973. "value": "IconContentsLink"
  9974. },
  9975. "position": {
  9976. "type": "list<double>",
  9977. "value": [
  9978. 1228,
  9979. 218
  9980. ]
  9981. },
  9982. "orientation": {
  9983. "type": "double",
  9984. "value": 0
  9985. },
  9986. "scale": {
  9987. "type": "list<double>",
  9988. "value": [
  9989. 1,
  9990. 1
  9991. ]
  9992. },
  9993. "mapper": {
  9994. "type": "code",
  9995. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9996. },
  9997. "parser": {
  9998. "type": "code",
  9999. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10000. },
  10001. "$contents": {
  10002. "type": "map<string,*>",
  10003. "value": {
  10004. "nodes": {},
  10005. "edges": []
  10006. }
  10007. },
  10008. "$asuri": {
  10009. "type": "string",
  10010. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/35.instance"
  10011. },
  10012. "$segments": {
  10013. "type": "map<string,list<string>>",
  10014. "value": {
  10015. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/4.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/35.instance": "M1200,200.00000000000003L1228,218.00000000000003",
  10016. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/35.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon/34.instance": "M1228.0634434779158,218.04078509294598L1256.9996147146396,255.99975231655404"
  10017. }
  10018. },
  10019. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  10020. },
  10021. "36": {
  10022. "typename": {
  10023. "type": "string",
  10024. "value": "TextIcon"
  10025. },
  10026. "position": {
  10027. "type": "list<double>",
  10028. "value": [
  10029. 1229,
  10030. 244
  10031. ]
  10032. },
  10033. "orientation": {
  10034. "type": "double",
  10035. "value": 0
  10036. },
  10037. "scale": {
  10038. "type": "list<double>",
  10039. "value": [
  10040. 1,
  10041. 1
  10042. ]
  10043. },
  10044. "mapper": {
  10045. "type": "code",
  10046. "value": ""
  10047. },
  10048. "parser": {
  10049. "type": "code",
  10050. "value": ""
  10051. },
  10052. "$contents": {
  10053. "type": "map<string,*>",
  10054. "value": {
  10055. "nodes": {
  10056. "21": {
  10057. "textContent": {
  10058. "type": "string",
  10059. "value": "T..."
  10060. },
  10061. "style": {
  10062. "type": "map<string,string>",
  10063. "value": {
  10064. "stroke": "#000000",
  10065. "stroke-dasharray": "",
  10066. "fill": "#000000",
  10067. "fill-opacity": 1,
  10068. "font-size": "20px",
  10069. "stroke-width": 0,
  10070. "arrow-start": "none",
  10071. "arrow-end": "none"
  10072. }
  10073. },
  10074. "mapper": {
  10075. "type": "code",
  10076. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  10077. },
  10078. "parser": {
  10079. "type": "code",
  10080. "value": "({\"textContent\":getAttr(\"textContent\")})"
  10081. },
  10082. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  10083. "position": {
  10084. "type": "list<double>",
  10085. "value": [
  10086. 0,
  10087. 0
  10088. ]
  10089. },
  10090. "orientation": {
  10091. "type": "double",
  10092. "value": 0
  10093. },
  10094. "scale": {
  10095. "type": "list<double>",
  10096. "value": [
  10097. 1,
  10098. 1
  10099. ]
  10100. }
  10101. }
  10102. },
  10103. "edges": []
  10104. }
  10105. },
  10106. "$asuri": {
  10107. "type": "string",
  10108. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/36.instance"
  10109. },
  10110. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  10111. },
  10112. "37": {
  10113. "link-style": {
  10114. "type": "map<string,string>",
  10115. "value": {
  10116. "stroke": "#00ffff",
  10117. "stroke-dasharray": "",
  10118. "stroke-opacity": 0.1,
  10119. "stroke-width": 1
  10120. }
  10121. },
  10122. "arrowHead": {
  10123. "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)",
  10124. "value": "custom"
  10125. },
  10126. "arrowTail": {
  10127. "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)",
  10128. "value": "arrow-black"
  10129. },
  10130. "typename": {
  10131. "type": "string",
  10132. "value": "ContainLink"
  10133. },
  10134. "position": {
  10135. "type": "list<double>",
  10136. "value": [
  10137. 1225.4627026924213,
  10138. 240.75
  10139. ]
  10140. },
  10141. "orientation": {
  10142. "type": "double",
  10143. "value": 0
  10144. },
  10145. "scale": {
  10146. "type": "list<double>",
  10147. "value": [
  10148. 1,
  10149. 1
  10150. ]
  10151. },
  10152. "mapper": {
  10153. "type": "code",
  10154. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  10155. },
  10156. "parser": {
  10157. "type": "code",
  10158. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10159. },
  10160. "$contents": {
  10161. "type": "map<string,*>",
  10162. "value": {
  10163. "nodes": {},
  10164. "edges": []
  10165. }
  10166. },
  10167. "$asuri": {
  10168. "type": "string",
  10169. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/37.instance"
  10170. },
  10171. "$segments": {
  10172. "type": "map<string,list<string>>",
  10173. "value": {
  10174. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon/34.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/37.instance": "M1206.925405384843,226.00000000000003L1225.4627026924218,240.75000000000003",
  10175. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/37.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/36.instance": "M1225.52161244,240.7968740810683L1243.999497211319,255.499599934504"
  10176. }
  10177. },
  10178. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  10179. },
  10180. "38": {
  10181. "typename": {
  10182. "type": "string",
  10183. "value": "TextIcon"
  10184. },
  10185. "position": {
  10186. "type": "list<double>",
  10187. "value": [
  10188. 1233,
  10189. 203
  10190. ]
  10191. },
  10192. "orientation": {
  10193. "type": "double",
  10194. "value": 0
  10195. },
  10196. "scale": {
  10197. "type": "list<double>",
  10198. "value": [
  10199. 1,
  10200. 1
  10201. ]
  10202. },
  10203. "mapper": {
  10204. "type": "code",
  10205. "value": ""
  10206. },
  10207. "parser": {
  10208. "type": "code",
  10209. "value": ""
  10210. },
  10211. "$contents": {
  10212. "type": "map<string,*>",
  10213. "value": {
  10214. "nodes": {
  10215. "21": {
  10216. "textContent": {
  10217. "type": "string",
  10218. "value": "Time"
  10219. },
  10220. "style": {
  10221. "type": "map<string,string>",
  10222. "value": {
  10223. "stroke": "#000000",
  10224. "stroke-dasharray": "",
  10225. "fill": "#ffffff",
  10226. "fill-opacity": 0.75,
  10227. "font-size": "20px",
  10228. "stroke-width": 1,
  10229. "arrow-start": "none",
  10230. "arrow-end": "none"
  10231. }
  10232. },
  10233. "mapper": {
  10234. "type": "code",
  10235. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  10236. },
  10237. "parser": {
  10238. "type": "code",
  10239. "value": "({\"textContent\":getAttr(\"textContent\")})"
  10240. },
  10241. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  10242. "position": {
  10243. "type": "list<double>",
  10244. "value": [
  10245. 0,
  10246. 0
  10247. ]
  10248. },
  10249. "orientation": {
  10250. "type": "double",
  10251. "value": 0
  10252. },
  10253. "scale": {
  10254. "type": "list<double>",
  10255. "value": [
  10256. 1,
  10257. 1
  10258. ]
  10259. }
  10260. }
  10261. },
  10262. "edges": []
  10263. }
  10264. },
  10265. "$asuri": {
  10266. "type": "string",
  10267. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/38.instance"
  10268. },
  10269. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  10270. },
  10271. "39": {
  10272. "link-style": {
  10273. "type": "map<string,string>",
  10274. "value": {
  10275. "stroke": "#ff00ff",
  10276. "stroke-dasharray": "",
  10277. "stroke-opacity": 0.1,
  10278. "stroke-width": 1
  10279. }
  10280. },
  10281. "arrowHead": {
  10282. "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)",
  10283. "value": "custom"
  10284. },
  10285. "arrowTail": {
  10286. "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)",
  10287. "value": "arrow-black"
  10288. },
  10289. "typename": {
  10290. "type": "string",
  10291. "value": "IconContentsLink"
  10292. },
  10293. "position": {
  10294. "type": "list<double>",
  10295. "value": [
  10296. 1227.75,
  10297. 240.25
  10298. ]
  10299. },
  10300. "orientation": {
  10301. "type": "double",
  10302. "value": 0
  10303. },
  10304. "scale": {
  10305. "type": "list<double>",
  10306. "value": [
  10307. 1,
  10308. 1
  10309. ]
  10310. },
  10311. "mapper": {
  10312. "type": "code",
  10313. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  10314. },
  10315. "parser": {
  10316. "type": "code",
  10317. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10318. },
  10319. "$contents": {
  10320. "type": "map<string,*>",
  10321. "value": {
  10322. "nodes": {},
  10323. "edges": []
  10324. }
  10325. },
  10326. "$asuri": {
  10327. "type": "string",
  10328. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/39.instance"
  10329. },
  10330. "$segments": {
  10331. "type": "map<string,list<string>>",
  10332. "value": {
  10333. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/4.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/39.instance": "M1200,200.00000000000003L1227.75,240.25000000000003",
  10334. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/39.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/38.instance": "M1227.7928238769096,240.31211391155344L1254.4998231633892,214.4997435072584"
  10335. }
  10336. },
  10337. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  10338. },
  10339. "44": {
  10340. "typename": {
  10341. "type": "string",
  10342. "value": "EllipseIcon"
  10343. },
  10344. "position": {
  10345. "type": "list<double>",
  10346. "value": [
  10347. 531,
  10348. 205.56939999999997
  10349. ]
  10350. },
  10351. "orientation": {
  10352. "type": "double",
  10353. "value": 0
  10354. },
  10355. "scale": {
  10356. "type": "list<double>",
  10357. "value": [
  10358. 1,
  10359. 1
  10360. ]
  10361. },
  10362. "mapper": {
  10363. "type": "code",
  10364. "value": ""
  10365. },
  10366. "parser": {
  10367. "type": "code",
  10368. "value": ""
  10369. },
  10370. "$contents": {
  10371. "type": "map<string,*>",
  10372. "value": {
  10373. "nodes": {
  10374. "33": {
  10375. "rx": {
  10376. "type": "double",
  10377. "value": 40
  10378. },
  10379. "ry": {
  10380. "type": "double",
  10381. "value": 80
  10382. },
  10383. "style": {
  10384. "type": "map<string,string>",
  10385. "value": {
  10386. "stroke": "#000000",
  10387. "stroke-dasharray": "",
  10388. "fill": "#ffffff",
  10389. "fill-opacity": 1,
  10390. "font-size": "20px",
  10391. "stroke-width": 1,
  10392. "arrow-start": "none",
  10393. "arrow-end": "none"
  10394. }
  10395. },
  10396. "mapper": {
  10397. "type": "code",
  10398. "value": "({\"rx\":getAttr(\"rx\"), \"ry\":getAttr(\"ry\"), \"style\":getAttr(\"style\")})"
  10399. },
  10400. "parser": {
  10401. "type": "code",
  10402. "value": ""
  10403. },
  10404. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse",
  10405. "position": {
  10406. "type": "list<double>",
  10407. "value": [
  10408. 0,
  10409. 0
  10410. ]
  10411. },
  10412. "orientation": {
  10413. "type": "double",
  10414. "value": 0
  10415. },
  10416. "scale": {
  10417. "type": "list<double>",
  10418. "value": [
  10419. 1,
  10420. 1
  10421. ]
  10422. }
  10423. }
  10424. },
  10425. "edges": []
  10426. }
  10427. },
  10428. "$asuri": {
  10429. "type": "string",
  10430. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse/44.instance"
  10431. },
  10432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon"
  10433. },
  10434. "49": {
  10435. "typename": {
  10436. "type": "string",
  10437. "value": "CircleIcon"
  10438. },
  10439. "position": {
  10440. "type": "list<double>",
  10441. "value": [
  10442. 551,
  10443. 220.56939999999997
  10444. ]
  10445. },
  10446. "orientation": {
  10447. "type": "double",
  10448. "value": 0
  10449. },
  10450. "scale": {
  10451. "type": "list<double>",
  10452. "value": [
  10453. 1,
  10454. 1
  10455. ]
  10456. },
  10457. "mapper": {
  10458. "type": "code",
  10459. "value": ""
  10460. },
  10461. "parser": {
  10462. "type": "code",
  10463. "value": ""
  10464. },
  10465. "$contents": {
  10466. "type": "map<string,*>",
  10467. "value": {
  10468. "nodes": {
  10469. "31": {
  10470. "r": {
  10471. "type": "double",
  10472. "value": 20
  10473. },
  10474. "style": {
  10475. "type": "map<string,string>",
  10476. "value": {
  10477. "stroke": "#000000",
  10478. "stroke-dasharray": "",
  10479. "fill": "#ff0000",
  10480. "fill-opacity": 1,
  10481. "font-size": "20px",
  10482. "stroke-width": 3,
  10483. "arrow-start": "none",
  10484. "arrow-end": "none"
  10485. }
  10486. },
  10487. "mapper": {
  10488. "type": "code",
  10489. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  10490. },
  10491. "parser": {
  10492. "type": "code",
  10493. "value": ""
  10494. },
  10495. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10496. "position": {
  10497. "type": "list<double>",
  10498. "value": [
  10499. 0,
  10500. 0
  10501. ]
  10502. },
  10503. "orientation": {
  10504. "type": "double",
  10505. "value": 0
  10506. },
  10507. "scale": {
  10508. "type": "list<double>",
  10509. "value": [
  10510. 1,
  10511. 1
  10512. ]
  10513. }
  10514. }
  10515. },
  10516. "edges": []
  10517. }
  10518. },
  10519. "$asuri": {
  10520. "type": "string",
  10521. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/49.instance"
  10522. },
  10523. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  10524. },
  10525. "50": {
  10526. "typename": {
  10527. "type": "string",
  10528. "value": "CircleIcon"
  10529. },
  10530. "position": {
  10531. "type": "list<double>",
  10532. "value": [
  10533. 551,
  10534. 310.5694
  10535. ]
  10536. },
  10537. "orientation": {
  10538. "type": "double",
  10539. "value": 0
  10540. },
  10541. "scale": {
  10542. "type": "list<double>",
  10543. "value": [
  10544. 1,
  10545. 1
  10546. ]
  10547. },
  10548. "mapper": {
  10549. "type": "code",
  10550. "value": ""
  10551. },
  10552. "parser": {
  10553. "type": "code",
  10554. "value": ""
  10555. },
  10556. "$contents": {
  10557. "type": "map<string,*>",
  10558. "value": {
  10559. "nodes": {
  10560. "31": {
  10561. "r": {
  10562. "type": "double",
  10563. "value": 20
  10564. },
  10565. "style": {
  10566. "type": "map<string,string>",
  10567. "value": {
  10568. "stroke": "#000000",
  10569. "stroke-dasharray": "",
  10570. "fill": "#00ff00",
  10571. "fill-opacity": 1,
  10572. "font-size": "20px",
  10573. "stroke-width": 3,
  10574. "arrow-start": "none",
  10575. "arrow-end": "none"
  10576. }
  10577. },
  10578. "mapper": {
  10579. "type": "code",
  10580. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  10581. },
  10582. "parser": {
  10583. "type": "code",
  10584. "value": ""
  10585. },
  10586. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10587. "position": {
  10588. "type": "list<double>",
  10589. "value": [
  10590. 0,
  10591. 0
  10592. ]
  10593. },
  10594. "orientation": {
  10595. "type": "double",
  10596. "value": 0
  10597. },
  10598. "scale": {
  10599. "type": "list<double>",
  10600. "value": [
  10601. 1,
  10602. 1
  10603. ]
  10604. }
  10605. }
  10606. },
  10607. "edges": []
  10608. }
  10609. },
  10610. "$asuri": {
  10611. "type": "string",
  10612. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/50.instance"
  10613. },
  10614. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  10615. },
  10616. "51": {
  10617. "typename": {
  10618. "type": "string",
  10619. "value": "CircleIcon"
  10620. },
  10621. "position": {
  10622. "type": "list<double>",
  10623. "value": [
  10624. 551,
  10625. 265.5694
  10626. ]
  10627. },
  10628. "orientation": {
  10629. "type": "double",
  10630. "value": 0
  10631. },
  10632. "scale": {
  10633. "type": "list<double>",
  10634. "value": [
  10635. 1,
  10636. 1
  10637. ]
  10638. },
  10639. "mapper": {
  10640. "type": "code",
  10641. "value": ""
  10642. },
  10643. "parser": {
  10644. "type": "code",
  10645. "value": ""
  10646. },
  10647. "$contents": {
  10648. "type": "map<string,*>",
  10649. "value": {
  10650. "nodes": {
  10651. "31": {
  10652. "r": {
  10653. "type": "double",
  10654. "value": 20
  10655. },
  10656. "style": {
  10657. "type": "map<string,string>",
  10658. "value": {
  10659. "stroke": "#000000",
  10660. "stroke-dasharray": "",
  10661. "fill": "#ffff00",
  10662. "fill-opacity": 1,
  10663. "font-size": "20px",
  10664. "stroke-width": 3,
  10665. "arrow-start": "none",
  10666. "arrow-end": "none"
  10667. }
  10668. },
  10669. "mapper": {
  10670. "type": "code",
  10671. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  10672. },
  10673. "parser": {
  10674. "type": "code",
  10675. "value": ""
  10676. },
  10677. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10678. "position": {
  10679. "type": "list<double>",
  10680. "value": [
  10681. 0,
  10682. 0
  10683. ]
  10684. },
  10685. "orientation": {
  10686. "type": "double",
  10687. "value": 0
  10688. },
  10689. "scale": {
  10690. "type": "list<double>",
  10691. "value": [
  10692. 1,
  10693. 1
  10694. ]
  10695. }
  10696. }
  10697. },
  10698. "edges": []
  10699. }
  10700. },
  10701. "$asuri": {
  10702. "type": "string",
  10703. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/51.instance"
  10704. },
  10705. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  10706. },
  10707. "52": {
  10708. "link-style": {
  10709. "type": "map<string,string>",
  10710. "value": {
  10711. "stroke": "#00ffff",
  10712. "stroke-dasharray": "",
  10713. "stroke-opacity": 0.1,
  10714. "stroke-width": 1
  10715. }
  10716. },
  10717. "arrowHead": {
  10718. "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)",
  10719. "value": "custom"
  10720. },
  10721. "arrowTail": {
  10722. "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)",
  10723. "value": "arrow-black"
  10724. },
  10725. "typename": {
  10726. "type": "string",
  10727. "value": "ContainLink"
  10728. },
  10729. "position": {
  10730. "type": "list<double>",
  10731. "value": [
  10732. 551.0835380564172,
  10733. 223.1684561335868
  10734. ]
  10735. },
  10736. "orientation": {
  10737. "type": "double",
  10738. "value": 0
  10739. },
  10740. "scale": {
  10741. "type": "list<double>",
  10742. "value": [
  10743. 1,
  10744. 1
  10745. ]
  10746. },
  10747. "mapper": {
  10748. "type": "code",
  10749. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  10750. },
  10751. "parser": {
  10752. "type": "code",
  10753. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10754. },
  10755. "$contents": {
  10756. "type": "map<string,*>",
  10757. "value": {
  10758. "nodes": {},
  10759. "edges": []
  10760. }
  10761. },
  10762. "$asuri": {
  10763. "type": "string",
  10764. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/52.instance"
  10765. },
  10766. "$segments": {
  10767. "type": "map<string,list<string>>",
  10768. "value": {
  10769. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon/44.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/52.instance": "M530.9403243078746,205.56940000000012L551.0835380564172,223.16845613358694",
  10770. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/52.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/49.instance": "M551.0266363899327,223.118741344524L570.999572702533,240.5690266716821"
  10771. }
  10772. },
  10773. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  10774. },
  10775. "53": {
  10776. "link-style": {
  10777. "type": "map<string,string>",
  10778. "value": {
  10779. "stroke": "#00ffff",
  10780. "stroke-dasharray": "",
  10781. "stroke-opacity": 0.1,
  10782. "stroke-width": 1
  10783. }
  10784. },
  10785. "arrowHead": {
  10786. "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)",
  10787. "value": "custom"
  10788. },
  10789. "arrowTail": {
  10790. "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)",
  10791. "value": "arrow-black"
  10792. },
  10793. "typename": {
  10794. "type": "string",
  10795. "value": "ContainLink"
  10796. },
  10797. "position": {
  10798. "type": "list<double>",
  10799. "value": [
  10800. 551.0160319759609,
  10801. 268.2125296597869
  10802. ]
  10803. },
  10804. "orientation": {
  10805. "type": "double",
  10806. "value": 0
  10807. },
  10808. "scale": {
  10809. "type": "list<double>",
  10810. "value": [
  10811. 1,
  10812. 1
  10813. ]
  10814. },
  10815. "mapper": {
  10816. "type": "code",
  10817. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  10818. },
  10819. "parser": {
  10820. "type": "code",
  10821. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10822. },
  10823. "$contents": {
  10824. "type": "map<string,*>",
  10825. "value": {
  10826. "nodes": {},
  10827. "edges": []
  10828. }
  10829. },
  10830. "$asuri": {
  10831. "type": "string",
  10832. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/53.instance"
  10833. },
  10834. "$segments": {
  10835. "type": "map<string,list<string>>",
  10836. "value": {
  10837. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon/44.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/53.instance": "M530.9403243078746,205.56940000000012L551.0160319759609,268.21252965978704",
  10838. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/53.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/50.instance": "M551.0158919156524,268.212092623334L570.9997201638423,330.5685268147065"
  10839. }
  10840. },
  10841. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  10842. },
  10843. "54": {
  10844. "link-style": {
  10845. "type": "map<string,string>",
  10846. "value": {
  10847. "stroke": "#00ffff",
  10848. "stroke-dasharray": "",
  10849. "stroke-opacity": 0.1,
  10850. "stroke-width": 1
  10851. }
  10852. },
  10853. "arrowHead": {
  10854. "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)",
  10855. "value": "custom"
  10856. },
  10857. "arrowTail": {
  10858. "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)",
  10859. "value": "arrow-black"
  10860. },
  10861. "typename": {
  10862. "type": "string",
  10863. "value": "ContainLink"
  10864. },
  10865. "position": {
  10866. "type": "list<double>",
  10867. "value": [
  10868. 551.037678347634,
  10869. 245.7042312337138
  10870. ]
  10871. },
  10872. "orientation": {
  10873. "type": "double",
  10874. "value": 0
  10875. },
  10876. "scale": {
  10877. "type": "list<double>",
  10878. "value": [
  10879. 1,
  10880. 1
  10881. ]
  10882. },
  10883. "mapper": {
  10884. "type": "code",
  10885. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  10886. },
  10887. "parser": {
  10888. "type": "code",
  10889. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10890. },
  10891. "$contents": {
  10892. "type": "map<string,*>",
  10893. "value": {
  10894. "nodes": {},
  10895. "edges": []
  10896. }
  10897. },
  10898. "$asuri": {
  10899. "type": "string",
  10900. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/54.instance"
  10901. },
  10902. "$segments": {
  10903. "type": "map<string,list<string>>",
  10904. "value": {
  10905. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon/44.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/54.instance": "M530.9403243078746,205.56940000000012L551.037678347634,245.70423123371395",
  10906. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/54.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/51.instance": "M551.0038444324803,245.63666420613484L570.9998483916106,285.569097234914"
  10907. }
  10908. },
  10909. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  10910. },
  10911. "56": {
  10912. "typename": {
  10913. "type": "string",
  10914. "value": "StarIcon"
  10915. },
  10916. "position": {
  10917. "type": "list<double>",
  10918. "value": [
  10919. 309,
  10920. 207.2013
  10921. ]
  10922. },
  10923. "orientation": {
  10924. "type": "double",
  10925. "value": 0
  10926. },
  10927. "scale": {
  10928. "type": "list<double>",
  10929. "value": [
  10930. 1,
  10931. 1
  10932. ]
  10933. },
  10934. "mapper": {
  10935. "type": "code",
  10936. "value": ""
  10937. },
  10938. "parser": {
  10939. "type": "code",
  10940. "value": ""
  10941. },
  10942. "$contents": {
  10943. "type": "map<string,*>",
  10944. "value": {
  10945. "nodes": {
  10946. "40": {
  10947. "r": {
  10948. "type": "double",
  10949. "value": 20
  10950. },
  10951. "rays": {
  10952. "type": "int",
  10953. "value": 5
  10954. },
  10955. "style": {
  10956. "type": "map<string,string>",
  10957. "value": {
  10958. "stroke": "#000000",
  10959. "stroke-dasharray": "",
  10960. "fill": "#ffff00",
  10961. "fill-opacity": 0,
  10962. "font-size": "20px",
  10963. "stroke-width": 0,
  10964. "arrow-start": "none",
  10965. "arrow-end": "none"
  10966. }
  10967. },
  10968. "mapper": {
  10969. "type": "code",
  10970. "value": "({\"r\":getAttr(\"r\"), \"rays\":getAttr(\"rays\"), \"style\":getAttr(\"style\")})"
  10971. },
  10972. "parser": {
  10973. "type": "code",
  10974. "value": ""
  10975. },
  10976. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Star",
  10977. "position": {
  10978. "type": "list<double>",
  10979. "value": [
  10980. 0,
  10981. 4
  10982. ]
  10983. },
  10984. "orientation": {
  10985. "type": "double",
  10986. "value": 0
  10987. },
  10988. "scale": {
  10989. "type": "list<double>",
  10990. "value": [
  10991. 1,
  10992. 1
  10993. ]
  10994. }
  10995. }
  10996. },
  10997. "edges": []
  10998. }
  10999. },
  11000. "$asuri": {
  11001. "type": "string",
  11002. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Star/56.instance"
  11003. },
  11004. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/StarIcon"
  11005. },
  11006. "61": {
  11007. "typename": {
  11008. "type": "string",
  11009. "value": "IconIcon"
  11010. },
  11011. "position": {
  11012. "type": "list<double>",
  11013. "value": [
  11014. 975,
  11015. 200
  11016. ]
  11017. },
  11018. "orientation": {
  11019. "type": "double",
  11020. "value": 0
  11021. },
  11022. "scale": {
  11023. "type": "list<double>",
  11024. "value": [
  11025. 1,
  11026. 1
  11027. ]
  11028. },
  11029. "mapper": {
  11030. "type": "code",
  11031. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  11032. },
  11033. "parser": {
  11034. "type": "code",
  11035. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  11036. },
  11037. "$contents": {
  11038. "type": "map<string,*>",
  11039. "value": {
  11040. "nodes": {
  11041. "1": {
  11042. "width": {
  11043. "type": "double",
  11044. "value": "200"
  11045. },
  11046. "height": {
  11047. "type": "double",
  11048. "value": "150"
  11049. },
  11050. "cornerRadius": {
  11051. "type": "double",
  11052. "value": "10"
  11053. },
  11054. "style": {
  11055. "type": "map<string,string>",
  11056. "value": {
  11057. "stroke": "#000000",
  11058. "stroke-dasharray": "- ",
  11059. "fill": "#ffffff",
  11060. "fill-opacity": 0.75,
  11061. "stroke-width": 1
  11062. }
  11063. },
  11064. "mapper": {
  11065. "type": "code",
  11066. "value": ""
  11067. },
  11068. "parser": {
  11069. "type": "code",
  11070. "value": ""
  11071. },
  11072. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  11073. "position": {
  11074. "type": "list<double>",
  11075. "value": [
  11076. 0,
  11077. 0
  11078. ]
  11079. },
  11080. "orientation": {
  11081. "type": "double",
  11082. "value": 0
  11083. },
  11084. "scale": {
  11085. "type": "list<double>",
  11086. "value": [
  11087. 1,
  11088. 1
  11089. ]
  11090. }
  11091. },
  11092. "2": {
  11093. "textContent": {
  11094. "type": "string",
  11095. "value": "EndIcon"
  11096. },
  11097. "style": {
  11098. "type": "map<string,string>",
  11099. "value": {
  11100. "stroke": "#000000",
  11101. "stroke-dasharray": "",
  11102. "fill": "#000000",
  11103. "fill-opacity": "1",
  11104. "font-size": "13px"
  11105. }
  11106. },
  11107. "mapper": {
  11108. "type": "code",
  11109. "value": "({\"textContent\":getAttr(\"typename\")})"
  11110. },
  11111. "parser": {
  11112. "type": "code",
  11113. "value": "({\"typename\":getAttr(\"textContent\")})"
  11114. },
  11115. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  11116. "position": {
  11117. "type": "list<double>",
  11118. "value": [
  11119. 58,
  11120. 151
  11121. ]
  11122. },
  11123. "orientation": {
  11124. "type": "double",
  11125. "value": 0
  11126. },
  11127. "scale": {
  11128. "type": "list<double>",
  11129. "value": [
  11130. 1,
  11131. 1
  11132. ]
  11133. }
  11134. },
  11135. "3": {
  11136. "distance": {
  11137. "type": "double",
  11138. "value": 0
  11139. },
  11140. "alignment": {
  11141. "type": "ENUM(\"right\",\"left\",\"center\")",
  11142. "value": "center"
  11143. },
  11144. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  11145. "position": {
  11146. "type": "list<double>",
  11147. "value": [
  11148. 93.49899850809561,
  11149. 137.49900000000002
  11150. ]
  11151. },
  11152. "orientation": {
  11153. "type": "double",
  11154. "value": 0
  11155. },
  11156. "scale": {
  11157. "type": "list<double>",
  11158. "value": [
  11159. 1,
  11160. 1
  11161. ]
  11162. },
  11163. "link-style": {
  11164. "type": "map<string,string>",
  11165. "value": {
  11166. "stroke": "#00ff00",
  11167. "stroke-dasharray": "",
  11168. "stroke-opacity": 1,
  11169. "arrow-start": "none",
  11170. "arrow-end": "classic-wide-long"
  11171. }
  11172. }
  11173. }
  11174. },
  11175. "edges": [
  11176. {
  11177. "src": "2",
  11178. "dest": 3
  11179. },
  11180. {
  11181. "src": 3,
  11182. "dest": "1"
  11183. }
  11184. ]
  11185. }
  11186. },
  11187. "$asuri": {
  11188. "type": "string",
  11189. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/61.instance"
  11190. },
  11191. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  11192. },
  11193. "62": {
  11194. "typename": {
  11195. "type": "string",
  11196. "value": "CircleIcon"
  11197. },
  11198. "position": {
  11199. "type": "list<double>",
  11200. "value": [
  11201. 985,
  11202. 209
  11203. ]
  11204. },
  11205. "orientation": {
  11206. "type": "double",
  11207. "value": 0
  11208. },
  11209. "scale": {
  11210. "type": "list<double>",
  11211. "value": [
  11212. 1,
  11213. 1
  11214. ]
  11215. },
  11216. "mapper": {
  11217. "type": "code",
  11218. "value": ""
  11219. },
  11220. "parser": {
  11221. "type": "code",
  11222. "value": ""
  11223. },
  11224. "$contents": {
  11225. "type": "map<string,*>",
  11226. "value": {
  11227. "nodes": {
  11228. "31": {
  11229. "r": {
  11230. "type": "double",
  11231. "value": 10
  11232. },
  11233. "style": {
  11234. "type": "map<string,string>",
  11235. "value": {
  11236. "stroke": "#000000",
  11237. "stroke-dasharray": "",
  11238. "fill": "#ffffff",
  11239. "fill-opacity": 0.75,
  11240. "font-size": "20px",
  11241. "stroke-width": 6,
  11242. "arrow-start": "none",
  11243. "arrow-end": "none"
  11244. }
  11245. },
  11246. "mapper": {
  11247. "type": "code",
  11248. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  11249. },
  11250. "parser": {
  11251. "type": "code",
  11252. "value": ""
  11253. },
  11254. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11255. "position": {
  11256. "type": "list<double>",
  11257. "value": [
  11258. 0,
  11259. 0
  11260. ]
  11261. },
  11262. "orientation": {
  11263. "type": "double",
  11264. "value": 0
  11265. },
  11266. "scale": {
  11267. "type": "list<double>",
  11268. "value": [
  11269. 1,
  11270. 1
  11271. ]
  11272. }
  11273. }
  11274. },
  11275. "edges": []
  11276. }
  11277. },
  11278. "$asuri": {
  11279. "type": "string",
  11280. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/62.instance"
  11281. },
  11282. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  11283. },
  11284. "63": {
  11285. "link-style": {
  11286. "type": "map<string,string>",
  11287. "value": {
  11288. "stroke": "#ff00ff",
  11289. "stroke-dasharray": "",
  11290. "stroke-opacity": 0.1,
  11291. "stroke-width": 1
  11292. }
  11293. },
  11294. "arrowHead": {
  11295. "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)",
  11296. "value": "custom"
  11297. },
  11298. "arrowTail": {
  11299. "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)",
  11300. "value": "arrow-black"
  11301. },
  11302. "typename": {
  11303. "type": "string",
  11304. "value": "IconContentsLink"
  11305. },
  11306. "position": {
  11307. "type": "list<double>",
  11308. "value": [
  11309. 985.1111090789004,
  11310. 209.60555362495552
  11311. ]
  11312. },
  11313. "orientation": {
  11314. "type": "double",
  11315. "value": 0
  11316. },
  11317. "scale": {
  11318. "type": "list<double>",
  11319. "value": [
  11320. 1,
  11321. 1
  11322. ]
  11323. },
  11324. "mapper": {
  11325. "type": "code",
  11326. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  11327. },
  11328. "parser": {
  11329. "type": "code",
  11330. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11331. },
  11332. "$contents": {
  11333. "type": "map<string,*>",
  11334. "value": {
  11335. "nodes": {},
  11336. "edges": []
  11337. }
  11338. },
  11339. "$asuri": {
  11340. "type": "string",
  11341. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/63.instance"
  11342. },
  11343. "$segments": {
  11344. "type": "map<string,list<string>>",
  11345. "value": {
  11346. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/61.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/63.instance": "M975,200L985.1111090789004,209.60555362495552",
  11347. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/63.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/62.instance": "M985.1111090789004,209.60555362495552L995,219"
  11348. }
  11349. },
  11350. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  11351. },
  11352. "71": {
  11353. "typename": {
  11354. "type": "string",
  11355. "value": "IconIcon"
  11356. },
  11357. "position": {
  11358. "type": "list<double>",
  11359. "value": [
  11360. 300,
  11361. 200.1562
  11362. ]
  11363. },
  11364. "orientation": {
  11365. "type": "double",
  11366. "value": 0
  11367. },
  11368. "scale": {
  11369. "type": "list<double>",
  11370. "value": [
  11371. 1,
  11372. 1.3233532934131738
  11373. ]
  11374. },
  11375. "mapper": {
  11376. "type": "code",
  11377. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  11378. },
  11379. "parser": {
  11380. "type": "code",
  11381. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  11382. },
  11383. "$contents": {
  11384. "type": "map<string,*>",
  11385. "value": {
  11386. "nodes": {
  11387. "1": {
  11388. "width": {
  11389. "type": "double",
  11390. "value": "200"
  11391. },
  11392. "height": {
  11393. "type": "double",
  11394. "value": "150"
  11395. },
  11396. "cornerRadius": {
  11397. "type": "double",
  11398. "value": "10"
  11399. },
  11400. "style": {
  11401. "type": "map<string,string>",
  11402. "value": {
  11403. "stroke": "#000000",
  11404. "stroke-dasharray": "- ",
  11405. "fill": "#ffffff",
  11406. "fill-opacity": 0.75,
  11407. "stroke-width": 1
  11408. }
  11409. },
  11410. "mapper": {
  11411. "type": "code",
  11412. "value": ""
  11413. },
  11414. "parser": {
  11415. "type": "code",
  11416. "value": ""
  11417. },
  11418. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  11419. "position": {
  11420. "type": "list<double>",
  11421. "value": [
  11422. 0,
  11423. 0
  11424. ]
  11425. },
  11426. "orientation": {
  11427. "type": "double",
  11428. "value": 0
  11429. },
  11430. "scale": {
  11431. "type": "list<double>",
  11432. "value": [
  11433. 1,
  11434. 1
  11435. ]
  11436. }
  11437. },
  11438. "2": {
  11439. "textContent": {
  11440. "type": "string",
  11441. "value": "StateIcon"
  11442. },
  11443. "style": {
  11444. "type": "map<string,string>",
  11445. "value": {
  11446. "stroke": "#000000",
  11447. "stroke-dasharray": "",
  11448. "fill": "#000000",
  11449. "fill-opacity": "1",
  11450. "font-size": "13px"
  11451. }
  11452. },
  11453. "mapper": {
  11454. "type": "code",
  11455. "value": "({\"textContent\":getAttr(\"typename\")})"
  11456. },
  11457. "parser": {
  11458. "type": "code",
  11459. "value": "({\"typename\":getAttr(\"textContent\")})"
  11460. },
  11461. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  11462. "position": {
  11463. "type": "list<double>",
  11464. "value": [
  11465. 58,
  11466. 151
  11467. ]
  11468. },
  11469. "orientation": {
  11470. "type": "double",
  11471. "value": 0
  11472. },
  11473. "scale": {
  11474. "type": "list<double>",
  11475. "value": [
  11476. 1,
  11477. 1
  11478. ]
  11479. }
  11480. },
  11481. "3": {
  11482. "distance": {
  11483. "type": "double",
  11484. "value": 0
  11485. },
  11486. "alignment": {
  11487. "type": "ENUM(\"right\",\"left\",\"center\")",
  11488. "value": "center"
  11489. },
  11490. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  11491. "position": {
  11492. "type": "list<double>",
  11493. "value": [
  11494. 93.49899850809561,
  11495. 137.49900000000002
  11496. ]
  11497. },
  11498. "orientation": {
  11499. "type": "double",
  11500. "value": 0
  11501. },
  11502. "scale": {
  11503. "type": "list<double>",
  11504. "value": [
  11505. 1,
  11506. 1
  11507. ]
  11508. },
  11509. "link-style": {
  11510. "type": "map<string,string>",
  11511. "value": {
  11512. "stroke": "#00ff00",
  11513. "stroke-dasharray": "",
  11514. "stroke-opacity": 1,
  11515. "arrow-start": "none",
  11516. "arrow-end": "classic-wide-long"
  11517. }
  11518. }
  11519. }
  11520. },
  11521. "edges": [
  11522. {
  11523. "src": "2",
  11524. "dest": 3
  11525. },
  11526. {
  11527. "src": 3,
  11528. "dest": "1"
  11529. }
  11530. ]
  11531. }
  11532. },
  11533. "$asuri": {
  11534. "type": "string",
  11535. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/71.instance"
  11536. },
  11537. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  11538. },
  11539. "75": {
  11540. "typename": {
  11541. "type": "string",
  11542. "value": "TextIcon"
  11543. },
  11544. "position": {
  11545. "type": "list<double>",
  11546. "value": [
  11547. 308,
  11548. 254.52069999999998
  11549. ]
  11550. },
  11551. "orientation": {
  11552. "type": "double",
  11553. "value": 0
  11554. },
  11555. "scale": {
  11556. "type": "list<double>",
  11557. "value": [
  11558. 1,
  11559. 1
  11560. ]
  11561. },
  11562. "mapper": {
  11563. "type": "code",
  11564. "value": ""
  11565. },
  11566. "parser": {
  11567. "type": "code",
  11568. "value": ""
  11569. },
  11570. "$contents": {
  11571. "type": "map<string,*>",
  11572. "value": {
  11573. "nodes": {
  11574. "21": {
  11575. "textContent": {
  11576. "type": "string",
  11577. "value": "state"
  11578. },
  11579. "style": {
  11580. "type": "map<string,string>",
  11581. "value": {
  11582. "stroke": "#000000",
  11583. "stroke-dasharray": "",
  11584. "fill": "#000000",
  11585. "fill-opacity": 1,
  11586. "font-size": "20px",
  11587. "stroke-width": 0,
  11588. "arrow-start": "none",
  11589. "arrow-end": "none"
  11590. }
  11591. },
  11592. "mapper": {
  11593. "type": "code",
  11594. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  11595. },
  11596. "parser": {
  11597. "type": "code",
  11598. "value": "({\"textContent\":getAttr(\"textContent\")})"
  11599. },
  11600. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  11601. "position": {
  11602. "type": "list<double>",
  11603. "value": [
  11604. 0,
  11605. 0
  11606. ]
  11607. },
  11608. "orientation": {
  11609. "type": "double",
  11610. "value": 0
  11611. },
  11612. "scale": {
  11613. "type": "list<double>",
  11614. "value": [
  11615. 1,
  11616. 1
  11617. ]
  11618. }
  11619. }
  11620. },
  11621. "edges": []
  11622. }
  11623. },
  11624. "$asuri": {
  11625. "type": "string",
  11626. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/75.instance"
  11627. },
  11628. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  11629. },
  11630. "78": {
  11631. "link-style": {
  11632. "type": "map<string,string>",
  11633. "value": {
  11634. "stroke": "#ff00ff",
  11635. "stroke-dasharray": "",
  11636. "stroke-opacity": 0.1,
  11637. "stroke-width": 1
  11638. }
  11639. },
  11640. "arrowHead": {
  11641. "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)",
  11642. "value": "custom"
  11643. },
  11644. "arrowTail": {
  11645. "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)",
  11646. "value": "arrow-black"
  11647. },
  11648. "typename": {
  11649. "type": "string",
  11650. "value": "IconContentsLink"
  11651. },
  11652. "position": {
  11653. "type": "list<double>",
  11654. "value": [
  11655. 367.09481129262747,
  11656. 283.02329902186455
  11657. ]
  11658. },
  11659. "orientation": {
  11660. "type": "double",
  11661. "value": 0
  11662. },
  11663. "scale": {
  11664. "type": "list<double>",
  11665. "value": [
  11666. 1,
  11667. 1
  11668. ]
  11669. },
  11670. "mapper": {
  11671. "type": "code",
  11672. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  11673. },
  11674. "parser": {
  11675. "type": "code",
  11676. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11677. },
  11678. "$contents": {
  11679. "type": "map<string,*>",
  11680. "value": {
  11681. "nodes": {},
  11682. "edges": []
  11683. }
  11684. },
  11685. "$asuri": {
  11686. "type": "string",
  11687. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/78.instance"
  11688. },
  11689. "$segments": {
  11690. "type": "map<string,list<string>>",
  11691. "value": {
  11692. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/71.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/78.instance": "M299.99999999999994,200.15620000000004L367.09481129262747,283.02329902186455",
  11693. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/78.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/75.instance": "M367.0946324035019,283.02307808044463L322.9996424464491,266.02025839468183"
  11694. }
  11695. },
  11696. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  11697. },
  11698. "84": {
  11699. "typename": {
  11700. "type": "string",
  11701. "value": "CircleIcon"
  11702. },
  11703. "position": {
  11704. "type": "list<double>",
  11705. "value": [
  11706. 306,
  11707. 207.51717137451175
  11708. ]
  11709. },
  11710. "orientation": {
  11711. "type": "double",
  11712. "value": 0
  11713. },
  11714. "scale": {
  11715. "type": "list<double>",
  11716. "value": [
  11717. 1,
  11718. 1
  11719. ]
  11720. },
  11721. "mapper": {
  11722. "type": "code",
  11723. "value": ""
  11724. },
  11725. "parser": {
  11726. "type": "code",
  11727. "value": ""
  11728. },
  11729. "$contents": {
  11730. "type": "map<string,*>",
  11731. "value": {
  11732. "nodes": {
  11733. "31": {
  11734. "r": {
  11735. "type": "double",
  11736. "value": 25
  11737. },
  11738. "style": {
  11739. "type": "map<string,string>",
  11740. "value": {
  11741. "stroke": "#000000",
  11742. "stroke-dasharray": "",
  11743. "fill": "#ffffff",
  11744. "fill-opacity": 0.75,
  11745. "font-size": "20px",
  11746. "stroke-width": 2,
  11747. "arrow-start": "none",
  11748. "arrow-end": "none"
  11749. }
  11750. },
  11751. "mapper": {
  11752. "type": "code",
  11753. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  11754. },
  11755. "parser": {
  11756. "type": "code",
  11757. "value": ""
  11758. },
  11759. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11760. "position": {
  11761. "type": "list<double>",
  11762. "value": [
  11763. 0,
  11764. 0
  11765. ]
  11766. },
  11767. "orientation": {
  11768. "type": "double",
  11769. "value": 0
  11770. },
  11771. "scale": {
  11772. "type": "list<double>",
  11773. "value": [
  11774. 1,
  11775. 1
  11776. ]
  11777. }
  11778. }
  11779. },
  11780. "edges": []
  11781. }
  11782. },
  11783. "$asuri": {
  11784. "type": "string",
  11785. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/84.instance"
  11786. },
  11787. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  11788. },
  11789. "85": {
  11790. "link-style": {
  11791. "type": "map<string,string>",
  11792. "value": {
  11793. "stroke": "#ff00ff",
  11794. "stroke-dasharray": "",
  11795. "stroke-opacity": 0.1,
  11796. "stroke-width": 1
  11797. }
  11798. },
  11799. "arrowHead": {
  11800. "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)",
  11801. "value": "custom"
  11802. },
  11803. "arrowTail": {
  11804. "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)",
  11805. "value": "arrow-black"
  11806. },
  11807. "typename": {
  11808. "type": "string",
  11809. "value": "IconContentsLink"
  11810. },
  11811. "position": {
  11812. "type": "list<double>",
  11813. "value": [
  11814. 354.13499987499995,
  11815. 227.29330921381325
  11816. ]
  11817. },
  11818. "orientation": {
  11819. "type": "double",
  11820. "value": 0
  11821. },
  11822. "scale": {
  11823. "type": "list<double>",
  11824. "value": [
  11825. 1,
  11826. 1
  11827. ]
  11828. },
  11829. "mapper": {
  11830. "type": "code",
  11831. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  11832. },
  11833. "parser": {
  11834. "type": "code",
  11835. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11836. },
  11837. "$contents": {
  11838. "type": "map<string,*>",
  11839. "value": {
  11840. "nodes": {},
  11841. "edges": []
  11842. }
  11843. },
  11844. "$asuri": {
  11845. "type": "string",
  11846. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/85.instance"
  11847. },
  11848. "$segments": {
  11849. "type": "map<string,list<string>>",
  11850. "value": {
  11851. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/71.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/85.instance": "M300.00000000000006,200.15620000000004L354.13499987499995,227.29330921381327",
  11852. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/85.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/84.instance": "M354.067387484453,227.2594160794138L330.99977512500004,232.5170586478571"
  11853. }
  11854. },
  11855. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  11856. },
  11857. "87": {
  11858. "typename": {
  11859. "type": "string",
  11860. "value": "LinkIcon"
  11861. },
  11862. "position": {
  11863. "type": "list<double>",
  11864. "value": [
  11865. 297,
  11866. 448.0034713745117
  11867. ]
  11868. },
  11869. "orientation": {
  11870. "type": "double",
  11871. "value": 0
  11872. },
  11873. "scale": {
  11874. "type": "list<double>",
  11875. "value": [
  11876. 1,
  11877. 1
  11878. ]
  11879. },
  11880. "mapper": {
  11881. "type": "code",
  11882. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  11883. },
  11884. "parser": {
  11885. "type": "code",
  11886. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  11887. },
  11888. "$contents": {
  11889. "type": "map<string,*>",
  11890. "value": {
  11891. "nodes": {
  11892. "92": {
  11893. "textContent": {
  11894. "type": "string",
  11895. "value": "VisualisedByLink"
  11896. },
  11897. "style": {
  11898. "type": "map<string,string>",
  11899. "value": {
  11900. "stroke": "#000000",
  11901. "stroke-dasharray": "",
  11902. "fill": "#000000",
  11903. "fill-opacity": "1",
  11904. "font-size": "13px"
  11905. }
  11906. },
  11907. "mapper": {
  11908. "type": "code",
  11909. "value": "({\"textContent\":getAttr(\"typename\")})"
  11910. },
  11911. "parser": {
  11912. "type": "code",
  11913. "value": "({\"typename\":getAttr(\"textContent\")})"
  11914. },
  11915. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  11916. "position": {
  11917. "type": "list<double>",
  11918. "value": [
  11919. 56,
  11920. 156
  11921. ]
  11922. },
  11923. "orientation": {
  11924. "type": "double",
  11925. "value": 0
  11926. },
  11927. "scale": {
  11928. "type": "list<double>",
  11929. "value": [
  11930. 1,
  11931. 1
  11932. ]
  11933. }
  11934. },
  11935. "100": {
  11936. "width": {
  11937. "type": "double",
  11938. "value": 250
  11939. },
  11940. "height": {
  11941. "type": "double",
  11942. "value": "150"
  11943. },
  11944. "cornerRadius": {
  11945. "type": "double",
  11946. "value": "10"
  11947. },
  11948. "style": {
  11949. "type": "map<string,string>",
  11950. "value": {
  11951. "stroke": "#000000",
  11952. "stroke-dasharray": ". ",
  11953. "fill": "#ffffff",
  11954. "fill-opacity": 0.75,
  11955. "stroke-width": 1
  11956. }
  11957. },
  11958. "mapper": {
  11959. "type": "code",
  11960. "value": ""
  11961. },
  11962. "parser": {
  11963. "type": "code",
  11964. "value": ""
  11965. },
  11966. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  11967. "position": {
  11968. "type": "list<double>",
  11969. "value": [
  11970. 3,
  11971. 2
  11972. ]
  11973. },
  11974. "orientation": {
  11975. "type": "double",
  11976. "value": 0
  11977. },
  11978. "scale": {
  11979. "type": "list<double>",
  11980. "value": [
  11981. 1.0327000000000006,
  11982. 1
  11983. ]
  11984. }
  11985. },
  11986. "122": {
  11987. "distance": {
  11988. "type": "double",
  11989. "value": 0
  11990. },
  11991. "alignment": {
  11992. "type": "ENUM('right','left','center')",
  11993. "value": "center"
  11994. },
  11995. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  11996. "position": {
  11997. "type": "list<double>",
  11998. "value": [
  11999. 82,
  12000. 151.5
  12001. ]
  12002. },
  12003. "orientation": {
  12004. "type": "double",
  12005. "value": 0
  12006. },
  12007. "scale": {
  12008. "type": "list<double>",
  12009. "value": [
  12010. 1,
  12011. 1
  12012. ]
  12013. },
  12014. "link-style": {
  12015. "type": "map<string,string>",
  12016. "value": {
  12017. "stroke": "#00ff00",
  12018. "stroke-dasharray": "",
  12019. "stroke-opacity": 1,
  12020. "stroke-width": 1
  12021. }
  12022. }
  12023. },
  12024. "162": {
  12025. "segments": {
  12026. "type": "string",
  12027. "value": "m0,0l198,0"
  12028. },
  12029. "style": {
  12030. "type": "map<string,string>",
  12031. "value": {
  12032. "stroke": "#000000",
  12033. "stroke-dasharray": "-",
  12034. "stroke-opacity": 1,
  12035. "stroke-width": 1
  12036. }
  12037. },
  12038. "mapper": {
  12039. "type": "code",
  12040. "value": "({'style':getAttr('link-style')})"
  12041. },
  12042. "parser": {
  12043. "type": "code",
  12044. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12045. },
  12046. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12047. "position": {
  12048. "type": "list<double>",
  12049. "value": [
  12050. 34,
  12051. 77
  12052. ]
  12053. },
  12054. "orientation": {
  12055. "type": "double",
  12056. "value": 0
  12057. },
  12058. "scale": {
  12059. "type": "list<double>",
  12060. "value": [
  12061. 1,
  12062. 1
  12063. ]
  12064. }
  12065. },
  12066. "195": {
  12067. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  12068. "position": {
  12069. "type": "list<double>",
  12070. "value": [
  12071. 68.12999992296295,
  12072. 39.57499995555554
  12073. ]
  12074. },
  12075. "orientation": {
  12076. "type": "double",
  12077. "value": 0
  12078. },
  12079. "scale": {
  12080. "type": "list<double>",
  12081. "value": [
  12082. 1,
  12083. 1
  12084. ]
  12085. },
  12086. "link-style": {
  12087. "type": "map<string,string>",
  12088. "value": {
  12089. "stroke": "#00ffff",
  12090. "stroke-dasharray": "",
  12091. "stroke-opacity": 0.1,
  12092. "stroke-width": 1
  12093. }
  12094. }
  12095. },
  12096. "267": {
  12097. "segments": {
  12098. "type": "string",
  12099. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  12100. },
  12101. "style": {
  12102. "type": "map<string,string>",
  12103. "value": {
  12104. "stroke": "#000000",
  12105. "fill": "#000000",
  12106. "opacity": 1,
  12107. "stroke-width": 1
  12108. }
  12109. },
  12110. "mapper": {
  12111. "type": "code",
  12112. "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})"
  12113. },
  12114. "parser": {
  12115. "type": "code",
  12116. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12117. },
  12118. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12119. "position": {
  12120. "type": "list<double>",
  12121. "value": [
  12122. 222,
  12123. 73
  12124. ]
  12125. },
  12126. "orientation": {
  12127. "type": "double",
  12128. "value": 0
  12129. },
  12130. "scale": {
  12131. "type": "list<double>",
  12132. "value": [
  12133. 1,
  12134. 1
  12135. ]
  12136. }
  12137. },
  12138. "268": {
  12139. "segments": {
  12140. "type": "string",
  12141. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12142. },
  12143. "style": {
  12144. "type": "map<string,string>",
  12145. "value": {
  12146. "stroke": "#000000",
  12147. "fill": "#000000",
  12148. "opacity": 0,
  12149. "stroke-width": 1
  12150. }
  12151. },
  12152. "mapper": {
  12153. "type": "code",
  12154. "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})"
  12155. },
  12156. "parser": {
  12157. "type": "code",
  12158. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12159. },
  12160. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12161. "position": {
  12162. "type": "list<double>",
  12163. "value": [
  12164. 222,
  12165. 67
  12166. ]
  12167. },
  12168. "orientation": {
  12169. "type": "double",
  12170. "value": 0
  12171. },
  12172. "scale": {
  12173. "type": "list<double>",
  12174. "value": [
  12175. 1,
  12176. 1
  12177. ]
  12178. }
  12179. },
  12180. "269": {
  12181. "r": {
  12182. "type": "double",
  12183. "value": 10
  12184. },
  12185. "style": {
  12186. "type": "map<string,string>",
  12187. "value": {
  12188. "stroke": "#000000",
  12189. "fill": "#000000",
  12190. "opacity": 0,
  12191. "stroke-width": 1
  12192. }
  12193. },
  12194. "mapper": {
  12195. "type": "code",
  12196. "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})"
  12197. },
  12198. "parser": {
  12199. "type": "code",
  12200. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12201. },
  12202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12203. "position": {
  12204. "type": "list<double>",
  12205. "value": [
  12206. 212,
  12207. 67
  12208. ]
  12209. },
  12210. "orientation": {
  12211. "type": "double",
  12212. "value": 0
  12213. },
  12214. "scale": {
  12215. "type": "list<double>",
  12216. "value": [
  12217. 1,
  12218. 1
  12219. ]
  12220. }
  12221. },
  12222. "270": {
  12223. "r": {
  12224. "type": "double",
  12225. "value": 10
  12226. },
  12227. "style": {
  12228. "type": "map<string,string>",
  12229. "value": {
  12230. "stroke": "#000000",
  12231. "fill": "#ffffff",
  12232. "opacity": 0,
  12233. "stroke-width": 1
  12234. }
  12235. },
  12236. "mapper": {
  12237. "type": "code",
  12238. "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})"
  12239. },
  12240. "parser": {
  12241. "type": "code",
  12242. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12243. },
  12244. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12245. "position": {
  12246. "type": "list<double>",
  12247. "value": [
  12248. 212,
  12249. 67
  12250. ]
  12251. },
  12252. "orientation": {
  12253. "type": "double",
  12254. "value": 0
  12255. },
  12256. "scale": {
  12257. "type": "list<double>",
  12258. "value": [
  12259. 1,
  12260. 1
  12261. ]
  12262. }
  12263. },
  12264. "271": {
  12265. "r": {
  12266. "type": "double",
  12267. "value": 5
  12268. },
  12269. "style": {
  12270. "type": "map<string,string>",
  12271. "value": {
  12272. "stroke": "#000000",
  12273. "fill": "#000000",
  12274. "opacity": 0,
  12275. "stroke-width": 1
  12276. }
  12277. },
  12278. "mapper": {
  12279. "type": "code",
  12280. "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})"
  12281. },
  12282. "parser": {
  12283. "type": "code",
  12284. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12285. },
  12286. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12287. "position": {
  12288. "type": "list<double>",
  12289. "value": [
  12290. 222,
  12291. 72
  12292. ]
  12293. },
  12294. "orientation": {
  12295. "type": "double",
  12296. "value": 0
  12297. },
  12298. "scale": {
  12299. "type": "list<double>",
  12300. "value": [
  12301. 1,
  12302. 1
  12303. ]
  12304. }
  12305. },
  12306. "272": {
  12307. "segments": {
  12308. "type": "string",
  12309. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  12310. },
  12311. "style": {
  12312. "type": "map<string,string>",
  12313. "value": {
  12314. "stroke": "#000000",
  12315. "fill": "#000000",
  12316. "opacity": 0,
  12317. "stroke-width": 1
  12318. }
  12319. },
  12320. "mapper": {
  12321. "type": "code",
  12322. "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})"
  12323. },
  12324. "parser": {
  12325. "type": "code",
  12326. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12327. },
  12328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12329. "position": {
  12330. "type": "list<double>",
  12331. "value": [
  12332. 227,
  12333. 72
  12334. ]
  12335. },
  12336. "orientation": {
  12337. "type": "double",
  12338. "value": 0
  12339. },
  12340. "scale": {
  12341. "type": "list<double>",
  12342. "value": [
  12343. 1,
  12344. 1
  12345. ]
  12346. }
  12347. },
  12348. "273": {
  12349. "segments": {
  12350. "type": "string",
  12351. "value": "m0,0 l20,10 l-20,10 z"
  12352. },
  12353. "style": {
  12354. "type": "map<string,string>",
  12355. "value": {
  12356. "stroke": "#000000",
  12357. "fill": "#000000",
  12358. "opacity": 0,
  12359. "stroke-width": 1
  12360. }
  12361. },
  12362. "mapper": {
  12363. "type": "code",
  12364. "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})"
  12365. },
  12366. "parser": {
  12367. "type": "code",
  12368. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12369. },
  12370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12371. "position": {
  12372. "type": "list<double>",
  12373. "value": [
  12374. 212,
  12375. 67
  12376. ]
  12377. },
  12378. "orientation": {
  12379. "type": "double",
  12380. "value": 0
  12381. },
  12382. "scale": {
  12383. "type": "list<double>",
  12384. "value": [
  12385. 1,
  12386. 1
  12387. ]
  12388. }
  12389. },
  12390. "274": {
  12391. "segments": {
  12392. "type": "string",
  12393. "value": "m0,0 l10,4 l-10,4 z"
  12394. },
  12395. "style": {
  12396. "type": "map<string,string>",
  12397. "value": {
  12398. "stroke": "#000000",
  12399. "fill": "#000000",
  12400. "opacity": 0,
  12401. "stroke-width": 1
  12402. }
  12403. },
  12404. "mapper": {
  12405. "type": "code",
  12406. "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})"
  12407. },
  12408. "parser": {
  12409. "type": "code",
  12410. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12411. },
  12412. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12413. "position": {
  12414. "type": "list<double>",
  12415. "value": [
  12416. 222,
  12417. 73
  12418. ]
  12419. },
  12420. "orientation": {
  12421. "type": "double",
  12422. "value": 0
  12423. },
  12424. "scale": {
  12425. "type": "list<double>",
  12426. "value": [
  12427. 1,
  12428. 1
  12429. ]
  12430. }
  12431. },
  12432. "275": {
  12433. "segments": {
  12434. "type": "string",
  12435. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  12436. },
  12437. "style": {
  12438. "type": "map<string,string>",
  12439. "value": {
  12440. "stroke": "#000000",
  12441. "fill": "#000000",
  12442. "opacity": 0,
  12443. "stroke-width": 1
  12444. }
  12445. },
  12446. "mapper": {
  12447. "type": "code",
  12448. "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})"
  12449. },
  12450. "parser": {
  12451. "type": "code",
  12452. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12453. },
  12454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12455. "position": {
  12456. "type": "list<double>",
  12457. "value": [
  12458. 212,
  12459. 69
  12460. ]
  12461. },
  12462. "orientation": {
  12463. "type": "double",
  12464. "value": 0
  12465. },
  12466. "scale": {
  12467. "type": "list<double>",
  12468. "value": [
  12469. 1,
  12470. 1
  12471. ]
  12472. }
  12473. },
  12474. "276": {
  12475. "segments": {
  12476. "type": "string",
  12477. "value": "m0,0 l20,10 l-20,10 z"
  12478. },
  12479. "style": {
  12480. "type": "map<string,string>",
  12481. "value": {
  12482. "stroke": "#000000",
  12483. "fill": "#ffffff",
  12484. "opacity": 0,
  12485. "stroke-width": 1
  12486. }
  12487. },
  12488. "mapper": {
  12489. "type": "code",
  12490. "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})"
  12491. },
  12492. "parser": {
  12493. "type": "code",
  12494. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12495. },
  12496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12497. "position": {
  12498. "type": "list<double>",
  12499. "value": [
  12500. 212,
  12501. 67
  12502. ]
  12503. },
  12504. "orientation": {
  12505. "type": "double",
  12506. "value": 0
  12507. },
  12508. "scale": {
  12509. "type": "list<double>",
  12510. "value": [
  12511. 1,
  12512. 1
  12513. ]
  12514. }
  12515. },
  12516. "277": {
  12517. "segments": {
  12518. "type": "string",
  12519. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  12520. },
  12521. "style": {
  12522. "type": "map<string,string>",
  12523. "value": {
  12524. "stroke": "#000000",
  12525. "fill": "#ffffff",
  12526. "opacity": 0,
  12527. "stroke-width": 1
  12528. }
  12529. },
  12530. "mapper": {
  12531. "type": "code",
  12532. "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})"
  12533. },
  12534. "parser": {
  12535. "type": "code",
  12536. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12537. },
  12538. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12539. "position": {
  12540. "type": "list<double>",
  12541. "value": [
  12542. 227,
  12543. 72
  12544. ]
  12545. },
  12546. "orientation": {
  12547. "type": "double",
  12548. "value": 0
  12549. },
  12550. "scale": {
  12551. "type": "list<double>",
  12552. "value": [
  12553. 1,
  12554. 1
  12555. ]
  12556. }
  12557. },
  12558. "278": {
  12559. "segments": {
  12560. "type": "string",
  12561. "value": "m0,0 l20,8 l-20,8"
  12562. },
  12563. "style": {
  12564. "type": "map<string,string>",
  12565. "value": {
  12566. "stroke": "#000000",
  12567. "fill": "#000000",
  12568. "fill-opacity": 0,
  12569. "stroke-width": 1,
  12570. "opacity": 0
  12571. }
  12572. },
  12573. "mapper": {
  12574. "type": "code",
  12575. "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})"
  12576. },
  12577. "parser": {
  12578. "type": "code",
  12579. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12580. },
  12581. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12582. "position": {
  12583. "type": "list<double>",
  12584. "value": [
  12585. 212,
  12586. 69
  12587. ]
  12588. },
  12589. "orientation": {
  12590. "type": "double",
  12591. "value": 0
  12592. },
  12593. "scale": {
  12594. "type": "list<double>",
  12595. "value": [
  12596. 1,
  12597. 1
  12598. ]
  12599. }
  12600. },
  12601. "279": {
  12602. "r": {
  12603. "type": "double",
  12604. "value": 5
  12605. },
  12606. "style": {
  12607. "type": "map<string,string>",
  12608. "value": {
  12609. "stroke": "#000000",
  12610. "fill": "#ffffff",
  12611. "opacity": 0,
  12612. "stroke-width": 1
  12613. }
  12614. },
  12615. "mapper": {
  12616. "type": "code",
  12617. "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})"
  12618. },
  12619. "parser": {
  12620. "type": "code",
  12621. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12622. },
  12623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12624. "position": {
  12625. "type": "list<double>",
  12626. "value": [
  12627. 222,
  12628. 72
  12629. ]
  12630. },
  12631. "orientation": {
  12632. "type": "double",
  12633. "value": 0
  12634. },
  12635. "scale": {
  12636. "type": "list<double>",
  12637. "value": [
  12638. 1,
  12639. 1
  12640. ]
  12641. }
  12642. },
  12643. "280": {
  12644. "segments": {
  12645. "type": "string",
  12646. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12647. },
  12648. "style": {
  12649. "type": "map<string,string>",
  12650. "value": {
  12651. "stroke": "#000000",
  12652. "fill": "#ffffff",
  12653. "opacity": 0,
  12654. "stroke-width": 1
  12655. }
  12656. },
  12657. "mapper": {
  12658. "type": "code",
  12659. "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})"
  12660. },
  12661. "parser": {
  12662. "type": "code",
  12663. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12664. },
  12665. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12666. "position": {
  12667. "type": "list<double>",
  12668. "value": [
  12669. 222,
  12670. 67
  12671. ]
  12672. },
  12673. "orientation": {
  12674. "type": "double",
  12675. "value": 0
  12676. },
  12677. "scale": {
  12678. "type": "list<double>",
  12679. "value": [
  12680. 1,
  12681. 1
  12682. ]
  12683. }
  12684. },
  12685. "281": {
  12686. "segments": {
  12687. "type": "string",
  12688. "value": "m0,0 l10,4 l-10,4"
  12689. },
  12690. "style": {
  12691. "type": "map<string,string>",
  12692. "value": {
  12693. "stroke": "#000000",
  12694. "fill": "#000000",
  12695. "fill-opacity": 0,
  12696. "stroke-width": 1,
  12697. "opacity": 0
  12698. }
  12699. },
  12700. "mapper": {
  12701. "type": "code",
  12702. "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})"
  12703. },
  12704. "parser": {
  12705. "type": "code",
  12706. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12707. },
  12708. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12709. "position": {
  12710. "type": "list<double>",
  12711. "value": [
  12712. 222,
  12713. 73
  12714. ]
  12715. },
  12716. "orientation": {
  12717. "type": "double",
  12718. "value": 0
  12719. },
  12720. "scale": {
  12721. "type": "list<double>",
  12722. "value": [
  12723. 1,
  12724. 1
  12725. ]
  12726. }
  12727. },
  12728. "282": {
  12729. "segments": {
  12730. "type": "string",
  12731. "value": "m0,0 l10,5 l-10,5 z"
  12732. },
  12733. "style": {
  12734. "type": "map<string,string>",
  12735. "value": {
  12736. "stroke": "#000000",
  12737. "fill": "#ffffff",
  12738. "opacity": 0,
  12739. "stroke-width": 1
  12740. }
  12741. },
  12742. "mapper": {
  12743. "type": "code",
  12744. "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})"
  12745. },
  12746. "parser": {
  12747. "type": "code",
  12748. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12749. },
  12750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12751. "position": {
  12752. "type": "list<double>",
  12753. "value": [
  12754. 222,
  12755. 72
  12756. ]
  12757. },
  12758. "orientation": {
  12759. "type": "double",
  12760. "value": 0
  12761. },
  12762. "scale": {
  12763. "type": "list<double>",
  12764. "value": [
  12765. 1,
  12766. 1
  12767. ]
  12768. }
  12769. },
  12770. "283": {
  12771. "segments": {
  12772. "type": "string",
  12773. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  12774. },
  12775. "style": {
  12776. "type": "map<string,string>",
  12777. "value": {
  12778. "stroke": "#000000",
  12779. "fill": "#ffffff",
  12780. "opacity": 0,
  12781. "stroke-width": 1
  12782. }
  12783. },
  12784. "mapper": {
  12785. "type": "code",
  12786. "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})"
  12787. },
  12788. "parser": {
  12789. "type": "code",
  12790. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12791. },
  12792. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12793. "position": {
  12794. "type": "list<double>",
  12795. "value": [
  12796. 39,
  12797. 72
  12798. ]
  12799. },
  12800. "orientation": {
  12801. "type": "double",
  12802. "value": 0
  12803. },
  12804. "scale": {
  12805. "type": "list<double>",
  12806. "value": [
  12807. 1,
  12808. 1
  12809. ]
  12810. }
  12811. },
  12812. "284": {
  12813. "segments": {
  12814. "type": "string",
  12815. "value": "m0,0 l-10,5 l10,5 z"
  12816. },
  12817. "style": {
  12818. "type": "map<string,string>",
  12819. "value": {
  12820. "stroke": "#000000",
  12821. "fill": "#ffffff",
  12822. "opacity": 0,
  12823. "stroke-width": 1
  12824. }
  12825. },
  12826. "mapper": {
  12827. "type": "code",
  12828. "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})"
  12829. },
  12830. "parser": {
  12831. "type": "code",
  12832. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12833. },
  12834. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12835. "position": {
  12836. "type": "list<double>",
  12837. "value": [
  12838. 43,
  12839. 72
  12840. ]
  12841. },
  12842. "orientation": {
  12843. "type": "double",
  12844. "value": 0
  12845. },
  12846. "scale": {
  12847. "type": "list<double>",
  12848. "value": [
  12849. 1,
  12850. 1
  12851. ]
  12852. }
  12853. },
  12854. "285": {
  12855. "segments": {
  12856. "type": "string",
  12857. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  12858. },
  12859. "style": {
  12860. "type": "map<string,string>",
  12861. "value": {
  12862. "stroke": "#000000",
  12863. "fill": "#000000",
  12864. "opacity": 0,
  12865. "stroke-width": 1
  12866. }
  12867. },
  12868. "mapper": {
  12869. "type": "code",
  12870. "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})"
  12871. },
  12872. "parser": {
  12873. "type": "code",
  12874. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12875. },
  12876. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12877. "position": {
  12878. "type": "list<double>",
  12879. "value": [
  12880. 39,
  12881. 72
  12882. ]
  12883. },
  12884. "orientation": {
  12885. "type": "double",
  12886. "value": 0
  12887. },
  12888. "scale": {
  12889. "type": "list<double>",
  12890. "value": [
  12891. 1,
  12892. 1
  12893. ]
  12894. }
  12895. },
  12896. "286": {
  12897. "r": {
  12898. "type": "double",
  12899. "value": 10
  12900. },
  12901. "style": {
  12902. "type": "map<string,string>",
  12903. "value": {
  12904. "stroke": "#000000",
  12905. "fill": "#000000",
  12906. "opacity": 0,
  12907. "stroke-width": 1
  12908. }
  12909. },
  12910. "mapper": {
  12911. "type": "code",
  12912. "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})"
  12913. },
  12914. "parser": {
  12915. "type": "code",
  12916. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12917. },
  12918. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12919. "position": {
  12920. "type": "list<double>",
  12921. "value": [
  12922. 34,
  12923. 67
  12924. ]
  12925. },
  12926. "orientation": {
  12927. "type": "double",
  12928. "value": 0
  12929. },
  12930. "scale": {
  12931. "type": "list<double>",
  12932. "value": [
  12933. 1,
  12934. 1
  12935. ]
  12936. }
  12937. },
  12938. "287": {
  12939. "segments": {
  12940. "type": "string",
  12941. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  12942. },
  12943. "style": {
  12944. "type": "map<string,string>",
  12945. "value": {
  12946. "stroke": "#000000",
  12947. "fill": "#000000",
  12948. "opacity": 0,
  12949. "stroke-width": 1
  12950. }
  12951. },
  12952. "mapper": {
  12953. "type": "code",
  12954. "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})"
  12955. },
  12956. "parser": {
  12957. "type": "code",
  12958. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12959. },
  12960. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12961. "position": {
  12962. "type": "list<double>",
  12963. "value": [
  12964. 54,
  12965. 69
  12966. ]
  12967. },
  12968. "orientation": {
  12969. "type": "double",
  12970. "value": 0
  12971. },
  12972. "scale": {
  12973. "type": "list<double>",
  12974. "value": [
  12975. 1,
  12976. 1
  12977. ]
  12978. }
  12979. },
  12980. "288": {
  12981. "segments": {
  12982. "type": "string",
  12983. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  12984. },
  12985. "style": {
  12986. "type": "map<string,string>",
  12987. "value": {
  12988. "stroke": "#000000",
  12989. "fill": "#000000",
  12990. "opacity": 0,
  12991. "stroke-width": 1
  12992. }
  12993. },
  12994. "mapper": {
  12995. "type": "code",
  12996. "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})"
  12997. },
  12998. "parser": {
  12999. "type": "code",
  13000. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13001. },
  13002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13003. "position": {
  13004. "type": "list<double>",
  13005. "value": [
  13006. 43,
  13007. 73
  13008. ]
  13009. },
  13010. "orientation": {
  13011. "type": "double",
  13012. "value": 0
  13013. },
  13014. "scale": {
  13015. "type": "list<double>",
  13016. "value": [
  13017. 1,
  13018. 1
  13019. ]
  13020. }
  13021. },
  13022. "289": {
  13023. "segments": {
  13024. "type": "string",
  13025. "value": "m0,0 l-20,10 l20,10 z"
  13026. },
  13027. "style": {
  13028. "type": "map<string,string>",
  13029. "value": {
  13030. "stroke": "#000000",
  13031. "fill": "#ffffff",
  13032. "opacity": 0,
  13033. "stroke-width": 1
  13034. }
  13035. },
  13036. "mapper": {
  13037. "type": "code",
  13038. "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})"
  13039. },
  13040. "parser": {
  13041. "type": "code",
  13042. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13043. },
  13044. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13045. "position": {
  13046. "type": "list<double>",
  13047. "value": [
  13048. 54,
  13049. 67
  13050. ]
  13051. },
  13052. "orientation": {
  13053. "type": "double",
  13054. "value": 0
  13055. },
  13056. "scale": {
  13057. "type": "list<double>",
  13058. "value": [
  13059. 1,
  13060. 1
  13061. ]
  13062. }
  13063. },
  13064. "290": {
  13065. "segments": {
  13066. "type": "string",
  13067. "value": "m0,0 l-20,10 l20,10 z"
  13068. },
  13069. "style": {
  13070. "type": "map<string,string>",
  13071. "value": {
  13072. "stroke": "#000000",
  13073. "fill": "#000000",
  13074. "opacity": 0,
  13075. "stroke-width": 1
  13076. }
  13077. },
  13078. "mapper": {
  13079. "type": "code",
  13080. "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})"
  13081. },
  13082. "parser": {
  13083. "type": "code",
  13084. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13085. },
  13086. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13087. "position": {
  13088. "type": "list<double>",
  13089. "value": [
  13090. 54,
  13091. 67
  13092. ]
  13093. },
  13094. "orientation": {
  13095. "type": "double",
  13096. "value": 0
  13097. },
  13098. "scale": {
  13099. "type": "list<double>",
  13100. "value": [
  13101. 1,
  13102. 1
  13103. ]
  13104. }
  13105. },
  13106. "291": {
  13107. "r": {
  13108. "type": "double",
  13109. "value": 5
  13110. },
  13111. "style": {
  13112. "type": "map<string,string>",
  13113. "value": {
  13114. "stroke": "#000000",
  13115. "fill": "#000000",
  13116. "opacity": 0,
  13117. "stroke-width": 1
  13118. }
  13119. },
  13120. "mapper": {
  13121. "type": "code",
  13122. "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})"
  13123. },
  13124. "parser": {
  13125. "type": "code",
  13126. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13127. },
  13128. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13129. "position": {
  13130. "type": "list<double>",
  13131. "value": [
  13132. 34,
  13133. 72
  13134. ]
  13135. },
  13136. "orientation": {
  13137. "type": "double",
  13138. "value": 0
  13139. },
  13140. "scale": {
  13141. "type": "list<double>",
  13142. "value": [
  13143. 1,
  13144. 1
  13145. ]
  13146. }
  13147. },
  13148. "292": {
  13149. "r": {
  13150. "type": "double",
  13151. "value": 5
  13152. },
  13153. "style": {
  13154. "type": "map<string,string>",
  13155. "value": {
  13156. "stroke": "#000000",
  13157. "fill": "#ffffff",
  13158. "opacity": 0,
  13159. "stroke-width": 1
  13160. }
  13161. },
  13162. "mapper": {
  13163. "type": "code",
  13164. "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})"
  13165. },
  13166. "parser": {
  13167. "type": "code",
  13168. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13169. },
  13170. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13171. "position": {
  13172. "type": "list<double>",
  13173. "value": [
  13174. 34,
  13175. 72
  13176. ]
  13177. },
  13178. "orientation": {
  13179. "type": "double",
  13180. "value": 0
  13181. },
  13182. "scale": {
  13183. "type": "list<double>",
  13184. "value": [
  13185. 1,
  13186. 1
  13187. ]
  13188. }
  13189. },
  13190. "293": {
  13191. "r": {
  13192. "type": "double",
  13193. "value": 10
  13194. },
  13195. "style": {
  13196. "type": "map<string,string>",
  13197. "value": {
  13198. "stroke": "#000000",
  13199. "fill": "#ffffff",
  13200. "opacity": 0,
  13201. "stroke-width": 1
  13202. }
  13203. },
  13204. "mapper": {
  13205. "type": "code",
  13206. "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})"
  13207. },
  13208. "parser": {
  13209. "type": "code",
  13210. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13211. },
  13212. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13213. "position": {
  13214. "type": "list<double>",
  13215. "value": [
  13216. 34,
  13217. 67
  13218. ]
  13219. },
  13220. "orientation": {
  13221. "type": "double",
  13222. "value": 0
  13223. },
  13224. "scale": {
  13225. "type": "list<double>",
  13226. "value": [
  13227. 1,
  13228. 1
  13229. ]
  13230. }
  13231. },
  13232. "294": {
  13233. "segments": {
  13234. "type": "string",
  13235. "value": "m0,0 l-20,8 l20,8"
  13236. },
  13237. "style": {
  13238. "type": "map<string,string>",
  13239. "value": {
  13240. "stroke": "#000000",
  13241. "fill": "#000000",
  13242. "fill-opacity": 0,
  13243. "stroke-width": 1,
  13244. "opacity": 0
  13245. }
  13246. },
  13247. "mapper": {
  13248. "type": "code",
  13249. "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})"
  13250. },
  13251. "parser": {
  13252. "type": "code",
  13253. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13254. },
  13255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13256. "position": {
  13257. "type": "list<double>",
  13258. "value": [
  13259. 54,
  13260. 69
  13261. ]
  13262. },
  13263. "orientation": {
  13264. "type": "double",
  13265. "value": 0
  13266. },
  13267. "scale": {
  13268. "type": "list<double>",
  13269. "value": [
  13270. 1,
  13271. 1
  13272. ]
  13273. }
  13274. },
  13275. "295": {
  13276. "segments": {
  13277. "type": "string",
  13278. "value": "m0,0 l-10,4 l10,4"
  13279. },
  13280. "style": {
  13281. "type": "map<string,string>",
  13282. "value": {
  13283. "stroke": "#000000",
  13284. "fill": "#000000",
  13285. "fill-opacity": 0,
  13286. "stroke-width": 1,
  13287. "opacity": 0
  13288. }
  13289. },
  13290. "mapper": {
  13291. "type": "code",
  13292. "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})"
  13293. },
  13294. "parser": {
  13295. "type": "code",
  13296. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13297. },
  13298. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13299. "position": {
  13300. "type": "list<double>",
  13301. "value": [
  13302. 43,
  13303. 73
  13304. ]
  13305. },
  13306. "orientation": {
  13307. "type": "double",
  13308. "value": 0
  13309. },
  13310. "scale": {
  13311. "type": "list<double>",
  13312. "value": [
  13313. 1,
  13314. 1
  13315. ]
  13316. }
  13317. },
  13318. "296": {
  13319. "segments": {
  13320. "type": "string",
  13321. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  13322. },
  13323. "style": {
  13324. "type": "map<string,string>",
  13325. "value": {
  13326. "stroke": "#000000",
  13327. "fill": "#000000",
  13328. "opacity": 0,
  13329. "stroke-width": 1
  13330. }
  13331. },
  13332. "mapper": {
  13333. "type": "code",
  13334. "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})"
  13335. },
  13336. "parser": {
  13337. "type": "code",
  13338. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13339. },
  13340. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13341. "position": {
  13342. "type": "list<double>",
  13343. "value": [
  13344. 43,
  13345. 67
  13346. ]
  13347. },
  13348. "orientation": {
  13349. "type": "double",
  13350. "value": 0
  13351. },
  13352. "scale": {
  13353. "type": "list<double>",
  13354. "value": [
  13355. 1,
  13356. 1
  13357. ]
  13358. }
  13359. },
  13360. "297": {
  13361. "segments": {
  13362. "type": "string",
  13363. "value": "m0,0 l-10,4 l10,4 z"
  13364. },
  13365. "style": {
  13366. "type": "map<string,string>",
  13367. "value": {
  13368. "stroke": "#000000",
  13369. "fill": "#000000",
  13370. "opacity": 0,
  13371. "stroke-width": 1
  13372. }
  13373. },
  13374. "mapper": {
  13375. "type": "code",
  13376. "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})"
  13377. },
  13378. "parser": {
  13379. "type": "code",
  13380. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13381. },
  13382. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13383. "position": {
  13384. "type": "list<double>",
  13385. "value": [
  13386. 43,
  13387. 73
  13388. ]
  13389. },
  13390. "orientation": {
  13391. "type": "double",
  13392. "value": 0
  13393. },
  13394. "scale": {
  13395. "type": "list<double>",
  13396. "value": [
  13397. 1,
  13398. 1
  13399. ]
  13400. }
  13401. },
  13402. "298": {
  13403. "segments": {
  13404. "type": "string",
  13405. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  13406. },
  13407. "style": {
  13408. "type": "map<string,string>",
  13409. "value": {
  13410. "stroke": "#000000",
  13411. "fill": "#ffffff",
  13412. "opacity": 0,
  13413. "stroke-width": 1
  13414. }
  13415. },
  13416. "mapper": {
  13417. "type": "code",
  13418. "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})"
  13419. },
  13420. "parser": {
  13421. "type": "code",
  13422. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13423. },
  13424. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13425. "position": {
  13426. "type": "list<double>",
  13427. "value": [
  13428. 43,
  13429. 67
  13430. ]
  13431. },
  13432. "orientation": {
  13433. "type": "double",
  13434. "value": 0
  13435. },
  13436. "scale": {
  13437. "type": "list<double>",
  13438. "value": [
  13439. 1,
  13440. 1
  13441. ]
  13442. }
  13443. },
  13444. "299": {
  13445. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13446. "position": {
  13447. "type": "list<double>",
  13448. "value": [
  13449. 114.64294868314005,
  13450. 39.04743588588505
  13451. ]
  13452. },
  13453. "orientation": {
  13454. "type": "double",
  13455. "value": 0
  13456. },
  13457. "scale": {
  13458. "type": "list<double>",
  13459. "value": [
  13460. 1,
  13461. 1
  13462. ]
  13463. },
  13464. "link-style": {
  13465. "type": "map<string,string>",
  13466. "value": {
  13467. "stroke": "#00ffff",
  13468. "stroke-dasharray": "",
  13469. "stroke-opacity": 0.1,
  13470. "stroke-width": 1
  13471. }
  13472. }
  13473. },
  13474. "300": {
  13475. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13476. "position": {
  13477. "type": "list<double>",
  13478. "value": [
  13479. 117.14309620090773,
  13480. 39.046443503803374
  13481. ]
  13482. },
  13483. "orientation": {
  13484. "type": "double",
  13485. "value": 0
  13486. },
  13487. "scale": {
  13488. "type": "list<double>",
  13489. "value": [
  13490. 1,
  13491. 1
  13492. ]
  13493. },
  13494. "link-style": {
  13495. "type": "map<string,string>",
  13496. "value": {
  13497. "stroke": "#00ffff",
  13498. "stroke-dasharray": "",
  13499. "stroke-opacity": 0.1,
  13500. "stroke-width": 1
  13501. }
  13502. }
  13503. },
  13504. "301": {
  13505. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13506. "position": {
  13507. "type": "list<double>",
  13508. "value": [
  13509. 112,
  13510. 39
  13511. ]
  13512. },
  13513. "orientation": {
  13514. "type": "double",
  13515. "value": 0
  13516. },
  13517. "scale": {
  13518. "type": "list<double>",
  13519. "value": [
  13520. 1,
  13521. 1
  13522. ]
  13523. },
  13524. "link-style": {
  13525. "type": "map<string,string>",
  13526. "value": {
  13527. "stroke": "#00ffff",
  13528. "stroke-dasharray": "",
  13529. "stroke-opacity": 0.1,
  13530. "stroke-width": 1
  13531. }
  13532. }
  13533. },
  13534. "302": {
  13535. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13536. "position": {
  13537. "type": "list<double>",
  13538. "value": [
  13539. 112,
  13540. 39
  13541. ]
  13542. },
  13543. "orientation": {
  13544. "type": "double",
  13545. "value": 0
  13546. },
  13547. "scale": {
  13548. "type": "list<double>",
  13549. "value": [
  13550. 1,
  13551. 1
  13552. ]
  13553. },
  13554. "link-style": {
  13555. "type": "map<string,string>",
  13556. "value": {
  13557. "stroke": "#00ffff",
  13558. "stroke-dasharray": "",
  13559. "stroke-opacity": 0.1,
  13560. "stroke-width": 1
  13561. }
  13562. }
  13563. },
  13564. "303": {
  13565. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13566. "position": {
  13567. "type": "list<double>",
  13568. "value": [
  13569. 114.64294868314005,
  13570. 39.04743588588505
  13571. ]
  13572. },
  13573. "orientation": {
  13574. "type": "double",
  13575. "value": 0
  13576. },
  13577. "scale": {
  13578. "type": "list<double>",
  13579. "value": [
  13580. 1,
  13581. 1
  13582. ]
  13583. },
  13584. "link-style": {
  13585. "type": "map<string,string>",
  13586. "value": {
  13587. "stroke": "#00ffff",
  13588. "stroke-dasharray": "",
  13589. "stroke-opacity": 0.1,
  13590. "stroke-width": 1
  13591. }
  13592. }
  13593. },
  13594. "304": {
  13595. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13596. "position": {
  13597. "type": "list<double>",
  13598. "value": [
  13599. 117.14309620090773,
  13600. 39.046443503803374
  13601. ]
  13602. },
  13603. "orientation": {
  13604. "type": "double",
  13605. "value": 0
  13606. },
  13607. "scale": {
  13608. "type": "list<double>",
  13609. "value": [
  13610. 1,
  13611. 1
  13612. ]
  13613. },
  13614. "link-style": {
  13615. "type": "map<string,string>",
  13616. "value": {
  13617. "stroke": "#00ffff",
  13618. "stroke-dasharray": "",
  13619. "stroke-opacity": 0.1,
  13620. "stroke-width": 1
  13621. }
  13622. }
  13623. },
  13624. "305": {
  13625. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13626. "position": {
  13627. "type": "list<double>",
  13628. "value": [
  13629. 112,
  13630. 39
  13631. ]
  13632. },
  13633. "orientation": {
  13634. "type": "double",
  13635. "value": 0
  13636. },
  13637. "scale": {
  13638. "type": "list<double>",
  13639. "value": [
  13640. 1,
  13641. 1
  13642. ]
  13643. },
  13644. "link-style": {
  13645. "type": "map<string,string>",
  13646. "value": {
  13647. "stroke": "#00ffff",
  13648. "stroke-dasharray": "",
  13649. "stroke-opacity": 0.1,
  13650. "stroke-width": 1
  13651. }
  13652. }
  13653. },
  13654. "306": {
  13655. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13656. "position": {
  13657. "type": "list<double>",
  13658. "value": [
  13659. 114.64294868314005,
  13660. 39.04743588588505
  13661. ]
  13662. },
  13663. "orientation": {
  13664. "type": "double",
  13665. "value": 0
  13666. },
  13667. "scale": {
  13668. "type": "list<double>",
  13669. "value": [
  13670. 1,
  13671. 1
  13672. ]
  13673. },
  13674. "link-style": {
  13675. "type": "map<string,string>",
  13676. "value": {
  13677. "stroke": "#00ffff",
  13678. "stroke-dasharray": "",
  13679. "stroke-opacity": 0.1,
  13680. "stroke-width": 1
  13681. }
  13682. }
  13683. },
  13684. "307": {
  13685. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13686. "position": {
  13687. "type": "list<double>",
  13688. "value": [
  13689. 112,
  13690. 39
  13691. ]
  13692. },
  13693. "orientation": {
  13694. "type": "double",
  13695. "value": 0
  13696. },
  13697. "scale": {
  13698. "type": "list<double>",
  13699. "value": [
  13700. 1,
  13701. 1
  13702. ]
  13703. },
  13704. "link-style": {
  13705. "type": "map<string,string>",
  13706. "value": {
  13707. "stroke": "#00ffff",
  13708. "stroke-dasharray": "",
  13709. "stroke-opacity": 0.1,
  13710. "stroke-width": 1
  13711. }
  13712. }
  13713. },
  13714. "308": {
  13715. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13716. "position": {
  13717. "type": "list<double>",
  13718. "value": [
  13719. 112,
  13720. 39
  13721. ]
  13722. },
  13723. "orientation": {
  13724. "type": "double",
  13725. "value": 0
  13726. },
  13727. "scale": {
  13728. "type": "list<double>",
  13729. "value": [
  13730. 1,
  13731. 1
  13732. ]
  13733. },
  13734. "link-style": {
  13735. "type": "map<string,string>",
  13736. "value": {
  13737. "stroke": "#00ffff",
  13738. "stroke-dasharray": "",
  13739. "stroke-opacity": 0.1,
  13740. "stroke-width": 1
  13741. }
  13742. }
  13743. },
  13744. "309": {
  13745. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13746. "position": {
  13747. "type": "list<double>",
  13748. "value": [
  13749. 117.14309620090773,
  13750. 39.046443503803374
  13751. ]
  13752. },
  13753. "orientation": {
  13754. "type": "double",
  13755. "value": 0
  13756. },
  13757. "scale": {
  13758. "type": "list<double>",
  13759. "value": [
  13760. 1,
  13761. 1
  13762. ]
  13763. },
  13764. "link-style": {
  13765. "type": "map<string,string>",
  13766. "value": {
  13767. "stroke": "#00ffff",
  13768. "stroke-dasharray": "",
  13769. "stroke-opacity": 0.1,
  13770. "stroke-width": 1
  13771. }
  13772. }
  13773. },
  13774. "310": {
  13775. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13776. "position": {
  13777. "type": "list<double>",
  13778. "value": [
  13779. 112,
  13780. 39
  13781. ]
  13782. },
  13783. "orientation": {
  13784. "type": "double",
  13785. "value": 0
  13786. },
  13787. "scale": {
  13788. "type": "list<double>",
  13789. "value": [
  13790. 1,
  13791. 1
  13792. ]
  13793. },
  13794. "link-style": {
  13795. "type": "map<string,string>",
  13796. "value": {
  13797. "stroke": "#00ffff",
  13798. "stroke-dasharray": "",
  13799. "stroke-opacity": 0.1,
  13800. "stroke-width": 1
  13801. }
  13802. }
  13803. },
  13804. "311": {
  13805. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13806. "position": {
  13807. "type": "list<double>",
  13808. "value": [
  13809. 114.64294868314005,
  13810. 39.04743588588505
  13811. ]
  13812. },
  13813. "orientation": {
  13814. "type": "double",
  13815. "value": 0
  13816. },
  13817. "scale": {
  13818. "type": "list<double>",
  13819. "value": [
  13820. 1,
  13821. 1
  13822. ]
  13823. },
  13824. "link-style": {
  13825. "type": "map<string,string>",
  13826. "value": {
  13827. "stroke": "#00ffff",
  13828. "stroke-dasharray": "",
  13829. "stroke-opacity": 0.1,
  13830. "stroke-width": 1
  13831. }
  13832. }
  13833. },
  13834. "312": {
  13835. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13836. "position": {
  13837. "type": "list<double>",
  13838. "value": [
  13839. 117.14309620090773,
  13840. 39.046443503803374
  13841. ]
  13842. },
  13843. "orientation": {
  13844. "type": "double",
  13845. "value": 0
  13846. },
  13847. "scale": {
  13848. "type": "list<double>",
  13849. "value": [
  13850. 1,
  13851. 1
  13852. ]
  13853. },
  13854. "link-style": {
  13855. "type": "map<string,string>",
  13856. "value": {
  13857. "stroke": "#00ffff",
  13858. "stroke-dasharray": "",
  13859. "stroke-opacity": 0.1,
  13860. "stroke-width": 1
  13861. }
  13862. }
  13863. },
  13864. "313": {
  13865. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13866. "position": {
  13867. "type": "list<double>",
  13868. "value": [
  13869. 114.64294868314005,
  13870. 39.04743588588505
  13871. ]
  13872. },
  13873. "orientation": {
  13874. "type": "double",
  13875. "value": 0
  13876. },
  13877. "scale": {
  13878. "type": "list<double>",
  13879. "value": [
  13880. 1,
  13881. 1
  13882. ]
  13883. },
  13884. "link-style": {
  13885. "type": "map<string,string>",
  13886. "value": {
  13887. "stroke": "#00ffff",
  13888. "stroke-dasharray": "",
  13889. "stroke-opacity": 0.1,
  13890. "stroke-width": 1
  13891. }
  13892. }
  13893. },
  13894. "314": {
  13895. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13896. "position": {
  13897. "type": "list<double>",
  13898. "value": [
  13899. 114.64294868314005,
  13900. 39.04743588588505
  13901. ]
  13902. },
  13903. "orientation": {
  13904. "type": "double",
  13905. "value": 0
  13906. },
  13907. "scale": {
  13908. "type": "list<double>",
  13909. "value": [
  13910. 1,
  13911. 1
  13912. ]
  13913. },
  13914. "link-style": {
  13915. "type": "map<string,string>",
  13916. "value": {
  13917. "stroke": "#00ffff",
  13918. "stroke-dasharray": "",
  13919. "stroke-opacity": 0.1,
  13920. "stroke-width": 1
  13921. }
  13922. }
  13923. },
  13924. "315": {
  13925. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13926. "position": {
  13927. "type": "list<double>",
  13928. "value": [
  13929. 23.5,
  13930. 39
  13931. ]
  13932. },
  13933. "orientation": {
  13934. "type": "double",
  13935. "value": 0
  13936. },
  13937. "scale": {
  13938. "type": "list<double>",
  13939. "value": [
  13940. 1,
  13941. 1
  13942. ]
  13943. },
  13944. "link-style": {
  13945. "type": "map<string,string>",
  13946. "value": {
  13947. "stroke": "#00ffff",
  13948. "stroke-dasharray": "",
  13949. "stroke-opacity": 0.1,
  13950. "stroke-width": 1
  13951. }
  13952. }
  13953. },
  13954. "316": {
  13955. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13956. "position": {
  13957. "type": "list<double>",
  13958. "value": [
  13959. 25.578488230596065,
  13960. 39.129069534757946
  13961. ]
  13962. },
  13963. "orientation": {
  13964. "type": "double",
  13965. "value": 0
  13966. },
  13967. "scale": {
  13968. "type": "list<double>",
  13969. "value": [
  13970. 1,
  13971. 1
  13972. ]
  13973. },
  13974. "link-style": {
  13975. "type": "map<string,string>",
  13976. "value": {
  13977. "stroke": "#00ffff",
  13978. "stroke-dasharray": "",
  13979. "stroke-opacity": 0.1,
  13980. "stroke-width": 1
  13981. }
  13982. }
  13983. },
  13984. "317": {
  13985. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  13986. "position": {
  13987. "type": "list<double>",
  13988. "value": [
  13989. 23.5,
  13990. 39
  13991. ]
  13992. },
  13993. "orientation": {
  13994. "type": "double",
  13995. "value": 0
  13996. },
  13997. "scale": {
  13998. "type": "list<double>",
  13999. "value": [
  14000. 1,
  14001. 1
  14002. ]
  14003. },
  14004. "link-style": {
  14005. "type": "map<string,string>",
  14006. "value": {
  14007. "stroke": "#00ffff",
  14008. "stroke-dasharray": "",
  14009. "stroke-opacity": 0.1,
  14010. "stroke-width": 1
  14011. }
  14012. }
  14013. },
  14014. "318": {
  14015. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14016. "position": {
  14017. "type": "list<double>",
  14018. "value": [
  14019. 23.5,
  14020. 39
  14021. ]
  14022. },
  14023. "orientation": {
  14024. "type": "double",
  14025. "value": 0
  14026. },
  14027. "scale": {
  14028. "type": "list<double>",
  14029. "value": [
  14030. 1,
  14031. 1
  14032. ]
  14033. },
  14034. "link-style": {
  14035. "type": "map<string,string>",
  14036. "value": {
  14037. "stroke": "#00ffff",
  14038. "stroke-dasharray": "",
  14039. "stroke-opacity": 0.1,
  14040. "stroke-width": 1
  14041. }
  14042. }
  14043. },
  14044. "319": {
  14045. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14046. "position": {
  14047. "type": "list<double>",
  14048. "value": [
  14049. 33.596315647178926,
  14050. 39.11684193264324
  14051. ]
  14052. },
  14053. "orientation": {
  14054. "type": "double",
  14055. "value": 0
  14056. },
  14057. "scale": {
  14058. "type": "list<double>",
  14059. "value": [
  14060. 1,
  14061. 1
  14062. ]
  14063. },
  14064. "link-style": {
  14065. "type": "map<string,string>",
  14066. "value": {
  14067. "stroke": "#00ffff",
  14068. "stroke-dasharray": "",
  14069. "stroke-opacity": 0.1,
  14070. "stroke-width": 1
  14071. }
  14072. }
  14073. },
  14074. "320": {
  14075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14076. "position": {
  14077. "type": "list<double>",
  14078. "value": [
  14079. 25.578488230596065,
  14080. 39.129069534757946
  14081. ]
  14082. },
  14083. "orientation": {
  14084. "type": "double",
  14085. "value": 0
  14086. },
  14087. "scale": {
  14088. "type": "list<double>",
  14089. "value": [
  14090. 1,
  14091. 1
  14092. ]
  14093. },
  14094. "link-style": {
  14095. "type": "map<string,string>",
  14096. "value": {
  14097. "stroke": "#00ffff",
  14098. "stroke-dasharray": "",
  14099. "stroke-opacity": 0.1,
  14100. "stroke-width": 1
  14101. }
  14102. }
  14103. },
  14104. "321": {
  14105. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14106. "position": {
  14107. "type": "list<double>",
  14108. "value": [
  14109. 33.596315647178926,
  14110. 39.11684193264324
  14111. ]
  14112. },
  14113. "orientation": {
  14114. "type": "double",
  14115. "value": 0
  14116. },
  14117. "scale": {
  14118. "type": "list<double>",
  14119. "value": [
  14120. 1,
  14121. 1
  14122. ]
  14123. },
  14124. "link-style": {
  14125. "type": "map<string,string>",
  14126. "value": {
  14127. "stroke": "#00ffff",
  14128. "stroke-dasharray": "",
  14129. "stroke-opacity": 0.1,
  14130. "stroke-width": 1
  14131. }
  14132. }
  14133. },
  14134. "322": {
  14135. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14136. "position": {
  14137. "type": "list<double>",
  14138. "value": [
  14139. 33.596315647178926,
  14140. 39.11684193264324
  14141. ]
  14142. },
  14143. "orientation": {
  14144. "type": "double",
  14145. "value": 0
  14146. },
  14147. "scale": {
  14148. "type": "list<double>",
  14149. "value": [
  14150. 1,
  14151. 1
  14152. ]
  14153. },
  14154. "link-style": {
  14155. "type": "map<string,string>",
  14156. "value": {
  14157. "stroke": "#00ffff",
  14158. "stroke-dasharray": "",
  14159. "stroke-opacity": 0.1,
  14160. "stroke-width": 1
  14161. }
  14162. }
  14163. },
  14164. "323": {
  14165. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14166. "position": {
  14167. "type": "list<double>",
  14168. "value": [
  14169. 21,
  14170. 39
  14171. ]
  14172. },
  14173. "orientation": {
  14174. "type": "double",
  14175. "value": 0
  14176. },
  14177. "scale": {
  14178. "type": "list<double>",
  14179. "value": [
  14180. 1,
  14181. 1
  14182. ]
  14183. },
  14184. "link-style": {
  14185. "type": "map<string,string>",
  14186. "value": {
  14187. "stroke": "#00ffff",
  14188. "stroke-dasharray": "",
  14189. "stroke-opacity": 0.1,
  14190. "stroke-width": 1
  14191. }
  14192. }
  14193. },
  14194. "324": {
  14195. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14196. "position": {
  14197. "type": "list<double>",
  14198. "value": [
  14199. 21,
  14200. 39
  14201. ]
  14202. },
  14203. "orientation": {
  14204. "type": "double",
  14205. "value": 0
  14206. },
  14207. "scale": {
  14208. "type": "list<double>",
  14209. "value": [
  14210. 1,
  14211. 1
  14212. ]
  14213. },
  14214. "link-style": {
  14215. "type": "map<string,string>",
  14216. "value": {
  14217. "stroke": "#00ffff",
  14218. "stroke-dasharray": "",
  14219. "stroke-opacity": 0.1,
  14220. "stroke-width": 1
  14221. }
  14222. }
  14223. },
  14224. "325": {
  14225. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14226. "position": {
  14227. "type": "list<double>",
  14228. "value": [
  14229. 23.5,
  14230. 39
  14231. ]
  14232. },
  14233. "orientation": {
  14234. "type": "double",
  14235. "value": 0
  14236. },
  14237. "scale": {
  14238. "type": "list<double>",
  14239. "value": [
  14240. 1,
  14241. 1
  14242. ]
  14243. },
  14244. "link-style": {
  14245. "type": "map<string,string>",
  14246. "value": {
  14247. "stroke": "#00ffff",
  14248. "stroke-dasharray": "",
  14249. "stroke-opacity": 0.1,
  14250. "stroke-width": 1
  14251. }
  14252. }
  14253. },
  14254. "326": {
  14255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14256. "position": {
  14257. "type": "list<double>",
  14258. "value": [
  14259. 33.596315647178926,
  14260. 39.11684193264324
  14261. ]
  14262. },
  14263. "orientation": {
  14264. "type": "double",
  14265. "value": 0
  14266. },
  14267. "scale": {
  14268. "type": "list<double>",
  14269. "value": [
  14270. 1,
  14271. 1
  14272. ]
  14273. },
  14274. "link-style": {
  14275. "type": "map<string,string>",
  14276. "value": {
  14277. "stroke": "#00ffff",
  14278. "stroke-dasharray": "",
  14279. "stroke-opacity": 0.1,
  14280. "stroke-width": 1
  14281. }
  14282. }
  14283. },
  14284. "327": {
  14285. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14286. "position": {
  14287. "type": "list<double>",
  14288. "value": [
  14289. 25.578488230596065,
  14290. 39.129069534757946
  14291. ]
  14292. },
  14293. "orientation": {
  14294. "type": "double",
  14295. "value": 0
  14296. },
  14297. "scale": {
  14298. "type": "list<double>",
  14299. "value": [
  14300. 1,
  14301. 1
  14302. ]
  14303. },
  14304. "link-style": {
  14305. "type": "map<string,string>",
  14306. "value": {
  14307. "stroke": "#00ffff",
  14308. "stroke-dasharray": "",
  14309. "stroke-opacity": 0.1,
  14310. "stroke-width": 1
  14311. }
  14312. }
  14313. },
  14314. "328": {
  14315. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14316. "position": {
  14317. "type": "list<double>",
  14318. "value": [
  14319. 28.08426952107112,
  14320. 39.124718891185296
  14321. ]
  14322. },
  14323. "orientation": {
  14324. "type": "double",
  14325. "value": 0
  14326. },
  14327. "scale": {
  14328. "type": "list<double>",
  14329. "value": [
  14330. 1,
  14331. 1
  14332. ]
  14333. },
  14334. "link-style": {
  14335. "type": "map<string,string>",
  14336. "value": {
  14337. "stroke": "#00ffff",
  14338. "stroke-dasharray": "",
  14339. "stroke-opacity": 0.1,
  14340. "stroke-width": 1
  14341. }
  14342. }
  14343. },
  14344. "329": {
  14345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14346. "position": {
  14347. "type": "list<double>",
  14348. "value": [
  14349. 25.578488230596065,
  14350. 39.129069534757946
  14351. ]
  14352. },
  14353. "orientation": {
  14354. "type": "double",
  14355. "value": 0
  14356. },
  14357. "scale": {
  14358. "type": "list<double>",
  14359. "value": [
  14360. 1,
  14361. 1
  14362. ]
  14363. },
  14364. "link-style": {
  14365. "type": "map<string,string>",
  14366. "value": {
  14367. "stroke": "#00ffff",
  14368. "stroke-dasharray": "",
  14369. "stroke-opacity": 0.1,
  14370. "stroke-width": 1
  14371. }
  14372. }
  14373. },
  14374. "330": {
  14375. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  14376. "position": {
  14377. "type": "list<double>",
  14378. "value": [
  14379. 28.08426952107112,
  14380. 39.124718891185296
  14381. ]
  14382. },
  14383. "orientation": {
  14384. "type": "double",
  14385. "value": 0
  14386. },
  14387. "scale": {
  14388. "type": "list<double>",
  14389. "value": [
  14390. 1,
  14391. 1
  14392. ]
  14393. },
  14394. "link-style": {
  14395. "type": "map<string,string>",
  14396. "value": {
  14397. "stroke": "#00ffff",
  14398. "stroke-dasharray": "",
  14399. "stroke-opacity": 0.1,
  14400. "stroke-width": 1
  14401. }
  14402. }
  14403. }
  14404. },
  14405. "edges": [
  14406. {
  14407. "src": "92",
  14408. "dest": "122"
  14409. },
  14410. {
  14411. "src": "122",
  14412. "dest": "100"
  14413. },
  14414. {
  14415. "src": "100",
  14416. "dest": "195"
  14417. },
  14418. {
  14419. "src": "195",
  14420. "dest": "162"
  14421. },
  14422. {
  14423. "src": "100",
  14424. "dest": "299"
  14425. },
  14426. {
  14427. "src": "299",
  14428. "dest": "267"
  14429. },
  14430. {
  14431. "src": "100",
  14432. "dest": "300"
  14433. },
  14434. {
  14435. "src": "300",
  14436. "dest": "268"
  14437. },
  14438. {
  14439. "src": "100",
  14440. "dest": "301"
  14441. },
  14442. {
  14443. "src": "301",
  14444. "dest": "269"
  14445. },
  14446. {
  14447. "src": "100",
  14448. "dest": "302"
  14449. },
  14450. {
  14451. "src": "302",
  14452. "dest": "270"
  14453. },
  14454. {
  14455. "src": "100",
  14456. "dest": "303"
  14457. },
  14458. {
  14459. "src": "303",
  14460. "dest": "271"
  14461. },
  14462. {
  14463. "src": "100",
  14464. "dest": "304"
  14465. },
  14466. {
  14467. "src": "304",
  14468. "dest": "272"
  14469. },
  14470. {
  14471. "src": "100",
  14472. "dest": "305"
  14473. },
  14474. {
  14475. "src": "305",
  14476. "dest": "273"
  14477. },
  14478. {
  14479. "src": "100",
  14480. "dest": "306"
  14481. },
  14482. {
  14483. "src": "306",
  14484. "dest": "274"
  14485. },
  14486. {
  14487. "src": "100",
  14488. "dest": "307"
  14489. },
  14490. {
  14491. "src": "307",
  14492. "dest": "275"
  14493. },
  14494. {
  14495. "src": "100",
  14496. "dest": "308"
  14497. },
  14498. {
  14499. "src": "308",
  14500. "dest": "276"
  14501. },
  14502. {
  14503. "src": "100",
  14504. "dest": "309"
  14505. },
  14506. {
  14507. "src": "309",
  14508. "dest": "277"
  14509. },
  14510. {
  14511. "src": "100",
  14512. "dest": "310"
  14513. },
  14514. {
  14515. "src": "310",
  14516. "dest": "278"
  14517. },
  14518. {
  14519. "src": "100",
  14520. "dest": "311"
  14521. },
  14522. {
  14523. "src": "311",
  14524. "dest": "279"
  14525. },
  14526. {
  14527. "src": "100",
  14528. "dest": "312"
  14529. },
  14530. {
  14531. "src": "312",
  14532. "dest": "280"
  14533. },
  14534. {
  14535. "src": "100",
  14536. "dest": "313"
  14537. },
  14538. {
  14539. "src": "313",
  14540. "dest": "281"
  14541. },
  14542. {
  14543. "src": "100",
  14544. "dest": "314"
  14545. },
  14546. {
  14547. "src": "314",
  14548. "dest": "282"
  14549. },
  14550. {
  14551. "src": "100",
  14552. "dest": "315"
  14553. },
  14554. {
  14555. "src": "315",
  14556. "dest": "283"
  14557. },
  14558. {
  14559. "src": "100",
  14560. "dest": "316"
  14561. },
  14562. {
  14563. "src": "316",
  14564. "dest": "284"
  14565. },
  14566. {
  14567. "src": "100",
  14568. "dest": "317"
  14569. },
  14570. {
  14571. "src": "317",
  14572. "dest": "285"
  14573. },
  14574. {
  14575. "src": "100",
  14576. "dest": "318"
  14577. },
  14578. {
  14579. "src": "318",
  14580. "dest": "286"
  14581. },
  14582. {
  14583. "src": "100",
  14584. "dest": "319"
  14585. },
  14586. {
  14587. "src": "319",
  14588. "dest": "287"
  14589. },
  14590. {
  14591. "src": "100",
  14592. "dest": "320"
  14593. },
  14594. {
  14595. "src": "320",
  14596. "dest": "288"
  14597. },
  14598. {
  14599. "src": "100",
  14600. "dest": "321"
  14601. },
  14602. {
  14603. "src": "321",
  14604. "dest": "289"
  14605. },
  14606. {
  14607. "src": "100",
  14608. "dest": "322"
  14609. },
  14610. {
  14611. "src": "322",
  14612. "dest": "290"
  14613. },
  14614. {
  14615. "src": "100",
  14616. "dest": "323"
  14617. },
  14618. {
  14619. "src": "323",
  14620. "dest": "291"
  14621. },
  14622. {
  14623. "src": "100",
  14624. "dest": "324"
  14625. },
  14626. {
  14627. "src": "324",
  14628. "dest": "292"
  14629. },
  14630. {
  14631. "src": "100",
  14632. "dest": "325"
  14633. },
  14634. {
  14635. "src": "325",
  14636. "dest": "293"
  14637. },
  14638. {
  14639. "src": "100",
  14640. "dest": "326"
  14641. },
  14642. {
  14643. "src": "326",
  14644. "dest": "294"
  14645. },
  14646. {
  14647. "src": "100",
  14648. "dest": "327"
  14649. },
  14650. {
  14651. "src": "327",
  14652. "dest": "295"
  14653. },
  14654. {
  14655. "src": "100",
  14656. "dest": "328"
  14657. },
  14658. {
  14659. "src": "328",
  14660. "dest": "296"
  14661. },
  14662. {
  14663. "src": "100",
  14664. "dest": "329"
  14665. },
  14666. {
  14667. "src": "329",
  14668. "dest": "297"
  14669. },
  14670. {
  14671. "src": "100",
  14672. "dest": "330"
  14673. },
  14674. {
  14675. "src": "330",
  14676. "dest": "298"
  14677. }
  14678. ]
  14679. }
  14680. },
  14681. "$asuri": {
  14682. "type": "string",
  14683. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/87.instance"
  14684. },
  14685. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  14686. },
  14687. "90": {
  14688. "link-style": {
  14689. "type": "map<string,string>",
  14690. "value": {
  14691. "stroke": "#ff00ff",
  14692. "stroke-dasharray": "",
  14693. "stroke-opacity": 0.1,
  14694. "stroke-width": 1
  14695. }
  14696. },
  14697. "arrowHead": {
  14698. "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)",
  14699. "value": "custom"
  14700. },
  14701. "arrowTail": {
  14702. "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)",
  14703. "value": "arrow-black"
  14704. },
  14705. "typename": {
  14706. "type": "string",
  14707. "value": "IconContentsLink"
  14708. },
  14709. "position": {
  14710. "type": "list<double>",
  14711. "value": [
  14712. 314.1241628717686,
  14713. 212.82573466513008
  14714. ]
  14715. },
  14716. "orientation": {
  14717. "type": "double",
  14718. "value": 0
  14719. },
  14720. "scale": {
  14721. "type": "list<double>",
  14722. "value": [
  14723. 1,
  14724. 1
  14725. ]
  14726. },
  14727. "mapper": {
  14728. "type": "code",
  14729. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  14730. },
  14731. "parser": {
  14732. "type": "code",
  14733. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14734. },
  14735. "$contents": {
  14736. "type": "map<string,*>",
  14737. "value": {
  14738. "nodes": {},
  14739. "edges": []
  14740. }
  14741. },
  14742. "$asuri": {
  14743. "type": "string",
  14744. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/90.instance"
  14745. },
  14746. "$segments": {
  14747. "type": "map<string,list<string>>",
  14748. "value": {
  14749. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/71.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/90.instance": "M300.00000000000006,200.15620000000004L314.1241628717686,212.8257346651301",
  14750. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/90.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/StarIcon/56.instance": "M314.06705723025703,212.77451025549445L328.02051666496027,225.29092199695177"
  14751. }
  14752. },
  14753. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  14754. },
  14755. "91": {
  14756. "link-style": {
  14757. "type": "map<string,string>",
  14758. "value": {
  14759. "stroke": "#ff00ff",
  14760. "stroke-dasharray": "",
  14761. "stroke-opacity": 0.1,
  14762. "stroke-width": 1
  14763. }
  14764. },
  14765. "arrowHead": {
  14766. "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)",
  14767. "value": "custom"
  14768. },
  14769. "arrowTail": {
  14770. "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)",
  14771. "value": "arrow-black"
  14772. },
  14773. "typename": {
  14774. "type": "string",
  14775. "value": "IconContentsLink"
  14776. },
  14777. "position": {
  14778. "type": "list<double>",
  14779. "value": [
  14780. 551.5,
  14781. 245.2847
  14782. ]
  14783. },
  14784. "orientation": {
  14785. "type": "double",
  14786. "value": 0
  14787. },
  14788. "scale": {
  14789. "type": "list<double>",
  14790. "value": [
  14791. 1,
  14792. 1
  14793. ]
  14794. },
  14795. "mapper": {
  14796. "type": "code",
  14797. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  14798. },
  14799. "parser": {
  14800. "type": "code",
  14801. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14802. },
  14803. "$contents": {
  14804. "type": "map<string,*>",
  14805. "value": {
  14806. "nodes": {},
  14807. "edges": []
  14808. }
  14809. },
  14810. "$asuri": {
  14811. "type": "string",
  14812. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/91.instance"
  14813. },
  14814. "$segments": {
  14815. "type": "map<string,list<string>>",
  14816. "value": {
  14817. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/91.instance": "M525,200.00000000000003L551.5,245.28470000000002",
  14818. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/91.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon/44.instance": "M551.5381476399159,245.34988884638855L570.9998530897958,285.56914895152727"
  14819. }
  14820. },
  14821. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  14822. }
  14823. },
  14824. "edges": [],
  14825. "metamodels": [
  14826. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons"
  14827. ]
  14828. },
  14829. "asm": {
  14830. "nodes": {
  14831. "0": {
  14832. "typename": {
  14833. "type": "string",
  14834. "value": "VisualisationIcon"
  14835. },
  14836. "position": {
  14837. "type": "list<double>",
  14838. "value": [
  14839. 525,
  14840. 200
  14841. ]
  14842. },
  14843. "orientation": {
  14844. "type": "double",
  14845. "value": 0
  14846. },
  14847. "scale": {
  14848. "type": "list<double>",
  14849. "value": [
  14850. 1,
  14851. 1.3233532934131738
  14852. ]
  14853. },
  14854. "mapper": {
  14855. "type": "code",
  14856. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  14857. },
  14858. "parser": {
  14859. "type": "code",
  14860. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14861. },
  14862. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  14863. },
  14864. "3": {
  14865. "typename": {
  14866. "type": "string",
  14867. "value": "InterruptIcon"
  14868. },
  14869. "position": {
  14870. "type": "list<double>",
  14871. "value": [
  14872. 750,
  14873. 200
  14874. ]
  14875. },
  14876. "orientation": {
  14877. "type": "double",
  14878. "value": 0
  14879. },
  14880. "scale": {
  14881. "type": "list<double>",
  14882. "value": [
  14883. 1,
  14884. 1
  14885. ]
  14886. },
  14887. "mapper": {
  14888. "type": "code",
  14889. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  14890. },
  14891. "parser": {
  14892. "type": "code",
  14893. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14894. },
  14895. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  14896. },
  14897. "4": {
  14898. "typename": {
  14899. "type": "string",
  14900. "value": "TimeIcon"
  14901. },
  14902. "position": {
  14903. "type": "list<double>",
  14904. "value": [
  14905. 1200,
  14906. 200
  14907. ]
  14908. },
  14909. "orientation": {
  14910. "type": "double",
  14911. "value": 0
  14912. },
  14913. "scale": {
  14914. "type": "list<double>",
  14915. "value": [
  14916. 1,
  14917. 1
  14918. ]
  14919. },
  14920. "mapper": {
  14921. "type": "code",
  14922. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  14923. },
  14924. "parser": {
  14925. "type": "code",
  14926. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14927. },
  14928. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  14929. },
  14930. "5": {
  14931. "link-style": {
  14932. "type": "map<string,string>",
  14933. "value": {
  14934. "stroke": "#000000",
  14935. "stroke-dasharray": "",
  14936. "stroke-opacity": 1,
  14937. "stroke-width": 2
  14938. }
  14939. },
  14940. "arrowHead": {
  14941. "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)",
  14942. "value": "custom"
  14943. },
  14944. "arrowTail": {
  14945. "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)",
  14946. "value": "arrow-black"
  14947. },
  14948. "typename": {
  14949. "type": "string",
  14950. "value": "TimedTransitionLink"
  14951. },
  14952. "position": {
  14953. "type": "list<double>",
  14954. "value": [
  14955. 846,
  14956. 448
  14957. ]
  14958. },
  14959. "orientation": {
  14960. "type": "double",
  14961. "value": 0
  14962. },
  14963. "scale": {
  14964. "type": "list<double>",
  14965. "value": [
  14966. 1,
  14967. 1
  14968. ]
  14969. },
  14970. "mapper": {
  14971. "type": "code",
  14972. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  14973. },
  14974. "parser": {
  14975. "type": "code",
  14976. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14977. },
  14978. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  14979. },
  14980. "6": {
  14981. "link-style": {
  14982. "type": "map<string,string>",
  14983. "value": {
  14984. "stroke": "#00ff00",
  14985. "stroke-dasharray": "",
  14986. "stroke-opacity": 1,
  14987. "stroke-width": 2
  14988. }
  14989. },
  14990. "arrowHead": {
  14991. "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)",
  14992. "value": "custom"
  14993. },
  14994. "arrowTail": {
  14995. "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)",
  14996. "value": "arrow-black"
  14997. },
  14998. "typename": {
  14999. "type": "string",
  15000. "value": "InterruptTransitionLink"
  15001. },
  15002. "position": {
  15003. "type": "list<double>",
  15004. "value": [
  15005. 571,
  15006. 448
  15007. ]
  15008. },
  15009. "orientation": {
  15010. "type": "double",
  15011. "value": 0
  15012. },
  15013. "scale": {
  15014. "type": "list<double>",
  15015. "value": [
  15016. 1,
  15017. 1
  15018. ]
  15019. },
  15020. "mapper": {
  15021. "type": "code",
  15022. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  15023. },
  15024. "parser": {
  15025. "type": "code",
  15026. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15027. },
  15028. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  15029. },
  15030. "7": {
  15031. "link-style": {
  15032. "type": "map<string,string>",
  15033. "value": {
  15034. "stroke": "#000000",
  15035. "stroke-dasharray": "",
  15036. "stroke-opacity": 1,
  15037. "stroke-width": 2
  15038. }
  15039. },
  15040. "arrowHead": {
  15041. "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)",
  15042. "value": "custom"
  15043. },
  15044. "arrowTail": {
  15045. "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)",
  15046. "value": "arrow-black"
  15047. },
  15048. "typename": {
  15049. "type": "string",
  15050. "value": "NextLink"
  15051. },
  15052. "position": {
  15053. "type": "list<double>",
  15054. "value": [
  15055. 1121,
  15056. 448
  15057. ]
  15058. },
  15059. "orientation": {
  15060. "type": "double",
  15061. "value": 0
  15062. },
  15063. "scale": {
  15064. "type": "list<double>",
  15065. "value": [
  15066. 1,
  15067. 1
  15068. ]
  15069. },
  15070. "mapper": {
  15071. "type": "code",
  15072. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  15073. },
  15074. "parser": {
  15075. "type": "code",
  15076. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15077. },
  15078. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  15079. },
  15080. "9": {
  15081. "textContent": {
  15082. "type": "string",
  15083. "value": "T..."
  15084. },
  15085. "style": {
  15086. "type": "map<string,string>",
  15087. "value": {
  15088. "stroke": "#0000ff",
  15089. "stroke-dasharray": "",
  15090. "fill": "#0000ff",
  15091. "fill-opacity": 1,
  15092. "font-size": "20px",
  15093. "stroke-width": 0,
  15094. "arrow-start": "none",
  15095. "arrow-end": "none"
  15096. }
  15097. },
  15098. "mapper": {
  15099. "type": "code",
  15100. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent:getAttr(\"after\")+\" ms\"})"
  15101. },
  15102. "parser": {
  15103. "type": "code",
  15104. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15105. },
  15106. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  15107. },
  15108. "10": {
  15109. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15110. },
  15111. "11": {
  15112. "textContent": {
  15113. "type": "string",
  15114. "value": "T..."
  15115. },
  15116. "style": {
  15117. "type": "map<string,string>",
  15118. "value": {
  15119. "stroke": "#000000",
  15120. "stroke-dasharray": "",
  15121. "fill": "#000000",
  15122. "fill-opacity": 1,
  15123. "font-size": "20px",
  15124. "stroke-width": 0,
  15125. "arrow-start": "none",
  15126. "arrow-end": "none"
  15127. }
  15128. },
  15129. "mapper": {
  15130. "type": "code",
  15131. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent:getAttr(\"interrupt\")})"
  15132. },
  15133. "parser": {
  15134. "type": "code",
  15135. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15136. },
  15137. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  15138. },
  15139. "12": {
  15140. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15141. },
  15142. "27": {
  15143. "width": {
  15144. "type": "double",
  15145. "value": 100
  15146. },
  15147. "height": {
  15148. "type": "double",
  15149. "value": 69
  15150. },
  15151. "cornerRadius": {
  15152. "type": "double",
  15153. "value": 1
  15154. },
  15155. "style": {
  15156. "type": "map<string,string>",
  15157. "value": {
  15158. "stroke": "#000000",
  15159. "stroke-dasharray": "",
  15160. "fill": "#99ff99",
  15161. "fill-opacity": 0.5,
  15162. "font-size": "20px",
  15163. "stroke-width": 1,
  15164. "arrow-start": "none",
  15165. "arrow-end": "none"
  15166. }
  15167. },
  15168. "mapper": {
  15169. "type": "code",
  15170. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nif (getAttr(\"current\")) {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#99ff99\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n}});\n}\nelse {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#99ff99\",\n \"fill-opacity\": 0.5,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n}});\n}"
  15171. },
  15172. "parser": {
  15173. "type": "code",
  15174. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15175. },
  15176. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  15177. },
  15178. "29": {
  15179. "textContent": {
  15180. "type": "string",
  15181. "value": "T..."
  15182. },
  15183. "style": {
  15184. "type": "map<string,string>",
  15185. "value": {
  15186. "stroke": "#000000",
  15187. "stroke-dasharray": "",
  15188. "fill": "#0000ff",
  15189. "fill-opacity": 1,
  15190. "font-size": "15px",
  15191. "stroke-width": 0,
  15192. "arrow-start": "none",
  15193. "arrow-end": "none"
  15194. }
  15195. },
  15196. "mapper": {
  15197. "type": "code",
  15198. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent:getAttr(\"at\")+\" ms\"})"
  15199. },
  15200. "parser": {
  15201. "type": "code",
  15202. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15203. },
  15204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  15205. },
  15206. "30": {
  15207. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  15208. },
  15209. "31": {
  15210. "textContent": {
  15211. "type": "string",
  15212. "value": "T..."
  15213. },
  15214. "style": {
  15215. "type": "map<string,string>",
  15216. "value": {
  15217. "stroke": "#000000",
  15218. "stroke-dasharray": "",
  15219. "fill": "#000000",
  15220. "fill-opacity": 1,
  15221. "font-size": "15px",
  15222. "stroke-width": 0,
  15223. "arrow-start": "none",
  15224. "arrow-end": "none"
  15225. }
  15226. },
  15227. "mapper": {
  15228. "type": "code",
  15229. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent:getAttr(\"event\")})"
  15230. },
  15231. "parser": {
  15232. "type": "code",
  15233. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15234. },
  15235. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  15236. },
  15237. "32": {
  15238. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  15239. },
  15240. "33": {
  15241. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15242. },
  15243. "34": {
  15244. "rx": {
  15245. "type": "double",
  15246. "value": 50
  15247. },
  15248. "ry": {
  15249. "type": "double",
  15250. "value": 30
  15251. },
  15252. "style": {
  15253. "type": "map<string,string>",
  15254. "value": {
  15255. "stroke": "#000000",
  15256. "stroke-dasharray": "",
  15257. "fill": "#9999ff",
  15258. "fill-opacity": 0.75,
  15259. "font-size": "20px",
  15260. "stroke-width": 1,
  15261. "arrow-start": "none",
  15262. "arrow-end": "none"
  15263. }
  15264. },
  15265. "mapper": {
  15266. "type": "code",
  15267. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  15268. },
  15269. "parser": {
  15270. "type": "code",
  15271. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15272. },
  15273. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse"
  15274. },
  15275. "35": {
  15276. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15277. },
  15278. "36": {
  15279. "textContent": {
  15280. "type": "string",
  15281. "value": "T..."
  15282. },
  15283. "style": {
  15284. "type": "map<string,string>",
  15285. "value": {
  15286. "stroke": "#000000",
  15287. "stroke-dasharray": "",
  15288. "fill": "#000000",
  15289. "fill-opacity": 1,
  15290. "font-size": "20px",
  15291. "stroke-width": 0,
  15292. "arrow-start": "none",
  15293. "arrow-end": "none"
  15294. }
  15295. },
  15296. "mapper": {
  15297. "type": "code",
  15298. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent:getAttr(\"clock\")})"
  15299. },
  15300. "parser": {
  15301. "type": "code",
  15302. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15303. },
  15304. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  15305. },
  15306. "37": {
  15307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  15308. },
  15309. "38": {
  15310. "textContent": {
  15311. "type": "string",
  15312. "value": "Time"
  15313. },
  15314. "style": {
  15315. "type": "map<string,string>",
  15316. "value": {
  15317. "stroke": "#000000",
  15318. "stroke-dasharray": "",
  15319. "fill": "#ffffff",
  15320. "fill-opacity": 0.75,
  15321. "font-size": "20px",
  15322. "stroke-width": 1,
  15323. "arrow-start": "none",
  15324. "arrow-end": "none"
  15325. }
  15326. },
  15327. "mapper": {
  15328. "type": "code",
  15329. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  15330. },
  15331. "parser": {
  15332. "type": "code",
  15333. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15334. },
  15335. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  15336. },
  15337. "39": {
  15338. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15339. },
  15340. "44": {
  15341. "rx": {
  15342. "type": "double",
  15343. "value": 40
  15344. },
  15345. "ry": {
  15346. "type": "double",
  15347. "value": 80
  15348. },
  15349. "style": {
  15350. "type": "map<string,string>",
  15351. "value": {
  15352. "stroke": "#000000",
  15353. "stroke-dasharray": "",
  15354. "fill": "#ffffff",
  15355. "fill-opacity": 1,
  15356. "font-size": "20px",
  15357. "stroke-width": 1,
  15358. "arrow-start": "none",
  15359. "arrow-end": "none"
  15360. }
  15361. },
  15362. "mapper": {
  15363. "type": "code",
  15364. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n"
  15365. },
  15366. "parser": {
  15367. "type": "code",
  15368. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15369. },
  15370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse"
  15371. },
  15372. "49": {
  15373. "r": {
  15374. "type": "double",
  15375. "value": 20
  15376. },
  15377. "style": {
  15378. "type": "map<string,string>",
  15379. "value": {
  15380. "stroke": "#000000",
  15381. "stroke-dasharray": "",
  15382. "fill": "#ff0000",
  15383. "fill-opacity": 1,
  15384. "font-size": "20px",
  15385. "stroke-width": 3,
  15386. "arrow-start": "none",
  15387. "arrow-end": "none"
  15388. }
  15389. },
  15390. "mapper": {
  15391. "type": "code",
  15392. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nvar style = {\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#333333\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 3,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"};\nif (getAttr(\"red\")) {\n style[\"fill\"] = \"#ff0000\";\n}\n({'style':style})"
  15393. },
  15394. "parser": {
  15395. "type": "code",
  15396. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15397. },
  15398. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  15399. },
  15400. "50": {
  15401. "r": {
  15402. "type": "double",
  15403. "value": 20
  15404. },
  15405. "style": {
  15406. "type": "map<string,string>",
  15407. "value": {
  15408. "stroke": "#000000",
  15409. "stroke-dasharray": "",
  15410. "fill": "#00ff00",
  15411. "fill-opacity": 1,
  15412. "font-size": "20px",
  15413. "stroke-width": 3,
  15414. "arrow-start": "none",
  15415. "arrow-end": "none"
  15416. }
  15417. },
  15418. "mapper": {
  15419. "type": "code",
  15420. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nif (getAttr(\"green\")) {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#00ff00\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 3,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}\nelse {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#333333\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 3,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}"
  15421. },
  15422. "parser": {
  15423. "type": "code",
  15424. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15425. },
  15426. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  15427. },
  15428. "51": {
  15429. "r": {
  15430. "type": "double",
  15431. "value": 20
  15432. },
  15433. "style": {
  15434. "type": "map<string,string>",
  15435. "value": {
  15436. "stroke": "#000000",
  15437. "stroke-dasharray": "",
  15438. "fill": "#ffff00",
  15439. "fill-opacity": 1,
  15440. "font-size": "20px",
  15441. "stroke-width": 3,
  15442. "arrow-start": "none",
  15443. "arrow-end": "none"
  15444. }
  15445. },
  15446. "mapper": {
  15447. "type": "code",
  15448. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nif (getAttr(\"yellow\")) {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffff00\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 3,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}\nelse {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#333333\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 3,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}"
  15449. },
  15450. "parser": {
  15451. "type": "code",
  15452. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15453. },
  15454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  15455. },
  15456. "52": {
  15457. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  15458. },
  15459. "53": {
  15460. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  15461. },
  15462. "54": {
  15463. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  15464. },
  15465. "56": {
  15466. "r": {
  15467. "type": "double",
  15468. "value": 20
  15469. },
  15470. "rays": {
  15471. "type": "int",
  15472. "value": 5
  15473. },
  15474. "style": {
  15475. "type": "map<string,string>",
  15476. "value": {
  15477. "stroke": "#000000",
  15478. "stroke-dasharray": "",
  15479. "fill": "#ffff00",
  15480. "fill-opacity": 0,
  15481. "font-size": "20px",
  15482. "stroke-width": 0,
  15483. "arrow-start": "none",
  15484. "arrow-end": "none"
  15485. }
  15486. },
  15487. "mapper": {
  15488. "type": "code",
  15489. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nif (getAttr(\"initial\")) {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffff00\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"stroke-width\": 0,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}\nelse {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffff00\",\n \"fill-opacity\": 0,\n \"font-size\": \"20px\",\n \"stroke-width\": 0,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}"
  15490. },
  15491. "parser": {
  15492. "type": "code",
  15493. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15494. },
  15495. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Star"
  15496. },
  15497. "61": {
  15498. "typename": {
  15499. "type": "string",
  15500. "value": "EndIcon"
  15501. },
  15502. "position": {
  15503. "type": "list<double>",
  15504. "value": [
  15505. 975,
  15506. 200
  15507. ]
  15508. },
  15509. "orientation": {
  15510. "type": "double",
  15511. "value": 0
  15512. },
  15513. "scale": {
  15514. "type": "list<double>",
  15515. "value": [
  15516. 1,
  15517. 1
  15518. ]
  15519. },
  15520. "mapper": {
  15521. "type": "code",
  15522. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  15523. },
  15524. "parser": {
  15525. "type": "code",
  15526. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15527. },
  15528. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  15529. },
  15530. "62": {
  15531. "r": {
  15532. "type": "double",
  15533. "value": 10
  15534. },
  15535. "style": {
  15536. "type": "map<string,string>",
  15537. "value": {
  15538. "stroke": "#000000",
  15539. "stroke-dasharray": "",
  15540. "fill": "#ffffff",
  15541. "fill-opacity": 0.75,
  15542. "font-size": "20px",
  15543. "stroke-width": 6,
  15544. "arrow-start": "none",
  15545. "arrow-end": "none"
  15546. }
  15547. },
  15548. "mapper": {
  15549. "type": "code",
  15550. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nif (getAttr(\"current\")) {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#00ff00\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"stroke-width\": 6,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n}});\n}\nelse {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"stroke-width\": 6,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"\n}});\n}"
  15551. },
  15552. "parser": {
  15553. "type": "code",
  15554. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15555. },
  15556. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  15557. },
  15558. "63": {
  15559. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15560. },
  15561. "71": {
  15562. "typename": {
  15563. "type": "string",
  15564. "value": "StateIcon"
  15565. },
  15566. "position": {
  15567. "type": "list<double>",
  15568. "value": [
  15569. 300,
  15570. 200.1562
  15571. ]
  15572. },
  15573. "orientation": {
  15574. "type": "double",
  15575. "value": 0
  15576. },
  15577. "scale": {
  15578. "type": "list<double>",
  15579. "value": [
  15580. 1,
  15581. 1.3233532934131738
  15582. ]
  15583. },
  15584. "mapper": {
  15585. "type": "code",
  15586. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  15587. },
  15588. "parser": {
  15589. "type": "code",
  15590. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15591. },
  15592. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  15593. },
  15594. "75": {
  15595. "textContent": {
  15596. "type": "string",
  15597. "value": "state"
  15598. },
  15599. "style": {
  15600. "type": "map<string,string>",
  15601. "value": {
  15602. "stroke": "#000000",
  15603. "stroke-dasharray": "",
  15604. "fill": "#000000",
  15605. "fill-opacity": 1,
  15606. "font-size": "20px",
  15607. "stroke-width": 0,
  15608. "arrow-start": "none",
  15609. "arrow-end": "none"
  15610. }
  15611. },
  15612. "mapper": {
  15613. "type": "code",
  15614. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent:getAttr(\"name\")})"
  15615. },
  15616. "parser": {
  15617. "type": "code",
  15618. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15619. },
  15620. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  15621. },
  15622. "78": {
  15623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15624. },
  15625. "84": {
  15626. "r": {
  15627. "type": "double",
  15628. "value": 25
  15629. },
  15630. "style": {
  15631. "type": "map<string,string>",
  15632. "value": {
  15633. "stroke": "#000000",
  15634. "stroke-dasharray": "",
  15635. "fill": "#ffffff",
  15636. "fill-opacity": 0.75,
  15637. "font-size": "20px",
  15638. "stroke-width": 2,
  15639. "arrow-start": "none",
  15640. "arrow-end": "none"
  15641. }
  15642. },
  15643. "mapper": {
  15644. "type": "code",
  15645. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\nif (getAttr(\"current\")) {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#9999ff\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}\nelse {\n ({style:{\n \"stroke\": \"#000000\",\n \"stroke-dasharray\": \"\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 1,\n \"font-size\": \"20px\",\n \"stroke-width\": 1,\n \"arrow-start\": \"none\",\n \"arrow-end\": \"none\"}});\n}"
  15646. },
  15647. "parser": {
  15648. "type": "code",
  15649. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15650. },
  15651. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  15652. },
  15653. "85": {
  15654. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15655. },
  15656. "87": {
  15657. "link-style": {
  15658. "type": "map<string,string>",
  15659. "value": {
  15660. "stroke": "#000000",
  15661. "stroke-dasharray": "-",
  15662. "stroke-opacity": 1,
  15663. "stroke-width": 1
  15664. }
  15665. },
  15666. "arrowHead": {
  15667. "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)",
  15668. "value": "custom"
  15669. },
  15670. "arrowTail": {
  15671. "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)",
  15672. "value": "arrow-black"
  15673. },
  15674. "typename": {
  15675. "type": "string",
  15676. "value": "VisualisedByLink"
  15677. },
  15678. "position": {
  15679. "type": "list<double>",
  15680. "value": [
  15681. 297,
  15682. 448.0034713745117
  15683. ]
  15684. },
  15685. "orientation": {
  15686. "type": "double",
  15687. "value": 0
  15688. },
  15689. "scale": {
  15690. "type": "list<double>",
  15691. "value": [
  15692. 1,
  15693. 1
  15694. ]
  15695. },
  15696. "mapper": {
  15697. "type": "code",
  15698. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  15699. },
  15700. "parser": {
  15701. "type": "code",
  15702. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  15703. },
  15704. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  15705. },
  15706. "90": {
  15707. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15708. },
  15709. "91": {
  15710. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  15711. }
  15712. },
  15713. "edges": [
  15714. {
  15715. "src": "5",
  15716. "dest": "10"
  15717. },
  15718. {
  15719. "src": "10",
  15720. "dest": "9"
  15721. },
  15722. {
  15723. "src": "6",
  15724. "dest": "12"
  15725. },
  15726. {
  15727. "src": "12",
  15728. "dest": "11"
  15729. },
  15730. {
  15731. "src": "27",
  15732. "dest": "30"
  15733. },
  15734. {
  15735. "src": "30",
  15736. "dest": "29"
  15737. },
  15738. {
  15739. "src": "27",
  15740. "dest": "32"
  15741. },
  15742. {
  15743. "src": "32",
  15744. "dest": "31"
  15745. },
  15746. {
  15747. "src": "3",
  15748. "dest": "33"
  15749. },
  15750. {
  15751. "src": "33",
  15752. "dest": "27"
  15753. },
  15754. {
  15755. "src": "4",
  15756. "dest": "35"
  15757. },
  15758. {
  15759. "src": "35",
  15760. "dest": "34"
  15761. },
  15762. {
  15763. "src": "34",
  15764. "dest": "37"
  15765. },
  15766. {
  15767. "src": "37",
  15768. "dest": "36"
  15769. },
  15770. {
  15771. "src": "4",
  15772. "dest": "39"
  15773. },
  15774. {
  15775. "src": "39",
  15776. "dest": "38"
  15777. },
  15778. {
  15779. "src": "44",
  15780. "dest": "52"
  15781. },
  15782. {
  15783. "src": "52",
  15784. "dest": "49"
  15785. },
  15786. {
  15787. "src": "44",
  15788. "dest": "53"
  15789. },
  15790. {
  15791. "src": "53",
  15792. "dest": "50"
  15793. },
  15794. {
  15795. "src": "44",
  15796. "dest": "54"
  15797. },
  15798. {
  15799. "src": "54",
  15800. "dest": "51"
  15801. },
  15802. {
  15803. "src": "61",
  15804. "dest": "63"
  15805. },
  15806. {
  15807. "src": "63",
  15808. "dest": "62"
  15809. },
  15810. {
  15811. "src": "71",
  15812. "dest": "78"
  15813. },
  15814. {
  15815. "src": "78",
  15816. "dest": "75"
  15817. },
  15818. {
  15819. "src": "71",
  15820. "dest": "85"
  15821. },
  15822. {
  15823. "src": "85",
  15824. "dest": "84"
  15825. },
  15826. {
  15827. "src": "71",
  15828. "dest": "90"
  15829. },
  15830. {
  15831. "src": "90",
  15832. "dest": "56"
  15833. },
  15834. {
  15835. "src": "0",
  15836. "dest": "91"
  15837. },
  15838. {
  15839. "src": "91",
  15840. "dest": "44"
  15841. }
  15842. ],
  15843. "metamodels": [
  15844. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax"
  15845. ]
  15846. }
  15847. }