T_simulate.model 363 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490
  1. {
  2. "csm": {
  3. "nodes": {
  4. "77": {
  5. "typename": {
  6. "type": "string",
  7. "value": "StartIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 711,
  13. 147
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "21": {
  40. "r": {
  41. "type": "double",
  42. "value": 10
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "stroke": "#000000",
  48. "stroke-dasharray": "",
  49. "fill": "#000000",
  50. "fill-opacity": 0.75,
  51. "font-size": "20px",
  52. "stroke-width": 0,
  53. "arrow-start": "none",
  54. "arrow-end": "none"
  55. }
  56. },
  57. "mapper": {
  58. "type": "code",
  59. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  60. },
  61. "parser": {
  62. "type": "code",
  63. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  64. },
  65. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  66. "position": {
  67. "type": "list<double>",
  68. "value": [
  69. 3,
  70. 2
  71. ]
  72. },
  73. "orientation": {
  74. "type": "double",
  75. "value": 0
  76. },
  77. "scale": {
  78. "type": "list<double>",
  79. "value": [
  80. 1,
  81. 1
  82. ]
  83. }
  84. }
  85. },
  86. "edges": []
  87. }
  88. },
  89. "$asuri": {
  90. "type": "string",
  91. "value": "/Formalisms/__Transformations__/Transformation/MoTif/Start/77.instance"
  92. },
  93. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon"
  94. },
  95. "84": {
  96. "typename": {
  97. "type": "string",
  98. "value": "EndFailIcon"
  99. },
  100. "position": {
  101. "type": "list<double>",
  102. "value": [
  103. 858,
  104. 255
  105. ]
  106. },
  107. "orientation": {
  108. "type": "double",
  109. "value": 0
  110. },
  111. "scale": {
  112. "type": "list<double>",
  113. "value": [
  114. 1,
  115. 1
  116. ]
  117. },
  118. "mapper": {
  119. "type": "code",
  120. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  121. },
  122. "parser": {
  123. "type": "code",
  124. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  125. },
  126. "$contents": {
  127. "type": "map<string,*>",
  128. "value": {
  129. "nodes": {
  130. "451": {
  131. "r": {
  132. "type": "double",
  133. "value": 10
  134. },
  135. "style": {
  136. "type": "map<string,string>",
  137. "value": {
  138. "stroke": "#800000",
  139. "stroke-dasharray": "",
  140. "fill": "none",
  141. "fill-opacity": 1,
  142. "font-size": "20px",
  143. "stroke-width": 2,
  144. "arrow-start": "none",
  145. "arrow-end": "none",
  146. "": ""
  147. }
  148. },
  149. "mapper": {
  150. "type": "code",
  151. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  152. },
  153. "parser": {
  154. "type": "code",
  155. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  156. },
  157. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  158. "position": {
  159. "type": "list<double>",
  160. "value": [
  161. 2,
  162. 1
  163. ]
  164. },
  165. "orientation": {
  166. "type": "double",
  167. "value": 0
  168. },
  169. "scale": {
  170. "type": "list<double>",
  171. "value": [
  172. 1,
  173. 1
  174. ]
  175. }
  176. },
  177. "455": {
  178. "segments": {
  179. "type": "string",
  180. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  181. },
  182. "style": {
  183. "type": "map<string,string>",
  184. "value": {
  185. "fill": "none",
  186. "stroke": "#800000",
  187. "stroke-width": "3",
  188. "stroke-linecap": "round",
  189. "stroke-linejoin": "round",
  190. "stroke-miterlimit": "4",
  191. "stroke-opacity": "1",
  192. "stroke-dasharray": "none"
  193. }
  194. },
  195. "mapper": {
  196. "type": "code",
  197. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  198. },
  199. "parser": {
  200. "type": "code",
  201. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  202. },
  203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  204. "position": {
  205. "type": "list<double>",
  206. "value": [
  207. 5,
  208. 4
  209. ]
  210. },
  211. "orientation": {
  212. "type": "double",
  213. "value": 0
  214. },
  215. "scale": {
  216. "type": "list<double>",
  217. "value": [
  218. 1,
  219. 1
  220. ]
  221. }
  222. },
  223. "456": {
  224. "segments": {
  225. "type": "string",
  226. "value": "M 1.5,1.5069319 12.49983,12.506752"
  227. },
  228. "style": {
  229. "type": "map<string,string>",
  230. "value": {
  231. "fill": "none",
  232. "stroke": "#800000",
  233. "stroke-width": "3",
  234. "stroke-linecap": "round",
  235. "stroke-linejoin": "round",
  236. "stroke-miterlimit": "4",
  237. "stroke-opacity": "1",
  238. "stroke-dasharray": "none"
  239. }
  240. },
  241. "mapper": {
  242. "type": "code",
  243. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  244. },
  245. "parser": {
  246. "type": "code",
  247. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  248. },
  249. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  250. "position": {
  251. "type": "list<double>",
  252. "value": [
  253. 5,
  254. 4
  255. ]
  256. },
  257. "orientation": {
  258. "type": "double",
  259. "value": 0
  260. },
  261. "scale": {
  262. "type": "list<double>",
  263. "value": [
  264. 1,
  265. 1
  266. ]
  267. }
  268. },
  269. "457": {
  270. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  271. "position": {
  272. "type": "list<double>",
  273. "value": [
  274. 7.363811097006533,
  275. 5.348023328271552
  276. ]
  277. },
  278. "orientation": {
  279. "type": "double",
  280. "value": 0
  281. },
  282. "scale": {
  283. "type": "list<double>",
  284. "value": [
  285. 1,
  286. 1
  287. ]
  288. },
  289. "link-style": {
  290. "type": "map<string,string>",
  291. "value": {
  292. "stroke": "#00ffff",
  293. "stroke-dasharray": "",
  294. "stroke-opacity": 0.1,
  295. "stroke-width": 1
  296. }
  297. }
  298. },
  299. "458": {
  300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  301. "position": {
  302. "type": "list<double>",
  303. "value": [
  304. 7.363813536207658,
  305. 5.348023328271552
  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. "link-style": {
  320. "type": "map<string,string>",
  321. "value": {
  322. "stroke": "#00ffff",
  323. "stroke-dasharray": "",
  324. "stroke-opacity": 0.1,
  325. "stroke-width": 1
  326. }
  327. }
  328. }
  329. },
  330. "edges": [
  331. {
  332. "src": "451",
  333. "dest": "457"
  334. },
  335. {
  336. "src": "457",
  337. "dest": "455"
  338. },
  339. {
  340. "src": "451",
  341. "dest": "458"
  342. },
  343. {
  344. "src": "458",
  345. "dest": "456"
  346. }
  347. ]
  348. }
  349. },
  350. "$asuri": {
  351. "type": "string",
  352. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail/84.instance"
  353. },
  354. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon"
  355. },
  356. "98": {
  357. "typename": {
  358. "type": "string",
  359. "value": "CQRule2Icon"
  360. },
  361. "position": {
  362. "type": "list<double>",
  363. "value": [
  364. 615,
  365. 181
  366. ]
  367. },
  368. "orientation": {
  369. "type": "double",
  370. "value": 0
  371. },
  372. "scale": {
  373. "type": "list<double>",
  374. "value": [
  375. 1,
  376. 1
  377. ]
  378. },
  379. "mapper": {
  380. "type": "code",
  381. "value": "({position:getAttr(\"position\")})"
  382. },
  383. "parser": {
  384. "type": "code",
  385. "value": "({position:getAttr(\"position\")})"
  386. },
  387. "$contents": {
  388. "type": "map<string,*>",
  389. "value": {
  390. "nodes": {
  391. "1277": {
  392. "width": {
  393. "type": "double",
  394. "value": 200
  395. },
  396. "height": {
  397. "type": "double",
  398. "value": 50
  399. },
  400. "cornerRadius": {
  401. "type": "double",
  402. "value": 1
  403. },
  404. "style": {
  405. "type": "map<string,string>",
  406. "value": {
  407. "fill": "#ffffff",
  408. "stroke": "#008000",
  409. "stroke-width": "5",
  410. "stroke-linecap": "butt",
  411. "stroke-linejoin": "miter",
  412. "stroke-miterlimit": "4",
  413. "stroke-opacity": "1",
  414. "fill-opacity": "0.5"
  415. }
  416. },
  417. "mapper": {
  418. "type": "code",
  419. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  420. },
  421. "parser": {
  422. "type": "code",
  423. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  424. },
  425. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  426. "position": {
  427. "type": "list<double>",
  428. "value": [
  429. 9,
  430. 29
  431. ]
  432. },
  433. "orientation": {
  434. "type": "double",
  435. "value": 0
  436. },
  437. "scale": {
  438. "type": "list<double>",
  439. "value": [
  440. 1,
  441. 1
  442. ]
  443. }
  444. },
  445. "1278": {
  446. "segments": {
  447. "type": "string",
  448. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  449. },
  450. "style": {
  451. "type": "map<string,string>",
  452. "value": {
  453. "fill": "none",
  454. "stroke": "#008000",
  455. "stroke-width": "3",
  456. "stroke-linecap": "round",
  457. "stroke-linejoin": "round",
  458. "stroke-miterlimit": "4",
  459. "stroke-opacity": "1",
  460. "stroke-dasharray": "none"
  461. }
  462. },
  463. "mapper": {
  464. "type": "code",
  465. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  466. },
  467. "parser": {
  468. "type": "code",
  469. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  470. },
  471. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  472. "position": {
  473. "type": "list<double>",
  474. "value": [
  475. 55,
  476. 82
  477. ]
  478. },
  479. "orientation": {
  480. "type": "double",
  481. "value": 0
  482. },
  483. "scale": {
  484. "type": "list<double>",
  485. "value": [
  486. 1,
  487. 1
  488. ]
  489. }
  490. },
  491. "1279": {
  492. "textContent": {
  493. "type": "string",
  494. "value": ":"
  495. },
  496. "style": {
  497. "type": "map<string,string>",
  498. "value": {
  499. "font-size": "20px",
  500. "font-style": "normal",
  501. "font-variant": "normal",
  502. "font-weight": "bold",
  503. "font-stretch": "normal",
  504. "text-align": "left",
  505. "line-height": "125%",
  506. "writing-mode": "lr-tb",
  507. "text-anchor": "left",
  508. "fill": "#008000",
  509. "fill-opacity": "1",
  510. "stroke": "none",
  511. "font-family": "Arial"
  512. }
  513. },
  514. "mapper": {
  515. "type": "code",
  516. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  517. },
  518. "parser": {
  519. "type": "code",
  520. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  521. },
  522. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  523. "position": {
  524. "type": "list<double>",
  525. "value": [
  526. 49,
  527. 43
  528. ]
  529. },
  530. "orientation": {
  531. "type": "double",
  532. "value": 0
  533. },
  534. "scale": {
  535. "type": "list<double>",
  536. "value": [
  537. 1,
  538. 1
  539. ]
  540. }
  541. },
  542. "1280": {
  543. "segments": {
  544. "type": "string",
  545. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  546. },
  547. "style": {
  548. "type": "map<string,string>",
  549. "value": {
  550. "fill": "none",
  551. "stroke": "#008000",
  552. "stroke-width": "3",
  553. "stroke-linecap": "round",
  554. "stroke-linejoin": "round",
  555. "stroke-miterlimit": "4",
  556. "stroke-opacity": "1",
  557. "stroke-dasharray": "none"
  558. }
  559. },
  560. "mapper": {
  561. "type": "code",
  562. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  563. },
  564. "parser": {
  565. "type": "code",
  566. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  567. },
  568. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  569. "position": {
  570. "type": "list<double>",
  571. "value": [
  572. 152,
  573. 82
  574. ]
  575. },
  576. "orientation": {
  577. "type": "double",
  578. "value": 0
  579. },
  580. "scale": {
  581. "type": "list<double>",
  582. "value": [
  583. 1,
  584. 1
  585. ]
  586. }
  587. },
  588. "1281": {
  589. "textContent": {
  590. "type": "string",
  591. "value": ""
  592. },
  593. "style": {
  594. "type": "map<string,string>",
  595. "value": {
  596. "font-size": "20px",
  597. "font-style": "normal",
  598. "font-variant": "normal",
  599. "font-weight": "bold",
  600. "font-stretch": "normal",
  601. "line-height": "125%",
  602. "text-anchor": "end",
  603. "fill": "#008000",
  604. "fill-opacity": "1",
  605. "stroke": "none",
  606. "font-family": "Arial"
  607. }
  608. },
  609. "mapper": {
  610. "type": "code",
  611. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  612. },
  613. "parser": {
  614. "type": "code",
  615. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  616. },
  617. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  618. "position": {
  619. "type": "list<double>",
  620. "value": [
  621. 48,
  622. 43
  623. ]
  624. },
  625. "orientation": {
  626. "type": "double",
  627. "value": 0
  628. },
  629. "scale": {
  630. "type": "list<double>",
  631. "value": [
  632. 1,
  633. 1
  634. ]
  635. }
  636. },
  637. "1282": {
  638. "textContent": {
  639. "type": "string",
  640. "value": "findTransition"
  641. },
  642. "style": {
  643. "type": "map<string,string>",
  644. "value": {
  645. "font-size": "20px",
  646. "font-style": "normal",
  647. "font-variant": "normal",
  648. "font-weight": "bold",
  649. "font-stretch": "normal",
  650. "text-align": "left",
  651. "line-height": "125%",
  652. "writing-mode": "lr-tb",
  653. "text-anchor": "left",
  654. "fill": "#008000",
  655. "fill-opacity": "1",
  656. "stroke": "none",
  657. "font-family": "Arial"
  658. }
  659. },
  660. "mapper": {
  661. "type": "code",
  662. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  663. },
  664. "parser": {
  665. "type": "code",
  666. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  667. },
  668. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  669. "position": {
  670. "type": "list<double>",
  671. "value": [
  672. 56,
  673. 43
  674. ]
  675. },
  676. "orientation": {
  677. "type": "double",
  678. "value": 0
  679. },
  680. "scale": {
  681. "type": "list<double>",
  682. "value": [
  683. 1,
  684. 1
  685. ]
  686. }
  687. },
  688. "1283": {
  689. "textContent": {
  690. "type": "string",
  691. "value": "??"
  692. },
  693. "style": {
  694. "type": "map<string,string>",
  695. "value": {
  696. "font-size": "20px",
  697. "font-style": "normal",
  698. "font-variant": "normal",
  699. "font-weight": "bold",
  700. "font-stretch": "normal",
  701. "text-align": "left",
  702. "line-height": "100%",
  703. "writing-mode": "lr-tb",
  704. "text-anchor": "left",
  705. "fill": "#008000",
  706. "fill-opacity": "1",
  707. "stroke": "none",
  708. "font-family": "Arial"
  709. }
  710. },
  711. "mapper": {
  712. "type": "code",
  713. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  714. },
  715. "parser": {
  716. "type": "code",
  717. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  718. },
  719. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  720. "position": {
  721. "type": "list<double>",
  722. "value": [
  723. 198,
  724. 7
  725. ]
  726. },
  727. "orientation": {
  728. "type": "double",
  729. "value": 0
  730. },
  731. "scale": {
  732. "type": "list<double>",
  733. "value": [
  734. 1,
  735. 1
  736. ]
  737. }
  738. },
  739. "1284": {
  740. "segments": {
  741. "type": "string",
  742. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  743. },
  744. "style": {
  745. "type": "map<string,string>",
  746. "value": {
  747. "fill": "#ffffff",
  748. "fill-opacity": "0.5",
  749. "stroke": "#008000",
  750. "stroke-width": "3",
  751. "stroke-linecap": "butt",
  752. "stroke-linejoin": "miter",
  753. "stroke-miterlimit": "4",
  754. "stroke-opacity": "1"
  755. }
  756. },
  757. "mapper": {
  758. "type": "code",
  759. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  760. },
  761. "parser": {
  762. "type": "code",
  763. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  764. },
  765. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  766. "position": {
  767. "type": "list<double>",
  768. "value": [
  769. 103,
  770. 5
  771. ]
  772. },
  773. "orientation": {
  774. "type": "double",
  775. "value": 0
  776. },
  777. "scale": {
  778. "type": "list<double>",
  779. "value": [
  780. 1,
  781. 1
  782. ]
  783. }
  784. },
  785. "1285": {
  786. "segments": {
  787. "type": "string",
  788. "value": "M 1.5,1.5069319 12.49983,12.506752"
  789. },
  790. "style": {
  791. "type": "map<string,string>",
  792. "value": {
  793. "fill": "none",
  794. "stroke": "#008000",
  795. "stroke-width": "3",
  796. "stroke-linecap": "round",
  797. "stroke-linejoin": "round",
  798. "stroke-miterlimit": "4",
  799. "stroke-opacity": "1",
  800. "stroke-dasharray": "none"
  801. }
  802. },
  803. "mapper": {
  804. "type": "code",
  805. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  806. },
  807. "parser": {
  808. "type": "code",
  809. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  810. },
  811. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  812. "position": {
  813. "type": "list<double>",
  814. "value": [
  815. 152,
  816. 82
  817. ]
  818. },
  819. "orientation": {
  820. "type": "double",
  821. "value": 0
  822. },
  823. "scale": {
  824. "type": "list<double>",
  825. "value": [
  826. 1,
  827. 1
  828. ]
  829. }
  830. },
  831. "1286": {
  832. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  833. "position": {
  834. "type": "list<double>",
  835. "value": [
  836. 31,
  837. 42.5
  838. ]
  839. },
  840. "orientation": {
  841. "type": "double",
  842. "value": 0
  843. },
  844. "scale": {
  845. "type": "list<double>",
  846. "value": [
  847. 1,
  848. 1
  849. ]
  850. },
  851. "link-style": {
  852. "type": "map<string,string>",
  853. "value": {
  854. "stroke": "#00ffff",
  855. "stroke-dasharray": "",
  856. "stroke-opacity": 0.1,
  857. "stroke-width": 1
  858. }
  859. }
  860. },
  861. "1287": {
  862. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  863. "position": {
  864. "type": "list<double>",
  865. "value": [
  866. 23.25,
  867. 42.5
  868. ]
  869. },
  870. "orientation": {
  871. "type": "double",
  872. "value": 0
  873. },
  874. "scale": {
  875. "type": "list<double>",
  876. "value": [
  877. 1,
  878. 1
  879. ]
  880. },
  881. "link-style": {
  882. "type": "map<string,string>",
  883. "value": {
  884. "stroke": "#00ffff",
  885. "stroke-dasharray": "",
  886. "stroke-opacity": 0.1,
  887. "stroke-width": 1
  888. }
  889. }
  890. },
  891. "1288": {
  892. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  893. "position": {
  894. "type": "list<double>",
  895. "value": [
  896. 45.25,
  897. 42.5
  898. ]
  899. },
  900. "orientation": {
  901. "type": "double",
  902. "value": 0
  903. },
  904. "scale": {
  905. "type": "list<double>",
  906. "value": [
  907. 1,
  908. 1
  909. ]
  910. },
  911. "link-style": {
  912. "type": "map<string,string>",
  913. "value": {
  914. "stroke": "#00ffff",
  915. "stroke-dasharray": "",
  916. "stroke-opacity": 0.1,
  917. "stroke-width": 1
  918. }
  919. }
  920. }
  921. },
  922. "edges": [
  923. {
  924. "src": "1277",
  925. "dest": "1286"
  926. },
  927. {
  928. "src": "1286",
  929. "dest": "1279"
  930. },
  931. {
  932. "src": "1277",
  933. "dest": "1287"
  934. },
  935. {
  936. "src": "1287",
  937. "dest": "1281"
  938. },
  939. {
  940. "src": "1277",
  941. "dest": "1288"
  942. },
  943. {
  944. "src": "1288",
  945. "dest": "1282"
  946. }
  947. ]
  948. }
  949. },
  950. "$asuri": {
  951. "type": "string",
  952. "value": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule2/98.instance"
  953. },
  954. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon"
  955. },
  956. "105": {
  957. "link-style": {
  958. "type": "map<string,string>",
  959. "value": {
  960. "stroke": "#800000",
  961. "stroke-dasharray": "",
  962. "stroke-opacity": 1,
  963. "stroke-width": 2
  964. }
  965. },
  966. "arrowHead": {
  967. "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)",
  968. "value": "custom"
  969. },
  970. "arrowTail": {
  971. "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)",
  972. "value": "arrow-black"
  973. },
  974. "typename": {
  975. "type": "string",
  976. "value": "failLink"
  977. },
  978. "position": {
  979. "type": "list<double>",
  980. "value": [
  981. 818,
  982. 269
  983. ]
  984. },
  985. "orientation": {
  986. "type": "double",
  987. "value": 0
  988. },
  989. "scale": {
  990. "type": "list<double>",
  991. "value": [
  992. 1,
  993. 1
  994. ]
  995. },
  996. "mapper": {
  997. "type": "code",
  998. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  999. },
  1000. "parser": {
  1001. "type": "code",
  1002. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1003. },
  1004. "$contents": {
  1005. "type": "map<string,*>",
  1006. "value": {
  1007. "nodes": {
  1008. "267": {
  1009. "segments": {
  1010. "type": "string",
  1011. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1012. },
  1013. "style": {
  1014. "type": "map<string,string>",
  1015. "value": {
  1016. "stroke": "#000000",
  1017. "fill": "#000000",
  1018. "opacity": 0,
  1019. "stroke-width": 1
  1020. }
  1021. },
  1022. "mapper": {
  1023. "type": "code",
  1024. "value": ""
  1025. },
  1026. "parser": {
  1027. "type": "code",
  1028. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1029. },
  1030. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1031. "position": {
  1032. "type": "list<double>",
  1033. "value": [
  1034. "0;41.90443202880442,99.97166737441361%",
  1035. "0;-4.998858198323887,-2.38027779462887%"
  1036. ]
  1037. },
  1038. "orientation": {
  1039. "type": "double",
  1040. "value": "0;-1.3639275316029038"
  1041. },
  1042. "scale": {
  1043. "type": "list<double>",
  1044. "value": [
  1045. 1,
  1046. 1
  1047. ]
  1048. },
  1049. "arrow": "arrowTail",
  1050. "arrowType": "arrow-black",
  1051. "$linkDecoratorInfo": {
  1052. "type": "map<string,double>",
  1053. "value": {
  1054. "xratio": 1,
  1055. "yoffset": -4
  1056. }
  1057. }
  1058. },
  1059. "268": {
  1060. "segments": {
  1061. "type": "string",
  1062. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1063. },
  1064. "style": {
  1065. "type": "map<string,string>",
  1066. "value": {
  1067. "stroke": "#000000",
  1068. "fill": "#000000",
  1069. "opacity": 0,
  1070. "stroke-width": 1
  1071. }
  1072. },
  1073. "mapper": {
  1074. "type": "code",
  1075. "value": ""
  1076. },
  1077. "parser": {
  1078. "type": "code",
  1079. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1080. },
  1081. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1082. "position": {
  1083. "type": "list<double>",
  1084. "value": [
  1085. "0;41.7616153611267,99.97166737441361%",
  1086. "0;-10.997158240788735,-2.38027779462887%"
  1087. ]
  1088. },
  1089. "orientation": {
  1090. "type": "double",
  1091. "value": "0;-1.3639275316029038"
  1092. },
  1093. "scale": {
  1094. "type": "list<double>",
  1095. "value": [
  1096. 1,
  1097. 1
  1098. ]
  1099. },
  1100. "arrow": "arrowTail",
  1101. "arrowType": "diamond-black-large",
  1102. "$linkDecoratorInfo": {
  1103. "type": "map<string,double>",
  1104. "value": {
  1105. "xratio": 1,
  1106. "yoffset": -10
  1107. }
  1108. }
  1109. },
  1110. "269": {
  1111. "r": {
  1112. "type": "double",
  1113. "value": 10
  1114. },
  1115. "style": {
  1116. "type": "map<string,string>",
  1117. "value": {
  1118. "stroke": "#000000",
  1119. "fill": "#000000",
  1120. "opacity": 0,
  1121. "stroke-width": 1
  1122. }
  1123. },
  1124. "mapper": {
  1125. "type": "code",
  1126. "value": ""
  1127. },
  1128. "parser": {
  1129. "type": "code",
  1130. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1131. },
  1132. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1133. "position": {
  1134. "type": "list<double>",
  1135. "value": [
  1136. "0;41.7616153611267,99.97166737441361%",
  1137. "0;-10.997158240788735,-2.38027779462887%"
  1138. ]
  1139. },
  1140. "orientation": {
  1141. "type": "double",
  1142. "value": "0;-1.3639275316029038"
  1143. },
  1144. "scale": {
  1145. "type": "list<double>",
  1146. "value": [
  1147. 1,
  1148. 1
  1149. ]
  1150. },
  1151. "arrow": "arrowTail",
  1152. "arrowType": "circle-black-large",
  1153. "$linkDecoratorInfo": {
  1154. "type": "map<string,double>",
  1155. "value": {
  1156. "xratio": 1,
  1157. "yoffset": -10
  1158. }
  1159. }
  1160. },
  1161. "270": {
  1162. "r": {
  1163. "type": "double",
  1164. "value": 10
  1165. },
  1166. "style": {
  1167. "type": "map<string,string>",
  1168. "value": {
  1169. "stroke": "#000000",
  1170. "fill": "#ffffff",
  1171. "opacity": 0,
  1172. "stroke-width": 1
  1173. }
  1174. },
  1175. "mapper": {
  1176. "type": "code",
  1177. "value": ""
  1178. },
  1179. "parser": {
  1180. "type": "code",
  1181. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1182. },
  1183. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1184. "position": {
  1185. "type": "list<double>",
  1186. "value": [
  1187. "0;41.7616153611267,99.97166737441361%",
  1188. "0;-10.997158240788735,-2.38027779462887%"
  1189. ]
  1190. },
  1191. "orientation": {
  1192. "type": "double",
  1193. "value": "0;-1.3639275316029038"
  1194. },
  1195. "scale": {
  1196. "type": "list<double>",
  1197. "value": [
  1198. 1,
  1199. 1
  1200. ]
  1201. },
  1202. "arrow": "arrowTail",
  1203. "arrowType": "circle-white-large",
  1204. "$linkDecoratorInfo": {
  1205. "type": "map<string,double>",
  1206. "value": {
  1207. "xratio": 1,
  1208. "yoffset": -10
  1209. }
  1210. }
  1211. },
  1212. "271": {
  1213. "r": {
  1214. "type": "double",
  1215. "value": 5
  1216. },
  1217. "style": {
  1218. "type": "map<string,string>",
  1219. "value": {
  1220. "stroke": "#000000",
  1221. "fill": "#000000",
  1222. "opacity": 0,
  1223. "stroke-width": 1
  1224. }
  1225. },
  1226. "mapper": {
  1227. "type": "code",
  1228. "value": ""
  1229. },
  1230. "parser": {
  1231. "type": "code",
  1232. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1233. },
  1234. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1235. "position": {
  1236. "type": "list<double>",
  1237. "value": [
  1238. "0;41.88062925085808,99.97166737441361%",
  1239. "0;-5.998574872068048,-2.38027779462887%"
  1240. ]
  1241. },
  1242. "orientation": {
  1243. "type": "double",
  1244. "value": "0;-1.3639275316029038"
  1245. },
  1246. "scale": {
  1247. "type": "list<double>",
  1248. "value": [
  1249. 1,
  1250. 1
  1251. ]
  1252. },
  1253. "arrow": "arrowTail",
  1254. "arrowType": "circle-black",
  1255. "$linkDecoratorInfo": {
  1256. "type": "map<string,double>",
  1257. "value": {
  1258. "xratio": 1,
  1259. "yoffset": -5
  1260. }
  1261. }
  1262. },
  1263. "272": {
  1264. "segments": {
  1265. "type": "string",
  1266. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1267. },
  1268. "style": {
  1269. "type": "map<string,string>",
  1270. "value": {
  1271. "stroke": "#000000",
  1272. "fill": "#000000",
  1273. "opacity": 0,
  1274. "stroke-width": 1
  1275. }
  1276. },
  1277. "mapper": {
  1278. "type": "code",
  1279. "value": ""
  1280. },
  1281. "parser": {
  1282. "type": "code",
  1283. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1284. },
  1285. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1286. "position": {
  1287. "type": "list<double>",
  1288. "value": [
  1289. "0;41.88062925085808,99.97166737441361%",
  1290. "0;-5.998574872068048,-2.38027779462887%"
  1291. ]
  1292. },
  1293. "orientation": {
  1294. "type": "double",
  1295. "value": "0;-1.3639275316029038"
  1296. },
  1297. "scale": {
  1298. "type": "list<double>",
  1299. "value": [
  1300. 1,
  1301. 1
  1302. ]
  1303. },
  1304. "arrow": "arrowTail",
  1305. "arrowType": "diamond-black",
  1306. "$linkDecoratorInfo": {
  1307. "type": "map<string,double>",
  1308. "value": {
  1309. "xratio": 1,
  1310. "yoffset": -5
  1311. }
  1312. }
  1313. },
  1314. "273": {
  1315. "segments": {
  1316. "type": "string",
  1317. "value": "m0,0 l20,10 l-20,10 z"
  1318. },
  1319. "style": {
  1320. "type": "map<string,string>",
  1321. "value": {
  1322. "stroke": "#000000",
  1323. "fill": "#000000",
  1324. "opacity": 0,
  1325. "stroke-width": 1
  1326. }
  1327. },
  1328. "mapper": {
  1329. "type": "code",
  1330. "value": ""
  1331. },
  1332. "parser": {
  1333. "type": "code",
  1334. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1335. },
  1336. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1337. "position": {
  1338. "type": "list<double>",
  1339. "value": [
  1340. "0;41.7616153611267,99.97166737441361%",
  1341. "0;-10.997158240788735,-2.38027779462887%"
  1342. ]
  1343. },
  1344. "orientation": {
  1345. "type": "double",
  1346. "value": "0;-1.3639275316029038"
  1347. },
  1348. "scale": {
  1349. "type": "list<double>",
  1350. "value": [
  1351. 1,
  1352. 1
  1353. ]
  1354. },
  1355. "arrow": "arrowTail",
  1356. "arrowType": "triangle-black-large",
  1357. "$linkDecoratorInfo": {
  1358. "type": "map<string,double>",
  1359. "value": {
  1360. "xratio": 1,
  1361. "yoffset": -10
  1362. }
  1363. }
  1364. },
  1365. "274": {
  1366. "segments": {
  1367. "type": "string",
  1368. "value": "m0,0 l10,4 l-10,4 z"
  1369. },
  1370. "style": {
  1371. "type": "map<string,string>",
  1372. "value": {
  1373. "stroke": "#000000",
  1374. "fill": "#000000",
  1375. "opacity": 0,
  1376. "stroke-width": 1
  1377. }
  1378. },
  1379. "mapper": {
  1380. "type": "code",
  1381. "value": ""
  1382. },
  1383. "parser": {
  1384. "type": "code",
  1385. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1386. },
  1387. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1388. "position": {
  1389. "type": "list<double>",
  1390. "value": [
  1391. "0;41.90443202880442,99.97166737441361%",
  1392. "0;-4.998858198323887,-2.38027779462887%"
  1393. ]
  1394. },
  1395. "orientation": {
  1396. "type": "double",
  1397. "value": "0;-1.3639275316029038"
  1398. },
  1399. "scale": {
  1400. "type": "list<double>",
  1401. "value": [
  1402. 1,
  1403. 1
  1404. ]
  1405. },
  1406. "arrow": "arrowTail",
  1407. "arrowType": "triangle-black",
  1408. "$linkDecoratorInfo": {
  1409. "type": "map<string,double>",
  1410. "value": {
  1411. "xratio": 1,
  1412. "yoffset": -4
  1413. }
  1414. }
  1415. },
  1416. "275": {
  1417. "segments": {
  1418. "type": "string",
  1419. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1420. },
  1421. "style": {
  1422. "type": "map<string,string>",
  1423. "value": {
  1424. "stroke": "#000000",
  1425. "fill": "#000000",
  1426. "opacity": 0,
  1427. "stroke-width": 1
  1428. }
  1429. },
  1430. "mapper": {
  1431. "type": "code",
  1432. "value": ""
  1433. },
  1434. "parser": {
  1435. "type": "code",
  1436. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1437. },
  1438. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1439. "position": {
  1440. "type": "list<double>",
  1441. "value": [
  1442. "0;41.809220917019275,99.97166737441361%",
  1443. "0;-8.997724893300472,-2.38027779462887%"
  1444. ]
  1445. },
  1446. "orientation": {
  1447. "type": "double",
  1448. "value": "0;-1.3639275316029038"
  1449. },
  1450. "scale": {
  1451. "type": "list<double>",
  1452. "value": [
  1453. 1,
  1454. 1
  1455. ]
  1456. },
  1457. "arrow": "arrowTail",
  1458. "arrowType": "arrow-black-large",
  1459. "$linkDecoratorInfo": {
  1460. "type": "map<string,double>",
  1461. "value": {
  1462. "xratio": 1,
  1463. "yoffset": -8
  1464. }
  1465. }
  1466. },
  1467. "276": {
  1468. "segments": {
  1469. "type": "string",
  1470. "value": "m0,0 l20,10 l-20,10 z"
  1471. },
  1472. "style": {
  1473. "type": "map<string,string>",
  1474. "value": {
  1475. "stroke": "#000000",
  1476. "fill": "#ffffff",
  1477. "opacity": 0,
  1478. "stroke-width": 1
  1479. }
  1480. },
  1481. "mapper": {
  1482. "type": "code",
  1483. "value": ""
  1484. },
  1485. "parser": {
  1486. "type": "code",
  1487. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1488. },
  1489. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1490. "position": {
  1491. "type": "list<double>",
  1492. "value": [
  1493. "0;41.7616153611267,99.97166737441361%",
  1494. "0;-10.997158240788735,-2.38027779462887%"
  1495. ]
  1496. },
  1497. "orientation": {
  1498. "type": "double",
  1499. "value": "0;-1.3639275316029038"
  1500. },
  1501. "scale": {
  1502. "type": "list<double>",
  1503. "value": [
  1504. 1,
  1505. 1
  1506. ]
  1507. },
  1508. "arrow": "arrowTail",
  1509. "arrowType": "triangle-white-large",
  1510. "$linkDecoratorInfo": {
  1511. "type": "map<string,double>",
  1512. "value": {
  1513. "xratio": 1,
  1514. "yoffset": -10
  1515. }
  1516. }
  1517. },
  1518. "277": {
  1519. "segments": {
  1520. "type": "string",
  1521. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1522. },
  1523. "style": {
  1524. "type": "map<string,string>",
  1525. "value": {
  1526. "stroke": "#000000",
  1527. "fill": "#ffffff",
  1528. "opacity": 0,
  1529. "stroke-width": 1
  1530. }
  1531. },
  1532. "mapper": {
  1533. "type": "code",
  1534. "value": ""
  1535. },
  1536. "parser": {
  1537. "type": "code",
  1538. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1539. },
  1540. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1541. "position": {
  1542. "type": "list<double>",
  1543. "value": [
  1544. "0;41.88062925085808,99.97166737441361%",
  1545. "0;-5.998574872068048,-2.38027779462887%"
  1546. ]
  1547. },
  1548. "orientation": {
  1549. "type": "double",
  1550. "value": "0;-1.3639275316029038"
  1551. },
  1552. "scale": {
  1553. "type": "list<double>",
  1554. "value": [
  1555. 1,
  1556. 1
  1557. ]
  1558. },
  1559. "arrow": "arrowTail",
  1560. "arrowType": "diamond-white",
  1561. "$linkDecoratorInfo": {
  1562. "type": "map<string,double>",
  1563. "value": {
  1564. "xratio": 1,
  1565. "yoffset": -5
  1566. }
  1567. }
  1568. },
  1569. "278": {
  1570. "segments": {
  1571. "type": "string",
  1572. "value": "m0,0 l20,8 l-20,8"
  1573. },
  1574. "style": {
  1575. "type": "map<string,string>",
  1576. "value": {
  1577. "stroke": "#000000",
  1578. "fill": "#000000",
  1579. "fill-opacity": 0,
  1580. "stroke-width": 1,
  1581. "opacity": 0
  1582. }
  1583. },
  1584. "mapper": {
  1585. "type": "code",
  1586. "value": ""
  1587. },
  1588. "parser": {
  1589. "type": "code",
  1590. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1591. },
  1592. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1593. "position": {
  1594. "type": "list<double>",
  1595. "value": [
  1596. "0;41.809220917019275,99.97166737441361%",
  1597. "0;-8.997724893300472,-2.38027779462887%"
  1598. ]
  1599. },
  1600. "orientation": {
  1601. "type": "double",
  1602. "value": "0;-1.3639275316029038"
  1603. },
  1604. "scale": {
  1605. "type": "list<double>",
  1606. "value": [
  1607. 1,
  1608. 1
  1609. ]
  1610. },
  1611. "arrow": "arrowTail",
  1612. "arrowType": "arrow-empty-large",
  1613. "$linkDecoratorInfo": {
  1614. "type": "map<string,double>",
  1615. "value": {
  1616. "xratio": 1,
  1617. "yoffset": -8
  1618. }
  1619. }
  1620. },
  1621. "279": {
  1622. "r": {
  1623. "type": "double",
  1624. "value": 5
  1625. },
  1626. "style": {
  1627. "type": "map<string,string>",
  1628. "value": {
  1629. "stroke": "#000000",
  1630. "fill": "#ffffff",
  1631. "opacity": 0,
  1632. "stroke-width": 1
  1633. }
  1634. },
  1635. "mapper": {
  1636. "type": "code",
  1637. "value": ""
  1638. },
  1639. "parser": {
  1640. "type": "code",
  1641. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1642. },
  1643. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1644. "position": {
  1645. "type": "list<double>",
  1646. "value": [
  1647. "0;41.88062925085808,99.97166737441361%",
  1648. "0;-5.998574872068048,-2.38027779462887%"
  1649. ]
  1650. },
  1651. "orientation": {
  1652. "type": "double",
  1653. "value": "0;-1.3639275316029038"
  1654. },
  1655. "scale": {
  1656. "type": "list<double>",
  1657. "value": [
  1658. 1,
  1659. 1
  1660. ]
  1661. },
  1662. "arrow": "arrowTail",
  1663. "arrowType": "circle-white",
  1664. "$linkDecoratorInfo": {
  1665. "type": "map<string,double>",
  1666. "value": {
  1667. "xratio": 1,
  1668. "yoffset": -5
  1669. }
  1670. }
  1671. },
  1672. "280": {
  1673. "segments": {
  1674. "type": "string",
  1675. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1676. },
  1677. "style": {
  1678. "type": "map<string,string>",
  1679. "value": {
  1680. "stroke": "#000000",
  1681. "fill": "#ffffff",
  1682. "opacity": 0,
  1683. "stroke-width": 1
  1684. }
  1685. },
  1686. "mapper": {
  1687. "type": "code",
  1688. "value": ""
  1689. },
  1690. "parser": {
  1691. "type": "code",
  1692. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1693. },
  1694. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1695. "position": {
  1696. "type": "list<double>",
  1697. "value": [
  1698. "0;41.7616153611267,99.97166737441361%",
  1699. "0;-10.997158240788735,-2.38027779462887%"
  1700. ]
  1701. },
  1702. "orientation": {
  1703. "type": "double",
  1704. "value": "0;-1.3639275316029038"
  1705. },
  1706. "scale": {
  1707. "type": "list<double>",
  1708. "value": [
  1709. 1,
  1710. 1
  1711. ]
  1712. },
  1713. "arrow": "arrowTail",
  1714. "arrowType": "diamond-white-large",
  1715. "$linkDecoratorInfo": {
  1716. "type": "map<string,double>",
  1717. "value": {
  1718. "xratio": 1,
  1719. "yoffset": -10
  1720. }
  1721. }
  1722. },
  1723. "281": {
  1724. "segments": {
  1725. "type": "string",
  1726. "value": "m0,0 l10,4 l-10,4"
  1727. },
  1728. "style": {
  1729. "type": "map<string,string>",
  1730. "value": {
  1731. "stroke": "#000000",
  1732. "fill": "#000000",
  1733. "fill-opacity": 0,
  1734. "stroke-width": 1,
  1735. "opacity": 0
  1736. }
  1737. },
  1738. "mapper": {
  1739. "type": "code",
  1740. "value": ""
  1741. },
  1742. "parser": {
  1743. "type": "code",
  1744. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1745. },
  1746. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1747. "position": {
  1748. "type": "list<double>",
  1749. "value": [
  1750. "0;41.90443202880442,99.97166737441361%",
  1751. "0;-4.998858198323887,-2.38027779462887%"
  1752. ]
  1753. },
  1754. "orientation": {
  1755. "type": "double",
  1756. "value": "0;-1.3639275316029038"
  1757. },
  1758. "scale": {
  1759. "type": "list<double>",
  1760. "value": [
  1761. 1,
  1762. 1
  1763. ]
  1764. },
  1765. "arrow": "arrowTail",
  1766. "arrowType": "arrow-empty",
  1767. "$linkDecoratorInfo": {
  1768. "type": "map<string,double>",
  1769. "value": {
  1770. "xratio": 1,
  1771. "yoffset": -4
  1772. }
  1773. }
  1774. },
  1775. "282": {
  1776. "segments": {
  1777. "type": "string",
  1778. "value": "m0,0 l10,5 l-10,5 z"
  1779. },
  1780. "style": {
  1781. "type": "map<string,string>",
  1782. "value": {
  1783. "stroke": "#000000",
  1784. "fill": "#ffffff",
  1785. "opacity": 0,
  1786. "stroke-width": 1
  1787. }
  1788. },
  1789. "mapper": {
  1790. "type": "code",
  1791. "value": ""
  1792. },
  1793. "parser": {
  1794. "type": "code",
  1795. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1796. },
  1797. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1798. "position": {
  1799. "type": "list<double>",
  1800. "value": [
  1801. "0;41.88062925085808,99.97166737441361%",
  1802. "0;-5.998574872068048,-2.38027779462887%"
  1803. ]
  1804. },
  1805. "orientation": {
  1806. "type": "double",
  1807. "value": "0;-1.3639275316029038"
  1808. },
  1809. "scale": {
  1810. "type": "list<double>",
  1811. "value": [
  1812. 1,
  1813. 1
  1814. ]
  1815. },
  1816. "arrow": "arrowTail",
  1817. "arrowType": "triangle-white",
  1818. "$linkDecoratorInfo": {
  1819. "type": "map<string,double>",
  1820. "value": {
  1821. "xratio": 1,
  1822. "yoffset": -5
  1823. }
  1824. }
  1825. },
  1826. "283": {
  1827. "segments": {
  1828. "type": "string",
  1829. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1830. },
  1831. "style": {
  1832. "type": "map<string,string>",
  1833. "value": {
  1834. "stroke": "#000000",
  1835. "fill": "#ffffff",
  1836. "opacity": 0,
  1837. "stroke-width": 1
  1838. }
  1839. },
  1840. "mapper": {
  1841. "type": "code",
  1842. "value": ""
  1843. },
  1844. "parser": {
  1845. "type": "code",
  1846. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1847. },
  1848. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1849. "position": {
  1850. "type": "list<double>",
  1851. "value": [
  1852. "0;-42.11901388973149,0%",
  1853. "0;-3.9985833687206878,0%"
  1854. ]
  1855. },
  1856. "orientation": {
  1857. "type": "double",
  1858. "value": "0;-1.3639275316029187"
  1859. },
  1860. "scale": {
  1861. "type": "list<double>",
  1862. "value": [
  1863. 1,
  1864. 1
  1865. ]
  1866. },
  1867. "arrow": "arrowHead",
  1868. "arrowType": "diamond-white",
  1869. "$linkDecoratorInfo": {
  1870. "type": "map<string,double>",
  1871. "value": {
  1872. "xratio": -1,
  1873. "yoffset": -5
  1874. }
  1875. }
  1876. },
  1877. "284": {
  1878. "segments": {
  1879. "type": "string",
  1880. "value": "m0,0 l-10,5 l10,5 z"
  1881. },
  1882. "style": {
  1883. "type": "map<string,string>",
  1884. "value": {
  1885. "stroke": "#000000",
  1886. "fill": "#ffffff",
  1887. "opacity": 0,
  1888. "stroke-width": 1
  1889. }
  1890. },
  1891. "mapper": {
  1892. "type": "code",
  1893. "value": ""
  1894. },
  1895. "parser": {
  1896. "type": "code",
  1897. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1898. },
  1899. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1900. "position": {
  1901. "type": "list<double>",
  1902. "value": [
  1903. "0;-42.11901388973149,0%",
  1904. "0;-3.9985833687206878,0%"
  1905. ]
  1906. },
  1907. "orientation": {
  1908. "type": "double",
  1909. "value": "0;-1.3639275316029187"
  1910. },
  1911. "scale": {
  1912. "type": "list<double>",
  1913. "value": [
  1914. 1,
  1915. 1
  1916. ]
  1917. },
  1918. "arrow": "arrowHead",
  1919. "arrowType": "triangle-white",
  1920. "$linkDecoratorInfo": {
  1921. "type": "map<string,double>",
  1922. "value": {
  1923. "xratio": -1,
  1924. "yoffset": -5
  1925. }
  1926. }
  1927. },
  1928. "285": {
  1929. "segments": {
  1930. "type": "string",
  1931. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1932. },
  1933. "style": {
  1934. "type": "map<string,string>",
  1935. "value": {
  1936. "stroke": "#000000",
  1937. "fill": "#000000",
  1938. "opacity": 0,
  1939. "stroke-width": 1
  1940. }
  1941. },
  1942. "mapper": {
  1943. "type": "code",
  1944. "value": ""
  1945. },
  1946. "parser": {
  1947. "type": "code",
  1948. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1949. },
  1950. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1951. "position": {
  1952. "type": "list<double>",
  1953. "value": [
  1954. "0;-42.11901388973149,0%",
  1955. "0;-3.9985833687206878,0%"
  1956. ]
  1957. },
  1958. "orientation": {
  1959. "type": "double",
  1960. "value": "0;-1.3639275316029187"
  1961. },
  1962. "scale": {
  1963. "type": "list<double>",
  1964. "value": [
  1965. 1,
  1966. 1
  1967. ]
  1968. },
  1969. "arrow": "arrowHead",
  1970. "arrowType": "diamond-black",
  1971. "$linkDecoratorInfo": {
  1972. "type": "map<string,double>",
  1973. "value": {
  1974. "xratio": -1,
  1975. "yoffset": -5
  1976. }
  1977. }
  1978. },
  1979. "286": {
  1980. "r": {
  1981. "type": "double",
  1982. "value": 10
  1983. },
  1984. "style": {
  1985. "type": "map<string,string>",
  1986. "value": {
  1987. "stroke": "#000000",
  1988. "fill": "#000000",
  1989. "opacity": 0,
  1990. "stroke-width": 1
  1991. }
  1992. },
  1993. "mapper": {
  1994. "type": "code",
  1995. "value": ""
  1996. },
  1997. "parser": {
  1998. "type": "code",
  1999. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2000. },
  2001. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2002. "position": {
  2003. "type": "list<double>",
  2004. "value": [
  2005. "0;-42.23802777946287,0%",
  2006. "0;-8.997166737441376,0%"
  2007. ]
  2008. },
  2009. "orientation": {
  2010. "type": "double",
  2011. "value": "0;-1.3639275316029187"
  2012. },
  2013. "scale": {
  2014. "type": "list<double>",
  2015. "value": [
  2016. 1,
  2017. 1
  2018. ]
  2019. },
  2020. "arrow": "arrowHead",
  2021. "arrowType": "circle-black-large",
  2022. "$linkDecoratorInfo": {
  2023. "type": "map<string,double>",
  2024. "value": {
  2025. "xratio": -1,
  2026. "yoffset": -10
  2027. }
  2028. }
  2029. },
  2030. "287": {
  2031. "segments": {
  2032. "type": "string",
  2033. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  2034. },
  2035. "style": {
  2036. "type": "map<string,string>",
  2037. "value": {
  2038. "stroke": "#000000",
  2039. "fill": "#000000",
  2040. "opacity": 0,
  2041. "stroke-width": 1
  2042. }
  2043. },
  2044. "mapper": {
  2045. "type": "code",
  2046. "value": ""
  2047. },
  2048. "parser": {
  2049. "type": "code",
  2050. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2051. },
  2052. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2053. "position": {
  2054. "type": "list<double>",
  2055. "value": [
  2056. "0;-42.190422223570295,0%",
  2057. "0;-6.997733389953112,0%"
  2058. ]
  2059. },
  2060. "orientation": {
  2061. "type": "double",
  2062. "value": "0;-1.3639275316029187"
  2063. },
  2064. "scale": {
  2065. "type": "list<double>",
  2066. "value": [
  2067. 1,
  2068. 1
  2069. ]
  2070. },
  2071. "arrow": "arrowHead",
  2072. "arrowType": "arrow-black-large",
  2073. "$linkDecoratorInfo": {
  2074. "type": "map<string,double>",
  2075. "value": {
  2076. "xratio": -1,
  2077. "yoffset": -8
  2078. }
  2079. }
  2080. },
  2081. "288": {
  2082. "segments": {
  2083. "type": "string",
  2084. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  2085. },
  2086. "style": {
  2087. "type": "map<string,string>",
  2088. "value": {
  2089. "stroke": "#000000",
  2090. "fill": "#000000",
  2091. "opacity": 0,
  2092. "stroke-width": 1
  2093. }
  2094. },
  2095. "mapper": {
  2096. "type": "code",
  2097. "value": ""
  2098. },
  2099. "parser": {
  2100. "type": "code",
  2101. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2102. },
  2103. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2104. "position": {
  2105. "type": "list<double>",
  2106. "value": [
  2107. "0;-42.09521111178515,0%",
  2108. "0;-2.9988666949765275,0%"
  2109. ]
  2110. },
  2111. "orientation": {
  2112. "type": "double",
  2113. "value": "0;-1.3639275316029187"
  2114. },
  2115. "scale": {
  2116. "type": "list<double>",
  2117. "value": [
  2118. 1,
  2119. 1
  2120. ]
  2121. },
  2122. "arrow": "arrowHead",
  2123. "arrowType": "arrow-black",
  2124. "$linkDecoratorInfo": {
  2125. "type": "map<string,double>",
  2126. "value": {
  2127. "xratio": -1,
  2128. "yoffset": -4
  2129. }
  2130. }
  2131. },
  2132. "289": {
  2133. "segments": {
  2134. "type": "string",
  2135. "value": "m0,0 l-20,10 l20,10 z"
  2136. },
  2137. "style": {
  2138. "type": "map<string,string>",
  2139. "value": {
  2140. "stroke": "#000000",
  2141. "fill": "#ffffff",
  2142. "opacity": 0,
  2143. "stroke-width": 1
  2144. }
  2145. },
  2146. "mapper": {
  2147. "type": "code",
  2148. "value": ""
  2149. },
  2150. "parser": {
  2151. "type": "code",
  2152. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2153. },
  2154. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2155. "position": {
  2156. "type": "list<double>",
  2157. "value": [
  2158. "0;-42.23802777946287,0%",
  2159. "0;-8.997166737441376,0%"
  2160. ]
  2161. },
  2162. "orientation": {
  2163. "type": "double",
  2164. "value": "0;-1.3639275316029187"
  2165. },
  2166. "scale": {
  2167. "type": "list<double>",
  2168. "value": [
  2169. 1,
  2170. 1
  2171. ]
  2172. },
  2173. "arrow": "arrowHead",
  2174. "arrowType": "triangle-white-large",
  2175. "$linkDecoratorInfo": {
  2176. "type": "map<string,double>",
  2177. "value": {
  2178. "xratio": -1,
  2179. "yoffset": -10
  2180. }
  2181. }
  2182. },
  2183. "290": {
  2184. "segments": {
  2185. "type": "string",
  2186. "value": "m0,0 l-20,10 l20,10 z"
  2187. },
  2188. "style": {
  2189. "type": "map<string,string>",
  2190. "value": {
  2191. "stroke": "#000000",
  2192. "fill": "#000000",
  2193. "opacity": 0,
  2194. "stroke-width": 1
  2195. }
  2196. },
  2197. "mapper": {
  2198. "type": "code",
  2199. "value": ""
  2200. },
  2201. "parser": {
  2202. "type": "code",
  2203. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2204. },
  2205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2206. "position": {
  2207. "type": "list<double>",
  2208. "value": [
  2209. "0;-42.23802777946287,0%",
  2210. "0;-8.997166737441376,0%"
  2211. ]
  2212. },
  2213. "orientation": {
  2214. "type": "double",
  2215. "value": "0;-1.3639275316029187"
  2216. },
  2217. "scale": {
  2218. "type": "list<double>",
  2219. "value": [
  2220. 1,
  2221. 1
  2222. ]
  2223. },
  2224. "arrow": "arrowHead",
  2225. "arrowType": "triangle-black-large",
  2226. "$linkDecoratorInfo": {
  2227. "type": "map<string,double>",
  2228. "value": {
  2229. "xratio": -1,
  2230. "yoffset": -10
  2231. }
  2232. }
  2233. },
  2234. "291": {
  2235. "r": {
  2236. "type": "double",
  2237. "value": 5
  2238. },
  2239. "style": {
  2240. "type": "map<string,string>",
  2241. "value": {
  2242. "stroke": "#000000",
  2243. "fill": "#000000",
  2244. "opacity": 0,
  2245. "stroke-width": 1
  2246. }
  2247. },
  2248. "mapper": {
  2249. "type": "code",
  2250. "value": ""
  2251. },
  2252. "parser": {
  2253. "type": "code",
  2254. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2255. },
  2256. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2257. "position": {
  2258. "type": "list<double>",
  2259. "value": [
  2260. "0;-42.11901388973149,0%",
  2261. "0;-3.9985833687206878,0%"
  2262. ]
  2263. },
  2264. "orientation": {
  2265. "type": "double",
  2266. "value": "0;-1.3639275316029187"
  2267. },
  2268. "scale": {
  2269. "type": "list<double>",
  2270. "value": [
  2271. 1,
  2272. 1
  2273. ]
  2274. },
  2275. "arrow": "arrowHead",
  2276. "arrowType": "circle-black",
  2277. "$linkDecoratorInfo": {
  2278. "type": "map<string,double>",
  2279. "value": {
  2280. "xratio": -1,
  2281. "yoffset": -5
  2282. }
  2283. }
  2284. },
  2285. "292": {
  2286. "r": {
  2287. "type": "double",
  2288. "value": 5
  2289. },
  2290. "style": {
  2291. "type": "map<string,string>",
  2292. "value": {
  2293. "stroke": "#000000",
  2294. "fill": "#ffffff",
  2295. "opacity": 0,
  2296. "stroke-width": 1
  2297. }
  2298. },
  2299. "mapper": {
  2300. "type": "code",
  2301. "value": ""
  2302. },
  2303. "parser": {
  2304. "type": "code",
  2305. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2306. },
  2307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2308. "position": {
  2309. "type": "list<double>",
  2310. "value": [
  2311. "0;-42.11901388973149,0%",
  2312. "0;-3.9985833687206878,0%"
  2313. ]
  2314. },
  2315. "orientation": {
  2316. "type": "double",
  2317. "value": "0;-1.3639275316029187"
  2318. },
  2319. "scale": {
  2320. "type": "list<double>",
  2321. "value": [
  2322. 1,
  2323. 1
  2324. ]
  2325. },
  2326. "arrow": "arrowHead",
  2327. "arrowType": "circle-white",
  2328. "$linkDecoratorInfo": {
  2329. "type": "map<string,double>",
  2330. "value": {
  2331. "xratio": -1,
  2332. "yoffset": -5
  2333. }
  2334. }
  2335. },
  2336. "293": {
  2337. "r": {
  2338. "type": "double",
  2339. "value": 10
  2340. },
  2341. "style": {
  2342. "type": "map<string,string>",
  2343. "value": {
  2344. "stroke": "#000000",
  2345. "fill": "#ffffff",
  2346. "opacity": 0,
  2347. "stroke-width": 1
  2348. }
  2349. },
  2350. "mapper": {
  2351. "type": "code",
  2352. "value": ""
  2353. },
  2354. "parser": {
  2355. "type": "code",
  2356. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2357. },
  2358. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2359. "position": {
  2360. "type": "list<double>",
  2361. "value": [
  2362. "0;-42.23802777946287,0%",
  2363. "0;-8.997166737441376,0%"
  2364. ]
  2365. },
  2366. "orientation": {
  2367. "type": "double",
  2368. "value": "0;-1.3639275316029187"
  2369. },
  2370. "scale": {
  2371. "type": "list<double>",
  2372. "value": [
  2373. 1,
  2374. 1
  2375. ]
  2376. },
  2377. "arrow": "arrowHead",
  2378. "arrowType": "circle-white-large",
  2379. "$linkDecoratorInfo": {
  2380. "type": "map<string,double>",
  2381. "value": {
  2382. "xratio": -1,
  2383. "yoffset": -10
  2384. }
  2385. }
  2386. },
  2387. "294": {
  2388. "segments": {
  2389. "type": "string",
  2390. "value": "m0,0 l-20,8 l20,8"
  2391. },
  2392. "style": {
  2393. "type": "map<string,string>",
  2394. "value": {
  2395. "stroke": "#000000",
  2396. "fill": "#000000",
  2397. "fill-opacity": 0,
  2398. "stroke-width": 1,
  2399. "opacity": 0
  2400. }
  2401. },
  2402. "mapper": {
  2403. "type": "code",
  2404. "value": ""
  2405. },
  2406. "parser": {
  2407. "type": "code",
  2408. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2409. },
  2410. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2411. "position": {
  2412. "type": "list<double>",
  2413. "value": [
  2414. "0;-42.190422223570295,0%",
  2415. "0;-6.997733389953112,0%"
  2416. ]
  2417. },
  2418. "orientation": {
  2419. "type": "double",
  2420. "value": "0;-1.3639275316029187"
  2421. },
  2422. "scale": {
  2423. "type": "list<double>",
  2424. "value": [
  2425. 1,
  2426. 1
  2427. ]
  2428. },
  2429. "arrow": "arrowHead",
  2430. "arrowType": "arrow-empty-large",
  2431. "$linkDecoratorInfo": {
  2432. "type": "map<string,double>",
  2433. "value": {
  2434. "xratio": -1,
  2435. "yoffset": -8
  2436. }
  2437. }
  2438. },
  2439. "295": {
  2440. "segments": {
  2441. "type": "string",
  2442. "value": "m0,0 l-10,4 l10,4"
  2443. },
  2444. "style": {
  2445. "type": "map<string,string>",
  2446. "value": {
  2447. "stroke": "#000000",
  2448. "fill": "#000000",
  2449. "fill-opacity": 0,
  2450. "stroke-width": 1,
  2451. "opacity": 0
  2452. }
  2453. },
  2454. "mapper": {
  2455. "type": "code",
  2456. "value": ""
  2457. },
  2458. "parser": {
  2459. "type": "code",
  2460. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2461. },
  2462. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2463. "position": {
  2464. "type": "list<double>",
  2465. "value": [
  2466. "0;-42.09521111178515,0%",
  2467. "0;-2.9988666949765275,0%"
  2468. ]
  2469. },
  2470. "orientation": {
  2471. "type": "double",
  2472. "value": "0;-1.3639275316029187"
  2473. },
  2474. "scale": {
  2475. "type": "list<double>",
  2476. "value": [
  2477. 1,
  2478. 1
  2479. ]
  2480. },
  2481. "arrow": "arrowHead",
  2482. "arrowType": "arrow-empty",
  2483. "$linkDecoratorInfo": {
  2484. "type": "map<string,double>",
  2485. "value": {
  2486. "xratio": -1,
  2487. "yoffset": -4
  2488. }
  2489. }
  2490. },
  2491. "296": {
  2492. "segments": {
  2493. "type": "string",
  2494. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2495. },
  2496. "style": {
  2497. "type": "map<string,string>",
  2498. "value": {
  2499. "stroke": "#000000",
  2500. "fill": "#000000",
  2501. "opacity": 0,
  2502. "stroke-width": 1
  2503. }
  2504. },
  2505. "mapper": {
  2506. "type": "code",
  2507. "value": ""
  2508. },
  2509. "parser": {
  2510. "type": "code",
  2511. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2512. },
  2513. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2514. "position": {
  2515. "type": "list<double>",
  2516. "value": [
  2517. "0;-42.23802777946287,0%",
  2518. "0;-8.997166737441376,0%"
  2519. ]
  2520. },
  2521. "orientation": {
  2522. "type": "double",
  2523. "value": "0;-1.3639275316029187"
  2524. },
  2525. "scale": {
  2526. "type": "list<double>",
  2527. "value": [
  2528. 1,
  2529. 1
  2530. ]
  2531. },
  2532. "arrow": "arrowHead",
  2533. "arrowType": "diamond-black-large",
  2534. "$linkDecoratorInfo": {
  2535. "type": "map<string,double>",
  2536. "value": {
  2537. "xratio": -1,
  2538. "yoffset": -10
  2539. }
  2540. }
  2541. },
  2542. "297": {
  2543. "segments": {
  2544. "type": "string",
  2545. "value": "m0,0 l-10,4 l10,4 z"
  2546. },
  2547. "style": {
  2548. "type": "map<string,string>",
  2549. "value": {
  2550. "stroke": "#000000",
  2551. "fill": "#000000",
  2552. "opacity": 0,
  2553. "stroke-width": 1
  2554. }
  2555. },
  2556. "mapper": {
  2557. "type": "code",
  2558. "value": ""
  2559. },
  2560. "parser": {
  2561. "type": "code",
  2562. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2563. },
  2564. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2565. "position": {
  2566. "type": "list<double>",
  2567. "value": [
  2568. "0;-42.09521111178515,0%",
  2569. "0;-2.9988666949765275,0%"
  2570. ]
  2571. },
  2572. "orientation": {
  2573. "type": "double",
  2574. "value": "0;-1.3639275316029187"
  2575. },
  2576. "scale": {
  2577. "type": "list<double>",
  2578. "value": [
  2579. 1,
  2580. 1
  2581. ]
  2582. },
  2583. "arrow": "arrowHead",
  2584. "arrowType": "triangle-black",
  2585. "$linkDecoratorInfo": {
  2586. "type": "map<string,double>",
  2587. "value": {
  2588. "xratio": -1,
  2589. "yoffset": -4
  2590. }
  2591. }
  2592. },
  2593. "298": {
  2594. "segments": {
  2595. "type": "string",
  2596. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2597. },
  2598. "style": {
  2599. "type": "map<string,string>",
  2600. "value": {
  2601. "stroke": "#000000",
  2602. "fill": "#ffffff",
  2603. "opacity": 0,
  2604. "stroke-width": 1
  2605. }
  2606. },
  2607. "mapper": {
  2608. "type": "code",
  2609. "value": ""
  2610. },
  2611. "parser": {
  2612. "type": "code",
  2613. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2614. },
  2615. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2616. "position": {
  2617. "type": "list<double>",
  2618. "value": [
  2619. "0;-42.23802777946287,0%",
  2620. "0;-8.997166737441376,0%"
  2621. ]
  2622. },
  2623. "orientation": {
  2624. "type": "double",
  2625. "value": "0;-1.3639275316029187"
  2626. },
  2627. "scale": {
  2628. "type": "list<double>",
  2629. "value": [
  2630. 1,
  2631. 1
  2632. ]
  2633. },
  2634. "arrow": "arrowHead",
  2635. "arrowType": "diamond-white-large",
  2636. "$linkDecoratorInfo": {
  2637. "type": "map<string,double>",
  2638. "value": {
  2639. "xratio": -1,
  2640. "yoffset": -10
  2641. }
  2642. }
  2643. }
  2644. },
  2645. "edges": []
  2646. }
  2647. },
  2648. "$asuri": {
  2649. "type": "string",
  2650. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/105.instance"
  2651. },
  2652. "$segments": {
  2653. "type": "map<string,list<string>>",
  2654. "value": {
  2655. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon/98.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/105.instance": "M776,270L818,269",
  2656. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/105.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon/84.instance": "M818.0748213933932,268.99821853825256L859.9996431405896,268.00000849665264"
  2657. }
  2658. },
  2659. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  2660. },
  2661. "106": {
  2662. "link-style": {
  2663. "type": "map<string,string>",
  2664. "value": {
  2665. "stroke": "#000000",
  2666. "stroke-dasharray": "",
  2667. "stroke-opacity": 1,
  2668. "stroke-width": 2
  2669. }
  2670. },
  2671. "arrowHead": {
  2672. "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)",
  2673. "value": "custom"
  2674. },
  2675. "arrowTail": {
  2676. "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)",
  2677. "value": "arrow-black"
  2678. },
  2679. "typename": {
  2680. "type": "string",
  2681. "value": "initialLink"
  2682. },
  2683. "position": {
  2684. "type": "list<double>",
  2685. "value": [
  2686. 722.505555453945,
  2687. 181.64999725651577
  2688. ]
  2689. },
  2690. "orientation": {
  2691. "type": "double",
  2692. "value": 0
  2693. },
  2694. "scale": {
  2695. "type": "list<double>",
  2696. "value": [
  2697. 1,
  2698. 1
  2699. ]
  2700. },
  2701. "mapper": {
  2702. "type": "code",
  2703. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2704. },
  2705. "parser": {
  2706. "type": "code",
  2707. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2708. },
  2709. "$contents": {
  2710. "type": "map<string,*>",
  2711. "value": {
  2712. "nodes": {
  2713. "267": {
  2714. "segments": {
  2715. "type": "string",
  2716. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2717. },
  2718. "style": {
  2719. "type": "map<string,string>",
  2720. "value": {
  2721. "stroke": "#000000",
  2722. "fill": "#000000",
  2723. "opacity": 0,
  2724. "stroke-width": 1
  2725. }
  2726. },
  2727. "mapper": {
  2728. "type": "code",
  2729. "value": ""
  2730. },
  2731. "parser": {
  2732. "type": "code",
  2733. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2734. },
  2735. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2736. "position": {
  2737. "type": "list<double>",
  2738. "value": [
  2739. "0;4.491703881122021,3.7011660509880575%",
  2740. "0;13.201956101444694,99.93148337667671%"
  2741. ]
  2742. },
  2743. "orientation": {
  2744. "type": "double",
  2745. "value": "0;87.87890360333853"
  2746. },
  2747. "scale": {
  2748. "type": "list<double>",
  2749. "value": [
  2750. 1,
  2751. 1
  2752. ]
  2753. },
  2754. "arrow": "arrowTail",
  2755. "arrowType": "arrow-black",
  2756. "$linkDecoratorInfo": {
  2757. "type": "map<string,double>",
  2758. "value": {
  2759. "xratio": 1,
  2760. "yoffset": -4
  2761. }
  2762. }
  2763. },
  2764. "268": {
  2765. "segments": {
  2766. "type": "string",
  2767. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2768. },
  2769. "style": {
  2770. "type": "map<string,string>",
  2771. "value": {
  2772. "stroke": "#000000",
  2773. "fill": "#000000",
  2774. "opacity": 0,
  2775. "stroke-width": 1
  2776. }
  2777. },
  2778. "mapper": {
  2779. "type": "code",
  2780. "value": ""
  2781. },
  2782. "parser": {
  2783. "type": "code",
  2784. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2785. },
  2786. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2787. "position": {
  2788. "type": "list<double>",
  2789. "value": [
  2790. "0;10.487592883722641,3.7011660509880575%",
  2791. "0;12.97988613838541,99.93148337667671%"
  2792. ]
  2793. },
  2794. "orientation": {
  2795. "type": "double",
  2796. "value": "0;87.87890360333853"
  2797. },
  2798. "scale": {
  2799. "type": "list<double>",
  2800. "value": [
  2801. 1,
  2802. 1
  2803. ]
  2804. },
  2805. "arrow": "arrowTail",
  2806. "arrowType": "diamond-black-large",
  2807. "$linkDecoratorInfo": {
  2808. "type": "map<string,double>",
  2809. "value": {
  2810. "xratio": 1,
  2811. "yoffset": -10
  2812. }
  2813. }
  2814. },
  2815. "269": {
  2816. "r": {
  2817. "type": "double",
  2818. "value": 10
  2819. },
  2820. "style": {
  2821. "type": "map<string,string>",
  2822. "value": {
  2823. "stroke": "#000000",
  2824. "fill": "#000000",
  2825. "opacity": 0,
  2826. "stroke-width": 1
  2827. }
  2828. },
  2829. "mapper": {
  2830. "type": "code",
  2831. "value": ""
  2832. },
  2833. "parser": {
  2834. "type": "code",
  2835. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2836. },
  2837. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2838. "position": {
  2839. "type": "list<double>",
  2840. "value": [
  2841. "0;10.487592883722641,3.7011660509880575%",
  2842. "0;12.97988613838541,99.93148337667671%"
  2843. ]
  2844. },
  2845. "orientation": {
  2846. "type": "double",
  2847. "value": "0;87.87890360333853"
  2848. },
  2849. "scale": {
  2850. "type": "list<double>",
  2851. "value": [
  2852. 1,
  2853. 1
  2854. ]
  2855. },
  2856. "arrow": "arrowTail",
  2857. "arrowType": "circle-black-large",
  2858. "$linkDecoratorInfo": {
  2859. "type": "map<string,double>",
  2860. "value": {
  2861. "xratio": 1,
  2862. "yoffset": -10
  2863. }
  2864. }
  2865. },
  2866. "270": {
  2867. "r": {
  2868. "type": "double",
  2869. "value": 10
  2870. },
  2871. "style": {
  2872. "type": "map<string,string>",
  2873. "value": {
  2874. "stroke": "#000000",
  2875. "fill": "#ffffff",
  2876. "opacity": 0,
  2877. "stroke-width": 1
  2878. }
  2879. },
  2880. "mapper": {
  2881. "type": "code",
  2882. "value": ""
  2883. },
  2884. "parser": {
  2885. "type": "code",
  2886. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2887. },
  2888. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2889. "position": {
  2890. "type": "list<double>",
  2891. "value": [
  2892. "0;10.487592883722641,3.7011660509880575%",
  2893. "0;12.97988613838541,99.93148337667671%"
  2894. ]
  2895. },
  2896. "orientation": {
  2897. "type": "double",
  2898. "value": "0;87.87890360333853"
  2899. },
  2900. "scale": {
  2901. "type": "list<double>",
  2902. "value": [
  2903. 1,
  2904. 1
  2905. ]
  2906. },
  2907. "arrow": "arrowTail",
  2908. "arrowType": "circle-white-large",
  2909. "$linkDecoratorInfo": {
  2910. "type": "map<string,double>",
  2911. "value": {
  2912. "xratio": 1,
  2913. "yoffset": -10
  2914. }
  2915. }
  2916. },
  2917. "271": {
  2918. "r": {
  2919. "type": "double",
  2920. "value": 5
  2921. },
  2922. "style": {
  2923. "type": "map<string,string>",
  2924. "value": {
  2925. "stroke": "#000000",
  2926. "fill": "#000000",
  2927. "opacity": 0,
  2928. "stroke-width": 1
  2929. }
  2930. },
  2931. "mapper": {
  2932. "type": "code",
  2933. "value": ""
  2934. },
  2935. "parser": {
  2936. "type": "code",
  2937. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2938. },
  2939. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2940. "position": {
  2941. "type": "list<double>",
  2942. "value": [
  2943. "0;5.49101871488881,3.7011660509880575%",
  2944. "0;13.164944440934818,99.93148337667671%"
  2945. ]
  2946. },
  2947. "orientation": {
  2948. "type": "double",
  2949. "value": "0;87.87890360333853"
  2950. },
  2951. "scale": {
  2952. "type": "list<double>",
  2953. "value": [
  2954. 1,
  2955. 1
  2956. ]
  2957. },
  2958. "arrow": "arrowTail",
  2959. "arrowType": "circle-black",
  2960. "$linkDecoratorInfo": {
  2961. "type": "map<string,double>",
  2962. "value": {
  2963. "xratio": 1,
  2964. "yoffset": -5
  2965. }
  2966. }
  2967. },
  2968. "272": {
  2969. "segments": {
  2970. "type": "string",
  2971. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2972. },
  2973. "style": {
  2974. "type": "map<string,string>",
  2975. "value": {
  2976. "stroke": "#000000",
  2977. "fill": "#000000",
  2978. "opacity": 0,
  2979. "stroke-width": 1
  2980. }
  2981. },
  2982. "mapper": {
  2983. "type": "code",
  2984. "value": ""
  2985. },
  2986. "parser": {
  2987. "type": "code",
  2988. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2989. },
  2990. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2991. "position": {
  2992. "type": "list<double>",
  2993. "value": [
  2994. "0;5.49101871488881,3.7011660509880575%",
  2995. "0;13.164944440934818,99.93148337667671%"
  2996. ]
  2997. },
  2998. "orientation": {
  2999. "type": "double",
  3000. "value": "0;87.87890360333853"
  3001. },
  3002. "scale": {
  3003. "type": "list<double>",
  3004. "value": [
  3005. 1,
  3006. 1
  3007. ]
  3008. },
  3009. "arrow": "arrowTail",
  3010. "arrowType": "diamond-black",
  3011. "$linkDecoratorInfo": {
  3012. "type": "map<string,double>",
  3013. "value": {
  3014. "xratio": 1,
  3015. "yoffset": -5
  3016. }
  3017. }
  3018. },
  3019. "273": {
  3020. "segments": {
  3021. "type": "string",
  3022. "value": "m0,0 l20,10 l-20,10 z"
  3023. },
  3024. "style": {
  3025. "type": "map<string,string>",
  3026. "value": {
  3027. "stroke": "#000000",
  3028. "fill": "#000000",
  3029. "opacity": 0,
  3030. "stroke-width": 1
  3031. }
  3032. },
  3033. "mapper": {
  3034. "type": "code",
  3035. "value": ""
  3036. },
  3037. "parser": {
  3038. "type": "code",
  3039. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3040. },
  3041. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3042. "position": {
  3043. "type": "list<double>",
  3044. "value": [
  3045. "0;10.487592883722641,3.7011660509880575%",
  3046. "0;12.97988613838541,99.93148337667671%"
  3047. ]
  3048. },
  3049. "orientation": {
  3050. "type": "double",
  3051. "value": "0;87.87890360333853"
  3052. },
  3053. "scale": {
  3054. "type": "list<double>",
  3055. "value": [
  3056. 1,
  3057. 1
  3058. ]
  3059. },
  3060. "arrow": "arrowTail",
  3061. "arrowType": "triangle-black-large",
  3062. "$linkDecoratorInfo": {
  3063. "type": "map<string,double>",
  3064. "value": {
  3065. "xratio": 1,
  3066. "yoffset": -10
  3067. }
  3068. }
  3069. },
  3070. "274": {
  3071. "segments": {
  3072. "type": "string",
  3073. "value": "m0,0 l10,4 l-10,4 z"
  3074. },
  3075. "style": {
  3076. "type": "map<string,string>",
  3077. "value": {
  3078. "stroke": "#000000",
  3079. "fill": "#000000",
  3080. "opacity": 0,
  3081. "stroke-width": 1
  3082. }
  3083. },
  3084. "mapper": {
  3085. "type": "code",
  3086. "value": ""
  3087. },
  3088. "parser": {
  3089. "type": "code",
  3090. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3091. },
  3092. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3093. "position": {
  3094. "type": "list<double>",
  3095. "value": [
  3096. "0;4.491703881122021,3.7011660509880575%",
  3097. "0;13.201956101444694,99.93148337667671%"
  3098. ]
  3099. },
  3100. "orientation": {
  3101. "type": "double",
  3102. "value": "0;87.87890360333853"
  3103. },
  3104. "scale": {
  3105. "type": "list<double>",
  3106. "value": [
  3107. 1,
  3108. 1
  3109. ]
  3110. },
  3111. "arrow": "arrowTail",
  3112. "arrowType": "triangle-black",
  3113. "$linkDecoratorInfo": {
  3114. "type": "map<string,double>",
  3115. "value": {
  3116. "xratio": 1,
  3117. "yoffset": -4
  3118. }
  3119. }
  3120. },
  3121. "275": {
  3122. "segments": {
  3123. "type": "string",
  3124. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  3125. },
  3126. "style": {
  3127. "type": "map<string,string>",
  3128. "value": {
  3129. "stroke": "#000000",
  3130. "fill": "#000000",
  3131. "opacity": 0,
  3132. "stroke-width": 1
  3133. }
  3134. },
  3135. "mapper": {
  3136. "type": "code",
  3137. "value": ""
  3138. },
  3139. "parser": {
  3140. "type": "code",
  3141. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3142. },
  3143. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3144. "position": {
  3145. "type": "list<double>",
  3146. "value": [
  3147. "0;8.488963216189063,3.7011660509880575%",
  3148. "0;13.05390945940519,99.93148337667671%"
  3149. ]
  3150. },
  3151. "orientation": {
  3152. "type": "double",
  3153. "value": "0;87.87890360333853"
  3154. },
  3155. "scale": {
  3156. "type": "list<double>",
  3157. "value": [
  3158. 1,
  3159. 1
  3160. ]
  3161. },
  3162. "arrow": "arrowTail",
  3163. "arrowType": "arrow-black-large",
  3164. "$linkDecoratorInfo": {
  3165. "type": "map<string,double>",
  3166. "value": {
  3167. "xratio": 1,
  3168. "yoffset": -8
  3169. }
  3170. }
  3171. },
  3172. "276": {
  3173. "segments": {
  3174. "type": "string",
  3175. "value": "m0,0 l20,10 l-20,10 z"
  3176. },
  3177. "style": {
  3178. "type": "map<string,string>",
  3179. "value": {
  3180. "stroke": "#000000",
  3181. "fill": "#ffffff",
  3182. "opacity": 0,
  3183. "stroke-width": 1
  3184. }
  3185. },
  3186. "mapper": {
  3187. "type": "code",
  3188. "value": ""
  3189. },
  3190. "parser": {
  3191. "type": "code",
  3192. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3193. },
  3194. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3195. "position": {
  3196. "type": "list<double>",
  3197. "value": [
  3198. "0;10.487592883722641,3.7011660509880575%",
  3199. "0;12.97988613838541,99.93148337667671%"
  3200. ]
  3201. },
  3202. "orientation": {
  3203. "type": "double",
  3204. "value": "0;87.87890360333853"
  3205. },
  3206. "scale": {
  3207. "type": "list<double>",
  3208. "value": [
  3209. 1,
  3210. 1
  3211. ]
  3212. },
  3213. "arrow": "arrowTail",
  3214. "arrowType": "triangle-white-large",
  3215. "$linkDecoratorInfo": {
  3216. "type": "map<string,double>",
  3217. "value": {
  3218. "xratio": 1,
  3219. "yoffset": -10
  3220. }
  3221. }
  3222. },
  3223. "277": {
  3224. "segments": {
  3225. "type": "string",
  3226. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3227. },
  3228. "style": {
  3229. "type": "map<string,string>",
  3230. "value": {
  3231. "stroke": "#000000",
  3232. "fill": "#ffffff",
  3233. "opacity": 0,
  3234. "stroke-width": 1
  3235. }
  3236. },
  3237. "mapper": {
  3238. "type": "code",
  3239. "value": ""
  3240. },
  3241. "parser": {
  3242. "type": "code",
  3243. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3244. },
  3245. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3246. "position": {
  3247. "type": "list<double>",
  3248. "value": [
  3249. "0;5.49101871488881,3.7011660509880575%",
  3250. "0;13.164944440934818,99.93148337667671%"
  3251. ]
  3252. },
  3253. "orientation": {
  3254. "type": "double",
  3255. "value": "0;87.87890360333853"
  3256. },
  3257. "scale": {
  3258. "type": "list<double>",
  3259. "value": [
  3260. 1,
  3261. 1
  3262. ]
  3263. },
  3264. "arrow": "arrowTail",
  3265. "arrowType": "diamond-white",
  3266. "$linkDecoratorInfo": {
  3267. "type": "map<string,double>",
  3268. "value": {
  3269. "xratio": 1,
  3270. "yoffset": -5
  3271. }
  3272. }
  3273. },
  3274. "278": {
  3275. "segments": {
  3276. "type": "string",
  3277. "value": "m0,0 l20,8 l-20,8"
  3278. },
  3279. "style": {
  3280. "type": "map<string,string>",
  3281. "value": {
  3282. "stroke": "#000000",
  3283. "fill": "#000000",
  3284. "fill-opacity": 0,
  3285. "stroke-width": 1,
  3286. "opacity": 0
  3287. }
  3288. },
  3289. "mapper": {
  3290. "type": "code",
  3291. "value": ""
  3292. },
  3293. "parser": {
  3294. "type": "code",
  3295. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3296. },
  3297. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3298. "position": {
  3299. "type": "list<double>",
  3300. "value": [
  3301. "0;8.488963216189063,3.7011660509880575%",
  3302. "0;13.05390945940519,99.93148337667671%"
  3303. ]
  3304. },
  3305. "orientation": {
  3306. "type": "double",
  3307. "value": "0;87.87890360333853"
  3308. },
  3309. "scale": {
  3310. "type": "list<double>",
  3311. "value": [
  3312. 1,
  3313. 1
  3314. ]
  3315. },
  3316. "arrow": "arrowTail",
  3317. "arrowType": "arrow-empty-large",
  3318. "$linkDecoratorInfo": {
  3319. "type": "map<string,double>",
  3320. "value": {
  3321. "xratio": 1,
  3322. "yoffset": -8
  3323. }
  3324. }
  3325. },
  3326. "279": {
  3327. "r": {
  3328. "type": "double",
  3329. "value": 5
  3330. },
  3331. "style": {
  3332. "type": "map<string,string>",
  3333. "value": {
  3334. "stroke": "#000000",
  3335. "fill": "#ffffff",
  3336. "opacity": 0,
  3337. "stroke-width": 1
  3338. }
  3339. },
  3340. "mapper": {
  3341. "type": "code",
  3342. "value": ""
  3343. },
  3344. "parser": {
  3345. "type": "code",
  3346. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3347. },
  3348. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3349. "position": {
  3350. "type": "list<double>",
  3351. "value": [
  3352. "0;5.49101871488881,3.7011660509880575%",
  3353. "0;13.164944440934818,99.93148337667671%"
  3354. ]
  3355. },
  3356. "orientation": {
  3357. "type": "double",
  3358. "value": "0;87.87890360333853"
  3359. },
  3360. "scale": {
  3361. "type": "list<double>",
  3362. "value": [
  3363. 1,
  3364. 1
  3365. ]
  3366. },
  3367. "arrow": "arrowTail",
  3368. "arrowType": "circle-white",
  3369. "$linkDecoratorInfo": {
  3370. "type": "map<string,double>",
  3371. "value": {
  3372. "xratio": 1,
  3373. "yoffset": -5
  3374. }
  3375. }
  3376. },
  3377. "280": {
  3378. "segments": {
  3379. "type": "string",
  3380. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3381. },
  3382. "style": {
  3383. "type": "map<string,string>",
  3384. "value": {
  3385. "stroke": "#000000",
  3386. "fill": "#ffffff",
  3387. "opacity": 0,
  3388. "stroke-width": 1
  3389. }
  3390. },
  3391. "mapper": {
  3392. "type": "code",
  3393. "value": ""
  3394. },
  3395. "parser": {
  3396. "type": "code",
  3397. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3398. },
  3399. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3400. "position": {
  3401. "type": "list<double>",
  3402. "value": [
  3403. "0;10.487592883722641,3.7011660509880575%",
  3404. "0;12.97988613838541,99.93148337667671%"
  3405. ]
  3406. },
  3407. "orientation": {
  3408. "type": "double",
  3409. "value": "0;87.87890360333853"
  3410. },
  3411. "scale": {
  3412. "type": "list<double>",
  3413. "value": [
  3414. 1,
  3415. 1
  3416. ]
  3417. },
  3418. "arrow": "arrowTail",
  3419. "arrowType": "diamond-white-large",
  3420. "$linkDecoratorInfo": {
  3421. "type": "map<string,double>",
  3422. "value": {
  3423. "xratio": 1,
  3424. "yoffset": -10
  3425. }
  3426. }
  3427. },
  3428. "281": {
  3429. "segments": {
  3430. "type": "string",
  3431. "value": "m0,0 l10,4 l-10,4"
  3432. },
  3433. "style": {
  3434. "type": "map<string,string>",
  3435. "value": {
  3436. "stroke": "#000000",
  3437. "fill": "#000000",
  3438. "fill-opacity": 0,
  3439. "stroke-width": 1,
  3440. "opacity": 0
  3441. }
  3442. },
  3443. "mapper": {
  3444. "type": "code",
  3445. "value": ""
  3446. },
  3447. "parser": {
  3448. "type": "code",
  3449. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3450. },
  3451. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3452. "position": {
  3453. "type": "list<double>",
  3454. "value": [
  3455. "0;4.491703881122021,3.7011660509880575%",
  3456. "0;13.201956101444694,99.93148337667671%"
  3457. ]
  3458. },
  3459. "orientation": {
  3460. "type": "double",
  3461. "value": "0;87.87890360333853"
  3462. },
  3463. "scale": {
  3464. "type": "list<double>",
  3465. "value": [
  3466. 1,
  3467. 1
  3468. ]
  3469. },
  3470. "arrow": "arrowTail",
  3471. "arrowType": "arrow-empty",
  3472. "$linkDecoratorInfo": {
  3473. "type": "map<string,double>",
  3474. "value": {
  3475. "xratio": 1,
  3476. "yoffset": -4
  3477. }
  3478. }
  3479. },
  3480. "282": {
  3481. "segments": {
  3482. "type": "string",
  3483. "value": "m0,0 l10,5 l-10,5 z"
  3484. },
  3485. "style": {
  3486. "type": "map<string,string>",
  3487. "value": {
  3488. "stroke": "#000000",
  3489. "fill": "#ffffff",
  3490. "opacity": 0,
  3491. "stroke-width": 1
  3492. }
  3493. },
  3494. "mapper": {
  3495. "type": "code",
  3496. "value": ""
  3497. },
  3498. "parser": {
  3499. "type": "code",
  3500. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3501. },
  3502. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3503. "position": {
  3504. "type": "list<double>",
  3505. "value": [
  3506. "0;5.49101871488881,3.7011660509880575%",
  3507. "0;13.164944440934818,99.93148337667671%"
  3508. ]
  3509. },
  3510. "orientation": {
  3511. "type": "double",
  3512. "value": "0;87.87890360333853"
  3513. },
  3514. "scale": {
  3515. "type": "list<double>",
  3516. "value": [
  3517. 1,
  3518. 1
  3519. ]
  3520. },
  3521. "arrow": "arrowTail",
  3522. "arrowType": "triangle-white",
  3523. "$linkDecoratorInfo": {
  3524. "type": "map<string,double>",
  3525. "value": {
  3526. "xratio": 1,
  3527. "yoffset": -5
  3528. }
  3529. }
  3530. },
  3531. "283": {
  3532. "segments": {
  3533. "type": "string",
  3534. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3535. },
  3536. "style": {
  3537. "type": "map<string,string>",
  3538. "value": {
  3539. "stroke": "#000000",
  3540. "fill": "#ffffff",
  3541. "opacity": 0,
  3542. "stroke-width": 1
  3543. }
  3544. },
  3545. "mapper": {
  3546. "type": "code",
  3547. "value": ""
  3548. },
  3549. "parser": {
  3550. "type": "code",
  3551. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3552. },
  3553. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3554. "position": {
  3555. "type": "list<double>",
  3556. "value": [
  3557. "0;4.49101871488881,0%",
  3558. "0;-13.835055559065182,0%"
  3559. ]
  3560. },
  3561. "orientation": {
  3562. "type": "double",
  3563. "value": "0;87.87890360333859"
  3564. },
  3565. "scale": {
  3566. "type": "list<double>",
  3567. "value": [
  3568. 1,
  3569. 1
  3570. ]
  3571. },
  3572. "arrow": "arrowHead",
  3573. "arrowType": "diamond-white",
  3574. "$linkDecoratorInfo": {
  3575. "type": "map<string,double>",
  3576. "value": {
  3577. "xratio": -1,
  3578. "yoffset": -5
  3579. }
  3580. }
  3581. },
  3582. "284": {
  3583. "segments": {
  3584. "type": "string",
  3585. "value": "m0,0 l-10,5 l10,5 z"
  3586. },
  3587. "style": {
  3588. "type": "map<string,string>",
  3589. "value": {
  3590. "stroke": "#000000",
  3591. "fill": "#ffffff",
  3592. "opacity": 0,
  3593. "stroke-width": 1
  3594. }
  3595. },
  3596. "mapper": {
  3597. "type": "code",
  3598. "value": ""
  3599. },
  3600. "parser": {
  3601. "type": "code",
  3602. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3603. },
  3604. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3605. "position": {
  3606. "type": "list<double>",
  3607. "value": [
  3608. "0;4.49101871488881,0%",
  3609. "0;-13.835055559065182,0%"
  3610. ]
  3611. },
  3612. "orientation": {
  3613. "type": "double",
  3614. "value": "0;87.87890360333859"
  3615. },
  3616. "scale": {
  3617. "type": "list<double>",
  3618. "value": [
  3619. 1,
  3620. 1
  3621. ]
  3622. },
  3623. "arrow": "arrowHead",
  3624. "arrowType": "triangle-white",
  3625. "$linkDecoratorInfo": {
  3626. "type": "map<string,double>",
  3627. "value": {
  3628. "xratio": -1,
  3629. "yoffset": -5
  3630. }
  3631. }
  3632. },
  3633. "285": {
  3634. "segments": {
  3635. "type": "string",
  3636. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3637. },
  3638. "style": {
  3639. "type": "map<string,string>",
  3640. "value": {
  3641. "stroke": "#000000",
  3642. "fill": "#000000",
  3643. "opacity": 0,
  3644. "stroke-width": 1
  3645. }
  3646. },
  3647. "mapper": {
  3648. "type": "code",
  3649. "value": ""
  3650. },
  3651. "parser": {
  3652. "type": "code",
  3653. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3654. },
  3655. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3656. "position": {
  3657. "type": "list<double>",
  3658. "value": [
  3659. "0;4.49101871488881,0%",
  3660. "0;-13.835055559065182,0%"
  3661. ]
  3662. },
  3663. "orientation": {
  3664. "type": "double",
  3665. "value": "0;87.87890360333859"
  3666. },
  3667. "scale": {
  3668. "type": "list<double>",
  3669. "value": [
  3670. 1,
  3671. 1
  3672. ]
  3673. },
  3674. "arrow": "arrowHead",
  3675. "arrowType": "diamond-black",
  3676. "$linkDecoratorInfo": {
  3677. "type": "map<string,double>",
  3678. "value": {
  3679. "xratio": -1,
  3680. "yoffset": -5
  3681. }
  3682. }
  3683. },
  3684. "286": {
  3685. "r": {
  3686. "type": "double",
  3687. "value": 10
  3688. },
  3689. "style": {
  3690. "type": "map<string,string>",
  3691. "value": {
  3692. "stroke": "#000000",
  3693. "fill": "#000000",
  3694. "opacity": 0,
  3695. "stroke-width": 1
  3696. }
  3697. },
  3698. "mapper": {
  3699. "type": "code",
  3700. "value": ""
  3701. },
  3702. "parser": {
  3703. "type": "code",
  3704. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3705. },
  3706. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3707. "position": {
  3708. "type": "list<double>",
  3709. "value": [
  3710. "0;9.487592883722641,0%",
  3711. "0;-14.020113861614561,0%"
  3712. ]
  3713. },
  3714. "orientation": {
  3715. "type": "double",
  3716. "value": "0;87.87890360333859"
  3717. },
  3718. "scale": {
  3719. "type": "list<double>",
  3720. "value": [
  3721. 1,
  3722. 1
  3723. ]
  3724. },
  3725. "arrow": "arrowHead",
  3726. "arrowType": "circle-black-large",
  3727. "$linkDecoratorInfo": {
  3728. "type": "map<string,double>",
  3729. "value": {
  3730. "xratio": -1,
  3731. "yoffset": -10
  3732. }
  3733. }
  3734. },
  3735. "287": {
  3736. "segments": {
  3737. "type": "string",
  3738. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  3739. },
  3740. "style": {
  3741. "type": "map<string,string>",
  3742. "value": {
  3743. "stroke": "#000000",
  3744. "fill": "#000000",
  3745. "opacity": 0,
  3746. "stroke-width": 1
  3747. }
  3748. },
  3749. "mapper": {
  3750. "type": "code",
  3751. "value": ""
  3752. },
  3753. "parser": {
  3754. "type": "code",
  3755. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3756. },
  3757. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3758. "position": {
  3759. "type": "list<double>",
  3760. "value": [
  3761. "0;7.488963216189063,0%",
  3762. "0;-13.94609054059481,0%"
  3763. ]
  3764. },
  3765. "orientation": {
  3766. "type": "double",
  3767. "value": "0;87.87890360333859"
  3768. },
  3769. "scale": {
  3770. "type": "list<double>",
  3771. "value": [
  3772. 1,
  3773. 1
  3774. ]
  3775. },
  3776. "arrow": "arrowHead",
  3777. "arrowType": "arrow-black-large",
  3778. "$linkDecoratorInfo": {
  3779. "type": "map<string,double>",
  3780. "value": {
  3781. "xratio": -1,
  3782. "yoffset": -8
  3783. }
  3784. }
  3785. },
  3786. "288": {
  3787. "segments": {
  3788. "type": "string",
  3789. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  3790. },
  3791. "style": {
  3792. "type": "map<string,string>",
  3793. "value": {
  3794. "stroke": "#000000",
  3795. "fill": "#000000",
  3796. "opacity": 0,
  3797. "stroke-width": 1
  3798. }
  3799. },
  3800. "mapper": {
  3801. "type": "code",
  3802. "value": ""
  3803. },
  3804. "parser": {
  3805. "type": "code",
  3806. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3807. },
  3808. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3809. "position": {
  3810. "type": "list<double>",
  3811. "value": [
  3812. "0;3.491703881122021,0%",
  3813. "0;-13.798043898555306,0%"
  3814. ]
  3815. },
  3816. "orientation": {
  3817. "type": "double",
  3818. "value": "0;87.87890360333859"
  3819. },
  3820. "scale": {
  3821. "type": "list<double>",
  3822. "value": [
  3823. 1,
  3824. 1
  3825. ]
  3826. },
  3827. "arrow": "arrowHead",
  3828. "arrowType": "arrow-black",
  3829. "$linkDecoratorInfo": {
  3830. "type": "map<string,double>",
  3831. "value": {
  3832. "xratio": -1,
  3833. "yoffset": -4
  3834. }
  3835. }
  3836. },
  3837. "289": {
  3838. "segments": {
  3839. "type": "string",
  3840. "value": "m0,0 l-20,10 l20,10 z"
  3841. },
  3842. "style": {
  3843. "type": "map<string,string>",
  3844. "value": {
  3845. "stroke": "#000000",
  3846. "fill": "#ffffff",
  3847. "opacity": 0,
  3848. "stroke-width": 1
  3849. }
  3850. },
  3851. "mapper": {
  3852. "type": "code",
  3853. "value": ""
  3854. },
  3855. "parser": {
  3856. "type": "code",
  3857. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3858. },
  3859. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3860. "position": {
  3861. "type": "list<double>",
  3862. "value": [
  3863. "0;9.487592883722641,0%",
  3864. "0;-14.020113861614561,0%"
  3865. ]
  3866. },
  3867. "orientation": {
  3868. "type": "double",
  3869. "value": "0;87.87890360333859"
  3870. },
  3871. "scale": {
  3872. "type": "list<double>",
  3873. "value": [
  3874. 1,
  3875. 1
  3876. ]
  3877. },
  3878. "arrow": "arrowHead",
  3879. "arrowType": "triangle-white-large",
  3880. "$linkDecoratorInfo": {
  3881. "type": "map<string,double>",
  3882. "value": {
  3883. "xratio": -1,
  3884. "yoffset": -10
  3885. }
  3886. }
  3887. },
  3888. "290": {
  3889. "segments": {
  3890. "type": "string",
  3891. "value": "m0,0 l-20,10 l20,10 z"
  3892. },
  3893. "style": {
  3894. "type": "map<string,string>",
  3895. "value": {
  3896. "stroke": "#000000",
  3897. "fill": "#000000",
  3898. "opacity": 0,
  3899. "stroke-width": 1
  3900. }
  3901. },
  3902. "mapper": {
  3903. "type": "code",
  3904. "value": ""
  3905. },
  3906. "parser": {
  3907. "type": "code",
  3908. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3909. },
  3910. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3911. "position": {
  3912. "type": "list<double>",
  3913. "value": [
  3914. "0;9.487592883722641,0%",
  3915. "0;-14.020113861614561,0%"
  3916. ]
  3917. },
  3918. "orientation": {
  3919. "type": "double",
  3920. "value": "0;87.87890360333859"
  3921. },
  3922. "scale": {
  3923. "type": "list<double>",
  3924. "value": [
  3925. 1,
  3926. 1
  3927. ]
  3928. },
  3929. "arrow": "arrowHead",
  3930. "arrowType": "triangle-black-large",
  3931. "$linkDecoratorInfo": {
  3932. "type": "map<string,double>",
  3933. "value": {
  3934. "xratio": -1,
  3935. "yoffset": -10
  3936. }
  3937. }
  3938. },
  3939. "291": {
  3940. "r": {
  3941. "type": "double",
  3942. "value": 5
  3943. },
  3944. "style": {
  3945. "type": "map<string,string>",
  3946. "value": {
  3947. "stroke": "#000000",
  3948. "fill": "#000000",
  3949. "opacity": 0,
  3950. "stroke-width": 1
  3951. }
  3952. },
  3953. "mapper": {
  3954. "type": "code",
  3955. "value": ""
  3956. },
  3957. "parser": {
  3958. "type": "code",
  3959. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3960. },
  3961. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3962. "position": {
  3963. "type": "list<double>",
  3964. "value": [
  3965. "0;4.49101871488881,0%",
  3966. "0;-13.835055559065182,0%"
  3967. ]
  3968. },
  3969. "orientation": {
  3970. "type": "double",
  3971. "value": "0;87.87890360333859"
  3972. },
  3973. "scale": {
  3974. "type": "list<double>",
  3975. "value": [
  3976. 1,
  3977. 1
  3978. ]
  3979. },
  3980. "arrow": "arrowHead",
  3981. "arrowType": "circle-black",
  3982. "$linkDecoratorInfo": {
  3983. "type": "map<string,double>",
  3984. "value": {
  3985. "xratio": -1,
  3986. "yoffset": -5
  3987. }
  3988. }
  3989. },
  3990. "292": {
  3991. "r": {
  3992. "type": "double",
  3993. "value": 5
  3994. },
  3995. "style": {
  3996. "type": "map<string,string>",
  3997. "value": {
  3998. "stroke": "#000000",
  3999. "fill": "#ffffff",
  4000. "opacity": 0,
  4001. "stroke-width": 1
  4002. }
  4003. },
  4004. "mapper": {
  4005. "type": "code",
  4006. "value": ""
  4007. },
  4008. "parser": {
  4009. "type": "code",
  4010. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4011. },
  4012. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4013. "position": {
  4014. "type": "list<double>",
  4015. "value": [
  4016. "0;4.49101871488881,0%",
  4017. "0;-13.835055559065182,0%"
  4018. ]
  4019. },
  4020. "orientation": {
  4021. "type": "double",
  4022. "value": "0;87.87890360333859"
  4023. },
  4024. "scale": {
  4025. "type": "list<double>",
  4026. "value": [
  4027. 1,
  4028. 1
  4029. ]
  4030. },
  4031. "arrow": "arrowHead",
  4032. "arrowType": "circle-white",
  4033. "$linkDecoratorInfo": {
  4034. "type": "map<string,double>",
  4035. "value": {
  4036. "xratio": -1,
  4037. "yoffset": -5
  4038. }
  4039. }
  4040. },
  4041. "293": {
  4042. "r": {
  4043. "type": "double",
  4044. "value": 10
  4045. },
  4046. "style": {
  4047. "type": "map<string,string>",
  4048. "value": {
  4049. "stroke": "#000000",
  4050. "fill": "#ffffff",
  4051. "opacity": 0,
  4052. "stroke-width": 1
  4053. }
  4054. },
  4055. "mapper": {
  4056. "type": "code",
  4057. "value": ""
  4058. },
  4059. "parser": {
  4060. "type": "code",
  4061. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4062. },
  4063. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4064. "position": {
  4065. "type": "list<double>",
  4066. "value": [
  4067. "0;9.487592883722641,0%",
  4068. "0;-14.020113861614561,0%"
  4069. ]
  4070. },
  4071. "orientation": {
  4072. "type": "double",
  4073. "value": "0;87.87890360333859"
  4074. },
  4075. "scale": {
  4076. "type": "list<double>",
  4077. "value": [
  4078. 1,
  4079. 1
  4080. ]
  4081. },
  4082. "arrow": "arrowHead",
  4083. "arrowType": "circle-white-large",
  4084. "$linkDecoratorInfo": {
  4085. "type": "map<string,double>",
  4086. "value": {
  4087. "xratio": -1,
  4088. "yoffset": -10
  4089. }
  4090. }
  4091. },
  4092. "294": {
  4093. "segments": {
  4094. "type": "string",
  4095. "value": "m0,0 l-20,8 l20,8"
  4096. },
  4097. "style": {
  4098. "type": "map<string,string>",
  4099. "value": {
  4100. "stroke": "#000000",
  4101. "fill": "#000000",
  4102. "fill-opacity": 0,
  4103. "stroke-width": 1,
  4104. "opacity": 0
  4105. }
  4106. },
  4107. "mapper": {
  4108. "type": "code",
  4109. "value": ""
  4110. },
  4111. "parser": {
  4112. "type": "code",
  4113. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4114. },
  4115. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4116. "position": {
  4117. "type": "list<double>",
  4118. "value": [
  4119. "0;7.488963216189063,0%",
  4120. "0;-13.94609054059481,0%"
  4121. ]
  4122. },
  4123. "orientation": {
  4124. "type": "double",
  4125. "value": "0;87.87890360333859"
  4126. },
  4127. "scale": {
  4128. "type": "list<double>",
  4129. "value": [
  4130. 1,
  4131. 1
  4132. ]
  4133. },
  4134. "arrow": "arrowHead",
  4135. "arrowType": "arrow-empty-large",
  4136. "$linkDecoratorInfo": {
  4137. "type": "map<string,double>",
  4138. "value": {
  4139. "xratio": -1,
  4140. "yoffset": -8
  4141. }
  4142. }
  4143. },
  4144. "295": {
  4145. "segments": {
  4146. "type": "string",
  4147. "value": "m0,0 l-10,4 l10,4"
  4148. },
  4149. "style": {
  4150. "type": "map<string,string>",
  4151. "value": {
  4152. "stroke": "#000000",
  4153. "fill": "#000000",
  4154. "fill-opacity": 0,
  4155. "stroke-width": 1,
  4156. "opacity": 0
  4157. }
  4158. },
  4159. "mapper": {
  4160. "type": "code",
  4161. "value": ""
  4162. },
  4163. "parser": {
  4164. "type": "code",
  4165. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4166. },
  4167. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4168. "position": {
  4169. "type": "list<double>",
  4170. "value": [
  4171. "0;3.491703881122021,0%",
  4172. "0;-13.798043898555306,0%"
  4173. ]
  4174. },
  4175. "orientation": {
  4176. "type": "double",
  4177. "value": "0;87.87890360333859"
  4178. },
  4179. "scale": {
  4180. "type": "list<double>",
  4181. "value": [
  4182. 1,
  4183. 1
  4184. ]
  4185. },
  4186. "arrow": "arrowHead",
  4187. "arrowType": "arrow-empty",
  4188. "$linkDecoratorInfo": {
  4189. "type": "map<string,double>",
  4190. "value": {
  4191. "xratio": -1,
  4192. "yoffset": -4
  4193. }
  4194. }
  4195. },
  4196. "296": {
  4197. "segments": {
  4198. "type": "string",
  4199. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4200. },
  4201. "style": {
  4202. "type": "map<string,string>",
  4203. "value": {
  4204. "stroke": "#000000",
  4205. "fill": "#000000",
  4206. "opacity": 0,
  4207. "stroke-width": 1
  4208. }
  4209. },
  4210. "mapper": {
  4211. "type": "code",
  4212. "value": ""
  4213. },
  4214. "parser": {
  4215. "type": "code",
  4216. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4217. },
  4218. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4219. "position": {
  4220. "type": "list<double>",
  4221. "value": [
  4222. "0;9.487592883722641,0%",
  4223. "0;-14.020113861614561,0%"
  4224. ]
  4225. },
  4226. "orientation": {
  4227. "type": "double",
  4228. "value": "0;87.87890360333859"
  4229. },
  4230. "scale": {
  4231. "type": "list<double>",
  4232. "value": [
  4233. 1,
  4234. 1
  4235. ]
  4236. },
  4237. "arrow": "arrowHead",
  4238. "arrowType": "diamond-black-large",
  4239. "$linkDecoratorInfo": {
  4240. "type": "map<string,double>",
  4241. "value": {
  4242. "xratio": -1,
  4243. "yoffset": -10
  4244. }
  4245. }
  4246. },
  4247. "297": {
  4248. "segments": {
  4249. "type": "string",
  4250. "value": "m0,0 l-10,4 l10,4 z"
  4251. },
  4252. "style": {
  4253. "type": "map<string,string>",
  4254. "value": {
  4255. "stroke": "#000000",
  4256. "fill": "#000000",
  4257. "opacity": 0,
  4258. "stroke-width": 1
  4259. }
  4260. },
  4261. "mapper": {
  4262. "type": "code",
  4263. "value": ""
  4264. },
  4265. "parser": {
  4266. "type": "code",
  4267. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4268. },
  4269. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4270. "position": {
  4271. "type": "list<double>",
  4272. "value": [
  4273. "0;3.491703881122021,0%",
  4274. "0;-13.798043898555306,0%"
  4275. ]
  4276. },
  4277. "orientation": {
  4278. "type": "double",
  4279. "value": "0;87.87890360333859"
  4280. },
  4281. "scale": {
  4282. "type": "list<double>",
  4283. "value": [
  4284. 1,
  4285. 1
  4286. ]
  4287. },
  4288. "arrow": "arrowHead",
  4289. "arrowType": "triangle-black",
  4290. "$linkDecoratorInfo": {
  4291. "type": "map<string,double>",
  4292. "value": {
  4293. "xratio": -1,
  4294. "yoffset": -4
  4295. }
  4296. }
  4297. },
  4298. "298": {
  4299. "segments": {
  4300. "type": "string",
  4301. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4302. },
  4303. "style": {
  4304. "type": "map<string,string>",
  4305. "value": {
  4306. "stroke": "#000000",
  4307. "fill": "#ffffff",
  4308. "opacity": 0,
  4309. "stroke-width": 1
  4310. }
  4311. },
  4312. "mapper": {
  4313. "type": "code",
  4314. "value": ""
  4315. },
  4316. "parser": {
  4317. "type": "code",
  4318. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4319. },
  4320. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4321. "position": {
  4322. "type": "list<double>",
  4323. "value": [
  4324. "0;9.487592883722641,0%",
  4325. "0;-14.020113861614561,0%"
  4326. ]
  4327. },
  4328. "orientation": {
  4329. "type": "double",
  4330. "value": "0;87.87890360333859"
  4331. },
  4332. "scale": {
  4333. "type": "list<double>",
  4334. "value": [
  4335. 1,
  4336. 1
  4337. ]
  4338. },
  4339. "arrow": "arrowHead",
  4340. "arrowType": "diamond-white-large",
  4341. "$linkDecoratorInfo": {
  4342. "type": "map<string,double>",
  4343. "value": {
  4344. "xratio": -1,
  4345. "yoffset": -10
  4346. }
  4347. }
  4348. }
  4349. },
  4350. "edges": []
  4351. }
  4352. },
  4353. "$asuri": {
  4354. "type": "string",
  4355. "value": "/Formalisms/__Transformations__/Transformation/MoTif/initial/106.instance"
  4356. },
  4357. "$segments": {
  4358. "type": "map<string,list<string>>",
  4359. "value": {
  4360. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon/77.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/106.instance": "M722,168L722.505555453945,181.64999725651577",
  4361. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/106.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon/98.instance": "M722.505555453945,181.64999725651577L723,195"
  4362. }
  4363. },
  4364. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink"
  4365. },
  4366. "107": {
  4367. "typename": {
  4368. "type": "string",
  4369. "value": "CRuleIcon"
  4370. },
  4371. "position": {
  4372. "type": "list<double>",
  4373. "value": [
  4374. 621,
  4375. 296
  4376. ]
  4377. },
  4378. "orientation": {
  4379. "type": "double",
  4380. "value": 0
  4381. },
  4382. "scale": {
  4383. "type": "list<double>",
  4384. "value": [
  4385. 1,
  4386. 1
  4387. ]
  4388. },
  4389. "mapper": {
  4390. "type": "code",
  4391. "value": "({position:getAttr(\"position\")})"
  4392. },
  4393. "parser": {
  4394. "type": "code",
  4395. "value": "({position:getAttr(\"position\")})"
  4396. },
  4397. "$contents": {
  4398. "type": "map<string,*>",
  4399. "value": {
  4400. "nodes": {
  4401. "596": {
  4402. "segments": {
  4403. "type": "string",
  4404. "value": "M 1.5,1.5069319 12.49983,12.506752"
  4405. },
  4406. "style": {
  4407. "type": "map<string,string>",
  4408. "value": {
  4409. "fill": "none",
  4410. "stroke": "#008000",
  4411. "stroke-width": "3",
  4412. "stroke-linecap": "round",
  4413. "stroke-linejoin": "round",
  4414. "stroke-miterlimit": "4",
  4415. "stroke-opacity": "1",
  4416. "stroke-dasharray": "none"
  4417. }
  4418. },
  4419. "mapper": {
  4420. "type": "code",
  4421. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4422. },
  4423. "parser": {
  4424. "type": "code",
  4425. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4426. },
  4427. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4428. "position": {
  4429. "type": "list<double>",
  4430. "value": [
  4431. 144,
  4432. 86
  4433. ]
  4434. },
  4435. "orientation": {
  4436. "type": "double",
  4437. "value": 0
  4438. },
  4439. "scale": {
  4440. "type": "list<double>",
  4441. "value": [
  4442. 1,
  4443. 1
  4444. ]
  4445. }
  4446. },
  4447. "597": {
  4448. "segments": {
  4449. "type": "string",
  4450. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  4451. },
  4452. "style": {
  4453. "type": "map<string,string>",
  4454. "value": {
  4455. "fill": "none",
  4456. "stroke": "#008000",
  4457. "stroke-width": "3",
  4458. "stroke-linecap": "butt",
  4459. "stroke-linejoin": "miter",
  4460. "stroke-miterlimit": "4",
  4461. "stroke-opacity": "1"
  4462. }
  4463. },
  4464. "mapper": {
  4465. "type": "code",
  4466. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4467. },
  4468. "parser": {
  4469. "type": "code",
  4470. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4471. },
  4472. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4473. "position": {
  4474. "type": "list<double>",
  4475. "value": [
  4476. 95,
  4477. 1
  4478. ]
  4479. },
  4480. "orientation": {
  4481. "type": "double",
  4482. "value": 0
  4483. },
  4484. "scale": {
  4485. "type": "list<double>",
  4486. "value": [
  4487. 1,
  4488. 1
  4489. ]
  4490. }
  4491. },
  4492. "598": {
  4493. "segments": {
  4494. "type": "string",
  4495. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  4496. },
  4497. "style": {
  4498. "type": "map<string,string>",
  4499. "value": {
  4500. "fill": "none",
  4501. "stroke": "#008000",
  4502. "stroke-width": "3",
  4503. "stroke-linecap": "round",
  4504. "stroke-linejoin": "round",
  4505. "stroke-miterlimit": "4",
  4506. "stroke-opacity": "1",
  4507. "stroke-dasharray": "none"
  4508. }
  4509. },
  4510. "mapper": {
  4511. "type": "code",
  4512. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4513. },
  4514. "parser": {
  4515. "type": "code",
  4516. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4517. },
  4518. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4519. "position": {
  4520. "type": "list<double>",
  4521. "value": [
  4522. 144,
  4523. 86
  4524. ]
  4525. },
  4526. "orientation": {
  4527. "type": "double",
  4528. "value": 0
  4529. },
  4530. "scale": {
  4531. "type": "list<double>",
  4532. "value": [
  4533. 1,
  4534. 1
  4535. ]
  4536. }
  4537. },
  4538. "600": {
  4539. "segments": {
  4540. "type": "string",
  4541. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  4542. },
  4543. "style": {
  4544. "type": "map<string,string>",
  4545. "value": {
  4546. "fill": "none",
  4547. "stroke": "#008000",
  4548. "stroke-width": "3",
  4549. "stroke-linecap": "round",
  4550. "stroke-linejoin": "round",
  4551. "stroke-miterlimit": "4",
  4552. "stroke-opacity": "1",
  4553. "stroke-dasharray": "none"
  4554. }
  4555. },
  4556. "mapper": {
  4557. "type": "code",
  4558. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4559. },
  4560. "parser": {
  4561. "type": "code",
  4562. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4563. },
  4564. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4565. "position": {
  4566. "type": "list<double>",
  4567. "value": [
  4568. 47,
  4569. 86
  4570. ]
  4571. },
  4572. "orientation": {
  4573. "type": "double",
  4574. "value": 0
  4575. },
  4576. "scale": {
  4577. "type": "list<double>",
  4578. "value": [
  4579. 1,
  4580. 1
  4581. ]
  4582. }
  4583. },
  4584. "601": {
  4585. "width": {
  4586. "type": "double",
  4587. "value": 210
  4588. },
  4589. "height": {
  4590. "type": "double",
  4591. "value": 60
  4592. },
  4593. "cornerRadius": {
  4594. "type": "double",
  4595. "value": 1
  4596. },
  4597. "style": {
  4598. "type": "map<string,string>",
  4599. "value": {
  4600. "fill": "#ffffff",
  4601. "stroke": "#008000",
  4602. "stroke-width": "3",
  4603. "stroke-linecap": "butt",
  4604. "stroke-linejoin": "miter",
  4605. "stroke-miterlimit": "4",
  4606. "stroke-opacity": "1",
  4607. "fill-opacity": "0.5"
  4608. }
  4609. },
  4610. "mapper": {
  4611. "type": "code",
  4612. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4613. },
  4614. "parser": {
  4615. "type": "code",
  4616. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4617. },
  4618. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  4619. "position": {
  4620. "type": "list<double>",
  4621. "value": [
  4622. 1,
  4623. 24
  4624. ]
  4625. },
  4626. "orientation": {
  4627. "type": "double",
  4628. "value": 0
  4629. },
  4630. "scale": {
  4631. "type": "list<double>",
  4632. "value": [
  4633. 1,
  4634. 1
  4635. ]
  4636. }
  4637. },
  4638. "602": {
  4639. "textContent": {
  4640. "type": "string",
  4641. "value": ""
  4642. },
  4643. "style": {
  4644. "type": "map<string,string>",
  4645. "value": {
  4646. "font-size": "20px",
  4647. "font-style": "normal",
  4648. "font-variant": "normal",
  4649. "font-weight": "bold",
  4650. "font-stretch": "normal",
  4651. "line-height": "125%",
  4652. "text-anchor": "end",
  4653. "fill": "#008000",
  4654. "fill-opacity": "1",
  4655. "stroke": "none",
  4656. "font-family": "Arial"
  4657. }
  4658. },
  4659. "mapper": {
  4660. "type": "code",
  4661. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  4662. },
  4663. "parser": {
  4664. "type": "code",
  4665. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4666. },
  4667. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4668. "position": {
  4669. "type": "list<double>",
  4670. "value": [
  4671. 44,
  4672. 43
  4673. ]
  4674. },
  4675. "orientation": {
  4676. "type": "double",
  4677. "value": 0
  4678. },
  4679. "scale": {
  4680. "type": "list<double>",
  4681. "value": [
  4682. 1,
  4683. 1
  4684. ]
  4685. }
  4686. },
  4687. "603": {
  4688. "textContent": {
  4689. "type": "string",
  4690. "value": "handleTokens"
  4691. },
  4692. "style": {
  4693. "type": "map<string,string>",
  4694. "value": {
  4695. "font-size": "20px",
  4696. "font-style": "normal",
  4697. "font-variant": "normal",
  4698. "font-weight": "bold",
  4699. "font-stretch": "normal",
  4700. "text-align": "left",
  4701. "line-height": "125%",
  4702. "writing-mode": "lr-tb",
  4703. "text-anchor": "left",
  4704. "fill": "#008000",
  4705. "fill-opacity": "1",
  4706. "stroke": "none",
  4707. "font-family": "Arial"
  4708. }
  4709. },
  4710. "mapper": {
  4711. "type": "code",
  4712. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  4713. },
  4714. "parser": {
  4715. "type": "code",
  4716. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4717. },
  4718. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4719. "position": {
  4720. "type": "list<double>",
  4721. "value": [
  4722. 52,
  4723. 43
  4724. ]
  4725. },
  4726. "orientation": {
  4727. "type": "double",
  4728. "value": 0
  4729. },
  4730. "scale": {
  4731. "type": "list<double>",
  4732. "value": [
  4733. 1,
  4734. 1
  4735. ]
  4736. }
  4737. },
  4738. "604": {
  4739. "width": {
  4740. "type": "double",
  4741. "value": 200
  4742. },
  4743. "height": {
  4744. "type": "double",
  4745. "value": 50
  4746. },
  4747. "cornerRadius": {
  4748. "type": "double",
  4749. "value": 1
  4750. },
  4751. "style": {
  4752. "type": "map<string,string>",
  4753. "value": {
  4754. "fill": "none",
  4755. "stroke": "#008000",
  4756. "stroke-width": "3",
  4757. "stroke-linecap": "butt",
  4758. "stroke-linejoin": "miter",
  4759. "stroke-miterlimit": "4",
  4760. "stroke-opacity": "1",
  4761. "fill-opacity": "0.5"
  4762. }
  4763. },
  4764. "mapper": {
  4765. "type": "code",
  4766. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4767. },
  4768. "parser": {
  4769. "type": "code",
  4770. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4771. },
  4772. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  4773. "position": {
  4774. "type": "list<double>",
  4775. "value": [
  4776. 6,
  4777. 29
  4778. ]
  4779. },
  4780. "orientation": {
  4781. "type": "double",
  4782. "value": 0
  4783. },
  4784. "scale": {
  4785. "type": "list<double>",
  4786. "value": [
  4787. 1,
  4788. 1
  4789. ]
  4790. }
  4791. },
  4792. "605": {
  4793. "textContent": {
  4794. "type": "string",
  4795. "value": ":"
  4796. },
  4797. "style": {
  4798. "type": "map<string,string>",
  4799. "value": {
  4800. "font-size": "20px",
  4801. "font-style": "normal",
  4802. "font-variant": "normal",
  4803. "font-weight": "bold",
  4804. "font-stretch": "normal",
  4805. "text-align": "left",
  4806. "line-height": "125%",
  4807. "writing-mode": "lr-tb",
  4808. "text-anchor": "left",
  4809. "fill": "#008000",
  4810. "fill-opacity": "1",
  4811. "stroke": "none",
  4812. "font-family": "Arial"
  4813. }
  4814. },
  4815. "mapper": {
  4816. "type": "code",
  4817. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4818. },
  4819. "parser": {
  4820. "type": "code",
  4821. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4822. },
  4823. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4824. "position": {
  4825. "type": "list<double>",
  4826. "value": [
  4827. 45,
  4828. 43
  4829. ]
  4830. },
  4831. "orientation": {
  4832. "type": "double",
  4833. "value": 0
  4834. },
  4835. "scale": {
  4836. "type": "list<double>",
  4837. "value": [
  4838. 1,
  4839. 1
  4840. ]
  4841. }
  4842. },
  4843. "606": {
  4844. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4845. "position": {
  4846. "type": "list<double>",
  4847. "value": [
  4848. 27.380101318328116,
  4849. 42.57653018725193
  4850. ]
  4851. },
  4852. "orientation": {
  4853. "type": "double",
  4854. "value": 0
  4855. },
  4856. "scale": {
  4857. "type": "list<double>",
  4858. "value": [
  4859. 1,
  4860. 1
  4861. ]
  4862. },
  4863. "link-style": {
  4864. "type": "map<string,string>",
  4865. "value": {
  4866. "stroke": "#00ffff",
  4867. "stroke-dasharray": "",
  4868. "stroke-opacity": 0.1,
  4869. "stroke-width": 1
  4870. }
  4871. }
  4872. },
  4873. "607": {
  4874. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4875. "position": {
  4876. "type": "list<double>",
  4877. "value": [
  4878. 19.861485400667107,
  4879. 42.60135036424299
  4880. ]
  4881. },
  4882. "orientation": {
  4883. "type": "double",
  4884. "value": 0
  4885. },
  4886. "scale": {
  4887. "type": "list<double>",
  4888. "value": [
  4889. 1,
  4890. 1
  4891. ]
  4892. },
  4893. "link-style": {
  4894. "type": "map<string,string>",
  4895. "value": {
  4896. "stroke": "#00ffff",
  4897. "stroke-dasharray": "",
  4898. "stroke-opacity": 0.1,
  4899. "stroke-width": 1
  4900. }
  4901. }
  4902. },
  4903. "608": {
  4904. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4905. "position": {
  4906. "type": "list<double>",
  4907. "value": [
  4908. 41.75,
  4909. 42.5
  4910. ]
  4911. },
  4912. "orientation": {
  4913. "type": "double",
  4914. "value": 0
  4915. },
  4916. "scale": {
  4917. "type": "list<double>",
  4918. "value": [
  4919. 1,
  4920. 1
  4921. ]
  4922. },
  4923. "link-style": {
  4924. "type": "map<string,string>",
  4925. "value": {
  4926. "stroke": "#00ffff",
  4927. "stroke-dasharray": "",
  4928. "stroke-opacity": 0.1,
  4929. "stroke-width": 1
  4930. }
  4931. }
  4932. },
  4933. "1235": {
  4934. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4935. "position": {
  4936. "type": "list<double>",
  4937. "value": [
  4938. 33.386267245208956,
  4939. 40.06338011405069
  4940. ]
  4941. },
  4942. "orientation": {
  4943. "type": "double",
  4944. "value": 0
  4945. },
  4946. "scale": {
  4947. "type": "list<double>",
  4948. "value": [
  4949. 1,
  4950. 1
  4951. ]
  4952. },
  4953. "link-style": {
  4954. "type": "map<string,string>",
  4955. "value": {
  4956. "stroke": "#00ffff",
  4957. "stroke-dasharray": "",
  4958. "stroke-opacity": 0.1,
  4959. "stroke-width": 1
  4960. }
  4961. }
  4962. }
  4963. },
  4964. "edges": [
  4965. {
  4966. "src": "604",
  4967. "dest": "606"
  4968. },
  4969. {
  4970. "src": "606",
  4971. "dest": "605"
  4972. },
  4973. {
  4974. "src": "604",
  4975. "dest": "607"
  4976. },
  4977. {
  4978. "src": "607",
  4979. "dest": "602"
  4980. },
  4981. {
  4982. "src": "604",
  4983. "dest": "608"
  4984. },
  4985. {
  4986. "src": "608",
  4987. "dest": "603"
  4988. },
  4989. {
  4990. "src": "601",
  4991. "dest": "1235"
  4992. },
  4993. {
  4994. "src": "1235",
  4995. "dest": "602"
  4996. }
  4997. ]
  4998. }
  4999. },
  5000. "$asuri": {
  5001. "type": "string",
  5002. "value": "/Formalisms/__Transformations__/Transformation/MoTif/CRule/107.instance"
  5003. },
  5004. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon"
  5005. },
  5006. "108": {
  5007. "link-style": {
  5008. "type": "map<string,string>",
  5009. "value": {
  5010. "stroke": "#008080",
  5011. "stroke-dasharray": "",
  5012. "stroke-opacity": 1,
  5013. "stroke-width": 2
  5014. }
  5015. },
  5016. "arrowHead": {
  5017. "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)",
  5018. "value": "custom"
  5019. },
  5020. "arrowTail": {
  5021. "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)",
  5022. "value": "arrow-black"
  5023. },
  5024. "typename": {
  5025. "type": "string",
  5026. "value": "successLink"
  5027. },
  5028. "position": {
  5029. "type": "list<double>",
  5030. "value": [
  5031. 698.5,
  5032. 289.5
  5033. ]
  5034. },
  5035. "orientation": {
  5036. "type": "double",
  5037. "value": 0
  5038. },
  5039. "scale": {
  5040. "type": "list<double>",
  5041. "value": [
  5042. 1,
  5043. 1
  5044. ]
  5045. },
  5046. "mapper": {
  5047. "type": "code",
  5048. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5049. },
  5050. "parser": {
  5051. "type": "code",
  5052. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5053. },
  5054. "$contents": {
  5055. "type": "map<string,*>",
  5056. "value": {
  5057. "nodes": {
  5058. "267": {
  5059. "segments": {
  5060. "type": "string",
  5061. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  5062. },
  5063. "style": {
  5064. "type": "map<string,string>",
  5065. "value": {
  5066. "stroke": "#000000",
  5067. "fill": "#000000",
  5068. "opacity": 0,
  5069. "stroke-width": 1
  5070. }
  5071. },
  5072. "mapper": {
  5073. "type": "code",
  5074. "value": ""
  5075. },
  5076. "parser": {
  5077. "type": "code",
  5078. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5079. },
  5080. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5081. "position": {
  5082. "type": "list<double>",
  5083. "value": [
  5084. "0;27.84852538115001,80.94218479629139%",
  5085. "0;15.262033236670163,58.72276151887799%"
  5086. ]
  5087. },
  5088. "orientation": {
  5089. "type": "double",
  5090. "value": "0;35.960517196644844"
  5091. },
  5092. "scale": {
  5093. "type": "list<double>",
  5094. "value": [
  5095. 1,
  5096. 1
  5097. ]
  5098. },
  5099. "arrow": "arrowTail",
  5100. "arrowType": "arrow-black",
  5101. "$linkDecoratorInfo": {
  5102. "type": "map<string,double>",
  5103. "value": {
  5104. "xratio": 1,
  5105. "yoffset": -4
  5106. }
  5107. }
  5108. },
  5109. "268": {
  5110. "segments": {
  5111. "type": "string",
  5112. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5113. },
  5114. "style": {
  5115. "type": "map<string,string>",
  5116. "value": {
  5117. "stroke": "#000000",
  5118. "fill": "#000000",
  5119. "opacity": 0,
  5120. "stroke-width": 1
  5121. }
  5122. },
  5123. "mapper": {
  5124. "type": "code",
  5125. "value": ""
  5126. },
  5127. "parser": {
  5128. "type": "code",
  5129. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5130. },
  5131. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5132. "position": {
  5133. "type": "list<double>",
  5134. "value": [
  5135. "0;31.37189107228278,80.94218479629139%",
  5136. "0;10.405502148892651,58.72276151887799%"
  5137. ]
  5138. },
  5139. "orientation": {
  5140. "type": "double",
  5141. "value": "0;35.960517196644844"
  5142. },
  5143. "scale": {
  5144. "type": "list<double>",
  5145. "value": [
  5146. 1,
  5147. 1
  5148. ]
  5149. },
  5150. "arrow": "arrowTail",
  5151. "arrowType": "diamond-black-large",
  5152. "$linkDecoratorInfo": {
  5153. "type": "map<string,double>",
  5154. "value": {
  5155. "xratio": 1,
  5156. "yoffset": -10
  5157. }
  5158. }
  5159. },
  5160. "269": {
  5161. "r": {
  5162. "type": "double",
  5163. "value": 10
  5164. },
  5165. "style": {
  5166. "type": "map<string,string>",
  5167. "value": {
  5168. "stroke": "#000000",
  5169. "fill": "#000000",
  5170. "opacity": 0,
  5171. "stroke-width": 1
  5172. }
  5173. },
  5174. "mapper": {
  5175. "type": "code",
  5176. "value": ""
  5177. },
  5178. "parser": {
  5179. "type": "code",
  5180. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5181. },
  5182. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5183. "position": {
  5184. "type": "list<double>",
  5185. "value": [
  5186. "0;31.37189107228278,80.94218479629139%",
  5187. "0;10.405502148892651,58.72276151887799%"
  5188. ]
  5189. },
  5190. "orientation": {
  5191. "type": "double",
  5192. "value": "0;35.960517196644844"
  5193. },
  5194. "scale": {
  5195. "type": "list<double>",
  5196. "value": [
  5197. 1,
  5198. 1
  5199. ]
  5200. },
  5201. "arrow": "arrowTail",
  5202. "arrowType": "circle-black-large",
  5203. "$linkDecoratorInfo": {
  5204. "type": "map<string,double>",
  5205. "value": {
  5206. "xratio": 1,
  5207. "yoffset": -10
  5208. }
  5209. }
  5210. },
  5211. "270": {
  5212. "r": {
  5213. "type": "double",
  5214. "value": 10
  5215. },
  5216. "style": {
  5217. "type": "map<string,string>",
  5218. "value": {
  5219. "stroke": "#000000",
  5220. "fill": "#ffffff",
  5221. "opacity": 0,
  5222. "stroke-width": 1
  5223. }
  5224. },
  5225. "mapper": {
  5226. "type": "code",
  5227. "value": ""
  5228. },
  5229. "parser": {
  5230. "type": "code",
  5231. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5232. },
  5233. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5234. "position": {
  5235. "type": "list<double>",
  5236. "value": [
  5237. "0;31.37189107228278,80.94218479629139%",
  5238. "0;10.405502148892651,58.72276151887799%"
  5239. ]
  5240. },
  5241. "orientation": {
  5242. "type": "double",
  5243. "value": "0;35.960517196644844"
  5244. },
  5245. "scale": {
  5246. "type": "list<double>",
  5247. "value": [
  5248. 1,
  5249. 1
  5250. ]
  5251. },
  5252. "arrow": "arrowTail",
  5253. "arrowType": "circle-white-large",
  5254. "$linkDecoratorInfo": {
  5255. "type": "map<string,double>",
  5256. "value": {
  5257. "xratio": 1,
  5258. "yoffset": -10
  5259. }
  5260. }
  5261. },
  5262. "271": {
  5263. "r": {
  5264. "type": "double",
  5265. "value": 5
  5266. },
  5267. "style": {
  5268. "type": "map<string,string>",
  5269. "value": {
  5270. "stroke": "#000000",
  5271. "fill": "#000000",
  5272. "opacity": 0,
  5273. "stroke-width": 1
  5274. }
  5275. },
  5276. "mapper": {
  5277. "type": "code",
  5278. "value": ""
  5279. },
  5280. "parser": {
  5281. "type": "code",
  5282. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5283. },
  5284. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5285. "position": {
  5286. "type": "list<double>",
  5287. "value": [
  5288. "0;28.435752996338806,80.94218479629139%",
  5289. "0;14.452611388707226,58.72276151887799%"
  5290. ]
  5291. },
  5292. "orientation": {
  5293. "type": "double",
  5294. "value": "0;35.960517196644844"
  5295. },
  5296. "scale": {
  5297. "type": "list<double>",
  5298. "value": [
  5299. 1,
  5300. 1
  5301. ]
  5302. },
  5303. "arrow": "arrowTail",
  5304. "arrowType": "circle-black",
  5305. "$linkDecoratorInfo": {
  5306. "type": "map<string,double>",
  5307. "value": {
  5308. "xratio": 1,
  5309. "yoffset": -5
  5310. }
  5311. }
  5312. },
  5313. "272": {
  5314. "segments": {
  5315. "type": "string",
  5316. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5317. },
  5318. "style": {
  5319. "type": "map<string,string>",
  5320. "value": {
  5321. "stroke": "#000000",
  5322. "fill": "#000000",
  5323. "opacity": 0,
  5324. "stroke-width": 1
  5325. }
  5326. },
  5327. "mapper": {
  5328. "type": "code",
  5329. "value": ""
  5330. },
  5331. "parser": {
  5332. "type": "code",
  5333. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5334. },
  5335. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5336. "position": {
  5337. "type": "list<double>",
  5338. "value": [
  5339. "0;28.435752996338806,80.94218479629139%",
  5340. "0;14.452611388707226,58.72276151887799%"
  5341. ]
  5342. },
  5343. "orientation": {
  5344. "type": "double",
  5345. "value": "0;35.960517196644844"
  5346. },
  5347. "scale": {
  5348. "type": "list<double>",
  5349. "value": [
  5350. 1,
  5351. 1
  5352. ]
  5353. },
  5354. "arrow": "arrowTail",
  5355. "arrowType": "diamond-black",
  5356. "$linkDecoratorInfo": {
  5357. "type": "map<string,double>",
  5358. "value": {
  5359. "xratio": 1,
  5360. "yoffset": -5
  5361. }
  5362. }
  5363. },
  5364. "273": {
  5365. "segments": {
  5366. "type": "string",
  5367. "value": "m0,0 l20,10 l-20,10 z"
  5368. },
  5369. "style": {
  5370. "type": "map<string,string>",
  5371. "value": {
  5372. "stroke": "#000000",
  5373. "fill": "#000000",
  5374. "opacity": 0,
  5375. "stroke-width": 1
  5376. }
  5377. },
  5378. "mapper": {
  5379. "type": "code",
  5380. "value": ""
  5381. },
  5382. "parser": {
  5383. "type": "code",
  5384. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5385. },
  5386. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5387. "position": {
  5388. "type": "list<double>",
  5389. "value": [
  5390. "0;31.37189107228278,80.94218479629139%",
  5391. "0;10.405502148892651,58.72276151887799%"
  5392. ]
  5393. },
  5394. "orientation": {
  5395. "type": "double",
  5396. "value": "0;35.960517196644844"
  5397. },
  5398. "scale": {
  5399. "type": "list<double>",
  5400. "value": [
  5401. 1,
  5402. 1
  5403. ]
  5404. },
  5405. "arrow": "arrowTail",
  5406. "arrowType": "triangle-black-large",
  5407. "$linkDecoratorInfo": {
  5408. "type": "map<string,double>",
  5409. "value": {
  5410. "xratio": 1,
  5411. "yoffset": -10
  5412. }
  5413. }
  5414. },
  5415. "274": {
  5416. "segments": {
  5417. "type": "string",
  5418. "value": "m0,0 l10,4 l-10,4 z"
  5419. },
  5420. "style": {
  5421. "type": "map<string,string>",
  5422. "value": {
  5423. "stroke": "#000000",
  5424. "fill": "#000000",
  5425. "opacity": 0,
  5426. "stroke-width": 1
  5427. }
  5428. },
  5429. "mapper": {
  5430. "type": "code",
  5431. "value": ""
  5432. },
  5433. "parser": {
  5434. "type": "code",
  5435. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5436. },
  5437. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5438. "position": {
  5439. "type": "list<double>",
  5440. "value": [
  5441. "0;27.84852538115001,80.94218479629139%",
  5442. "0;15.262033236670163,58.72276151887799%"
  5443. ]
  5444. },
  5445. "orientation": {
  5446. "type": "double",
  5447. "value": "0;35.960517196644844"
  5448. },
  5449. "scale": {
  5450. "type": "list<double>",
  5451. "value": [
  5452. 1,
  5453. 1
  5454. ]
  5455. },
  5456. "arrow": "arrowTail",
  5457. "arrowType": "triangle-black",
  5458. "$linkDecoratorInfo": {
  5459. "type": "map<string,double>",
  5460. "value": {
  5461. "xratio": 1,
  5462. "yoffset": -4
  5463. }
  5464. }
  5465. },
  5466. "275": {
  5467. "segments": {
  5468. "type": "string",
  5469. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  5470. },
  5471. "style": {
  5472. "type": "map<string,string>",
  5473. "value": {
  5474. "stroke": "#000000",
  5475. "fill": "#000000",
  5476. "opacity": 0,
  5477. "stroke-width": 1
  5478. }
  5479. },
  5480. "mapper": {
  5481. "type": "code",
  5482. "value": ""
  5483. },
  5484. "parser": {
  5485. "type": "code",
  5486. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5487. },
  5488. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5489. "position": {
  5490. "type": "list<double>",
  5491. "value": [
  5492. "0;30.19743584190519,80.94218479629139%",
  5493. "0;12.02434584481847,58.72276151887799%"
  5494. ]
  5495. },
  5496. "orientation": {
  5497. "type": "double",
  5498. "value": "0;35.960517196644844"
  5499. },
  5500. "scale": {
  5501. "type": "list<double>",
  5502. "value": [
  5503. 1,
  5504. 1
  5505. ]
  5506. },
  5507. "arrow": "arrowTail",
  5508. "arrowType": "arrow-black-large",
  5509. "$linkDecoratorInfo": {
  5510. "type": "map<string,double>",
  5511. "value": {
  5512. "xratio": 1,
  5513. "yoffset": -8
  5514. }
  5515. }
  5516. },
  5517. "276": {
  5518. "segments": {
  5519. "type": "string",
  5520. "value": "m0,0 l20,10 l-20,10 z"
  5521. },
  5522. "style": {
  5523. "type": "map<string,string>",
  5524. "value": {
  5525. "stroke": "#000000",
  5526. "fill": "#ffffff",
  5527. "opacity": 0,
  5528. "stroke-width": 1
  5529. }
  5530. },
  5531. "mapper": {
  5532. "type": "code",
  5533. "value": ""
  5534. },
  5535. "parser": {
  5536. "type": "code",
  5537. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5538. },
  5539. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5540. "position": {
  5541. "type": "list<double>",
  5542. "value": [
  5543. "0;31.37189107228278,80.94218479629139%",
  5544. "0;10.405502148892651,58.72276151887799%"
  5545. ]
  5546. },
  5547. "orientation": {
  5548. "type": "double",
  5549. "value": "0;35.960517196644844"
  5550. },
  5551. "scale": {
  5552. "type": "list<double>",
  5553. "value": [
  5554. 1,
  5555. 1
  5556. ]
  5557. },
  5558. "arrow": "arrowTail",
  5559. "arrowType": "triangle-white-large",
  5560. "$linkDecoratorInfo": {
  5561. "type": "map<string,double>",
  5562. "value": {
  5563. "xratio": 1,
  5564. "yoffset": -10
  5565. }
  5566. }
  5567. },
  5568. "277": {
  5569. "segments": {
  5570. "type": "string",
  5571. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5572. },
  5573. "style": {
  5574. "type": "map<string,string>",
  5575. "value": {
  5576. "stroke": "#000000",
  5577. "fill": "#ffffff",
  5578. "opacity": 0,
  5579. "stroke-width": 1
  5580. }
  5581. },
  5582. "mapper": {
  5583. "type": "code",
  5584. "value": ""
  5585. },
  5586. "parser": {
  5587. "type": "code",
  5588. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5589. },
  5590. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5591. "position": {
  5592. "type": "list<double>",
  5593. "value": [
  5594. "0;28.435752996338806,80.94218479629139%",
  5595. "0;14.452611388707226,58.72276151887799%"
  5596. ]
  5597. },
  5598. "orientation": {
  5599. "type": "double",
  5600. "value": "0;35.960517196644844"
  5601. },
  5602. "scale": {
  5603. "type": "list<double>",
  5604. "value": [
  5605. 1,
  5606. 1
  5607. ]
  5608. },
  5609. "arrow": "arrowTail",
  5610. "arrowType": "diamond-white",
  5611. "$linkDecoratorInfo": {
  5612. "type": "map<string,double>",
  5613. "value": {
  5614. "xratio": 1,
  5615. "yoffset": -5
  5616. }
  5617. }
  5618. },
  5619. "278": {
  5620. "segments": {
  5621. "type": "string",
  5622. "value": "m0,0 l20,8 l-20,8"
  5623. },
  5624. "style": {
  5625. "type": "map<string,string>",
  5626. "value": {
  5627. "stroke": "#000000",
  5628. "fill": "#000000",
  5629. "fill-opacity": 0,
  5630. "stroke-width": 1,
  5631. "opacity": 0
  5632. }
  5633. },
  5634. "mapper": {
  5635. "type": "code",
  5636. "value": ""
  5637. },
  5638. "parser": {
  5639. "type": "code",
  5640. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5641. },
  5642. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5643. "position": {
  5644. "type": "list<double>",
  5645. "value": [
  5646. "0;30.19743584190519,80.94218479629139%",
  5647. "0;12.02434584481847,58.72276151887799%"
  5648. ]
  5649. },
  5650. "orientation": {
  5651. "type": "double",
  5652. "value": "0;35.960517196644844"
  5653. },
  5654. "scale": {
  5655. "type": "list<double>",
  5656. "value": [
  5657. 1,
  5658. 1
  5659. ]
  5660. },
  5661. "arrow": "arrowTail",
  5662. "arrowType": "arrow-empty-large",
  5663. "$linkDecoratorInfo": {
  5664. "type": "map<string,double>",
  5665. "value": {
  5666. "xratio": 1,
  5667. "yoffset": -8
  5668. }
  5669. }
  5670. },
  5671. "279": {
  5672. "r": {
  5673. "type": "double",
  5674. "value": 5
  5675. },
  5676. "style": {
  5677. "type": "map<string,string>",
  5678. "value": {
  5679. "stroke": "#000000",
  5680. "fill": "#ffffff",
  5681. "opacity": 0,
  5682. "stroke-width": 1
  5683. }
  5684. },
  5685. "mapper": {
  5686. "type": "code",
  5687. "value": ""
  5688. },
  5689. "parser": {
  5690. "type": "code",
  5691. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5692. },
  5693. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5694. "position": {
  5695. "type": "list<double>",
  5696. "value": [
  5697. "0;28.435752996338806,80.94218479629139%",
  5698. "0;14.452611388707226,58.72276151887799%"
  5699. ]
  5700. },
  5701. "orientation": {
  5702. "type": "double",
  5703. "value": "0;35.960517196644844"
  5704. },
  5705. "scale": {
  5706. "type": "list<double>",
  5707. "value": [
  5708. 1,
  5709. 1
  5710. ]
  5711. },
  5712. "arrow": "arrowTail",
  5713. "arrowType": "circle-white",
  5714. "$linkDecoratorInfo": {
  5715. "type": "map<string,double>",
  5716. "value": {
  5717. "xratio": 1,
  5718. "yoffset": -5
  5719. }
  5720. }
  5721. },
  5722. "280": {
  5723. "segments": {
  5724. "type": "string",
  5725. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5726. },
  5727. "style": {
  5728. "type": "map<string,string>",
  5729. "value": {
  5730. "stroke": "#000000",
  5731. "fill": "#ffffff",
  5732. "opacity": 0,
  5733. "stroke-width": 1
  5734. }
  5735. },
  5736. "mapper": {
  5737. "type": "code",
  5738. "value": ""
  5739. },
  5740. "parser": {
  5741. "type": "code",
  5742. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5743. },
  5744. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5745. "position": {
  5746. "type": "list<double>",
  5747. "value": [
  5748. "0;31.37189107228278,80.94218479629139%",
  5749. "0;10.405502148892651,58.72276151887799%"
  5750. ]
  5751. },
  5752. "orientation": {
  5753. "type": "double",
  5754. "value": "0;35.960517196644844"
  5755. },
  5756. "scale": {
  5757. "type": "list<double>",
  5758. "value": [
  5759. 1,
  5760. 1
  5761. ]
  5762. },
  5763. "arrow": "arrowTail",
  5764. "arrowType": "diamond-white-large",
  5765. "$linkDecoratorInfo": {
  5766. "type": "map<string,double>",
  5767. "value": {
  5768. "xratio": 1,
  5769. "yoffset": -10
  5770. }
  5771. }
  5772. },
  5773. "281": {
  5774. "segments": {
  5775. "type": "string",
  5776. "value": "m0,0 l10,4 l-10,4"
  5777. },
  5778. "style": {
  5779. "type": "map<string,string>",
  5780. "value": {
  5781. "stroke": "#000000",
  5782. "fill": "#000000",
  5783. "fill-opacity": 0,
  5784. "stroke-width": 1,
  5785. "opacity": 0
  5786. }
  5787. },
  5788. "mapper": {
  5789. "type": "code",
  5790. "value": ""
  5791. },
  5792. "parser": {
  5793. "type": "code",
  5794. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5795. },
  5796. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5797. "position": {
  5798. "type": "list<double>",
  5799. "value": [
  5800. "0;27.84852538115001,80.94218479629139%",
  5801. "0;15.262033236670163,58.72276151887799%"
  5802. ]
  5803. },
  5804. "orientation": {
  5805. "type": "double",
  5806. "value": "0;35.960517196644844"
  5807. },
  5808. "scale": {
  5809. "type": "list<double>",
  5810. "value": [
  5811. 1,
  5812. 1
  5813. ]
  5814. },
  5815. "arrow": "arrowTail",
  5816. "arrowType": "arrow-empty",
  5817. "$linkDecoratorInfo": {
  5818. "type": "map<string,double>",
  5819. "value": {
  5820. "xratio": 1,
  5821. "yoffset": -4
  5822. }
  5823. }
  5824. },
  5825. "282": {
  5826. "segments": {
  5827. "type": "string",
  5828. "value": "m0,0 l10,5 l-10,5 z"
  5829. },
  5830. "style": {
  5831. "type": "map<string,string>",
  5832. "value": {
  5833. "stroke": "#000000",
  5834. "fill": "#ffffff",
  5835. "opacity": 0,
  5836. "stroke-width": 1
  5837. }
  5838. },
  5839. "mapper": {
  5840. "type": "code",
  5841. "value": ""
  5842. },
  5843. "parser": {
  5844. "type": "code",
  5845. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5846. },
  5847. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5848. "position": {
  5849. "type": "list<double>",
  5850. "value": [
  5851. "0;28.435752996338806,80.94218479629139%",
  5852. "0;14.452611388707226,58.72276151887799%"
  5853. ]
  5854. },
  5855. "orientation": {
  5856. "type": "double",
  5857. "value": "0;35.960517196644844"
  5858. },
  5859. "scale": {
  5860. "type": "list<double>",
  5861. "value": [
  5862. 1,
  5863. 1
  5864. ]
  5865. },
  5866. "arrow": "arrowTail",
  5867. "arrowType": "triangle-white",
  5868. "$linkDecoratorInfo": {
  5869. "type": "map<string,double>",
  5870. "value": {
  5871. "xratio": 1,
  5872. "yoffset": -5
  5873. }
  5874. }
  5875. },
  5876. "283": {
  5877. "segments": {
  5878. "type": "string",
  5879. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5880. },
  5881. "style": {
  5882. "type": "map<string,string>",
  5883. "value": {
  5884. "stroke": "#000000",
  5885. "fill": "#ffffff",
  5886. "opacity": 0,
  5887. "stroke-width": 1
  5888. }
  5889. },
  5890. "mapper": {
  5891. "type": "code",
  5892. "value": ""
  5893. },
  5894. "parser": {
  5895. "type": "code",
  5896. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5897. },
  5898. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5899. "position": {
  5900. "type": "list<double>",
  5901. "value": [
  5902. "0;-22.56386192405614,0%",
  5903. "0;-22.547109239814574,0%"
  5904. ]
  5905. },
  5906. "orientation": {
  5907. "type": "double",
  5908. "value": "0;35.96051719664488"
  5909. },
  5910. "scale": {
  5911. "type": "list<double>",
  5912. "value": [
  5913. 1,
  5914. 1
  5915. ]
  5916. },
  5917. "arrow": "arrowHead",
  5918. "arrowType": "diamond-white",
  5919. "$linkDecoratorInfo": {
  5920. "type": "map<string,double>",
  5921. "value": {
  5922. "xratio": -1,
  5923. "yoffset": -5
  5924. }
  5925. }
  5926. },
  5927. "284": {
  5928. "segments": {
  5929. "type": "string",
  5930. "value": "m0,0 l-10,5 l10,5 z"
  5931. },
  5932. "style": {
  5933. "type": "map<string,string>",
  5934. "value": {
  5935. "stroke": "#000000",
  5936. "fill": "#ffffff",
  5937. "opacity": 0,
  5938. "stroke-width": 1
  5939. }
  5940. },
  5941. "mapper": {
  5942. "type": "code",
  5943. "value": ""
  5944. },
  5945. "parser": {
  5946. "type": "code",
  5947. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5948. },
  5949. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5950. "position": {
  5951. "type": "list<double>",
  5952. "value": [
  5953. "0;-22.56386192405614,0%",
  5954. "0;-22.547109239814574,0%"
  5955. ]
  5956. },
  5957. "orientation": {
  5958. "type": "double",
  5959. "value": "0;35.96051719664488"
  5960. },
  5961. "scale": {
  5962. "type": "list<double>",
  5963. "value": [
  5964. 1,
  5965. 1
  5966. ]
  5967. },
  5968. "arrow": "arrowHead",
  5969. "arrowType": "triangle-white",
  5970. "$linkDecoratorInfo": {
  5971. "type": "map<string,double>",
  5972. "value": {
  5973. "xratio": -1,
  5974. "yoffset": -5
  5975. }
  5976. }
  5977. },
  5978. "285": {
  5979. "segments": {
  5980. "type": "string",
  5981. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5982. },
  5983. "style": {
  5984. "type": "map<string,string>",
  5985. "value": {
  5986. "stroke": "#000000",
  5987. "fill": "#000000",
  5988. "opacity": 0,
  5989. "stroke-width": 1
  5990. }
  5991. },
  5992. "mapper": {
  5993. "type": "code",
  5994. "value": ""
  5995. },
  5996. "parser": {
  5997. "type": "code",
  5998. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5999. },
  6000. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6001. "position": {
  6002. "type": "list<double>",
  6003. "value": [
  6004. "0;-22.56386192405614,0%",
  6005. "0;-22.547109239814574,0%"
  6006. ]
  6007. },
  6008. "orientation": {
  6009. "type": "double",
  6010. "value": "0;35.96051719664488"
  6011. },
  6012. "scale": {
  6013. "type": "list<double>",
  6014. "value": [
  6015. 1,
  6016. 1
  6017. ]
  6018. },
  6019. "arrow": "arrowHead",
  6020. "arrowType": "diamond-black",
  6021. "$linkDecoratorInfo": {
  6022. "type": "map<string,double>",
  6023. "value": {
  6024. "xratio": -1,
  6025. "yoffset": -5
  6026. }
  6027. }
  6028. },
  6029. "286": {
  6030. "r": {
  6031. "type": "double",
  6032. "value": 10
  6033. },
  6034. "style": {
  6035. "type": "map<string,string>",
  6036. "value": {
  6037. "stroke": "#000000",
  6038. "fill": "#000000",
  6039. "opacity": 0,
  6040. "stroke-width": 1
  6041. }
  6042. },
  6043. "mapper": {
  6044. "type": "code",
  6045. "value": ""
  6046. },
  6047. "parser": {
  6048. "type": "code",
  6049. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6050. },
  6051. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6052. "position": {
  6053. "type": "list<double>",
  6054. "value": [
  6055. "0;-19.62772384811217,0%",
  6056. "0;-26.59421847962915,0%"
  6057. ]
  6058. },
  6059. "orientation": {
  6060. "type": "double",
  6061. "value": "0;35.96051719664488"
  6062. },
  6063. "scale": {
  6064. "type": "list<double>",
  6065. "value": [
  6066. 1,
  6067. 1
  6068. ]
  6069. },
  6070. "arrow": "arrowHead",
  6071. "arrowType": "circle-black-large",
  6072. "$linkDecoratorInfo": {
  6073. "type": "map<string,double>",
  6074. "value": {
  6075. "xratio": -1,
  6076. "yoffset": -10
  6077. }
  6078. }
  6079. },
  6080. "287": {
  6081. "segments": {
  6082. "type": "string",
  6083. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  6084. },
  6085. "style": {
  6086. "type": "map<string,string>",
  6087. "value": {
  6088. "stroke": "#000000",
  6089. "fill": "#000000",
  6090. "opacity": 0,
  6091. "stroke-width": 1
  6092. }
  6093. },
  6094. "mapper": {
  6095. "type": "code",
  6096. "value": ""
  6097. },
  6098. "parser": {
  6099. "type": "code",
  6100. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6101. },
  6102. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6103. "position": {
  6104. "type": "list<double>",
  6105. "value": [
  6106. "0;-20.802179078489758,0%",
  6107. "0;-24.97537478370333,0%"
  6108. ]
  6109. },
  6110. "orientation": {
  6111. "type": "double",
  6112. "value": "0;35.96051719664488"
  6113. },
  6114. "scale": {
  6115. "type": "list<double>",
  6116. "value": [
  6117. 1,
  6118. 1
  6119. ]
  6120. },
  6121. "arrow": "arrowHead",
  6122. "arrowType": "arrow-black-large",
  6123. "$linkDecoratorInfo": {
  6124. "type": "map<string,double>",
  6125. "value": {
  6126. "xratio": -1,
  6127. "yoffset": -8
  6128. }
  6129. }
  6130. },
  6131. "288": {
  6132. "segments": {
  6133. "type": "string",
  6134. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  6135. },
  6136. "style": {
  6137. "type": "map<string,string>",
  6138. "value": {
  6139. "stroke": "#000000",
  6140. "fill": "#000000",
  6141. "opacity": 0,
  6142. "stroke-width": 1
  6143. }
  6144. },
  6145. "mapper": {
  6146. "type": "code",
  6147. "value": ""
  6148. },
  6149. "parser": {
  6150. "type": "code",
  6151. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6152. },
  6153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6154. "position": {
  6155. "type": "list<double>",
  6156. "value": [
  6157. "0;-23.151089539244822,0%",
  6158. "0;-21.737687391851637,0%"
  6159. ]
  6160. },
  6161. "orientation": {
  6162. "type": "double",
  6163. "value": "0;35.96051719664488"
  6164. },
  6165. "scale": {
  6166. "type": "list<double>",
  6167. "value": [
  6168. 1,
  6169. 1
  6170. ]
  6171. },
  6172. "arrow": "arrowHead",
  6173. "arrowType": "arrow-black",
  6174. "$linkDecoratorInfo": {
  6175. "type": "map<string,double>",
  6176. "value": {
  6177. "xratio": -1,
  6178. "yoffset": -4
  6179. }
  6180. }
  6181. },
  6182. "289": {
  6183. "segments": {
  6184. "type": "string",
  6185. "value": "m0,0 l-20,10 l20,10 z"
  6186. },
  6187. "style": {
  6188. "type": "map<string,string>",
  6189. "value": {
  6190. "stroke": "#000000",
  6191. "fill": "#ffffff",
  6192. "opacity": 0,
  6193. "stroke-width": 1
  6194. }
  6195. },
  6196. "mapper": {
  6197. "type": "code",
  6198. "value": ""
  6199. },
  6200. "parser": {
  6201. "type": "code",
  6202. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6203. },
  6204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6205. "position": {
  6206. "type": "list<double>",
  6207. "value": [
  6208. "0;-19.62772384811217,0%",
  6209. "0;-26.59421847962915,0%"
  6210. ]
  6211. },
  6212. "orientation": {
  6213. "type": "double",
  6214. "value": "0;35.96051719664488"
  6215. },
  6216. "scale": {
  6217. "type": "list<double>",
  6218. "value": [
  6219. 1,
  6220. 1
  6221. ]
  6222. },
  6223. "arrow": "arrowHead",
  6224. "arrowType": "triangle-white-large",
  6225. "$linkDecoratorInfo": {
  6226. "type": "map<string,double>",
  6227. "value": {
  6228. "xratio": -1,
  6229. "yoffset": -10
  6230. }
  6231. }
  6232. },
  6233. "290": {
  6234. "segments": {
  6235. "type": "string",
  6236. "value": "m0,0 l-20,10 l20,10 z"
  6237. },
  6238. "style": {
  6239. "type": "map<string,string>",
  6240. "value": {
  6241. "stroke": "#000000",
  6242. "fill": "#000000",
  6243. "opacity": 0,
  6244. "stroke-width": 1
  6245. }
  6246. },
  6247. "mapper": {
  6248. "type": "code",
  6249. "value": ""
  6250. },
  6251. "parser": {
  6252. "type": "code",
  6253. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6254. },
  6255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6256. "position": {
  6257. "type": "list<double>",
  6258. "value": [
  6259. "0;-19.62772384811217,0%",
  6260. "0;-26.59421847962915,0%"
  6261. ]
  6262. },
  6263. "orientation": {
  6264. "type": "double",
  6265. "value": "0;35.96051719664488"
  6266. },
  6267. "scale": {
  6268. "type": "list<double>",
  6269. "value": [
  6270. 1,
  6271. 1
  6272. ]
  6273. },
  6274. "arrow": "arrowHead",
  6275. "arrowType": "triangle-black-large",
  6276. "$linkDecoratorInfo": {
  6277. "type": "map<string,double>",
  6278. "value": {
  6279. "xratio": -1,
  6280. "yoffset": -10
  6281. }
  6282. }
  6283. },
  6284. "291": {
  6285. "r": {
  6286. "type": "double",
  6287. "value": 5
  6288. },
  6289. "style": {
  6290. "type": "map<string,string>",
  6291. "value": {
  6292. "stroke": "#000000",
  6293. "fill": "#000000",
  6294. "opacity": 0,
  6295. "stroke-width": 1
  6296. }
  6297. },
  6298. "mapper": {
  6299. "type": "code",
  6300. "value": ""
  6301. },
  6302. "parser": {
  6303. "type": "code",
  6304. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6305. },
  6306. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6307. "position": {
  6308. "type": "list<double>",
  6309. "value": [
  6310. "0;-22.56386192405614,0%",
  6311. "0;-22.547109239814574,0%"
  6312. ]
  6313. },
  6314. "orientation": {
  6315. "type": "double",
  6316. "value": "0;35.96051719664488"
  6317. },
  6318. "scale": {
  6319. "type": "list<double>",
  6320. "value": [
  6321. 1,
  6322. 1
  6323. ]
  6324. },
  6325. "arrow": "arrowHead",
  6326. "arrowType": "circle-black",
  6327. "$linkDecoratorInfo": {
  6328. "type": "map<string,double>",
  6329. "value": {
  6330. "xratio": -1,
  6331. "yoffset": -5
  6332. }
  6333. }
  6334. },
  6335. "292": {
  6336. "r": {
  6337. "type": "double",
  6338. "value": 5
  6339. },
  6340. "style": {
  6341. "type": "map<string,string>",
  6342. "value": {
  6343. "stroke": "#000000",
  6344. "fill": "#ffffff",
  6345. "opacity": 0,
  6346. "stroke-width": 1
  6347. }
  6348. },
  6349. "mapper": {
  6350. "type": "code",
  6351. "value": ""
  6352. },
  6353. "parser": {
  6354. "type": "code",
  6355. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6356. },
  6357. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6358. "position": {
  6359. "type": "list<double>",
  6360. "value": [
  6361. "0;-22.56386192405614,0%",
  6362. "0;-22.547109239814574,0%"
  6363. ]
  6364. },
  6365. "orientation": {
  6366. "type": "double",
  6367. "value": "0;35.96051719664488"
  6368. },
  6369. "scale": {
  6370. "type": "list<double>",
  6371. "value": [
  6372. 1,
  6373. 1
  6374. ]
  6375. },
  6376. "arrow": "arrowHead",
  6377. "arrowType": "circle-white",
  6378. "$linkDecoratorInfo": {
  6379. "type": "map<string,double>",
  6380. "value": {
  6381. "xratio": -1,
  6382. "yoffset": -5
  6383. }
  6384. }
  6385. },
  6386. "293": {
  6387. "r": {
  6388. "type": "double",
  6389. "value": 10
  6390. },
  6391. "style": {
  6392. "type": "map<string,string>",
  6393. "value": {
  6394. "stroke": "#000000",
  6395. "fill": "#ffffff",
  6396. "opacity": 0,
  6397. "stroke-width": 1
  6398. }
  6399. },
  6400. "mapper": {
  6401. "type": "code",
  6402. "value": ""
  6403. },
  6404. "parser": {
  6405. "type": "code",
  6406. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6407. },
  6408. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6409. "position": {
  6410. "type": "list<double>",
  6411. "value": [
  6412. "0;-19.62772384811217,0%",
  6413. "0;-26.59421847962915,0%"
  6414. ]
  6415. },
  6416. "orientation": {
  6417. "type": "double",
  6418. "value": "0;35.96051719664488"
  6419. },
  6420. "scale": {
  6421. "type": "list<double>",
  6422. "value": [
  6423. 1,
  6424. 1
  6425. ]
  6426. },
  6427. "arrow": "arrowHead",
  6428. "arrowType": "circle-white-large",
  6429. "$linkDecoratorInfo": {
  6430. "type": "map<string,double>",
  6431. "value": {
  6432. "xratio": -1,
  6433. "yoffset": -10
  6434. }
  6435. }
  6436. },
  6437. "294": {
  6438. "segments": {
  6439. "type": "string",
  6440. "value": "m0,0 l-20,8 l20,8"
  6441. },
  6442. "style": {
  6443. "type": "map<string,string>",
  6444. "value": {
  6445. "stroke": "#000000",
  6446. "fill": "#000000",
  6447. "fill-opacity": 0,
  6448. "stroke-width": 1,
  6449. "opacity": 0
  6450. }
  6451. },
  6452. "mapper": {
  6453. "type": "code",
  6454. "value": ""
  6455. },
  6456. "parser": {
  6457. "type": "code",
  6458. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6459. },
  6460. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6461. "position": {
  6462. "type": "list<double>",
  6463. "value": [
  6464. "0;-20.802179078489758,0%",
  6465. "0;-24.97537478370333,0%"
  6466. ]
  6467. },
  6468. "orientation": {
  6469. "type": "double",
  6470. "value": "0;35.96051719664488"
  6471. },
  6472. "scale": {
  6473. "type": "list<double>",
  6474. "value": [
  6475. 1,
  6476. 1
  6477. ]
  6478. },
  6479. "arrow": "arrowHead",
  6480. "arrowType": "arrow-empty-large",
  6481. "$linkDecoratorInfo": {
  6482. "type": "map<string,double>",
  6483. "value": {
  6484. "xratio": -1,
  6485. "yoffset": -8
  6486. }
  6487. }
  6488. },
  6489. "295": {
  6490. "segments": {
  6491. "type": "string",
  6492. "value": "m0,0 l-10,4 l10,4"
  6493. },
  6494. "style": {
  6495. "type": "map<string,string>",
  6496. "value": {
  6497. "stroke": "#000000",
  6498. "fill": "#000000",
  6499. "fill-opacity": 0,
  6500. "stroke-width": 1,
  6501. "opacity": 0
  6502. }
  6503. },
  6504. "mapper": {
  6505. "type": "code",
  6506. "value": ""
  6507. },
  6508. "parser": {
  6509. "type": "code",
  6510. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6511. },
  6512. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6513. "position": {
  6514. "type": "list<double>",
  6515. "value": [
  6516. "0;-23.151089539244822,0%",
  6517. "0;-21.737687391851637,0%"
  6518. ]
  6519. },
  6520. "orientation": {
  6521. "type": "double",
  6522. "value": "0;35.96051719664488"
  6523. },
  6524. "scale": {
  6525. "type": "list<double>",
  6526. "value": [
  6527. 1,
  6528. 1
  6529. ]
  6530. },
  6531. "arrow": "arrowHead",
  6532. "arrowType": "arrow-empty",
  6533. "$linkDecoratorInfo": {
  6534. "type": "map<string,double>",
  6535. "value": {
  6536. "xratio": -1,
  6537. "yoffset": -4
  6538. }
  6539. }
  6540. },
  6541. "296": {
  6542. "segments": {
  6543. "type": "string",
  6544. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6545. },
  6546. "style": {
  6547. "type": "map<string,string>",
  6548. "value": {
  6549. "stroke": "#000000",
  6550. "fill": "#000000",
  6551. "opacity": 0,
  6552. "stroke-width": 1
  6553. }
  6554. },
  6555. "mapper": {
  6556. "type": "code",
  6557. "value": ""
  6558. },
  6559. "parser": {
  6560. "type": "code",
  6561. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6562. },
  6563. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6564. "position": {
  6565. "type": "list<double>",
  6566. "value": [
  6567. "0;-19.62772384811217,0%",
  6568. "0;-26.59421847962915,0%"
  6569. ]
  6570. },
  6571. "orientation": {
  6572. "type": "double",
  6573. "value": "0;35.96051719664488"
  6574. },
  6575. "scale": {
  6576. "type": "list<double>",
  6577. "value": [
  6578. 1,
  6579. 1
  6580. ]
  6581. },
  6582. "arrow": "arrowHead",
  6583. "arrowType": "diamond-black-large",
  6584. "$linkDecoratorInfo": {
  6585. "type": "map<string,double>",
  6586. "value": {
  6587. "xratio": -1,
  6588. "yoffset": -10
  6589. }
  6590. }
  6591. },
  6592. "297": {
  6593. "segments": {
  6594. "type": "string",
  6595. "value": "m0,0 l-10,4 l10,4 z"
  6596. },
  6597. "style": {
  6598. "type": "map<string,string>",
  6599. "value": {
  6600. "stroke": "#000000",
  6601. "fill": "#000000",
  6602. "opacity": 0,
  6603. "stroke-width": 1
  6604. }
  6605. },
  6606. "mapper": {
  6607. "type": "code",
  6608. "value": ""
  6609. },
  6610. "parser": {
  6611. "type": "code",
  6612. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6613. },
  6614. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6615. "position": {
  6616. "type": "list<double>",
  6617. "value": [
  6618. "0;-23.151089539244822,0%",
  6619. "0;-21.737687391851637,0%"
  6620. ]
  6621. },
  6622. "orientation": {
  6623. "type": "double",
  6624. "value": "0;35.96051719664488"
  6625. },
  6626. "scale": {
  6627. "type": "list<double>",
  6628. "value": [
  6629. 1,
  6630. 1
  6631. ]
  6632. },
  6633. "arrow": "arrowHead",
  6634. "arrowType": "triangle-black",
  6635. "$linkDecoratorInfo": {
  6636. "type": "map<string,double>",
  6637. "value": {
  6638. "xratio": -1,
  6639. "yoffset": -4
  6640. }
  6641. }
  6642. },
  6643. "298": {
  6644. "segments": {
  6645. "type": "string",
  6646. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6647. },
  6648. "style": {
  6649. "type": "map<string,string>",
  6650. "value": {
  6651. "stroke": "#000000",
  6652. "fill": "#ffffff",
  6653. "opacity": 0,
  6654. "stroke-width": 1
  6655. }
  6656. },
  6657. "mapper": {
  6658. "type": "code",
  6659. "value": ""
  6660. },
  6661. "parser": {
  6662. "type": "code",
  6663. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6664. },
  6665. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6666. "position": {
  6667. "type": "list<double>",
  6668. "value": [
  6669. "0;-19.62772384811217,0%",
  6670. "0;-26.59421847962915,0%"
  6671. ]
  6672. },
  6673. "orientation": {
  6674. "type": "double",
  6675. "value": "0;35.96051719664488"
  6676. },
  6677. "scale": {
  6678. "type": "list<double>",
  6679. "value": [
  6680. 1,
  6681. 1
  6682. ]
  6683. },
  6684. "arrow": "arrowHead",
  6685. "arrowType": "diamond-white-large",
  6686. "$linkDecoratorInfo": {
  6687. "type": "map<string,double>",
  6688. "value": {
  6689. "xratio": -1,
  6690. "yoffset": -10
  6691. }
  6692. }
  6693. }
  6694. },
  6695. "edges": []
  6696. }
  6697. },
  6698. "$asuri": {
  6699. "type": "string",
  6700. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/108.instance"
  6701. },
  6702. "$segments": {
  6703. "type": "map<string,list<string>>",
  6704. "value": {
  6705. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon/98.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/108.instance": "M673,271L698.5,289.5",
  6706. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/108.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/107.instance": "M698.5605214914438,289.5439077486945L723.999614920395,307.9997206285218"
  6707. }
  6708. },
  6709. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  6710. },
  6711. "109": {
  6712. "typename": {
  6713. "type": "string",
  6714. "value": "CQRule2Icon"
  6715. },
  6716. "position": {
  6717. "type": "list<double>",
  6718. "value": [
  6719. 620,
  6720. 418
  6721. ]
  6722. },
  6723. "orientation": {
  6724. "type": "double",
  6725. "value": 0
  6726. },
  6727. "scale": {
  6728. "type": "list<double>",
  6729. "value": [
  6730. 1,
  6731. 1
  6732. ]
  6733. },
  6734. "mapper": {
  6735. "type": "code",
  6736. "value": "({position:getAttr(\"position\")})"
  6737. },
  6738. "parser": {
  6739. "type": "code",
  6740. "value": "({position:getAttr(\"position\")})"
  6741. },
  6742. "$contents": {
  6743. "type": "map<string,*>",
  6744. "value": {
  6745. "nodes": {
  6746. "1277": {
  6747. "width": {
  6748. "type": "double",
  6749. "value": 200
  6750. },
  6751. "height": {
  6752. "type": "double",
  6753. "value": 50
  6754. },
  6755. "cornerRadius": {
  6756. "type": "double",
  6757. "value": 1
  6758. },
  6759. "style": {
  6760. "type": "map<string,string>",
  6761. "value": {
  6762. "fill": "#ffffff",
  6763. "stroke": "#008000",
  6764. "stroke-width": "5",
  6765. "stroke-linecap": "butt",
  6766. "stroke-linejoin": "miter",
  6767. "stroke-miterlimit": "4",
  6768. "stroke-opacity": "1",
  6769. "fill-opacity": "0.5"
  6770. }
  6771. },
  6772. "mapper": {
  6773. "type": "code",
  6774. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  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/Rectangle",
  6781. "position": {
  6782. "type": "list<double>",
  6783. "value": [
  6784. 9,
  6785. 29
  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. "1278": {
  6801. "segments": {
  6802. "type": "string",
  6803. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  6804. },
  6805. "style": {
  6806. "type": "map<string,string>",
  6807. "value": {
  6808. "fill": "none",
  6809. "stroke": "#008000",
  6810. "stroke-width": "3",
  6811. "stroke-linecap": "round",
  6812. "stroke-linejoin": "round",
  6813. "stroke-miterlimit": "4",
  6814. "stroke-opacity": "1",
  6815. "stroke-dasharray": "none"
  6816. }
  6817. },
  6818. "mapper": {
  6819. "type": "code",
  6820. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6821. },
  6822. "parser": {
  6823. "type": "code",
  6824. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6825. },
  6826. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6827. "position": {
  6828. "type": "list<double>",
  6829. "value": [
  6830. 55,
  6831. 82
  6832. ]
  6833. },
  6834. "orientation": {
  6835. "type": "double",
  6836. "value": 0
  6837. },
  6838. "scale": {
  6839. "type": "list<double>",
  6840. "value": [
  6841. 1,
  6842. 1
  6843. ]
  6844. }
  6845. },
  6846. "1279": {
  6847. "textContent": {
  6848. "type": "string",
  6849. "value": ":"
  6850. },
  6851. "style": {
  6852. "type": "map<string,string>",
  6853. "value": {
  6854. "font-size": "20px",
  6855. "font-style": "normal",
  6856. "font-variant": "normal",
  6857. "font-weight": "bold",
  6858. "font-stretch": "normal",
  6859. "text-align": "left",
  6860. "line-height": "125%",
  6861. "writing-mode": "lr-tb",
  6862. "text-anchor": "left",
  6863. "fill": "#008000",
  6864. "fill-opacity": "1",
  6865. "stroke": "none",
  6866. "font-family": "Arial"
  6867. }
  6868. },
  6869. "mapper": {
  6870. "type": "code",
  6871. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6872. },
  6873. "parser": {
  6874. "type": "code",
  6875. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6876. },
  6877. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6878. "position": {
  6879. "type": "list<double>",
  6880. "value": [
  6881. 49,
  6882. 43
  6883. ]
  6884. },
  6885. "orientation": {
  6886. "type": "double",
  6887. "value": 0
  6888. },
  6889. "scale": {
  6890. "type": "list<double>",
  6891. "value": [
  6892. 1,
  6893. 1
  6894. ]
  6895. }
  6896. },
  6897. "1280": {
  6898. "segments": {
  6899. "type": "string",
  6900. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  6901. },
  6902. "style": {
  6903. "type": "map<string,string>",
  6904. "value": {
  6905. "fill": "none",
  6906. "stroke": "#008000",
  6907. "stroke-width": "3",
  6908. "stroke-linecap": "round",
  6909. "stroke-linejoin": "round",
  6910. "stroke-miterlimit": "4",
  6911. "stroke-opacity": "1",
  6912. "stroke-dasharray": "none"
  6913. }
  6914. },
  6915. "mapper": {
  6916. "type": "code",
  6917. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6918. },
  6919. "parser": {
  6920. "type": "code",
  6921. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6922. },
  6923. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6924. "position": {
  6925. "type": "list<double>",
  6926. "value": [
  6927. 152,
  6928. 82
  6929. ]
  6930. },
  6931. "orientation": {
  6932. "type": "double",
  6933. "value": 0
  6934. },
  6935. "scale": {
  6936. "type": "list<double>",
  6937. "value": [
  6938. 1,
  6939. 1
  6940. ]
  6941. }
  6942. },
  6943. "1281": {
  6944. "textContent": {
  6945. "type": "string",
  6946. "value": ""
  6947. },
  6948. "style": {
  6949. "type": "map<string,string>",
  6950. "value": {
  6951. "font-size": "20px",
  6952. "font-style": "normal",
  6953. "font-variant": "normal",
  6954. "font-weight": "bold",
  6955. "font-stretch": "normal",
  6956. "line-height": "125%",
  6957. "text-anchor": "end",
  6958. "fill": "#008000",
  6959. "fill-opacity": "1",
  6960. "stroke": "none",
  6961. "font-family": "Arial"
  6962. }
  6963. },
  6964. "mapper": {
  6965. "type": "code",
  6966. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  6967. },
  6968. "parser": {
  6969. "type": "code",
  6970. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6971. },
  6972. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6973. "position": {
  6974. "type": "list<double>",
  6975. "value": [
  6976. 48,
  6977. 43
  6978. ]
  6979. },
  6980. "orientation": {
  6981. "type": "double",
  6982. "value": 0
  6983. },
  6984. "scale": {
  6985. "type": "list<double>",
  6986. "value": [
  6987. 1,
  6988. 1
  6989. ]
  6990. }
  6991. },
  6992. "1282": {
  6993. "textContent": {
  6994. "type": "string",
  6995. "value": "findTransition"
  6996. },
  6997. "style": {
  6998. "type": "map<string,string>",
  6999. "value": {
  7000. "font-size": "20px",
  7001. "font-style": "normal",
  7002. "font-variant": "normal",
  7003. "font-weight": "bold",
  7004. "font-stretch": "normal",
  7005. "text-align": "left",
  7006. "line-height": "125%",
  7007. "writing-mode": "lr-tb",
  7008. "text-anchor": "left",
  7009. "fill": "#008000",
  7010. "fill-opacity": "1",
  7011. "stroke": "none",
  7012. "font-family": "Arial"
  7013. }
  7014. },
  7015. "mapper": {
  7016. "type": "code",
  7017. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  7018. },
  7019. "parser": {
  7020. "type": "code",
  7021. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7022. },
  7023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7024. "position": {
  7025. "type": "list<double>",
  7026. "value": [
  7027. 56,
  7028. 43
  7029. ]
  7030. },
  7031. "orientation": {
  7032. "type": "double",
  7033. "value": 0
  7034. },
  7035. "scale": {
  7036. "type": "list<double>",
  7037. "value": [
  7038. 1,
  7039. 1
  7040. ]
  7041. }
  7042. },
  7043. "1283": {
  7044. "textContent": {
  7045. "type": "string",
  7046. "value": "??"
  7047. },
  7048. "style": {
  7049. "type": "map<string,string>",
  7050. "value": {
  7051. "font-size": "20px",
  7052. "font-style": "normal",
  7053. "font-variant": "normal",
  7054. "font-weight": "bold",
  7055. "font-stretch": "normal",
  7056. "text-align": "left",
  7057. "line-height": "100%",
  7058. "writing-mode": "lr-tb",
  7059. "text-anchor": "left",
  7060. "fill": "#008000",
  7061. "fill-opacity": "1",
  7062. "stroke": "none",
  7063. "font-family": "Arial"
  7064. }
  7065. },
  7066. "mapper": {
  7067. "type": "code",
  7068. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7069. },
  7070. "parser": {
  7071. "type": "code",
  7072. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7073. },
  7074. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  7075. "position": {
  7076. "type": "list<double>",
  7077. "value": [
  7078. 198,
  7079. 7
  7080. ]
  7081. },
  7082. "orientation": {
  7083. "type": "double",
  7084. "value": 0
  7085. },
  7086. "scale": {
  7087. "type": "list<double>",
  7088. "value": [
  7089. 1,
  7090. 1
  7091. ]
  7092. }
  7093. },
  7094. "1284": {
  7095. "segments": {
  7096. "type": "string",
  7097. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  7098. },
  7099. "style": {
  7100. "type": "map<string,string>",
  7101. "value": {
  7102. "fill": "#ffffff",
  7103. "fill-opacity": "0.5",
  7104. "stroke": "#008000",
  7105. "stroke-width": "3",
  7106. "stroke-linecap": "butt",
  7107. "stroke-linejoin": "miter",
  7108. "stroke-miterlimit": "4",
  7109. "stroke-opacity": "1"
  7110. }
  7111. },
  7112. "mapper": {
  7113. "type": "code",
  7114. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7115. },
  7116. "parser": {
  7117. "type": "code",
  7118. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7119. },
  7120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7121. "position": {
  7122. "type": "list<double>",
  7123. "value": [
  7124. 103,
  7125. 5
  7126. ]
  7127. },
  7128. "orientation": {
  7129. "type": "double",
  7130. "value": 0
  7131. },
  7132. "scale": {
  7133. "type": "list<double>",
  7134. "value": [
  7135. 1,
  7136. 1
  7137. ]
  7138. }
  7139. },
  7140. "1285": {
  7141. "segments": {
  7142. "type": "string",
  7143. "value": "M 1.5,1.5069319 12.49983,12.506752"
  7144. },
  7145. "style": {
  7146. "type": "map<string,string>",
  7147. "value": {
  7148. "fill": "none",
  7149. "stroke": "#008000",
  7150. "stroke-width": "3",
  7151. "stroke-linecap": "round",
  7152. "stroke-linejoin": "round",
  7153. "stroke-miterlimit": "4",
  7154. "stroke-opacity": "1",
  7155. "stroke-dasharray": "none"
  7156. }
  7157. },
  7158. "mapper": {
  7159. "type": "code",
  7160. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7161. },
  7162. "parser": {
  7163. "type": "code",
  7164. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7165. },
  7166. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7167. "position": {
  7168. "type": "list<double>",
  7169. "value": [
  7170. 152,
  7171. 82
  7172. ]
  7173. },
  7174. "orientation": {
  7175. "type": "double",
  7176. "value": 0
  7177. },
  7178. "scale": {
  7179. "type": "list<double>",
  7180. "value": [
  7181. 1,
  7182. 1
  7183. ]
  7184. }
  7185. },
  7186. "1286": {
  7187. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7188. "position": {
  7189. "type": "list<double>",
  7190. "value": [
  7191. 31,
  7192. 42.5
  7193. ]
  7194. },
  7195. "orientation": {
  7196. "type": "double",
  7197. "value": 0
  7198. },
  7199. "scale": {
  7200. "type": "list<double>",
  7201. "value": [
  7202. 1,
  7203. 1
  7204. ]
  7205. },
  7206. "link-style": {
  7207. "type": "map<string,string>",
  7208. "value": {
  7209. "stroke": "#00ffff",
  7210. "stroke-dasharray": "",
  7211. "stroke-opacity": 0.1,
  7212. "stroke-width": 1
  7213. }
  7214. }
  7215. },
  7216. "1287": {
  7217. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7218. "position": {
  7219. "type": "list<double>",
  7220. "value": [
  7221. 23.25,
  7222. 42.5
  7223. ]
  7224. },
  7225. "orientation": {
  7226. "type": "double",
  7227. "value": 0
  7228. },
  7229. "scale": {
  7230. "type": "list<double>",
  7231. "value": [
  7232. 1,
  7233. 1
  7234. ]
  7235. },
  7236. "link-style": {
  7237. "type": "map<string,string>",
  7238. "value": {
  7239. "stroke": "#00ffff",
  7240. "stroke-dasharray": "",
  7241. "stroke-opacity": 0.1,
  7242. "stroke-width": 1
  7243. }
  7244. }
  7245. },
  7246. "1288": {
  7247. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  7248. "position": {
  7249. "type": "list<double>",
  7250. "value": [
  7251. 45.25,
  7252. 42.5
  7253. ]
  7254. },
  7255. "orientation": {
  7256. "type": "double",
  7257. "value": 0
  7258. },
  7259. "scale": {
  7260. "type": "list<double>",
  7261. "value": [
  7262. 1,
  7263. 1
  7264. ]
  7265. },
  7266. "link-style": {
  7267. "type": "map<string,string>",
  7268. "value": {
  7269. "stroke": "#00ffff",
  7270. "stroke-dasharray": "",
  7271. "stroke-opacity": 0.1,
  7272. "stroke-width": 1
  7273. }
  7274. }
  7275. }
  7276. },
  7277. "edges": [
  7278. {
  7279. "src": "1277",
  7280. "dest": "1286"
  7281. },
  7282. {
  7283. "src": "1286",
  7284. "dest": "1279"
  7285. },
  7286. {
  7287. "src": "1277",
  7288. "dest": "1287"
  7289. },
  7290. {
  7291. "src": "1287",
  7292. "dest": "1281"
  7293. },
  7294. {
  7295. "src": "1277",
  7296. "dest": "1288"
  7297. },
  7298. {
  7299. "src": "1288",
  7300. "dest": "1282"
  7301. }
  7302. ]
  7303. }
  7304. },
  7305. "$asuri": {
  7306. "type": "string",
  7307. "value": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule2/109.instance"
  7308. },
  7309. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon"
  7310. },
  7311. "110": {
  7312. "link-style": {
  7313. "type": "map<string,string>",
  7314. "value": {
  7315. "stroke": "#008080",
  7316. "stroke-dasharray": "",
  7317. "stroke-opacity": 1,
  7318. "stroke-width": 2
  7319. }
  7320. },
  7321. "arrowHead": {
  7322. "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)",
  7323. "value": "custom"
  7324. },
  7325. "arrowTail": {
  7326. "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)",
  7327. "value": "arrow-black"
  7328. },
  7329. "typename": {
  7330. "type": "string",
  7331. "value": "successLink"
  7332. },
  7333. "position": {
  7334. "type": "list<double>",
  7335. "value": [
  7336. 700.5,
  7337. 411.5
  7338. ]
  7339. },
  7340. "orientation": {
  7341. "type": "double",
  7342. "value": 0
  7343. },
  7344. "scale": {
  7345. "type": "list<double>",
  7346. "value": [
  7347. 1,
  7348. 1
  7349. ]
  7350. },
  7351. "mapper": {
  7352. "type": "code",
  7353. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7354. },
  7355. "parser": {
  7356. "type": "code",
  7357. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7358. },
  7359. "$contents": {
  7360. "type": "map<string,*>",
  7361. "value": {
  7362. "nodes": {
  7363. "267": {
  7364. "segments": {
  7365. "type": "string",
  7366. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  7367. },
  7368. "style": {
  7369. "type": "map<string,string>",
  7370. "value": {
  7371. "stroke": "#000000",
  7372. "fill": "#000000",
  7373. "opacity": 0,
  7374. "stroke-width": 1
  7375. }
  7376. },
  7377. "mapper": {
  7378. "type": "code",
  7379. "value": ""
  7380. },
  7381. "parser": {
  7382. "type": "code",
  7383. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7384. },
  7385. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7386. "position": {
  7387. "type": "list<double>",
  7388. "value": [
  7389. "0;32.804294196688716,81.73390287825949%",
  7390. "0;18.230408523686663,57.61570202893691%"
  7391. ]
  7392. },
  7393. "orientation": {
  7394. "type": "double",
  7395. "value": "0;35.180699361242056"
  7396. },
  7397. "scale": {
  7398. "type": "list<double>",
  7399. "value": [
  7400. 1,
  7401. 1
  7402. ]
  7403. },
  7404. "arrow": "arrowTail",
  7405. "arrowType": "arrow-black",
  7406. "$linkDecoratorInfo": {
  7407. "type": "map<string,double>",
  7408. "value": {
  7409. "xratio": 1,
  7410. "yoffset": -4
  7411. }
  7412. }
  7413. },
  7414. "268": {
  7415. "segments": {
  7416. "type": "string",
  7417. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7418. },
  7419. "style": {
  7420. "type": "map<string,string>",
  7421. "value": {
  7422. "stroke": "#000000",
  7423. "fill": "#000000",
  7424. "opacity": 0,
  7425. "stroke-width": 1
  7426. }
  7427. },
  7428. "mapper": {
  7429. "type": "code",
  7430. "value": ""
  7431. },
  7432. "parser": {
  7433. "type": "code",
  7434. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7435. },
  7436. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7437. "position": {
  7438. "type": "list<double>",
  7439. "value": [
  7440. "0;36.26123631842495,81.73390287825949%",
  7441. "0;13.326374350991102,57.61570202893691%"
  7442. ]
  7443. },
  7444. "orientation": {
  7445. "type": "double",
  7446. "value": "0;35.180699361242056"
  7447. },
  7448. "scale": {
  7449. "type": "list<double>",
  7450. "value": [
  7451. 1,
  7452. 1
  7453. ]
  7454. },
  7455. "arrow": "arrowTail",
  7456. "arrowType": "diamond-black-large",
  7457. "$linkDecoratorInfo": {
  7458. "type": "map<string,double>",
  7459. "value": {
  7460. "xratio": 1,
  7461. "yoffset": -10
  7462. }
  7463. }
  7464. },
  7465. "269": {
  7466. "r": {
  7467. "type": "double",
  7468. "value": 10
  7469. },
  7470. "style": {
  7471. "type": "map<string,string>",
  7472. "value": {
  7473. "stroke": "#000000",
  7474. "fill": "#000000",
  7475. "opacity": 0,
  7476. "stroke-width": 1
  7477. }
  7478. },
  7479. "mapper": {
  7480. "type": "code",
  7481. "value": ""
  7482. },
  7483. "parser": {
  7484. "type": "code",
  7485. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7486. },
  7487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7488. "position": {
  7489. "type": "list<double>",
  7490. "value": [
  7491. "0;36.26123631842495,81.73390287825949%",
  7492. "0;13.326374350991102,57.61570202893691%"
  7493. ]
  7494. },
  7495. "orientation": {
  7496. "type": "double",
  7497. "value": "0;35.180699361242056"
  7498. },
  7499. "scale": {
  7500. "type": "list<double>",
  7501. "value": [
  7502. 1,
  7503. 1
  7504. ]
  7505. },
  7506. "arrow": "arrowTail",
  7507. "arrowType": "circle-black-large",
  7508. "$linkDecoratorInfo": {
  7509. "type": "map<string,double>",
  7510. "value": {
  7511. "xratio": 1,
  7512. "yoffset": -10
  7513. }
  7514. }
  7515. },
  7516. "270": {
  7517. "r": {
  7518. "type": "double",
  7519. "value": 10
  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": ""
  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. "0;36.26123631842495,81.73390287825949%",
  7543. "0;13.326374350991102,57.61570202893691%"
  7544. ]
  7545. },
  7546. "orientation": {
  7547. "type": "double",
  7548. "value": "0;35.180699361242056"
  7549. },
  7550. "scale": {
  7551. "type": "list<double>",
  7552. "value": [
  7553. 1,
  7554. 1
  7555. ]
  7556. },
  7557. "arrow": "arrowTail",
  7558. "arrowType": "circle-white-large",
  7559. "$linkDecoratorInfo": {
  7560. "type": "map<string,double>",
  7561. "value": {
  7562. "xratio": 1,
  7563. "yoffset": -10
  7564. }
  7565. }
  7566. },
  7567. "271": {
  7568. "r": {
  7569. "type": "double",
  7570. "value": 5
  7571. },
  7572. "style": {
  7573. "type": "map<string,string>",
  7574. "value": {
  7575. "stroke": "#000000",
  7576. "fill": "#000000",
  7577. "opacity": 0,
  7578. "stroke-width": 1
  7579. }
  7580. },
  7581. "mapper": {
  7582. "type": "code",
  7583. "value": ""
  7584. },
  7585. "parser": {
  7586. "type": "code",
  7587. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7588. },
  7589. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7590. "position": {
  7591. "type": "list<double>",
  7592. "value": [
  7593. "0;33.38045121697803,81.73390287825949%",
  7594. "0;17.413069494904107,57.61570202893691%"
  7595. ]
  7596. },
  7597. "orientation": {
  7598. "type": "double",
  7599. "value": "0;35.180699361242056"
  7600. },
  7601. "scale": {
  7602. "type": "list<double>",
  7603. "value": [
  7604. 1,
  7605. 1
  7606. ]
  7607. },
  7608. "arrow": "arrowTail",
  7609. "arrowType": "circle-black",
  7610. "$linkDecoratorInfo": {
  7611. "type": "map<string,double>",
  7612. "value": {
  7613. "xratio": 1,
  7614. "yoffset": -5
  7615. }
  7616. }
  7617. },
  7618. "272": {
  7619. "segments": {
  7620. "type": "string",
  7621. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7622. },
  7623. "style": {
  7624. "type": "map<string,string>",
  7625. "value": {
  7626. "stroke": "#000000",
  7627. "fill": "#000000",
  7628. "opacity": 0,
  7629. "stroke-width": 1
  7630. }
  7631. },
  7632. "mapper": {
  7633. "type": "code",
  7634. "value": ""
  7635. },
  7636. "parser": {
  7637. "type": "code",
  7638. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7639. },
  7640. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7641. "position": {
  7642. "type": "list<double>",
  7643. "value": [
  7644. "0;33.38045121697803,81.73390287825949%",
  7645. "0;17.413069494904107,57.61570202893691%"
  7646. ]
  7647. },
  7648. "orientation": {
  7649. "type": "double",
  7650. "value": "0;35.180699361242056"
  7651. },
  7652. "scale": {
  7653. "type": "list<double>",
  7654. "value": [
  7655. 1,
  7656. 1
  7657. ]
  7658. },
  7659. "arrow": "arrowTail",
  7660. "arrowType": "diamond-black",
  7661. "$linkDecoratorInfo": {
  7662. "type": "map<string,double>",
  7663. "value": {
  7664. "xratio": 1,
  7665. "yoffset": -5
  7666. }
  7667. }
  7668. },
  7669. "273": {
  7670. "segments": {
  7671. "type": "string",
  7672. "value": "m0,0 l20,10 l-20,10 z"
  7673. },
  7674. "style": {
  7675. "type": "map<string,string>",
  7676. "value": {
  7677. "stroke": "#000000",
  7678. "fill": "#000000",
  7679. "opacity": 0,
  7680. "stroke-width": 1
  7681. }
  7682. },
  7683. "mapper": {
  7684. "type": "code",
  7685. "value": ""
  7686. },
  7687. "parser": {
  7688. "type": "code",
  7689. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7690. },
  7691. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7692. "position": {
  7693. "type": "list<double>",
  7694. "value": [
  7695. "0;36.26123631842495,81.73390287825949%",
  7696. "0;13.326374350991102,57.61570202893691%"
  7697. ]
  7698. },
  7699. "orientation": {
  7700. "type": "double",
  7701. "value": "0;35.180699361242056"
  7702. },
  7703. "scale": {
  7704. "type": "list<double>",
  7705. "value": [
  7706. 1,
  7707. 1
  7708. ]
  7709. },
  7710. "arrow": "arrowTail",
  7711. "arrowType": "triangle-black-large",
  7712. "$linkDecoratorInfo": {
  7713. "type": "map<string,double>",
  7714. "value": {
  7715. "xratio": 1,
  7716. "yoffset": -10
  7717. }
  7718. }
  7719. },
  7720. "274": {
  7721. "segments": {
  7722. "type": "string",
  7723. "value": "m0,0 l10,4 l-10,4 z"
  7724. },
  7725. "style": {
  7726. "type": "map<string,string>",
  7727. "value": {
  7728. "stroke": "#000000",
  7729. "fill": "#000000",
  7730. "opacity": 0,
  7731. "stroke-width": 1
  7732. }
  7733. },
  7734. "mapper": {
  7735. "type": "code",
  7736. "value": ""
  7737. },
  7738. "parser": {
  7739. "type": "code",
  7740. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7741. },
  7742. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7743. "position": {
  7744. "type": "list<double>",
  7745. "value": [
  7746. "0;32.804294196688716,81.73390287825949%",
  7747. "0;18.230408523686663,57.61570202893691%"
  7748. ]
  7749. },
  7750. "orientation": {
  7751. "type": "double",
  7752. "value": "0;35.180699361242056"
  7753. },
  7754. "scale": {
  7755. "type": "list<double>",
  7756. "value": [
  7757. 1,
  7758. 1
  7759. ]
  7760. },
  7761. "arrow": "arrowTail",
  7762. "arrowType": "triangle-black",
  7763. "$linkDecoratorInfo": {
  7764. "type": "map<string,double>",
  7765. "value": {
  7766. "xratio": 1,
  7767. "yoffset": -4
  7768. }
  7769. }
  7770. },
  7771. "275": {
  7772. "segments": {
  7773. "type": "string",
  7774. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  7775. },
  7776. "style": {
  7777. "type": "map<string,string>",
  7778. "value": {
  7779. "stroke": "#000000",
  7780. "fill": "#000000",
  7781. "opacity": 0,
  7782. "stroke-width": 1
  7783. }
  7784. },
  7785. "mapper": {
  7786. "type": "code",
  7787. "value": ""
  7788. },
  7789. "parser": {
  7790. "type": "code",
  7791. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7792. },
  7793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7794. "position": {
  7795. "type": "list<double>",
  7796. "value": [
  7797. "0;35.108922277846204,81.73390287825949%",
  7798. "0;14.96105240855627,57.61570202893691%"
  7799. ]
  7800. },
  7801. "orientation": {
  7802. "type": "double",
  7803. "value": "0;35.180699361242056"
  7804. },
  7805. "scale": {
  7806. "type": "list<double>",
  7807. "value": [
  7808. 1,
  7809. 1
  7810. ]
  7811. },
  7812. "arrow": "arrowTail",
  7813. "arrowType": "arrow-black-large",
  7814. "$linkDecoratorInfo": {
  7815. "type": "map<string,double>",
  7816. "value": {
  7817. "xratio": 1,
  7818. "yoffset": -8
  7819. }
  7820. }
  7821. },
  7822. "276": {
  7823. "segments": {
  7824. "type": "string",
  7825. "value": "m0,0 l20,10 l-20,10 z"
  7826. },
  7827. "style": {
  7828. "type": "map<string,string>",
  7829. "value": {
  7830. "stroke": "#000000",
  7831. "fill": "#ffffff",
  7832. "opacity": 0,
  7833. "stroke-width": 1
  7834. }
  7835. },
  7836. "mapper": {
  7837. "type": "code",
  7838. "value": ""
  7839. },
  7840. "parser": {
  7841. "type": "code",
  7842. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7843. },
  7844. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7845. "position": {
  7846. "type": "list<double>",
  7847. "value": [
  7848. "0;36.26123631842495,81.73390287825949%",
  7849. "0;13.326374350991102,57.61570202893691%"
  7850. ]
  7851. },
  7852. "orientation": {
  7853. "type": "double",
  7854. "value": "0;35.180699361242056"
  7855. },
  7856. "scale": {
  7857. "type": "list<double>",
  7858. "value": [
  7859. 1,
  7860. 1
  7861. ]
  7862. },
  7863. "arrow": "arrowTail",
  7864. "arrowType": "triangle-white-large",
  7865. "$linkDecoratorInfo": {
  7866. "type": "map<string,double>",
  7867. "value": {
  7868. "xratio": 1,
  7869. "yoffset": -10
  7870. }
  7871. }
  7872. },
  7873. "277": {
  7874. "segments": {
  7875. "type": "string",
  7876. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7877. },
  7878. "style": {
  7879. "type": "map<string,string>",
  7880. "value": {
  7881. "stroke": "#000000",
  7882. "fill": "#ffffff",
  7883. "opacity": 0,
  7884. "stroke-width": 1
  7885. }
  7886. },
  7887. "mapper": {
  7888. "type": "code",
  7889. "value": ""
  7890. },
  7891. "parser": {
  7892. "type": "code",
  7893. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7894. },
  7895. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7896. "position": {
  7897. "type": "list<double>",
  7898. "value": [
  7899. "0;33.38045121697803,81.73390287825949%",
  7900. "0;17.413069494904107,57.61570202893691%"
  7901. ]
  7902. },
  7903. "orientation": {
  7904. "type": "double",
  7905. "value": "0;35.180699361242056"
  7906. },
  7907. "scale": {
  7908. "type": "list<double>",
  7909. "value": [
  7910. 1,
  7911. 1
  7912. ]
  7913. },
  7914. "arrow": "arrowTail",
  7915. "arrowType": "diamond-white",
  7916. "$linkDecoratorInfo": {
  7917. "type": "map<string,double>",
  7918. "value": {
  7919. "xratio": 1,
  7920. "yoffset": -5
  7921. }
  7922. }
  7923. },
  7924. "278": {
  7925. "segments": {
  7926. "type": "string",
  7927. "value": "m0,0 l20,8 l-20,8"
  7928. },
  7929. "style": {
  7930. "type": "map<string,string>",
  7931. "value": {
  7932. "stroke": "#000000",
  7933. "fill": "#000000",
  7934. "fill-opacity": 0,
  7935. "stroke-width": 1,
  7936. "opacity": 0
  7937. }
  7938. },
  7939. "mapper": {
  7940. "type": "code",
  7941. "value": ""
  7942. },
  7943. "parser": {
  7944. "type": "code",
  7945. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7946. },
  7947. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7948. "position": {
  7949. "type": "list<double>",
  7950. "value": [
  7951. "0;35.108922277846204,81.73390287825949%",
  7952. "0;14.96105240855627,57.61570202893691%"
  7953. ]
  7954. },
  7955. "orientation": {
  7956. "type": "double",
  7957. "value": "0;35.180699361242056"
  7958. },
  7959. "scale": {
  7960. "type": "list<double>",
  7961. "value": [
  7962. 1,
  7963. 1
  7964. ]
  7965. },
  7966. "arrow": "arrowTail",
  7967. "arrowType": "arrow-empty-large",
  7968. "$linkDecoratorInfo": {
  7969. "type": "map<string,double>",
  7970. "value": {
  7971. "xratio": 1,
  7972. "yoffset": -8
  7973. }
  7974. }
  7975. },
  7976. "279": {
  7977. "r": {
  7978. "type": "double",
  7979. "value": 5
  7980. },
  7981. "style": {
  7982. "type": "map<string,string>",
  7983. "value": {
  7984. "stroke": "#000000",
  7985. "fill": "#ffffff",
  7986. "opacity": 0,
  7987. "stroke-width": 1
  7988. }
  7989. },
  7990. "mapper": {
  7991. "type": "code",
  7992. "value": ""
  7993. },
  7994. "parser": {
  7995. "type": "code",
  7996. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7997. },
  7998. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7999. "position": {
  8000. "type": "list<double>",
  8001. "value": [
  8002. "0;33.38045121697803,81.73390287825949%",
  8003. "0;17.413069494904107,57.61570202893691%"
  8004. ]
  8005. },
  8006. "orientation": {
  8007. "type": "double",
  8008. "value": "0;35.180699361242056"
  8009. },
  8010. "scale": {
  8011. "type": "list<double>",
  8012. "value": [
  8013. 1,
  8014. 1
  8015. ]
  8016. },
  8017. "arrow": "arrowTail",
  8018. "arrowType": "circle-white",
  8019. "$linkDecoratorInfo": {
  8020. "type": "map<string,double>",
  8021. "value": {
  8022. "xratio": 1,
  8023. "yoffset": -5
  8024. }
  8025. }
  8026. },
  8027. "280": {
  8028. "segments": {
  8029. "type": "string",
  8030. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8031. },
  8032. "style": {
  8033. "type": "map<string,string>",
  8034. "value": {
  8035. "stroke": "#000000",
  8036. "fill": "#ffffff",
  8037. "opacity": 0,
  8038. "stroke-width": 1
  8039. }
  8040. },
  8041. "mapper": {
  8042. "type": "code",
  8043. "value": ""
  8044. },
  8045. "parser": {
  8046. "type": "code",
  8047. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8048. },
  8049. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8050. "position": {
  8051. "type": "list<double>",
  8052. "value": [
  8053. "0;36.26123631842495,81.73390287825949%",
  8054. "0;13.326374350991102,57.61570202893691%"
  8055. ]
  8056. },
  8057. "orientation": {
  8058. "type": "double",
  8059. "value": "0;35.180699361242056"
  8060. },
  8061. "scale": {
  8062. "type": "list<double>",
  8063. "value": [
  8064. 1,
  8065. 1
  8066. ]
  8067. },
  8068. "arrow": "arrowTail",
  8069. "arrowType": "diamond-white-large",
  8070. "$linkDecoratorInfo": {
  8071. "type": "map<string,double>",
  8072. "value": {
  8073. "xratio": 1,
  8074. "yoffset": -10
  8075. }
  8076. }
  8077. },
  8078. "281": {
  8079. "segments": {
  8080. "type": "string",
  8081. "value": "m0,0 l10,4 l-10,4"
  8082. },
  8083. "style": {
  8084. "type": "map<string,string>",
  8085. "value": {
  8086. "stroke": "#000000",
  8087. "fill": "#000000",
  8088. "fill-opacity": 0,
  8089. "stroke-width": 1,
  8090. "opacity": 0
  8091. }
  8092. },
  8093. "mapper": {
  8094. "type": "code",
  8095. "value": ""
  8096. },
  8097. "parser": {
  8098. "type": "code",
  8099. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8100. },
  8101. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8102. "position": {
  8103. "type": "list<double>",
  8104. "value": [
  8105. "0;32.804294196688716,81.73390287825949%",
  8106. "0;18.230408523686663,57.61570202893691%"
  8107. ]
  8108. },
  8109. "orientation": {
  8110. "type": "double",
  8111. "value": "0;35.180699361242056"
  8112. },
  8113. "scale": {
  8114. "type": "list<double>",
  8115. "value": [
  8116. 1,
  8117. 1
  8118. ]
  8119. },
  8120. "arrow": "arrowTail",
  8121. "arrowType": "arrow-empty",
  8122. "$linkDecoratorInfo": {
  8123. "type": "map<string,double>",
  8124. "value": {
  8125. "xratio": 1,
  8126. "yoffset": -4
  8127. }
  8128. }
  8129. },
  8130. "282": {
  8131. "segments": {
  8132. "type": "string",
  8133. "value": "m0,0 l10,5 l-10,5 z"
  8134. },
  8135. "style": {
  8136. "type": "map<string,string>",
  8137. "value": {
  8138. "stroke": "#000000",
  8139. "fill": "#ffffff",
  8140. "opacity": 0,
  8141. "stroke-width": 1
  8142. }
  8143. },
  8144. "mapper": {
  8145. "type": "code",
  8146. "value": ""
  8147. },
  8148. "parser": {
  8149. "type": "code",
  8150. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8151. },
  8152. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8153. "position": {
  8154. "type": "list<double>",
  8155. "value": [
  8156. "0;33.38045121697803,81.73390287825949%",
  8157. "0;17.413069494904107,57.61570202893691%"
  8158. ]
  8159. },
  8160. "orientation": {
  8161. "type": "double",
  8162. "value": "0;35.180699361242056"
  8163. },
  8164. "scale": {
  8165. "type": "list<double>",
  8166. "value": [
  8167. 1,
  8168. 1
  8169. ]
  8170. },
  8171. "arrow": "arrowTail",
  8172. "arrowType": "triangle-white",
  8173. "$linkDecoratorInfo": {
  8174. "type": "map<string,double>",
  8175. "value": {
  8176. "xratio": 1,
  8177. "yoffset": -5
  8178. }
  8179. }
  8180. },
  8181. "283": {
  8182. "segments": {
  8183. "type": "string",
  8184. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8185. },
  8186. "style": {
  8187. "type": "map<string,string>",
  8188. "value": {
  8189. "stroke": "#000000",
  8190. "fill": "#ffffff",
  8191. "opacity": 0,
  8192. "stroke-width": 1
  8193. }
  8194. },
  8195. "mapper": {
  8196. "type": "code",
  8197. "value": ""
  8198. },
  8199. "parser": {
  8200. "type": "code",
  8201. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8202. },
  8203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8204. "position": {
  8205. "type": "list<double>",
  8206. "value": [
  8207. "0;-27.619214898553196,0%",
  8208. "0;-25.586695143912948,0%"
  8209. ]
  8210. },
  8211. "orientation": {
  8212. "type": "double",
  8213. "value": "0;35.180699361242105"
  8214. },
  8215. "scale": {
  8216. "type": "list<double>",
  8217. "value": [
  8218. 1,
  8219. 1
  8220. ]
  8221. },
  8222. "arrow": "arrowHead",
  8223. "arrowType": "diamond-white",
  8224. "$linkDecoratorInfo": {
  8225. "type": "map<string,double>",
  8226. "value": {
  8227. "xratio": -1,
  8228. "yoffset": -5
  8229. }
  8230. }
  8231. },
  8232. "284": {
  8233. "segments": {
  8234. "type": "string",
  8235. "value": "m0,0 l-10,5 l10,5 z"
  8236. },
  8237. "style": {
  8238. "type": "map<string,string>",
  8239. "value": {
  8240. "stroke": "#000000",
  8241. "fill": "#ffffff",
  8242. "opacity": 0,
  8243. "stroke-width": 1
  8244. }
  8245. },
  8246. "mapper": {
  8247. "type": "code",
  8248. "value": ""
  8249. },
  8250. "parser": {
  8251. "type": "code",
  8252. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8253. },
  8254. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8255. "position": {
  8256. "type": "list<double>",
  8257. "value": [
  8258. "0;-27.619214898553196,0%",
  8259. "0;-25.586695143912948,0%"
  8260. ]
  8261. },
  8262. "orientation": {
  8263. "type": "double",
  8264. "value": "0;35.180699361242105"
  8265. },
  8266. "scale": {
  8267. "type": "list<double>",
  8268. "value": [
  8269. 1,
  8270. 1
  8271. ]
  8272. },
  8273. "arrow": "arrowHead",
  8274. "arrowType": "triangle-white",
  8275. "$linkDecoratorInfo": {
  8276. "type": "map<string,double>",
  8277. "value": {
  8278. "xratio": -1,
  8279. "yoffset": -5
  8280. }
  8281. }
  8282. },
  8283. "285": {
  8284. "segments": {
  8285. "type": "string",
  8286. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8287. },
  8288. "style": {
  8289. "type": "map<string,string>",
  8290. "value": {
  8291. "stroke": "#000000",
  8292. "fill": "#000000",
  8293. "opacity": 0,
  8294. "stroke-width": 1
  8295. }
  8296. },
  8297. "mapper": {
  8298. "type": "code",
  8299. "value": ""
  8300. },
  8301. "parser": {
  8302. "type": "code",
  8303. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8304. },
  8305. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8306. "position": {
  8307. "type": "list<double>",
  8308. "value": [
  8309. "0;-27.619214898553196,0%",
  8310. "0;-25.586695143912948,0%"
  8311. ]
  8312. },
  8313. "orientation": {
  8314. "type": "double",
  8315. "value": "0;35.180699361242105"
  8316. },
  8317. "scale": {
  8318. "type": "list<double>",
  8319. "value": [
  8320. 1,
  8321. 1
  8322. ]
  8323. },
  8324. "arrow": "arrowHead",
  8325. "arrowType": "diamond-black",
  8326. "$linkDecoratorInfo": {
  8327. "type": "map<string,double>",
  8328. "value": {
  8329. "xratio": -1,
  8330. "yoffset": -5
  8331. }
  8332. }
  8333. },
  8334. "286": {
  8335. "r": {
  8336. "type": "double",
  8337. "value": 10
  8338. },
  8339. "style": {
  8340. "type": "map<string,string>",
  8341. "value": {
  8342. "stroke": "#000000",
  8343. "fill": "#000000",
  8344. "opacity": 0,
  8345. "stroke-width": 1
  8346. }
  8347. },
  8348. "mapper": {
  8349. "type": "code",
  8350. "value": ""
  8351. },
  8352. "parser": {
  8353. "type": "code",
  8354. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8355. },
  8356. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8357. "position": {
  8358. "type": "list<double>",
  8359. "value": [
  8360. "0;-24.738429797106278,0%",
  8361. "0;-29.673390287825953,0%"
  8362. ]
  8363. },
  8364. "orientation": {
  8365. "type": "double",
  8366. "value": "0;35.180699361242105"
  8367. },
  8368. "scale": {
  8369. "type": "list<double>",
  8370. "value": [
  8371. 1,
  8372. 1
  8373. ]
  8374. },
  8375. "arrow": "arrowHead",
  8376. "arrowType": "circle-black-large",
  8377. "$linkDecoratorInfo": {
  8378. "type": "map<string,double>",
  8379. "value": {
  8380. "xratio": -1,
  8381. "yoffset": -10
  8382. }
  8383. }
  8384. },
  8385. "287": {
  8386. "segments": {
  8387. "type": "string",
  8388. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  8389. },
  8390. "style": {
  8391. "type": "map<string,string>",
  8392. "value": {
  8393. "stroke": "#000000",
  8394. "fill": "#000000",
  8395. "opacity": 0,
  8396. "stroke-width": 1
  8397. }
  8398. },
  8399. "mapper": {
  8400. "type": "code",
  8401. "value": ""
  8402. },
  8403. "parser": {
  8404. "type": "code",
  8405. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8406. },
  8407. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8408. "position": {
  8409. "type": "list<double>",
  8410. "value": [
  8411. "0;-25.890743837685022,0%",
  8412. "0;-28.038712230260728,0%"
  8413. ]
  8414. },
  8415. "orientation": {
  8416. "type": "double",
  8417. "value": "0;35.180699361242105"
  8418. },
  8419. "scale": {
  8420. "type": "list<double>",
  8421. "value": [
  8422. 1,
  8423. 1
  8424. ]
  8425. },
  8426. "arrow": "arrowHead",
  8427. "arrowType": "arrow-black-large",
  8428. "$linkDecoratorInfo": {
  8429. "type": "map<string,double>",
  8430. "value": {
  8431. "xratio": -1,
  8432. "yoffset": -8
  8433. }
  8434. }
  8435. },
  8436. "288": {
  8437. "segments": {
  8438. "type": "string",
  8439. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  8440. },
  8441. "style": {
  8442. "type": "map<string,string>",
  8443. "value": {
  8444. "stroke": "#000000",
  8445. "fill": "#000000",
  8446. "opacity": 0,
  8447. "stroke-width": 1
  8448. }
  8449. },
  8450. "mapper": {
  8451. "type": "code",
  8452. "value": ""
  8453. },
  8454. "parser": {
  8455. "type": "code",
  8456. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8457. },
  8458. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8459. "position": {
  8460. "type": "list<double>",
  8461. "value": [
  8462. "0;-28.19537191884251,0%",
  8463. "0;-24.769356115130392,0%"
  8464. ]
  8465. },
  8466. "orientation": {
  8467. "type": "double",
  8468. "value": "0;35.180699361242105"
  8469. },
  8470. "scale": {
  8471. "type": "list<double>",
  8472. "value": [
  8473. 1,
  8474. 1
  8475. ]
  8476. },
  8477. "arrow": "arrowHead",
  8478. "arrowType": "arrow-black",
  8479. "$linkDecoratorInfo": {
  8480. "type": "map<string,double>",
  8481. "value": {
  8482. "xratio": -1,
  8483. "yoffset": -4
  8484. }
  8485. }
  8486. },
  8487. "289": {
  8488. "segments": {
  8489. "type": "string",
  8490. "value": "m0,0 l-20,10 l20,10 z"
  8491. },
  8492. "style": {
  8493. "type": "map<string,string>",
  8494. "value": {
  8495. "stroke": "#000000",
  8496. "fill": "#ffffff",
  8497. "opacity": 0,
  8498. "stroke-width": 1
  8499. }
  8500. },
  8501. "mapper": {
  8502. "type": "code",
  8503. "value": ""
  8504. },
  8505. "parser": {
  8506. "type": "code",
  8507. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8508. },
  8509. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8510. "position": {
  8511. "type": "list<double>",
  8512. "value": [
  8513. "0;-24.738429797106278,0%",
  8514. "0;-29.673390287825953,0%"
  8515. ]
  8516. },
  8517. "orientation": {
  8518. "type": "double",
  8519. "value": "0;35.180699361242105"
  8520. },
  8521. "scale": {
  8522. "type": "list<double>",
  8523. "value": [
  8524. 1,
  8525. 1
  8526. ]
  8527. },
  8528. "arrow": "arrowHead",
  8529. "arrowType": "triangle-white-large",
  8530. "$linkDecoratorInfo": {
  8531. "type": "map<string,double>",
  8532. "value": {
  8533. "xratio": -1,
  8534. "yoffset": -10
  8535. }
  8536. }
  8537. },
  8538. "290": {
  8539. "segments": {
  8540. "type": "string",
  8541. "value": "m0,0 l-20,10 l20,10 z"
  8542. },
  8543. "style": {
  8544. "type": "map<string,string>",
  8545. "value": {
  8546. "stroke": "#000000",
  8547. "fill": "#000000",
  8548. "opacity": 0,
  8549. "stroke-width": 1
  8550. }
  8551. },
  8552. "mapper": {
  8553. "type": "code",
  8554. "value": ""
  8555. },
  8556. "parser": {
  8557. "type": "code",
  8558. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8559. },
  8560. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8561. "position": {
  8562. "type": "list<double>",
  8563. "value": [
  8564. "0;-24.738429797106278,0%",
  8565. "0;-29.673390287825953,0%"
  8566. ]
  8567. },
  8568. "orientation": {
  8569. "type": "double",
  8570. "value": "0;35.180699361242105"
  8571. },
  8572. "scale": {
  8573. "type": "list<double>",
  8574. "value": [
  8575. 1,
  8576. 1
  8577. ]
  8578. },
  8579. "arrow": "arrowHead",
  8580. "arrowType": "triangle-black-large",
  8581. "$linkDecoratorInfo": {
  8582. "type": "map<string,double>",
  8583. "value": {
  8584. "xratio": -1,
  8585. "yoffset": -10
  8586. }
  8587. }
  8588. },
  8589. "291": {
  8590. "r": {
  8591. "type": "double",
  8592. "value": 5
  8593. },
  8594. "style": {
  8595. "type": "map<string,string>",
  8596. "value": {
  8597. "stroke": "#000000",
  8598. "fill": "#000000",
  8599. "opacity": 0,
  8600. "stroke-width": 1
  8601. }
  8602. },
  8603. "mapper": {
  8604. "type": "code",
  8605. "value": ""
  8606. },
  8607. "parser": {
  8608. "type": "code",
  8609. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8610. },
  8611. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8612. "position": {
  8613. "type": "list<double>",
  8614. "value": [
  8615. "0;-27.619214898553196,0%",
  8616. "0;-25.586695143912948,0%"
  8617. ]
  8618. },
  8619. "orientation": {
  8620. "type": "double",
  8621. "value": "0;35.180699361242105"
  8622. },
  8623. "scale": {
  8624. "type": "list<double>",
  8625. "value": [
  8626. 1,
  8627. 1
  8628. ]
  8629. },
  8630. "arrow": "arrowHead",
  8631. "arrowType": "circle-black",
  8632. "$linkDecoratorInfo": {
  8633. "type": "map<string,double>",
  8634. "value": {
  8635. "xratio": -1,
  8636. "yoffset": -5
  8637. }
  8638. }
  8639. },
  8640. "292": {
  8641. "r": {
  8642. "type": "double",
  8643. "value": 5
  8644. },
  8645. "style": {
  8646. "type": "map<string,string>",
  8647. "value": {
  8648. "stroke": "#000000",
  8649. "fill": "#ffffff",
  8650. "opacity": 0,
  8651. "stroke-width": 1
  8652. }
  8653. },
  8654. "mapper": {
  8655. "type": "code",
  8656. "value": ""
  8657. },
  8658. "parser": {
  8659. "type": "code",
  8660. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8661. },
  8662. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8663. "position": {
  8664. "type": "list<double>",
  8665. "value": [
  8666. "0;-27.619214898553196,0%",
  8667. "0;-25.586695143912948,0%"
  8668. ]
  8669. },
  8670. "orientation": {
  8671. "type": "double",
  8672. "value": "0;35.180699361242105"
  8673. },
  8674. "scale": {
  8675. "type": "list<double>",
  8676. "value": [
  8677. 1,
  8678. 1
  8679. ]
  8680. },
  8681. "arrow": "arrowHead",
  8682. "arrowType": "circle-white",
  8683. "$linkDecoratorInfo": {
  8684. "type": "map<string,double>",
  8685. "value": {
  8686. "xratio": -1,
  8687. "yoffset": -5
  8688. }
  8689. }
  8690. },
  8691. "293": {
  8692. "r": {
  8693. "type": "double",
  8694. "value": 10
  8695. },
  8696. "style": {
  8697. "type": "map<string,string>",
  8698. "value": {
  8699. "stroke": "#000000",
  8700. "fill": "#ffffff",
  8701. "opacity": 0,
  8702. "stroke-width": 1
  8703. }
  8704. },
  8705. "mapper": {
  8706. "type": "code",
  8707. "value": ""
  8708. },
  8709. "parser": {
  8710. "type": "code",
  8711. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8712. },
  8713. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8714. "position": {
  8715. "type": "list<double>",
  8716. "value": [
  8717. "0;-24.738429797106278,0%",
  8718. "0;-29.673390287825953,0%"
  8719. ]
  8720. },
  8721. "orientation": {
  8722. "type": "double",
  8723. "value": "0;35.180699361242105"
  8724. },
  8725. "scale": {
  8726. "type": "list<double>",
  8727. "value": [
  8728. 1,
  8729. 1
  8730. ]
  8731. },
  8732. "arrow": "arrowHead",
  8733. "arrowType": "circle-white-large",
  8734. "$linkDecoratorInfo": {
  8735. "type": "map<string,double>",
  8736. "value": {
  8737. "xratio": -1,
  8738. "yoffset": -10
  8739. }
  8740. }
  8741. },
  8742. "294": {
  8743. "segments": {
  8744. "type": "string",
  8745. "value": "m0,0 l-20,8 l20,8"
  8746. },
  8747. "style": {
  8748. "type": "map<string,string>",
  8749. "value": {
  8750. "stroke": "#000000",
  8751. "fill": "#000000",
  8752. "fill-opacity": 0,
  8753. "stroke-width": 1,
  8754. "opacity": 0
  8755. }
  8756. },
  8757. "mapper": {
  8758. "type": "code",
  8759. "value": ""
  8760. },
  8761. "parser": {
  8762. "type": "code",
  8763. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8764. },
  8765. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8766. "position": {
  8767. "type": "list<double>",
  8768. "value": [
  8769. "0;-25.890743837685022,0%",
  8770. "0;-28.038712230260728,0%"
  8771. ]
  8772. },
  8773. "orientation": {
  8774. "type": "double",
  8775. "value": "0;35.180699361242105"
  8776. },
  8777. "scale": {
  8778. "type": "list<double>",
  8779. "value": [
  8780. 1,
  8781. 1
  8782. ]
  8783. },
  8784. "arrow": "arrowHead",
  8785. "arrowType": "arrow-empty-large",
  8786. "$linkDecoratorInfo": {
  8787. "type": "map<string,double>",
  8788. "value": {
  8789. "xratio": -1,
  8790. "yoffset": -8
  8791. }
  8792. }
  8793. },
  8794. "295": {
  8795. "segments": {
  8796. "type": "string",
  8797. "value": "m0,0 l-10,4 l10,4"
  8798. },
  8799. "style": {
  8800. "type": "map<string,string>",
  8801. "value": {
  8802. "stroke": "#000000",
  8803. "fill": "#000000",
  8804. "fill-opacity": 0,
  8805. "stroke-width": 1,
  8806. "opacity": 0
  8807. }
  8808. },
  8809. "mapper": {
  8810. "type": "code",
  8811. "value": ""
  8812. },
  8813. "parser": {
  8814. "type": "code",
  8815. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8816. },
  8817. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8818. "position": {
  8819. "type": "list<double>",
  8820. "value": [
  8821. "0;-28.19537191884251,0%",
  8822. "0;-24.769356115130392,0%"
  8823. ]
  8824. },
  8825. "orientation": {
  8826. "type": "double",
  8827. "value": "0;35.180699361242105"
  8828. },
  8829. "scale": {
  8830. "type": "list<double>",
  8831. "value": [
  8832. 1,
  8833. 1
  8834. ]
  8835. },
  8836. "arrow": "arrowHead",
  8837. "arrowType": "arrow-empty",
  8838. "$linkDecoratorInfo": {
  8839. "type": "map<string,double>",
  8840. "value": {
  8841. "xratio": -1,
  8842. "yoffset": -4
  8843. }
  8844. }
  8845. },
  8846. "296": {
  8847. "segments": {
  8848. "type": "string",
  8849. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8850. },
  8851. "style": {
  8852. "type": "map<string,string>",
  8853. "value": {
  8854. "stroke": "#000000",
  8855. "fill": "#000000",
  8856. "opacity": 0,
  8857. "stroke-width": 1
  8858. }
  8859. },
  8860. "mapper": {
  8861. "type": "code",
  8862. "value": ""
  8863. },
  8864. "parser": {
  8865. "type": "code",
  8866. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8867. },
  8868. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8869. "position": {
  8870. "type": "list<double>",
  8871. "value": [
  8872. "0;-24.738429797106278,0%",
  8873. "0;-29.673390287825953,0%"
  8874. ]
  8875. },
  8876. "orientation": {
  8877. "type": "double",
  8878. "value": "0;35.180699361242105"
  8879. },
  8880. "scale": {
  8881. "type": "list<double>",
  8882. "value": [
  8883. 1,
  8884. 1
  8885. ]
  8886. },
  8887. "arrow": "arrowHead",
  8888. "arrowType": "diamond-black-large",
  8889. "$linkDecoratorInfo": {
  8890. "type": "map<string,double>",
  8891. "value": {
  8892. "xratio": -1,
  8893. "yoffset": -10
  8894. }
  8895. }
  8896. },
  8897. "297": {
  8898. "segments": {
  8899. "type": "string",
  8900. "value": "m0,0 l-10,4 l10,4 z"
  8901. },
  8902. "style": {
  8903. "type": "map<string,string>",
  8904. "value": {
  8905. "stroke": "#000000",
  8906. "fill": "#000000",
  8907. "opacity": 0,
  8908. "stroke-width": 1
  8909. }
  8910. },
  8911. "mapper": {
  8912. "type": "code",
  8913. "value": ""
  8914. },
  8915. "parser": {
  8916. "type": "code",
  8917. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8918. },
  8919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8920. "position": {
  8921. "type": "list<double>",
  8922. "value": [
  8923. "0;-28.19537191884251,0%",
  8924. "0;-24.769356115130392,0%"
  8925. ]
  8926. },
  8927. "orientation": {
  8928. "type": "double",
  8929. "value": "0;35.180699361242105"
  8930. },
  8931. "scale": {
  8932. "type": "list<double>",
  8933. "value": [
  8934. 1,
  8935. 1
  8936. ]
  8937. },
  8938. "arrow": "arrowHead",
  8939. "arrowType": "triangle-black",
  8940. "$linkDecoratorInfo": {
  8941. "type": "map<string,double>",
  8942. "value": {
  8943. "xratio": -1,
  8944. "yoffset": -4
  8945. }
  8946. }
  8947. },
  8948. "298": {
  8949. "segments": {
  8950. "type": "string",
  8951. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8952. },
  8953. "style": {
  8954. "type": "map<string,string>",
  8955. "value": {
  8956. "stroke": "#000000",
  8957. "fill": "#ffffff",
  8958. "opacity": 0,
  8959. "stroke-width": 1
  8960. }
  8961. },
  8962. "mapper": {
  8963. "type": "code",
  8964. "value": ""
  8965. },
  8966. "parser": {
  8967. "type": "code",
  8968. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8969. },
  8970. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8971. "position": {
  8972. "type": "list<double>",
  8973. "value": [
  8974. "0;-24.738429797106278,0%",
  8975. "0;-29.673390287825953,0%"
  8976. ]
  8977. },
  8978. "orientation": {
  8979. "type": "double",
  8980. "value": "0;35.180699361242105"
  8981. },
  8982. "scale": {
  8983. "type": "list<double>",
  8984. "value": [
  8985. 1,
  8986. 1
  8987. ]
  8988. },
  8989. "arrow": "arrowHead",
  8990. "arrowType": "diamond-white-large",
  8991. "$linkDecoratorInfo": {
  8992. "type": "map<string,double>",
  8993. "value": {
  8994. "xratio": -1,
  8995. "yoffset": -10
  8996. }
  8997. }
  8998. }
  8999. },
  9000. "edges": []
  9001. }
  9002. },
  9003. "$asuri": {
  9004. "type": "string",
  9005. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/110.instance"
  9006. },
  9007. "$segments": {
  9008. "type": "map<string,list<string>>",
  9009. "value": {
  9010. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/107.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/110.instance": "M670,390L700.5,411.5",
  9011. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/110.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon/109.instance": "M700.5616571942267,411.5434632680615L730.9996661155312,432.99976463881706"
  9012. }
  9013. },
  9014. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  9015. },
  9016. "111": {
  9017. "link-style": {
  9018. "type": "map<string,string>",
  9019. "value": {
  9020. "stroke": "#800000",
  9021. "stroke-dasharray": "",
  9022. "stroke-opacity": 1,
  9023. "stroke-width": 2
  9024. }
  9025. },
  9026. "arrowHead": {
  9027. "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)",
  9028. "value": "custom"
  9029. },
  9030. "arrowTail": {
  9031. "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)",
  9032. "value": "arrow-black"
  9033. },
  9034. "typename": {
  9035. "type": "string",
  9036. "value": "failLink"
  9037. },
  9038. "position": {
  9039. "type": "list<double>",
  9040. "value": [
  9041. 752.5,
  9042. 412
  9043. ]
  9044. },
  9045. "orientation": {
  9046. "type": "double",
  9047. "value": 0
  9048. },
  9049. "scale": {
  9050. "type": "list<double>",
  9051. "value": [
  9052. 1,
  9053. 1
  9054. ]
  9055. },
  9056. "mapper": {
  9057. "type": "code",
  9058. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9059. },
  9060. "parser": {
  9061. "type": "code",
  9062. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9063. },
  9064. "$contents": {
  9065. "type": "map<string,*>",
  9066. "value": {
  9067. "nodes": {
  9068. "267": {
  9069. "segments": {
  9070. "type": "string",
  9071. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  9072. },
  9073. "style": {
  9074. "type": "map<string,string>",
  9075. "value": {
  9076. "stroke": "#000000",
  9077. "fill": "#000000",
  9078. "opacity": 0,
  9079. "stroke-width": 1
  9080. }
  9081. },
  9082. "mapper": {
  9083. "type": "code",
  9084. "value": ""
  9085. },
  9086. "parser": {
  9087. "type": "code",
  9088. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9089. },
  9090. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9091. "position": {
  9092. "type": "list<double>",
  9093. "value": [
  9094. "0;-16.448647507242754,-64.66852516351611%",
  9095. "0;25.586358099133236,76.27569634671114%"
  9096. ]
  9097. },
  9098. "orientation": {
  9099. "type": "double",
  9100. "value": "0;130.29214775562784"
  9101. },
  9102. "scale": {
  9103. "type": "list<double>",
  9104. "value": [
  9105. 1,
  9106. 1
  9107. ]
  9108. },
  9109. "arrow": "arrowTail",
  9110. "arrowType": "arrow-black",
  9111. "$linkDecoratorInfo": {
  9112. "type": "map<string,double>",
  9113. "value": {
  9114. "xratio": 1,
  9115. "yoffset": -4
  9116. }
  9117. }
  9118. },
  9119. "268": {
  9120. "segments": {
  9121. "type": "string",
  9122. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9123. },
  9124. "style": {
  9125. "type": "map<string,string>",
  9126. "value": {
  9127. "stroke": "#000000",
  9128. "fill": "#000000",
  9129. "opacity": 0,
  9130. "stroke-width": 1
  9131. }
  9132. },
  9133. "mapper": {
  9134. "type": "code",
  9135. "value": ""
  9136. },
  9137. "parser": {
  9138. "type": "code",
  9139. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9140. },
  9141. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9142. "position": {
  9143. "type": "list<double>",
  9144. "value": [
  9145. "0;-11.872105726440054,-64.66852516351611%",
  9146. "0;29.46646960894418,76.27569634671114%"
  9147. ]
  9148. },
  9149. "orientation": {
  9150. "type": "double",
  9151. "value": "0;130.29214775562784"
  9152. },
  9153. "scale": {
  9154. "type": "list<double>",
  9155. "value": [
  9156. 1,
  9157. 1
  9158. ]
  9159. },
  9160. "arrow": "arrowTail",
  9161. "arrowType": "diamond-black-large",
  9162. "$linkDecoratorInfo": {
  9163. "type": "map<string,double>",
  9164. "value": {
  9165. "xratio": 1,
  9166. "yoffset": -10
  9167. }
  9168. }
  9169. },
  9170. "269": {
  9171. "r": {
  9172. "type": "double",
  9173. "value": 10
  9174. },
  9175. "style": {
  9176. "type": "map<string,string>",
  9177. "value": {
  9178. "stroke": "#000000",
  9179. "fill": "#000000",
  9180. "opacity": 0,
  9181. "stroke-width": 1
  9182. }
  9183. },
  9184. "mapper": {
  9185. "type": "code",
  9186. "value": ""
  9187. },
  9188. "parser": {
  9189. "type": "code",
  9190. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9191. },
  9192. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9193. "position": {
  9194. "type": "list<double>",
  9195. "value": [
  9196. "0;-11.872105726440054,-64.66852516351611%",
  9197. "0;29.46646960894418,76.27569634671114%"
  9198. ]
  9199. },
  9200. "orientation": {
  9201. "type": "double",
  9202. "value": "0;130.29214775562784"
  9203. },
  9204. "scale": {
  9205. "type": "list<double>",
  9206. "value": [
  9207. 1,
  9208. 1
  9209. ]
  9210. },
  9211. "arrow": "arrowTail",
  9212. "arrowType": "circle-black-large",
  9213. "$linkDecoratorInfo": {
  9214. "type": "map<string,double>",
  9215. "value": {
  9216. "xratio": 1,
  9217. "yoffset": -10
  9218. }
  9219. }
  9220. },
  9221. "270": {
  9222. "r": {
  9223. "type": "double",
  9224. "value": 10
  9225. },
  9226. "style": {
  9227. "type": "map<string,string>",
  9228. "value": {
  9229. "stroke": "#000000",
  9230. "fill": "#ffffff",
  9231. "opacity": 0,
  9232. "stroke-width": 1
  9233. }
  9234. },
  9235. "mapper": {
  9236. "type": "code",
  9237. "value": ""
  9238. },
  9239. "parser": {
  9240. "type": "code",
  9241. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9242. },
  9243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9244. "position": {
  9245. "type": "list<double>",
  9246. "value": [
  9247. "0;-11.872105726440054,-64.66852516351611%",
  9248. "0;29.46646960894418,76.27569634671114%"
  9249. ]
  9250. },
  9251. "orientation": {
  9252. "type": "double",
  9253. "value": "0;130.29214775562784"
  9254. },
  9255. "scale": {
  9256. "type": "list<double>",
  9257. "value": [
  9258. 1,
  9259. 1
  9260. ]
  9261. },
  9262. "arrow": "arrowTail",
  9263. "arrowType": "circle-white-large",
  9264. "$linkDecoratorInfo": {
  9265. "type": "map<string,double>",
  9266. "value": {
  9267. "xratio": 1,
  9268. "yoffset": -10
  9269. }
  9270. }
  9271. },
  9272. "271": {
  9273. "r": {
  9274. "type": "double",
  9275. "value": 5
  9276. },
  9277. "style": {
  9278. "type": "map<string,string>",
  9279. "value": {
  9280. "stroke": "#000000",
  9281. "fill": "#000000",
  9282. "opacity": 0,
  9283. "stroke-width": 1
  9284. }
  9285. },
  9286. "mapper": {
  9287. "type": "code",
  9288. "value": ""
  9289. },
  9290. "parser": {
  9291. "type": "code",
  9292. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9293. },
  9294. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9295. "position": {
  9296. "type": "list<double>",
  9297. "value": [
  9298. "0;-15.6858905437756,-64.66852516351611%",
  9299. "0;26.233043350768412,76.27569634671114%"
  9300. ]
  9301. },
  9302. "orientation": {
  9303. "type": "double",
  9304. "value": "0;130.29214775562784"
  9305. },
  9306. "scale": {
  9307. "type": "list<double>",
  9308. "value": [
  9309. 1,
  9310. 1
  9311. ]
  9312. },
  9313. "arrow": "arrowTail",
  9314. "arrowType": "circle-black",
  9315. "$linkDecoratorInfo": {
  9316. "type": "map<string,double>",
  9317. "value": {
  9318. "xratio": 1,
  9319. "yoffset": -5
  9320. }
  9321. }
  9322. },
  9323. "272": {
  9324. "segments": {
  9325. "type": "string",
  9326. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9327. },
  9328. "style": {
  9329. "type": "map<string,string>",
  9330. "value": {
  9331. "stroke": "#000000",
  9332. "fill": "#000000",
  9333. "opacity": 0,
  9334. "stroke-width": 1
  9335. }
  9336. },
  9337. "mapper": {
  9338. "type": "code",
  9339. "value": ""
  9340. },
  9341. "parser": {
  9342. "type": "code",
  9343. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9344. },
  9345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9346. "position": {
  9347. "type": "list<double>",
  9348. "value": [
  9349. "0;-15.6858905437756,-64.66852516351611%",
  9350. "0;26.233043350768412,76.27569634671114%"
  9351. ]
  9352. },
  9353. "orientation": {
  9354. "type": "double",
  9355. "value": "0;130.29214775562784"
  9356. },
  9357. "scale": {
  9358. "type": "list<double>",
  9359. "value": [
  9360. 1,
  9361. 1
  9362. ]
  9363. },
  9364. "arrow": "arrowTail",
  9365. "arrowType": "diamond-black",
  9366. "$linkDecoratorInfo": {
  9367. "type": "map<string,double>",
  9368. "value": {
  9369. "xratio": 1,
  9370. "yoffset": -5
  9371. }
  9372. }
  9373. },
  9374. "273": {
  9375. "segments": {
  9376. "type": "string",
  9377. "value": "m0,0 l20,10 l-20,10 z"
  9378. },
  9379. "style": {
  9380. "type": "map<string,string>",
  9381. "value": {
  9382. "stroke": "#000000",
  9383. "fill": "#000000",
  9384. "opacity": 0,
  9385. "stroke-width": 1
  9386. }
  9387. },
  9388. "mapper": {
  9389. "type": "code",
  9390. "value": ""
  9391. },
  9392. "parser": {
  9393. "type": "code",
  9394. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9395. },
  9396. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9397. "position": {
  9398. "type": "list<double>",
  9399. "value": [
  9400. "0;-11.872105726440054,-64.66852516351611%",
  9401. "0;29.46646960894418,76.27569634671114%"
  9402. ]
  9403. },
  9404. "orientation": {
  9405. "type": "double",
  9406. "value": "0;130.29214775562784"
  9407. },
  9408. "scale": {
  9409. "type": "list<double>",
  9410. "value": [
  9411. 1,
  9412. 1
  9413. ]
  9414. },
  9415. "arrow": "arrowTail",
  9416. "arrowType": "triangle-black-large",
  9417. "$linkDecoratorInfo": {
  9418. "type": "map<string,double>",
  9419. "value": {
  9420. "xratio": 1,
  9421. "yoffset": -10
  9422. }
  9423. }
  9424. },
  9425. "274": {
  9426. "segments": {
  9427. "type": "string",
  9428. "value": "m0,0 l10,4 l-10,4 z"
  9429. },
  9430. "style": {
  9431. "type": "map<string,string>",
  9432. "value": {
  9433. "stroke": "#000000",
  9434. "fill": "#000000",
  9435. "opacity": 0,
  9436. "stroke-width": 1
  9437. }
  9438. },
  9439. "mapper": {
  9440. "type": "code",
  9441. "value": ""
  9442. },
  9443. "parser": {
  9444. "type": "code",
  9445. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9446. },
  9447. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9448. "position": {
  9449. "type": "list<double>",
  9450. "value": [
  9451. "0;-16.448647507242754,-64.66852516351611%",
  9452. "0;25.586358099133236,76.27569634671114%"
  9453. ]
  9454. },
  9455. "orientation": {
  9456. "type": "double",
  9457. "value": "0;130.29214775562784"
  9458. },
  9459. "scale": {
  9460. "type": "list<double>",
  9461. "value": [
  9462. 1,
  9463. 1
  9464. ]
  9465. },
  9466. "arrow": "arrowTail",
  9467. "arrowType": "triangle-black",
  9468. "$linkDecoratorInfo": {
  9469. "type": "map<string,double>",
  9470. "value": {
  9471. "xratio": 1,
  9472. "yoffset": -4
  9473. }
  9474. }
  9475. },
  9476. "275": {
  9477. "segments": {
  9478. "type": "string",
  9479. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  9480. },
  9481. "style": {
  9482. "type": "map<string,string>",
  9483. "value": {
  9484. "stroke": "#000000",
  9485. "fill": "#000000",
  9486. "opacity": 0,
  9487. "stroke-width": 1
  9488. }
  9489. },
  9490. "mapper": {
  9491. "type": "code",
  9492. "value": ""
  9493. },
  9494. "parser": {
  9495. "type": "code",
  9496. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9497. },
  9498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9499. "position": {
  9500. "type": "list<double>",
  9501. "value": [
  9502. "0;-13.39761965337425,-64.66852516351611%",
  9503. "0;28.173099105673884,76.27569634671114%"
  9504. ]
  9505. },
  9506. "orientation": {
  9507. "type": "double",
  9508. "value": "0;130.29214775562784"
  9509. },
  9510. "scale": {
  9511. "type": "list<double>",
  9512. "value": [
  9513. 1,
  9514. 1
  9515. ]
  9516. },
  9517. "arrow": "arrowTail",
  9518. "arrowType": "arrow-black-large",
  9519. "$linkDecoratorInfo": {
  9520. "type": "map<string,double>",
  9521. "value": {
  9522. "xratio": 1,
  9523. "yoffset": -8
  9524. }
  9525. }
  9526. },
  9527. "276": {
  9528. "segments": {
  9529. "type": "string",
  9530. "value": "m0,0 l20,10 l-20,10 z"
  9531. },
  9532. "style": {
  9533. "type": "map<string,string>",
  9534. "value": {
  9535. "stroke": "#000000",
  9536. "fill": "#ffffff",
  9537. "opacity": 0,
  9538. "stroke-width": 1
  9539. }
  9540. },
  9541. "mapper": {
  9542. "type": "code",
  9543. "value": ""
  9544. },
  9545. "parser": {
  9546. "type": "code",
  9547. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9548. },
  9549. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9550. "position": {
  9551. "type": "list<double>",
  9552. "value": [
  9553. "0;-11.872105726440054,-64.66852516351611%",
  9554. "0;29.46646960894418,76.27569634671114%"
  9555. ]
  9556. },
  9557. "orientation": {
  9558. "type": "double",
  9559. "value": "0;130.29214775562784"
  9560. },
  9561. "scale": {
  9562. "type": "list<double>",
  9563. "value": [
  9564. 1,
  9565. 1
  9566. ]
  9567. },
  9568. "arrow": "arrowTail",
  9569. "arrowType": "triangle-white-large",
  9570. "$linkDecoratorInfo": {
  9571. "type": "map<string,double>",
  9572. "value": {
  9573. "xratio": 1,
  9574. "yoffset": -10
  9575. }
  9576. }
  9577. },
  9578. "277": {
  9579. "segments": {
  9580. "type": "string",
  9581. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9582. },
  9583. "style": {
  9584. "type": "map<string,string>",
  9585. "value": {
  9586. "stroke": "#000000",
  9587. "fill": "#ffffff",
  9588. "opacity": 0,
  9589. "stroke-width": 1
  9590. }
  9591. },
  9592. "mapper": {
  9593. "type": "code",
  9594. "value": ""
  9595. },
  9596. "parser": {
  9597. "type": "code",
  9598. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9599. },
  9600. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9601. "position": {
  9602. "type": "list<double>",
  9603. "value": [
  9604. "0;-15.6858905437756,-64.66852516351611%",
  9605. "0;26.233043350768412,76.27569634671114%"
  9606. ]
  9607. },
  9608. "orientation": {
  9609. "type": "double",
  9610. "value": "0;130.29214775562784"
  9611. },
  9612. "scale": {
  9613. "type": "list<double>",
  9614. "value": [
  9615. 1,
  9616. 1
  9617. ]
  9618. },
  9619. "arrow": "arrowTail",
  9620. "arrowType": "diamond-white",
  9621. "$linkDecoratorInfo": {
  9622. "type": "map<string,double>",
  9623. "value": {
  9624. "xratio": 1,
  9625. "yoffset": -5
  9626. }
  9627. }
  9628. },
  9629. "278": {
  9630. "segments": {
  9631. "type": "string",
  9632. "value": "m0,0 l20,8 l-20,8"
  9633. },
  9634. "style": {
  9635. "type": "map<string,string>",
  9636. "value": {
  9637. "stroke": "#000000",
  9638. "fill": "#000000",
  9639. "fill-opacity": 0,
  9640. "stroke-width": 1,
  9641. "opacity": 0
  9642. }
  9643. },
  9644. "mapper": {
  9645. "type": "code",
  9646. "value": ""
  9647. },
  9648. "parser": {
  9649. "type": "code",
  9650. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9651. },
  9652. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9653. "position": {
  9654. "type": "list<double>",
  9655. "value": [
  9656. "0;-13.39761965337425,-64.66852516351611%",
  9657. "0;28.173099105673884,76.27569634671114%"
  9658. ]
  9659. },
  9660. "orientation": {
  9661. "type": "double",
  9662. "value": "0;130.29214775562784"
  9663. },
  9664. "scale": {
  9665. "type": "list<double>",
  9666. "value": [
  9667. 1,
  9668. 1
  9669. ]
  9670. },
  9671. "arrow": "arrowTail",
  9672. "arrowType": "arrow-empty-large",
  9673. "$linkDecoratorInfo": {
  9674. "type": "map<string,double>",
  9675. "value": {
  9676. "xratio": 1,
  9677. "yoffset": -8
  9678. }
  9679. }
  9680. },
  9681. "279": {
  9682. "r": {
  9683. "type": "double",
  9684. "value": 5
  9685. },
  9686. "style": {
  9687. "type": "map<string,string>",
  9688. "value": {
  9689. "stroke": "#000000",
  9690. "fill": "#ffffff",
  9691. "opacity": 0,
  9692. "stroke-width": 1
  9693. }
  9694. },
  9695. "mapper": {
  9696. "type": "code",
  9697. "value": ""
  9698. },
  9699. "parser": {
  9700. "type": "code",
  9701. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9702. },
  9703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9704. "position": {
  9705. "type": "list<double>",
  9706. "value": [
  9707. "0;-15.6858905437756,-64.66852516351611%",
  9708. "0;26.233043350768412,76.27569634671114%"
  9709. ]
  9710. },
  9711. "orientation": {
  9712. "type": "double",
  9713. "value": "0;130.29214775562784"
  9714. },
  9715. "scale": {
  9716. "type": "list<double>",
  9717. "value": [
  9718. 1,
  9719. 1
  9720. ]
  9721. },
  9722. "arrow": "arrowTail",
  9723. "arrowType": "circle-white",
  9724. "$linkDecoratorInfo": {
  9725. "type": "map<string,double>",
  9726. "value": {
  9727. "xratio": 1,
  9728. "yoffset": -5
  9729. }
  9730. }
  9731. },
  9732. "280": {
  9733. "segments": {
  9734. "type": "string",
  9735. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9736. },
  9737. "style": {
  9738. "type": "map<string,string>",
  9739. "value": {
  9740. "stroke": "#000000",
  9741. "fill": "#ffffff",
  9742. "opacity": 0,
  9743. "stroke-width": 1
  9744. }
  9745. },
  9746. "mapper": {
  9747. "type": "code",
  9748. "value": ""
  9749. },
  9750. "parser": {
  9751. "type": "code",
  9752. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9753. },
  9754. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9755. "position": {
  9756. "type": "list<double>",
  9757. "value": [
  9758. "0;-11.872105726440054,-64.66852516351611%",
  9759. "0;29.46646960894418,76.27569634671114%"
  9760. ]
  9761. },
  9762. "orientation": {
  9763. "type": "double",
  9764. "value": "0;130.29214775562784"
  9765. },
  9766. "scale": {
  9767. "type": "list<double>",
  9768. "value": [
  9769. 1,
  9770. 1
  9771. ]
  9772. },
  9773. "arrow": "arrowTail",
  9774. "arrowType": "diamond-white-large",
  9775. "$linkDecoratorInfo": {
  9776. "type": "map<string,double>",
  9777. "value": {
  9778. "xratio": 1,
  9779. "yoffset": -10
  9780. }
  9781. }
  9782. },
  9783. "281": {
  9784. "segments": {
  9785. "type": "string",
  9786. "value": "m0,0 l10,4 l-10,4"
  9787. },
  9788. "style": {
  9789. "type": "map<string,string>",
  9790. "value": {
  9791. "stroke": "#000000",
  9792. "fill": "#000000",
  9793. "fill-opacity": 0,
  9794. "stroke-width": 1,
  9795. "opacity": 0
  9796. }
  9797. },
  9798. "mapper": {
  9799. "type": "code",
  9800. "value": ""
  9801. },
  9802. "parser": {
  9803. "type": "code",
  9804. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9805. },
  9806. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9807. "position": {
  9808. "type": "list<double>",
  9809. "value": [
  9810. "0;-16.448647507242754,-64.66852516351611%",
  9811. "0;25.586358099133236,76.27569634671114%"
  9812. ]
  9813. },
  9814. "orientation": {
  9815. "type": "double",
  9816. "value": "0;130.29214775562784"
  9817. },
  9818. "scale": {
  9819. "type": "list<double>",
  9820. "value": [
  9821. 1,
  9822. 1
  9823. ]
  9824. },
  9825. "arrow": "arrowTail",
  9826. "arrowType": "arrow-empty",
  9827. "$linkDecoratorInfo": {
  9828. "type": "map<string,double>",
  9829. "value": {
  9830. "xratio": 1,
  9831. "yoffset": -4
  9832. }
  9833. }
  9834. },
  9835. "282": {
  9836. "segments": {
  9837. "type": "string",
  9838. "value": "m0,0 l10,5 l-10,5 z"
  9839. },
  9840. "style": {
  9841. "type": "map<string,string>",
  9842. "value": {
  9843. "stroke": "#000000",
  9844. "fill": "#ffffff",
  9845. "opacity": 0,
  9846. "stroke-width": 1
  9847. }
  9848. },
  9849. "mapper": {
  9850. "type": "code",
  9851. "value": ""
  9852. },
  9853. "parser": {
  9854. "type": "code",
  9855. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9856. },
  9857. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9858. "position": {
  9859. "type": "list<double>",
  9860. "value": [
  9861. "0;-15.6858905437756,-64.66852516351611%",
  9862. "0;26.233043350768412,76.27569634671114%"
  9863. ]
  9864. },
  9865. "orientation": {
  9866. "type": "double",
  9867. "value": "0;130.29214775562784"
  9868. },
  9869. "scale": {
  9870. "type": "list<double>",
  9871. "value": [
  9872. 1,
  9873. 1
  9874. ]
  9875. },
  9876. "arrow": "arrowTail",
  9877. "arrowType": "triangle-white",
  9878. "$linkDecoratorInfo": {
  9879. "type": "map<string,double>",
  9880. "value": {
  9881. "xratio": 1,
  9882. "yoffset": -5
  9883. }
  9884. }
  9885. },
  9886. "283": {
  9887. "segments": {
  9888. "type": "string",
  9889. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9890. },
  9891. "style": {
  9892. "type": "map<string,string>",
  9893. "value": {
  9894. "stroke": "#000000",
  9895. "fill": "#ffffff",
  9896. "opacity": 0,
  9897. "stroke-width": 1
  9898. }
  9899. },
  9900. "mapper": {
  9901. "type": "code",
  9902. "value": ""
  9903. },
  9904. "parser": {
  9905. "type": "code",
  9906. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9907. },
  9908. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9909. "position": {
  9910. "type": "list<double>",
  9911. "value": [
  9912. "0;23.313784817335545,0%",
  9913. "0;-19.766573741824175,0%"
  9914. ]
  9915. },
  9916. "orientation": {
  9917. "type": "double",
  9918. "value": "0;130.29214775562778"
  9919. },
  9920. "scale": {
  9921. "type": "list<double>",
  9922. "value": [
  9923. 1,
  9924. 1
  9925. ]
  9926. },
  9927. "arrow": "arrowHead",
  9928. "arrowType": "diamond-white",
  9929. "$linkDecoratorInfo": {
  9930. "type": "map<string,double>",
  9931. "value": {
  9932. "xratio": -1,
  9933. "yoffset": -5
  9934. }
  9935. }
  9936. },
  9937. "284": {
  9938. "segments": {
  9939. "type": "string",
  9940. "value": "m0,0 l-10,5 l10,5 z"
  9941. },
  9942. "style": {
  9943. "type": "map<string,string>",
  9944. "value": {
  9945. "stroke": "#000000",
  9946. "fill": "#ffffff",
  9947. "opacity": 0,
  9948. "stroke-width": 1
  9949. }
  9950. },
  9951. "mapper": {
  9952. "type": "code",
  9953. "value": ""
  9954. },
  9955. "parser": {
  9956. "type": "code",
  9957. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9958. },
  9959. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9960. "position": {
  9961. "type": "list<double>",
  9962. "value": [
  9963. "0;23.313784817335545,0%",
  9964. "0;-19.766573741824175,0%"
  9965. ]
  9966. },
  9967. "orientation": {
  9968. "type": "double",
  9969. "value": "0;130.29214775562778"
  9970. },
  9971. "scale": {
  9972. "type": "list<double>",
  9973. "value": [
  9974. 1,
  9975. 1
  9976. ]
  9977. },
  9978. "arrow": "arrowHead",
  9979. "arrowType": "triangle-white",
  9980. "$linkDecoratorInfo": {
  9981. "type": "map<string,double>",
  9982. "value": {
  9983. "xratio": -1,
  9984. "yoffset": -5
  9985. }
  9986. }
  9987. },
  9988. "285": {
  9989. "segments": {
  9990. "type": "string",
  9991. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9992. },
  9993. "style": {
  9994. "type": "map<string,string>",
  9995. "value": {
  9996. "stroke": "#000000",
  9997. "fill": "#000000",
  9998. "opacity": 0,
  9999. "stroke-width": 1
  10000. }
  10001. },
  10002. "mapper": {
  10003. "type": "code",
  10004. "value": ""
  10005. },
  10006. "parser": {
  10007. "type": "code",
  10008. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10009. },
  10010. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10011. "position": {
  10012. "type": "list<double>",
  10013. "value": [
  10014. "0;23.313784817335545,0%",
  10015. "0;-19.766573741824175,0%"
  10016. ]
  10017. },
  10018. "orientation": {
  10019. "type": "double",
  10020. "value": "0;130.29214775562778"
  10021. },
  10022. "scale": {
  10023. "type": "list<double>",
  10024. "value": [
  10025. 1,
  10026. 1
  10027. ]
  10028. },
  10029. "arrow": "arrowHead",
  10030. "arrowType": "diamond-black",
  10031. "$linkDecoratorInfo": {
  10032. "type": "map<string,double>",
  10033. "value": {
  10034. "xratio": -1,
  10035. "yoffset": -5
  10036. }
  10037. }
  10038. },
  10039. "286": {
  10040. "r": {
  10041. "type": "double",
  10042. "value": 10
  10043. },
  10044. "style": {
  10045. "type": "map<string,string>",
  10046. "value": {
  10047. "stroke": "#000000",
  10048. "fill": "#000000",
  10049. "opacity": 0,
  10050. "stroke-width": 1
  10051. }
  10052. },
  10053. "mapper": {
  10054. "type": "code",
  10055. "value": ""
  10056. },
  10057. "parser": {
  10058. "type": "code",
  10059. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10060. },
  10061. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10062. "position": {
  10063. "type": "list<double>",
  10064. "value": [
  10065. "0;27.12756963467109,0%",
  10066. "0;-16.533147483648406,0%"
  10067. ]
  10068. },
  10069. "orientation": {
  10070. "type": "double",
  10071. "value": "0;130.29214775562778"
  10072. },
  10073. "scale": {
  10074. "type": "list<double>",
  10075. "value": [
  10076. 1,
  10077. 1
  10078. ]
  10079. },
  10080. "arrow": "arrowHead",
  10081. "arrowType": "circle-black-large",
  10082. "$linkDecoratorInfo": {
  10083. "type": "map<string,double>",
  10084. "value": {
  10085. "xratio": -1,
  10086. "yoffset": -10
  10087. }
  10088. }
  10089. },
  10090. "287": {
  10091. "segments": {
  10092. "type": "string",
  10093. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  10094. },
  10095. "style": {
  10096. "type": "map<string,string>",
  10097. "value": {
  10098. "stroke": "#000000",
  10099. "fill": "#000000",
  10100. "opacity": 0,
  10101. "stroke-width": 1
  10102. }
  10103. },
  10104. "mapper": {
  10105. "type": "code",
  10106. "value": ""
  10107. },
  10108. "parser": {
  10109. "type": "code",
  10110. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10111. },
  10112. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10113. "position": {
  10114. "type": "list<double>",
  10115. "value": [
  10116. "0;25.602055707736895,0%",
  10117. "0;-17.826517986918702,0%"
  10118. ]
  10119. },
  10120. "orientation": {
  10121. "type": "double",
  10122. "value": "0;130.29214775562778"
  10123. },
  10124. "scale": {
  10125. "type": "list<double>",
  10126. "value": [
  10127. 1,
  10128. 1
  10129. ]
  10130. },
  10131. "arrow": "arrowHead",
  10132. "arrowType": "arrow-black-large",
  10133. "$linkDecoratorInfo": {
  10134. "type": "map<string,double>",
  10135. "value": {
  10136. "xratio": -1,
  10137. "yoffset": -8
  10138. }
  10139. }
  10140. },
  10141. "288": {
  10142. "segments": {
  10143. "type": "string",
  10144. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  10145. },
  10146. "style": {
  10147. "type": "map<string,string>",
  10148. "value": {
  10149. "stroke": "#000000",
  10150. "fill": "#000000",
  10151. "opacity": 0,
  10152. "stroke-width": 1
  10153. }
  10154. },
  10155. "mapper": {
  10156. "type": "code",
  10157. "value": ""
  10158. },
  10159. "parser": {
  10160. "type": "code",
  10161. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10162. },
  10163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10164. "position": {
  10165. "type": "list<double>",
  10166. "value": [
  10167. "0;22.551027853868504,0%",
  10168. "0;-20.41325899345935,0%"
  10169. ]
  10170. },
  10171. "orientation": {
  10172. "type": "double",
  10173. "value": "0;130.29214775562778"
  10174. },
  10175. "scale": {
  10176. "type": "list<double>",
  10177. "value": [
  10178. 1,
  10179. 1
  10180. ]
  10181. },
  10182. "arrow": "arrowHead",
  10183. "arrowType": "arrow-black",
  10184. "$linkDecoratorInfo": {
  10185. "type": "map<string,double>",
  10186. "value": {
  10187. "xratio": -1,
  10188. "yoffset": -4
  10189. }
  10190. }
  10191. },
  10192. "289": {
  10193. "segments": {
  10194. "type": "string",
  10195. "value": "m0,0 l-20,10 l20,10 z"
  10196. },
  10197. "style": {
  10198. "type": "map<string,string>",
  10199. "value": {
  10200. "stroke": "#000000",
  10201. "fill": "#ffffff",
  10202. "opacity": 0,
  10203. "stroke-width": 1
  10204. }
  10205. },
  10206. "mapper": {
  10207. "type": "code",
  10208. "value": ""
  10209. },
  10210. "parser": {
  10211. "type": "code",
  10212. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10213. },
  10214. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10215. "position": {
  10216. "type": "list<double>",
  10217. "value": [
  10218. "0;27.12756963467109,0%",
  10219. "0;-16.533147483648406,0%"
  10220. ]
  10221. },
  10222. "orientation": {
  10223. "type": "double",
  10224. "value": "0;130.29214775562778"
  10225. },
  10226. "scale": {
  10227. "type": "list<double>",
  10228. "value": [
  10229. 1,
  10230. 1
  10231. ]
  10232. },
  10233. "arrow": "arrowHead",
  10234. "arrowType": "triangle-white-large",
  10235. "$linkDecoratorInfo": {
  10236. "type": "map<string,double>",
  10237. "value": {
  10238. "xratio": -1,
  10239. "yoffset": -10
  10240. }
  10241. }
  10242. },
  10243. "290": {
  10244. "segments": {
  10245. "type": "string",
  10246. "value": "m0,0 l-20,10 l20,10 z"
  10247. },
  10248. "style": {
  10249. "type": "map<string,string>",
  10250. "value": {
  10251. "stroke": "#000000",
  10252. "fill": "#000000",
  10253. "opacity": 0,
  10254. "stroke-width": 1
  10255. }
  10256. },
  10257. "mapper": {
  10258. "type": "code",
  10259. "value": ""
  10260. },
  10261. "parser": {
  10262. "type": "code",
  10263. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10264. },
  10265. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10266. "position": {
  10267. "type": "list<double>",
  10268. "value": [
  10269. "0;27.12756963467109,0%",
  10270. "0;-16.533147483648406,0%"
  10271. ]
  10272. },
  10273. "orientation": {
  10274. "type": "double",
  10275. "value": "0;130.29214775562778"
  10276. },
  10277. "scale": {
  10278. "type": "list<double>",
  10279. "value": [
  10280. 1,
  10281. 1
  10282. ]
  10283. },
  10284. "arrow": "arrowHead",
  10285. "arrowType": "triangle-black-large",
  10286. "$linkDecoratorInfo": {
  10287. "type": "map<string,double>",
  10288. "value": {
  10289. "xratio": -1,
  10290. "yoffset": -10
  10291. }
  10292. }
  10293. },
  10294. "291": {
  10295. "r": {
  10296. "type": "double",
  10297. "value": 5
  10298. },
  10299. "style": {
  10300. "type": "map<string,string>",
  10301. "value": {
  10302. "stroke": "#000000",
  10303. "fill": "#000000",
  10304. "opacity": 0,
  10305. "stroke-width": 1
  10306. }
  10307. },
  10308. "mapper": {
  10309. "type": "code",
  10310. "value": ""
  10311. },
  10312. "parser": {
  10313. "type": "code",
  10314. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10315. },
  10316. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10317. "position": {
  10318. "type": "list<double>",
  10319. "value": [
  10320. "0;23.313784817335545,0%",
  10321. "0;-19.766573741824175,0%"
  10322. ]
  10323. },
  10324. "orientation": {
  10325. "type": "double",
  10326. "value": "0;130.29214775562778"
  10327. },
  10328. "scale": {
  10329. "type": "list<double>",
  10330. "value": [
  10331. 1,
  10332. 1
  10333. ]
  10334. },
  10335. "arrow": "arrowHead",
  10336. "arrowType": "circle-black",
  10337. "$linkDecoratorInfo": {
  10338. "type": "map<string,double>",
  10339. "value": {
  10340. "xratio": -1,
  10341. "yoffset": -5
  10342. }
  10343. }
  10344. },
  10345. "292": {
  10346. "r": {
  10347. "type": "double",
  10348. "value": 5
  10349. },
  10350. "style": {
  10351. "type": "map<string,string>",
  10352. "value": {
  10353. "stroke": "#000000",
  10354. "fill": "#ffffff",
  10355. "opacity": 0,
  10356. "stroke-width": 1
  10357. }
  10358. },
  10359. "mapper": {
  10360. "type": "code",
  10361. "value": ""
  10362. },
  10363. "parser": {
  10364. "type": "code",
  10365. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10366. },
  10367. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10368. "position": {
  10369. "type": "list<double>",
  10370. "value": [
  10371. "0;23.313784817335545,0%",
  10372. "0;-19.766573741824175,0%"
  10373. ]
  10374. },
  10375. "orientation": {
  10376. "type": "double",
  10377. "value": "0;130.29214775562778"
  10378. },
  10379. "scale": {
  10380. "type": "list<double>",
  10381. "value": [
  10382. 1,
  10383. 1
  10384. ]
  10385. },
  10386. "arrow": "arrowHead",
  10387. "arrowType": "circle-white",
  10388. "$linkDecoratorInfo": {
  10389. "type": "map<string,double>",
  10390. "value": {
  10391. "xratio": -1,
  10392. "yoffset": -5
  10393. }
  10394. }
  10395. },
  10396. "293": {
  10397. "r": {
  10398. "type": "double",
  10399. "value": 10
  10400. },
  10401. "style": {
  10402. "type": "map<string,string>",
  10403. "value": {
  10404. "stroke": "#000000",
  10405. "fill": "#ffffff",
  10406. "opacity": 0,
  10407. "stroke-width": 1
  10408. }
  10409. },
  10410. "mapper": {
  10411. "type": "code",
  10412. "value": ""
  10413. },
  10414. "parser": {
  10415. "type": "code",
  10416. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10417. },
  10418. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10419. "position": {
  10420. "type": "list<double>",
  10421. "value": [
  10422. "0;27.12756963467109,0%",
  10423. "0;-16.533147483648406,0%"
  10424. ]
  10425. },
  10426. "orientation": {
  10427. "type": "double",
  10428. "value": "0;130.29214775562778"
  10429. },
  10430. "scale": {
  10431. "type": "list<double>",
  10432. "value": [
  10433. 1,
  10434. 1
  10435. ]
  10436. },
  10437. "arrow": "arrowHead",
  10438. "arrowType": "circle-white-large",
  10439. "$linkDecoratorInfo": {
  10440. "type": "map<string,double>",
  10441. "value": {
  10442. "xratio": -1,
  10443. "yoffset": -10
  10444. }
  10445. }
  10446. },
  10447. "294": {
  10448. "segments": {
  10449. "type": "string",
  10450. "value": "m0,0 l-20,8 l20,8"
  10451. },
  10452. "style": {
  10453. "type": "map<string,string>",
  10454. "value": {
  10455. "stroke": "#000000",
  10456. "fill": "#000000",
  10457. "fill-opacity": 0,
  10458. "stroke-width": 1,
  10459. "opacity": 0
  10460. }
  10461. },
  10462. "mapper": {
  10463. "type": "code",
  10464. "value": ""
  10465. },
  10466. "parser": {
  10467. "type": "code",
  10468. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10469. },
  10470. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10471. "position": {
  10472. "type": "list<double>",
  10473. "value": [
  10474. "0;25.602055707736895,0%",
  10475. "0;-17.826517986918702,0%"
  10476. ]
  10477. },
  10478. "orientation": {
  10479. "type": "double",
  10480. "value": "0;130.29214775562778"
  10481. },
  10482. "scale": {
  10483. "type": "list<double>",
  10484. "value": [
  10485. 1,
  10486. 1
  10487. ]
  10488. },
  10489. "arrow": "arrowHead",
  10490. "arrowType": "arrow-empty-large",
  10491. "$linkDecoratorInfo": {
  10492. "type": "map<string,double>",
  10493. "value": {
  10494. "xratio": -1,
  10495. "yoffset": -8
  10496. }
  10497. }
  10498. },
  10499. "295": {
  10500. "segments": {
  10501. "type": "string",
  10502. "value": "m0,0 l-10,4 l10,4"
  10503. },
  10504. "style": {
  10505. "type": "map<string,string>",
  10506. "value": {
  10507. "stroke": "#000000",
  10508. "fill": "#000000",
  10509. "fill-opacity": 0,
  10510. "stroke-width": 1,
  10511. "opacity": 0
  10512. }
  10513. },
  10514. "mapper": {
  10515. "type": "code",
  10516. "value": ""
  10517. },
  10518. "parser": {
  10519. "type": "code",
  10520. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10521. },
  10522. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10523. "position": {
  10524. "type": "list<double>",
  10525. "value": [
  10526. "0;22.551027853868504,0%",
  10527. "0;-20.41325899345935,0%"
  10528. ]
  10529. },
  10530. "orientation": {
  10531. "type": "double",
  10532. "value": "0;130.29214775562778"
  10533. },
  10534. "scale": {
  10535. "type": "list<double>",
  10536. "value": [
  10537. 1,
  10538. 1
  10539. ]
  10540. },
  10541. "arrow": "arrowHead",
  10542. "arrowType": "arrow-empty",
  10543. "$linkDecoratorInfo": {
  10544. "type": "map<string,double>",
  10545. "value": {
  10546. "xratio": -1,
  10547. "yoffset": -4
  10548. }
  10549. }
  10550. },
  10551. "296": {
  10552. "segments": {
  10553. "type": "string",
  10554. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10555. },
  10556. "style": {
  10557. "type": "map<string,string>",
  10558. "value": {
  10559. "stroke": "#000000",
  10560. "fill": "#000000",
  10561. "opacity": 0,
  10562. "stroke-width": 1
  10563. }
  10564. },
  10565. "mapper": {
  10566. "type": "code",
  10567. "value": ""
  10568. },
  10569. "parser": {
  10570. "type": "code",
  10571. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10572. },
  10573. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10574. "position": {
  10575. "type": "list<double>",
  10576. "value": [
  10577. "0;27.12756963467109,0%",
  10578. "0;-16.533147483648406,0%"
  10579. ]
  10580. },
  10581. "orientation": {
  10582. "type": "double",
  10583. "value": "0;130.29214775562778"
  10584. },
  10585. "scale": {
  10586. "type": "list<double>",
  10587. "value": [
  10588. 1,
  10589. 1
  10590. ]
  10591. },
  10592. "arrow": "arrowHead",
  10593. "arrowType": "diamond-black-large",
  10594. "$linkDecoratorInfo": {
  10595. "type": "map<string,double>",
  10596. "value": {
  10597. "xratio": -1,
  10598. "yoffset": -10
  10599. }
  10600. }
  10601. },
  10602. "297": {
  10603. "segments": {
  10604. "type": "string",
  10605. "value": "m0,0 l-10,4 l10,4 z"
  10606. },
  10607. "style": {
  10608. "type": "map<string,string>",
  10609. "value": {
  10610. "stroke": "#000000",
  10611. "fill": "#000000",
  10612. "opacity": 0,
  10613. "stroke-width": 1
  10614. }
  10615. },
  10616. "mapper": {
  10617. "type": "code",
  10618. "value": ""
  10619. },
  10620. "parser": {
  10621. "type": "code",
  10622. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10623. },
  10624. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10625. "position": {
  10626. "type": "list<double>",
  10627. "value": [
  10628. "0;22.551027853868504,0%",
  10629. "0;-20.41325899345935,0%"
  10630. ]
  10631. },
  10632. "orientation": {
  10633. "type": "double",
  10634. "value": "0;130.29214775562778"
  10635. },
  10636. "scale": {
  10637. "type": "list<double>",
  10638. "value": [
  10639. 1,
  10640. 1
  10641. ]
  10642. },
  10643. "arrow": "arrowHead",
  10644. "arrowType": "triangle-black",
  10645. "$linkDecoratorInfo": {
  10646. "type": "map<string,double>",
  10647. "value": {
  10648. "xratio": -1,
  10649. "yoffset": -4
  10650. }
  10651. }
  10652. },
  10653. "298": {
  10654. "segments": {
  10655. "type": "string",
  10656. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10657. },
  10658. "style": {
  10659. "type": "map<string,string>",
  10660. "value": {
  10661. "stroke": "#000000",
  10662. "fill": "#ffffff",
  10663. "opacity": 0,
  10664. "stroke-width": 1
  10665. }
  10666. },
  10667. "mapper": {
  10668. "type": "code",
  10669. "value": ""
  10670. },
  10671. "parser": {
  10672. "type": "code",
  10673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10674. },
  10675. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10676. "position": {
  10677. "type": "list<double>",
  10678. "value": [
  10679. "0;27.12756963467109,0%",
  10680. "0;-16.533147483648406,0%"
  10681. ]
  10682. },
  10683. "orientation": {
  10684. "type": "double",
  10685. "value": "0;130.29214775562778"
  10686. },
  10687. "scale": {
  10688. "type": "list<double>",
  10689. "value": [
  10690. 1,
  10691. 1
  10692. ]
  10693. },
  10694. "arrow": "arrowHead",
  10695. "arrowType": "diamond-white-large",
  10696. "$linkDecoratorInfo": {
  10697. "type": "map<string,double>",
  10698. "value": {
  10699. "xratio": -1,
  10700. "yoffset": -10
  10701. }
  10702. }
  10703. }
  10704. },
  10705. "edges": []
  10706. }
  10707. },
  10708. "$asuri": {
  10709. "type": "string",
  10710. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/111.instance"
  10711. },
  10712. "$segments": {
  10713. "type": "map<string,list<string>>",
  10714. "value": {
  10715. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/107.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/111.instance": "M772,389L752.5,412",
  10716. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/111.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon/109.instance": "M752.451412544689,412.0573082806232L733.0003246388889,434.9996170925926"
  10717. }
  10718. },
  10719. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  10720. },
  10721. "112": {
  10722. "link-style": {
  10723. "type": "map<string,string>",
  10724. "value": {
  10725. "stroke": "#008080",
  10726. "stroke-dasharray": "",
  10727. "stroke-opacity": 1,
  10728. "stroke-width": 2
  10729. }
  10730. },
  10731. "arrowHead": {
  10732. "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)",
  10733. "value": "custom"
  10734. },
  10735. "arrowTail": {
  10736. "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)",
  10737. "value": "arrow-black"
  10738. },
  10739. "typename": {
  10740. "type": "string",
  10741. "value": "successLink"
  10742. },
  10743. "position": {
  10744. "type": "list<double>",
  10745. "value": [
  10746. 590.6090629988797,
  10747. 387.4055262218141
  10748. ]
  10749. },
  10750. "orientation": {
  10751. "type": "double",
  10752. "value": 0
  10753. },
  10754. "scale": {
  10755. "type": "list<double>",
  10756. "value": [
  10757. 1,
  10758. 1
  10759. ]
  10760. },
  10761. "mapper": {
  10762. "type": "code",
  10763. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  10764. },
  10765. "parser": {
  10766. "type": "code",
  10767. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10768. },
  10769. "$contents": {
  10770. "type": "map<string,*>",
  10771. "value": {
  10772. "nodes": {
  10773. "267": {
  10774. "segments": {
  10775. "type": "string",
  10776. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  10777. },
  10778. "style": {
  10779. "type": "map<string,string>",
  10780. "value": {
  10781. "stroke": "#000000",
  10782. "fill": "#000000",
  10783. "opacity": 0,
  10784. "stroke-width": 1
  10785. }
  10786. },
  10787. "mapper": {
  10788. "type": "code",
  10789. "value": ""
  10790. },
  10791. "parser": {
  10792. "type": "code",
  10793. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10794. },
  10795. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10796. "position": {
  10797. "type": "list<double>",
  10798. "value": [
  10799. "0;130.45154605111554,99.98816778082589%",
  10800. "0;-79.40506711966526,1.5382795043204083%"
  10801. ]
  10802. },
  10803. "orientation": {
  10804. "type": "double",
  10805. "value": "0;0.8814039965821435"
  10806. },
  10807. "scale": {
  10808. "type": "list<double>",
  10809. "value": [
  10810. 1,
  10811. 1
  10812. ]
  10813. },
  10814. "arrow": "arrowTail",
  10815. "arrowType": "arrow-black",
  10816. "$linkDecoratorInfo": {
  10817. "type": "map<string,double>",
  10818. "value": {
  10819. "xratio": 1,
  10820. "yoffset": -4
  10821. }
  10822. }
  10823. },
  10824. "268": {
  10825. "segments": {
  10826. "type": "string",
  10827. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10828. },
  10829. "style": {
  10830. "type": "map<string,string>",
  10831. "value": {
  10832. "stroke": "#000000",
  10833. "fill": "#000000",
  10834. "opacity": 0,
  10835. "stroke-width": 1
  10836. }
  10837. },
  10838. "mapper": {
  10839. "type": "code",
  10840. "value": ""
  10841. },
  10842. "parser": {
  10843. "type": "code",
  10844. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10845. },
  10846. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10847. "position": {
  10848. "type": "list<double>",
  10849. "value": [
  10850. "0;130.54384282137482,99.98816778082589%",
  10851. "0;-85.4043571865148,1.5382795043204083%"
  10852. ]
  10853. },
  10854. "orientation": {
  10855. "type": "double",
  10856. "value": "0;0.8814039965821435"
  10857. },
  10858. "scale": {
  10859. "type": "list<double>",
  10860. "value": [
  10861. 1,
  10862. 1
  10863. ]
  10864. },
  10865. "arrow": "arrowTail",
  10866. "arrowType": "diamond-black-large",
  10867. "$linkDecoratorInfo": {
  10868. "type": "map<string,double>",
  10869. "value": {
  10870. "xratio": 1,
  10871. "yoffset": -10
  10872. }
  10873. }
  10874. },
  10875. "269": {
  10876. "r": {
  10877. "type": "double",
  10878. "value": 10
  10879. },
  10880. "style": {
  10881. "type": "map<string,string>",
  10882. "value": {
  10883. "stroke": "#000000",
  10884. "fill": "#000000",
  10885. "opacity": 0,
  10886. "stroke-width": 1
  10887. }
  10888. },
  10889. "mapper": {
  10890. "type": "code",
  10891. "value": ""
  10892. },
  10893. "parser": {
  10894. "type": "code",
  10895. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10896. },
  10897. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10898. "position": {
  10899. "type": "list<double>",
  10900. "value": [
  10901. "0;130.54384282137482,99.98816778082589%",
  10902. "0;-85.4043571865148,1.5382795043204083%"
  10903. ]
  10904. },
  10905. "orientation": {
  10906. "type": "double",
  10907. "value": "0;0.8814039965821435"
  10908. },
  10909. "scale": {
  10910. "type": "list<double>",
  10911. "value": [
  10912. 1,
  10913. 1
  10914. ]
  10915. },
  10916. "arrow": "arrowTail",
  10917. "arrowType": "circle-black-large",
  10918. "$linkDecoratorInfo": {
  10919. "type": "map<string,double>",
  10920. "value": {
  10921. "xratio": 1,
  10922. "yoffset": -10
  10923. }
  10924. }
  10925. },
  10926. "270": {
  10927. "r": {
  10928. "type": "double",
  10929. "value": 10
  10930. },
  10931. "style": {
  10932. "type": "map<string,string>",
  10933. "value": {
  10934. "stroke": "#000000",
  10935. "fill": "#ffffff",
  10936. "opacity": 0,
  10937. "stroke-width": 1
  10938. }
  10939. },
  10940. "mapper": {
  10941. "type": "code",
  10942. "value": ""
  10943. },
  10944. "parser": {
  10945. "type": "code",
  10946. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10947. },
  10948. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10949. "position": {
  10950. "type": "list<double>",
  10951. "value": [
  10952. "0;130.54384282137482,99.98816778082589%",
  10953. "0;-85.4043571865148,1.5382795043204083%"
  10954. ]
  10955. },
  10956. "orientation": {
  10957. "type": "double",
  10958. "value": "0;0.8814039965821435"
  10959. },
  10960. "scale": {
  10961. "type": "list<double>",
  10962. "value": [
  10963. 1,
  10964. 1
  10965. ]
  10966. },
  10967. "arrow": "arrowTail",
  10968. "arrowType": "circle-white-large",
  10969. "$linkDecoratorInfo": {
  10970. "type": "map<string,double>",
  10971. "value": {
  10972. "xratio": 1,
  10973. "yoffset": -10
  10974. }
  10975. }
  10976. },
  10977. "271": {
  10978. "r": {
  10979. "type": "double",
  10980. "value": 5
  10981. },
  10982. "style": {
  10983. "type": "map<string,string>",
  10984. "value": {
  10985. "stroke": "#000000",
  10986. "fill": "#000000",
  10987. "opacity": 0,
  10988. "stroke-width": 1
  10989. }
  10990. },
  10991. "mapper": {
  10992. "type": "code",
  10993. "value": ""
  10994. },
  10995. "parser": {
  10996. "type": "code",
  10997. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10998. },
  10999. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11000. "position": {
  11001. "type": "list<double>",
  11002. "value": [
  11003. "0;130.4669288461588,99.98816778082589%",
  11004. "0;-80.40494879747354,1.5382795043204083%"
  11005. ]
  11006. },
  11007. "orientation": {
  11008. "type": "double",
  11009. "value": "0;0.8814039965821435"
  11010. },
  11011. "scale": {
  11012. "type": "list<double>",
  11013. "value": [
  11014. 1,
  11015. 1
  11016. ]
  11017. },
  11018. "arrow": "arrowTail",
  11019. "arrowType": "circle-black",
  11020. "$linkDecoratorInfo": {
  11021. "type": "map<string,double>",
  11022. "value": {
  11023. "xratio": 1,
  11024. "yoffset": -5
  11025. }
  11026. }
  11027. },
  11028. "272": {
  11029. "segments": {
  11030. "type": "string",
  11031. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11032. },
  11033. "style": {
  11034. "type": "map<string,string>",
  11035. "value": {
  11036. "stroke": "#000000",
  11037. "fill": "#000000",
  11038. "opacity": 0,
  11039. "stroke-width": 1
  11040. }
  11041. },
  11042. "mapper": {
  11043. "type": "code",
  11044. "value": ""
  11045. },
  11046. "parser": {
  11047. "type": "code",
  11048. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11049. },
  11050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11051. "position": {
  11052. "type": "list<double>",
  11053. "value": [
  11054. "0;130.4669288461588,99.98816778082589%",
  11055. "0;-80.40494879747354,1.5382795043204083%"
  11056. ]
  11057. },
  11058. "orientation": {
  11059. "type": "double",
  11060. "value": "0;0.8814039965821435"
  11061. },
  11062. "scale": {
  11063. "type": "list<double>",
  11064. "value": [
  11065. 1,
  11066. 1
  11067. ]
  11068. },
  11069. "arrow": "arrowTail",
  11070. "arrowType": "diamond-black",
  11071. "$linkDecoratorInfo": {
  11072. "type": "map<string,double>",
  11073. "value": {
  11074. "xratio": 1,
  11075. "yoffset": -5
  11076. }
  11077. }
  11078. },
  11079. "273": {
  11080. "segments": {
  11081. "type": "string",
  11082. "value": "m0,0 l20,10 l-20,10 z"
  11083. },
  11084. "style": {
  11085. "type": "map<string,string>",
  11086. "value": {
  11087. "stroke": "#000000",
  11088. "fill": "#000000",
  11089. "opacity": 0,
  11090. "stroke-width": 1
  11091. }
  11092. },
  11093. "mapper": {
  11094. "type": "code",
  11095. "value": ""
  11096. },
  11097. "parser": {
  11098. "type": "code",
  11099. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11100. },
  11101. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11102. "position": {
  11103. "type": "list<double>",
  11104. "value": [
  11105. "0;130.54384282137482,99.98816778082589%",
  11106. "0;-85.4043571865148,1.5382795043204083%"
  11107. ]
  11108. },
  11109. "orientation": {
  11110. "type": "double",
  11111. "value": "0;0.8814039965821435"
  11112. },
  11113. "scale": {
  11114. "type": "list<double>",
  11115. "value": [
  11116. 1,
  11117. 1
  11118. ]
  11119. },
  11120. "arrow": "arrowTail",
  11121. "arrowType": "triangle-black-large",
  11122. "$linkDecoratorInfo": {
  11123. "type": "map<string,double>",
  11124. "value": {
  11125. "xratio": 1,
  11126. "yoffset": -10
  11127. }
  11128. }
  11129. },
  11130. "274": {
  11131. "segments": {
  11132. "type": "string",
  11133. "value": "m0,0 l10,4 l-10,4 z"
  11134. },
  11135. "style": {
  11136. "type": "map<string,string>",
  11137. "value": {
  11138. "stroke": "#000000",
  11139. "fill": "#000000",
  11140. "opacity": 0,
  11141. "stroke-width": 1
  11142. }
  11143. },
  11144. "mapper": {
  11145. "type": "code",
  11146. "value": ""
  11147. },
  11148. "parser": {
  11149. "type": "code",
  11150. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11151. },
  11152. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11153. "position": {
  11154. "type": "list<double>",
  11155. "value": [
  11156. "0;130.45154605111554,99.98816778082589%",
  11157. "0;-79.40506711966526,1.5382795043204083%"
  11158. ]
  11159. },
  11160. "orientation": {
  11161. "type": "double",
  11162. "value": "0;0.8814039965821435"
  11163. },
  11164. "scale": {
  11165. "type": "list<double>",
  11166. "value": [
  11167. 1,
  11168. 1
  11169. ]
  11170. },
  11171. "arrow": "arrowTail",
  11172. "arrowType": "triangle-black",
  11173. "$linkDecoratorInfo": {
  11174. "type": "map<string,double>",
  11175. "value": {
  11176. "xratio": 1,
  11177. "yoffset": -4
  11178. }
  11179. }
  11180. },
  11181. "275": {
  11182. "segments": {
  11183. "type": "string",
  11184. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  11185. },
  11186. "style": {
  11187. "type": "map<string,string>",
  11188. "value": {
  11189. "stroke": "#000000",
  11190. "fill": "#000000",
  11191. "opacity": 0,
  11192. "stroke-width": 1
  11193. }
  11194. },
  11195. "mapper": {
  11196. "type": "code",
  11197. "value": ""
  11198. },
  11199. "parser": {
  11200. "type": "code",
  11201. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11202. },
  11203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11204. "position": {
  11205. "type": "list<double>",
  11206. "value": [
  11207. "0;130.51307723128843,99.98816778082589%",
  11208. "0;-83.4045938308983,1.5382795043204083%"
  11209. ]
  11210. },
  11211. "orientation": {
  11212. "type": "double",
  11213. "value": "0;0.8814039965821435"
  11214. },
  11215. "scale": {
  11216. "type": "list<double>",
  11217. "value": [
  11218. 1,
  11219. 1
  11220. ]
  11221. },
  11222. "arrow": "arrowTail",
  11223. "arrowType": "arrow-black-large",
  11224. "$linkDecoratorInfo": {
  11225. "type": "map<string,double>",
  11226. "value": {
  11227. "xratio": 1,
  11228. "yoffset": -8
  11229. }
  11230. }
  11231. },
  11232. "276": {
  11233. "segments": {
  11234. "type": "string",
  11235. "value": "m0,0 l20,10 l-20,10 z"
  11236. },
  11237. "style": {
  11238. "type": "map<string,string>",
  11239. "value": {
  11240. "stroke": "#000000",
  11241. "fill": "#ffffff",
  11242. "opacity": 0,
  11243. "stroke-width": 1
  11244. }
  11245. },
  11246. "mapper": {
  11247. "type": "code",
  11248. "value": ""
  11249. },
  11250. "parser": {
  11251. "type": "code",
  11252. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11253. },
  11254. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11255. "position": {
  11256. "type": "list<double>",
  11257. "value": [
  11258. "0;130.54384282137482,99.98816778082589%",
  11259. "0;-85.4043571865148,1.5382795043204083%"
  11260. ]
  11261. },
  11262. "orientation": {
  11263. "type": "double",
  11264. "value": "0;0.8814039965821435"
  11265. },
  11266. "scale": {
  11267. "type": "list<double>",
  11268. "value": [
  11269. 1,
  11270. 1
  11271. ]
  11272. },
  11273. "arrow": "arrowTail",
  11274. "arrowType": "triangle-white-large",
  11275. "$linkDecoratorInfo": {
  11276. "type": "map<string,double>",
  11277. "value": {
  11278. "xratio": 1,
  11279. "yoffset": -10
  11280. }
  11281. }
  11282. },
  11283. "277": {
  11284. "segments": {
  11285. "type": "string",
  11286. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11287. },
  11288. "style": {
  11289. "type": "map<string,string>",
  11290. "value": {
  11291. "stroke": "#000000",
  11292. "fill": "#ffffff",
  11293. "opacity": 0,
  11294. "stroke-width": 1
  11295. }
  11296. },
  11297. "mapper": {
  11298. "type": "code",
  11299. "value": ""
  11300. },
  11301. "parser": {
  11302. "type": "code",
  11303. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11304. },
  11305. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11306. "position": {
  11307. "type": "list<double>",
  11308. "value": [
  11309. "0;130.4669288461588,99.98816778082589%",
  11310. "0;-80.40494879747354,1.5382795043204083%"
  11311. ]
  11312. },
  11313. "orientation": {
  11314. "type": "double",
  11315. "value": "0;0.8814039965821435"
  11316. },
  11317. "scale": {
  11318. "type": "list<double>",
  11319. "value": [
  11320. 1,
  11321. 1
  11322. ]
  11323. },
  11324. "arrow": "arrowTail",
  11325. "arrowType": "diamond-white",
  11326. "$linkDecoratorInfo": {
  11327. "type": "map<string,double>",
  11328. "value": {
  11329. "xratio": 1,
  11330. "yoffset": -5
  11331. }
  11332. }
  11333. },
  11334. "278": {
  11335. "segments": {
  11336. "type": "string",
  11337. "value": "m0,0 l20,8 l-20,8"
  11338. },
  11339. "style": {
  11340. "type": "map<string,string>",
  11341. "value": {
  11342. "stroke": "#000000",
  11343. "fill": "#000000",
  11344. "fill-opacity": 0,
  11345. "stroke-width": 1,
  11346. "opacity": 0
  11347. }
  11348. },
  11349. "mapper": {
  11350. "type": "code",
  11351. "value": ""
  11352. },
  11353. "parser": {
  11354. "type": "code",
  11355. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11356. },
  11357. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11358. "position": {
  11359. "type": "list<double>",
  11360. "value": [
  11361. "0;130.51307723128843,99.98816778082589%",
  11362. "0;-83.4045938308983,1.5382795043204083%"
  11363. ]
  11364. },
  11365. "orientation": {
  11366. "type": "double",
  11367. "value": "0;0.8814039965821435"
  11368. },
  11369. "scale": {
  11370. "type": "list<double>",
  11371. "value": [
  11372. 1,
  11373. 1
  11374. ]
  11375. },
  11376. "arrow": "arrowTail",
  11377. "arrowType": "arrow-empty-large",
  11378. "$linkDecoratorInfo": {
  11379. "type": "map<string,double>",
  11380. "value": {
  11381. "xratio": 1,
  11382. "yoffset": -8
  11383. }
  11384. }
  11385. },
  11386. "279": {
  11387. "r": {
  11388. "type": "double",
  11389. "value": 5
  11390. },
  11391. "style": {
  11392. "type": "map<string,string>",
  11393. "value": {
  11394. "stroke": "#000000",
  11395. "fill": "#ffffff",
  11396. "opacity": 0,
  11397. "stroke-width": 1
  11398. }
  11399. },
  11400. "mapper": {
  11401. "type": "code",
  11402. "value": ""
  11403. },
  11404. "parser": {
  11405. "type": "code",
  11406. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11407. },
  11408. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11409. "position": {
  11410. "type": "list<double>",
  11411. "value": [
  11412. "0;130.4669288461588,99.98816778082589%",
  11413. "0;-80.40494879747354,1.5382795043204083%"
  11414. ]
  11415. },
  11416. "orientation": {
  11417. "type": "double",
  11418. "value": "0;0.8814039965821435"
  11419. },
  11420. "scale": {
  11421. "type": "list<double>",
  11422. "value": [
  11423. 1,
  11424. 1
  11425. ]
  11426. },
  11427. "arrow": "arrowTail",
  11428. "arrowType": "circle-white",
  11429. "$linkDecoratorInfo": {
  11430. "type": "map<string,double>",
  11431. "value": {
  11432. "xratio": 1,
  11433. "yoffset": -5
  11434. }
  11435. }
  11436. },
  11437. "280": {
  11438. "segments": {
  11439. "type": "string",
  11440. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  11441. },
  11442. "style": {
  11443. "type": "map<string,string>",
  11444. "value": {
  11445. "stroke": "#000000",
  11446. "fill": "#ffffff",
  11447. "opacity": 0,
  11448. "stroke-width": 1
  11449. }
  11450. },
  11451. "mapper": {
  11452. "type": "code",
  11453. "value": ""
  11454. },
  11455. "parser": {
  11456. "type": "code",
  11457. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11458. },
  11459. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11460. "position": {
  11461. "type": "list<double>",
  11462. "value": [
  11463. "0;130.54384282137482,99.98816778082589%",
  11464. "0;-85.4043571865148,1.5382795043204083%"
  11465. ]
  11466. },
  11467. "orientation": {
  11468. "type": "double",
  11469. "value": "0;0.8814039965821435"
  11470. },
  11471. "scale": {
  11472. "type": "list<double>",
  11473. "value": [
  11474. 1,
  11475. 1
  11476. ]
  11477. },
  11478. "arrow": "arrowTail",
  11479. "arrowType": "diamond-white-large",
  11480. "$linkDecoratorInfo": {
  11481. "type": "map<string,double>",
  11482. "value": {
  11483. "xratio": 1,
  11484. "yoffset": -10
  11485. }
  11486. }
  11487. },
  11488. "281": {
  11489. "segments": {
  11490. "type": "string",
  11491. "value": "m0,0 l10,4 l-10,4"
  11492. },
  11493. "style": {
  11494. "type": "map<string,string>",
  11495. "value": {
  11496. "stroke": "#000000",
  11497. "fill": "#000000",
  11498. "fill-opacity": 0,
  11499. "stroke-width": 1,
  11500. "opacity": 0
  11501. }
  11502. },
  11503. "mapper": {
  11504. "type": "code",
  11505. "value": ""
  11506. },
  11507. "parser": {
  11508. "type": "code",
  11509. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11510. },
  11511. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11512. "position": {
  11513. "type": "list<double>",
  11514. "value": [
  11515. "0;130.45154605111554,99.98816778082589%",
  11516. "0;-79.40506711966526,1.5382795043204083%"
  11517. ]
  11518. },
  11519. "orientation": {
  11520. "type": "double",
  11521. "value": "0;0.8814039965821435"
  11522. },
  11523. "scale": {
  11524. "type": "list<double>",
  11525. "value": [
  11526. 1,
  11527. 1
  11528. ]
  11529. },
  11530. "arrow": "arrowTail",
  11531. "arrowType": "arrow-empty",
  11532. "$linkDecoratorInfo": {
  11533. "type": "map<string,double>",
  11534. "value": {
  11535. "xratio": 1,
  11536. "yoffset": -4
  11537. }
  11538. }
  11539. },
  11540. "282": {
  11541. "segments": {
  11542. "type": "string",
  11543. "value": "m0,0 l10,5 l-10,5 z"
  11544. },
  11545. "style": {
  11546. "type": "map<string,string>",
  11547. "value": {
  11548. "stroke": "#000000",
  11549. "fill": "#ffffff",
  11550. "opacity": 0,
  11551. "stroke-width": 1
  11552. }
  11553. },
  11554. "mapper": {
  11555. "type": "code",
  11556. "value": ""
  11557. },
  11558. "parser": {
  11559. "type": "code",
  11560. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11561. },
  11562. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11563. "position": {
  11564. "type": "list<double>",
  11565. "value": [
  11566. "0;130.4669288461588,99.98816778082589%",
  11567. "0;-80.40494879747354,1.5382795043204083%"
  11568. ]
  11569. },
  11570. "orientation": {
  11571. "type": "double",
  11572. "value": "0;0.8814039965821435"
  11573. },
  11574. "scale": {
  11575. "type": "list<double>",
  11576. "value": [
  11577. 1,
  11578. 1
  11579. ]
  11580. },
  11581. "arrow": "arrowTail",
  11582. "arrowType": "triangle-white",
  11583. "$linkDecoratorInfo": {
  11584. "type": "map<string,double>",
  11585. "value": {
  11586. "xratio": 1,
  11587. "yoffset": -5
  11588. }
  11589. }
  11590. },
  11591. "283": {
  11592. "segments": {
  11593. "type": "string",
  11594. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11595. },
  11596. "style": {
  11597. "type": "map<string,string>",
  11598. "value": {
  11599. "stroke": "#000000",
  11600. "fill": "#ffffff",
  11601. "opacity": 0,
  11602. "stroke-width": 1
  11603. }
  11604. },
  11605. "mapper": {
  11606. "type": "code",
  11607. "value": ""
  11608. },
  11609. "parser": {
  11610. "type": "code",
  11611. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11612. },
  11613. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11614. "position": {
  11615. "type": "list<double>",
  11616. "value": [
  11617. "0;86.39093700112028,0%",
  11618. "0;125.59447377818589,0%"
  11619. ]
  11620. },
  11621. "orientation": {
  11622. "type": "double",
  11623. "value": "0;180"
  11624. },
  11625. "scale": {
  11626. "type": "list<double>",
  11627. "value": [
  11628. 1,
  11629. 1
  11630. ]
  11631. },
  11632. "arrow": "arrowHead",
  11633. "arrowType": "diamond-white",
  11634. "$linkDecoratorInfo": {
  11635. "type": "map<string,double>",
  11636. "value": {
  11637. "xratio": -1,
  11638. "yoffset": -5
  11639. }
  11640. }
  11641. },
  11642. "284": {
  11643. "segments": {
  11644. "type": "string",
  11645. "value": "m0,0 l-10,5 l10,5 z"
  11646. },
  11647. "style": {
  11648. "type": "map<string,string>",
  11649. "value": {
  11650. "stroke": "#000000",
  11651. "fill": "#ffffff",
  11652. "opacity": 0,
  11653. "stroke-width": 1
  11654. }
  11655. },
  11656. "mapper": {
  11657. "type": "code",
  11658. "value": ""
  11659. },
  11660. "parser": {
  11661. "type": "code",
  11662. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11663. },
  11664. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11665. "position": {
  11666. "type": "list<double>",
  11667. "value": [
  11668. "0;86.39093700112028,0%",
  11669. "0;125.59447377818589,0%"
  11670. ]
  11671. },
  11672. "orientation": {
  11673. "type": "double",
  11674. "value": "0;180"
  11675. },
  11676. "scale": {
  11677. "type": "list<double>",
  11678. "value": [
  11679. 1,
  11680. 1
  11681. ]
  11682. },
  11683. "arrow": "arrowHead",
  11684. "arrowType": "triangle-white",
  11685. "$linkDecoratorInfo": {
  11686. "type": "map<string,double>",
  11687. "value": {
  11688. "xratio": -1,
  11689. "yoffset": -5
  11690. }
  11691. }
  11692. },
  11693. "285": {
  11694. "segments": {
  11695. "type": "string",
  11696. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11697. },
  11698. "style": {
  11699. "type": "map<string,string>",
  11700. "value": {
  11701. "stroke": "#000000",
  11702. "fill": "#000000",
  11703. "opacity": 0,
  11704. "stroke-width": 1
  11705. }
  11706. },
  11707. "mapper": {
  11708. "type": "code",
  11709. "value": ""
  11710. },
  11711. "parser": {
  11712. "type": "code",
  11713. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11714. },
  11715. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11716. "position": {
  11717. "type": "list<double>",
  11718. "value": [
  11719. "0;86.39093700112028,0%",
  11720. "0;125.59447377818589,0%"
  11721. ]
  11722. },
  11723. "orientation": {
  11724. "type": "double",
  11725. "value": "0;180"
  11726. },
  11727. "scale": {
  11728. "type": "list<double>",
  11729. "value": [
  11730. 1,
  11731. 1
  11732. ]
  11733. },
  11734. "arrow": "arrowHead",
  11735. "arrowType": "diamond-black",
  11736. "$linkDecoratorInfo": {
  11737. "type": "map<string,double>",
  11738. "value": {
  11739. "xratio": -1,
  11740. "yoffset": -5
  11741. }
  11742. }
  11743. },
  11744. "286": {
  11745. "r": {
  11746. "type": "double",
  11747. "value": 10
  11748. },
  11749. "style": {
  11750. "type": "map<string,string>",
  11751. "value": {
  11752. "stroke": "#000000",
  11753. "fill": "#000000",
  11754. "opacity": 0,
  11755. "stroke-width": 1
  11756. }
  11757. },
  11758. "mapper": {
  11759. "type": "code",
  11760. "value": ""
  11761. },
  11762. "parser": {
  11763. "type": "code",
  11764. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11765. },
  11766. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11767. "position": {
  11768. "type": "list<double>",
  11769. "value": [
  11770. "0;86.39093700112028,0%",
  11771. "0;130.5944737781859,0%"
  11772. ]
  11773. },
  11774. "orientation": {
  11775. "type": "double",
  11776. "value": "0;180"
  11777. },
  11778. "scale": {
  11779. "type": "list<double>",
  11780. "value": [
  11781. 1,
  11782. 1
  11783. ]
  11784. },
  11785. "arrow": "arrowHead",
  11786. "arrowType": "circle-black-large",
  11787. "$linkDecoratorInfo": {
  11788. "type": "map<string,double>",
  11789. "value": {
  11790. "xratio": -1,
  11791. "yoffset": -10
  11792. }
  11793. }
  11794. },
  11795. "287": {
  11796. "segments": {
  11797. "type": "string",
  11798. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  11799. },
  11800. "style": {
  11801. "type": "map<string,string>",
  11802. "value": {
  11803. "stroke": "#000000",
  11804. "fill": "#000000",
  11805. "opacity": 0,
  11806. "stroke-width": 1
  11807. }
  11808. },
  11809. "mapper": {
  11810. "type": "code",
  11811. "value": ""
  11812. },
  11813. "parser": {
  11814. "type": "code",
  11815. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11816. },
  11817. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11818. "position": {
  11819. "type": "list<double>",
  11820. "value": [
  11821. "0;86.39093700112028,0%",
  11822. "0;128.5944737781859,0%"
  11823. ]
  11824. },
  11825. "orientation": {
  11826. "type": "double",
  11827. "value": "0;180"
  11828. },
  11829. "scale": {
  11830. "type": "list<double>",
  11831. "value": [
  11832. 1,
  11833. 1
  11834. ]
  11835. },
  11836. "arrow": "arrowHead",
  11837. "arrowType": "arrow-black-large",
  11838. "$linkDecoratorInfo": {
  11839. "type": "map<string,double>",
  11840. "value": {
  11841. "xratio": -1,
  11842. "yoffset": -8
  11843. }
  11844. }
  11845. },
  11846. "288": {
  11847. "segments": {
  11848. "type": "string",
  11849. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  11850. },
  11851. "style": {
  11852. "type": "map<string,string>",
  11853. "value": {
  11854. "stroke": "#000000",
  11855. "fill": "#000000",
  11856. "opacity": 0,
  11857. "stroke-width": 1
  11858. }
  11859. },
  11860. "mapper": {
  11861. "type": "code",
  11862. "value": ""
  11863. },
  11864. "parser": {
  11865. "type": "code",
  11866. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11867. },
  11868. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11869. "position": {
  11870. "type": "list<double>",
  11871. "value": [
  11872. "0;86.39093700112028,0%",
  11873. "0;124.59447377818589,0%"
  11874. ]
  11875. },
  11876. "orientation": {
  11877. "type": "double",
  11878. "value": "0;180"
  11879. },
  11880. "scale": {
  11881. "type": "list<double>",
  11882. "value": [
  11883. 1,
  11884. 1
  11885. ]
  11886. },
  11887. "arrow": "arrowHead",
  11888. "arrowType": "arrow-black",
  11889. "$linkDecoratorInfo": {
  11890. "type": "map<string,double>",
  11891. "value": {
  11892. "xratio": -1,
  11893. "yoffset": -4
  11894. }
  11895. }
  11896. },
  11897. "289": {
  11898. "segments": {
  11899. "type": "string",
  11900. "value": "m0,0 l-20,10 l20,10 z"
  11901. },
  11902. "style": {
  11903. "type": "map<string,string>",
  11904. "value": {
  11905. "stroke": "#000000",
  11906. "fill": "#ffffff",
  11907. "opacity": 0,
  11908. "stroke-width": 1
  11909. }
  11910. },
  11911. "mapper": {
  11912. "type": "code",
  11913. "value": ""
  11914. },
  11915. "parser": {
  11916. "type": "code",
  11917. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11918. },
  11919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11920. "position": {
  11921. "type": "list<double>",
  11922. "value": [
  11923. "0;86.39093700112028,0%",
  11924. "0;130.5944737781859,0%"
  11925. ]
  11926. },
  11927. "orientation": {
  11928. "type": "double",
  11929. "value": "0;180"
  11930. },
  11931. "scale": {
  11932. "type": "list<double>",
  11933. "value": [
  11934. 1,
  11935. 1
  11936. ]
  11937. },
  11938. "arrow": "arrowHead",
  11939. "arrowType": "triangle-white-large",
  11940. "$linkDecoratorInfo": {
  11941. "type": "map<string,double>",
  11942. "value": {
  11943. "xratio": -1,
  11944. "yoffset": -10
  11945. }
  11946. }
  11947. },
  11948. "290": {
  11949. "segments": {
  11950. "type": "string",
  11951. "value": "m0,0 l-20,10 l20,10 z"
  11952. },
  11953. "style": {
  11954. "type": "map<string,string>",
  11955. "value": {
  11956. "stroke": "#000000",
  11957. "fill": "#000000",
  11958. "opacity": 0,
  11959. "stroke-width": 1
  11960. }
  11961. },
  11962. "mapper": {
  11963. "type": "code",
  11964. "value": ""
  11965. },
  11966. "parser": {
  11967. "type": "code",
  11968. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  11969. },
  11970. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11971. "position": {
  11972. "type": "list<double>",
  11973. "value": [
  11974. "0;86.39093700112028,0%",
  11975. "0;130.5944737781859,0%"
  11976. ]
  11977. },
  11978. "orientation": {
  11979. "type": "double",
  11980. "value": "0;180"
  11981. },
  11982. "scale": {
  11983. "type": "list<double>",
  11984. "value": [
  11985. 1,
  11986. 1
  11987. ]
  11988. },
  11989. "arrow": "arrowHead",
  11990. "arrowType": "triangle-black-large",
  11991. "$linkDecoratorInfo": {
  11992. "type": "map<string,double>",
  11993. "value": {
  11994. "xratio": -1,
  11995. "yoffset": -10
  11996. }
  11997. }
  11998. },
  11999. "291": {
  12000. "r": {
  12001. "type": "double",
  12002. "value": 5
  12003. },
  12004. "style": {
  12005. "type": "map<string,string>",
  12006. "value": {
  12007. "stroke": "#000000",
  12008. "fill": "#000000",
  12009. "opacity": 0,
  12010. "stroke-width": 1
  12011. }
  12012. },
  12013. "mapper": {
  12014. "type": "code",
  12015. "value": ""
  12016. },
  12017. "parser": {
  12018. "type": "code",
  12019. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12020. },
  12021. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12022. "position": {
  12023. "type": "list<double>",
  12024. "value": [
  12025. "0;86.39093700112028,0%",
  12026. "0;125.59447377818589,0%"
  12027. ]
  12028. },
  12029. "orientation": {
  12030. "type": "double",
  12031. "value": "0;180"
  12032. },
  12033. "scale": {
  12034. "type": "list<double>",
  12035. "value": [
  12036. 1,
  12037. 1
  12038. ]
  12039. },
  12040. "arrow": "arrowHead",
  12041. "arrowType": "circle-black",
  12042. "$linkDecoratorInfo": {
  12043. "type": "map<string,double>",
  12044. "value": {
  12045. "xratio": -1,
  12046. "yoffset": -5
  12047. }
  12048. }
  12049. },
  12050. "292": {
  12051. "r": {
  12052. "type": "double",
  12053. "value": 5
  12054. },
  12055. "style": {
  12056. "type": "map<string,string>",
  12057. "value": {
  12058. "stroke": "#000000",
  12059. "fill": "#ffffff",
  12060. "opacity": 0,
  12061. "stroke-width": 1
  12062. }
  12063. },
  12064. "mapper": {
  12065. "type": "code",
  12066. "value": ""
  12067. },
  12068. "parser": {
  12069. "type": "code",
  12070. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12071. },
  12072. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12073. "position": {
  12074. "type": "list<double>",
  12075. "value": [
  12076. "0;86.39093700112028,0%",
  12077. "0;125.59447377818589,0%"
  12078. ]
  12079. },
  12080. "orientation": {
  12081. "type": "double",
  12082. "value": "0;180"
  12083. },
  12084. "scale": {
  12085. "type": "list<double>",
  12086. "value": [
  12087. 1,
  12088. 1
  12089. ]
  12090. },
  12091. "arrow": "arrowHead",
  12092. "arrowType": "circle-white",
  12093. "$linkDecoratorInfo": {
  12094. "type": "map<string,double>",
  12095. "value": {
  12096. "xratio": -1,
  12097. "yoffset": -5
  12098. }
  12099. }
  12100. },
  12101. "293": {
  12102. "r": {
  12103. "type": "double",
  12104. "value": 10
  12105. },
  12106. "style": {
  12107. "type": "map<string,string>",
  12108. "value": {
  12109. "stroke": "#000000",
  12110. "fill": "#ffffff",
  12111. "opacity": 0,
  12112. "stroke-width": 1
  12113. }
  12114. },
  12115. "mapper": {
  12116. "type": "code",
  12117. "value": ""
  12118. },
  12119. "parser": {
  12120. "type": "code",
  12121. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12122. },
  12123. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12124. "position": {
  12125. "type": "list<double>",
  12126. "value": [
  12127. "0;86.39093700112028,0%",
  12128. "0;130.5944737781859,0%"
  12129. ]
  12130. },
  12131. "orientation": {
  12132. "type": "double",
  12133. "value": "0;180"
  12134. },
  12135. "scale": {
  12136. "type": "list<double>",
  12137. "value": [
  12138. 1,
  12139. 1
  12140. ]
  12141. },
  12142. "arrow": "arrowHead",
  12143. "arrowType": "circle-white-large",
  12144. "$linkDecoratorInfo": {
  12145. "type": "map<string,double>",
  12146. "value": {
  12147. "xratio": -1,
  12148. "yoffset": -10
  12149. }
  12150. }
  12151. },
  12152. "294": {
  12153. "segments": {
  12154. "type": "string",
  12155. "value": "m0,0 l-20,8 l20,8"
  12156. },
  12157. "style": {
  12158. "type": "map<string,string>",
  12159. "value": {
  12160. "stroke": "#000000",
  12161. "fill": "#000000",
  12162. "fill-opacity": 0,
  12163. "stroke-width": 1,
  12164. "opacity": 0
  12165. }
  12166. },
  12167. "mapper": {
  12168. "type": "code",
  12169. "value": ""
  12170. },
  12171. "parser": {
  12172. "type": "code",
  12173. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12174. },
  12175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12176. "position": {
  12177. "type": "list<double>",
  12178. "value": [
  12179. "0;86.39093700112028,0%",
  12180. "0;128.5944737781859,0%"
  12181. ]
  12182. },
  12183. "orientation": {
  12184. "type": "double",
  12185. "value": "0;180"
  12186. },
  12187. "scale": {
  12188. "type": "list<double>",
  12189. "value": [
  12190. 1,
  12191. 1
  12192. ]
  12193. },
  12194. "arrow": "arrowHead",
  12195. "arrowType": "arrow-empty-large",
  12196. "$linkDecoratorInfo": {
  12197. "type": "map<string,double>",
  12198. "value": {
  12199. "xratio": -1,
  12200. "yoffset": -8
  12201. }
  12202. }
  12203. },
  12204. "295": {
  12205. "segments": {
  12206. "type": "string",
  12207. "value": "m0,0 l-10,4 l10,4"
  12208. },
  12209. "style": {
  12210. "type": "map<string,string>",
  12211. "value": {
  12212. "stroke": "#000000",
  12213. "fill": "#000000",
  12214. "fill-opacity": 0,
  12215. "stroke-width": 1,
  12216. "opacity": 0
  12217. }
  12218. },
  12219. "mapper": {
  12220. "type": "code",
  12221. "value": ""
  12222. },
  12223. "parser": {
  12224. "type": "code",
  12225. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12226. },
  12227. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12228. "position": {
  12229. "type": "list<double>",
  12230. "value": [
  12231. "0;86.39093700112028,0%",
  12232. "0;124.59447377818589,0%"
  12233. ]
  12234. },
  12235. "orientation": {
  12236. "type": "double",
  12237. "value": "0;180"
  12238. },
  12239. "scale": {
  12240. "type": "list<double>",
  12241. "value": [
  12242. 1,
  12243. 1
  12244. ]
  12245. },
  12246. "arrow": "arrowHead",
  12247. "arrowType": "arrow-empty",
  12248. "$linkDecoratorInfo": {
  12249. "type": "map<string,double>",
  12250. "value": {
  12251. "xratio": -1,
  12252. "yoffset": -4
  12253. }
  12254. }
  12255. },
  12256. "296": {
  12257. "segments": {
  12258. "type": "string",
  12259. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12260. },
  12261. "style": {
  12262. "type": "map<string,string>",
  12263. "value": {
  12264. "stroke": "#000000",
  12265. "fill": "#000000",
  12266. "opacity": 0,
  12267. "stroke-width": 1
  12268. }
  12269. },
  12270. "mapper": {
  12271. "type": "code",
  12272. "value": ""
  12273. },
  12274. "parser": {
  12275. "type": "code",
  12276. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12277. },
  12278. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12279. "position": {
  12280. "type": "list<double>",
  12281. "value": [
  12282. "0;86.39093700112028,0%",
  12283. "0;130.5944737781859,0%"
  12284. ]
  12285. },
  12286. "orientation": {
  12287. "type": "double",
  12288. "value": "0;180"
  12289. },
  12290. "scale": {
  12291. "type": "list<double>",
  12292. "value": [
  12293. 1,
  12294. 1
  12295. ]
  12296. },
  12297. "arrow": "arrowHead",
  12298. "arrowType": "diamond-black-large",
  12299. "$linkDecoratorInfo": {
  12300. "type": "map<string,double>",
  12301. "value": {
  12302. "xratio": -1,
  12303. "yoffset": -10
  12304. }
  12305. }
  12306. },
  12307. "297": {
  12308. "segments": {
  12309. "type": "string",
  12310. "value": "m0,0 l-10,4 l10,4 z"
  12311. },
  12312. "style": {
  12313. "type": "map<string,string>",
  12314. "value": {
  12315. "stroke": "#000000",
  12316. "fill": "#000000",
  12317. "opacity": 0,
  12318. "stroke-width": 1
  12319. }
  12320. },
  12321. "mapper": {
  12322. "type": "code",
  12323. "value": ""
  12324. },
  12325. "parser": {
  12326. "type": "code",
  12327. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12328. },
  12329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12330. "position": {
  12331. "type": "list<double>",
  12332. "value": [
  12333. "0;86.39093700112028,0%",
  12334. "0;124.59447377818589,0%"
  12335. ]
  12336. },
  12337. "orientation": {
  12338. "type": "double",
  12339. "value": "0;180"
  12340. },
  12341. "scale": {
  12342. "type": "list<double>",
  12343. "value": [
  12344. 1,
  12345. 1
  12346. ]
  12347. },
  12348. "arrow": "arrowHead",
  12349. "arrowType": "triangle-black",
  12350. "$linkDecoratorInfo": {
  12351. "type": "map<string,double>",
  12352. "value": {
  12353. "xratio": -1,
  12354. "yoffset": -4
  12355. }
  12356. }
  12357. },
  12358. "298": {
  12359. "segments": {
  12360. "type": "string",
  12361. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12362. },
  12363. "style": {
  12364. "type": "map<string,string>",
  12365. "value": {
  12366. "stroke": "#000000",
  12367. "fill": "#ffffff",
  12368. "opacity": 0,
  12369. "stroke-width": 1
  12370. }
  12371. },
  12372. "mapper": {
  12373. "type": "code",
  12374. "value": ""
  12375. },
  12376. "parser": {
  12377. "type": "code",
  12378. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12379. },
  12380. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12381. "position": {
  12382. "type": "list<double>",
  12383. "value": [
  12384. "0;86.39093700112028,0%",
  12385. "0;130.5944737781859,0%"
  12386. ]
  12387. },
  12388. "orientation": {
  12389. "type": "double",
  12390. "value": "0;180"
  12391. },
  12392. "scale": {
  12393. "type": "list<double>",
  12394. "value": [
  12395. 1,
  12396. 1
  12397. ]
  12398. },
  12399. "arrow": "arrowHead",
  12400. "arrowType": "diamond-white-large",
  12401. "$linkDecoratorInfo": {
  12402. "type": "map<string,double>",
  12403. "value": {
  12404. "xratio": -1,
  12405. "yoffset": -10
  12406. }
  12407. }
  12408. }
  12409. },
  12410. "edges": []
  12411. }
  12412. },
  12413. "$asuri": {
  12414. "type": "string",
  12415. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/112.instance"
  12416. },
  12417. "$segments": {
  12418. "type": "map<string,list<string>>",
  12419. "value": {
  12420. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon/109.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/112.instance": "M677,508L590,508L590.6090629988797,387.4055262218141",
  12421. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/112.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/107.instance": "M590.6090629988797,387.4055262218141L591,310L720.9990778698225,311.9999858133819"
  12422. }
  12423. },
  12424. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  12425. },
  12426. "113": {
  12427. "typename": {
  12428. "type": "string",
  12429. "value": "EndSuccessIcon"
  12430. },
  12431. "position": {
  12432. "type": "list<double>",
  12433. "value": [
  12434. 769,
  12435. 532
  12436. ]
  12437. },
  12438. "orientation": {
  12439. "type": "double",
  12440. "value": 0
  12441. },
  12442. "scale": {
  12443. "type": "list<double>",
  12444. "value": [
  12445. 1,
  12446. 1
  12447. ]
  12448. },
  12449. "mapper": {
  12450. "type": "code",
  12451. "value": "({position:getAttr(\"position\")})"
  12452. },
  12453. "parser": {
  12454. "type": "code",
  12455. "value": "({position:getAttr(\"position\")})"
  12456. },
  12457. "$contents": {
  12458. "type": "map<string,*>",
  12459. "value": {
  12460. "nodes": {
  12461. "23": {
  12462. "r": {
  12463. "type": "double",
  12464. "value": 10
  12465. },
  12466. "style": {
  12467. "type": "map<string,string>",
  12468. "value": {
  12469. "stroke": "#008000",
  12470. "stroke-dasharray": "",
  12471. "fill": "white",
  12472. "fill-opacity": 1,
  12473. "font-size": "20px",
  12474. "stroke-width": 2,
  12475. "arrow-start": "none",
  12476. "arrow-end": "none"
  12477. }
  12478. },
  12479. "mapper": {
  12480. "type": "code",
  12481. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  12482. },
  12483. "parser": {
  12484. "type": "code",
  12485. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12486. },
  12487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12488. "position": {
  12489. "type": "list<double>",
  12490. "value": [
  12491. 2,
  12492. 2
  12493. ]
  12494. },
  12495. "orientation": {
  12496. "type": "double",
  12497. "value": 0
  12498. },
  12499. "scale": {
  12500. "type": "list<double>",
  12501. "value": [
  12502. 1,
  12503. 1
  12504. ]
  12505. }
  12506. },
  12507. "26": {
  12508. "r": {
  12509. "type": "double",
  12510. "value": 5
  12511. },
  12512. "style": {
  12513. "type": "map<string,string>",
  12514. "value": {
  12515. "stroke": "#000000",
  12516. "stroke-dasharray": "",
  12517. "fill": "#008000",
  12518. "fill-opacity": 1,
  12519. "font-size": "20px",
  12520. "stroke-width": 0,
  12521. "arrow-start": "none",
  12522. "arrow-end": "none",
  12523. "": ""
  12524. }
  12525. },
  12526. "mapper": {
  12527. "type": "code",
  12528. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  12529. },
  12530. "parser": {
  12531. "type": "code",
  12532. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12533. },
  12534. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12535. "position": {
  12536. "type": "list<double>",
  12537. "value": [
  12538. 7,
  12539. 7
  12540. ]
  12541. },
  12542. "orientation": {
  12543. "type": "double",
  12544. "value": 0
  12545. },
  12546. "scale": {
  12547. "type": "list<double>",
  12548. "value": [
  12549. 1,
  12550. 1
  12551. ]
  12552. }
  12553. },
  12554. "27": {
  12555. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  12556. "position": {
  12557. "type": "list<double>",
  12558. "value": [
  12559. 7.492540538484263,
  12560. 6.5
  12561. ]
  12562. },
  12563. "orientation": {
  12564. "type": "double",
  12565. "value": 0
  12566. },
  12567. "scale": {
  12568. "type": "list<double>",
  12569. "value": [
  12570. 1,
  12571. 1
  12572. ]
  12573. },
  12574. "link-style": {
  12575. "type": "map<string,string>",
  12576. "value": {
  12577. "stroke": "#00ffff",
  12578. "stroke-dasharray": "",
  12579. "stroke-opacity": 0.1,
  12580. "stroke-width": 1
  12581. }
  12582. }
  12583. }
  12584. },
  12585. "edges": [
  12586. {
  12587. "src": "23",
  12588. "dest": "27"
  12589. },
  12590. {
  12591. "src": "27",
  12592. "dest": "26"
  12593. }
  12594. ]
  12595. }
  12596. },
  12597. "$asuri": {
  12598. "type": "string",
  12599. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess/113.instance"
  12600. },
  12601. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon"
  12602. },
  12603. "114": {
  12604. "link-style": {
  12605. "type": "map<string,string>",
  12606. "value": {
  12607. "stroke": "#800000",
  12608. "stroke-dasharray": "",
  12609. "stroke-opacity": 1,
  12610. "stroke-width": 2
  12611. }
  12612. },
  12613. "arrowHead": {
  12614. "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)",
  12615. "value": "custom"
  12616. },
  12617. "arrowTail": {
  12618. "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)",
  12619. "value": "arrow-black"
  12620. },
  12621. "typename": {
  12622. "type": "string",
  12623. "value": "failLink"
  12624. },
  12625. "position": {
  12626. "type": "list<double>",
  12627. "value": [
  12628. 778.5051723317889,
  12629. 519.6499976218787
  12630. ]
  12631. },
  12632. "orientation": {
  12633. "type": "double",
  12634. "value": 0
  12635. },
  12636. "scale": {
  12637. "type": "list<double>",
  12638. "value": [
  12639. 1,
  12640. 1
  12641. ]
  12642. },
  12643. "mapper": {
  12644. "type": "code",
  12645. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  12646. },
  12647. "parser": {
  12648. "type": "code",
  12649. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12650. },
  12651. "$contents": {
  12652. "type": "map<string,*>",
  12653. "value": {
  12654. "nodes": {
  12655. "267": {
  12656. "segments": {
  12657. "type": "string",
  12658. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  12659. },
  12660. "style": {
  12661. "type": "map<string,string>",
  12662. "value": {
  12663. "stroke": "#000000",
  12664. "fill": "#000000",
  12665. "opacity": 0,
  12666. "stroke-width": 1
  12667. }
  12668. },
  12669. "mapper": {
  12670. "type": "code",
  12671. "value": ""
  12672. },
  12673. "parser": {
  12674. "type": "code",
  12675. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12676. },
  12677. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12678. "position": {
  12679. "type": "list<double>",
  12680. "value": [
  12681. "0;4.492451665625481,3.446227583977932%",
  12682. "0;14.212153274762159,99.94059993535875%"
  12683. ]
  12684. },
  12685. "orientation": {
  12686. "type": "double",
  12687. "value": "0;88.025065989118"
  12688. },
  12689. "scale": {
  12690. "type": "list<double>",
  12691. "value": [
  12692. 1,
  12693. 1
  12694. ]
  12695. },
  12696. "arrow": "arrowTail",
  12697. "arrowType": "arrow-black",
  12698. "$linkDecoratorInfo": {
  12699. "type": "map<string,double>",
  12700. "value": {
  12701. "xratio": 1,
  12702. "yoffset": -4
  12703. }
  12704. }
  12705. },
  12706. "268": {
  12707. "segments": {
  12708. "type": "string",
  12709. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12710. },
  12711. "style": {
  12712. "type": "map<string,string>",
  12713. "value": {
  12714. "stroke": "#000000",
  12715. "fill": "#000000",
  12716. "opacity": 0,
  12717. "stroke-width": 1
  12718. }
  12719. },
  12720. "mapper": {
  12721. "type": "code",
  12722. "value": ""
  12723. },
  12724. "parser": {
  12725. "type": "code",
  12726. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12727. },
  12728. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12729. "position": {
  12730. "type": "list<double>",
  12731. "value": [
  12732. "0;10.488887661746958,3.446227583977932%",
  12733. "0;14.005379619723499,99.94059993535875%"
  12734. ]
  12735. },
  12736. "orientation": {
  12737. "type": "double",
  12738. "value": "0;88.025065989118"
  12739. },
  12740. "scale": {
  12741. "type": "list<double>",
  12742. "value": [
  12743. 1,
  12744. 1
  12745. ]
  12746. },
  12747. "arrow": "arrowTail",
  12748. "arrowType": "diamond-black-large",
  12749. "$linkDecoratorInfo": {
  12750. "type": "map<string,double>",
  12751. "value": {
  12752. "xratio": 1,
  12753. "yoffset": -10
  12754. }
  12755. }
  12756. },
  12757. "269": {
  12758. "r": {
  12759. "type": "double",
  12760. "value": 10
  12761. },
  12762. "style": {
  12763. "type": "map<string,string>",
  12764. "value": {
  12765. "stroke": "#000000",
  12766. "fill": "#000000",
  12767. "opacity": 0,
  12768. "stroke-width": 1
  12769. }
  12770. },
  12771. "mapper": {
  12772. "type": "code",
  12773. "value": ""
  12774. },
  12775. "parser": {
  12776. "type": "code",
  12777. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12778. },
  12779. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12780. "position": {
  12781. "type": "list<double>",
  12782. "value": [
  12783. "0;10.488887661746958,3.446227583977932%",
  12784. "0;14.005379619723499,99.94059993535875%"
  12785. ]
  12786. },
  12787. "orientation": {
  12788. "type": "double",
  12789. "value": "0;88.025065989118"
  12790. },
  12791. "scale": {
  12792. "type": "list<double>",
  12793. "value": [
  12794. 1,
  12795. 1
  12796. ]
  12797. },
  12798. "arrow": "arrowTail",
  12799. "arrowType": "circle-black-large",
  12800. "$linkDecoratorInfo": {
  12801. "type": "map<string,double>",
  12802. "value": {
  12803. "xratio": 1,
  12804. "yoffset": -10
  12805. }
  12806. }
  12807. },
  12808. "270": {
  12809. "r": {
  12810. "type": "double",
  12811. "value": 10
  12812. },
  12813. "style": {
  12814. "type": "map<string,string>",
  12815. "value": {
  12816. "stroke": "#000000",
  12817. "fill": "#ffffff",
  12818. "opacity": 0,
  12819. "stroke-width": 1
  12820. }
  12821. },
  12822. "mapper": {
  12823. "type": "code",
  12824. "value": ""
  12825. },
  12826. "parser": {
  12827. "type": "code",
  12828. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12829. },
  12830. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12831. "position": {
  12832. "type": "list<double>",
  12833. "value": [
  12834. "0;10.488887661746958,3.446227583977932%",
  12835. "0;14.005379619723499,99.94059993535875%"
  12836. ]
  12837. },
  12838. "orientation": {
  12839. "type": "double",
  12840. "value": "0;88.025065989118"
  12841. },
  12842. "scale": {
  12843. "type": "list<double>",
  12844. "value": [
  12845. 1,
  12846. 1
  12847. ]
  12848. },
  12849. "arrow": "arrowTail",
  12850. "arrowType": "circle-white-large",
  12851. "$linkDecoratorInfo": {
  12852. "type": "map<string,double>",
  12853. "value": {
  12854. "xratio": 1,
  12855. "yoffset": -10
  12856. }
  12857. }
  12858. },
  12859. "271": {
  12860. "r": {
  12861. "type": "double",
  12862. "value": 5
  12863. },
  12864. "style": {
  12865. "type": "map<string,string>",
  12866. "value": {
  12867. "stroke": "#000000",
  12868. "fill": "#000000",
  12869. "opacity": 0,
  12870. "stroke-width": 1
  12871. }
  12872. },
  12873. "mapper": {
  12874. "type": "code",
  12875. "value": ""
  12876. },
  12877. "parser": {
  12878. "type": "code",
  12879. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12880. },
  12881. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  12882. "position": {
  12883. "type": "list<double>",
  12884. "value": [
  12885. "0;5.491857664979079,3.446227583977932%",
  12886. "0;14.177690998922458,99.94059993535875%"
  12887. ]
  12888. },
  12889. "orientation": {
  12890. "type": "double",
  12891. "value": "0;88.025065989118"
  12892. },
  12893. "scale": {
  12894. "type": "list<double>",
  12895. "value": [
  12896. 1,
  12897. 1
  12898. ]
  12899. },
  12900. "arrow": "arrowTail",
  12901. "arrowType": "circle-black",
  12902. "$linkDecoratorInfo": {
  12903. "type": "map<string,double>",
  12904. "value": {
  12905. "xratio": 1,
  12906. "yoffset": -5
  12907. }
  12908. }
  12909. },
  12910. "272": {
  12911. "segments": {
  12912. "type": "string",
  12913. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  12914. },
  12915. "style": {
  12916. "type": "map<string,string>",
  12917. "value": {
  12918. "stroke": "#000000",
  12919. "fill": "#000000",
  12920. "opacity": 0,
  12921. "stroke-width": 1
  12922. }
  12923. },
  12924. "mapper": {
  12925. "type": "code",
  12926. "value": ""
  12927. },
  12928. "parser": {
  12929. "type": "code",
  12930. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12931. },
  12932. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12933. "position": {
  12934. "type": "list<double>",
  12935. "value": [
  12936. "0;5.491857664979079,3.446227583977932%",
  12937. "0;14.177690998922458,99.94059993535875%"
  12938. ]
  12939. },
  12940. "orientation": {
  12941. "type": "double",
  12942. "value": "0;88.025065989118"
  12943. },
  12944. "scale": {
  12945. "type": "list<double>",
  12946. "value": [
  12947. 1,
  12948. 1
  12949. ]
  12950. },
  12951. "arrow": "arrowTail",
  12952. "arrowType": "diamond-black",
  12953. "$linkDecoratorInfo": {
  12954. "type": "map<string,double>",
  12955. "value": {
  12956. "xratio": 1,
  12957. "yoffset": -5
  12958. }
  12959. }
  12960. },
  12961. "273": {
  12962. "segments": {
  12963. "type": "string",
  12964. "value": "m0,0 l20,10 l-20,10 z"
  12965. },
  12966. "style": {
  12967. "type": "map<string,string>",
  12968. "value": {
  12969. "stroke": "#000000",
  12970. "fill": "#000000",
  12971. "opacity": 0,
  12972. "stroke-width": 1
  12973. }
  12974. },
  12975. "mapper": {
  12976. "type": "code",
  12977. "value": ""
  12978. },
  12979. "parser": {
  12980. "type": "code",
  12981. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  12982. },
  12983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12984. "position": {
  12985. "type": "list<double>",
  12986. "value": [
  12987. "0;10.488887661746958,3.446227583977932%",
  12988. "0;14.005379619723499,99.94059993535875%"
  12989. ]
  12990. },
  12991. "orientation": {
  12992. "type": "double",
  12993. "value": "0;88.025065989118"
  12994. },
  12995. "scale": {
  12996. "type": "list<double>",
  12997. "value": [
  12998. 1,
  12999. 1
  13000. ]
  13001. },
  13002. "arrow": "arrowTail",
  13003. "arrowType": "triangle-black-large",
  13004. "$linkDecoratorInfo": {
  13005. "type": "map<string,double>",
  13006. "value": {
  13007. "xratio": 1,
  13008. "yoffset": -10
  13009. }
  13010. }
  13011. },
  13012. "274": {
  13013. "segments": {
  13014. "type": "string",
  13015. "value": "m0,0 l10,4 l-10,4 z"
  13016. },
  13017. "style": {
  13018. "type": "map<string,string>",
  13019. "value": {
  13020. "stroke": "#000000",
  13021. "fill": "#000000",
  13022. "opacity": 0,
  13023. "stroke-width": 1
  13024. }
  13025. },
  13026. "mapper": {
  13027. "type": "code",
  13028. "value": ""
  13029. },
  13030. "parser": {
  13031. "type": "code",
  13032. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13033. },
  13034. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13035. "position": {
  13036. "type": "list<double>",
  13037. "value": [
  13038. "0;4.492451665625481,3.446227583977932%",
  13039. "0;14.212153274762159,99.94059993535875%"
  13040. ]
  13041. },
  13042. "orientation": {
  13043. "type": "double",
  13044. "value": "0;88.025065989118"
  13045. },
  13046. "scale": {
  13047. "type": "list<double>",
  13048. "value": [
  13049. 1,
  13050. 1
  13051. ]
  13052. },
  13053. "arrow": "arrowTail",
  13054. "arrowType": "triangle-black",
  13055. "$linkDecoratorInfo": {
  13056. "type": "map<string,double>",
  13057. "value": {
  13058. "xratio": 1,
  13059. "yoffset": -4
  13060. }
  13061. }
  13062. },
  13063. "275": {
  13064. "segments": {
  13065. "type": "string",
  13066. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  13067. },
  13068. "style": {
  13069. "type": "map<string,string>",
  13070. "value": {
  13071. "stroke": "#000000",
  13072. "fill": "#000000",
  13073. "opacity": 0,
  13074. "stroke-width": 1
  13075. }
  13076. },
  13077. "mapper": {
  13078. "type": "code",
  13079. "value": ""
  13080. },
  13081. "parser": {
  13082. "type": "code",
  13083. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13084. },
  13085. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13086. "position": {
  13087. "type": "list<double>",
  13088. "value": [
  13089. "0;8.490075663039761,3.446227583977932%",
  13090. "0;14.074304171403014,99.94059993535875%"
  13091. ]
  13092. },
  13093. "orientation": {
  13094. "type": "double",
  13095. "value": "0;88.025065989118"
  13096. },
  13097. "scale": {
  13098. "type": "list<double>",
  13099. "value": [
  13100. 1,
  13101. 1
  13102. ]
  13103. },
  13104. "arrow": "arrowTail",
  13105. "arrowType": "arrow-black-large",
  13106. "$linkDecoratorInfo": {
  13107. "type": "map<string,double>",
  13108. "value": {
  13109. "xratio": 1,
  13110. "yoffset": -8
  13111. }
  13112. }
  13113. },
  13114. "276": {
  13115. "segments": {
  13116. "type": "string",
  13117. "value": "m0,0 l20,10 l-20,10 z"
  13118. },
  13119. "style": {
  13120. "type": "map<string,string>",
  13121. "value": {
  13122. "stroke": "#000000",
  13123. "fill": "#ffffff",
  13124. "opacity": 0,
  13125. "stroke-width": 1
  13126. }
  13127. },
  13128. "mapper": {
  13129. "type": "code",
  13130. "value": ""
  13131. },
  13132. "parser": {
  13133. "type": "code",
  13134. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13135. },
  13136. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13137. "position": {
  13138. "type": "list<double>",
  13139. "value": [
  13140. "0;10.488887661746958,3.446227583977932%",
  13141. "0;14.005379619723499,99.94059993535875%"
  13142. ]
  13143. },
  13144. "orientation": {
  13145. "type": "double",
  13146. "value": "0;88.025065989118"
  13147. },
  13148. "scale": {
  13149. "type": "list<double>",
  13150. "value": [
  13151. 1,
  13152. 1
  13153. ]
  13154. },
  13155. "arrow": "arrowTail",
  13156. "arrowType": "triangle-white-large",
  13157. "$linkDecoratorInfo": {
  13158. "type": "map<string,double>",
  13159. "value": {
  13160. "xratio": 1,
  13161. "yoffset": -10
  13162. }
  13163. }
  13164. },
  13165. "277": {
  13166. "segments": {
  13167. "type": "string",
  13168. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  13169. },
  13170. "style": {
  13171. "type": "map<string,string>",
  13172. "value": {
  13173. "stroke": "#000000",
  13174. "fill": "#ffffff",
  13175. "opacity": 0,
  13176. "stroke-width": 1
  13177. }
  13178. },
  13179. "mapper": {
  13180. "type": "code",
  13181. "value": ""
  13182. },
  13183. "parser": {
  13184. "type": "code",
  13185. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13186. },
  13187. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13188. "position": {
  13189. "type": "list<double>",
  13190. "value": [
  13191. "0;5.491857664979079,3.446227583977932%",
  13192. "0;14.177690998922458,99.94059993535875%"
  13193. ]
  13194. },
  13195. "orientation": {
  13196. "type": "double",
  13197. "value": "0;88.025065989118"
  13198. },
  13199. "scale": {
  13200. "type": "list<double>",
  13201. "value": [
  13202. 1,
  13203. 1
  13204. ]
  13205. },
  13206. "arrow": "arrowTail",
  13207. "arrowType": "diamond-white",
  13208. "$linkDecoratorInfo": {
  13209. "type": "map<string,double>",
  13210. "value": {
  13211. "xratio": 1,
  13212. "yoffset": -5
  13213. }
  13214. }
  13215. },
  13216. "278": {
  13217. "segments": {
  13218. "type": "string",
  13219. "value": "m0,0 l20,8 l-20,8"
  13220. },
  13221. "style": {
  13222. "type": "map<string,string>",
  13223. "value": {
  13224. "stroke": "#000000",
  13225. "fill": "#000000",
  13226. "fill-opacity": 0,
  13227. "stroke-width": 1,
  13228. "opacity": 0
  13229. }
  13230. },
  13231. "mapper": {
  13232. "type": "code",
  13233. "value": ""
  13234. },
  13235. "parser": {
  13236. "type": "code",
  13237. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13238. },
  13239. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13240. "position": {
  13241. "type": "list<double>",
  13242. "value": [
  13243. "0;8.490075663039761,3.446227583977932%",
  13244. "0;14.074304171403014,99.94059993535875%"
  13245. ]
  13246. },
  13247. "orientation": {
  13248. "type": "double",
  13249. "value": "0;88.025065989118"
  13250. },
  13251. "scale": {
  13252. "type": "list<double>",
  13253. "value": [
  13254. 1,
  13255. 1
  13256. ]
  13257. },
  13258. "arrow": "arrowTail",
  13259. "arrowType": "arrow-empty-large",
  13260. "$linkDecoratorInfo": {
  13261. "type": "map<string,double>",
  13262. "value": {
  13263. "xratio": 1,
  13264. "yoffset": -8
  13265. }
  13266. }
  13267. },
  13268. "279": {
  13269. "r": {
  13270. "type": "double",
  13271. "value": 5
  13272. },
  13273. "style": {
  13274. "type": "map<string,string>",
  13275. "value": {
  13276. "stroke": "#000000",
  13277. "fill": "#ffffff",
  13278. "opacity": 0,
  13279. "stroke-width": 1
  13280. }
  13281. },
  13282. "mapper": {
  13283. "type": "code",
  13284. "value": ""
  13285. },
  13286. "parser": {
  13287. "type": "code",
  13288. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13289. },
  13290. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13291. "position": {
  13292. "type": "list<double>",
  13293. "value": [
  13294. "0;5.491857664979079,3.446227583977932%",
  13295. "0;14.177690998922458,99.94059993535875%"
  13296. ]
  13297. },
  13298. "orientation": {
  13299. "type": "double",
  13300. "value": "0;88.025065989118"
  13301. },
  13302. "scale": {
  13303. "type": "list<double>",
  13304. "value": [
  13305. 1,
  13306. 1
  13307. ]
  13308. },
  13309. "arrow": "arrowTail",
  13310. "arrowType": "circle-white",
  13311. "$linkDecoratorInfo": {
  13312. "type": "map<string,double>",
  13313. "value": {
  13314. "xratio": 1,
  13315. "yoffset": -5
  13316. }
  13317. }
  13318. },
  13319. "280": {
  13320. "segments": {
  13321. "type": "string",
  13322. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  13323. },
  13324. "style": {
  13325. "type": "map<string,string>",
  13326. "value": {
  13327. "stroke": "#000000",
  13328. "fill": "#ffffff",
  13329. "opacity": 0,
  13330. "stroke-width": 1
  13331. }
  13332. },
  13333. "mapper": {
  13334. "type": "code",
  13335. "value": ""
  13336. },
  13337. "parser": {
  13338. "type": "code",
  13339. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13340. },
  13341. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13342. "position": {
  13343. "type": "list<double>",
  13344. "value": [
  13345. "0;10.488887661746958,3.446227583977932%",
  13346. "0;14.005379619723499,99.94059993535875%"
  13347. ]
  13348. },
  13349. "orientation": {
  13350. "type": "double",
  13351. "value": "0;88.025065989118"
  13352. },
  13353. "scale": {
  13354. "type": "list<double>",
  13355. "value": [
  13356. 1,
  13357. 1
  13358. ]
  13359. },
  13360. "arrow": "arrowTail",
  13361. "arrowType": "diamond-white-large",
  13362. "$linkDecoratorInfo": {
  13363. "type": "map<string,double>",
  13364. "value": {
  13365. "xratio": 1,
  13366. "yoffset": -10
  13367. }
  13368. }
  13369. },
  13370. "281": {
  13371. "segments": {
  13372. "type": "string",
  13373. "value": "m0,0 l10,4 l-10,4"
  13374. },
  13375. "style": {
  13376. "type": "map<string,string>",
  13377. "value": {
  13378. "stroke": "#000000",
  13379. "fill": "#000000",
  13380. "fill-opacity": 0,
  13381. "stroke-width": 1,
  13382. "opacity": 0
  13383. }
  13384. },
  13385. "mapper": {
  13386. "type": "code",
  13387. "value": ""
  13388. },
  13389. "parser": {
  13390. "type": "code",
  13391. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13392. },
  13393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13394. "position": {
  13395. "type": "list<double>",
  13396. "value": [
  13397. "0;4.492451665625481,3.446227583977932%",
  13398. "0;14.212153274762159,99.94059993535875%"
  13399. ]
  13400. },
  13401. "orientation": {
  13402. "type": "double",
  13403. "value": "0;88.025065989118"
  13404. },
  13405. "scale": {
  13406. "type": "list<double>",
  13407. "value": [
  13408. 1,
  13409. 1
  13410. ]
  13411. },
  13412. "arrow": "arrowTail",
  13413. "arrowType": "arrow-empty",
  13414. "$linkDecoratorInfo": {
  13415. "type": "map<string,double>",
  13416. "value": {
  13417. "xratio": 1,
  13418. "yoffset": -4
  13419. }
  13420. }
  13421. },
  13422. "282": {
  13423. "segments": {
  13424. "type": "string",
  13425. "value": "m0,0 l10,5 l-10,5 z"
  13426. },
  13427. "style": {
  13428. "type": "map<string,string>",
  13429. "value": {
  13430. "stroke": "#000000",
  13431. "fill": "#ffffff",
  13432. "opacity": 0,
  13433. "stroke-width": 1
  13434. }
  13435. },
  13436. "mapper": {
  13437. "type": "code",
  13438. "value": ""
  13439. },
  13440. "parser": {
  13441. "type": "code",
  13442. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13443. },
  13444. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13445. "position": {
  13446. "type": "list<double>",
  13447. "value": [
  13448. "0;5.491857664979079,3.446227583977932%",
  13449. "0;14.177690998922458,99.94059993535875%"
  13450. ]
  13451. },
  13452. "orientation": {
  13453. "type": "double",
  13454. "value": "0;88.025065989118"
  13455. },
  13456. "scale": {
  13457. "type": "list<double>",
  13458. "value": [
  13459. 1,
  13460. 1
  13461. ]
  13462. },
  13463. "arrow": "arrowTail",
  13464. "arrowType": "triangle-white",
  13465. "$linkDecoratorInfo": {
  13466. "type": "map<string,double>",
  13467. "value": {
  13468. "xratio": 1,
  13469. "yoffset": -5
  13470. }
  13471. }
  13472. },
  13473. "283": {
  13474. "segments": {
  13475. "type": "string",
  13476. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  13477. },
  13478. "style": {
  13479. "type": "map<string,string>",
  13480. "value": {
  13481. "stroke": "#000000",
  13482. "fill": "#ffffff",
  13483. "opacity": 0,
  13484. "stroke-width": 1
  13485. }
  13486. },
  13487. "mapper": {
  13488. "type": "code",
  13489. "value": ""
  13490. },
  13491. "parser": {
  13492. "type": "code",
  13493. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13494. },
  13495. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13496. "position": {
  13497. "type": "list<double>",
  13498. "value": [
  13499. "0;4.491857664979079,0%",
  13500. "0;-14.822309001077542,0%"
  13501. ]
  13502. },
  13503. "orientation": {
  13504. "type": "double",
  13505. "value": "0;88.02506598911806"
  13506. },
  13507. "scale": {
  13508. "type": "list<double>",
  13509. "value": [
  13510. 1,
  13511. 1
  13512. ]
  13513. },
  13514. "arrow": "arrowHead",
  13515. "arrowType": "diamond-white",
  13516. "$linkDecoratorInfo": {
  13517. "type": "map<string,double>",
  13518. "value": {
  13519. "xratio": -1,
  13520. "yoffset": -5
  13521. }
  13522. }
  13523. },
  13524. "284": {
  13525. "segments": {
  13526. "type": "string",
  13527. "value": "m0,0 l-10,5 l10,5 z"
  13528. },
  13529. "style": {
  13530. "type": "map<string,string>",
  13531. "value": {
  13532. "stroke": "#000000",
  13533. "fill": "#ffffff",
  13534. "opacity": 0,
  13535. "stroke-width": 1
  13536. }
  13537. },
  13538. "mapper": {
  13539. "type": "code",
  13540. "value": ""
  13541. },
  13542. "parser": {
  13543. "type": "code",
  13544. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13545. },
  13546. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13547. "position": {
  13548. "type": "list<double>",
  13549. "value": [
  13550. "0;4.491857664979079,0%",
  13551. "0;-14.822309001077542,0%"
  13552. ]
  13553. },
  13554. "orientation": {
  13555. "type": "double",
  13556. "value": "0;88.02506598911806"
  13557. },
  13558. "scale": {
  13559. "type": "list<double>",
  13560. "value": [
  13561. 1,
  13562. 1
  13563. ]
  13564. },
  13565. "arrow": "arrowHead",
  13566. "arrowType": "triangle-white",
  13567. "$linkDecoratorInfo": {
  13568. "type": "map<string,double>",
  13569. "value": {
  13570. "xratio": -1,
  13571. "yoffset": -5
  13572. }
  13573. }
  13574. },
  13575. "285": {
  13576. "segments": {
  13577. "type": "string",
  13578. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  13579. },
  13580. "style": {
  13581. "type": "map<string,string>",
  13582. "value": {
  13583. "stroke": "#000000",
  13584. "fill": "#000000",
  13585. "opacity": 0,
  13586. "stroke-width": 1
  13587. }
  13588. },
  13589. "mapper": {
  13590. "type": "code",
  13591. "value": ""
  13592. },
  13593. "parser": {
  13594. "type": "code",
  13595. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13596. },
  13597. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13598. "position": {
  13599. "type": "list<double>",
  13600. "value": [
  13601. "0;4.491857664979079,0%",
  13602. "0;-14.822309001077542,0%"
  13603. ]
  13604. },
  13605. "orientation": {
  13606. "type": "double",
  13607. "value": "0;88.02506598911806"
  13608. },
  13609. "scale": {
  13610. "type": "list<double>",
  13611. "value": [
  13612. 1,
  13613. 1
  13614. ]
  13615. },
  13616. "arrow": "arrowHead",
  13617. "arrowType": "diamond-black",
  13618. "$linkDecoratorInfo": {
  13619. "type": "map<string,double>",
  13620. "value": {
  13621. "xratio": -1,
  13622. "yoffset": -5
  13623. }
  13624. }
  13625. },
  13626. "286": {
  13627. "r": {
  13628. "type": "double",
  13629. "value": 10
  13630. },
  13631. "style": {
  13632. "type": "map<string,string>",
  13633. "value": {
  13634. "stroke": "#000000",
  13635. "fill": "#000000",
  13636. "opacity": 0,
  13637. "stroke-width": 1
  13638. }
  13639. },
  13640. "mapper": {
  13641. "type": "code",
  13642. "value": ""
  13643. },
  13644. "parser": {
  13645. "type": "code",
  13646. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13647. },
  13648. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13649. "position": {
  13650. "type": "list<double>",
  13651. "value": [
  13652. "0;9.488887661746958,0%",
  13653. "0;-14.994620380276501,0%"
  13654. ]
  13655. },
  13656. "orientation": {
  13657. "type": "double",
  13658. "value": "0;88.02506598911806"
  13659. },
  13660. "scale": {
  13661. "type": "list<double>",
  13662. "value": [
  13663. 1,
  13664. 1
  13665. ]
  13666. },
  13667. "arrow": "arrowHead",
  13668. "arrowType": "circle-black-large",
  13669. "$linkDecoratorInfo": {
  13670. "type": "map<string,double>",
  13671. "value": {
  13672. "xratio": -1,
  13673. "yoffset": -10
  13674. }
  13675. }
  13676. },
  13677. "287": {
  13678. "segments": {
  13679. "type": "string",
  13680. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  13681. },
  13682. "style": {
  13683. "type": "map<string,string>",
  13684. "value": {
  13685. "stroke": "#000000",
  13686. "fill": "#000000",
  13687. "opacity": 0,
  13688. "stroke-width": 1
  13689. }
  13690. },
  13691. "mapper": {
  13692. "type": "code",
  13693. "value": ""
  13694. },
  13695. "parser": {
  13696. "type": "code",
  13697. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13698. },
  13699. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13700. "position": {
  13701. "type": "list<double>",
  13702. "value": [
  13703. "0;7.490075663039761,0%",
  13704. "0;-14.925695828596872,0%"
  13705. ]
  13706. },
  13707. "orientation": {
  13708. "type": "double",
  13709. "value": "0;88.02506598911806"
  13710. },
  13711. "scale": {
  13712. "type": "list<double>",
  13713. "value": [
  13714. 1,
  13715. 1
  13716. ]
  13717. },
  13718. "arrow": "arrowHead",
  13719. "arrowType": "arrow-black-large",
  13720. "$linkDecoratorInfo": {
  13721. "type": "map<string,double>",
  13722. "value": {
  13723. "xratio": -1,
  13724. "yoffset": -8
  13725. }
  13726. }
  13727. },
  13728. "288": {
  13729. "segments": {
  13730. "type": "string",
  13731. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  13732. },
  13733. "style": {
  13734. "type": "map<string,string>",
  13735. "value": {
  13736. "stroke": "#000000",
  13737. "fill": "#000000",
  13738. "opacity": 0,
  13739. "stroke-width": 1
  13740. }
  13741. },
  13742. "mapper": {
  13743. "type": "code",
  13744. "value": ""
  13745. },
  13746. "parser": {
  13747. "type": "code",
  13748. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13749. },
  13750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13751. "position": {
  13752. "type": "list<double>",
  13753. "value": [
  13754. "0;3.492451665625481,0%",
  13755. "0;-14.787846725237841,0%"
  13756. ]
  13757. },
  13758. "orientation": {
  13759. "type": "double",
  13760. "value": "0;88.02506598911806"
  13761. },
  13762. "scale": {
  13763. "type": "list<double>",
  13764. "value": [
  13765. 1,
  13766. 1
  13767. ]
  13768. },
  13769. "arrow": "arrowHead",
  13770. "arrowType": "arrow-black",
  13771. "$linkDecoratorInfo": {
  13772. "type": "map<string,double>",
  13773. "value": {
  13774. "xratio": -1,
  13775. "yoffset": -4
  13776. }
  13777. }
  13778. },
  13779. "289": {
  13780. "segments": {
  13781. "type": "string",
  13782. "value": "m0,0 l-20,10 l20,10 z"
  13783. },
  13784. "style": {
  13785. "type": "map<string,string>",
  13786. "value": {
  13787. "stroke": "#000000",
  13788. "fill": "#ffffff",
  13789. "opacity": 0,
  13790. "stroke-width": 1
  13791. }
  13792. },
  13793. "mapper": {
  13794. "type": "code",
  13795. "value": ""
  13796. },
  13797. "parser": {
  13798. "type": "code",
  13799. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13800. },
  13801. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13802. "position": {
  13803. "type": "list<double>",
  13804. "value": [
  13805. "0;9.488887661746958,0%",
  13806. "0;-14.994620380276501,0%"
  13807. ]
  13808. },
  13809. "orientation": {
  13810. "type": "double",
  13811. "value": "0;88.02506598911806"
  13812. },
  13813. "scale": {
  13814. "type": "list<double>",
  13815. "value": [
  13816. 1,
  13817. 1
  13818. ]
  13819. },
  13820. "arrow": "arrowHead",
  13821. "arrowType": "triangle-white-large",
  13822. "$linkDecoratorInfo": {
  13823. "type": "map<string,double>",
  13824. "value": {
  13825. "xratio": -1,
  13826. "yoffset": -10
  13827. }
  13828. }
  13829. },
  13830. "290": {
  13831. "segments": {
  13832. "type": "string",
  13833. "value": "m0,0 l-20,10 l20,10 z"
  13834. },
  13835. "style": {
  13836. "type": "map<string,string>",
  13837. "value": {
  13838. "stroke": "#000000",
  13839. "fill": "#000000",
  13840. "opacity": 0,
  13841. "stroke-width": 1
  13842. }
  13843. },
  13844. "mapper": {
  13845. "type": "code",
  13846. "value": ""
  13847. },
  13848. "parser": {
  13849. "type": "code",
  13850. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13851. },
  13852. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  13853. "position": {
  13854. "type": "list<double>",
  13855. "value": [
  13856. "0;9.488887661746958,0%",
  13857. "0;-14.994620380276501,0%"
  13858. ]
  13859. },
  13860. "orientation": {
  13861. "type": "double",
  13862. "value": "0;88.02506598911806"
  13863. },
  13864. "scale": {
  13865. "type": "list<double>",
  13866. "value": [
  13867. 1,
  13868. 1
  13869. ]
  13870. },
  13871. "arrow": "arrowHead",
  13872. "arrowType": "triangle-black-large",
  13873. "$linkDecoratorInfo": {
  13874. "type": "map<string,double>",
  13875. "value": {
  13876. "xratio": -1,
  13877. "yoffset": -10
  13878. }
  13879. }
  13880. },
  13881. "291": {
  13882. "r": {
  13883. "type": "double",
  13884. "value": 5
  13885. },
  13886. "style": {
  13887. "type": "map<string,string>",
  13888. "value": {
  13889. "stroke": "#000000",
  13890. "fill": "#000000",
  13891. "opacity": 0,
  13892. "stroke-width": 1
  13893. }
  13894. },
  13895. "mapper": {
  13896. "type": "code",
  13897. "value": ""
  13898. },
  13899. "parser": {
  13900. "type": "code",
  13901. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13902. },
  13903. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13904. "position": {
  13905. "type": "list<double>",
  13906. "value": [
  13907. "0;4.491857664979079,0%",
  13908. "0;-14.822309001077542,0%"
  13909. ]
  13910. },
  13911. "orientation": {
  13912. "type": "double",
  13913. "value": "0;88.02506598911806"
  13914. },
  13915. "scale": {
  13916. "type": "list<double>",
  13917. "value": [
  13918. 1,
  13919. 1
  13920. ]
  13921. },
  13922. "arrow": "arrowHead",
  13923. "arrowType": "circle-black",
  13924. "$linkDecoratorInfo": {
  13925. "type": "map<string,double>",
  13926. "value": {
  13927. "xratio": -1,
  13928. "yoffset": -5
  13929. }
  13930. }
  13931. },
  13932. "292": {
  13933. "r": {
  13934. "type": "double",
  13935. "value": 5
  13936. },
  13937. "style": {
  13938. "type": "map<string,string>",
  13939. "value": {
  13940. "stroke": "#000000",
  13941. "fill": "#ffffff",
  13942. "opacity": 0,
  13943. "stroke-width": 1
  13944. }
  13945. },
  13946. "mapper": {
  13947. "type": "code",
  13948. "value": ""
  13949. },
  13950. "parser": {
  13951. "type": "code",
  13952. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  13953. },
  13954. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  13955. "position": {
  13956. "type": "list<double>",
  13957. "value": [
  13958. "0;4.491857664979079,0%",
  13959. "0;-14.822309001077542,0%"
  13960. ]
  13961. },
  13962. "orientation": {
  13963. "type": "double",
  13964. "value": "0;88.02506598911806"
  13965. },
  13966. "scale": {
  13967. "type": "list<double>",
  13968. "value": [
  13969. 1,
  13970. 1
  13971. ]
  13972. },
  13973. "arrow": "arrowHead",
  13974. "arrowType": "circle-white",
  13975. "$linkDecoratorInfo": {
  13976. "type": "map<string,double>",
  13977. "value": {
  13978. "xratio": -1,
  13979. "yoffset": -5
  13980. }
  13981. }
  13982. },
  13983. "293": {
  13984. "r": {
  13985. "type": "double",
  13986. "value": 10
  13987. },
  13988. "style": {
  13989. "type": "map<string,string>",
  13990. "value": {
  13991. "stroke": "#000000",
  13992. "fill": "#ffffff",
  13993. "opacity": 0,
  13994. "stroke-width": 1
  13995. }
  13996. },
  13997. "mapper": {
  13998. "type": "code",
  13999. "value": ""
  14000. },
  14001. "parser": {
  14002. "type": "code",
  14003. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14004. },
  14005. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  14006. "position": {
  14007. "type": "list<double>",
  14008. "value": [
  14009. "0;9.488887661746958,0%",
  14010. "0;-14.994620380276501,0%"
  14011. ]
  14012. },
  14013. "orientation": {
  14014. "type": "double",
  14015. "value": "0;88.02506598911806"
  14016. },
  14017. "scale": {
  14018. "type": "list<double>",
  14019. "value": [
  14020. 1,
  14021. 1
  14022. ]
  14023. },
  14024. "arrow": "arrowHead",
  14025. "arrowType": "circle-white-large",
  14026. "$linkDecoratorInfo": {
  14027. "type": "map<string,double>",
  14028. "value": {
  14029. "xratio": -1,
  14030. "yoffset": -10
  14031. }
  14032. }
  14033. },
  14034. "294": {
  14035. "segments": {
  14036. "type": "string",
  14037. "value": "m0,0 l-20,8 l20,8"
  14038. },
  14039. "style": {
  14040. "type": "map<string,string>",
  14041. "value": {
  14042. "stroke": "#000000",
  14043. "fill": "#000000",
  14044. "fill-opacity": 0,
  14045. "stroke-width": 1,
  14046. "opacity": 0
  14047. }
  14048. },
  14049. "mapper": {
  14050. "type": "code",
  14051. "value": ""
  14052. },
  14053. "parser": {
  14054. "type": "code",
  14055. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14056. },
  14057. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14058. "position": {
  14059. "type": "list<double>",
  14060. "value": [
  14061. "0;7.490075663039761,0%",
  14062. "0;-14.925695828596872,0%"
  14063. ]
  14064. },
  14065. "orientation": {
  14066. "type": "double",
  14067. "value": "0;88.02506598911806"
  14068. },
  14069. "scale": {
  14070. "type": "list<double>",
  14071. "value": [
  14072. 1,
  14073. 1
  14074. ]
  14075. },
  14076. "arrow": "arrowHead",
  14077. "arrowType": "arrow-empty-large",
  14078. "$linkDecoratorInfo": {
  14079. "type": "map<string,double>",
  14080. "value": {
  14081. "xratio": -1,
  14082. "yoffset": -8
  14083. }
  14084. }
  14085. },
  14086. "295": {
  14087. "segments": {
  14088. "type": "string",
  14089. "value": "m0,0 l-10,4 l10,4"
  14090. },
  14091. "style": {
  14092. "type": "map<string,string>",
  14093. "value": {
  14094. "stroke": "#000000",
  14095. "fill": "#000000",
  14096. "fill-opacity": 0,
  14097. "stroke-width": 1,
  14098. "opacity": 0
  14099. }
  14100. },
  14101. "mapper": {
  14102. "type": "code",
  14103. "value": ""
  14104. },
  14105. "parser": {
  14106. "type": "code",
  14107. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14108. },
  14109. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14110. "position": {
  14111. "type": "list<double>",
  14112. "value": [
  14113. "0;3.492451665625481,0%",
  14114. "0;-14.787846725237841,0%"
  14115. ]
  14116. },
  14117. "orientation": {
  14118. "type": "double",
  14119. "value": "0;88.02506598911806"
  14120. },
  14121. "scale": {
  14122. "type": "list<double>",
  14123. "value": [
  14124. 1,
  14125. 1
  14126. ]
  14127. },
  14128. "arrow": "arrowHead",
  14129. "arrowType": "arrow-empty",
  14130. "$linkDecoratorInfo": {
  14131. "type": "map<string,double>",
  14132. "value": {
  14133. "xratio": -1,
  14134. "yoffset": -4
  14135. }
  14136. }
  14137. },
  14138. "296": {
  14139. "segments": {
  14140. "type": "string",
  14141. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  14142. },
  14143. "style": {
  14144. "type": "map<string,string>",
  14145. "value": {
  14146. "stroke": "#000000",
  14147. "fill": "#000000",
  14148. "opacity": 0,
  14149. "stroke-width": 1
  14150. }
  14151. },
  14152. "mapper": {
  14153. "type": "code",
  14154. "value": ""
  14155. },
  14156. "parser": {
  14157. "type": "code",
  14158. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14159. },
  14160. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14161. "position": {
  14162. "type": "list<double>",
  14163. "value": [
  14164. "0;9.488887661746958,0%",
  14165. "0;-14.994620380276501,0%"
  14166. ]
  14167. },
  14168. "orientation": {
  14169. "type": "double",
  14170. "value": "0;88.02506598911806"
  14171. },
  14172. "scale": {
  14173. "type": "list<double>",
  14174. "value": [
  14175. 1,
  14176. 1
  14177. ]
  14178. },
  14179. "arrow": "arrowHead",
  14180. "arrowType": "diamond-black-large",
  14181. "$linkDecoratorInfo": {
  14182. "type": "map<string,double>",
  14183. "value": {
  14184. "xratio": -1,
  14185. "yoffset": -10
  14186. }
  14187. }
  14188. },
  14189. "297": {
  14190. "segments": {
  14191. "type": "string",
  14192. "value": "m0,0 l-10,4 l10,4 z"
  14193. },
  14194. "style": {
  14195. "type": "map<string,string>",
  14196. "value": {
  14197. "stroke": "#000000",
  14198. "fill": "#000000",
  14199. "opacity": 0,
  14200. "stroke-width": 1
  14201. }
  14202. },
  14203. "mapper": {
  14204. "type": "code",
  14205. "value": ""
  14206. },
  14207. "parser": {
  14208. "type": "code",
  14209. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14210. },
  14211. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14212. "position": {
  14213. "type": "list<double>",
  14214. "value": [
  14215. "0;3.492451665625481,0%",
  14216. "0;-14.787846725237841,0%"
  14217. ]
  14218. },
  14219. "orientation": {
  14220. "type": "double",
  14221. "value": "0;88.02506598911806"
  14222. },
  14223. "scale": {
  14224. "type": "list<double>",
  14225. "value": [
  14226. 1,
  14227. 1
  14228. ]
  14229. },
  14230. "arrow": "arrowHead",
  14231. "arrowType": "triangle-black",
  14232. "$linkDecoratorInfo": {
  14233. "type": "map<string,double>",
  14234. "value": {
  14235. "xratio": -1,
  14236. "yoffset": -4
  14237. }
  14238. }
  14239. },
  14240. "298": {
  14241. "segments": {
  14242. "type": "string",
  14243. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  14244. },
  14245. "style": {
  14246. "type": "map<string,string>",
  14247. "value": {
  14248. "stroke": "#000000",
  14249. "fill": "#ffffff",
  14250. "opacity": 0,
  14251. "stroke-width": 1
  14252. }
  14253. },
  14254. "mapper": {
  14255. "type": "code",
  14256. "value": ""
  14257. },
  14258. "parser": {
  14259. "type": "code",
  14260. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  14261. },
  14262. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  14263. "position": {
  14264. "type": "list<double>",
  14265. "value": [
  14266. "0;9.488887661746958,0%",
  14267. "0;-14.994620380276501,0%"
  14268. ]
  14269. },
  14270. "orientation": {
  14271. "type": "double",
  14272. "value": "0;88.02506598911806"
  14273. },
  14274. "scale": {
  14275. "type": "list<double>",
  14276. "value": [
  14277. 1,
  14278. 1
  14279. ]
  14280. },
  14281. "arrow": "arrowHead",
  14282. "arrowType": "diamond-white-large",
  14283. "$linkDecoratorInfo": {
  14284. "type": "map<string,double>",
  14285. "value": {
  14286. "xratio": -1,
  14287. "yoffset": -10
  14288. }
  14289. }
  14290. }
  14291. },
  14292. "edges": []
  14293. }
  14294. },
  14295. "$asuri": {
  14296. "type": "string",
  14297. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/114.instance"
  14298. },
  14299. "$segments": {
  14300. "type": "map<string,list<string>>",
  14301. "value": {
  14302. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CQRule2Icon/109.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/114.instance": "M778,505L778.5051723317889,519.6499976218787",
  14303. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/114.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon/113.instance": "M778.5051723317889,519.6499976218787L779,534"
  14304. }
  14305. },
  14306. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  14307. }
  14308. },
  14309. "edges": [],
  14310. "metamodels": [
  14311. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons"
  14312. ]
  14313. },
  14314. "asm": {
  14315. "nodes": {
  14316. "77": {
  14317. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/Start"
  14318. },
  14319. "84": {
  14320. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail"
  14321. },
  14322. "98": {
  14323. "innerQuery": {
  14324. "type": "string",
  14325. "value": "/Formalisms/PN/simulation/R_nonFiringTransition.model"
  14326. },
  14327. "query": {
  14328. "type": "string",
  14329. "value": "/Formalisms/PN/simulation/R_findTransition.model"
  14330. },
  14331. "name": {
  14332. "type": "string",
  14333. "value": "findTransition"
  14334. },
  14335. "alias": {
  14336. "type": "string",
  14337. "value": ""
  14338. },
  14339. "position": {
  14340. "type": "list<int>",
  14341. "value": [
  14342. 615,
  14343. 181
  14344. ]
  14345. },
  14346. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule2"
  14347. },
  14348. "105": {
  14349. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  14350. },
  14351. "106": {
  14352. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/initial"
  14353. },
  14354. "107": {
  14355. "ref": {
  14356. "type": "string",
  14357. "value": "/Formalisms/PN/T_handleTokens.model"
  14358. },
  14359. "name": {
  14360. "type": "string",
  14361. "value": "handleTokens"
  14362. },
  14363. "alias": {
  14364. "type": "string",
  14365. "value": ""
  14366. },
  14367. "position": {
  14368. "type": "list<int>",
  14369. "value": [
  14370. 621,
  14371. 296
  14372. ]
  14373. },
  14374. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/CRule"
  14375. },
  14376. "108": {
  14377. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  14378. },
  14379. "109": {
  14380. "innerQuery": {
  14381. "type": "string",
  14382. "value": "/Formalisms/PN/simulation/R_nonFiringTransition.model"
  14383. },
  14384. "query": {
  14385. "type": "string",
  14386. "value": "/Formalisms/PN/simulation/R_findTransition.model"
  14387. },
  14388. "name": {
  14389. "type": "string",
  14390. "value": "findTransition"
  14391. },
  14392. "alias": {
  14393. "type": "string",
  14394. "value": ""
  14395. },
  14396. "position": {
  14397. "type": "list<int>",
  14398. "value": [
  14399. 620,
  14400. 418
  14401. ]
  14402. },
  14403. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/CQRule2"
  14404. },
  14405. "110": {
  14406. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  14407. },
  14408. "111": {
  14409. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  14410. },
  14411. "112": {
  14412. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  14413. },
  14414. "113": {
  14415. "position": {
  14416. "type": "list<int>",
  14417. "value": [
  14418. 769,
  14419. 532
  14420. ]
  14421. },
  14422. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess"
  14423. },
  14424. "114": {
  14425. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  14426. }
  14427. },
  14428. "edges": [
  14429. {
  14430. "src": "98",
  14431. "dest": "105"
  14432. },
  14433. {
  14434. "src": "105",
  14435. "dest": "84"
  14436. },
  14437. {
  14438. "src": "77",
  14439. "dest": "106"
  14440. },
  14441. {
  14442. "src": "106",
  14443. "dest": "98"
  14444. },
  14445. {
  14446. "src": "98",
  14447. "dest": "108"
  14448. },
  14449. {
  14450. "src": "108",
  14451. "dest": "107"
  14452. },
  14453. {
  14454. "src": "107",
  14455. "dest": "110"
  14456. },
  14457. {
  14458. "src": "110",
  14459. "dest": "109"
  14460. },
  14461. {
  14462. "src": "107",
  14463. "dest": "111"
  14464. },
  14465. {
  14466. "src": "111",
  14467. "dest": "109"
  14468. },
  14469. {
  14470. "src": "109",
  14471. "dest": "112"
  14472. },
  14473. {
  14474. "src": "112",
  14475. "dest": "107"
  14476. },
  14477. {
  14478. "src": "109",
  14479. "dest": "114"
  14480. },
  14481. {
  14482. "src": "114",
  14483. "dest": "113"
  14484. }
  14485. ],
  14486. "metamodels": [
  14487. "/Formalisms/__Transformations__/Transformation/MoTif"
  14488. ]
  14489. }
  14490. }