T_lqsrule_withCRule.model 280 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "StartIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 661,
  13. 200
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  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/0.instance"
  92. },
  93. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon"
  94. },
  95. "6": {
  96. "typename": {
  97. "type": "string",
  98. "value": "EndSuccessIcon"
  99. },
  100. "position": {
  101. "type": "list<double>",
  102. "value": [
  103. 606,
  104. 673
  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. "23": {
  131. "r": {
  132. "type": "double",
  133. "value": 10
  134. },
  135. "style": {
  136. "type": "map<string,string>",
  137. "value": {
  138. "stroke": "#008000",
  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. 2
  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. "26": {
  178. "r": {
  179. "type": "double",
  180. "value": 5
  181. },
  182. "style": {
  183. "type": "map<string,string>",
  184. "value": {
  185. "stroke": "#000000",
  186. "stroke-dasharray": "",
  187. "fill": "#008000",
  188. "fill-opacity": 1,
  189. "font-size": "20px",
  190. "stroke-width": 0,
  191. "arrow-start": "none",
  192. "arrow-end": "none",
  193. "": ""
  194. }
  195. },
  196. "mapper": {
  197. "type": "code",
  198. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  199. },
  200. "parser": {
  201. "type": "code",
  202. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  203. },
  204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  205. "position": {
  206. "type": "list<double>",
  207. "value": [
  208. 7,
  209. 7
  210. ]
  211. },
  212. "orientation": {
  213. "type": "double",
  214. "value": 0
  215. },
  216. "scale": {
  217. "type": "list<double>",
  218. "value": [
  219. 1,
  220. 1
  221. ]
  222. }
  223. },
  224. "27": {
  225. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  226. "position": {
  227. "type": "list<double>",
  228. "value": [
  229. 7.492540538484263,
  230. 6.5
  231. ]
  232. },
  233. "orientation": {
  234. "type": "double",
  235. "value": 0
  236. },
  237. "scale": {
  238. "type": "list<double>",
  239. "value": [
  240. 1,
  241. 1
  242. ]
  243. },
  244. "link-style": {
  245. "type": "map<string,string>",
  246. "value": {
  247. "stroke": "#00ffff",
  248. "stroke-dasharray": "",
  249. "stroke-opacity": 0.1,
  250. "stroke-width": 1
  251. }
  252. }
  253. }
  254. },
  255. "edges": [
  256. {
  257. "src": "23",
  258. "dest": "27"
  259. },
  260. {
  261. "src": "27",
  262. "dest": "26"
  263. }
  264. ]
  265. }
  266. },
  267. "$asuri": {
  268. "type": "string",
  269. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess/6.instance"
  270. },
  271. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon"
  272. },
  273. "7": {
  274. "typename": {
  275. "type": "string",
  276. "value": "EndFailIcon"
  277. },
  278. "position": {
  279. "type": "list<double>",
  280. "value": [
  281. 702,
  282. 674
  283. ]
  284. },
  285. "orientation": {
  286. "type": "double",
  287. "value": 0
  288. },
  289. "scale": {
  290. "type": "list<double>",
  291. "value": [
  292. 1,
  293. 1
  294. ]
  295. },
  296. "mapper": {
  297. "type": "code",
  298. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  299. },
  300. "parser": {
  301. "type": "code",
  302. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  303. },
  304. "$contents": {
  305. "type": "map<string,*>",
  306. "value": {
  307. "nodes": {
  308. "451": {
  309. "r": {
  310. "type": "double",
  311. "value": 10
  312. },
  313. "style": {
  314. "type": "map<string,string>",
  315. "value": {
  316. "stroke": "#800000",
  317. "stroke-dasharray": "",
  318. "fill": "none",
  319. "fill-opacity": 1,
  320. "font-size": "20px",
  321. "stroke-width": 2,
  322. "arrow-start": "none",
  323. "arrow-end": "none",
  324. "": ""
  325. }
  326. },
  327. "mapper": {
  328. "type": "code",
  329. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  330. },
  331. "parser": {
  332. "type": "code",
  333. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  334. },
  335. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  336. "position": {
  337. "type": "list<double>",
  338. "value": [
  339. 2,
  340. 1
  341. ]
  342. },
  343. "orientation": {
  344. "type": "double",
  345. "value": 0
  346. },
  347. "scale": {
  348. "type": "list<double>",
  349. "value": [
  350. 1,
  351. 1
  352. ]
  353. }
  354. },
  355. "455": {
  356. "segments": {
  357. "type": "string",
  358. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  359. },
  360. "style": {
  361. "type": "map<string,string>",
  362. "value": {
  363. "fill": "none",
  364. "stroke": "#800000",
  365. "stroke-width": "3",
  366. "stroke-linecap": "round",
  367. "stroke-linejoin": "round",
  368. "stroke-miterlimit": "4",
  369. "stroke-opacity": "1",
  370. "stroke-dasharray": "none"
  371. }
  372. },
  373. "mapper": {
  374. "type": "code",
  375. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  376. },
  377. "parser": {
  378. "type": "code",
  379. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  380. },
  381. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  382. "position": {
  383. "type": "list<double>",
  384. "value": [
  385. 5,
  386. 4
  387. ]
  388. },
  389. "orientation": {
  390. "type": "double",
  391. "value": 0
  392. },
  393. "scale": {
  394. "type": "list<double>",
  395. "value": [
  396. 1,
  397. 1
  398. ]
  399. }
  400. },
  401. "456": {
  402. "segments": {
  403. "type": "string",
  404. "value": "M 1.5,1.5069319 12.49983,12.506752"
  405. },
  406. "style": {
  407. "type": "map<string,string>",
  408. "value": {
  409. "fill": "none",
  410. "stroke": "#800000",
  411. "stroke-width": "3",
  412. "stroke-linecap": "round",
  413. "stroke-linejoin": "round",
  414. "stroke-miterlimit": "4",
  415. "stroke-opacity": "1",
  416. "stroke-dasharray": "none"
  417. }
  418. },
  419. "mapper": {
  420. "type": "code",
  421. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  422. },
  423. "parser": {
  424. "type": "code",
  425. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  426. },
  427. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  428. "position": {
  429. "type": "list<double>",
  430. "value": [
  431. 5,
  432. 4
  433. ]
  434. },
  435. "orientation": {
  436. "type": "double",
  437. "value": 0
  438. },
  439. "scale": {
  440. "type": "list<double>",
  441. "value": [
  442. 1,
  443. 1
  444. ]
  445. }
  446. },
  447. "457": {
  448. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  449. "position": {
  450. "type": "list<double>",
  451. "value": [
  452. 7.363811097006419,
  453. 5.348023328271552
  454. ]
  455. },
  456. "orientation": {
  457. "type": "double",
  458. "value": 0
  459. },
  460. "scale": {
  461. "type": "list<double>",
  462. "value": [
  463. 1,
  464. 1
  465. ]
  466. },
  467. "link-style": {
  468. "type": "map<string,string>",
  469. "value": {
  470. "stroke": "#00ffff",
  471. "stroke-dasharray": "",
  472. "stroke-opacity": 0.1,
  473. "stroke-width": 1
  474. }
  475. }
  476. },
  477. "458": {
  478. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  479. "position": {
  480. "type": "list<double>",
  481. "value": [
  482. 7.3638135362075445,
  483. 5.348023328271552
  484. ]
  485. },
  486. "orientation": {
  487. "type": "double",
  488. "value": 0
  489. },
  490. "scale": {
  491. "type": "list<double>",
  492. "value": [
  493. 1,
  494. 1
  495. ]
  496. },
  497. "link-style": {
  498. "type": "map<string,string>",
  499. "value": {
  500. "stroke": "#00ffff",
  501. "stroke-dasharray": "",
  502. "stroke-opacity": 0.1,
  503. "stroke-width": 1
  504. }
  505. }
  506. }
  507. },
  508. "edges": [
  509. {
  510. "src": "451",
  511. "dest": "457"
  512. },
  513. {
  514. "src": "457",
  515. "dest": "455"
  516. },
  517. {
  518. "src": "451",
  519. "dest": "458"
  520. },
  521. {
  522. "src": "458",
  523. "dest": "456"
  524. }
  525. ]
  526. }
  527. },
  528. "$asuri": {
  529. "type": "string",
  530. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail/7.instance"
  531. },
  532. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon"
  533. },
  534. "101": {
  535. "typename": {
  536. "type": "string",
  537. "value": "LQSRuleIcon"
  538. },
  539. "position": {
  540. "type": "list<double>",
  541. "value": [
  542. 527,
  543. 275
  544. ]
  545. },
  546. "orientation": {
  547. "type": "double",
  548. "value": 0
  549. },
  550. "scale": {
  551. "type": "list<double>",
  552. "value": [
  553. 1,
  554. 1
  555. ]
  556. },
  557. "mapper": {
  558. "type": "code",
  559. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  560. },
  561. "parser": {
  562. "type": "code",
  563. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  564. },
  565. "$contents": {
  566. "type": "map<string,*>",
  567. "value": {
  568. "nodes": {
  569. "892": {
  570. "segments": {
  571. "type": "string",
  572. "value": "M 1.5,1.5069319 12.49983,12.506752"
  573. },
  574. "style": {
  575. "type": "map<string,string>",
  576. "value": {
  577. "fill": "none",
  578. "stroke": "#008000",
  579. "stroke-width": "3",
  580. "stroke-linecap": "round",
  581. "stroke-linejoin": "round",
  582. "stroke-miterlimit": "4",
  583. "stroke-opacity": "1",
  584. "stroke-dasharray": "none"
  585. }
  586. },
  587. "mapper": {
  588. "type": "code",
  589. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  590. },
  591. "parser": {
  592. "type": "code",
  593. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  594. },
  595. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  596. "position": {
  597. "type": "list<double>",
  598. "value": [
  599. 192,
  600. 276
  601. ]
  602. },
  603. "orientation": {
  604. "type": "double",
  605. "value": 0
  606. },
  607. "scale": {
  608. "type": "list<double>",
  609. "value": [
  610. 1,
  611. 1
  612. ]
  613. }
  614. },
  615. "893": {
  616. "width": {
  617. "type": "double",
  618. "value": 300
  619. },
  620. "height": {
  621. "type": "double",
  622. "value": 250
  623. },
  624. "cornerRadius": {
  625. "type": "double",
  626. "value": 1
  627. },
  628. "style": {
  629. "type": "map<string,string>",
  630. "value": {
  631. "fill": "#ffffff",
  632. "stroke": "#008000",
  633. "stroke-width": "3",
  634. "stroke-linecap": "butt",
  635. "stroke-linejoin": "miter",
  636. "stroke-miterlimit": "4",
  637. "stroke-opacity": "1",
  638. "fill-opacity": "0.5"
  639. }
  640. },
  641. "mapper": {
  642. "type": "code",
  643. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  644. },
  645. "parser": {
  646. "type": "code",
  647. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  648. },
  649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  650. "position": {
  651. "type": "list<double>",
  652. "value": [
  653. 2,
  654. 24
  655. ]
  656. },
  657. "orientation": {
  658. "type": "double",
  659. "value": 0
  660. },
  661. "scale": {
  662. "type": "list<double>",
  663. "value": [
  664. 1,
  665. 1
  666. ]
  667. }
  668. },
  669. "894": {
  670. "width": {
  671. "type": "double",
  672. "value": 290
  673. },
  674. "height": {
  675. "type": "double",
  676. "value": 240
  677. },
  678. "cornerRadius": {
  679. "type": "double",
  680. "value": 1
  681. },
  682. "style": {
  683. "type": "map<string,string>",
  684. "value": {
  685. "fill": "none",
  686. "stroke": "#008000",
  687. "stroke-width": "3",
  688. "stroke-linecap": "butt",
  689. "stroke-linejoin": "miter",
  690. "stroke-miterlimit": "4",
  691. "stroke-opacity": "1",
  692. "fill-opacity": "0.5"
  693. }
  694. },
  695. "mapper": {
  696. "type": "code",
  697. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  698. },
  699. "parser": {
  700. "type": "code",
  701. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  702. },
  703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  704. "position": {
  705. "type": "list<double>",
  706. "value": [
  707. 7,
  708. 29
  709. ]
  710. },
  711. "orientation": {
  712. "type": "double",
  713. "value": 0
  714. },
  715. "scale": {
  716. "type": "list<double>",
  717. "value": [
  718. 1,
  719. 1
  720. ]
  721. }
  722. },
  723. "895": {
  724. "textContent": {
  725. "type": "string",
  726. "value": ":"
  727. },
  728. "style": {
  729. "type": "map<string,string>",
  730. "value": {
  731. "font-size": "20px",
  732. "font-style": "normal",
  733. "font-variant": "normal",
  734. "font-weight": "bold",
  735. "font-stretch": "normal",
  736. "text-align": "left",
  737. "line-height": "125%",
  738. "writing-mode": "lr-tb",
  739. "text-anchor": "left",
  740. "fill": "#008000",
  741. "fill-opacity": "1",
  742. "stroke": "none",
  743. "font-family": "Arial"
  744. }
  745. },
  746. "mapper": {
  747. "type": "code",
  748. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  749. },
  750. "parser": {
  751. "type": "code",
  752. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  753. },
  754. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  755. "position": {
  756. "type": "list<double>",
  757. "value": [
  758. 46,
  759. 37
  760. ]
  761. },
  762. "orientation": {
  763. "type": "double",
  764. "value": 0
  765. },
  766. "scale": {
  767. "type": "list<double>",
  768. "value": [
  769. 1,
  770. 1
  771. ]
  772. }
  773. },
  774. "896": {
  775. "textContent": {
  776. "type": "string",
  777. "value": "LQSRule"
  778. },
  779. "style": {
  780. "type": "map<string,string>",
  781. "value": {
  782. "font-size": "20px",
  783. "font-style": "normal",
  784. "font-variant": "normal",
  785. "font-weight": "bold",
  786. "font-stretch": "normal",
  787. "text-align": "left",
  788. "line-height": "125%",
  789. "writing-mode": "lr-tb",
  790. "text-anchor": "left",
  791. "fill": "#008000",
  792. "fill-opacity": "1",
  793. "stroke": "none",
  794. "font-family": "Arial"
  795. }
  796. },
  797. "mapper": {
  798. "type": "code",
  799. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  800. },
  801. "parser": {
  802. "type": "code",
  803. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  804. },
  805. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  806. "position": {
  807. "type": "list<double>",
  808. "value": [
  809. 53,
  810. 37
  811. ]
  812. },
  813. "orientation": {
  814. "type": "double",
  815. "value": 0
  816. },
  817. "scale": {
  818. "type": "list<double>",
  819. "value": [
  820. 1,
  821. 1
  822. ]
  823. }
  824. },
  825. "897": {
  826. "segments": {
  827. "type": "string",
  828. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  829. },
  830. "style": {
  831. "type": "map<string,string>",
  832. "value": {
  833. "fill": "none",
  834. "stroke": "#008000",
  835. "stroke-width": "3",
  836. "stroke-linecap": "round",
  837. "stroke-linejoin": "round",
  838. "stroke-miterlimit": "4",
  839. "stroke-opacity": "1",
  840. "stroke-dasharray": "none"
  841. }
  842. },
  843. "mapper": {
  844. "type": "code",
  845. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  846. },
  847. "parser": {
  848. "type": "code",
  849. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  850. },
  851. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  852. "position": {
  853. "type": "list<double>",
  854. "value": [
  855. 192,
  856. 276
  857. ]
  858. },
  859. "orientation": {
  860. "type": "double",
  861. "value": 0
  862. },
  863. "scale": {
  864. "type": "list<double>",
  865. "value": [
  866. 1,
  867. 1
  868. ]
  869. }
  870. },
  871. "898": {
  872. "segments": {
  873. "type": "string",
  874. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  875. },
  876. "style": {
  877. "type": "map<string,string>",
  878. "value": {
  879. "fill": "none",
  880. "stroke": "#008000",
  881. "stroke-width": "3",
  882. "stroke-linecap": "round",
  883. "stroke-linejoin": "round",
  884. "stroke-miterlimit": "4",
  885. "stroke-opacity": "1",
  886. "stroke-dasharray": "none"
  887. }
  888. },
  889. "mapper": {
  890. "type": "code",
  891. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  892. },
  893. "parser": {
  894. "type": "code",
  895. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  896. },
  897. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  898. "position": {
  899. "type": "list<double>",
  900. "value": [
  901. 95,
  902. 276
  903. ]
  904. },
  905. "orientation": {
  906. "type": "double",
  907. "value": 0
  908. },
  909. "scale": {
  910. "type": "list<double>",
  911. "value": [
  912. 1,
  913. 1
  914. ]
  915. }
  916. },
  917. "899": {
  918. "segments": {
  919. "type": "string",
  920. "value": "m0,0l290,0"
  921. },
  922. "style": {
  923. "type": "map<string,string>",
  924. "value": {
  925. "stroke": "#008000",
  926. "stroke-dasharray": "",
  927. "fill": "#ffffff",
  928. "fill-opacity": 0.75,
  929. "font-size": "20px",
  930. "stroke-width": 3,
  931. "arrow-start": "none",
  932. "arrow-end": "none"
  933. }
  934. },
  935. "mapper": {
  936. "type": "code",
  937. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  938. },
  939. "parser": {
  940. "type": "code",
  941. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  942. },
  943. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  944. "position": {
  945. "type": "list<double>",
  946. "value": [
  947. 6,
  948. 151
  949. ]
  950. },
  951. "orientation": {
  952. "type": "double",
  953. "value": 0
  954. },
  955. "scale": {
  956. "type": "list<double>",
  957. "value": [
  958. 1,
  959. 1
  960. ]
  961. }
  962. },
  963. "900": {
  964. "textContent": {
  965. "type": "string",
  966. "value": ""
  967. },
  968. "style": {
  969. "type": "map<string,string>",
  970. "value": {
  971. "font-size": "20px",
  972. "font-style": "normal",
  973. "font-variant": "normal",
  974. "font-weight": "bold",
  975. "font-stretch": "normal",
  976. "text-align": "left",
  977. "line-height": "125%",
  978. "writing-mode": "lr-tb",
  979. "text-anchor": "left",
  980. "fill": "#008000",
  981. "fill-opacity": "1",
  982. "stroke": "none",
  983. "font-family": "Arial"
  984. }
  985. },
  986. "mapper": {
  987. "type": "code",
  988. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  989. },
  990. "parser": {
  991. "type": "code",
  992. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  993. },
  994. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  995. "position": {
  996. "type": "list<double>",
  997. "value": [
  998. 13,
  999. 37
  1000. ]
  1001. },
  1002. "orientation": {
  1003. "type": "double",
  1004. "value": 0
  1005. },
  1006. "scale": {
  1007. "type": "list<double>",
  1008. "value": [
  1009. 1,
  1010. 1
  1011. ]
  1012. }
  1013. },
  1014. "901": {
  1015. "segments": {
  1016. "type": "string",
  1017. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  1018. },
  1019. "style": {
  1020. "type": "map<string,string>",
  1021. "value": {
  1022. "fill": "none",
  1023. "stroke": "#008000",
  1024. "stroke-width": "3",
  1025. "stroke-linecap": "butt",
  1026. "stroke-linejoin": "miter",
  1027. "stroke-miterlimit": "4",
  1028. "stroke-opacity": "1"
  1029. }
  1030. },
  1031. "mapper": {
  1032. "type": "code",
  1033. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1034. },
  1035. "parser": {
  1036. "type": "code",
  1037. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1038. },
  1039. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1040. "position": {
  1041. "type": "list<double>",
  1042. "value": [
  1043. 146,
  1044. 1
  1045. ]
  1046. },
  1047. "orientation": {
  1048. "type": "double",
  1049. "value": 0
  1050. },
  1051. "scale": {
  1052. "type": "list<double>",
  1053. "value": [
  1054. 1,
  1055. 1
  1056. ]
  1057. }
  1058. },
  1059. "902": {
  1060. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1061. "position": {
  1062. "type": "list<double>",
  1063. "value": [
  1064. 20.861485400667107,
  1065. 42.60135036424299
  1066. ]
  1067. },
  1068. "orientation": {
  1069. "type": "double",
  1070. "value": 0
  1071. },
  1072. "scale": {
  1073. "type": "list<double>",
  1074. "value": [
  1075. 1,
  1076. 1
  1077. ]
  1078. },
  1079. "link-style": {
  1080. "type": "map<string,string>",
  1081. "value": {
  1082. "stroke": "#00ffff",
  1083. "stroke-dasharray": "",
  1084. "stroke-opacity": 0.1,
  1085. "stroke-width": 1
  1086. }
  1087. }
  1088. },
  1089. "903": {
  1090. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1091. "position": {
  1092. "type": "list<double>",
  1093. "value": [
  1094. 28.380101318328116,
  1095. 42.57653018725193
  1096. ]
  1097. },
  1098. "orientation": {
  1099. "type": "double",
  1100. "value": 0
  1101. },
  1102. "scale": {
  1103. "type": "list<double>",
  1104. "value": [
  1105. 1,
  1106. 1
  1107. ]
  1108. },
  1109. "link-style": {
  1110. "type": "map<string,string>",
  1111. "value": {
  1112. "stroke": "#00ffff",
  1113. "stroke-dasharray": "",
  1114. "stroke-opacity": 0.1,
  1115. "stroke-width": 1
  1116. }
  1117. }
  1118. },
  1119. "904": {
  1120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1121. "position": {
  1122. "type": "list<double>",
  1123. "value": [
  1124. 42.75,
  1125. 42.5
  1126. ]
  1127. },
  1128. "orientation": {
  1129. "type": "double",
  1130. "value": 0
  1131. },
  1132. "scale": {
  1133. "type": "list<double>",
  1134. "value": [
  1135. 1,
  1136. 1
  1137. ]
  1138. },
  1139. "link-style": {
  1140. "type": "map<string,string>",
  1141. "value": {
  1142. "stroke": "#00ffff",
  1143. "stroke-dasharray": "",
  1144. "stroke-opacity": 0.1,
  1145. "stroke-width": 1
  1146. }
  1147. }
  1148. },
  1149. "905": {
  1150. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1151. "position": {
  1152. "type": "list<double>",
  1153. "value": [
  1154. 77.12784085406292,
  1155. 71.57926132951911
  1156. ]
  1157. },
  1158. "orientation": {
  1159. "type": "double",
  1160. "value": 0
  1161. },
  1162. "scale": {
  1163. "type": "list<double>",
  1164. "value": [
  1165. 1,
  1166. 1
  1167. ]
  1168. },
  1169. "link-style": {
  1170. "type": "map<string,string>",
  1171. "value": {
  1172. "stroke": "#00ffff",
  1173. "stroke-dasharray": "",
  1174. "stroke-opacity": 0.1,
  1175. "stroke-width": 1
  1176. }
  1177. }
  1178. },
  1179. "906": {
  1180. "textContent": {
  1181. "type": "string",
  1182. "value": "*"
  1183. },
  1184. "style": {
  1185. "type": "map<string,string>",
  1186. "value": {
  1187. "font-size": "35px",
  1188. "font-style": "normal",
  1189. "font-variant": "normal",
  1190. "font-weight": "bold",
  1191. "font-stretch": "normal",
  1192. "text-align": "left",
  1193. "line-height": "100%",
  1194. "writing-mode": "lr-tb",
  1195. "text-anchor": "left",
  1196. "fill": "#008000",
  1197. "fill-opacity": "1",
  1198. "stroke": "none",
  1199. "font-family": "Arial"
  1200. }
  1201. },
  1202. "mapper": {
  1203. "type": "code",
  1204. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1205. },
  1206. "parser": {
  1207. "type": "code",
  1208. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1209. },
  1210. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1211. "position": {
  1212. "type": "list<double>",
  1213. "value": [
  1214. 281,
  1215. 27
  1216. ]
  1217. },
  1218. "orientation": {
  1219. "type": "double",
  1220. "value": 0
  1221. },
  1222. "scale": {
  1223. "type": "list<double>",
  1224. "value": [
  1225. 1,
  1226. 1
  1227. ]
  1228. }
  1229. },
  1230. "1099": {
  1231. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1232. "position": {
  1233. "type": "list<double>",
  1234. "value": [
  1235. 144.649999975377,
  1236. 35.51105262976455
  1237. ]
  1238. },
  1239. "orientation": {
  1240. "type": "double",
  1241. "value": 0
  1242. },
  1243. "scale": {
  1244. "type": "list<double>",
  1245. "value": [
  1246. 1,
  1247. 1
  1248. ]
  1249. },
  1250. "link-style": {
  1251. "type": "map<string,string>",
  1252. "value": {
  1253. "stroke": "#00ffff",
  1254. "stroke-dasharray": "",
  1255. "stroke-opacity": 0.1,
  1256. "stroke-width": 1
  1257. }
  1258. }
  1259. }
  1260. },
  1261. "edges": [
  1262. {
  1263. "src": "894",
  1264. "dest": "902"
  1265. },
  1266. {
  1267. "src": "902",
  1268. "dest": "900"
  1269. },
  1270. {
  1271. "src": "894",
  1272. "dest": "903"
  1273. },
  1274. {
  1275. "src": "903",
  1276. "dest": "895"
  1277. },
  1278. {
  1279. "src": "894",
  1280. "dest": "904"
  1281. },
  1282. {
  1283. "src": "904",
  1284. "dest": "896"
  1285. },
  1286. {
  1287. "src": "893",
  1288. "dest": "905"
  1289. },
  1290. {
  1291. "src": "905",
  1292. "dest": "899"
  1293. },
  1294. {
  1295. "src": "893",
  1296. "dest": "1099"
  1297. },
  1298. {
  1299. "src": "1099",
  1300. "dest": "906"
  1301. }
  1302. ]
  1303. }
  1304. },
  1305. "$asuri": {
  1306. "type": "string",
  1307. "value": "/Formalisms/__Transformations__/Transformation/MoTif/LQSRule/101.instance"
  1308. },
  1309. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LQSRuleIcon"
  1310. },
  1311. "105": {
  1312. "link-style": {
  1313. "type": "map<string,string>",
  1314. "value": {
  1315. "stroke": "#008080",
  1316. "stroke-dasharray": "",
  1317. "stroke-opacity": 1,
  1318. "stroke-width": 2
  1319. }
  1320. },
  1321. "arrowHead": {
  1322. "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)",
  1323. "value": "custom"
  1324. },
  1325. "arrowTail": {
  1326. "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)",
  1327. "value": "arrow-black"
  1328. },
  1329. "typename": {
  1330. "type": "string",
  1331. "value": "successLink"
  1332. },
  1333. "position": {
  1334. "type": "list<double>",
  1335. "value": [
  1336. 621.5,
  1337. 617
  1338. ]
  1339. },
  1340. "orientation": {
  1341. "type": "double",
  1342. "value": 0
  1343. },
  1344. "scale": {
  1345. "type": "list<double>",
  1346. "value": [
  1347. 1,
  1348. 1
  1349. ]
  1350. },
  1351. "mapper": {
  1352. "type": "code",
  1353. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1354. },
  1355. "parser": {
  1356. "type": "code",
  1357. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1358. },
  1359. "$contents": {
  1360. "type": "map<string,*>",
  1361. "value": {
  1362. "nodes": {
  1363. "267": {
  1364. "segments": {
  1365. "type": "string",
  1366. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1367. },
  1368. "style": {
  1369. "type": "map<string,string>",
  1370. "value": {
  1371. "stroke": "#000000",
  1372. "fill": "#000000",
  1373. "opacity": 0,
  1374. "stroke-width": 1
  1375. }
  1376. },
  1377. "mapper": {
  1378. "type": "code",
  1379. "value": ""
  1380. },
  1381. "parser": {
  1382. "type": "code",
  1383. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1384. },
  1385. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1386. "position": {
  1387. "type": "list<double>",
  1388. "value": [
  1389. "0;0.492752431614349,-6.0235253963660815%",
  1390. "0;58.24068254379756,99.81842085406547%"
  1391. ]
  1392. },
  1393. "orientation": {
  1394. "type": "double",
  1395. "value": "0;93.45331625053113"
  1396. },
  1397. "scale": {
  1398. "type": "list<double>",
  1399. "value": [
  1400. 1,
  1401. 1
  1402. ]
  1403. },
  1404. "arrow": "arrowTail",
  1405. "arrowType": "arrow-black",
  1406. "$linkDecoratorInfo": {
  1407. "type": "map<string,double>",
  1408. "value": {
  1409. "xratio": 1,
  1410. "yoffset": -4
  1411. }
  1412. }
  1413. },
  1414. "268": {
  1415. "segments": {
  1416. "type": "string",
  1417. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1418. },
  1419. "style": {
  1420. "type": "map<string,string>",
  1421. "value": {
  1422. "stroke": "#000000",
  1423. "fill": "#000000",
  1424. "opacity": 0,
  1425. "stroke-width": 1
  1426. }
  1427. },
  1428. "mapper": {
  1429. "type": "code",
  1430. "value": ""
  1431. },
  1432. "parser": {
  1433. "type": "code",
  1434. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1435. },
  1436. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1437. "position": {
  1438. "type": "list<double>",
  1439. "value": [
  1440. "0;6.481857682858276,-6.0235253963660815%",
  1441. "0;58.602094067579515,99.81842085406547%"
  1442. ]
  1443. },
  1444. "orientation": {
  1445. "type": "double",
  1446. "value": "0;93.45331625053113"
  1447. },
  1448. "scale": {
  1449. "type": "list<double>",
  1450. "value": [
  1451. 1,
  1452. 1
  1453. ]
  1454. },
  1455. "arrow": "arrowTail",
  1456. "arrowType": "diamond-black-large",
  1457. "$linkDecoratorInfo": {
  1458. "type": "map<string,double>",
  1459. "value": {
  1460. "xratio": 1,
  1461. "yoffset": -10
  1462. }
  1463. }
  1464. },
  1465. "269": {
  1466. "r": {
  1467. "type": "double",
  1468. "value": 10
  1469. },
  1470. "style": {
  1471. "type": "map<string,string>",
  1472. "value": {
  1473. "stroke": "#000000",
  1474. "fill": "#000000",
  1475. "opacity": 0,
  1476. "stroke-width": 1
  1477. }
  1478. },
  1479. "mapper": {
  1480. "type": "code",
  1481. "value": ""
  1482. },
  1483. "parser": {
  1484. "type": "code",
  1485. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1486. },
  1487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1488. "position": {
  1489. "type": "list<double>",
  1490. "value": [
  1491. "0;6.481857682858276,-6.0235253963660815%",
  1492. "0;58.602094067579515,99.81842085406547%"
  1493. ]
  1494. },
  1495. "orientation": {
  1496. "type": "double",
  1497. "value": "0;93.45331625053113"
  1498. },
  1499. "scale": {
  1500. "type": "list<double>",
  1501. "value": [
  1502. 1,
  1503. 1
  1504. ]
  1505. },
  1506. "arrow": "arrowTail",
  1507. "arrowType": "circle-black-large",
  1508. "$linkDecoratorInfo": {
  1509. "type": "map<string,double>",
  1510. "value": {
  1511. "xratio": 1,
  1512. "yoffset": -10
  1513. }
  1514. }
  1515. },
  1516. "270": {
  1517. "r": {
  1518. "type": "double",
  1519. "value": 10
  1520. },
  1521. "style": {
  1522. "type": "map<string,string>",
  1523. "value": {
  1524. "stroke": "#000000",
  1525. "fill": "#ffffff",
  1526. "opacity": 0,
  1527. "stroke-width": 1
  1528. }
  1529. },
  1530. "mapper": {
  1531. "type": "code",
  1532. "value": ""
  1533. },
  1534. "parser": {
  1535. "type": "code",
  1536. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1537. },
  1538. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1539. "position": {
  1540. "type": "list<double>",
  1541. "value": [
  1542. "0;6.481857682858276,-6.0235253963660815%",
  1543. "0;58.602094067579515,99.81842085406547%"
  1544. ]
  1545. },
  1546. "orientation": {
  1547. "type": "double",
  1548. "value": "0;93.45331625053113"
  1549. },
  1550. "scale": {
  1551. "type": "list<double>",
  1552. "value": [
  1553. 1,
  1554. 1
  1555. ]
  1556. },
  1557. "arrow": "arrowTail",
  1558. "arrowType": "circle-white-large",
  1559. "$linkDecoratorInfo": {
  1560. "type": "map<string,double>",
  1561. "value": {
  1562. "xratio": 1,
  1563. "yoffset": -10
  1564. }
  1565. }
  1566. },
  1567. "271": {
  1568. "r": {
  1569. "type": "double",
  1570. "value": 5
  1571. },
  1572. "style": {
  1573. "type": "map<string,string>",
  1574. "value": {
  1575. "stroke": "#000000",
  1576. "fill": "#000000",
  1577. "opacity": 0,
  1578. "stroke-width": 1
  1579. }
  1580. },
  1581. "mapper": {
  1582. "type": "code",
  1583. "value": ""
  1584. },
  1585. "parser": {
  1586. "type": "code",
  1587. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1588. },
  1589. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1590. "position": {
  1591. "type": "list<double>",
  1592. "value": [
  1593. "0;1.4909366401549278,-6.0235253963660815%",
  1594. "0;58.300917797761144,99.81842085406547%"
  1595. ]
  1596. },
  1597. "orientation": {
  1598. "type": "double",
  1599. "value": "0;93.45331625053113"
  1600. },
  1601. "scale": {
  1602. "type": "list<double>",
  1603. "value": [
  1604. 1,
  1605. 1
  1606. ]
  1607. },
  1608. "arrow": "arrowTail",
  1609. "arrowType": "circle-black",
  1610. "$linkDecoratorInfo": {
  1611. "type": "map<string,double>",
  1612. "value": {
  1613. "xratio": 1,
  1614. "yoffset": -5
  1615. }
  1616. }
  1617. },
  1618. "272": {
  1619. "segments": {
  1620. "type": "string",
  1621. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1622. },
  1623. "style": {
  1624. "type": "map<string,string>",
  1625. "value": {
  1626. "stroke": "#000000",
  1627. "fill": "#000000",
  1628. "opacity": 0,
  1629. "stroke-width": 1
  1630. }
  1631. },
  1632. "mapper": {
  1633. "type": "code",
  1634. "value": ""
  1635. },
  1636. "parser": {
  1637. "type": "code",
  1638. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1639. },
  1640. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1641. "position": {
  1642. "type": "list<double>",
  1643. "value": [
  1644. "0;1.4909366401549278,-6.0235253963660815%",
  1645. "0;58.300917797761144,99.81842085406547%"
  1646. ]
  1647. },
  1648. "orientation": {
  1649. "type": "double",
  1650. "value": "0;93.45331625053113"
  1651. },
  1652. "scale": {
  1653. "type": "list<double>",
  1654. "value": [
  1655. 1,
  1656. 1
  1657. ]
  1658. },
  1659. "arrow": "arrowTail",
  1660. "arrowType": "diamond-black",
  1661. "$linkDecoratorInfo": {
  1662. "type": "map<string,double>",
  1663. "value": {
  1664. "xratio": 1,
  1665. "yoffset": -5
  1666. }
  1667. }
  1668. },
  1669. "273": {
  1670. "segments": {
  1671. "type": "string",
  1672. "value": "m0,0 l20,10 l-20,10 z"
  1673. },
  1674. "style": {
  1675. "type": "map<string,string>",
  1676. "value": {
  1677. "stroke": "#000000",
  1678. "fill": "#000000",
  1679. "opacity": 0,
  1680. "stroke-width": 1
  1681. }
  1682. },
  1683. "mapper": {
  1684. "type": "code",
  1685. "value": ""
  1686. },
  1687. "parser": {
  1688. "type": "code",
  1689. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1690. },
  1691. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1692. "position": {
  1693. "type": "list<double>",
  1694. "value": [
  1695. "0;6.481857682858276,-6.0235253963660815%",
  1696. "0;58.602094067579515,99.81842085406547%"
  1697. ]
  1698. },
  1699. "orientation": {
  1700. "type": "double",
  1701. "value": "0;93.45331625053113"
  1702. },
  1703. "scale": {
  1704. "type": "list<double>",
  1705. "value": [
  1706. 1,
  1707. 1
  1708. ]
  1709. },
  1710. "arrow": "arrowTail",
  1711. "arrowType": "triangle-black-large",
  1712. "$linkDecoratorInfo": {
  1713. "type": "map<string,double>",
  1714. "value": {
  1715. "xratio": 1,
  1716. "yoffset": -10
  1717. }
  1718. }
  1719. },
  1720. "274": {
  1721. "segments": {
  1722. "type": "string",
  1723. "value": "m0,0 l10,4 l-10,4 z"
  1724. },
  1725. "style": {
  1726. "type": "map<string,string>",
  1727. "value": {
  1728. "stroke": "#000000",
  1729. "fill": "#000000",
  1730. "opacity": 0,
  1731. "stroke-width": 1
  1732. }
  1733. },
  1734. "mapper": {
  1735. "type": "code",
  1736. "value": ""
  1737. },
  1738. "parser": {
  1739. "type": "code",
  1740. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1741. },
  1742. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1743. "position": {
  1744. "type": "list<double>",
  1745. "value": [
  1746. "0;0.492752431614349,-6.0235253963660815%",
  1747. "0;58.24068254379756,99.81842085406547%"
  1748. ]
  1749. },
  1750. "orientation": {
  1751. "type": "double",
  1752. "value": "0;93.45331625053113"
  1753. },
  1754. "scale": {
  1755. "type": "list<double>",
  1756. "value": [
  1757. 1,
  1758. 1
  1759. ]
  1760. },
  1761. "arrow": "arrowTail",
  1762. "arrowType": "triangle-black",
  1763. "$linkDecoratorInfo": {
  1764. "type": "map<string,double>",
  1765. "value": {
  1766. "xratio": 1,
  1767. "yoffset": -4
  1768. }
  1769. }
  1770. },
  1771. "275": {
  1772. "segments": {
  1773. "type": "string",
  1774. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1775. },
  1776. "style": {
  1777. "type": "map<string,string>",
  1778. "value": {
  1779. "stroke": "#000000",
  1780. "fill": "#000000",
  1781. "opacity": 0,
  1782. "stroke-width": 1
  1783. }
  1784. },
  1785. "mapper": {
  1786. "type": "code",
  1787. "value": ""
  1788. },
  1789. "parser": {
  1790. "type": "code",
  1791. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1792. },
  1793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1794. "position": {
  1795. "type": "list<double>",
  1796. "value": [
  1797. "0;4.485489265776891,-6.0235253963660815%",
  1798. "0;58.48162355965212,99.81842085406547%"
  1799. ]
  1800. },
  1801. "orientation": {
  1802. "type": "double",
  1803. "value": "0;93.45331625053113"
  1804. },
  1805. "scale": {
  1806. "type": "list<double>",
  1807. "value": [
  1808. 1,
  1809. 1
  1810. ]
  1811. },
  1812. "arrow": "arrowTail",
  1813. "arrowType": "arrow-black-large",
  1814. "$linkDecoratorInfo": {
  1815. "type": "map<string,double>",
  1816. "value": {
  1817. "xratio": 1,
  1818. "yoffset": -8
  1819. }
  1820. }
  1821. },
  1822. "276": {
  1823. "segments": {
  1824. "type": "string",
  1825. "value": "m0,0 l20,10 l-20,10 z"
  1826. },
  1827. "style": {
  1828. "type": "map<string,string>",
  1829. "value": {
  1830. "stroke": "#000000",
  1831. "fill": "#ffffff",
  1832. "opacity": 0,
  1833. "stroke-width": 1
  1834. }
  1835. },
  1836. "mapper": {
  1837. "type": "code",
  1838. "value": ""
  1839. },
  1840. "parser": {
  1841. "type": "code",
  1842. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1843. },
  1844. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1845. "position": {
  1846. "type": "list<double>",
  1847. "value": [
  1848. "0;6.481857682858276,-6.0235253963660815%",
  1849. "0;58.602094067579515,99.81842085406547%"
  1850. ]
  1851. },
  1852. "orientation": {
  1853. "type": "double",
  1854. "value": "0;93.45331625053113"
  1855. },
  1856. "scale": {
  1857. "type": "list<double>",
  1858. "value": [
  1859. 1,
  1860. 1
  1861. ]
  1862. },
  1863. "arrow": "arrowTail",
  1864. "arrowType": "triangle-white-large",
  1865. "$linkDecoratorInfo": {
  1866. "type": "map<string,double>",
  1867. "value": {
  1868. "xratio": 1,
  1869. "yoffset": -10
  1870. }
  1871. }
  1872. },
  1873. "277": {
  1874. "segments": {
  1875. "type": "string",
  1876. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1877. },
  1878. "style": {
  1879. "type": "map<string,string>",
  1880. "value": {
  1881. "stroke": "#000000",
  1882. "fill": "#ffffff",
  1883. "opacity": 0,
  1884. "stroke-width": 1
  1885. }
  1886. },
  1887. "mapper": {
  1888. "type": "code",
  1889. "value": ""
  1890. },
  1891. "parser": {
  1892. "type": "code",
  1893. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1894. },
  1895. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1896. "position": {
  1897. "type": "list<double>",
  1898. "value": [
  1899. "0;1.4909366401549278,-6.0235253963660815%",
  1900. "0;58.300917797761144,99.81842085406547%"
  1901. ]
  1902. },
  1903. "orientation": {
  1904. "type": "double",
  1905. "value": "0;93.45331625053113"
  1906. },
  1907. "scale": {
  1908. "type": "list<double>",
  1909. "value": [
  1910. 1,
  1911. 1
  1912. ]
  1913. },
  1914. "arrow": "arrowTail",
  1915. "arrowType": "diamond-white",
  1916. "$linkDecoratorInfo": {
  1917. "type": "map<string,double>",
  1918. "value": {
  1919. "xratio": 1,
  1920. "yoffset": -5
  1921. }
  1922. }
  1923. },
  1924. "278": {
  1925. "segments": {
  1926. "type": "string",
  1927. "value": "m0,0 l20,8 l-20,8"
  1928. },
  1929. "style": {
  1930. "type": "map<string,string>",
  1931. "value": {
  1932. "stroke": "#000000",
  1933. "fill": "#000000",
  1934. "fill-opacity": 0,
  1935. "stroke-width": 1,
  1936. "opacity": 0
  1937. }
  1938. },
  1939. "mapper": {
  1940. "type": "code",
  1941. "value": ""
  1942. },
  1943. "parser": {
  1944. "type": "code",
  1945. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1946. },
  1947. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1948. "position": {
  1949. "type": "list<double>",
  1950. "value": [
  1951. "0;4.485489265776891,-6.0235253963660815%",
  1952. "0;58.48162355965212,99.81842085406547%"
  1953. ]
  1954. },
  1955. "orientation": {
  1956. "type": "double",
  1957. "value": "0;93.45331625053113"
  1958. },
  1959. "scale": {
  1960. "type": "list<double>",
  1961. "value": [
  1962. 1,
  1963. 1
  1964. ]
  1965. },
  1966. "arrow": "arrowTail",
  1967. "arrowType": "arrow-empty-large",
  1968. "$linkDecoratorInfo": {
  1969. "type": "map<string,double>",
  1970. "value": {
  1971. "xratio": 1,
  1972. "yoffset": -8
  1973. }
  1974. }
  1975. },
  1976. "279": {
  1977. "r": {
  1978. "type": "double",
  1979. "value": 5
  1980. },
  1981. "style": {
  1982. "type": "map<string,string>",
  1983. "value": {
  1984. "stroke": "#000000",
  1985. "fill": "#ffffff",
  1986. "opacity": 0,
  1987. "stroke-width": 1
  1988. }
  1989. },
  1990. "mapper": {
  1991. "type": "code",
  1992. "value": ""
  1993. },
  1994. "parser": {
  1995. "type": "code",
  1996. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1997. },
  1998. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1999. "position": {
  2000. "type": "list<double>",
  2001. "value": [
  2002. "0;1.4909366401549278,-6.0235253963660815%",
  2003. "0;58.300917797761144,99.81842085406547%"
  2004. ]
  2005. },
  2006. "orientation": {
  2007. "type": "double",
  2008. "value": "0;93.45331625053113"
  2009. },
  2010. "scale": {
  2011. "type": "list<double>",
  2012. "value": [
  2013. 1,
  2014. 1
  2015. ]
  2016. },
  2017. "arrow": "arrowTail",
  2018. "arrowType": "circle-white",
  2019. "$linkDecoratorInfo": {
  2020. "type": "map<string,double>",
  2021. "value": {
  2022. "xratio": 1,
  2023. "yoffset": -5
  2024. }
  2025. }
  2026. },
  2027. "280": {
  2028. "segments": {
  2029. "type": "string",
  2030. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2031. },
  2032. "style": {
  2033. "type": "map<string,string>",
  2034. "value": {
  2035. "stroke": "#000000",
  2036. "fill": "#ffffff",
  2037. "opacity": 0,
  2038. "stroke-width": 1
  2039. }
  2040. },
  2041. "mapper": {
  2042. "type": "code",
  2043. "value": ""
  2044. },
  2045. "parser": {
  2046. "type": "code",
  2047. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2048. },
  2049. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2050. "position": {
  2051. "type": "list<double>",
  2052. "value": [
  2053. "0;6.481857682858276,-6.0235253963660815%",
  2054. "0;58.602094067579515,99.81842085406547%"
  2055. ]
  2056. },
  2057. "orientation": {
  2058. "type": "double",
  2059. "value": "0;93.45331625053113"
  2060. },
  2061. "scale": {
  2062. "type": "list<double>",
  2063. "value": [
  2064. 1,
  2065. 1
  2066. ]
  2067. },
  2068. "arrow": "arrowTail",
  2069. "arrowType": "diamond-white-large",
  2070. "$linkDecoratorInfo": {
  2071. "type": "map<string,double>",
  2072. "value": {
  2073. "xratio": 1,
  2074. "yoffset": -10
  2075. }
  2076. }
  2077. },
  2078. "281": {
  2079. "segments": {
  2080. "type": "string",
  2081. "value": "m0,0 l10,4 l-10,4"
  2082. },
  2083. "style": {
  2084. "type": "map<string,string>",
  2085. "value": {
  2086. "stroke": "#000000",
  2087. "fill": "#000000",
  2088. "fill-opacity": 0,
  2089. "stroke-width": 1,
  2090. "opacity": 0
  2091. }
  2092. },
  2093. "mapper": {
  2094. "type": "code",
  2095. "value": ""
  2096. },
  2097. "parser": {
  2098. "type": "code",
  2099. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2100. },
  2101. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2102. "position": {
  2103. "type": "list<double>",
  2104. "value": [
  2105. "0;0.492752431614349,-6.0235253963660815%",
  2106. "0;58.24068254379756,99.81842085406547%"
  2107. ]
  2108. },
  2109. "orientation": {
  2110. "type": "double",
  2111. "value": "0;93.45331625053113"
  2112. },
  2113. "scale": {
  2114. "type": "list<double>",
  2115. "value": [
  2116. 1,
  2117. 1
  2118. ]
  2119. },
  2120. "arrow": "arrowTail",
  2121. "arrowType": "arrow-empty",
  2122. "$linkDecoratorInfo": {
  2123. "type": "map<string,double>",
  2124. "value": {
  2125. "xratio": 1,
  2126. "yoffset": -4
  2127. }
  2128. }
  2129. },
  2130. "282": {
  2131. "segments": {
  2132. "type": "string",
  2133. "value": "m0,0 l10,5 l-10,5 z"
  2134. },
  2135. "style": {
  2136. "type": "map<string,string>",
  2137. "value": {
  2138. "stroke": "#000000",
  2139. "fill": "#ffffff",
  2140. "opacity": 0,
  2141. "stroke-width": 1
  2142. }
  2143. },
  2144. "mapper": {
  2145. "type": "code",
  2146. "value": ""
  2147. },
  2148. "parser": {
  2149. "type": "code",
  2150. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2151. },
  2152. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2153. "position": {
  2154. "type": "list<double>",
  2155. "value": [
  2156. "0;1.4909366401549278,-6.0235253963660815%",
  2157. "0;58.300917797761144,99.81842085406547%"
  2158. ]
  2159. },
  2160. "orientation": {
  2161. "type": "double",
  2162. "value": "0;93.45331625053113"
  2163. },
  2164. "scale": {
  2165. "type": "list<double>",
  2166. "value": [
  2167. 1,
  2168. 1
  2169. ]
  2170. },
  2171. "arrow": "arrowTail",
  2172. "arrowType": "triangle-white",
  2173. "$linkDecoratorInfo": {
  2174. "type": "map<string,double>",
  2175. "value": {
  2176. "xratio": 1,
  2177. "yoffset": -5
  2178. }
  2179. }
  2180. },
  2181. "283": {
  2182. "segments": {
  2183. "type": "string",
  2184. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2185. },
  2186. "style": {
  2187. "type": "map<string,string>",
  2188. "value": {
  2189. "stroke": "#000000",
  2190. "fill": "#ffffff",
  2191. "opacity": 0,
  2192. "stroke-width": 1
  2193. }
  2194. },
  2195. "mapper": {
  2196. "type": "code",
  2197. "value": ""
  2198. },
  2199. "parser": {
  2200. "type": "code",
  2201. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2202. },
  2203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2204. "position": {
  2205. "type": "list<double>",
  2206. "value": [
  2207. "0;8.490921042703235,0%",
  2208. "0;-57.69882373018174,0%"
  2209. ]
  2210. },
  2211. "orientation": {
  2212. "type": "double",
  2213. "value": "0;93.4533162505311"
  2214. },
  2215. "scale": {
  2216. "type": "list<double>",
  2217. "value": [
  2218. 1,
  2219. 1
  2220. ]
  2221. },
  2222. "arrow": "arrowHead",
  2223. "arrowType": "diamond-white",
  2224. "$linkDecoratorInfo": {
  2225. "type": "map<string,double>",
  2226. "value": {
  2227. "xratio": -1,
  2228. "yoffset": -5
  2229. }
  2230. }
  2231. },
  2232. "284": {
  2233. "segments": {
  2234. "type": "string",
  2235. "value": "m0,0 l-10,5 l10,5 z"
  2236. },
  2237. "style": {
  2238. "type": "map<string,string>",
  2239. "value": {
  2240. "stroke": "#000000",
  2241. "fill": "#ffffff",
  2242. "opacity": 0,
  2243. "stroke-width": 1
  2244. }
  2245. },
  2246. "mapper": {
  2247. "type": "code",
  2248. "value": ""
  2249. },
  2250. "parser": {
  2251. "type": "code",
  2252. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2253. },
  2254. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2255. "position": {
  2256. "type": "list<double>",
  2257. "value": [
  2258. "0;8.490921042703235,0%",
  2259. "0;-57.69882373018174,0%"
  2260. ]
  2261. },
  2262. "orientation": {
  2263. "type": "double",
  2264. "value": "0;93.4533162505311"
  2265. },
  2266. "scale": {
  2267. "type": "list<double>",
  2268. "value": [
  2269. 1,
  2270. 1
  2271. ]
  2272. },
  2273. "arrow": "arrowHead",
  2274. "arrowType": "triangle-white",
  2275. "$linkDecoratorInfo": {
  2276. "type": "map<string,double>",
  2277. "value": {
  2278. "xratio": -1,
  2279. "yoffset": -5
  2280. }
  2281. }
  2282. },
  2283. "285": {
  2284. "segments": {
  2285. "type": "string",
  2286. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2287. },
  2288. "style": {
  2289. "type": "map<string,string>",
  2290. "value": {
  2291. "stroke": "#000000",
  2292. "fill": "#000000",
  2293. "opacity": 0,
  2294. "stroke-width": 1
  2295. }
  2296. },
  2297. "mapper": {
  2298. "type": "code",
  2299. "value": ""
  2300. },
  2301. "parser": {
  2302. "type": "code",
  2303. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2304. },
  2305. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2306. "position": {
  2307. "type": "list<double>",
  2308. "value": [
  2309. "0;8.490921042703235,0%",
  2310. "0;-57.69882373018174,0%"
  2311. ]
  2312. },
  2313. "orientation": {
  2314. "type": "double",
  2315. "value": "0;93.4533162505311"
  2316. },
  2317. "scale": {
  2318. "type": "list<double>",
  2319. "value": [
  2320. 1,
  2321. 1
  2322. ]
  2323. },
  2324. "arrow": "arrowHead",
  2325. "arrowType": "diamond-black",
  2326. "$linkDecoratorInfo": {
  2327. "type": "map<string,double>",
  2328. "value": {
  2329. "xratio": -1,
  2330. "yoffset": -5
  2331. }
  2332. }
  2333. },
  2334. "286": {
  2335. "r": {
  2336. "type": "double",
  2337. "value": 10
  2338. },
  2339. "style": {
  2340. "type": "map<string,string>",
  2341. "value": {
  2342. "stroke": "#000000",
  2343. "fill": "#000000",
  2344. "opacity": 0,
  2345. "stroke-width": 1
  2346. }
  2347. },
  2348. "mapper": {
  2349. "type": "code",
  2350. "value": ""
  2351. },
  2352. "parser": {
  2353. "type": "code",
  2354. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2355. },
  2356. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2357. "position": {
  2358. "type": "list<double>",
  2359. "value": [
  2360. "0;13.481842085406583,0%",
  2361. "0;-57.39764746036337,0%"
  2362. ]
  2363. },
  2364. "orientation": {
  2365. "type": "double",
  2366. "value": "0;93.4533162505311"
  2367. },
  2368. "scale": {
  2369. "type": "list<double>",
  2370. "value": [
  2371. 1,
  2372. 1
  2373. ]
  2374. },
  2375. "arrow": "arrowHead",
  2376. "arrowType": "circle-black-large",
  2377. "$linkDecoratorInfo": {
  2378. "type": "map<string,double>",
  2379. "value": {
  2380. "xratio": -1,
  2381. "yoffset": -10
  2382. }
  2383. }
  2384. },
  2385. "287": {
  2386. "segments": {
  2387. "type": "string",
  2388. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  2389. },
  2390. "style": {
  2391. "type": "map<string,string>",
  2392. "value": {
  2393. "stroke": "#000000",
  2394. "fill": "#000000",
  2395. "opacity": 0,
  2396. "stroke-width": 1
  2397. }
  2398. },
  2399. "mapper": {
  2400. "type": "code",
  2401. "value": ""
  2402. },
  2403. "parser": {
  2404. "type": "code",
  2405. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2406. },
  2407. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2408. "position": {
  2409. "type": "list<double>",
  2410. "value": [
  2411. "0;11.485473668325199,0%",
  2412. "0;-57.51811796829077,0%"
  2413. ]
  2414. },
  2415. "orientation": {
  2416. "type": "double",
  2417. "value": "0;93.4533162505311"
  2418. },
  2419. "scale": {
  2420. "type": "list<double>",
  2421. "value": [
  2422. 1,
  2423. 1
  2424. ]
  2425. },
  2426. "arrow": "arrowHead",
  2427. "arrowType": "arrow-black-large",
  2428. "$linkDecoratorInfo": {
  2429. "type": "map<string,double>",
  2430. "value": {
  2431. "xratio": -1,
  2432. "yoffset": -8
  2433. }
  2434. }
  2435. },
  2436. "288": {
  2437. "segments": {
  2438. "type": "string",
  2439. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  2440. },
  2441. "style": {
  2442. "type": "map<string,string>",
  2443. "value": {
  2444. "stroke": "#000000",
  2445. "fill": "#000000",
  2446. "opacity": 0,
  2447. "stroke-width": 1
  2448. }
  2449. },
  2450. "mapper": {
  2451. "type": "code",
  2452. "value": ""
  2453. },
  2454. "parser": {
  2455. "type": "code",
  2456. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2457. },
  2458. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2459. "position": {
  2460. "type": "list<double>",
  2461. "value": [
  2462. "0;7.492736834162656,0%",
  2463. "0;-57.75905898414533,0%"
  2464. ]
  2465. },
  2466. "orientation": {
  2467. "type": "double",
  2468. "value": "0;93.4533162505311"
  2469. },
  2470. "scale": {
  2471. "type": "list<double>",
  2472. "value": [
  2473. 1,
  2474. 1
  2475. ]
  2476. },
  2477. "arrow": "arrowHead",
  2478. "arrowType": "arrow-black",
  2479. "$linkDecoratorInfo": {
  2480. "type": "map<string,double>",
  2481. "value": {
  2482. "xratio": -1,
  2483. "yoffset": -4
  2484. }
  2485. }
  2486. },
  2487. "289": {
  2488. "segments": {
  2489. "type": "string",
  2490. "value": "m0,0 l-20,10 l20,10 z"
  2491. },
  2492. "style": {
  2493. "type": "map<string,string>",
  2494. "value": {
  2495. "stroke": "#000000",
  2496. "fill": "#ffffff",
  2497. "opacity": 0,
  2498. "stroke-width": 1
  2499. }
  2500. },
  2501. "mapper": {
  2502. "type": "code",
  2503. "value": ""
  2504. },
  2505. "parser": {
  2506. "type": "code",
  2507. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2508. },
  2509. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2510. "position": {
  2511. "type": "list<double>",
  2512. "value": [
  2513. "0;13.481842085406583,0%",
  2514. "0;-57.39764746036337,0%"
  2515. ]
  2516. },
  2517. "orientation": {
  2518. "type": "double",
  2519. "value": "0;93.4533162505311"
  2520. },
  2521. "scale": {
  2522. "type": "list<double>",
  2523. "value": [
  2524. 1,
  2525. 1
  2526. ]
  2527. },
  2528. "arrow": "arrowHead",
  2529. "arrowType": "triangle-white-large",
  2530. "$linkDecoratorInfo": {
  2531. "type": "map<string,double>",
  2532. "value": {
  2533. "xratio": -1,
  2534. "yoffset": -10
  2535. }
  2536. }
  2537. },
  2538. "290": {
  2539. "segments": {
  2540. "type": "string",
  2541. "value": "m0,0 l-20,10 l20,10 z"
  2542. },
  2543. "style": {
  2544. "type": "map<string,string>",
  2545. "value": {
  2546. "stroke": "#000000",
  2547. "fill": "#000000",
  2548. "opacity": 0,
  2549. "stroke-width": 1
  2550. }
  2551. },
  2552. "mapper": {
  2553. "type": "code",
  2554. "value": ""
  2555. },
  2556. "parser": {
  2557. "type": "code",
  2558. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2559. },
  2560. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2561. "position": {
  2562. "type": "list<double>",
  2563. "value": [
  2564. "0;13.481842085406583,0%",
  2565. "0;-57.39764746036337,0%"
  2566. ]
  2567. },
  2568. "orientation": {
  2569. "type": "double",
  2570. "value": "0;93.4533162505311"
  2571. },
  2572. "scale": {
  2573. "type": "list<double>",
  2574. "value": [
  2575. 1,
  2576. 1
  2577. ]
  2578. },
  2579. "arrow": "arrowHead",
  2580. "arrowType": "triangle-black-large",
  2581. "$linkDecoratorInfo": {
  2582. "type": "map<string,double>",
  2583. "value": {
  2584. "xratio": -1,
  2585. "yoffset": -10
  2586. }
  2587. }
  2588. },
  2589. "291": {
  2590. "r": {
  2591. "type": "double",
  2592. "value": 5
  2593. },
  2594. "style": {
  2595. "type": "map<string,string>",
  2596. "value": {
  2597. "stroke": "#000000",
  2598. "fill": "#000000",
  2599. "opacity": 0,
  2600. "stroke-width": 1
  2601. }
  2602. },
  2603. "mapper": {
  2604. "type": "code",
  2605. "value": ""
  2606. },
  2607. "parser": {
  2608. "type": "code",
  2609. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2610. },
  2611. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2612. "position": {
  2613. "type": "list<double>",
  2614. "value": [
  2615. "0;8.490921042703235,0%",
  2616. "0;-57.69882373018174,0%"
  2617. ]
  2618. },
  2619. "orientation": {
  2620. "type": "double",
  2621. "value": "0;93.4533162505311"
  2622. },
  2623. "scale": {
  2624. "type": "list<double>",
  2625. "value": [
  2626. 1,
  2627. 1
  2628. ]
  2629. },
  2630. "arrow": "arrowHead",
  2631. "arrowType": "circle-black",
  2632. "$linkDecoratorInfo": {
  2633. "type": "map<string,double>",
  2634. "value": {
  2635. "xratio": -1,
  2636. "yoffset": -5
  2637. }
  2638. }
  2639. },
  2640. "292": {
  2641. "r": {
  2642. "type": "double",
  2643. "value": 5
  2644. },
  2645. "style": {
  2646. "type": "map<string,string>",
  2647. "value": {
  2648. "stroke": "#000000",
  2649. "fill": "#ffffff",
  2650. "opacity": 0,
  2651. "stroke-width": 1
  2652. }
  2653. },
  2654. "mapper": {
  2655. "type": "code",
  2656. "value": ""
  2657. },
  2658. "parser": {
  2659. "type": "code",
  2660. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2661. },
  2662. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2663. "position": {
  2664. "type": "list<double>",
  2665. "value": [
  2666. "0;8.490921042703235,0%",
  2667. "0;-57.69882373018174,0%"
  2668. ]
  2669. },
  2670. "orientation": {
  2671. "type": "double",
  2672. "value": "0;93.4533162505311"
  2673. },
  2674. "scale": {
  2675. "type": "list<double>",
  2676. "value": [
  2677. 1,
  2678. 1
  2679. ]
  2680. },
  2681. "arrow": "arrowHead",
  2682. "arrowType": "circle-white",
  2683. "$linkDecoratorInfo": {
  2684. "type": "map<string,double>",
  2685. "value": {
  2686. "xratio": -1,
  2687. "yoffset": -5
  2688. }
  2689. }
  2690. },
  2691. "293": {
  2692. "r": {
  2693. "type": "double",
  2694. "value": 10
  2695. },
  2696. "style": {
  2697. "type": "map<string,string>",
  2698. "value": {
  2699. "stroke": "#000000",
  2700. "fill": "#ffffff",
  2701. "opacity": 0,
  2702. "stroke-width": 1
  2703. }
  2704. },
  2705. "mapper": {
  2706. "type": "code",
  2707. "value": ""
  2708. },
  2709. "parser": {
  2710. "type": "code",
  2711. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2712. },
  2713. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2714. "position": {
  2715. "type": "list<double>",
  2716. "value": [
  2717. "0;13.481842085406583,0%",
  2718. "0;-57.39764746036337,0%"
  2719. ]
  2720. },
  2721. "orientation": {
  2722. "type": "double",
  2723. "value": "0;93.4533162505311"
  2724. },
  2725. "scale": {
  2726. "type": "list<double>",
  2727. "value": [
  2728. 1,
  2729. 1
  2730. ]
  2731. },
  2732. "arrow": "arrowHead",
  2733. "arrowType": "circle-white-large",
  2734. "$linkDecoratorInfo": {
  2735. "type": "map<string,double>",
  2736. "value": {
  2737. "xratio": -1,
  2738. "yoffset": -10
  2739. }
  2740. }
  2741. },
  2742. "294": {
  2743. "segments": {
  2744. "type": "string",
  2745. "value": "m0,0 l-20,8 l20,8"
  2746. },
  2747. "style": {
  2748. "type": "map<string,string>",
  2749. "value": {
  2750. "stroke": "#000000",
  2751. "fill": "#000000",
  2752. "fill-opacity": 0,
  2753. "stroke-width": 1,
  2754. "opacity": 0
  2755. }
  2756. },
  2757. "mapper": {
  2758. "type": "code",
  2759. "value": ""
  2760. },
  2761. "parser": {
  2762. "type": "code",
  2763. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2764. },
  2765. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2766. "position": {
  2767. "type": "list<double>",
  2768. "value": [
  2769. "0;11.485473668325199,0%",
  2770. "0;-57.51811796829077,0%"
  2771. ]
  2772. },
  2773. "orientation": {
  2774. "type": "double",
  2775. "value": "0;93.4533162505311"
  2776. },
  2777. "scale": {
  2778. "type": "list<double>",
  2779. "value": [
  2780. 1,
  2781. 1
  2782. ]
  2783. },
  2784. "arrow": "arrowHead",
  2785. "arrowType": "arrow-empty-large",
  2786. "$linkDecoratorInfo": {
  2787. "type": "map<string,double>",
  2788. "value": {
  2789. "xratio": -1,
  2790. "yoffset": -8
  2791. }
  2792. }
  2793. },
  2794. "295": {
  2795. "segments": {
  2796. "type": "string",
  2797. "value": "m0,0 l-10,4 l10,4"
  2798. },
  2799. "style": {
  2800. "type": "map<string,string>",
  2801. "value": {
  2802. "stroke": "#000000",
  2803. "fill": "#000000",
  2804. "fill-opacity": 0,
  2805. "stroke-width": 1,
  2806. "opacity": 0
  2807. }
  2808. },
  2809. "mapper": {
  2810. "type": "code",
  2811. "value": ""
  2812. },
  2813. "parser": {
  2814. "type": "code",
  2815. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2816. },
  2817. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2818. "position": {
  2819. "type": "list<double>",
  2820. "value": [
  2821. "0;7.492736834162656,0%",
  2822. "0;-57.75905898414533,0%"
  2823. ]
  2824. },
  2825. "orientation": {
  2826. "type": "double",
  2827. "value": "0;93.4533162505311"
  2828. },
  2829. "scale": {
  2830. "type": "list<double>",
  2831. "value": [
  2832. 1,
  2833. 1
  2834. ]
  2835. },
  2836. "arrow": "arrowHead",
  2837. "arrowType": "arrow-empty",
  2838. "$linkDecoratorInfo": {
  2839. "type": "map<string,double>",
  2840. "value": {
  2841. "xratio": -1,
  2842. "yoffset": -4
  2843. }
  2844. }
  2845. },
  2846. "296": {
  2847. "segments": {
  2848. "type": "string",
  2849. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2850. },
  2851. "style": {
  2852. "type": "map<string,string>",
  2853. "value": {
  2854. "stroke": "#000000",
  2855. "fill": "#000000",
  2856. "opacity": 0,
  2857. "stroke-width": 1
  2858. }
  2859. },
  2860. "mapper": {
  2861. "type": "code",
  2862. "value": ""
  2863. },
  2864. "parser": {
  2865. "type": "code",
  2866. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2867. },
  2868. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2869. "position": {
  2870. "type": "list<double>",
  2871. "value": [
  2872. "0;13.481842085406583,0%",
  2873. "0;-57.39764746036337,0%"
  2874. ]
  2875. },
  2876. "orientation": {
  2877. "type": "double",
  2878. "value": "0;93.4533162505311"
  2879. },
  2880. "scale": {
  2881. "type": "list<double>",
  2882. "value": [
  2883. 1,
  2884. 1
  2885. ]
  2886. },
  2887. "arrow": "arrowHead",
  2888. "arrowType": "diamond-black-large",
  2889. "$linkDecoratorInfo": {
  2890. "type": "map<string,double>",
  2891. "value": {
  2892. "xratio": -1,
  2893. "yoffset": -10
  2894. }
  2895. }
  2896. },
  2897. "297": {
  2898. "segments": {
  2899. "type": "string",
  2900. "value": "m0,0 l-10,4 l10,4 z"
  2901. },
  2902. "style": {
  2903. "type": "map<string,string>",
  2904. "value": {
  2905. "stroke": "#000000",
  2906. "fill": "#000000",
  2907. "opacity": 0,
  2908. "stroke-width": 1
  2909. }
  2910. },
  2911. "mapper": {
  2912. "type": "code",
  2913. "value": ""
  2914. },
  2915. "parser": {
  2916. "type": "code",
  2917. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2918. },
  2919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2920. "position": {
  2921. "type": "list<double>",
  2922. "value": [
  2923. "0;7.492736834162656,0%",
  2924. "0;-57.75905898414533,0%"
  2925. ]
  2926. },
  2927. "orientation": {
  2928. "type": "double",
  2929. "value": "0;93.4533162505311"
  2930. },
  2931. "scale": {
  2932. "type": "list<double>",
  2933. "value": [
  2934. 1,
  2935. 1
  2936. ]
  2937. },
  2938. "arrow": "arrowHead",
  2939. "arrowType": "triangle-black",
  2940. "$linkDecoratorInfo": {
  2941. "type": "map<string,double>",
  2942. "value": {
  2943. "xratio": -1,
  2944. "yoffset": -4
  2945. }
  2946. }
  2947. },
  2948. "298": {
  2949. "segments": {
  2950. "type": "string",
  2951. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2952. },
  2953. "style": {
  2954. "type": "map<string,string>",
  2955. "value": {
  2956. "stroke": "#000000",
  2957. "fill": "#ffffff",
  2958. "opacity": 0,
  2959. "stroke-width": 1
  2960. }
  2961. },
  2962. "mapper": {
  2963. "type": "code",
  2964. "value": ""
  2965. },
  2966. "parser": {
  2967. "type": "code",
  2968. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2969. },
  2970. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2971. "position": {
  2972. "type": "list<double>",
  2973. "value": [
  2974. "0;13.481842085406583,0%",
  2975. "0;-57.39764746036337,0%"
  2976. ]
  2977. },
  2978. "orientation": {
  2979. "type": "double",
  2980. "value": "0;93.4533162505311"
  2981. },
  2982. "scale": {
  2983. "type": "list<double>",
  2984. "value": [
  2985. 1,
  2986. 1
  2987. ]
  2988. },
  2989. "arrow": "arrowHead",
  2990. "arrowType": "diamond-white-large",
  2991. "$linkDecoratorInfo": {
  2992. "type": "map<string,double>",
  2993. "value": {
  2994. "xratio": -1,
  2995. "yoffset": -10
  2996. }
  2997. }
  2998. }
  2999. },
  3000. "edges": []
  3001. }
  3002. },
  3003. "$asuri": {
  3004. "type": "string",
  3005. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/105.instance"
  3006. },
  3007. "$segments": {
  3008. "type": "map<string,list<string>>",
  3009. "value": {
  3010. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LQSRuleIcon/101.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/105.instance": "M625,559L621.5,617",
  3011. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/105.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon/6.instance": "M621.4954819422569,617.074870671172L618.0000155974517,674.9997415279429"
  3012. }
  3013. },
  3014. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  3015. },
  3016. "107": {
  3017. "link-style": {
  3018. "type": "map<string,string>",
  3019. "value": {
  3020. "stroke": "#800000",
  3021. "stroke-dasharray": "",
  3022. "stroke-opacity": 1,
  3023. "stroke-width": 2
  3024. }
  3025. },
  3026. "arrowHead": {
  3027. "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)",
  3028. "value": "custom"
  3029. },
  3030. "arrowTail": {
  3031. "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)",
  3032. "value": "arrow-black"
  3033. },
  3034. "typename": {
  3035. "type": "string",
  3036. "value": "failLink"
  3037. },
  3038. "position": {
  3039. "type": "list<double>",
  3040. "value": [
  3041. 721.9896551826643,
  3042. 618.1499998513674
  3043. ]
  3044. },
  3045. "orientation": {
  3046. "type": "double",
  3047. "value": 0
  3048. },
  3049. "scale": {
  3050. "type": "list<double>",
  3051. "value": [
  3052. 1,
  3053. 1
  3054. ]
  3055. },
  3056. "mapper": {
  3057. "type": "code",
  3058. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3059. },
  3060. "parser": {
  3061. "type": "code",
  3062. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3063. },
  3064. "$contents": {
  3065. "type": "map<string,*>",
  3066. "value": {
  3067. "nodes": {
  3068. "267": {
  3069. "segments": {
  3070. "type": "string",
  3071. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3072. },
  3073. "style": {
  3074. "type": "map<string,string>",
  3075. "value": {
  3076. "stroke": "#000000",
  3077. "fill": "#000000",
  3078. "opacity": 0,
  3079. "stroke-width": 1
  3080. }
  3081. },
  3082. "mapper": {
  3083. "type": "code",
  3084. "value": ""
  3085. },
  3086. "parser": {
  3087. "type": "code",
  3088. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3089. },
  3090. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3091. "position": {
  3092. "type": "list<double>",
  3093. "value": [
  3094. "0;0.0008839566868346083,-6.880209161537653%",
  3095. "0;58.12495004303696,99.76303284229832%"
  3096. ]
  3097. },
  3098. "orientation": {
  3099. "type": "double",
  3100. "value": "0;93.94518622903747"
  3101. },
  3102. "scale": {
  3103. "type": "list<double>",
  3104. "value": [
  3105. 1,
  3106. 1
  3107. ]
  3108. },
  3109. "arrow": "arrowTail",
  3110. "arrowType": "arrow-black",
  3111. "$linkDecoratorInfo": {
  3112. "type": "map<string,double>",
  3113. "value": {
  3114. "xratio": 1,
  3115. "yoffset": -4
  3116. }
  3117. }
  3118. },
  3119. "268": {
  3120. "segments": {
  3121. "type": "string",
  3122. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3123. },
  3124. "style": {
  3125. "type": "map<string,string>",
  3126. "value": {
  3127. "stroke": "#000000",
  3128. "fill": "#000000",
  3129. "opacity": 0,
  3130. "stroke-width": 1
  3131. }
  3132. },
  3133. "mapper": {
  3134. "type": "code",
  3135. "value": ""
  3136. },
  3137. "parser": {
  3138. "type": "code",
  3139. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3140. },
  3141. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3142. "position": {
  3143. "type": "list<double>",
  3144. "value": [
  3145. "0;5.986665927224749,-6.880209161537653%",
  3146. "0;58.53776259272922,99.76303284229832%"
  3147. ]
  3148. },
  3149. "orientation": {
  3150. "type": "double",
  3151. "value": "0;93.94518622903747"
  3152. },
  3153. "scale": {
  3154. "type": "list<double>",
  3155. "value": [
  3156. 1,
  3157. 1
  3158. ]
  3159. },
  3160. "arrow": "arrowTail",
  3161. "arrowType": "diamond-black-large",
  3162. "$linkDecoratorInfo": {
  3163. "type": "map<string,double>",
  3164. "value": {
  3165. "xratio": 1,
  3166. "yoffset": -10
  3167. }
  3168. }
  3169. },
  3170. "269": {
  3171. "r": {
  3172. "type": "double",
  3173. "value": 10
  3174. },
  3175. "style": {
  3176. "type": "map<string,string>",
  3177. "value": {
  3178. "stroke": "#000000",
  3179. "fill": "#000000",
  3180. "opacity": 0,
  3181. "stroke-width": 1
  3182. }
  3183. },
  3184. "mapper": {
  3185. "type": "code",
  3186. "value": ""
  3187. },
  3188. "parser": {
  3189. "type": "code",
  3190. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3191. },
  3192. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3193. "position": {
  3194. "type": "list<double>",
  3195. "value": [
  3196. "0;5.986665927224749,-6.880209161537653%",
  3197. "0;58.53776259272922,99.76303284229832%"
  3198. ]
  3199. },
  3200. "orientation": {
  3201. "type": "double",
  3202. "value": "0;93.94518622903747"
  3203. },
  3204. "scale": {
  3205. "type": "list<double>",
  3206. "value": [
  3207. 1,
  3208. 1
  3209. ]
  3210. },
  3211. "arrow": "arrowTail",
  3212. "arrowType": "circle-black-large",
  3213. "$linkDecoratorInfo": {
  3214. "type": "map<string,double>",
  3215. "value": {
  3216. "xratio": 1,
  3217. "yoffset": -10
  3218. }
  3219. }
  3220. },
  3221. "270": {
  3222. "r": {
  3223. "type": "double",
  3224. "value": 10
  3225. },
  3226. "style": {
  3227. "type": "map<string,string>",
  3228. "value": {
  3229. "stroke": "#000000",
  3230. "fill": "#ffffff",
  3231. "opacity": 0,
  3232. "stroke-width": 1
  3233. }
  3234. },
  3235. "mapper": {
  3236. "type": "code",
  3237. "value": ""
  3238. },
  3239. "parser": {
  3240. "type": "code",
  3241. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3242. },
  3243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3244. "position": {
  3245. "type": "list<double>",
  3246. "value": [
  3247. "0;5.986665927224749,-6.880209161537653%",
  3248. "0;58.53776259272922,99.76303284229832%"
  3249. ]
  3250. },
  3251. "orientation": {
  3252. "type": "double",
  3253. "value": "0;93.94518622903747"
  3254. },
  3255. "scale": {
  3256. "type": "list<double>",
  3257. "value": [
  3258. 1,
  3259. 1
  3260. ]
  3261. },
  3262. "arrow": "arrowTail",
  3263. "arrowType": "circle-white-large",
  3264. "$linkDecoratorInfo": {
  3265. "type": "map<string,double>",
  3266. "value": {
  3267. "xratio": 1,
  3268. "yoffset": -10
  3269. }
  3270. }
  3271. },
  3272. "271": {
  3273. "r": {
  3274. "type": "double",
  3275. "value": 5
  3276. },
  3277. "style": {
  3278. "type": "map<string,string>",
  3279. "value": {
  3280. "stroke": "#000000",
  3281. "fill": "#000000",
  3282. "opacity": 0,
  3283. "stroke-width": 1
  3284. }
  3285. },
  3286. "mapper": {
  3287. "type": "code",
  3288. "value": ""
  3289. },
  3290. "parser": {
  3291. "type": "code",
  3292. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3293. },
  3294. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3295. "position": {
  3296. "type": "list<double>",
  3297. "value": [
  3298. "0;0.9985142851097635,-6.880209161537653%",
  3299. "0;58.193752134652414,99.76303284229832%"
  3300. ]
  3301. },
  3302. "orientation": {
  3303. "type": "double",
  3304. "value": "0;93.94518622903747"
  3305. },
  3306. "scale": {
  3307. "type": "list<double>",
  3308. "value": [
  3309. 1,
  3310. 1
  3311. ]
  3312. },
  3313. "arrow": "arrowTail",
  3314. "arrowType": "circle-black",
  3315. "$linkDecoratorInfo": {
  3316. "type": "map<string,double>",
  3317. "value": {
  3318. "xratio": 1,
  3319. "yoffset": -5
  3320. }
  3321. }
  3322. },
  3323. "272": {
  3324. "segments": {
  3325. "type": "string",
  3326. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3327. },
  3328. "style": {
  3329. "type": "map<string,string>",
  3330. "value": {
  3331. "stroke": "#000000",
  3332. "fill": "#000000",
  3333. "opacity": 0,
  3334. "stroke-width": 1
  3335. }
  3336. },
  3337. "mapper": {
  3338. "type": "code",
  3339. "value": ""
  3340. },
  3341. "parser": {
  3342. "type": "code",
  3343. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3344. },
  3345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3346. "position": {
  3347. "type": "list<double>",
  3348. "value": [
  3349. "0;0.9985142851097635,-6.880209161537653%",
  3350. "0;58.193752134652414,99.76303284229832%"
  3351. ]
  3352. },
  3353. "orientation": {
  3354. "type": "double",
  3355. "value": "0;93.94518622903747"
  3356. },
  3357. "scale": {
  3358. "type": "list<double>",
  3359. "value": [
  3360. 1,
  3361. 1
  3362. ]
  3363. },
  3364. "arrow": "arrowTail",
  3365. "arrowType": "diamond-black",
  3366. "$linkDecoratorInfo": {
  3367. "type": "map<string,double>",
  3368. "value": {
  3369. "xratio": 1,
  3370. "yoffset": -5
  3371. }
  3372. }
  3373. },
  3374. "273": {
  3375. "segments": {
  3376. "type": "string",
  3377. "value": "m0,0 l20,10 l-20,10 z"
  3378. },
  3379. "style": {
  3380. "type": "map<string,string>",
  3381. "value": {
  3382. "stroke": "#000000",
  3383. "fill": "#000000",
  3384. "opacity": 0,
  3385. "stroke-width": 1
  3386. }
  3387. },
  3388. "mapper": {
  3389. "type": "code",
  3390. "value": ""
  3391. },
  3392. "parser": {
  3393. "type": "code",
  3394. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3395. },
  3396. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3397. "position": {
  3398. "type": "list<double>",
  3399. "value": [
  3400. "0;5.986665927224749,-6.880209161537653%",
  3401. "0;58.53776259272922,99.76303284229832%"
  3402. ]
  3403. },
  3404. "orientation": {
  3405. "type": "double",
  3406. "value": "0;93.94518622903747"
  3407. },
  3408. "scale": {
  3409. "type": "list<double>",
  3410. "value": [
  3411. 1,
  3412. 1
  3413. ]
  3414. },
  3415. "arrow": "arrowTail",
  3416. "arrowType": "triangle-black-large",
  3417. "$linkDecoratorInfo": {
  3418. "type": "map<string,double>",
  3419. "value": {
  3420. "xratio": 1,
  3421. "yoffset": -10
  3422. }
  3423. }
  3424. },
  3425. "274": {
  3426. "segments": {
  3427. "type": "string",
  3428. "value": "m0,0 l10,4 l-10,4 z"
  3429. },
  3430. "style": {
  3431. "type": "map<string,string>",
  3432. "value": {
  3433. "stroke": "#000000",
  3434. "fill": "#000000",
  3435. "opacity": 0,
  3436. "stroke-width": 1
  3437. }
  3438. },
  3439. "mapper": {
  3440. "type": "code",
  3441. "value": ""
  3442. },
  3443. "parser": {
  3444. "type": "code",
  3445. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3446. },
  3447. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3448. "position": {
  3449. "type": "list<double>",
  3450. "value": [
  3451. "0;0.0008839566868346083,-6.880209161537653%",
  3452. "0;58.12495004303696,99.76303284229832%"
  3453. ]
  3454. },
  3455. "orientation": {
  3456. "type": "double",
  3457. "value": "0;93.94518622903747"
  3458. },
  3459. "scale": {
  3460. "type": "list<double>",
  3461. "value": [
  3462. 1,
  3463. 1
  3464. ]
  3465. },
  3466. "arrow": "arrowTail",
  3467. "arrowType": "triangle-black",
  3468. "$linkDecoratorInfo": {
  3469. "type": "map<string,double>",
  3470. "value": {
  3471. "xratio": 1,
  3472. "yoffset": -4
  3473. }
  3474. }
  3475. },
  3476. "275": {
  3477. "segments": {
  3478. "type": "string",
  3479. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  3480. },
  3481. "style": {
  3482. "type": "map<string,string>",
  3483. "value": {
  3484. "stroke": "#000000",
  3485. "fill": "#000000",
  3486. "opacity": 0,
  3487. "stroke-width": 1
  3488. }
  3489. },
  3490. "mapper": {
  3491. "type": "code",
  3492. "value": ""
  3493. },
  3494. "parser": {
  3495. "type": "code",
  3496. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3497. },
  3498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3499. "position": {
  3500. "type": "list<double>",
  3501. "value": [
  3502. "0;3.9914052703787775,-6.880209161537653%",
  3503. "0;58.400158409498545,99.76303284229832%"
  3504. ]
  3505. },
  3506. "orientation": {
  3507. "type": "double",
  3508. "value": "0;93.94518622903747"
  3509. },
  3510. "scale": {
  3511. "type": "list<double>",
  3512. "value": [
  3513. 1,
  3514. 1
  3515. ]
  3516. },
  3517. "arrow": "arrowTail",
  3518. "arrowType": "arrow-black-large",
  3519. "$linkDecoratorInfo": {
  3520. "type": "map<string,double>",
  3521. "value": {
  3522. "xratio": 1,
  3523. "yoffset": -8
  3524. }
  3525. }
  3526. },
  3527. "276": {
  3528. "segments": {
  3529. "type": "string",
  3530. "value": "m0,0 l20,10 l-20,10 z"
  3531. },
  3532. "style": {
  3533. "type": "map<string,string>",
  3534. "value": {
  3535. "stroke": "#000000",
  3536. "fill": "#ffffff",
  3537. "opacity": 0,
  3538. "stroke-width": 1
  3539. }
  3540. },
  3541. "mapper": {
  3542. "type": "code",
  3543. "value": ""
  3544. },
  3545. "parser": {
  3546. "type": "code",
  3547. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3548. },
  3549. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3550. "position": {
  3551. "type": "list<double>",
  3552. "value": [
  3553. "0;5.986665927224749,-6.880209161537653%",
  3554. "0;58.53776259272922,99.76303284229832%"
  3555. ]
  3556. },
  3557. "orientation": {
  3558. "type": "double",
  3559. "value": "0;93.94518622903747"
  3560. },
  3561. "scale": {
  3562. "type": "list<double>",
  3563. "value": [
  3564. 1,
  3565. 1
  3566. ]
  3567. },
  3568. "arrow": "arrowTail",
  3569. "arrowType": "triangle-white-large",
  3570. "$linkDecoratorInfo": {
  3571. "type": "map<string,double>",
  3572. "value": {
  3573. "xratio": 1,
  3574. "yoffset": -10
  3575. }
  3576. }
  3577. },
  3578. "277": {
  3579. "segments": {
  3580. "type": "string",
  3581. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3582. },
  3583. "style": {
  3584. "type": "map<string,string>",
  3585. "value": {
  3586. "stroke": "#000000",
  3587. "fill": "#ffffff",
  3588. "opacity": 0,
  3589. "stroke-width": 1
  3590. }
  3591. },
  3592. "mapper": {
  3593. "type": "code",
  3594. "value": ""
  3595. },
  3596. "parser": {
  3597. "type": "code",
  3598. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3599. },
  3600. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3601. "position": {
  3602. "type": "list<double>",
  3603. "value": [
  3604. "0;0.9985142851097635,-6.880209161537653%",
  3605. "0;58.193752134652414,99.76303284229832%"
  3606. ]
  3607. },
  3608. "orientation": {
  3609. "type": "double",
  3610. "value": "0;93.94518622903747"
  3611. },
  3612. "scale": {
  3613. "type": "list<double>",
  3614. "value": [
  3615. 1,
  3616. 1
  3617. ]
  3618. },
  3619. "arrow": "arrowTail",
  3620. "arrowType": "diamond-white",
  3621. "$linkDecoratorInfo": {
  3622. "type": "map<string,double>",
  3623. "value": {
  3624. "xratio": 1,
  3625. "yoffset": -5
  3626. }
  3627. }
  3628. },
  3629. "278": {
  3630. "segments": {
  3631. "type": "string",
  3632. "value": "m0,0 l20,8 l-20,8"
  3633. },
  3634. "style": {
  3635. "type": "map<string,string>",
  3636. "value": {
  3637. "stroke": "#000000",
  3638. "fill": "#000000",
  3639. "fill-opacity": 0,
  3640. "stroke-width": 1,
  3641. "opacity": 0
  3642. }
  3643. },
  3644. "mapper": {
  3645. "type": "code",
  3646. "value": ""
  3647. },
  3648. "parser": {
  3649. "type": "code",
  3650. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3651. },
  3652. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3653. "position": {
  3654. "type": "list<double>",
  3655. "value": [
  3656. "0;3.9914052703787775,-6.880209161537653%",
  3657. "0;58.400158409498545,99.76303284229832%"
  3658. ]
  3659. },
  3660. "orientation": {
  3661. "type": "double",
  3662. "value": "0;93.94518622903747"
  3663. },
  3664. "scale": {
  3665. "type": "list<double>",
  3666. "value": [
  3667. 1,
  3668. 1
  3669. ]
  3670. },
  3671. "arrow": "arrowTail",
  3672. "arrowType": "arrow-empty-large",
  3673. "$linkDecoratorInfo": {
  3674. "type": "map<string,double>",
  3675. "value": {
  3676. "xratio": 1,
  3677. "yoffset": -8
  3678. }
  3679. }
  3680. },
  3681. "279": {
  3682. "r": {
  3683. "type": "double",
  3684. "value": 5
  3685. },
  3686. "style": {
  3687. "type": "map<string,string>",
  3688. "value": {
  3689. "stroke": "#000000",
  3690. "fill": "#ffffff",
  3691. "opacity": 0,
  3692. "stroke-width": 1
  3693. }
  3694. },
  3695. "mapper": {
  3696. "type": "code",
  3697. "value": ""
  3698. },
  3699. "parser": {
  3700. "type": "code",
  3701. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3702. },
  3703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3704. "position": {
  3705. "type": "list<double>",
  3706. "value": [
  3707. "0;0.9985142851097635,-6.880209161537653%",
  3708. "0;58.193752134652414,99.76303284229832%"
  3709. ]
  3710. },
  3711. "orientation": {
  3712. "type": "double",
  3713. "value": "0;93.94518622903747"
  3714. },
  3715. "scale": {
  3716. "type": "list<double>",
  3717. "value": [
  3718. 1,
  3719. 1
  3720. ]
  3721. },
  3722. "arrow": "arrowTail",
  3723. "arrowType": "circle-white",
  3724. "$linkDecoratorInfo": {
  3725. "type": "map<string,double>",
  3726. "value": {
  3727. "xratio": 1,
  3728. "yoffset": -5
  3729. }
  3730. }
  3731. },
  3732. "280": {
  3733. "segments": {
  3734. "type": "string",
  3735. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3736. },
  3737. "style": {
  3738. "type": "map<string,string>",
  3739. "value": {
  3740. "stroke": "#000000",
  3741. "fill": "#ffffff",
  3742. "opacity": 0,
  3743. "stroke-width": 1
  3744. }
  3745. },
  3746. "mapper": {
  3747. "type": "code",
  3748. "value": ""
  3749. },
  3750. "parser": {
  3751. "type": "code",
  3752. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3753. },
  3754. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3755. "position": {
  3756. "type": "list<double>",
  3757. "value": [
  3758. "0;5.986665927224749,-6.880209161537653%",
  3759. "0;58.53776259272922,99.76303284229832%"
  3760. ]
  3761. },
  3762. "orientation": {
  3763. "type": "double",
  3764. "value": "0;93.94518622903747"
  3765. },
  3766. "scale": {
  3767. "type": "list<double>",
  3768. "value": [
  3769. 1,
  3770. 1
  3771. ]
  3772. },
  3773. "arrow": "arrowTail",
  3774. "arrowType": "diamond-white-large",
  3775. "$linkDecoratorInfo": {
  3776. "type": "map<string,double>",
  3777. "value": {
  3778. "xratio": 1,
  3779. "yoffset": -10
  3780. }
  3781. }
  3782. },
  3783. "281": {
  3784. "segments": {
  3785. "type": "string",
  3786. "value": "m0,0 l10,4 l-10,4"
  3787. },
  3788. "style": {
  3789. "type": "map<string,string>",
  3790. "value": {
  3791. "stroke": "#000000",
  3792. "fill": "#000000",
  3793. "fill-opacity": 0,
  3794. "stroke-width": 1,
  3795. "opacity": 0
  3796. }
  3797. },
  3798. "mapper": {
  3799. "type": "code",
  3800. "value": ""
  3801. },
  3802. "parser": {
  3803. "type": "code",
  3804. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3805. },
  3806. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3807. "position": {
  3808. "type": "list<double>",
  3809. "value": [
  3810. "0;0.0008839566868346083,-6.880209161537653%",
  3811. "0;58.12495004303696,99.76303284229832%"
  3812. ]
  3813. },
  3814. "orientation": {
  3815. "type": "double",
  3816. "value": "0;93.94518622903747"
  3817. },
  3818. "scale": {
  3819. "type": "list<double>",
  3820. "value": [
  3821. 1,
  3822. 1
  3823. ]
  3824. },
  3825. "arrow": "arrowTail",
  3826. "arrowType": "arrow-empty",
  3827. "$linkDecoratorInfo": {
  3828. "type": "map<string,double>",
  3829. "value": {
  3830. "xratio": 1,
  3831. "yoffset": -4
  3832. }
  3833. }
  3834. },
  3835. "282": {
  3836. "segments": {
  3837. "type": "string",
  3838. "value": "m0,0 l10,5 l-10,5 z"
  3839. },
  3840. "style": {
  3841. "type": "map<string,string>",
  3842. "value": {
  3843. "stroke": "#000000",
  3844. "fill": "#ffffff",
  3845. "opacity": 0,
  3846. "stroke-width": 1
  3847. }
  3848. },
  3849. "mapper": {
  3850. "type": "code",
  3851. "value": ""
  3852. },
  3853. "parser": {
  3854. "type": "code",
  3855. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3856. },
  3857. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3858. "position": {
  3859. "type": "list<double>",
  3860. "value": [
  3861. "0;0.9985142851097635,-6.880209161537653%",
  3862. "0;58.193752134652414,99.76303284229832%"
  3863. ]
  3864. },
  3865. "orientation": {
  3866. "type": "double",
  3867. "value": "0;93.94518622903747"
  3868. },
  3869. "scale": {
  3870. "type": "list<double>",
  3871. "value": [
  3872. 1,
  3873. 1
  3874. ]
  3875. },
  3876. "arrow": "arrowTail",
  3877. "arrowType": "triangle-white",
  3878. "$linkDecoratorInfo": {
  3879. "type": "map<string,double>",
  3880. "value": {
  3881. "xratio": 1,
  3882. "yoffset": -5
  3883. }
  3884. }
  3885. },
  3886. "283": {
  3887. "segments": {
  3888. "type": "string",
  3889. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3890. },
  3891. "style": {
  3892. "type": "map<string,string>",
  3893. "value": {
  3894. "stroke": "#000000",
  3895. "fill": "#ffffff",
  3896. "opacity": 0,
  3897. "stroke-width": 1
  3898. }
  3899. },
  3900. "mapper": {
  3901. "type": "code",
  3902. "value": ""
  3903. },
  3904. "parser": {
  3905. "type": "code",
  3906. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3907. },
  3908. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3909. "position": {
  3910. "type": "list<double>",
  3911. "value": [
  3912. "0;8.998496459450621,0%",
  3913. "0;-57.805989393290474,0%"
  3914. ]
  3915. },
  3916. "orientation": {
  3917. "type": "double",
  3918. "value": "0;93.94518622903762"
  3919. },
  3920. "scale": {
  3921. "type": "list<double>",
  3922. "value": [
  3923. 1,
  3924. 1
  3925. ]
  3926. },
  3927. "arrow": "arrowHead",
  3928. "arrowType": "diamond-white",
  3929. "$linkDecoratorInfo": {
  3930. "type": "map<string,double>",
  3931. "value": {
  3932. "xratio": -1,
  3933. "yoffset": -5
  3934. }
  3935. }
  3936. },
  3937. "284": {
  3938. "segments": {
  3939. "type": "string",
  3940. "value": "m0,0 l-10,5 l10,5 z"
  3941. },
  3942. "style": {
  3943. "type": "map<string,string>",
  3944. "value": {
  3945. "stroke": "#000000",
  3946. "fill": "#ffffff",
  3947. "opacity": 0,
  3948. "stroke-width": 1
  3949. }
  3950. },
  3951. "mapper": {
  3952. "type": "code",
  3953. "value": ""
  3954. },
  3955. "parser": {
  3956. "type": "code",
  3957. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3958. },
  3959. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3960. "position": {
  3961. "type": "list<double>",
  3962. "value": [
  3963. "0;8.998496459450621,0%",
  3964. "0;-57.805989393290474,0%"
  3965. ]
  3966. },
  3967. "orientation": {
  3968. "type": "double",
  3969. "value": "0;93.94518622903762"
  3970. },
  3971. "scale": {
  3972. "type": "list<double>",
  3973. "value": [
  3974. 1,
  3975. 1
  3976. ]
  3977. },
  3978. "arrow": "arrowHead",
  3979. "arrowType": "triangle-white",
  3980. "$linkDecoratorInfo": {
  3981. "type": "map<string,double>",
  3982. "value": {
  3983. "xratio": -1,
  3984. "yoffset": -5
  3985. }
  3986. }
  3987. },
  3988. "285": {
  3989. "segments": {
  3990. "type": "string",
  3991. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3992. },
  3993. "style": {
  3994. "type": "map<string,string>",
  3995. "value": {
  3996. "stroke": "#000000",
  3997. "fill": "#000000",
  3998. "opacity": 0,
  3999. "stroke-width": 1
  4000. }
  4001. },
  4002. "mapper": {
  4003. "type": "code",
  4004. "value": ""
  4005. },
  4006. "parser": {
  4007. "type": "code",
  4008. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4009. },
  4010. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4011. "position": {
  4012. "type": "list<double>",
  4013. "value": [
  4014. "0;8.998496459450621,0%",
  4015. "0;-57.805989393290474,0%"
  4016. ]
  4017. },
  4018. "orientation": {
  4019. "type": "double",
  4020. "value": "0;93.94518622903762"
  4021. },
  4022. "scale": {
  4023. "type": "list<double>",
  4024. "value": [
  4025. 1,
  4026. 1
  4027. ]
  4028. },
  4029. "arrow": "arrowHead",
  4030. "arrowType": "diamond-black",
  4031. "$linkDecoratorInfo": {
  4032. "type": "map<string,double>",
  4033. "value": {
  4034. "xratio": -1,
  4035. "yoffset": -5
  4036. }
  4037. }
  4038. },
  4039. "286": {
  4040. "r": {
  4041. "type": "double",
  4042. "value": 10
  4043. },
  4044. "style": {
  4045. "type": "map<string,string>",
  4046. "value": {
  4047. "stroke": "#000000",
  4048. "fill": "#000000",
  4049. "opacity": 0,
  4050. "stroke-width": 1
  4051. }
  4052. },
  4053. "mapper": {
  4054. "type": "code",
  4055. "value": ""
  4056. },
  4057. "parser": {
  4058. "type": "code",
  4059. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4060. },
  4061. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4062. "position": {
  4063. "type": "list<double>",
  4064. "value": [
  4065. "0;13.986648101565606,0%",
  4066. "0;-57.46197893521355,0%"
  4067. ]
  4068. },
  4069. "orientation": {
  4070. "type": "double",
  4071. "value": "0;93.94518622903762"
  4072. },
  4073. "scale": {
  4074. "type": "list<double>",
  4075. "value": [
  4076. 1,
  4077. 1
  4078. ]
  4079. },
  4080. "arrow": "arrowHead",
  4081. "arrowType": "circle-black-large",
  4082. "$linkDecoratorInfo": {
  4083. "type": "map<string,double>",
  4084. "value": {
  4085. "xratio": -1,
  4086. "yoffset": -10
  4087. }
  4088. }
  4089. },
  4090. "287": {
  4091. "segments": {
  4092. "type": "string",
  4093. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  4094. },
  4095. "style": {
  4096. "type": "map<string,string>",
  4097. "value": {
  4098. "stroke": "#000000",
  4099. "fill": "#000000",
  4100. "opacity": 0,
  4101. "stroke-width": 1
  4102. }
  4103. },
  4104. "mapper": {
  4105. "type": "code",
  4106. "value": ""
  4107. },
  4108. "parser": {
  4109. "type": "code",
  4110. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4111. },
  4112. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4113. "position": {
  4114. "type": "list<double>",
  4115. "value": [
  4116. "0;11.991387444719635,0%",
  4117. "0;-57.59958311844434,0%"
  4118. ]
  4119. },
  4120. "orientation": {
  4121. "type": "double",
  4122. "value": "0;93.94518622903762"
  4123. },
  4124. "scale": {
  4125. "type": "list<double>",
  4126. "value": [
  4127. 1,
  4128. 1
  4129. ]
  4130. },
  4131. "arrow": "arrowHead",
  4132. "arrowType": "arrow-black-large",
  4133. "$linkDecoratorInfo": {
  4134. "type": "map<string,double>",
  4135. "value": {
  4136. "xratio": -1,
  4137. "yoffset": -8
  4138. }
  4139. }
  4140. },
  4141. "288": {
  4142. "segments": {
  4143. "type": "string",
  4144. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  4145. },
  4146. "style": {
  4147. "type": "map<string,string>",
  4148. "value": {
  4149. "stroke": "#000000",
  4150. "fill": "#000000",
  4151. "opacity": 0,
  4152. "stroke-width": 1
  4153. }
  4154. },
  4155. "mapper": {
  4156. "type": "code",
  4157. "value": ""
  4158. },
  4159. "parser": {
  4160. "type": "code",
  4161. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4162. },
  4163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4164. "position": {
  4165. "type": "list<double>",
  4166. "value": [
  4167. "0;8.000866131027692,0%",
  4168. "0;-57.87479148490593,0%"
  4169. ]
  4170. },
  4171. "orientation": {
  4172. "type": "double",
  4173. "value": "0;93.94518622903762"
  4174. },
  4175. "scale": {
  4176. "type": "list<double>",
  4177. "value": [
  4178. 1,
  4179. 1
  4180. ]
  4181. },
  4182. "arrow": "arrowHead",
  4183. "arrowType": "arrow-black",
  4184. "$linkDecoratorInfo": {
  4185. "type": "map<string,double>",
  4186. "value": {
  4187. "xratio": -1,
  4188. "yoffset": -4
  4189. }
  4190. }
  4191. },
  4192. "289": {
  4193. "segments": {
  4194. "type": "string",
  4195. "value": "m0,0 l-20,10 l20,10 z"
  4196. },
  4197. "style": {
  4198. "type": "map<string,string>",
  4199. "value": {
  4200. "stroke": "#000000",
  4201. "fill": "#ffffff",
  4202. "opacity": 0,
  4203. "stroke-width": 1
  4204. }
  4205. },
  4206. "mapper": {
  4207. "type": "code",
  4208. "value": ""
  4209. },
  4210. "parser": {
  4211. "type": "code",
  4212. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4213. },
  4214. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4215. "position": {
  4216. "type": "list<double>",
  4217. "value": [
  4218. "0;13.986648101565606,0%",
  4219. "0;-57.46197893521355,0%"
  4220. ]
  4221. },
  4222. "orientation": {
  4223. "type": "double",
  4224. "value": "0;93.94518622903762"
  4225. },
  4226. "scale": {
  4227. "type": "list<double>",
  4228. "value": [
  4229. 1,
  4230. 1
  4231. ]
  4232. },
  4233. "arrow": "arrowHead",
  4234. "arrowType": "triangle-white-large",
  4235. "$linkDecoratorInfo": {
  4236. "type": "map<string,double>",
  4237. "value": {
  4238. "xratio": -1,
  4239. "yoffset": -10
  4240. }
  4241. }
  4242. },
  4243. "290": {
  4244. "segments": {
  4245. "type": "string",
  4246. "value": "m0,0 l-20,10 l20,10 z"
  4247. },
  4248. "style": {
  4249. "type": "map<string,string>",
  4250. "value": {
  4251. "stroke": "#000000",
  4252. "fill": "#000000",
  4253. "opacity": 0,
  4254. "stroke-width": 1
  4255. }
  4256. },
  4257. "mapper": {
  4258. "type": "code",
  4259. "value": ""
  4260. },
  4261. "parser": {
  4262. "type": "code",
  4263. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4264. },
  4265. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4266. "position": {
  4267. "type": "list<double>",
  4268. "value": [
  4269. "0;13.986648101565606,0%",
  4270. "0;-57.46197893521355,0%"
  4271. ]
  4272. },
  4273. "orientation": {
  4274. "type": "double",
  4275. "value": "0;93.94518622903762"
  4276. },
  4277. "scale": {
  4278. "type": "list<double>",
  4279. "value": [
  4280. 1,
  4281. 1
  4282. ]
  4283. },
  4284. "arrow": "arrowHead",
  4285. "arrowType": "triangle-black-large",
  4286. "$linkDecoratorInfo": {
  4287. "type": "map<string,double>",
  4288. "value": {
  4289. "xratio": -1,
  4290. "yoffset": -10
  4291. }
  4292. }
  4293. },
  4294. "291": {
  4295. "r": {
  4296. "type": "double",
  4297. "value": 5
  4298. },
  4299. "style": {
  4300. "type": "map<string,string>",
  4301. "value": {
  4302. "stroke": "#000000",
  4303. "fill": "#000000",
  4304. "opacity": 0,
  4305. "stroke-width": 1
  4306. }
  4307. },
  4308. "mapper": {
  4309. "type": "code",
  4310. "value": ""
  4311. },
  4312. "parser": {
  4313. "type": "code",
  4314. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4315. },
  4316. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4317. "position": {
  4318. "type": "list<double>",
  4319. "value": [
  4320. "0;8.998496459450621,0%",
  4321. "0;-57.805989393290474,0%"
  4322. ]
  4323. },
  4324. "orientation": {
  4325. "type": "double",
  4326. "value": "0;93.94518622903762"
  4327. },
  4328. "scale": {
  4329. "type": "list<double>",
  4330. "value": [
  4331. 1,
  4332. 1
  4333. ]
  4334. },
  4335. "arrow": "arrowHead",
  4336. "arrowType": "circle-black",
  4337. "$linkDecoratorInfo": {
  4338. "type": "map<string,double>",
  4339. "value": {
  4340. "xratio": -1,
  4341. "yoffset": -5
  4342. }
  4343. }
  4344. },
  4345. "292": {
  4346. "r": {
  4347. "type": "double",
  4348. "value": 5
  4349. },
  4350. "style": {
  4351. "type": "map<string,string>",
  4352. "value": {
  4353. "stroke": "#000000",
  4354. "fill": "#ffffff",
  4355. "opacity": 0,
  4356. "stroke-width": 1
  4357. }
  4358. },
  4359. "mapper": {
  4360. "type": "code",
  4361. "value": ""
  4362. },
  4363. "parser": {
  4364. "type": "code",
  4365. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4366. },
  4367. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4368. "position": {
  4369. "type": "list<double>",
  4370. "value": [
  4371. "0;8.998496459450621,0%",
  4372. "0;-57.805989393290474,0%"
  4373. ]
  4374. },
  4375. "orientation": {
  4376. "type": "double",
  4377. "value": "0;93.94518622903762"
  4378. },
  4379. "scale": {
  4380. "type": "list<double>",
  4381. "value": [
  4382. 1,
  4383. 1
  4384. ]
  4385. },
  4386. "arrow": "arrowHead",
  4387. "arrowType": "circle-white",
  4388. "$linkDecoratorInfo": {
  4389. "type": "map<string,double>",
  4390. "value": {
  4391. "xratio": -1,
  4392. "yoffset": -5
  4393. }
  4394. }
  4395. },
  4396. "293": {
  4397. "r": {
  4398. "type": "double",
  4399. "value": 10
  4400. },
  4401. "style": {
  4402. "type": "map<string,string>",
  4403. "value": {
  4404. "stroke": "#000000",
  4405. "fill": "#ffffff",
  4406. "opacity": 0,
  4407. "stroke-width": 1
  4408. }
  4409. },
  4410. "mapper": {
  4411. "type": "code",
  4412. "value": ""
  4413. },
  4414. "parser": {
  4415. "type": "code",
  4416. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4417. },
  4418. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4419. "position": {
  4420. "type": "list<double>",
  4421. "value": [
  4422. "0;13.986648101565606,0%",
  4423. "0;-57.46197893521355,0%"
  4424. ]
  4425. },
  4426. "orientation": {
  4427. "type": "double",
  4428. "value": "0;93.94518622903762"
  4429. },
  4430. "scale": {
  4431. "type": "list<double>",
  4432. "value": [
  4433. 1,
  4434. 1
  4435. ]
  4436. },
  4437. "arrow": "arrowHead",
  4438. "arrowType": "circle-white-large",
  4439. "$linkDecoratorInfo": {
  4440. "type": "map<string,double>",
  4441. "value": {
  4442. "xratio": -1,
  4443. "yoffset": -10
  4444. }
  4445. }
  4446. },
  4447. "294": {
  4448. "segments": {
  4449. "type": "string",
  4450. "value": "m0,0 l-20,8 l20,8"
  4451. },
  4452. "style": {
  4453. "type": "map<string,string>",
  4454. "value": {
  4455. "stroke": "#000000",
  4456. "fill": "#000000",
  4457. "fill-opacity": 0,
  4458. "stroke-width": 1,
  4459. "opacity": 0
  4460. }
  4461. },
  4462. "mapper": {
  4463. "type": "code",
  4464. "value": ""
  4465. },
  4466. "parser": {
  4467. "type": "code",
  4468. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4469. },
  4470. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4471. "position": {
  4472. "type": "list<double>",
  4473. "value": [
  4474. "0;11.991387444719635,0%",
  4475. "0;-57.59958311844434,0%"
  4476. ]
  4477. },
  4478. "orientation": {
  4479. "type": "double",
  4480. "value": "0;93.94518622903762"
  4481. },
  4482. "scale": {
  4483. "type": "list<double>",
  4484. "value": [
  4485. 1,
  4486. 1
  4487. ]
  4488. },
  4489. "arrow": "arrowHead",
  4490. "arrowType": "arrow-empty-large",
  4491. "$linkDecoratorInfo": {
  4492. "type": "map<string,double>",
  4493. "value": {
  4494. "xratio": -1,
  4495. "yoffset": -8
  4496. }
  4497. }
  4498. },
  4499. "295": {
  4500. "segments": {
  4501. "type": "string",
  4502. "value": "m0,0 l-10,4 l10,4"
  4503. },
  4504. "style": {
  4505. "type": "map<string,string>",
  4506. "value": {
  4507. "stroke": "#000000",
  4508. "fill": "#000000",
  4509. "fill-opacity": 0,
  4510. "stroke-width": 1,
  4511. "opacity": 0
  4512. }
  4513. },
  4514. "mapper": {
  4515. "type": "code",
  4516. "value": ""
  4517. },
  4518. "parser": {
  4519. "type": "code",
  4520. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4521. },
  4522. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4523. "position": {
  4524. "type": "list<double>",
  4525. "value": [
  4526. "0;8.000866131027692,0%",
  4527. "0;-57.87479148490593,0%"
  4528. ]
  4529. },
  4530. "orientation": {
  4531. "type": "double",
  4532. "value": "0;93.94518622903762"
  4533. },
  4534. "scale": {
  4535. "type": "list<double>",
  4536. "value": [
  4537. 1,
  4538. 1
  4539. ]
  4540. },
  4541. "arrow": "arrowHead",
  4542. "arrowType": "arrow-empty",
  4543. "$linkDecoratorInfo": {
  4544. "type": "map<string,double>",
  4545. "value": {
  4546. "xratio": -1,
  4547. "yoffset": -4
  4548. }
  4549. }
  4550. },
  4551. "296": {
  4552. "segments": {
  4553. "type": "string",
  4554. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4555. },
  4556. "style": {
  4557. "type": "map<string,string>",
  4558. "value": {
  4559. "stroke": "#000000",
  4560. "fill": "#000000",
  4561. "opacity": 0,
  4562. "stroke-width": 1
  4563. }
  4564. },
  4565. "mapper": {
  4566. "type": "code",
  4567. "value": ""
  4568. },
  4569. "parser": {
  4570. "type": "code",
  4571. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4572. },
  4573. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4574. "position": {
  4575. "type": "list<double>",
  4576. "value": [
  4577. "0;13.986648101565606,0%",
  4578. "0;-57.46197893521355,0%"
  4579. ]
  4580. },
  4581. "orientation": {
  4582. "type": "double",
  4583. "value": "0;93.94518622903762"
  4584. },
  4585. "scale": {
  4586. "type": "list<double>",
  4587. "value": [
  4588. 1,
  4589. 1
  4590. ]
  4591. },
  4592. "arrow": "arrowHead",
  4593. "arrowType": "diamond-black-large",
  4594. "$linkDecoratorInfo": {
  4595. "type": "map<string,double>",
  4596. "value": {
  4597. "xratio": -1,
  4598. "yoffset": -10
  4599. }
  4600. }
  4601. },
  4602. "297": {
  4603. "segments": {
  4604. "type": "string",
  4605. "value": "m0,0 l-10,4 l10,4 z"
  4606. },
  4607. "style": {
  4608. "type": "map<string,string>",
  4609. "value": {
  4610. "stroke": "#000000",
  4611. "fill": "#000000",
  4612. "opacity": 0,
  4613. "stroke-width": 1
  4614. }
  4615. },
  4616. "mapper": {
  4617. "type": "code",
  4618. "value": ""
  4619. },
  4620. "parser": {
  4621. "type": "code",
  4622. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4623. },
  4624. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4625. "position": {
  4626. "type": "list<double>",
  4627. "value": [
  4628. "0;8.000866131027692,0%",
  4629. "0;-57.87479148490593,0%"
  4630. ]
  4631. },
  4632. "orientation": {
  4633. "type": "double",
  4634. "value": "0;93.94518622903762"
  4635. },
  4636. "scale": {
  4637. "type": "list<double>",
  4638. "value": [
  4639. 1,
  4640. 1
  4641. ]
  4642. },
  4643. "arrow": "arrowHead",
  4644. "arrowType": "triangle-black",
  4645. "$linkDecoratorInfo": {
  4646. "type": "map<string,double>",
  4647. "value": {
  4648. "xratio": -1,
  4649. "yoffset": -4
  4650. }
  4651. }
  4652. },
  4653. "298": {
  4654. "segments": {
  4655. "type": "string",
  4656. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4657. },
  4658. "style": {
  4659. "type": "map<string,string>",
  4660. "value": {
  4661. "stroke": "#000000",
  4662. "fill": "#ffffff",
  4663. "opacity": 0,
  4664. "stroke-width": 1
  4665. }
  4666. },
  4667. "mapper": {
  4668. "type": "code",
  4669. "value": ""
  4670. },
  4671. "parser": {
  4672. "type": "code",
  4673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4674. },
  4675. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4676. "position": {
  4677. "type": "list<double>",
  4678. "value": [
  4679. "0;13.986648101565606,0%",
  4680. "0;-57.46197893521355,0%"
  4681. ]
  4682. },
  4683. "orientation": {
  4684. "type": "double",
  4685. "value": "0;93.94518622903762"
  4686. },
  4687. "scale": {
  4688. "type": "list<double>",
  4689. "value": [
  4690. 1,
  4691. 1
  4692. ]
  4693. },
  4694. "arrow": "arrowHead",
  4695. "arrowType": "diamond-white-large",
  4696. "$linkDecoratorInfo": {
  4697. "type": "map<string,double>",
  4698. "value": {
  4699. "xratio": -1,
  4700. "yoffset": -10
  4701. }
  4702. }
  4703. }
  4704. },
  4705. "edges": []
  4706. }
  4707. },
  4708. "$asuri": {
  4709. "type": "string",
  4710. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/107.instance"
  4711. },
  4712. "$segments": {
  4713. "type": "map<string,list<string>>",
  4714. "value": {
  4715. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LQSRuleIcon/101.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/107.instance": "M726,560L721.9896551826643,618.1499998513674",
  4716. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/107.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon/7.instance": "M721.9948365054365,618.0748706711721L718.0000178256591,675.9997415279429"
  4717. }
  4718. },
  4719. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  4720. },
  4721. "108": {
  4722. "link-style": {
  4723. "type": "map<string,string>",
  4724. "value": {
  4725. "stroke": "#000000",
  4726. "stroke-dasharray": "",
  4727. "stroke-opacity": 1,
  4728. "stroke-width": 2
  4729. }
  4730. },
  4731. "arrowHead": {
  4732. "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)",
  4733. "value": "custom"
  4734. },
  4735. "arrowTail": {
  4736. "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)",
  4737. "value": "arrow-black"
  4738. },
  4739. "typename": {
  4740. "type": "string",
  4741. "value": "initialLink"
  4742. },
  4743. "position": {
  4744. "type": "list<double>",
  4745. "value": [
  4746. 675,
  4747. 251.5
  4748. ]
  4749. },
  4750. "orientation": {
  4751. "type": "double",
  4752. "value": 0
  4753. },
  4754. "scale": {
  4755. "type": "list<double>",
  4756. "value": [
  4757. 1,
  4758. 1
  4759. ]
  4760. },
  4761. "mapper": {
  4762. "type": "code",
  4763. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4764. },
  4765. "parser": {
  4766. "type": "code",
  4767. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4768. },
  4769. "$contents": {
  4770. "type": "map<string,*>",
  4771. "value": {
  4772. "nodes": {
  4773. "267": {
  4774. "segments": {
  4775. "type": "string",
  4776. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  4777. },
  4778. "style": {
  4779. "type": "map<string,string>",
  4780. "value": {
  4781. "stroke": "#000000",
  4782. "fill": "#000000",
  4783. "opacity": 0,
  4784. "stroke-width": 1
  4785. }
  4786. },
  4787. "mapper": {
  4788. "type": "code",
  4789. "value": ""
  4790. },
  4791. "parser": {
  4792. "type": "code",
  4793. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4794. },
  4795. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4796. "position": {
  4797. "type": "list<double>",
  4798. "value": [
  4799. "0;4.998402065890218,2.8157844768414066%",
  4800. "0;35.386946482461724,99.96034892786228%"
  4801. ]
  4802. },
  4803. "orientation": {
  4804. "type": "double",
  4805. "value": "0;88.3864610671187"
  4806. },
  4807. "scale": {
  4808. "type": "list<double>",
  4809. "value": [
  4810. 1,
  4811. 1
  4812. ]
  4813. },
  4814. "arrow": "arrowTail",
  4815. "arrowType": "arrow-black",
  4816. "$linkDecoratorInfo": {
  4817. "type": "map<string,double>",
  4818. "value": {
  4819. "xratio": 1,
  4820. "yoffset": -4
  4821. }
  4822. }
  4823. },
  4824. "268": {
  4825. "segments": {
  4826. "type": "string",
  4827. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4828. },
  4829. "style": {
  4830. "type": "map<string,string>",
  4831. "value": {
  4832. "stroke": "#000000",
  4833. "fill": "#000000",
  4834. "opacity": 0,
  4835. "stroke-width": 1
  4836. }
  4837. },
  4838. "mapper": {
  4839. "type": "code",
  4840. "value": ""
  4841. },
  4842. "parser": {
  4843. "type": "code",
  4844. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4845. },
  4846. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4847. "position": {
  4848. "type": "list<double>",
  4849. "value": [
  4850. "0;10.99602300156198,2.8157844768414066%",
  4851. "0;35.21799941385123,99.96034892786228%"
  4852. ]
  4853. },
  4854. "orientation": {
  4855. "type": "double",
  4856. "value": "0;88.3864610671187"
  4857. },
  4858. "scale": {
  4859. "type": "list<double>",
  4860. "value": [
  4861. 1,
  4862. 1
  4863. ]
  4864. },
  4865. "arrow": "arrowTail",
  4866. "arrowType": "diamond-black-large",
  4867. "$linkDecoratorInfo": {
  4868. "type": "map<string,double>",
  4869. "value": {
  4870. "xratio": 1,
  4871. "yoffset": -10
  4872. }
  4873. }
  4874. },
  4875. "269": {
  4876. "r": {
  4877. "type": "double",
  4878. "value": 10
  4879. },
  4880. "style": {
  4881. "type": "map<string,string>",
  4882. "value": {
  4883. "stroke": "#000000",
  4884. "fill": "#000000",
  4885. "opacity": 0,
  4886. "stroke-width": 1
  4887. }
  4888. },
  4889. "mapper": {
  4890. "type": "code",
  4891. "value": ""
  4892. },
  4893. "parser": {
  4894. "type": "code",
  4895. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4896. },
  4897. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4898. "position": {
  4899. "type": "list<double>",
  4900. "value": [
  4901. "0;10.99602300156198,2.8157844768414066%",
  4902. "0;35.21799941385123,99.96034892786228%"
  4903. ]
  4904. },
  4905. "orientation": {
  4906. "type": "double",
  4907. "value": "0;88.3864610671187"
  4908. },
  4909. "scale": {
  4910. "type": "list<double>",
  4911. "value": [
  4912. 1,
  4913. 1
  4914. ]
  4915. },
  4916. "arrow": "arrowTail",
  4917. "arrowType": "circle-black-large",
  4918. "$linkDecoratorInfo": {
  4919. "type": "map<string,double>",
  4920. "value": {
  4921. "xratio": 1,
  4922. "yoffset": -10
  4923. }
  4924. }
  4925. },
  4926. "270": {
  4927. "r": {
  4928. "type": "double",
  4929. "value": 10
  4930. },
  4931. "style": {
  4932. "type": "map<string,string>",
  4933. "value": {
  4934. "stroke": "#000000",
  4935. "fill": "#ffffff",
  4936. "opacity": 0,
  4937. "stroke-width": 1
  4938. }
  4939. },
  4940. "mapper": {
  4941. "type": "code",
  4942. "value": ""
  4943. },
  4944. "parser": {
  4945. "type": "code",
  4946. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4947. },
  4948. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4949. "position": {
  4950. "type": "list<double>",
  4951. "value": [
  4952. "0;10.99602300156198,2.8157844768414066%",
  4953. "0;35.21799941385123,99.96034892786228%"
  4954. ]
  4955. },
  4956. "orientation": {
  4957. "type": "double",
  4958. "value": "0;88.3864610671187"
  4959. },
  4960. "scale": {
  4961. "type": "list<double>",
  4962. "value": [
  4963. 1,
  4964. 1
  4965. ]
  4966. },
  4967. "arrow": "arrowTail",
  4968. "arrowType": "circle-white-large",
  4969. "$linkDecoratorInfo": {
  4970. "type": "map<string,double>",
  4971. "value": {
  4972. "xratio": 1,
  4973. "yoffset": -10
  4974. }
  4975. }
  4976. },
  4977. "271": {
  4978. "r": {
  4979. "type": "double",
  4980. "value": 5
  4981. },
  4982. "style": {
  4983. "type": "map<string,string>",
  4984. "value": {
  4985. "stroke": "#000000",
  4986. "fill": "#000000",
  4987. "opacity": 0,
  4988. "stroke-width": 1
  4989. }
  4990. },
  4991. "mapper": {
  4992. "type": "code",
  4993. "value": ""
  4994. },
  4995. "parser": {
  4996. "type": "code",
  4997. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4998. },
  4999. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5000. "position": {
  5001. "type": "list<double>",
  5002. "value": [
  5003. "0;5.998005555168788,2.8157844768414066%",
  5004. "0;35.35878863769332,99.96034892786228%"
  5005. ]
  5006. },
  5007. "orientation": {
  5008. "type": "double",
  5009. "value": "0;88.3864610671187"
  5010. },
  5011. "scale": {
  5012. "type": "list<double>",
  5013. "value": [
  5014. 1,
  5015. 1
  5016. ]
  5017. },
  5018. "arrow": "arrowTail",
  5019. "arrowType": "circle-black",
  5020. "$linkDecoratorInfo": {
  5021. "type": "map<string,double>",
  5022. "value": {
  5023. "xratio": 1,
  5024. "yoffset": -5
  5025. }
  5026. }
  5027. },
  5028. "272": {
  5029. "segments": {
  5030. "type": "string",
  5031. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5032. },
  5033. "style": {
  5034. "type": "map<string,string>",
  5035. "value": {
  5036. "stroke": "#000000",
  5037. "fill": "#000000",
  5038. "opacity": 0,
  5039. "stroke-width": 1
  5040. }
  5041. },
  5042. "mapper": {
  5043. "type": "code",
  5044. "value": ""
  5045. },
  5046. "parser": {
  5047. "type": "code",
  5048. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5049. },
  5050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5051. "position": {
  5052. "type": "list<double>",
  5053. "value": [
  5054. "0;5.998005555168788,2.8157844768414066%",
  5055. "0;35.35878863769332,99.96034892786228%"
  5056. ]
  5057. },
  5058. "orientation": {
  5059. "type": "double",
  5060. "value": "0;88.3864610671187"
  5061. },
  5062. "scale": {
  5063. "type": "list<double>",
  5064. "value": [
  5065. 1,
  5066. 1
  5067. ]
  5068. },
  5069. "arrow": "arrowTail",
  5070. "arrowType": "diamond-black",
  5071. "$linkDecoratorInfo": {
  5072. "type": "map<string,double>",
  5073. "value": {
  5074. "xratio": 1,
  5075. "yoffset": -5
  5076. }
  5077. }
  5078. },
  5079. "273": {
  5080. "segments": {
  5081. "type": "string",
  5082. "value": "m0,0 l20,10 l-20,10 z"
  5083. },
  5084. "style": {
  5085. "type": "map<string,string>",
  5086. "value": {
  5087. "stroke": "#000000",
  5088. "fill": "#000000",
  5089. "opacity": 0,
  5090. "stroke-width": 1
  5091. }
  5092. },
  5093. "mapper": {
  5094. "type": "code",
  5095. "value": ""
  5096. },
  5097. "parser": {
  5098. "type": "code",
  5099. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5100. },
  5101. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5102. "position": {
  5103. "type": "list<double>",
  5104. "value": [
  5105. "0;10.99602300156198,2.8157844768414066%",
  5106. "0;35.21799941385123,99.96034892786228%"
  5107. ]
  5108. },
  5109. "orientation": {
  5110. "type": "double",
  5111. "value": "0;88.3864610671187"
  5112. },
  5113. "scale": {
  5114. "type": "list<double>",
  5115. "value": [
  5116. 1,
  5117. 1
  5118. ]
  5119. },
  5120. "arrow": "arrowTail",
  5121. "arrowType": "triangle-black-large",
  5122. "$linkDecoratorInfo": {
  5123. "type": "map<string,double>",
  5124. "value": {
  5125. "xratio": 1,
  5126. "yoffset": -10
  5127. }
  5128. }
  5129. },
  5130. "274": {
  5131. "segments": {
  5132. "type": "string",
  5133. "value": "m0,0 l10,4 l-10,4 z"
  5134. },
  5135. "style": {
  5136. "type": "map<string,string>",
  5137. "value": {
  5138. "stroke": "#000000",
  5139. "fill": "#000000",
  5140. "opacity": 0,
  5141. "stroke-width": 1
  5142. }
  5143. },
  5144. "mapper": {
  5145. "type": "code",
  5146. "value": ""
  5147. },
  5148. "parser": {
  5149. "type": "code",
  5150. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5151. },
  5152. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5153. "position": {
  5154. "type": "list<double>",
  5155. "value": [
  5156. "0;4.998402065890218,2.8157844768414066%",
  5157. "0;35.386946482461724,99.96034892786228%"
  5158. ]
  5159. },
  5160. "orientation": {
  5161. "type": "double",
  5162. "value": "0;88.3864610671187"
  5163. },
  5164. "scale": {
  5165. "type": "list<double>",
  5166. "value": [
  5167. 1,
  5168. 1
  5169. ]
  5170. },
  5171. "arrow": "arrowTail",
  5172. "arrowType": "triangle-black",
  5173. "$linkDecoratorInfo": {
  5174. "type": "map<string,double>",
  5175. "value": {
  5176. "xratio": 1,
  5177. "yoffset": -4
  5178. }
  5179. }
  5180. },
  5181. "275": {
  5182. "segments": {
  5183. "type": "string",
  5184. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  5185. },
  5186. "style": {
  5187. "type": "map<string,string>",
  5188. "value": {
  5189. "stroke": "#000000",
  5190. "fill": "#000000",
  5191. "opacity": 0,
  5192. "stroke-width": 1
  5193. }
  5194. },
  5195. "mapper": {
  5196. "type": "code",
  5197. "value": ""
  5198. },
  5199. "parser": {
  5200. "type": "code",
  5201. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5202. },
  5203. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5204. "position": {
  5205. "type": "list<double>",
  5206. "value": [
  5207. "0;8.996816023004726,2.8157844768414066%",
  5208. "0;35.27431510338806,99.96034892786228%"
  5209. ]
  5210. },
  5211. "orientation": {
  5212. "type": "double",
  5213. "value": "0;88.3864610671187"
  5214. },
  5215. "scale": {
  5216. "type": "list<double>",
  5217. "value": [
  5218. 1,
  5219. 1
  5220. ]
  5221. },
  5222. "arrow": "arrowTail",
  5223. "arrowType": "arrow-black-large",
  5224. "$linkDecoratorInfo": {
  5225. "type": "map<string,double>",
  5226. "value": {
  5227. "xratio": 1,
  5228. "yoffset": -8
  5229. }
  5230. }
  5231. },
  5232. "276": {
  5233. "segments": {
  5234. "type": "string",
  5235. "value": "m0,0 l20,10 l-20,10 z"
  5236. },
  5237. "style": {
  5238. "type": "map<string,string>",
  5239. "value": {
  5240. "stroke": "#000000",
  5241. "fill": "#ffffff",
  5242. "opacity": 0,
  5243. "stroke-width": 1
  5244. }
  5245. },
  5246. "mapper": {
  5247. "type": "code",
  5248. "value": ""
  5249. },
  5250. "parser": {
  5251. "type": "code",
  5252. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5253. },
  5254. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5255. "position": {
  5256. "type": "list<double>",
  5257. "value": [
  5258. "0;10.99602300156198,2.8157844768414066%",
  5259. "0;35.21799941385123,99.96034892786228%"
  5260. ]
  5261. },
  5262. "orientation": {
  5263. "type": "double",
  5264. "value": "0;88.3864610671187"
  5265. },
  5266. "scale": {
  5267. "type": "list<double>",
  5268. "value": [
  5269. 1,
  5270. 1
  5271. ]
  5272. },
  5273. "arrow": "arrowTail",
  5274. "arrowType": "triangle-white-large",
  5275. "$linkDecoratorInfo": {
  5276. "type": "map<string,double>",
  5277. "value": {
  5278. "xratio": 1,
  5279. "yoffset": -10
  5280. }
  5281. }
  5282. },
  5283. "277": {
  5284. "segments": {
  5285. "type": "string",
  5286. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5287. },
  5288. "style": {
  5289. "type": "map<string,string>",
  5290. "value": {
  5291. "stroke": "#000000",
  5292. "fill": "#ffffff",
  5293. "opacity": 0,
  5294. "stroke-width": 1
  5295. }
  5296. },
  5297. "mapper": {
  5298. "type": "code",
  5299. "value": ""
  5300. },
  5301. "parser": {
  5302. "type": "code",
  5303. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5304. },
  5305. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5306. "position": {
  5307. "type": "list<double>",
  5308. "value": [
  5309. "0;5.998005555168788,2.8157844768414066%",
  5310. "0;35.35878863769332,99.96034892786228%"
  5311. ]
  5312. },
  5313. "orientation": {
  5314. "type": "double",
  5315. "value": "0;88.3864610671187"
  5316. },
  5317. "scale": {
  5318. "type": "list<double>",
  5319. "value": [
  5320. 1,
  5321. 1
  5322. ]
  5323. },
  5324. "arrow": "arrowTail",
  5325. "arrowType": "diamond-white",
  5326. "$linkDecoratorInfo": {
  5327. "type": "map<string,double>",
  5328. "value": {
  5329. "xratio": 1,
  5330. "yoffset": -5
  5331. }
  5332. }
  5333. },
  5334. "278": {
  5335. "segments": {
  5336. "type": "string",
  5337. "value": "m0,0 l20,8 l-20,8"
  5338. },
  5339. "style": {
  5340. "type": "map<string,string>",
  5341. "value": {
  5342. "stroke": "#000000",
  5343. "fill": "#000000",
  5344. "fill-opacity": 0,
  5345. "stroke-width": 1,
  5346. "opacity": 0
  5347. }
  5348. },
  5349. "mapper": {
  5350. "type": "code",
  5351. "value": ""
  5352. },
  5353. "parser": {
  5354. "type": "code",
  5355. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5356. },
  5357. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5358. "position": {
  5359. "type": "list<double>",
  5360. "value": [
  5361. "0;8.996816023004726,2.8157844768414066%",
  5362. "0;35.27431510338806,99.96034892786228%"
  5363. ]
  5364. },
  5365. "orientation": {
  5366. "type": "double",
  5367. "value": "0;88.3864610671187"
  5368. },
  5369. "scale": {
  5370. "type": "list<double>",
  5371. "value": [
  5372. 1,
  5373. 1
  5374. ]
  5375. },
  5376. "arrow": "arrowTail",
  5377. "arrowType": "arrow-empty-large",
  5378. "$linkDecoratorInfo": {
  5379. "type": "map<string,double>",
  5380. "value": {
  5381. "xratio": 1,
  5382. "yoffset": -8
  5383. }
  5384. }
  5385. },
  5386. "279": {
  5387. "r": {
  5388. "type": "double",
  5389. "value": 5
  5390. },
  5391. "style": {
  5392. "type": "map<string,string>",
  5393. "value": {
  5394. "stroke": "#000000",
  5395. "fill": "#ffffff",
  5396. "opacity": 0,
  5397. "stroke-width": 1
  5398. }
  5399. },
  5400. "mapper": {
  5401. "type": "code",
  5402. "value": ""
  5403. },
  5404. "parser": {
  5405. "type": "code",
  5406. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5407. },
  5408. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5409. "position": {
  5410. "type": "list<double>",
  5411. "value": [
  5412. "0;5.998005555168788,2.8157844768414066%",
  5413. "0;35.35878863769332,99.96034892786228%"
  5414. ]
  5415. },
  5416. "orientation": {
  5417. "type": "double",
  5418. "value": "0;88.3864610671187"
  5419. },
  5420. "scale": {
  5421. "type": "list<double>",
  5422. "value": [
  5423. 1,
  5424. 1
  5425. ]
  5426. },
  5427. "arrow": "arrowTail",
  5428. "arrowType": "circle-white",
  5429. "$linkDecoratorInfo": {
  5430. "type": "map<string,double>",
  5431. "value": {
  5432. "xratio": 1,
  5433. "yoffset": -5
  5434. }
  5435. }
  5436. },
  5437. "280": {
  5438. "segments": {
  5439. "type": "string",
  5440. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5441. },
  5442. "style": {
  5443. "type": "map<string,string>",
  5444. "value": {
  5445. "stroke": "#000000",
  5446. "fill": "#ffffff",
  5447. "opacity": 0,
  5448. "stroke-width": 1
  5449. }
  5450. },
  5451. "mapper": {
  5452. "type": "code",
  5453. "value": ""
  5454. },
  5455. "parser": {
  5456. "type": "code",
  5457. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5458. },
  5459. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5460. "position": {
  5461. "type": "list<double>",
  5462. "value": [
  5463. "0;10.99602300156198,2.8157844768414066%",
  5464. "0;35.21799941385123,99.96034892786228%"
  5465. ]
  5466. },
  5467. "orientation": {
  5468. "type": "double",
  5469. "value": "0;88.3864610671187"
  5470. },
  5471. "scale": {
  5472. "type": "list<double>",
  5473. "value": [
  5474. 1,
  5475. 1
  5476. ]
  5477. },
  5478. "arrow": "arrowTail",
  5479. "arrowType": "diamond-white-large",
  5480. "$linkDecoratorInfo": {
  5481. "type": "map<string,double>",
  5482. "value": {
  5483. "xratio": 1,
  5484. "yoffset": -10
  5485. }
  5486. }
  5487. },
  5488. "281": {
  5489. "segments": {
  5490. "type": "string",
  5491. "value": "m0,0 l10,4 l-10,4"
  5492. },
  5493. "style": {
  5494. "type": "map<string,string>",
  5495. "value": {
  5496. "stroke": "#000000",
  5497. "fill": "#000000",
  5498. "fill-opacity": 0,
  5499. "stroke-width": 1,
  5500. "opacity": 0
  5501. }
  5502. },
  5503. "mapper": {
  5504. "type": "code",
  5505. "value": ""
  5506. },
  5507. "parser": {
  5508. "type": "code",
  5509. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5510. },
  5511. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5512. "position": {
  5513. "type": "list<double>",
  5514. "value": [
  5515. "0;4.998402065890218,2.8157844768414066%",
  5516. "0;35.386946482461724,99.96034892786228%"
  5517. ]
  5518. },
  5519. "orientation": {
  5520. "type": "double",
  5521. "value": "0;88.3864610671187"
  5522. },
  5523. "scale": {
  5524. "type": "list<double>",
  5525. "value": [
  5526. 1,
  5527. 1
  5528. ]
  5529. },
  5530. "arrow": "arrowTail",
  5531. "arrowType": "arrow-empty",
  5532. "$linkDecoratorInfo": {
  5533. "type": "map<string,double>",
  5534. "value": {
  5535. "xratio": 1,
  5536. "yoffset": -4
  5537. }
  5538. }
  5539. },
  5540. "282": {
  5541. "segments": {
  5542. "type": "string",
  5543. "value": "m0,0 l10,5 l-10,5 z"
  5544. },
  5545. "style": {
  5546. "type": "map<string,string>",
  5547. "value": {
  5548. "stroke": "#000000",
  5549. "fill": "#ffffff",
  5550. "opacity": 0,
  5551. "stroke-width": 1
  5552. }
  5553. },
  5554. "mapper": {
  5555. "type": "code",
  5556. "value": ""
  5557. },
  5558. "parser": {
  5559. "type": "code",
  5560. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5561. },
  5562. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5563. "position": {
  5564. "type": "list<double>",
  5565. "value": [
  5566. "0;5.998005555168788,2.8157844768414066%",
  5567. "0;35.35878863769332,99.96034892786228%"
  5568. ]
  5569. },
  5570. "orientation": {
  5571. "type": "double",
  5572. "value": "0;88.3864610671187"
  5573. },
  5574. "scale": {
  5575. "type": "list<double>",
  5576. "value": [
  5577. 1,
  5578. 1
  5579. ]
  5580. },
  5581. "arrow": "arrowTail",
  5582. "arrowType": "triangle-white",
  5583. "$linkDecoratorInfo": {
  5584. "type": "map<string,double>",
  5585. "value": {
  5586. "xratio": 1,
  5587. "yoffset": -5
  5588. }
  5589. }
  5590. },
  5591. "283": {
  5592. "segments": {
  5593. "type": "string",
  5594. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5595. },
  5596. "style": {
  5597. "type": "map<string,string>",
  5598. "value": {
  5599. "stroke": "#000000",
  5600. "fill": "#ffffff",
  5601. "opacity": 0,
  5602. "stroke-width": 1
  5603. }
  5604. },
  5605. "mapper": {
  5606. "type": "code",
  5607. "value": ""
  5608. },
  5609. "parser": {
  5610. "type": "code",
  5611. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5612. },
  5613. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5614. "position": {
  5615. "type": "list<double>",
  5616. "value": [
  5617. "0;3.998017446393078,0%",
  5618. "0;-35.64078922384206,0%"
  5619. ]
  5620. },
  5621. "orientation": {
  5622. "type": "double",
  5623. "value": "0;88.38646106711883"
  5624. },
  5625. "scale": {
  5626. "type": "list<double>",
  5627. "value": [
  5628. 1,
  5629. 1
  5630. ]
  5631. },
  5632. "arrow": "arrowHead",
  5633. "arrowType": "diamond-white",
  5634. "$linkDecoratorInfo": {
  5635. "type": "map<string,double>",
  5636. "value": {
  5637. "xratio": -1,
  5638. "yoffset": -5
  5639. }
  5640. }
  5641. },
  5642. "284": {
  5643. "segments": {
  5644. "type": "string",
  5645. "value": "m0,0 l-10,5 l10,5 z"
  5646. },
  5647. "style": {
  5648. "type": "map<string,string>",
  5649. "value": {
  5650. "stroke": "#000000",
  5651. "fill": "#ffffff",
  5652. "opacity": 0,
  5653. "stroke-width": 1
  5654. }
  5655. },
  5656. "mapper": {
  5657. "type": "code",
  5658. "value": ""
  5659. },
  5660. "parser": {
  5661. "type": "code",
  5662. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5663. },
  5664. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5665. "position": {
  5666. "type": "list<double>",
  5667. "value": [
  5668. "0;3.998017446393078,0%",
  5669. "0;-35.64078922384206,0%"
  5670. ]
  5671. },
  5672. "orientation": {
  5673. "type": "double",
  5674. "value": "0;88.38646106711883"
  5675. },
  5676. "scale": {
  5677. "type": "list<double>",
  5678. "value": [
  5679. 1,
  5680. 1
  5681. ]
  5682. },
  5683. "arrow": "arrowHead",
  5684. "arrowType": "triangle-white",
  5685. "$linkDecoratorInfo": {
  5686. "type": "map<string,double>",
  5687. "value": {
  5688. "xratio": -1,
  5689. "yoffset": -5
  5690. }
  5691. }
  5692. },
  5693. "285": {
  5694. "segments": {
  5695. "type": "string",
  5696. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5697. },
  5698. "style": {
  5699. "type": "map<string,string>",
  5700. "value": {
  5701. "stroke": "#000000",
  5702. "fill": "#000000",
  5703. "opacity": 0,
  5704. "stroke-width": 1
  5705. }
  5706. },
  5707. "mapper": {
  5708. "type": "code",
  5709. "value": ""
  5710. },
  5711. "parser": {
  5712. "type": "code",
  5713. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5714. },
  5715. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5716. "position": {
  5717. "type": "list<double>",
  5718. "value": [
  5719. "0;3.998017446393078,0%",
  5720. "0;-35.64078922384206,0%"
  5721. ]
  5722. },
  5723. "orientation": {
  5724. "type": "double",
  5725. "value": "0;88.38646106711883"
  5726. },
  5727. "scale": {
  5728. "type": "list<double>",
  5729. "value": [
  5730. 1,
  5731. 1
  5732. ]
  5733. },
  5734. "arrow": "arrowHead",
  5735. "arrowType": "diamond-black",
  5736. "$linkDecoratorInfo": {
  5737. "type": "map<string,double>",
  5738. "value": {
  5739. "xratio": -1,
  5740. "yoffset": -5
  5741. }
  5742. }
  5743. },
  5744. "286": {
  5745. "r": {
  5746. "type": "double",
  5747. "value": 10
  5748. },
  5749. "style": {
  5750. "type": "map<string,string>",
  5751. "value": {
  5752. "stroke": "#000000",
  5753. "fill": "#000000",
  5754. "opacity": 0,
  5755. "stroke-width": 1
  5756. }
  5757. },
  5758. "mapper": {
  5759. "type": "code",
  5760. "value": ""
  5761. },
  5762. "parser": {
  5763. "type": "code",
  5764. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5765. },
  5766. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5767. "position": {
  5768. "type": "list<double>",
  5769. "value": [
  5770. "0;8.99603489278627,0%",
  5771. "0;-35.781578447684126,0%"
  5772. ]
  5773. },
  5774. "orientation": {
  5775. "type": "double",
  5776. "value": "0;88.38646106711883"
  5777. },
  5778. "scale": {
  5779. "type": "list<double>",
  5780. "value": [
  5781. 1,
  5782. 1
  5783. ]
  5784. },
  5785. "arrow": "arrowHead",
  5786. "arrowType": "circle-black-large",
  5787. "$linkDecoratorInfo": {
  5788. "type": "map<string,double>",
  5789. "value": {
  5790. "xratio": -1,
  5791. "yoffset": -10
  5792. }
  5793. }
  5794. },
  5795. "287": {
  5796. "segments": {
  5797. "type": "string",
  5798. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  5799. },
  5800. "style": {
  5801. "type": "map<string,string>",
  5802. "value": {
  5803. "stroke": "#000000",
  5804. "fill": "#000000",
  5805. "opacity": 0,
  5806. "stroke-width": 1
  5807. }
  5808. },
  5809. "mapper": {
  5810. "type": "code",
  5811. "value": ""
  5812. },
  5813. "parser": {
  5814. "type": "code",
  5815. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5816. },
  5817. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5818. "position": {
  5819. "type": "list<double>",
  5820. "value": [
  5821. "0;6.996827914229016,0%",
  5822. "0;-35.725262758147295,0%"
  5823. ]
  5824. },
  5825. "orientation": {
  5826. "type": "double",
  5827. "value": "0;88.38646106711883"
  5828. },
  5829. "scale": {
  5830. "type": "list<double>",
  5831. "value": [
  5832. 1,
  5833. 1
  5834. ]
  5835. },
  5836. "arrow": "arrowHead",
  5837. "arrowType": "arrow-black-large",
  5838. "$linkDecoratorInfo": {
  5839. "type": "map<string,double>",
  5840. "value": {
  5841. "xratio": -1,
  5842. "yoffset": -8
  5843. }
  5844. }
  5845. },
  5846. "288": {
  5847. "segments": {
  5848. "type": "string",
  5849. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  5850. },
  5851. "style": {
  5852. "type": "map<string,string>",
  5853. "value": {
  5854. "stroke": "#000000",
  5855. "fill": "#000000",
  5856. "opacity": 0,
  5857. "stroke-width": 1
  5858. }
  5859. },
  5860. "mapper": {
  5861. "type": "code",
  5862. "value": ""
  5863. },
  5864. "parser": {
  5865. "type": "code",
  5866. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5867. },
  5868. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5869. "position": {
  5870. "type": "list<double>",
  5871. "value": [
  5872. "0;2.998413957114508,0%",
  5873. "0;-35.61263137907363,0%"
  5874. ]
  5875. },
  5876. "orientation": {
  5877. "type": "double",
  5878. "value": "0;88.38646106711883"
  5879. },
  5880. "scale": {
  5881. "type": "list<double>",
  5882. "value": [
  5883. 1,
  5884. 1
  5885. ]
  5886. },
  5887. "arrow": "arrowHead",
  5888. "arrowType": "arrow-black",
  5889. "$linkDecoratorInfo": {
  5890. "type": "map<string,double>",
  5891. "value": {
  5892. "xratio": -1,
  5893. "yoffset": -4
  5894. }
  5895. }
  5896. },
  5897. "289": {
  5898. "segments": {
  5899. "type": "string",
  5900. "value": "m0,0 l-20,10 l20,10 z"
  5901. },
  5902. "style": {
  5903. "type": "map<string,string>",
  5904. "value": {
  5905. "stroke": "#000000",
  5906. "fill": "#ffffff",
  5907. "opacity": 0,
  5908. "stroke-width": 1
  5909. }
  5910. },
  5911. "mapper": {
  5912. "type": "code",
  5913. "value": ""
  5914. },
  5915. "parser": {
  5916. "type": "code",
  5917. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5918. },
  5919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5920. "position": {
  5921. "type": "list<double>",
  5922. "value": [
  5923. "0;8.99603489278627,0%",
  5924. "0;-35.781578447684126,0%"
  5925. ]
  5926. },
  5927. "orientation": {
  5928. "type": "double",
  5929. "value": "0;88.38646106711883"
  5930. },
  5931. "scale": {
  5932. "type": "list<double>",
  5933. "value": [
  5934. 1,
  5935. 1
  5936. ]
  5937. },
  5938. "arrow": "arrowHead",
  5939. "arrowType": "triangle-white-large",
  5940. "$linkDecoratorInfo": {
  5941. "type": "map<string,double>",
  5942. "value": {
  5943. "xratio": -1,
  5944. "yoffset": -10
  5945. }
  5946. }
  5947. },
  5948. "290": {
  5949. "segments": {
  5950. "type": "string",
  5951. "value": "m0,0 l-20,10 l20,10 z"
  5952. },
  5953. "style": {
  5954. "type": "map<string,string>",
  5955. "value": {
  5956. "stroke": "#000000",
  5957. "fill": "#000000",
  5958. "opacity": 0,
  5959. "stroke-width": 1
  5960. }
  5961. },
  5962. "mapper": {
  5963. "type": "code",
  5964. "value": ""
  5965. },
  5966. "parser": {
  5967. "type": "code",
  5968. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5969. },
  5970. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5971. "position": {
  5972. "type": "list<double>",
  5973. "value": [
  5974. "0;8.99603489278627,0%",
  5975. "0;-35.781578447684126,0%"
  5976. ]
  5977. },
  5978. "orientation": {
  5979. "type": "double",
  5980. "value": "0;88.38646106711883"
  5981. },
  5982. "scale": {
  5983. "type": "list<double>",
  5984. "value": [
  5985. 1,
  5986. 1
  5987. ]
  5988. },
  5989. "arrow": "arrowHead",
  5990. "arrowType": "triangle-black-large",
  5991. "$linkDecoratorInfo": {
  5992. "type": "map<string,double>",
  5993. "value": {
  5994. "xratio": -1,
  5995. "yoffset": -10
  5996. }
  5997. }
  5998. },
  5999. "291": {
  6000. "r": {
  6001. "type": "double",
  6002. "value": 5
  6003. },
  6004. "style": {
  6005. "type": "map<string,string>",
  6006. "value": {
  6007. "stroke": "#000000",
  6008. "fill": "#000000",
  6009. "opacity": 0,
  6010. "stroke-width": 1
  6011. }
  6012. },
  6013. "mapper": {
  6014. "type": "code",
  6015. "value": ""
  6016. },
  6017. "parser": {
  6018. "type": "code",
  6019. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6020. },
  6021. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6022. "position": {
  6023. "type": "list<double>",
  6024. "value": [
  6025. "0;3.998017446393078,0%",
  6026. "0;-35.64078922384206,0%"
  6027. ]
  6028. },
  6029. "orientation": {
  6030. "type": "double",
  6031. "value": "0;88.38646106711883"
  6032. },
  6033. "scale": {
  6034. "type": "list<double>",
  6035. "value": [
  6036. 1,
  6037. 1
  6038. ]
  6039. },
  6040. "arrow": "arrowHead",
  6041. "arrowType": "circle-black",
  6042. "$linkDecoratorInfo": {
  6043. "type": "map<string,double>",
  6044. "value": {
  6045. "xratio": -1,
  6046. "yoffset": -5
  6047. }
  6048. }
  6049. },
  6050. "292": {
  6051. "r": {
  6052. "type": "double",
  6053. "value": 5
  6054. },
  6055. "style": {
  6056. "type": "map<string,string>",
  6057. "value": {
  6058. "stroke": "#000000",
  6059. "fill": "#ffffff",
  6060. "opacity": 0,
  6061. "stroke-width": 1
  6062. }
  6063. },
  6064. "mapper": {
  6065. "type": "code",
  6066. "value": ""
  6067. },
  6068. "parser": {
  6069. "type": "code",
  6070. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6071. },
  6072. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6073. "position": {
  6074. "type": "list<double>",
  6075. "value": [
  6076. "0;3.998017446393078,0%",
  6077. "0;-35.64078922384206,0%"
  6078. ]
  6079. },
  6080. "orientation": {
  6081. "type": "double",
  6082. "value": "0;88.38646106711883"
  6083. },
  6084. "scale": {
  6085. "type": "list<double>",
  6086. "value": [
  6087. 1,
  6088. 1
  6089. ]
  6090. },
  6091. "arrow": "arrowHead",
  6092. "arrowType": "circle-white",
  6093. "$linkDecoratorInfo": {
  6094. "type": "map<string,double>",
  6095. "value": {
  6096. "xratio": -1,
  6097. "yoffset": -5
  6098. }
  6099. }
  6100. },
  6101. "293": {
  6102. "r": {
  6103. "type": "double",
  6104. "value": 10
  6105. },
  6106. "style": {
  6107. "type": "map<string,string>",
  6108. "value": {
  6109. "stroke": "#000000",
  6110. "fill": "#ffffff",
  6111. "opacity": 0,
  6112. "stroke-width": 1
  6113. }
  6114. },
  6115. "mapper": {
  6116. "type": "code",
  6117. "value": ""
  6118. },
  6119. "parser": {
  6120. "type": "code",
  6121. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6122. },
  6123. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6124. "position": {
  6125. "type": "list<double>",
  6126. "value": [
  6127. "0;8.99603489278627,0%",
  6128. "0;-35.781578447684126,0%"
  6129. ]
  6130. },
  6131. "orientation": {
  6132. "type": "double",
  6133. "value": "0;88.38646106711883"
  6134. },
  6135. "scale": {
  6136. "type": "list<double>",
  6137. "value": [
  6138. 1,
  6139. 1
  6140. ]
  6141. },
  6142. "arrow": "arrowHead",
  6143. "arrowType": "circle-white-large",
  6144. "$linkDecoratorInfo": {
  6145. "type": "map<string,double>",
  6146. "value": {
  6147. "xratio": -1,
  6148. "yoffset": -10
  6149. }
  6150. }
  6151. },
  6152. "294": {
  6153. "segments": {
  6154. "type": "string",
  6155. "value": "m0,0 l-20,8 l20,8"
  6156. },
  6157. "style": {
  6158. "type": "map<string,string>",
  6159. "value": {
  6160. "stroke": "#000000",
  6161. "fill": "#000000",
  6162. "fill-opacity": 0,
  6163. "stroke-width": 1,
  6164. "opacity": 0
  6165. }
  6166. },
  6167. "mapper": {
  6168. "type": "code",
  6169. "value": ""
  6170. },
  6171. "parser": {
  6172. "type": "code",
  6173. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6174. },
  6175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6176. "position": {
  6177. "type": "list<double>",
  6178. "value": [
  6179. "0;6.996827914229016,0%",
  6180. "0;-35.725262758147295,0%"
  6181. ]
  6182. },
  6183. "orientation": {
  6184. "type": "double",
  6185. "value": "0;88.38646106711883"
  6186. },
  6187. "scale": {
  6188. "type": "list<double>",
  6189. "value": [
  6190. 1,
  6191. 1
  6192. ]
  6193. },
  6194. "arrow": "arrowHead",
  6195. "arrowType": "arrow-empty-large",
  6196. "$linkDecoratorInfo": {
  6197. "type": "map<string,double>",
  6198. "value": {
  6199. "xratio": -1,
  6200. "yoffset": -8
  6201. }
  6202. }
  6203. },
  6204. "295": {
  6205. "segments": {
  6206. "type": "string",
  6207. "value": "m0,0 l-10,4 l10,4"
  6208. },
  6209. "style": {
  6210. "type": "map<string,string>",
  6211. "value": {
  6212. "stroke": "#000000",
  6213. "fill": "#000000",
  6214. "fill-opacity": 0,
  6215. "stroke-width": 1,
  6216. "opacity": 0
  6217. }
  6218. },
  6219. "mapper": {
  6220. "type": "code",
  6221. "value": ""
  6222. },
  6223. "parser": {
  6224. "type": "code",
  6225. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6226. },
  6227. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6228. "position": {
  6229. "type": "list<double>",
  6230. "value": [
  6231. "0;2.998413957114508,0%",
  6232. "0;-35.61263137907363,0%"
  6233. ]
  6234. },
  6235. "orientation": {
  6236. "type": "double",
  6237. "value": "0;88.38646106711883"
  6238. },
  6239. "scale": {
  6240. "type": "list<double>",
  6241. "value": [
  6242. 1,
  6243. 1
  6244. ]
  6245. },
  6246. "arrow": "arrowHead",
  6247. "arrowType": "arrow-empty",
  6248. "$linkDecoratorInfo": {
  6249. "type": "map<string,double>",
  6250. "value": {
  6251. "xratio": -1,
  6252. "yoffset": -4
  6253. }
  6254. }
  6255. },
  6256. "296": {
  6257. "segments": {
  6258. "type": "string",
  6259. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6260. },
  6261. "style": {
  6262. "type": "map<string,string>",
  6263. "value": {
  6264. "stroke": "#000000",
  6265. "fill": "#000000",
  6266. "opacity": 0,
  6267. "stroke-width": 1
  6268. }
  6269. },
  6270. "mapper": {
  6271. "type": "code",
  6272. "value": ""
  6273. },
  6274. "parser": {
  6275. "type": "code",
  6276. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6277. },
  6278. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6279. "position": {
  6280. "type": "list<double>",
  6281. "value": [
  6282. "0;8.99603489278627,0%",
  6283. "0;-35.781578447684126,0%"
  6284. ]
  6285. },
  6286. "orientation": {
  6287. "type": "double",
  6288. "value": "0;88.38646106711883"
  6289. },
  6290. "scale": {
  6291. "type": "list<double>",
  6292. "value": [
  6293. 1,
  6294. 1
  6295. ]
  6296. },
  6297. "arrow": "arrowHead",
  6298. "arrowType": "diamond-black-large",
  6299. "$linkDecoratorInfo": {
  6300. "type": "map<string,double>",
  6301. "value": {
  6302. "xratio": -1,
  6303. "yoffset": -10
  6304. }
  6305. }
  6306. },
  6307. "297": {
  6308. "segments": {
  6309. "type": "string",
  6310. "value": "m0,0 l-10,4 l10,4 z"
  6311. },
  6312. "style": {
  6313. "type": "map<string,string>",
  6314. "value": {
  6315. "stroke": "#000000",
  6316. "fill": "#000000",
  6317. "opacity": 0,
  6318. "stroke-width": 1
  6319. }
  6320. },
  6321. "mapper": {
  6322. "type": "code",
  6323. "value": ""
  6324. },
  6325. "parser": {
  6326. "type": "code",
  6327. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6328. },
  6329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6330. "position": {
  6331. "type": "list<double>",
  6332. "value": [
  6333. "0;2.998413957114508,0%",
  6334. "0;-35.61263137907363,0%"
  6335. ]
  6336. },
  6337. "orientation": {
  6338. "type": "double",
  6339. "value": "0;88.38646106711883"
  6340. },
  6341. "scale": {
  6342. "type": "list<double>",
  6343. "value": [
  6344. 1,
  6345. 1
  6346. ]
  6347. },
  6348. "arrow": "arrowHead",
  6349. "arrowType": "triangle-black",
  6350. "$linkDecoratorInfo": {
  6351. "type": "map<string,double>",
  6352. "value": {
  6353. "xratio": -1,
  6354. "yoffset": -4
  6355. }
  6356. }
  6357. },
  6358. "298": {
  6359. "segments": {
  6360. "type": "string",
  6361. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6362. },
  6363. "style": {
  6364. "type": "map<string,string>",
  6365. "value": {
  6366. "stroke": "#000000",
  6367. "fill": "#ffffff",
  6368. "opacity": 0,
  6369. "stroke-width": 1
  6370. }
  6371. },
  6372. "mapper": {
  6373. "type": "code",
  6374. "value": ""
  6375. },
  6376. "parser": {
  6377. "type": "code",
  6378. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6379. },
  6380. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6381. "position": {
  6382. "type": "list<double>",
  6383. "value": [
  6384. "0;8.99603489278627,0%",
  6385. "0;-35.781578447684126,0%"
  6386. ]
  6387. },
  6388. "orientation": {
  6389. "type": "double",
  6390. "value": "0;88.38646106711883"
  6391. },
  6392. "scale": {
  6393. "type": "list<double>",
  6394. "value": [
  6395. 1,
  6396. 1
  6397. ]
  6398. },
  6399. "arrow": "arrowHead",
  6400. "arrowType": "diamond-white-large",
  6401. "$linkDecoratorInfo": {
  6402. "type": "map<string,double>",
  6403. "value": {
  6404. "xratio": -1,
  6405. "yoffset": -10
  6406. }
  6407. }
  6408. }
  6409. },
  6410. "edges": []
  6411. }
  6412. },
  6413. "$asuri": {
  6414. "type": "string",
  6415. "value": "/Formalisms/__Transformations__/Transformation/MoTif/initial/108.instance"
  6416. },
  6417. "$segments": {
  6418. "type": "map<string,list<string>>",
  6419. "value": {
  6420. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon/0.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/108.instance": "M674,216L675,251.5",
  6421. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/108.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LQSRuleIcon/101.instance": "M675.002106723471,251.5747886832189L675.9999881087757,286.9995778615354"
  6422. }
  6423. },
  6424. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink"
  6425. },
  6426. "109": {
  6427. "typename": {
  6428. "type": "string",
  6429. "value": "CRuleIcon"
  6430. },
  6431. "position": {
  6432. "type": "list<double>",
  6433. "value": [
  6434. 581,
  6435. 433
  6436. ]
  6437. },
  6438. "orientation": {
  6439. "type": "double",
  6440. "value": 0
  6441. },
  6442. "scale": {
  6443. "type": "list<double>",
  6444. "value": [
  6445. 1,
  6446. 1
  6447. ]
  6448. },
  6449. "mapper": {
  6450. "type": "code",
  6451. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6452. },
  6453. "parser": {
  6454. "type": "code",
  6455. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6456. },
  6457. "$contents": {
  6458. "type": "map<string,*>",
  6459. "value": {
  6460. "nodes": {
  6461. "596": {
  6462. "segments": {
  6463. "type": "string",
  6464. "value": "M 1.5,1.5069319 12.49983,12.506752"
  6465. },
  6466. "style": {
  6467. "type": "map<string,string>",
  6468. "value": {
  6469. "fill": "none",
  6470. "stroke": "#008000",
  6471. "stroke-width": "3",
  6472. "stroke-linecap": "round",
  6473. "stroke-linejoin": "round",
  6474. "stroke-miterlimit": "4",
  6475. "stroke-opacity": "1",
  6476. "stroke-dasharray": "none"
  6477. }
  6478. },
  6479. "mapper": {
  6480. "type": "code",
  6481. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6482. },
  6483. "parser": {
  6484. "type": "code",
  6485. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6486. },
  6487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6488. "position": {
  6489. "type": "list<double>",
  6490. "value": [
  6491. 144,
  6492. 86
  6493. ]
  6494. },
  6495. "orientation": {
  6496. "type": "double",
  6497. "value": 0
  6498. },
  6499. "scale": {
  6500. "type": "list<double>",
  6501. "value": [
  6502. 1,
  6503. 1
  6504. ]
  6505. }
  6506. },
  6507. "597": {
  6508. "segments": {
  6509. "type": "string",
  6510. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  6511. },
  6512. "style": {
  6513. "type": "map<string,string>",
  6514. "value": {
  6515. "fill": "none",
  6516. "stroke": "#008000",
  6517. "stroke-width": "3",
  6518. "stroke-linecap": "butt",
  6519. "stroke-linejoin": "miter",
  6520. "stroke-miterlimit": "4",
  6521. "stroke-opacity": "1"
  6522. }
  6523. },
  6524. "mapper": {
  6525. "type": "code",
  6526. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6527. },
  6528. "parser": {
  6529. "type": "code",
  6530. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6531. },
  6532. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6533. "position": {
  6534. "type": "list<double>",
  6535. "value": [
  6536. 95,
  6537. 1
  6538. ]
  6539. },
  6540. "orientation": {
  6541. "type": "double",
  6542. "value": 0
  6543. },
  6544. "scale": {
  6545. "type": "list<double>",
  6546. "value": [
  6547. 1,
  6548. 1
  6549. ]
  6550. }
  6551. },
  6552. "598": {
  6553. "segments": {
  6554. "type": "string",
  6555. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  6556. },
  6557. "style": {
  6558. "type": "map<string,string>",
  6559. "value": {
  6560. "fill": "none",
  6561. "stroke": "#008000",
  6562. "stroke-width": "3",
  6563. "stroke-linecap": "round",
  6564. "stroke-linejoin": "round",
  6565. "stroke-miterlimit": "4",
  6566. "stroke-opacity": "1",
  6567. "stroke-dasharray": "none"
  6568. }
  6569. },
  6570. "mapper": {
  6571. "type": "code",
  6572. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6573. },
  6574. "parser": {
  6575. "type": "code",
  6576. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6577. },
  6578. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6579. "position": {
  6580. "type": "list<double>",
  6581. "value": [
  6582. 144,
  6583. 86
  6584. ]
  6585. },
  6586. "orientation": {
  6587. "type": "double",
  6588. "value": 0
  6589. },
  6590. "scale": {
  6591. "type": "list<double>",
  6592. "value": [
  6593. 1,
  6594. 1
  6595. ]
  6596. }
  6597. },
  6598. "600": {
  6599. "segments": {
  6600. "type": "string",
  6601. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  6602. },
  6603. "style": {
  6604. "type": "map<string,string>",
  6605. "value": {
  6606. "fill": "none",
  6607. "stroke": "#008000",
  6608. "stroke-width": "3",
  6609. "stroke-linecap": "round",
  6610. "stroke-linejoin": "round",
  6611. "stroke-miterlimit": "4",
  6612. "stroke-opacity": "1",
  6613. "stroke-dasharray": "none"
  6614. }
  6615. },
  6616. "mapper": {
  6617. "type": "code",
  6618. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6619. },
  6620. "parser": {
  6621. "type": "code",
  6622. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6623. },
  6624. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6625. "position": {
  6626. "type": "list<double>",
  6627. "value": [
  6628. 47,
  6629. 86
  6630. ]
  6631. },
  6632. "orientation": {
  6633. "type": "double",
  6634. "value": 0
  6635. },
  6636. "scale": {
  6637. "type": "list<double>",
  6638. "value": [
  6639. 1,
  6640. 1
  6641. ]
  6642. }
  6643. },
  6644. "601": {
  6645. "width": {
  6646. "type": "double",
  6647. "value": 210
  6648. },
  6649. "height": {
  6650. "type": "double",
  6651. "value": 60
  6652. },
  6653. "cornerRadius": {
  6654. "type": "double",
  6655. "value": 1
  6656. },
  6657. "style": {
  6658. "type": "map<string,string>",
  6659. "value": {
  6660. "fill": "#ffffff",
  6661. "stroke": "#008000",
  6662. "stroke-width": "3",
  6663. "stroke-linecap": "butt",
  6664. "stroke-linejoin": "miter",
  6665. "stroke-miterlimit": "4",
  6666. "stroke-opacity": "1",
  6667. "fill-opacity": "0.5"
  6668. }
  6669. },
  6670. "mapper": {
  6671. "type": "code",
  6672. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6673. },
  6674. "parser": {
  6675. "type": "code",
  6676. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6677. },
  6678. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6679. "position": {
  6680. "type": "list<double>",
  6681. "value": [
  6682. 1,
  6683. 24
  6684. ]
  6685. },
  6686. "orientation": {
  6687. "type": "double",
  6688. "value": 0
  6689. },
  6690. "scale": {
  6691. "type": "list<double>",
  6692. "value": [
  6693. 1,
  6694. 1
  6695. ]
  6696. }
  6697. },
  6698. "602": {
  6699. "textContent": {
  6700. "type": "string",
  6701. "value": ""
  6702. },
  6703. "style": {
  6704. "type": "map<string,string>",
  6705. "value": {
  6706. "font-size": "20px",
  6707. "font-style": "normal",
  6708. "font-variant": "normal",
  6709. "font-weight": "bold",
  6710. "font-stretch": "normal",
  6711. "text-align": "left",
  6712. "line-height": "125%",
  6713. "writing-mode": "lr-tb",
  6714. "text-anchor": "left",
  6715. "fill": "#008000",
  6716. "fill-opacity": "1",
  6717. "stroke": "none",
  6718. "font-family": "Arial"
  6719. }
  6720. },
  6721. "mapper": {
  6722. "type": "code",
  6723. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  6724. },
  6725. "parser": {
  6726. "type": "code",
  6727. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6728. },
  6729. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6730. "position": {
  6731. "type": "list<double>",
  6732. "value": [
  6733. 12,
  6734. 43
  6735. ]
  6736. },
  6737. "orientation": {
  6738. "type": "double",
  6739. "value": 0
  6740. },
  6741. "scale": {
  6742. "type": "list<double>",
  6743. "value": [
  6744. 1,
  6745. 1
  6746. ]
  6747. }
  6748. },
  6749. "603": {
  6750. "textContent": {
  6751. "type": "string",
  6752. "value": "T_highlight"
  6753. },
  6754. "style": {
  6755. "type": "map<string,string>",
  6756. "value": {
  6757. "font-size": "20px",
  6758. "font-style": "normal",
  6759. "font-variant": "normal",
  6760. "font-weight": "bold",
  6761. "font-stretch": "normal",
  6762. "text-align": "left",
  6763. "line-height": "125%",
  6764. "writing-mode": "lr-tb",
  6765. "text-anchor": "left",
  6766. "fill": "#008000",
  6767. "fill-opacity": "1",
  6768. "stroke": "none",
  6769. "font-family": "Arial"
  6770. }
  6771. },
  6772. "mapper": {
  6773. "type": "code",
  6774. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  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/Text",
  6781. "position": {
  6782. "type": "list<double>",
  6783. "value": [
  6784. 52,
  6785. 43
  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. "604": {
  6801. "width": {
  6802. "type": "double",
  6803. "value": 200
  6804. },
  6805. "height": {
  6806. "type": "double",
  6807. "value": 50
  6808. },
  6809. "cornerRadius": {
  6810. "type": "double",
  6811. "value": 1
  6812. },
  6813. "style": {
  6814. "type": "map<string,string>",
  6815. "value": {
  6816. "fill": "none",
  6817. "stroke": "#008000",
  6818. "stroke-width": "3",
  6819. "stroke-linecap": "butt",
  6820. "stroke-linejoin": "miter",
  6821. "stroke-miterlimit": "4",
  6822. "stroke-opacity": "1",
  6823. "fill-opacity": "0.5"
  6824. }
  6825. },
  6826. "mapper": {
  6827. "type": "code",
  6828. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6829. },
  6830. "parser": {
  6831. "type": "code",
  6832. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6833. },
  6834. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6835. "position": {
  6836. "type": "list<double>",
  6837. "value": [
  6838. 6,
  6839. 29
  6840. ]
  6841. },
  6842. "orientation": {
  6843. "type": "double",
  6844. "value": 0
  6845. },
  6846. "scale": {
  6847. "type": "list<double>",
  6848. "value": [
  6849. 1,
  6850. 1
  6851. ]
  6852. }
  6853. },
  6854. "605": {
  6855. "textContent": {
  6856. "type": "string",
  6857. "value": ":"
  6858. },
  6859. "style": {
  6860. "type": "map<string,string>",
  6861. "value": {
  6862. "font-size": "20px",
  6863. "font-style": "normal",
  6864. "font-variant": "normal",
  6865. "font-weight": "bold",
  6866. "font-stretch": "normal",
  6867. "text-align": "left",
  6868. "line-height": "125%",
  6869. "writing-mode": "lr-tb",
  6870. "text-anchor": "left",
  6871. "fill": "#008000",
  6872. "fill-opacity": "1",
  6873. "stroke": "none",
  6874. "font-family": "Arial"
  6875. }
  6876. },
  6877. "mapper": {
  6878. "type": "code",
  6879. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6880. },
  6881. "parser": {
  6882. "type": "code",
  6883. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6884. },
  6885. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  6886. "position": {
  6887. "type": "list<double>",
  6888. "value": [
  6889. 45,
  6890. 43
  6891. ]
  6892. },
  6893. "orientation": {
  6894. "type": "double",
  6895. "value": 0
  6896. },
  6897. "scale": {
  6898. "type": "list<double>",
  6899. "value": [
  6900. 1,
  6901. 1
  6902. ]
  6903. }
  6904. },
  6905. "606": {
  6906. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6907. "position": {
  6908. "type": "list<double>",
  6909. "value": [
  6910. 27.380101318328116,
  6911. 42.57653018725193
  6912. ]
  6913. },
  6914. "orientation": {
  6915. "type": "double",
  6916. "value": 0
  6917. },
  6918. "scale": {
  6919. "type": "list<double>",
  6920. "value": [
  6921. 1,
  6922. 1
  6923. ]
  6924. },
  6925. "link-style": {
  6926. "type": "map<string,string>",
  6927. "value": {
  6928. "stroke": "#00ffff",
  6929. "stroke-dasharray": "",
  6930. "stroke-opacity": 0.1,
  6931. "stroke-width": 1
  6932. }
  6933. }
  6934. },
  6935. "607": {
  6936. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6937. "position": {
  6938. "type": "list<double>",
  6939. "value": [
  6940. 19.861485400667107,
  6941. 42.60135036424299
  6942. ]
  6943. },
  6944. "orientation": {
  6945. "type": "double",
  6946. "value": 0
  6947. },
  6948. "scale": {
  6949. "type": "list<double>",
  6950. "value": [
  6951. 1,
  6952. 1
  6953. ]
  6954. },
  6955. "link-style": {
  6956. "type": "map<string,string>",
  6957. "value": {
  6958. "stroke": "#00ffff",
  6959. "stroke-dasharray": "",
  6960. "stroke-opacity": 0.1,
  6961. "stroke-width": 1
  6962. }
  6963. }
  6964. },
  6965. "608": {
  6966. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6967. "position": {
  6968. "type": "list<double>",
  6969. "value": [
  6970. 41.75,
  6971. 42.5
  6972. ]
  6973. },
  6974. "orientation": {
  6975. "type": "double",
  6976. "value": 0
  6977. },
  6978. "scale": {
  6979. "type": "list<double>",
  6980. "value": [
  6981. 1,
  6982. 1
  6983. ]
  6984. },
  6985. "link-style": {
  6986. "type": "map<string,string>",
  6987. "value": {
  6988. "stroke": "#00ffff",
  6989. "stroke-dasharray": "",
  6990. "stroke-opacity": 0.1,
  6991. "stroke-width": 1
  6992. }
  6993. }
  6994. }
  6995. },
  6996. "edges": [
  6997. {
  6998. "src": "604",
  6999. "dest": "606"
  7000. },
  7001. {
  7002. "src": "606",
  7003. "dest": "605"
  7004. },
  7005. {
  7006. "src": "604",
  7007. "dest": "607"
  7008. },
  7009. {
  7010. "src": "607",
  7011. "dest": "602"
  7012. },
  7013. {
  7014. "src": "604",
  7015. "dest": "608"
  7016. },
  7017. {
  7018. "src": "608",
  7019. "dest": "603"
  7020. }
  7021. ]
  7022. }
  7023. },
  7024. "$asuri": {
  7025. "type": "string",
  7026. "value": "/Formalisms/__Transformations__/Transformation/MoTif/CRule/109.instance"
  7027. },
  7028. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon"
  7029. },
  7030. "110": {
  7031. "link-style": {
  7032. "type": "map<string,string>",
  7033. "value": {
  7034. "stroke": "#000000",
  7035. "stroke-dasharray": "",
  7036. "stroke-opacity": 1,
  7037. "stroke-width": 0
  7038. }
  7039. },
  7040. "arrowHead": {
  7041. "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)",
  7042. "value": "custom"
  7043. },
  7044. "arrowTail": {
  7045. "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)",
  7046. "value": "arrow-black"
  7047. },
  7048. "typename": {
  7049. "type": "string",
  7050. "value": "loopLink"
  7051. },
  7052. "position": {
  7053. "type": "list<double>",
  7054. "value": [
  7055. 607.5,
  7056. 381.4688130645752
  7057. ]
  7058. },
  7059. "orientation": {
  7060. "type": "double",
  7061. "value": 0
  7062. },
  7063. "scale": {
  7064. "type": "list<double>",
  7065. "value": [
  7066. 1,
  7067. 1
  7068. ]
  7069. },
  7070. "mapper": {
  7071. "type": "code",
  7072. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  7073. },
  7074. "parser": {
  7075. "type": "code",
  7076. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7077. },
  7078. "$contents": {
  7079. "type": "map<string,*>",
  7080. "value": {
  7081. "nodes": {
  7082. "267": {
  7083. "segments": {
  7084. "type": "string",
  7085. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  7086. },
  7087. "style": {
  7088. "type": "map<string,string>",
  7089. "value": {
  7090. "stroke": "#000000",
  7091. "fill": "#000000",
  7092. "opacity": 0,
  7093. "stroke-width": 1
  7094. }
  7095. },
  7096. "mapper": {
  7097. "type": "code",
  7098. "value": ""
  7099. },
  7100. "parser": {
  7101. "type": "code",
  7102. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7103. },
  7104. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7105. "position": {
  7106. "type": "list<double>",
  7107. "value": [
  7108. "0;81.58450922806753,63.658675818182%",
  7109. "0;92.55358907857334,77.12050954885873%"
  7110. ]
  7111. },
  7112. "orientation": {
  7113. "type": "double",
  7114. "value": "0;50.46222904579997"
  7115. },
  7116. "scale": {
  7117. "type": "list<double>",
  7118. "value": [
  7119. 1,
  7120. 1
  7121. ]
  7122. },
  7123. "arrow": "arrowTail",
  7124. "arrowType": "arrow-black",
  7125. "$linkDecoratorInfo": {
  7126. "type": "map<string,double>",
  7127. "value": {
  7128. "xratio": 1,
  7129. "yoffset": -4
  7130. }
  7131. }
  7132. },
  7133. "268": {
  7134. "segments": {
  7135. "type": "string",
  7136. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7137. },
  7138. "style": {
  7139. "type": "map<string,string>",
  7140. "value": {
  7141. "stroke": "#000000",
  7142. "fill": "#000000",
  7143. "opacity": 0,
  7144. "stroke-width": 1
  7145. }
  7146. },
  7147. "mapper": {
  7148. "type": "code",
  7149. "value": ""
  7150. },
  7151. "parser": {
  7152. "type": "code",
  7153. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7154. },
  7155. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7156. "position": {
  7157. "type": "list<double>",
  7158. "value": [
  7159. "0;86.211739800999,63.658675818182%",
  7160. "0;88.73406852948244,77.12050954885873%"
  7161. ]
  7162. },
  7163. "orientation": {
  7164. "type": "double",
  7165. "value": "0;50.46222904579997"
  7166. },
  7167. "scale": {
  7168. "type": "list<double>",
  7169. "value": [
  7170. 1,
  7171. 1
  7172. ]
  7173. },
  7174. "arrow": "arrowTail",
  7175. "arrowType": "diamond-black-large",
  7176. "$linkDecoratorInfo": {
  7177. "type": "map<string,double>",
  7178. "value": {
  7179. "xratio": 1,
  7180. "yoffset": -10
  7181. }
  7182. }
  7183. },
  7184. "269": {
  7185. "r": {
  7186. "type": "double",
  7187. "value": 10
  7188. },
  7189. "style": {
  7190. "type": "map<string,string>",
  7191. "value": {
  7192. "stroke": "#000000",
  7193. "fill": "#000000",
  7194. "opacity": 0,
  7195. "stroke-width": 1
  7196. }
  7197. },
  7198. "mapper": {
  7199. "type": "code",
  7200. "value": ""
  7201. },
  7202. "parser": {
  7203. "type": "code",
  7204. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7205. },
  7206. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7207. "position": {
  7208. "type": "list<double>",
  7209. "value": [
  7210. "0;86.211739800999,63.658675818182%",
  7211. "0;88.73406852948244,77.12050954885873%"
  7212. ]
  7213. },
  7214. "orientation": {
  7215. "type": "double",
  7216. "value": "0;50.46222904579997"
  7217. },
  7218. "scale": {
  7219. "type": "list<double>",
  7220. "value": [
  7221. 1,
  7222. 1
  7223. ]
  7224. },
  7225. "arrow": "arrowTail",
  7226. "arrowType": "circle-black-large",
  7227. "$linkDecoratorInfo": {
  7228. "type": "map<string,double>",
  7229. "value": {
  7230. "xratio": 1,
  7231. "yoffset": -10
  7232. }
  7233. }
  7234. },
  7235. "270": {
  7236. "r": {
  7237. "type": "double",
  7238. "value": 10
  7239. },
  7240. "style": {
  7241. "type": "map<string,string>",
  7242. "value": {
  7243. "stroke": "#000000",
  7244. "fill": "#ffffff",
  7245. "opacity": 0,
  7246. "stroke-width": 1
  7247. }
  7248. },
  7249. "mapper": {
  7250. "type": "code",
  7251. "value": ""
  7252. },
  7253. "parser": {
  7254. "type": "code",
  7255. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7256. },
  7257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7258. "position": {
  7259. "type": "list<double>",
  7260. "value": [
  7261. "0;86.211739800999,63.658675818182%",
  7262. "0;88.73406852948244,77.12050954885873%"
  7263. ]
  7264. },
  7265. "orientation": {
  7266. "type": "double",
  7267. "value": "0;50.46222904579997"
  7268. },
  7269. "scale": {
  7270. "type": "list<double>",
  7271. "value": [
  7272. 1,
  7273. 1
  7274. ]
  7275. },
  7276. "arrow": "arrowTail",
  7277. "arrowType": "circle-white-large",
  7278. "$linkDecoratorInfo": {
  7279. "type": "map<string,double>",
  7280. "value": {
  7281. "xratio": 1,
  7282. "yoffset": -10
  7283. }
  7284. }
  7285. },
  7286. "271": {
  7287. "r": {
  7288. "type": "double",
  7289. "value": 5
  7290. },
  7291. "style": {
  7292. "type": "map<string,string>",
  7293. "value": {
  7294. "stroke": "#000000",
  7295. "fill": "#000000",
  7296. "opacity": 0,
  7297. "stroke-width": 1
  7298. }
  7299. },
  7300. "mapper": {
  7301. "type": "code",
  7302. "value": ""
  7303. },
  7304. "parser": {
  7305. "type": "code",
  7306. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7307. },
  7308. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7309. "position": {
  7310. "type": "list<double>",
  7311. "value": [
  7312. "0;82.35571432355607,63.658675818182%",
  7313. "0;91.91700232039153,77.12050954885873%"
  7314. ]
  7315. },
  7316. "orientation": {
  7317. "type": "double",
  7318. "value": "0;50.46222904579997"
  7319. },
  7320. "scale": {
  7321. "type": "list<double>",
  7322. "value": [
  7323. 1,
  7324. 1
  7325. ]
  7326. },
  7327. "arrow": "arrowTail",
  7328. "arrowType": "circle-black",
  7329. "$linkDecoratorInfo": {
  7330. "type": "map<string,double>",
  7331. "value": {
  7332. "xratio": 1,
  7333. "yoffset": -5
  7334. }
  7335. }
  7336. },
  7337. "272": {
  7338. "segments": {
  7339. "type": "string",
  7340. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7341. },
  7342. "style": {
  7343. "type": "map<string,string>",
  7344. "value": {
  7345. "stroke": "#000000",
  7346. "fill": "#000000",
  7347. "opacity": 0,
  7348. "stroke-width": 1
  7349. }
  7350. },
  7351. "mapper": {
  7352. "type": "code",
  7353. "value": ""
  7354. },
  7355. "parser": {
  7356. "type": "code",
  7357. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7358. },
  7359. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7360. "position": {
  7361. "type": "list<double>",
  7362. "value": [
  7363. "0;82.35571432355607,63.658675818182%",
  7364. "0;91.91700232039153,77.12050954885873%"
  7365. ]
  7366. },
  7367. "orientation": {
  7368. "type": "double",
  7369. "value": "0;50.46222904579997"
  7370. },
  7371. "scale": {
  7372. "type": "list<double>",
  7373. "value": [
  7374. 1,
  7375. 1
  7376. ]
  7377. },
  7378. "arrow": "arrowTail",
  7379. "arrowType": "diamond-black",
  7380. "$linkDecoratorInfo": {
  7381. "type": "map<string,double>",
  7382. "value": {
  7383. "xratio": 1,
  7384. "yoffset": -5
  7385. }
  7386. }
  7387. },
  7388. "273": {
  7389. "segments": {
  7390. "type": "string",
  7391. "value": "m0,0 l20,10 l-20,10 z"
  7392. },
  7393. "style": {
  7394. "type": "map<string,string>",
  7395. "value": {
  7396. "stroke": "#000000",
  7397. "fill": "#000000",
  7398. "opacity": 0,
  7399. "stroke-width": 1
  7400. }
  7401. },
  7402. "mapper": {
  7403. "type": "code",
  7404. "value": ""
  7405. },
  7406. "parser": {
  7407. "type": "code",
  7408. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7409. },
  7410. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7411. "position": {
  7412. "type": "list<double>",
  7413. "value": [
  7414. "0;86.211739800999,63.658675818182%",
  7415. "0;88.73406852948244,77.12050954885873%"
  7416. ]
  7417. },
  7418. "orientation": {
  7419. "type": "double",
  7420. "value": "0;50.46222904579997"
  7421. },
  7422. "scale": {
  7423. "type": "list<double>",
  7424. "value": [
  7425. 1,
  7426. 1
  7427. ]
  7428. },
  7429. "arrow": "arrowTail",
  7430. "arrowType": "triangle-black-large",
  7431. "$linkDecoratorInfo": {
  7432. "type": "map<string,double>",
  7433. "value": {
  7434. "xratio": 1,
  7435. "yoffset": -10
  7436. }
  7437. }
  7438. },
  7439. "274": {
  7440. "segments": {
  7441. "type": "string",
  7442. "value": "m0,0 l10,4 l-10,4 z"
  7443. },
  7444. "style": {
  7445. "type": "map<string,string>",
  7446. "value": {
  7447. "stroke": "#000000",
  7448. "fill": "#000000",
  7449. "opacity": 0,
  7450. "stroke-width": 1
  7451. }
  7452. },
  7453. "mapper": {
  7454. "type": "code",
  7455. "value": ""
  7456. },
  7457. "parser": {
  7458. "type": "code",
  7459. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7460. },
  7461. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7462. "position": {
  7463. "type": "list<double>",
  7464. "value": [
  7465. "0;81.58450922806753,63.658675818182%",
  7466. "0;92.55358907857334,77.12050954885873%"
  7467. ]
  7468. },
  7469. "orientation": {
  7470. "type": "double",
  7471. "value": "0;50.46222904579997"
  7472. },
  7473. "scale": {
  7474. "type": "list<double>",
  7475. "value": [
  7476. 1,
  7477. 1
  7478. ]
  7479. },
  7480. "arrow": "arrowTail",
  7481. "arrowType": "triangle-black",
  7482. "$linkDecoratorInfo": {
  7483. "type": "map<string,double>",
  7484. "value": {
  7485. "xratio": 1,
  7486. "yoffset": -4
  7487. }
  7488. }
  7489. },
  7490. "275": {
  7491. "segments": {
  7492. "type": "string",
  7493. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  7494. },
  7495. "style": {
  7496. "type": "map<string,string>",
  7497. "value": {
  7498. "stroke": "#000000",
  7499. "fill": "#000000",
  7500. "opacity": 0,
  7501. "stroke-width": 1
  7502. }
  7503. },
  7504. "mapper": {
  7505. "type": "code",
  7506. "value": ""
  7507. },
  7508. "parser": {
  7509. "type": "code",
  7510. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7511. },
  7512. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7513. "position": {
  7514. "type": "list<double>",
  7515. "value": [
  7516. "0;84.6693296100218,63.658675818182%",
  7517. "0;90.00724204584606,77.12050954885873%"
  7518. ]
  7519. },
  7520. "orientation": {
  7521. "type": "double",
  7522. "value": "0;50.46222904579997"
  7523. },
  7524. "scale": {
  7525. "type": "list<double>",
  7526. "value": [
  7527. 1,
  7528. 1
  7529. ]
  7530. },
  7531. "arrow": "arrowTail",
  7532. "arrowType": "arrow-black-large",
  7533. "$linkDecoratorInfo": {
  7534. "type": "map<string,double>",
  7535. "value": {
  7536. "xratio": 1,
  7537. "yoffset": -8
  7538. }
  7539. }
  7540. },
  7541. "276": {
  7542. "segments": {
  7543. "type": "string",
  7544. "value": "m0,0 l20,10 l-20,10 z"
  7545. },
  7546. "style": {
  7547. "type": "map<string,string>",
  7548. "value": {
  7549. "stroke": "#000000",
  7550. "fill": "#ffffff",
  7551. "opacity": 0,
  7552. "stroke-width": 1
  7553. }
  7554. },
  7555. "mapper": {
  7556. "type": "code",
  7557. "value": ""
  7558. },
  7559. "parser": {
  7560. "type": "code",
  7561. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7562. },
  7563. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7564. "position": {
  7565. "type": "list<double>",
  7566. "value": [
  7567. "0;86.211739800999,63.658675818182%",
  7568. "0;88.73406852948244,77.12050954885873%"
  7569. ]
  7570. },
  7571. "orientation": {
  7572. "type": "double",
  7573. "value": "0;50.46222904579997"
  7574. },
  7575. "scale": {
  7576. "type": "list<double>",
  7577. "value": [
  7578. 1,
  7579. 1
  7580. ]
  7581. },
  7582. "arrow": "arrowTail",
  7583. "arrowType": "triangle-white-large",
  7584. "$linkDecoratorInfo": {
  7585. "type": "map<string,double>",
  7586. "value": {
  7587. "xratio": 1,
  7588. "yoffset": -10
  7589. }
  7590. }
  7591. },
  7592. "277": {
  7593. "segments": {
  7594. "type": "string",
  7595. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7596. },
  7597. "style": {
  7598. "type": "map<string,string>",
  7599. "value": {
  7600. "stroke": "#000000",
  7601. "fill": "#ffffff",
  7602. "opacity": 0,
  7603. "stroke-width": 1
  7604. }
  7605. },
  7606. "mapper": {
  7607. "type": "code",
  7608. "value": ""
  7609. },
  7610. "parser": {
  7611. "type": "code",
  7612. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7613. },
  7614. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7615. "position": {
  7616. "type": "list<double>",
  7617. "value": [
  7618. "0;82.35571432355607,63.658675818182%",
  7619. "0;91.91700232039153,77.12050954885873%"
  7620. ]
  7621. },
  7622. "orientation": {
  7623. "type": "double",
  7624. "value": "0;50.46222904579997"
  7625. },
  7626. "scale": {
  7627. "type": "list<double>",
  7628. "value": [
  7629. 1,
  7630. 1
  7631. ]
  7632. },
  7633. "arrow": "arrowTail",
  7634. "arrowType": "diamond-white",
  7635. "$linkDecoratorInfo": {
  7636. "type": "map<string,double>",
  7637. "value": {
  7638. "xratio": 1,
  7639. "yoffset": -5
  7640. }
  7641. }
  7642. },
  7643. "278": {
  7644. "segments": {
  7645. "type": "string",
  7646. "value": "m0,0 l20,8 l-20,8"
  7647. },
  7648. "style": {
  7649. "type": "map<string,string>",
  7650. "value": {
  7651. "stroke": "#000000",
  7652. "fill": "#000000",
  7653. "fill-opacity": 0,
  7654. "stroke-width": 1,
  7655. "opacity": 0
  7656. }
  7657. },
  7658. "mapper": {
  7659. "type": "code",
  7660. "value": ""
  7661. },
  7662. "parser": {
  7663. "type": "code",
  7664. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7665. },
  7666. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7667. "position": {
  7668. "type": "list<double>",
  7669. "value": [
  7670. "0;84.6693296100218,63.658675818182%",
  7671. "0;90.00724204584606,77.12050954885873%"
  7672. ]
  7673. },
  7674. "orientation": {
  7675. "type": "double",
  7676. "value": "0;50.46222904579997"
  7677. },
  7678. "scale": {
  7679. "type": "list<double>",
  7680. "value": [
  7681. 1,
  7682. 1
  7683. ]
  7684. },
  7685. "arrow": "arrowTail",
  7686. "arrowType": "arrow-empty-large",
  7687. "$linkDecoratorInfo": {
  7688. "type": "map<string,double>",
  7689. "value": {
  7690. "xratio": 1,
  7691. "yoffset": -8
  7692. }
  7693. }
  7694. },
  7695. "279": {
  7696. "r": {
  7697. "type": "double",
  7698. "value": 5
  7699. },
  7700. "style": {
  7701. "type": "map<string,string>",
  7702. "value": {
  7703. "stroke": "#000000",
  7704. "fill": "#ffffff",
  7705. "opacity": 0,
  7706. "stroke-width": 1
  7707. }
  7708. },
  7709. "mapper": {
  7710. "type": "code",
  7711. "value": ""
  7712. },
  7713. "parser": {
  7714. "type": "code",
  7715. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7716. },
  7717. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7718. "position": {
  7719. "type": "list<double>",
  7720. "value": [
  7721. "0;82.35571432355607,63.658675818182%",
  7722. "0;91.91700232039153,77.12050954885873%"
  7723. ]
  7724. },
  7725. "orientation": {
  7726. "type": "double",
  7727. "value": "0;50.46222904579997"
  7728. },
  7729. "scale": {
  7730. "type": "list<double>",
  7731. "value": [
  7732. 1,
  7733. 1
  7734. ]
  7735. },
  7736. "arrow": "arrowTail",
  7737. "arrowType": "circle-white",
  7738. "$linkDecoratorInfo": {
  7739. "type": "map<string,double>",
  7740. "value": {
  7741. "xratio": 1,
  7742. "yoffset": -5
  7743. }
  7744. }
  7745. },
  7746. "280": {
  7747. "segments": {
  7748. "type": "string",
  7749. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7750. },
  7751. "style": {
  7752. "type": "map<string,string>",
  7753. "value": {
  7754. "stroke": "#000000",
  7755. "fill": "#ffffff",
  7756. "opacity": 0,
  7757. "stroke-width": 1
  7758. }
  7759. },
  7760. "mapper": {
  7761. "type": "code",
  7762. "value": ""
  7763. },
  7764. "parser": {
  7765. "type": "code",
  7766. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7767. },
  7768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7769. "position": {
  7770. "type": "list<double>",
  7771. "value": [
  7772. "0;86.211739800999,63.658675818182%",
  7773. "0;88.73406852948244,77.12050954885873%"
  7774. ]
  7775. },
  7776. "orientation": {
  7777. "type": "double",
  7778. "value": "0;50.46222904579997"
  7779. },
  7780. "scale": {
  7781. "type": "list<double>",
  7782. "value": [
  7783. 1,
  7784. 1
  7785. ]
  7786. },
  7787. "arrow": "arrowTail",
  7788. "arrowType": "diamond-white-large",
  7789. "$linkDecoratorInfo": {
  7790. "type": "map<string,double>",
  7791. "value": {
  7792. "xratio": 1,
  7793. "yoffset": -10
  7794. }
  7795. }
  7796. },
  7797. "281": {
  7798. "segments": {
  7799. "type": "string",
  7800. "value": "m0,0 l10,4 l-10,4"
  7801. },
  7802. "style": {
  7803. "type": "map<string,string>",
  7804. "value": {
  7805. "stroke": "#000000",
  7806. "fill": "#000000",
  7807. "fill-opacity": 0,
  7808. "stroke-width": 1,
  7809. "opacity": 0
  7810. }
  7811. },
  7812. "mapper": {
  7813. "type": "code",
  7814. "value": ""
  7815. },
  7816. "parser": {
  7817. "type": "code",
  7818. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7819. },
  7820. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7821. "position": {
  7822. "type": "list<double>",
  7823. "value": [
  7824. "0;81.58450922806753,63.658675818182%",
  7825. "0;92.55358907857334,77.12050954885873%"
  7826. ]
  7827. },
  7828. "orientation": {
  7829. "type": "double",
  7830. "value": "0;50.46222904579997"
  7831. },
  7832. "scale": {
  7833. "type": "list<double>",
  7834. "value": [
  7835. 1,
  7836. 1
  7837. ]
  7838. },
  7839. "arrow": "arrowTail",
  7840. "arrowType": "arrow-empty",
  7841. "$linkDecoratorInfo": {
  7842. "type": "map<string,double>",
  7843. "value": {
  7844. "xratio": 1,
  7845. "yoffset": -4
  7846. }
  7847. }
  7848. },
  7849. "282": {
  7850. "segments": {
  7851. "type": "string",
  7852. "value": "m0,0 l10,5 l-10,5 z"
  7853. },
  7854. "style": {
  7855. "type": "map<string,string>",
  7856. "value": {
  7857. "stroke": "#000000",
  7858. "fill": "#ffffff",
  7859. "opacity": 0,
  7860. "stroke-width": 1
  7861. }
  7862. },
  7863. "mapper": {
  7864. "type": "code",
  7865. "value": ""
  7866. },
  7867. "parser": {
  7868. "type": "code",
  7869. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7870. },
  7871. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7872. "position": {
  7873. "type": "list<double>",
  7874. "value": [
  7875. "0;82.35571432355607,63.658675818182%",
  7876. "0;91.91700232039153,77.12050954885873%"
  7877. ]
  7878. },
  7879. "orientation": {
  7880. "type": "double",
  7881. "value": "0;50.46222904579997"
  7882. },
  7883. "scale": {
  7884. "type": "list<double>",
  7885. "value": [
  7886. 1,
  7887. 1
  7888. ]
  7889. },
  7890. "arrow": "arrowTail",
  7891. "arrowType": "triangle-white",
  7892. "$linkDecoratorInfo": {
  7893. "type": "map<string,double>",
  7894. "value": {
  7895. "xratio": 1,
  7896. "yoffset": -5
  7897. }
  7898. }
  7899. },
  7900. "283": {
  7901. "segments": {
  7902. "type": "string",
  7903. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7904. },
  7905. "style": {
  7906. "type": "map<string,string>",
  7907. "value": {
  7908. "stroke": "#000000",
  7909. "fill": "#ffffff",
  7910. "opacity": 0,
  7911. "stroke-width": 1
  7912. }
  7913. },
  7914. "mapper": {
  7915. "type": "code",
  7916. "value": ""
  7917. },
  7918. "parser": {
  7919. "type": "code",
  7920. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7921. },
  7922. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7923. "position": {
  7924. "type": "list<double>",
  7925. "value": [
  7926. "0;-74.64397452255707,0%",
  7927. "0;-98.28324685548432,0%"
  7928. ]
  7929. },
  7930. "orientation": {
  7931. "type": "double",
  7932. "value": "0;50.462229045799994"
  7933. },
  7934. "scale": {
  7935. "type": "list<double>",
  7936. "value": [
  7937. 1,
  7938. 1
  7939. ]
  7940. },
  7941. "arrow": "arrowHead",
  7942. "arrowType": "diamond-white",
  7943. "$linkDecoratorInfo": {
  7944. "type": "map<string,double>",
  7945. "value": {
  7946. "xratio": -1,
  7947. "yoffset": -5
  7948. }
  7949. }
  7950. },
  7951. "284": {
  7952. "segments": {
  7953. "type": "string",
  7954. "value": "m0,0 l-10,5 l10,5 z"
  7955. },
  7956. "style": {
  7957. "type": "map<string,string>",
  7958. "value": {
  7959. "stroke": "#000000",
  7960. "fill": "#ffffff",
  7961. "opacity": 0,
  7962. "stroke-width": 1
  7963. }
  7964. },
  7965. "mapper": {
  7966. "type": "code",
  7967. "value": ""
  7968. },
  7969. "parser": {
  7970. "type": "code",
  7971. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7972. },
  7973. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7974. "position": {
  7975. "type": "list<double>",
  7976. "value": [
  7977. "0;-74.64397452255707,0%",
  7978. "0;-98.28324685548432,0%"
  7979. ]
  7980. },
  7981. "orientation": {
  7982. "type": "double",
  7983. "value": "0;50.462229045799994"
  7984. },
  7985. "scale": {
  7986. "type": "list<double>",
  7987. "value": [
  7988. 1,
  7989. 1
  7990. ]
  7991. },
  7992. "arrow": "arrowHead",
  7993. "arrowType": "triangle-white",
  7994. "$linkDecoratorInfo": {
  7995. "type": "map<string,double>",
  7996. "value": {
  7997. "xratio": -1,
  7998. "yoffset": -5
  7999. }
  8000. }
  8001. },
  8002. "285": {
  8003. "segments": {
  8004. "type": "string",
  8005. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  8006. },
  8007. "style": {
  8008. "type": "map<string,string>",
  8009. "value": {
  8010. "stroke": "#000000",
  8011. "fill": "#000000",
  8012. "opacity": 0,
  8013. "stroke-width": 1
  8014. }
  8015. },
  8016. "mapper": {
  8017. "type": "code",
  8018. "value": ""
  8019. },
  8020. "parser": {
  8021. "type": "code",
  8022. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8023. },
  8024. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8025. "position": {
  8026. "type": "list<double>",
  8027. "value": [
  8028. "0;-74.64397452255707,0%",
  8029. "0;-98.28324685548432,0%"
  8030. ]
  8031. },
  8032. "orientation": {
  8033. "type": "double",
  8034. "value": "0;50.462229045799994"
  8035. },
  8036. "scale": {
  8037. "type": "list<double>",
  8038. "value": [
  8039. 1,
  8040. 1
  8041. ]
  8042. },
  8043. "arrow": "arrowHead",
  8044. "arrowType": "diamond-black",
  8045. "$linkDecoratorInfo": {
  8046. "type": "map<string,double>",
  8047. "value": {
  8048. "xratio": -1,
  8049. "yoffset": -5
  8050. }
  8051. }
  8052. },
  8053. "286": {
  8054. "r": {
  8055. "type": "double",
  8056. "value": 10
  8057. },
  8058. "style": {
  8059. "type": "map<string,string>",
  8060. "value": {
  8061. "stroke": "#000000",
  8062. "fill": "#000000",
  8063. "opacity": 0,
  8064. "stroke-width": 1
  8065. }
  8066. },
  8067. "mapper": {
  8068. "type": "code",
  8069. "value": ""
  8070. },
  8071. "parser": {
  8072. "type": "code",
  8073. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8074. },
  8075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8076. "position": {
  8077. "type": "list<double>",
  8078. "value": [
  8079. "0;-70.78794904511415,0%",
  8080. "0;-101.46618064639341,0%"
  8081. ]
  8082. },
  8083. "orientation": {
  8084. "type": "double",
  8085. "value": "0;50.462229045799994"
  8086. },
  8087. "scale": {
  8088. "type": "list<double>",
  8089. "value": [
  8090. 1,
  8091. 1
  8092. ]
  8093. },
  8094. "arrow": "arrowHead",
  8095. "arrowType": "circle-black-large",
  8096. "$linkDecoratorInfo": {
  8097. "type": "map<string,double>",
  8098. "value": {
  8099. "xratio": -1,
  8100. "yoffset": -10
  8101. }
  8102. }
  8103. },
  8104. "287": {
  8105. "segments": {
  8106. "type": "string",
  8107. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  8108. },
  8109. "style": {
  8110. "type": "map<string,string>",
  8111. "value": {
  8112. "stroke": "#000000",
  8113. "fill": "#000000",
  8114. "opacity": 0,
  8115. "stroke-width": 1
  8116. }
  8117. },
  8118. "mapper": {
  8119. "type": "code",
  8120. "value": ""
  8121. },
  8122. "parser": {
  8123. "type": "code",
  8124. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8125. },
  8126. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8127. "position": {
  8128. "type": "list<double>",
  8129. "value": [
  8130. "0;-72.33035923609134,0%",
  8131. "0;-100.1930071300298,0%"
  8132. ]
  8133. },
  8134. "orientation": {
  8135. "type": "double",
  8136. "value": "0;50.462229045799994"
  8137. },
  8138. "scale": {
  8139. "type": "list<double>",
  8140. "value": [
  8141. 1,
  8142. 1
  8143. ]
  8144. },
  8145. "arrow": "arrowHead",
  8146. "arrowType": "arrow-black-large",
  8147. "$linkDecoratorInfo": {
  8148. "type": "map<string,double>",
  8149. "value": {
  8150. "xratio": -1,
  8151. "yoffset": -8
  8152. }
  8153. }
  8154. },
  8155. "288": {
  8156. "segments": {
  8157. "type": "string",
  8158. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  8159. },
  8160. "style": {
  8161. "type": "map<string,string>",
  8162. "value": {
  8163. "stroke": "#000000",
  8164. "fill": "#000000",
  8165. "opacity": 0,
  8166. "stroke-width": 1
  8167. }
  8168. },
  8169. "mapper": {
  8170. "type": "code",
  8171. "value": ""
  8172. },
  8173. "parser": {
  8174. "type": "code",
  8175. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8176. },
  8177. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8178. "position": {
  8179. "type": "list<double>",
  8180. "value": [
  8181. "0;-75.41517961804561,0%",
  8182. "0;-97.64666009730252,0%"
  8183. ]
  8184. },
  8185. "orientation": {
  8186. "type": "double",
  8187. "value": "0;50.462229045799994"
  8188. },
  8189. "scale": {
  8190. "type": "list<double>",
  8191. "value": [
  8192. 1,
  8193. 1
  8194. ]
  8195. },
  8196. "arrow": "arrowHead",
  8197. "arrowType": "arrow-black",
  8198. "$linkDecoratorInfo": {
  8199. "type": "map<string,double>",
  8200. "value": {
  8201. "xratio": -1,
  8202. "yoffset": -4
  8203. }
  8204. }
  8205. },
  8206. "289": {
  8207. "segments": {
  8208. "type": "string",
  8209. "value": "m0,0 l-20,10 l20,10 z"
  8210. },
  8211. "style": {
  8212. "type": "map<string,string>",
  8213. "value": {
  8214. "stroke": "#000000",
  8215. "fill": "#ffffff",
  8216. "opacity": 0,
  8217. "stroke-width": 1
  8218. }
  8219. },
  8220. "mapper": {
  8221. "type": "code",
  8222. "value": ""
  8223. },
  8224. "parser": {
  8225. "type": "code",
  8226. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8227. },
  8228. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8229. "position": {
  8230. "type": "list<double>",
  8231. "value": [
  8232. "0;-70.78794904511415,0%",
  8233. "0;-101.46618064639341,0%"
  8234. ]
  8235. },
  8236. "orientation": {
  8237. "type": "double",
  8238. "value": "0;50.462229045799994"
  8239. },
  8240. "scale": {
  8241. "type": "list<double>",
  8242. "value": [
  8243. 1,
  8244. 1
  8245. ]
  8246. },
  8247. "arrow": "arrowHead",
  8248. "arrowType": "triangle-white-large",
  8249. "$linkDecoratorInfo": {
  8250. "type": "map<string,double>",
  8251. "value": {
  8252. "xratio": -1,
  8253. "yoffset": -10
  8254. }
  8255. }
  8256. },
  8257. "290": {
  8258. "segments": {
  8259. "type": "string",
  8260. "value": "m0,0 l-20,10 l20,10 z"
  8261. },
  8262. "style": {
  8263. "type": "map<string,string>",
  8264. "value": {
  8265. "stroke": "#000000",
  8266. "fill": "#000000",
  8267. "opacity": 0,
  8268. "stroke-width": 1
  8269. }
  8270. },
  8271. "mapper": {
  8272. "type": "code",
  8273. "value": ""
  8274. },
  8275. "parser": {
  8276. "type": "code",
  8277. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8278. },
  8279. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8280. "position": {
  8281. "type": "list<double>",
  8282. "value": [
  8283. "0;-70.78794904511415,0%",
  8284. "0;-101.46618064639341,0%"
  8285. ]
  8286. },
  8287. "orientation": {
  8288. "type": "double",
  8289. "value": "0;50.462229045799994"
  8290. },
  8291. "scale": {
  8292. "type": "list<double>",
  8293. "value": [
  8294. 1,
  8295. 1
  8296. ]
  8297. },
  8298. "arrow": "arrowHead",
  8299. "arrowType": "triangle-black-large",
  8300. "$linkDecoratorInfo": {
  8301. "type": "map<string,double>",
  8302. "value": {
  8303. "xratio": -1,
  8304. "yoffset": -10
  8305. }
  8306. }
  8307. },
  8308. "291": {
  8309. "r": {
  8310. "type": "double",
  8311. "value": 5
  8312. },
  8313. "style": {
  8314. "type": "map<string,string>",
  8315. "value": {
  8316. "stroke": "#000000",
  8317. "fill": "#000000",
  8318. "opacity": 0,
  8319. "stroke-width": 1
  8320. }
  8321. },
  8322. "mapper": {
  8323. "type": "code",
  8324. "value": ""
  8325. },
  8326. "parser": {
  8327. "type": "code",
  8328. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8329. },
  8330. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8331. "position": {
  8332. "type": "list<double>",
  8333. "value": [
  8334. "0;-74.64397452255707,0%",
  8335. "0;-98.28324685548432,0%"
  8336. ]
  8337. },
  8338. "orientation": {
  8339. "type": "double",
  8340. "value": "0;50.462229045799994"
  8341. },
  8342. "scale": {
  8343. "type": "list<double>",
  8344. "value": [
  8345. 1,
  8346. 1
  8347. ]
  8348. },
  8349. "arrow": "arrowHead",
  8350. "arrowType": "circle-black",
  8351. "$linkDecoratorInfo": {
  8352. "type": "map<string,double>",
  8353. "value": {
  8354. "xratio": -1,
  8355. "yoffset": -5
  8356. }
  8357. }
  8358. },
  8359. "292": {
  8360. "r": {
  8361. "type": "double",
  8362. "value": 5
  8363. },
  8364. "style": {
  8365. "type": "map<string,string>",
  8366. "value": {
  8367. "stroke": "#000000",
  8368. "fill": "#ffffff",
  8369. "opacity": 0,
  8370. "stroke-width": 1
  8371. }
  8372. },
  8373. "mapper": {
  8374. "type": "code",
  8375. "value": ""
  8376. },
  8377. "parser": {
  8378. "type": "code",
  8379. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8380. },
  8381. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8382. "position": {
  8383. "type": "list<double>",
  8384. "value": [
  8385. "0;-74.64397452255707,0%",
  8386. "0;-98.28324685548432,0%"
  8387. ]
  8388. },
  8389. "orientation": {
  8390. "type": "double",
  8391. "value": "0;50.462229045799994"
  8392. },
  8393. "scale": {
  8394. "type": "list<double>",
  8395. "value": [
  8396. 1,
  8397. 1
  8398. ]
  8399. },
  8400. "arrow": "arrowHead",
  8401. "arrowType": "circle-white",
  8402. "$linkDecoratorInfo": {
  8403. "type": "map<string,double>",
  8404. "value": {
  8405. "xratio": -1,
  8406. "yoffset": -5
  8407. }
  8408. }
  8409. },
  8410. "293": {
  8411. "r": {
  8412. "type": "double",
  8413. "value": 10
  8414. },
  8415. "style": {
  8416. "type": "map<string,string>",
  8417. "value": {
  8418. "stroke": "#000000",
  8419. "fill": "#ffffff",
  8420. "opacity": 0,
  8421. "stroke-width": 1
  8422. }
  8423. },
  8424. "mapper": {
  8425. "type": "code",
  8426. "value": ""
  8427. },
  8428. "parser": {
  8429. "type": "code",
  8430. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8431. },
  8432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8433. "position": {
  8434. "type": "list<double>",
  8435. "value": [
  8436. "0;-70.78794904511415,0%",
  8437. "0;-101.46618064639341,0%"
  8438. ]
  8439. },
  8440. "orientation": {
  8441. "type": "double",
  8442. "value": "0;50.462229045799994"
  8443. },
  8444. "scale": {
  8445. "type": "list<double>",
  8446. "value": [
  8447. 1,
  8448. 1
  8449. ]
  8450. },
  8451. "arrow": "arrowHead",
  8452. "arrowType": "circle-white-large",
  8453. "$linkDecoratorInfo": {
  8454. "type": "map<string,double>",
  8455. "value": {
  8456. "xratio": -1,
  8457. "yoffset": -10
  8458. }
  8459. }
  8460. },
  8461. "294": {
  8462. "segments": {
  8463. "type": "string",
  8464. "value": "m0,0 l-20,8 l20,8"
  8465. },
  8466. "style": {
  8467. "type": "map<string,string>",
  8468. "value": {
  8469. "stroke": "#000000",
  8470. "fill": "#000000",
  8471. "fill-opacity": 0,
  8472. "stroke-width": 1,
  8473. "opacity": 0
  8474. }
  8475. },
  8476. "mapper": {
  8477. "type": "code",
  8478. "value": ""
  8479. },
  8480. "parser": {
  8481. "type": "code",
  8482. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8483. },
  8484. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8485. "position": {
  8486. "type": "list<double>",
  8487. "value": [
  8488. "0;-72.33035923609134,0%",
  8489. "0;-100.1930071300298,0%"
  8490. ]
  8491. },
  8492. "orientation": {
  8493. "type": "double",
  8494. "value": "0;50.462229045799994"
  8495. },
  8496. "scale": {
  8497. "type": "list<double>",
  8498. "value": [
  8499. 1,
  8500. 1
  8501. ]
  8502. },
  8503. "arrow": "arrowHead",
  8504. "arrowType": "arrow-empty-large",
  8505. "$linkDecoratorInfo": {
  8506. "type": "map<string,double>",
  8507. "value": {
  8508. "xratio": -1,
  8509. "yoffset": -8
  8510. }
  8511. }
  8512. },
  8513. "295": {
  8514. "segments": {
  8515. "type": "string",
  8516. "value": "m0,0 l-10,4 l10,4"
  8517. },
  8518. "style": {
  8519. "type": "map<string,string>",
  8520. "value": {
  8521. "stroke": "#000000",
  8522. "fill": "#000000",
  8523. "fill-opacity": 0,
  8524. "stroke-width": 1,
  8525. "opacity": 0
  8526. }
  8527. },
  8528. "mapper": {
  8529. "type": "code",
  8530. "value": ""
  8531. },
  8532. "parser": {
  8533. "type": "code",
  8534. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8535. },
  8536. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8537. "position": {
  8538. "type": "list<double>",
  8539. "value": [
  8540. "0;-75.41517961804561,0%",
  8541. "0;-97.64666009730252,0%"
  8542. ]
  8543. },
  8544. "orientation": {
  8545. "type": "double",
  8546. "value": "0;50.462229045799994"
  8547. },
  8548. "scale": {
  8549. "type": "list<double>",
  8550. "value": [
  8551. 1,
  8552. 1
  8553. ]
  8554. },
  8555. "arrow": "arrowHead",
  8556. "arrowType": "arrow-empty",
  8557. "$linkDecoratorInfo": {
  8558. "type": "map<string,double>",
  8559. "value": {
  8560. "xratio": -1,
  8561. "yoffset": -4
  8562. }
  8563. }
  8564. },
  8565. "296": {
  8566. "segments": {
  8567. "type": "string",
  8568. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8569. },
  8570. "style": {
  8571. "type": "map<string,string>",
  8572. "value": {
  8573. "stroke": "#000000",
  8574. "fill": "#000000",
  8575. "opacity": 0,
  8576. "stroke-width": 1
  8577. }
  8578. },
  8579. "mapper": {
  8580. "type": "code",
  8581. "value": ""
  8582. },
  8583. "parser": {
  8584. "type": "code",
  8585. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8586. },
  8587. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8588. "position": {
  8589. "type": "list<double>",
  8590. "value": [
  8591. "0;-70.78794904511415,0%",
  8592. "0;-101.46618064639341,0%"
  8593. ]
  8594. },
  8595. "orientation": {
  8596. "type": "double",
  8597. "value": "0;50.462229045799994"
  8598. },
  8599. "scale": {
  8600. "type": "list<double>",
  8601. "value": [
  8602. 1,
  8603. 1
  8604. ]
  8605. },
  8606. "arrow": "arrowHead",
  8607. "arrowType": "diamond-black-large",
  8608. "$linkDecoratorInfo": {
  8609. "type": "map<string,double>",
  8610. "value": {
  8611. "xratio": -1,
  8612. "yoffset": -10
  8613. }
  8614. }
  8615. },
  8616. "297": {
  8617. "segments": {
  8618. "type": "string",
  8619. "value": "m0,0 l-10,4 l10,4 z"
  8620. },
  8621. "style": {
  8622. "type": "map<string,string>",
  8623. "value": {
  8624. "stroke": "#000000",
  8625. "fill": "#000000",
  8626. "opacity": 0,
  8627. "stroke-width": 1
  8628. }
  8629. },
  8630. "mapper": {
  8631. "type": "code",
  8632. "value": ""
  8633. },
  8634. "parser": {
  8635. "type": "code",
  8636. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8637. },
  8638. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8639. "position": {
  8640. "type": "list<double>",
  8641. "value": [
  8642. "0;-75.41517961804561,0%",
  8643. "0;-97.64666009730252,0%"
  8644. ]
  8645. },
  8646. "orientation": {
  8647. "type": "double",
  8648. "value": "0;50.462229045799994"
  8649. },
  8650. "scale": {
  8651. "type": "list<double>",
  8652. "value": [
  8653. 1,
  8654. 1
  8655. ]
  8656. },
  8657. "arrow": "arrowHead",
  8658. "arrowType": "triangle-black",
  8659. "$linkDecoratorInfo": {
  8660. "type": "map<string,double>",
  8661. "value": {
  8662. "xratio": -1,
  8663. "yoffset": -4
  8664. }
  8665. }
  8666. },
  8667. "298": {
  8668. "segments": {
  8669. "type": "string",
  8670. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8671. },
  8672. "style": {
  8673. "type": "map<string,string>",
  8674. "value": {
  8675. "stroke": "#000000",
  8676. "fill": "#ffffff",
  8677. "opacity": 0,
  8678. "stroke-width": 1
  8679. }
  8680. },
  8681. "mapper": {
  8682. "type": "code",
  8683. "value": ""
  8684. },
  8685. "parser": {
  8686. "type": "code",
  8687. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8688. },
  8689. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8690. "position": {
  8691. "type": "list<double>",
  8692. "value": [
  8693. "0;-70.78794904511415,0%",
  8694. "0;-101.46618064639341,0%"
  8695. ]
  8696. },
  8697. "orientation": {
  8698. "type": "double",
  8699. "value": "0;50.462229045799994"
  8700. },
  8701. "scale": {
  8702. "type": "list<double>",
  8703. "value": [
  8704. 1,
  8705. 1
  8706. ]
  8707. },
  8708. "arrow": "arrowHead",
  8709. "arrowType": "diamond-white-large",
  8710. "$linkDecoratorInfo": {
  8711. "type": "map<string,double>",
  8712. "value": {
  8713. "xratio": -1,
  8714. "yoffset": -10
  8715. }
  8716. }
  8717. }
  8718. },
  8719. "edges": []
  8720. }
  8721. },
  8722. "$asuri": {
  8723. "type": "string",
  8724. "value": "/Formalisms/__Transformations__/Transformation/MoTif/loop/110.instance"
  8725. },
  8726. "$segments": {
  8727. "type": "map<string,list<string>>",
  8728. "value": {
  8729. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LQSRuleIcon/101.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/loopLink/110.instance": "M529,286.3685L607.5,381.4688130645752",
  8730. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/loopLink/110.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/CRuleIcon/109.instance": "M607.5955760250148,381.584600451841L685.9996888461131,476.56874917587584"
  8731. }
  8732. },
  8733. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/loopLink"
  8734. },
  8735. "124": {
  8736. "typename": {
  8737. "type": "string",
  8738. "value": "QRuleIcon"
  8739. },
  8740. "position": {
  8741. "type": "list<double>",
  8742. "value": [
  8743. 584,
  8744. 332
  8745. ]
  8746. },
  8747. "orientation": {
  8748. "type": "double",
  8749. "value": 0
  8750. },
  8751. "scale": {
  8752. "type": "list<double>",
  8753. "value": [
  8754. 1,
  8755. 1
  8756. ]
  8757. },
  8758. "mapper": {
  8759. "type": "code",
  8760. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8761. },
  8762. "parser": {
  8763. "type": "code",
  8764. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8765. },
  8766. "$contents": {
  8767. "type": "map<string,*>",
  8768. "value": {
  8769. "nodes": {
  8770. "342": {
  8771. "width": {
  8772. "type": "double",
  8773. "value": 200
  8774. },
  8775. "height": {
  8776. "type": "double",
  8777. "value": 50
  8778. },
  8779. "cornerRadius": {
  8780. "type": "double",
  8781. "value": 1
  8782. },
  8783. "style": {
  8784. "type": "map<string,string>",
  8785. "value": {
  8786. "fill": "#ffffff",
  8787. "stroke": "#008000",
  8788. "stroke-width": "5",
  8789. "stroke-linecap": "butt",
  8790. "stroke-linejoin": "miter",
  8791. "stroke-miterlimit": "4",
  8792. "stroke-opacity": "1",
  8793. "fill-opacity": "0.5"
  8794. }
  8795. },
  8796. "mapper": {
  8797. "type": "code",
  8798. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8799. },
  8800. "parser": {
  8801. "type": "code",
  8802. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8803. },
  8804. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  8805. "position": {
  8806. "type": "list<double>",
  8807. "value": [
  8808. 1,
  8809. 25
  8810. ]
  8811. },
  8812. "orientation": {
  8813. "type": "double",
  8814. "value": 0
  8815. },
  8816. "scale": {
  8817. "type": "list<double>",
  8818. "value": [
  8819. 1,
  8820. 1
  8821. ]
  8822. }
  8823. },
  8824. "343": {
  8825. "textContent": {
  8826. "type": "string",
  8827. "value": ""
  8828. },
  8829. "style": {
  8830. "type": "map<string,string>",
  8831. "value": {
  8832. "font-size": "20px",
  8833. "font-style": "normal",
  8834. "font-variant": "normal",
  8835. "font-weight": "bold",
  8836. "font-stretch": "normal",
  8837. "text-align": "left",
  8838. "line-height": "125%",
  8839. "writing-mode": "lr-tb",
  8840. "text-anchor": "left",
  8841. "fill": "#008000",
  8842. "fill-opacity": "1",
  8843. "stroke": "none",
  8844. "font-family": "Arial"
  8845. }
  8846. },
  8847. "mapper": {
  8848. "type": "code",
  8849. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  8850. },
  8851. "parser": {
  8852. "type": "code",
  8853. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8854. },
  8855. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8856. "position": {
  8857. "type": "list<double>",
  8858. "value": [
  8859. 8,
  8860. 39
  8861. ]
  8862. },
  8863. "orientation": {
  8864. "type": "double",
  8865. "value": 0
  8866. },
  8867. "scale": {
  8868. "type": "list<double>",
  8869. "value": [
  8870. 1,
  8871. 1
  8872. ]
  8873. }
  8874. },
  8875. "344": {
  8876. "textContent": {
  8877. "type": "string",
  8878. "value": "getNodeWithNAC"
  8879. },
  8880. "style": {
  8881. "type": "map<string,string>",
  8882. "value": {
  8883. "font-size": "20px",
  8884. "font-style": "normal",
  8885. "font-variant": "normal",
  8886. "font-weight": "bold",
  8887. "font-stretch": "normal",
  8888. "text-align": "left",
  8889. "line-height": "125%",
  8890. "writing-mode": "lr-tb",
  8891. "text-anchor": "left",
  8892. "fill": "#008000",
  8893. "fill-opacity": "1",
  8894. "stroke": "none",
  8895. "font-family": "Arial"
  8896. }
  8897. },
  8898. "mapper": {
  8899. "type": "code",
  8900. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  8901. },
  8902. "parser": {
  8903. "type": "code",
  8904. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8905. },
  8906. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8907. "position": {
  8908. "type": "list<double>",
  8909. "value": [
  8910. 48,
  8911. 39
  8912. ]
  8913. },
  8914. "orientation": {
  8915. "type": "double",
  8916. "value": 0
  8917. },
  8918. "scale": {
  8919. "type": "list<double>",
  8920. "value": [
  8921. 1,
  8922. 1
  8923. ]
  8924. }
  8925. },
  8926. "345": {
  8927. "segments": {
  8928. "type": "string",
  8929. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  8930. },
  8931. "style": {
  8932. "type": "map<string,string>",
  8933. "value": {
  8934. "fill": "none",
  8935. "stroke": "#008000",
  8936. "stroke-width": "3",
  8937. "stroke-linecap": "round",
  8938. "stroke-linejoin": "round",
  8939. "stroke-miterlimit": "4",
  8940. "stroke-opacity": "1",
  8941. "stroke-dasharray": "none"
  8942. }
  8943. },
  8944. "mapper": {
  8945. "type": "code",
  8946. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8947. },
  8948. "parser": {
  8949. "type": "code",
  8950. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8951. },
  8952. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8953. "position": {
  8954. "type": "list<double>",
  8955. "value": [
  8956. 47,
  8957. 78
  8958. ]
  8959. },
  8960. "orientation": {
  8961. "type": "double",
  8962. "value": 0
  8963. },
  8964. "scale": {
  8965. "type": "list<double>",
  8966. "value": [
  8967. 1,
  8968. 1
  8969. ]
  8970. }
  8971. },
  8972. "346": {
  8973. "textContent": {
  8974. "type": "string",
  8975. "value": ":"
  8976. },
  8977. "style": {
  8978. "type": "map<string,string>",
  8979. "value": {
  8980. "font-size": "20px",
  8981. "font-style": "normal",
  8982. "font-variant": "normal",
  8983. "font-weight": "bold",
  8984. "font-stretch": "normal",
  8985. "text-align": "left",
  8986. "line-height": "125%",
  8987. "writing-mode": "lr-tb",
  8988. "text-anchor": "left",
  8989. "fill": "#008000",
  8990. "fill-opacity": "1",
  8991. "stroke": "none",
  8992. "font-family": "Arial"
  8993. }
  8994. },
  8995. "mapper": {
  8996. "type": "code",
  8997. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8998. },
  8999. "parser": {
  9000. "type": "code",
  9001. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9002. },
  9003. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  9004. "position": {
  9005. "type": "list<double>",
  9006. "value": [
  9007. 41,
  9008. 39
  9009. ]
  9010. },
  9011. "orientation": {
  9012. "type": "double",
  9013. "value": 0
  9014. },
  9015. "scale": {
  9016. "type": "list<double>",
  9017. "value": [
  9018. 1,
  9019. 1
  9020. ]
  9021. }
  9022. },
  9023. "347": {
  9024. "segments": {
  9025. "type": "string",
  9026. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  9027. },
  9028. "style": {
  9029. "type": "map<string,string>",
  9030. "value": {
  9031. "fill": "none",
  9032. "stroke": "#008000",
  9033. "stroke-width": "3",
  9034. "stroke-linecap": "round",
  9035. "stroke-linejoin": "round",
  9036. "stroke-miterlimit": "4",
  9037. "stroke-opacity": "1",
  9038. "stroke-dasharray": "none"
  9039. }
  9040. },
  9041. "mapper": {
  9042. "type": "code",
  9043. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9044. },
  9045. "parser": {
  9046. "type": "code",
  9047. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9048. },
  9049. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9050. "position": {
  9051. "type": "list<double>",
  9052. "value": [
  9053. 144,
  9054. 78
  9055. ]
  9056. },
  9057. "orientation": {
  9058. "type": "double",
  9059. "value": 0
  9060. },
  9061. "scale": {
  9062. "type": "list<double>",
  9063. "value": [
  9064. 1,
  9065. 1
  9066. ]
  9067. }
  9068. },
  9069. "348": {
  9070. "segments": {
  9071. "type": "string",
  9072. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  9073. },
  9074. "style": {
  9075. "type": "map<string,string>",
  9076. "value": {
  9077. "fill": "#ffffff",
  9078. "fill-opacity": "0.5",
  9079. "stroke": "#008000",
  9080. "stroke-width": "3",
  9081. "stroke-linecap": "butt",
  9082. "stroke-linejoin": "miter",
  9083. "stroke-miterlimit": "4",
  9084. "stroke-opacity": "1"
  9085. }
  9086. },
  9087. "mapper": {
  9088. "type": "code",
  9089. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9090. },
  9091. "parser": {
  9092. "type": "code",
  9093. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9094. },
  9095. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9096. "position": {
  9097. "type": "list<double>",
  9098. "value": [
  9099. 95,
  9100. 1
  9101. ]
  9102. },
  9103. "orientation": {
  9104. "type": "double",
  9105. "value": 0
  9106. },
  9107. "scale": {
  9108. "type": "list<double>",
  9109. "value": [
  9110. 1,
  9111. 1
  9112. ]
  9113. }
  9114. },
  9115. "349": {
  9116. "segments": {
  9117. "type": "string",
  9118. "value": "M 1.5,1.5069319 12.49983,12.506752"
  9119. },
  9120. "style": {
  9121. "type": "map<string,string>",
  9122. "value": {
  9123. "fill": "none",
  9124. "stroke": "#008000",
  9125. "stroke-width": "3",
  9126. "stroke-linecap": "round",
  9127. "stroke-linejoin": "round",
  9128. "stroke-miterlimit": "4",
  9129. "stroke-opacity": "1",
  9130. "stroke-dasharray": "none"
  9131. }
  9132. },
  9133. "mapper": {
  9134. "type": "code",
  9135. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  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. 144,
  9146. 78
  9147. ]
  9148. },
  9149. "orientation": {
  9150. "type": "double",
  9151. "value": 0
  9152. },
  9153. "scale": {
  9154. "type": "list<double>",
  9155. "value": [
  9156. 1,
  9157. 1
  9158. ]
  9159. }
  9160. },
  9161. "350": {
  9162. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  9163. "position": {
  9164. "type": "list<double>",
  9165. "value": [
  9166. 23,
  9167. 38.5
  9168. ]
  9169. },
  9170. "orientation": {
  9171. "type": "double",
  9172. "value": 0
  9173. },
  9174. "scale": {
  9175. "type": "list<double>",
  9176. "value": [
  9177. 1,
  9178. 1
  9179. ]
  9180. },
  9181. "link-style": {
  9182. "type": "map<string,string>",
  9183. "value": {
  9184. "stroke": "#00ffff",
  9185. "stroke-dasharray": "",
  9186. "stroke-opacity": 0.1,
  9187. "stroke-width": 1
  9188. }
  9189. }
  9190. },
  9191. "351": {
  9192. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  9193. "position": {
  9194. "type": "list<double>",
  9195. "value": [
  9196. 15.25,
  9197. 38.5
  9198. ]
  9199. },
  9200. "orientation": {
  9201. "type": "double",
  9202. "value": 0
  9203. },
  9204. "scale": {
  9205. "type": "list<double>",
  9206. "value": [
  9207. 1,
  9208. 1
  9209. ]
  9210. },
  9211. "link-style": {
  9212. "type": "map<string,string>",
  9213. "value": {
  9214. "stroke": "#00ffff",
  9215. "stroke-dasharray": "",
  9216. "stroke-opacity": 0.1,
  9217. "stroke-width": 1
  9218. }
  9219. }
  9220. },
  9221. "352": {
  9222. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  9223. "position": {
  9224. "type": "list<double>",
  9225. "value": [
  9226. 37.25,
  9227. 38.5
  9228. ]
  9229. },
  9230. "orientation": {
  9231. "type": "double",
  9232. "value": 0
  9233. },
  9234. "scale": {
  9235. "type": "list<double>",
  9236. "value": [
  9237. 1,
  9238. 1
  9239. ]
  9240. },
  9241. "link-style": {
  9242. "type": "map<string,string>",
  9243. "value": {
  9244. "stroke": "#00ffff",
  9245. "stroke-dasharray": "",
  9246. "stroke-opacity": 0.1,
  9247. "stroke-width": 1
  9248. }
  9249. }
  9250. },
  9251. "359": {
  9252. "textContent": {
  9253. "type": "string",
  9254. "value": "?"
  9255. },
  9256. "style": {
  9257. "type": "map<string,string>",
  9258. "value": {
  9259. "font-size": "20px",
  9260. "font-style": "normal",
  9261. "font-variant": "normal",
  9262. "font-weight": "bold",
  9263. "font-stretch": "normal",
  9264. "text-align": "left",
  9265. "line-height": "100%",
  9266. "writing-mode": "lr-tb",
  9267. "text-anchor": "left",
  9268. "fill": "#008000",
  9269. "fill-opacity": "1",
  9270. "stroke": "none",
  9271. "font-family": "Arial"
  9272. }
  9273. },
  9274. "mapper": {
  9275. "type": "code",
  9276. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9277. },
  9278. "parser": {
  9279. "type": "code",
  9280. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9281. },
  9282. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  9283. "position": {
  9284. "type": "list<double>",
  9285. "value": [
  9286. 206,
  9287. 23
  9288. ]
  9289. },
  9290. "orientation": {
  9291. "type": "double",
  9292. "value": 0
  9293. },
  9294. "scale": {
  9295. "type": "list<double>",
  9296. "value": [
  9297. 1,
  9298. 1
  9299. ]
  9300. }
  9301. }
  9302. },
  9303. "edges": [
  9304. {
  9305. "src": "342",
  9306. "dest": "350"
  9307. },
  9308. {
  9309. "src": "350",
  9310. "dest": "346"
  9311. },
  9312. {
  9313. "src": "342",
  9314. "dest": "351"
  9315. },
  9316. {
  9317. "src": "351",
  9318. "dest": "343"
  9319. },
  9320. {
  9321. "src": "342",
  9322. "dest": "352"
  9323. },
  9324. {
  9325. "src": "352",
  9326. "dest": "344"
  9327. }
  9328. ]
  9329. }
  9330. },
  9331. "$asuri": {
  9332. "type": "string",
  9333. "value": "/Formalisms/__Transformations__/Transformation/MoTif/QRule/124.instance"
  9334. },
  9335. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/QRuleIcon"
  9336. },
  9337. "125": {
  9338. "link-style": {
  9339. "type": "map<string,string>",
  9340. "value": {
  9341. "stroke": "#000000",
  9342. "stroke-dasharray": "",
  9343. "stroke-opacity": 1,
  9344. "stroke-width": 0
  9345. }
  9346. },
  9347. "arrowHead": {
  9348. "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)",
  9349. "value": "custom"
  9350. },
  9351. "arrowTail": {
  9352. "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)",
  9353. "value": "arrow-black"
  9354. },
  9355. "typename": {
  9356. "type": "string",
  9357. "value": "baseLink"
  9358. },
  9359. "position": {
  9360. "type": "list<double>",
  9361. "value": [
  9362. 610.128350469993,
  9363. 326.205749864196
  9364. ]
  9365. },
  9366. "orientation": {
  9367. "type": "double",
  9368. "value": 0
  9369. },
  9370. "scale": {
  9371. "type": "list<double>",
  9372. "value": [
  9373. 1,
  9374. 1
  9375. ]
  9376. },
  9377. "mapper": {
  9378. "type": "code",
  9379. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9380. },
  9381. "parser": {
  9382. "type": "code",
  9383. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9384. },
  9385. "$contents": {
  9386. "type": "map<string,*>",
  9387. "value": {
  9388. "nodes": {
  9389. "267": {
  9390. "segments": {
  9391. "type": "string",
  9392. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  9393. },
  9394. "style": {
  9395. "type": "map<string,string>",
  9396. "value": {
  9397. "stroke": "#000000",
  9398. "fill": "#000000",
  9399. "opacity": 0,
  9400. "stroke-width": 1
  9401. }
  9402. },
  9403. "mapper": {
  9404. "type": "code",
  9405. "value": ""
  9406. },
  9407. "parser": {
  9408. "type": "code",
  9409. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9410. },
  9411. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9412. "position": {
  9413. "type": "list<double>",
  9414. "value": [
  9415. "0;84.96899122057494,85.14303742497712%",
  9416. "0;47.6415788415527,52.4467651819342%"
  9417. ]
  9418. },
  9419. "orientation": {
  9420. "type": "double",
  9421. "value": "0;31.632412746712912"
  9422. },
  9423. "scale": {
  9424. "type": "list<double>",
  9425. "value": [
  9426. 1,
  9427. 1
  9428. ]
  9429. },
  9430. "arrow": "arrowTail",
  9431. "arrowType": "arrow-black",
  9432. "$linkDecoratorInfo": {
  9433. "type": "map<string,double>",
  9434. "value": {
  9435. "xratio": 1,
  9436. "yoffset": -4
  9437. }
  9438. }
  9439. },
  9440. "268": {
  9441. "segments": {
  9442. "type": "string",
  9443. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9444. },
  9445. "style": {
  9446. "type": "map<string,string>",
  9447. "value": {
  9448. "stroke": "#000000",
  9449. "fill": "#000000",
  9450. "opacity": 0,
  9451. "stroke-width": 1
  9452. }
  9453. },
  9454. "mapper": {
  9455. "type": "code",
  9456. "value": ""
  9457. },
  9458. "parser": {
  9459. "type": "code",
  9460. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9461. },
  9462. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9463. "position": {
  9464. "type": "list<double>",
  9465. "value": [
  9466. "0;88.11579713149092,85.14303742497712%",
  9467. "0;42.53299659605409,52.4467651819342%"
  9468. ]
  9469. },
  9470. "orientation": {
  9471. "type": "double",
  9472. "value": "0;31.632412746712912"
  9473. },
  9474. "scale": {
  9475. "type": "list<double>",
  9476. "value": [
  9477. 1,
  9478. 1
  9479. ]
  9480. },
  9481. "arrow": "arrowTail",
  9482. "arrowType": "diamond-black-large",
  9483. "$linkDecoratorInfo": {
  9484. "type": "map<string,double>",
  9485. "value": {
  9486. "xratio": 1,
  9487. "yoffset": -10
  9488. }
  9489. }
  9490. },
  9491. "269": {
  9492. "r": {
  9493. "type": "double",
  9494. "value": 10
  9495. },
  9496. "style": {
  9497. "type": "map<string,string>",
  9498. "value": {
  9499. "stroke": "#000000",
  9500. "fill": "#000000",
  9501. "opacity": 0,
  9502. "stroke-width": 1
  9503. }
  9504. },
  9505. "mapper": {
  9506. "type": "code",
  9507. "value": ""
  9508. },
  9509. "parser": {
  9510. "type": "code",
  9511. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9512. },
  9513. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9514. "position": {
  9515. "type": "list<double>",
  9516. "value": [
  9517. "0;88.11579713149092,85.14303742497712%",
  9518. "0;42.53299659605409,52.4467651819342%"
  9519. ]
  9520. },
  9521. "orientation": {
  9522. "type": "double",
  9523. "value": "0;31.632412746712912"
  9524. },
  9525. "scale": {
  9526. "type": "list<double>",
  9527. "value": [
  9528. 1,
  9529. 1
  9530. ]
  9531. },
  9532. "arrow": "arrowTail",
  9533. "arrowType": "circle-black-large",
  9534. "$linkDecoratorInfo": {
  9535. "type": "map<string,double>",
  9536. "value": {
  9537. "xratio": 1,
  9538. "yoffset": -10
  9539. }
  9540. }
  9541. },
  9542. "270": {
  9543. "r": {
  9544. "type": "double",
  9545. "value": 10
  9546. },
  9547. "style": {
  9548. "type": "map<string,string>",
  9549. "value": {
  9550. "stroke": "#000000",
  9551. "fill": "#ffffff",
  9552. "opacity": 0,
  9553. "stroke-width": 1
  9554. }
  9555. },
  9556. "mapper": {
  9557. "type": "code",
  9558. "value": ""
  9559. },
  9560. "parser": {
  9561. "type": "code",
  9562. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9563. },
  9564. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9565. "position": {
  9566. "type": "list<double>",
  9567. "value": [
  9568. "0;88.11579713149092,85.14303742497712%",
  9569. "0;42.53299659605409,52.4467651819342%"
  9570. ]
  9571. },
  9572. "orientation": {
  9573. "type": "double",
  9574. "value": "0;31.632412746712912"
  9575. },
  9576. "scale": {
  9577. "type": "list<double>",
  9578. "value": [
  9579. 1,
  9580. 1
  9581. ]
  9582. },
  9583. "arrow": "arrowTail",
  9584. "arrowType": "circle-white-large",
  9585. "$linkDecoratorInfo": {
  9586. "type": "map<string,double>",
  9587. "value": {
  9588. "xratio": 1,
  9589. "yoffset": -10
  9590. }
  9591. }
  9592. },
  9593. "271": {
  9594. "r": {
  9595. "type": "double",
  9596. "value": 5
  9597. },
  9598. "style": {
  9599. "type": "map<string,string>",
  9600. "value": {
  9601. "stroke": "#000000",
  9602. "fill": "#000000",
  9603. "opacity": 0,
  9604. "stroke-width": 1
  9605. }
  9606. },
  9607. "mapper": {
  9608. "type": "code",
  9609. "value": ""
  9610. },
  9611. "parser": {
  9612. "type": "code",
  9613. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9614. },
  9615. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9616. "position": {
  9617. "type": "list<double>",
  9618. "value": [
  9619. "0;85.49345887239429,85.14303742497712%",
  9620. "0;46.79014846730291,52.4467651819342%"
  9621. ]
  9622. },
  9623. "orientation": {
  9624. "type": "double",
  9625. "value": "0;31.632412746712912"
  9626. },
  9627. "scale": {
  9628. "type": "list<double>",
  9629. "value": [
  9630. 1,
  9631. 1
  9632. ]
  9633. },
  9634. "arrow": "arrowTail",
  9635. "arrowType": "circle-black",
  9636. "$linkDecoratorInfo": {
  9637. "type": "map<string,double>",
  9638. "value": {
  9639. "xratio": 1,
  9640. "yoffset": -5
  9641. }
  9642. }
  9643. },
  9644. "272": {
  9645. "segments": {
  9646. "type": "string",
  9647. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9648. },
  9649. "style": {
  9650. "type": "map<string,string>",
  9651. "value": {
  9652. "stroke": "#000000",
  9653. "fill": "#000000",
  9654. "opacity": 0,
  9655. "stroke-width": 1
  9656. }
  9657. },
  9658. "mapper": {
  9659. "type": "code",
  9660. "value": ""
  9661. },
  9662. "parser": {
  9663. "type": "code",
  9664. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9665. },
  9666. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9667. "position": {
  9668. "type": "list<double>",
  9669. "value": [
  9670. "0;85.49345887239429,85.14303742497712%",
  9671. "0;46.79014846730291,52.4467651819342%"
  9672. ]
  9673. },
  9674. "orientation": {
  9675. "type": "double",
  9676. "value": "0;31.632412746712912"
  9677. },
  9678. "scale": {
  9679. "type": "list<double>",
  9680. "value": [
  9681. 1,
  9682. 1
  9683. ]
  9684. },
  9685. "arrow": "arrowTail",
  9686. "arrowType": "diamond-black",
  9687. "$linkDecoratorInfo": {
  9688. "type": "map<string,double>",
  9689. "value": {
  9690. "xratio": 1,
  9691. "yoffset": -5
  9692. }
  9693. }
  9694. },
  9695. "273": {
  9696. "segments": {
  9697. "type": "string",
  9698. "value": "m0,0 l20,10 l-20,10 z"
  9699. },
  9700. "style": {
  9701. "type": "map<string,string>",
  9702. "value": {
  9703. "stroke": "#000000",
  9704. "fill": "#000000",
  9705. "opacity": 0,
  9706. "stroke-width": 1
  9707. }
  9708. },
  9709. "mapper": {
  9710. "type": "code",
  9711. "value": ""
  9712. },
  9713. "parser": {
  9714. "type": "code",
  9715. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9716. },
  9717. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9718. "position": {
  9719. "type": "list<double>",
  9720. "value": [
  9721. "0;88.11579713149092,85.14303742497712%",
  9722. "0;42.53299659605409,52.4467651819342%"
  9723. ]
  9724. },
  9725. "orientation": {
  9726. "type": "double",
  9727. "value": "0;31.632412746712912"
  9728. },
  9729. "scale": {
  9730. "type": "list<double>",
  9731. "value": [
  9732. 1,
  9733. 1
  9734. ]
  9735. },
  9736. "arrow": "arrowTail",
  9737. "arrowType": "triangle-black-large",
  9738. "$linkDecoratorInfo": {
  9739. "type": "map<string,double>",
  9740. "value": {
  9741. "xratio": 1,
  9742. "yoffset": -10
  9743. }
  9744. }
  9745. },
  9746. "274": {
  9747. "segments": {
  9748. "type": "string",
  9749. "value": "m0,0 l10,4 l-10,4 z"
  9750. },
  9751. "style": {
  9752. "type": "map<string,string>",
  9753. "value": {
  9754. "stroke": "#000000",
  9755. "fill": "#000000",
  9756. "opacity": 0,
  9757. "stroke-width": 1
  9758. }
  9759. },
  9760. "mapper": {
  9761. "type": "code",
  9762. "value": ""
  9763. },
  9764. "parser": {
  9765. "type": "code",
  9766. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9767. },
  9768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9769. "position": {
  9770. "type": "list<double>",
  9771. "value": [
  9772. "0;84.96899122057494,85.14303742497712%",
  9773. "0;47.6415788415527,52.4467651819342%"
  9774. ]
  9775. },
  9776. "orientation": {
  9777. "type": "double",
  9778. "value": "0;31.632412746712912"
  9779. },
  9780. "scale": {
  9781. "type": "list<double>",
  9782. "value": [
  9783. 1,
  9784. 1
  9785. ]
  9786. },
  9787. "arrow": "arrowTail",
  9788. "arrowType": "triangle-black",
  9789. "$linkDecoratorInfo": {
  9790. "type": "map<string,double>",
  9791. "value": {
  9792. "xratio": 1,
  9793. "yoffset": -4
  9794. }
  9795. }
  9796. },
  9797. "275": {
  9798. "segments": {
  9799. "type": "string",
  9800. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  9801. },
  9802. "style": {
  9803. "type": "map<string,string>",
  9804. "value": {
  9805. "stroke": "#000000",
  9806. "fill": "#000000",
  9807. "opacity": 0,
  9808. "stroke-width": 1
  9809. }
  9810. },
  9811. "mapper": {
  9812. "type": "code",
  9813. "value": ""
  9814. },
  9815. "parser": {
  9816. "type": "code",
  9817. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9818. },
  9819. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9820. "position": {
  9821. "type": "list<double>",
  9822. "value": [
  9823. "0;87.06686182785222,85.14303742497712%",
  9824. "0;44.23585734455361,52.4467651819342%"
  9825. ]
  9826. },
  9827. "orientation": {
  9828. "type": "double",
  9829. "value": "0;31.632412746712912"
  9830. },
  9831. "scale": {
  9832. "type": "list<double>",
  9833. "value": [
  9834. 1,
  9835. 1
  9836. ]
  9837. },
  9838. "arrow": "arrowTail",
  9839. "arrowType": "arrow-black-large",
  9840. "$linkDecoratorInfo": {
  9841. "type": "map<string,double>",
  9842. "value": {
  9843. "xratio": 1,
  9844. "yoffset": -8
  9845. }
  9846. }
  9847. },
  9848. "276": {
  9849. "segments": {
  9850. "type": "string",
  9851. "value": "m0,0 l20,10 l-20,10 z"
  9852. },
  9853. "style": {
  9854. "type": "map<string,string>",
  9855. "value": {
  9856. "stroke": "#000000",
  9857. "fill": "#ffffff",
  9858. "opacity": 0,
  9859. "stroke-width": 1
  9860. }
  9861. },
  9862. "mapper": {
  9863. "type": "code",
  9864. "value": ""
  9865. },
  9866. "parser": {
  9867. "type": "code",
  9868. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9869. },
  9870. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9871. "position": {
  9872. "type": "list<double>",
  9873. "value": [
  9874. "0;88.11579713149092,85.14303742497712%",
  9875. "0;42.53299659605409,52.4467651819342%"
  9876. ]
  9877. },
  9878. "orientation": {
  9879. "type": "double",
  9880. "value": "0;31.632412746712912"
  9881. },
  9882. "scale": {
  9883. "type": "list<double>",
  9884. "value": [
  9885. 1,
  9886. 1
  9887. ]
  9888. },
  9889. "arrow": "arrowTail",
  9890. "arrowType": "triangle-white-large",
  9891. "$linkDecoratorInfo": {
  9892. "type": "map<string,double>",
  9893. "value": {
  9894. "xratio": 1,
  9895. "yoffset": -10
  9896. }
  9897. }
  9898. },
  9899. "277": {
  9900. "segments": {
  9901. "type": "string",
  9902. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9903. },
  9904. "style": {
  9905. "type": "map<string,string>",
  9906. "value": {
  9907. "stroke": "#000000",
  9908. "fill": "#ffffff",
  9909. "opacity": 0,
  9910. "stroke-width": 1
  9911. }
  9912. },
  9913. "mapper": {
  9914. "type": "code",
  9915. "value": ""
  9916. },
  9917. "parser": {
  9918. "type": "code",
  9919. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9920. },
  9921. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9922. "position": {
  9923. "type": "list<double>",
  9924. "value": [
  9925. "0;85.49345887239429,85.14303742497712%",
  9926. "0;46.79014846730291,52.4467651819342%"
  9927. ]
  9928. },
  9929. "orientation": {
  9930. "type": "double",
  9931. "value": "0;31.632412746712912"
  9932. },
  9933. "scale": {
  9934. "type": "list<double>",
  9935. "value": [
  9936. 1,
  9937. 1
  9938. ]
  9939. },
  9940. "arrow": "arrowTail",
  9941. "arrowType": "diamond-white",
  9942. "$linkDecoratorInfo": {
  9943. "type": "map<string,double>",
  9944. "value": {
  9945. "xratio": 1,
  9946. "yoffset": -5
  9947. }
  9948. }
  9949. },
  9950. "278": {
  9951. "segments": {
  9952. "type": "string",
  9953. "value": "m0,0 l20,8 l-20,8"
  9954. },
  9955. "style": {
  9956. "type": "map<string,string>",
  9957. "value": {
  9958. "stroke": "#000000",
  9959. "fill": "#000000",
  9960. "fill-opacity": 0,
  9961. "stroke-width": 1,
  9962. "opacity": 0
  9963. }
  9964. },
  9965. "mapper": {
  9966. "type": "code",
  9967. "value": ""
  9968. },
  9969. "parser": {
  9970. "type": "code",
  9971. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9972. },
  9973. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9974. "position": {
  9975. "type": "list<double>",
  9976. "value": [
  9977. "0;87.06686182785222,85.14303742497712%",
  9978. "0;44.23585734455361,52.4467651819342%"
  9979. ]
  9980. },
  9981. "orientation": {
  9982. "type": "double",
  9983. "value": "0;31.632412746712912"
  9984. },
  9985. "scale": {
  9986. "type": "list<double>",
  9987. "value": [
  9988. 1,
  9989. 1
  9990. ]
  9991. },
  9992. "arrow": "arrowTail",
  9993. "arrowType": "arrow-empty-large",
  9994. "$linkDecoratorInfo": {
  9995. "type": "map<string,double>",
  9996. "value": {
  9997. "xratio": 1,
  9998. "yoffset": -8
  9999. }
  10000. }
  10001. },
  10002. "279": {
  10003. "r": {
  10004. "type": "double",
  10005. "value": 5
  10006. },
  10007. "style": {
  10008. "type": "map<string,string>",
  10009. "value": {
  10010. "stroke": "#000000",
  10011. "fill": "#ffffff",
  10012. "opacity": 0,
  10013. "stroke-width": 1
  10014. }
  10015. },
  10016. "mapper": {
  10017. "type": "code",
  10018. "value": ""
  10019. },
  10020. "parser": {
  10021. "type": "code",
  10022. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10023. },
  10024. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10025. "position": {
  10026. "type": "list<double>",
  10027. "value": [
  10028. "0;85.49345887239429,85.14303742497712%",
  10029. "0;46.79014846730291,52.4467651819342%"
  10030. ]
  10031. },
  10032. "orientation": {
  10033. "type": "double",
  10034. "value": "0;31.632412746712912"
  10035. },
  10036. "scale": {
  10037. "type": "list<double>",
  10038. "value": [
  10039. 1,
  10040. 1
  10041. ]
  10042. },
  10043. "arrow": "arrowTail",
  10044. "arrowType": "circle-white",
  10045. "$linkDecoratorInfo": {
  10046. "type": "map<string,double>",
  10047. "value": {
  10048. "xratio": 1,
  10049. "yoffset": -5
  10050. }
  10051. }
  10052. },
  10053. "280": {
  10054. "segments": {
  10055. "type": "string",
  10056. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10057. },
  10058. "style": {
  10059. "type": "map<string,string>",
  10060. "value": {
  10061. "stroke": "#000000",
  10062. "fill": "#ffffff",
  10063. "opacity": 0,
  10064. "stroke-width": 1
  10065. }
  10066. },
  10067. "mapper": {
  10068. "type": "code",
  10069. "value": ""
  10070. },
  10071. "parser": {
  10072. "type": "code",
  10073. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10074. },
  10075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10076. "position": {
  10077. "type": "list<double>",
  10078. "value": [
  10079. "0;88.11579713149092,85.14303742497712%",
  10080. "0;42.53299659605409,52.4467651819342%"
  10081. ]
  10082. },
  10083. "orientation": {
  10084. "type": "double",
  10085. "value": "0;31.632412746712912"
  10086. },
  10087. "scale": {
  10088. "type": "list<double>",
  10089. "value": [
  10090. 1,
  10091. 1
  10092. ]
  10093. },
  10094. "arrow": "arrowTail",
  10095. "arrowType": "diamond-white-large",
  10096. "$linkDecoratorInfo": {
  10097. "type": "map<string,double>",
  10098. "value": {
  10099. "xratio": 1,
  10100. "yoffset": -10
  10101. }
  10102. }
  10103. },
  10104. "281": {
  10105. "segments": {
  10106. "type": "string",
  10107. "value": "m0,0 l10,4 l-10,4"
  10108. },
  10109. "style": {
  10110. "type": "map<string,string>",
  10111. "value": {
  10112. "stroke": "#000000",
  10113. "fill": "#000000",
  10114. "fill-opacity": 0,
  10115. "stroke-width": 1,
  10116. "opacity": 0
  10117. }
  10118. },
  10119. "mapper": {
  10120. "type": "code",
  10121. "value": ""
  10122. },
  10123. "parser": {
  10124. "type": "code",
  10125. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10126. },
  10127. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10128. "position": {
  10129. "type": "list<double>",
  10130. "value": [
  10131. "0;84.96899122057494,85.14303742497712%",
  10132. "0;47.6415788415527,52.4467651819342%"
  10133. ]
  10134. },
  10135. "orientation": {
  10136. "type": "double",
  10137. "value": "0;31.632412746712912"
  10138. },
  10139. "scale": {
  10140. "type": "list<double>",
  10141. "value": [
  10142. 1,
  10143. 1
  10144. ]
  10145. },
  10146. "arrow": "arrowTail",
  10147. "arrowType": "arrow-empty",
  10148. "$linkDecoratorInfo": {
  10149. "type": "map<string,double>",
  10150. "value": {
  10151. "xratio": 1,
  10152. "yoffset": -4
  10153. }
  10154. }
  10155. },
  10156. "282": {
  10157. "segments": {
  10158. "type": "string",
  10159. "value": "m0,0 l10,5 l-10,5 z"
  10160. },
  10161. "style": {
  10162. "type": "map<string,string>",
  10163. "value": {
  10164. "stroke": "#000000",
  10165. "fill": "#ffffff",
  10166. "opacity": 0,
  10167. "stroke-width": 1
  10168. }
  10169. },
  10170. "mapper": {
  10171. "type": "code",
  10172. "value": ""
  10173. },
  10174. "parser": {
  10175. "type": "code",
  10176. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10177. },
  10178. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10179. "position": {
  10180. "type": "list<double>",
  10181. "value": [
  10182. "0;85.49345887239429,85.14303742497712%",
  10183. "0;46.79014846730291,52.4467651819342%"
  10184. ]
  10185. },
  10186. "orientation": {
  10187. "type": "double",
  10188. "value": "0;31.632412746712912"
  10189. },
  10190. "scale": {
  10191. "type": "list<double>",
  10192. "value": [
  10193. 1,
  10194. 1
  10195. ]
  10196. },
  10197. "arrow": "arrowTail",
  10198. "arrowType": "triangle-white",
  10199. "$linkDecoratorInfo": {
  10200. "type": "map<string,double>",
  10201. "value": {
  10202. "xratio": 1,
  10203. "yoffset": -5
  10204. }
  10205. }
  10206. },
  10207. "283": {
  10208. "segments": {
  10209. "type": "string",
  10210. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10211. },
  10212. "style": {
  10213. "type": "map<string,string>",
  10214. "value": {
  10215. "stroke": "#000000",
  10216. "fill": "#ffffff",
  10217. "opacity": 0,
  10218. "stroke-width": 1
  10219. }
  10220. },
  10221. "mapper": {
  10222. "type": "code",
  10223. "value": ""
  10224. },
  10225. "parser": {
  10226. "type": "code",
  10227. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10228. },
  10229. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10230. "position": {
  10231. "type": "list<double>",
  10232. "value": [
  10233. "0;-80.5060122108963,0%",
  10234. "0;-55.46290173544486,0%"
  10235. ]
  10236. },
  10237. "orientation": {
  10238. "type": "double",
  10239. "value": "0;31.63241274671292"
  10240. },
  10241. "scale": {
  10242. "type": "list<double>",
  10243. "value": [
  10244. 1,
  10245. 1
  10246. ]
  10247. },
  10248. "arrow": "arrowHead",
  10249. "arrowType": "diamond-white",
  10250. "$linkDecoratorInfo": {
  10251. "type": "map<string,double>",
  10252. "value": {
  10253. "xratio": -1,
  10254. "yoffset": -5
  10255. }
  10256. }
  10257. },
  10258. "284": {
  10259. "segments": {
  10260. "type": "string",
  10261. "value": "m0,0 l-10,5 l10,5 z"
  10262. },
  10263. "style": {
  10264. "type": "map<string,string>",
  10265. "value": {
  10266. "stroke": "#000000",
  10267. "fill": "#ffffff",
  10268. "opacity": 0,
  10269. "stroke-width": 1
  10270. }
  10271. },
  10272. "mapper": {
  10273. "type": "code",
  10274. "value": ""
  10275. },
  10276. "parser": {
  10277. "type": "code",
  10278. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10279. },
  10280. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10281. "position": {
  10282. "type": "list<double>",
  10283. "value": [
  10284. "0;-80.5060122108963,0%",
  10285. "0;-55.46290173544486,0%"
  10286. ]
  10287. },
  10288. "orientation": {
  10289. "type": "double",
  10290. "value": "0;31.63241274671292"
  10291. },
  10292. "scale": {
  10293. "type": "list<double>",
  10294. "value": [
  10295. 1,
  10296. 1
  10297. ]
  10298. },
  10299. "arrow": "arrowHead",
  10300. "arrowType": "triangle-white",
  10301. "$linkDecoratorInfo": {
  10302. "type": "map<string,double>",
  10303. "value": {
  10304. "xratio": -1,
  10305. "yoffset": -5
  10306. }
  10307. }
  10308. },
  10309. "285": {
  10310. "segments": {
  10311. "type": "string",
  10312. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10313. },
  10314. "style": {
  10315. "type": "map<string,string>",
  10316. "value": {
  10317. "stroke": "#000000",
  10318. "fill": "#000000",
  10319. "opacity": 0,
  10320. "stroke-width": 1
  10321. }
  10322. },
  10323. "mapper": {
  10324. "type": "code",
  10325. "value": ""
  10326. },
  10327. "parser": {
  10328. "type": "code",
  10329. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10330. },
  10331. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10332. "position": {
  10333. "type": "list<double>",
  10334. "value": [
  10335. "0;-80.5060122108963,0%",
  10336. "0;-55.46290173544486,0%"
  10337. ]
  10338. },
  10339. "orientation": {
  10340. "type": "double",
  10341. "value": "0;31.63241274671292"
  10342. },
  10343. "scale": {
  10344. "type": "list<double>",
  10345. "value": [
  10346. 1,
  10347. 1
  10348. ]
  10349. },
  10350. "arrow": "arrowHead",
  10351. "arrowType": "diamond-black",
  10352. "$linkDecoratorInfo": {
  10353. "type": "map<string,double>",
  10354. "value": {
  10355. "xratio": -1,
  10356. "yoffset": -5
  10357. }
  10358. }
  10359. },
  10360. "286": {
  10361. "r": {
  10362. "type": "double",
  10363. "value": 10
  10364. },
  10365. "style": {
  10366. "type": "map<string,string>",
  10367. "value": {
  10368. "stroke": "#000000",
  10369. "fill": "#000000",
  10370. "opacity": 0,
  10371. "stroke-width": 1
  10372. }
  10373. },
  10374. "mapper": {
  10375. "type": "code",
  10376. "value": ""
  10377. },
  10378. "parser": {
  10379. "type": "code",
  10380. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10381. },
  10382. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10383. "position": {
  10384. "type": "list<double>",
  10385. "value": [
  10386. "0;-77.88367395179966,0%",
  10387. "0;-59.72005360669368,0%"
  10388. ]
  10389. },
  10390. "orientation": {
  10391. "type": "double",
  10392. "value": "0;31.63241274671292"
  10393. },
  10394. "scale": {
  10395. "type": "list<double>",
  10396. "value": [
  10397. 1,
  10398. 1
  10399. ]
  10400. },
  10401. "arrow": "arrowHead",
  10402. "arrowType": "circle-black-large",
  10403. "$linkDecoratorInfo": {
  10404. "type": "map<string,double>",
  10405. "value": {
  10406. "xratio": -1,
  10407. "yoffset": -10
  10408. }
  10409. }
  10410. },
  10411. "287": {
  10412. "segments": {
  10413. "type": "string",
  10414. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  10415. },
  10416. "style": {
  10417. "type": "map<string,string>",
  10418. "value": {
  10419. "stroke": "#000000",
  10420. "fill": "#000000",
  10421. "opacity": 0,
  10422. "stroke-width": 1
  10423. }
  10424. },
  10425. "mapper": {
  10426. "type": "code",
  10427. "value": ""
  10428. },
  10429. "parser": {
  10430. "type": "code",
  10431. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10432. },
  10433. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10434. "position": {
  10435. "type": "list<double>",
  10436. "value": [
  10437. "0;-78.93260925543836,0%",
  10438. "0;-58.017192858194164,0%"
  10439. ]
  10440. },
  10441. "orientation": {
  10442. "type": "double",
  10443. "value": "0;31.63241274671292"
  10444. },
  10445. "scale": {
  10446. "type": "list<double>",
  10447. "value": [
  10448. 1,
  10449. 1
  10450. ]
  10451. },
  10452. "arrow": "arrowHead",
  10453. "arrowType": "arrow-black-large",
  10454. "$linkDecoratorInfo": {
  10455. "type": "map<string,double>",
  10456. "value": {
  10457. "xratio": -1,
  10458. "yoffset": -8
  10459. }
  10460. }
  10461. },
  10462. "288": {
  10463. "segments": {
  10464. "type": "string",
  10465. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  10466. },
  10467. "style": {
  10468. "type": "map<string,string>",
  10469. "value": {
  10470. "stroke": "#000000",
  10471. "fill": "#000000",
  10472. "opacity": 0,
  10473. "stroke-width": 1
  10474. }
  10475. },
  10476. "mapper": {
  10477. "type": "code",
  10478. "value": ""
  10479. },
  10480. "parser": {
  10481. "type": "code",
  10482. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10483. },
  10484. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10485. "position": {
  10486. "type": "list<double>",
  10487. "value": [
  10488. "0;-81.03047986271565,0%",
  10489. "0;-54.61147136119507,0%"
  10490. ]
  10491. },
  10492. "orientation": {
  10493. "type": "double",
  10494. "value": "0;31.63241274671292"
  10495. },
  10496. "scale": {
  10497. "type": "list<double>",
  10498. "value": [
  10499. 1,
  10500. 1
  10501. ]
  10502. },
  10503. "arrow": "arrowHead",
  10504. "arrowType": "arrow-black",
  10505. "$linkDecoratorInfo": {
  10506. "type": "map<string,double>",
  10507. "value": {
  10508. "xratio": -1,
  10509. "yoffset": -4
  10510. }
  10511. }
  10512. },
  10513. "289": {
  10514. "segments": {
  10515. "type": "string",
  10516. "value": "m0,0 l-20,10 l20,10 z"
  10517. },
  10518. "style": {
  10519. "type": "map<string,string>",
  10520. "value": {
  10521. "stroke": "#000000",
  10522. "fill": "#ffffff",
  10523. "opacity": 0,
  10524. "stroke-width": 1
  10525. }
  10526. },
  10527. "mapper": {
  10528. "type": "code",
  10529. "value": ""
  10530. },
  10531. "parser": {
  10532. "type": "code",
  10533. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10534. },
  10535. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10536. "position": {
  10537. "type": "list<double>",
  10538. "value": [
  10539. "0;-77.88367395179966,0%",
  10540. "0;-59.72005360669368,0%"
  10541. ]
  10542. },
  10543. "orientation": {
  10544. "type": "double",
  10545. "value": "0;31.63241274671292"
  10546. },
  10547. "scale": {
  10548. "type": "list<double>",
  10549. "value": [
  10550. 1,
  10551. 1
  10552. ]
  10553. },
  10554. "arrow": "arrowHead",
  10555. "arrowType": "triangle-white-large",
  10556. "$linkDecoratorInfo": {
  10557. "type": "map<string,double>",
  10558. "value": {
  10559. "xratio": -1,
  10560. "yoffset": -10
  10561. }
  10562. }
  10563. },
  10564. "290": {
  10565. "segments": {
  10566. "type": "string",
  10567. "value": "m0,0 l-20,10 l20,10 z"
  10568. },
  10569. "style": {
  10570. "type": "map<string,string>",
  10571. "value": {
  10572. "stroke": "#000000",
  10573. "fill": "#000000",
  10574. "opacity": 0,
  10575. "stroke-width": 1
  10576. }
  10577. },
  10578. "mapper": {
  10579. "type": "code",
  10580. "value": ""
  10581. },
  10582. "parser": {
  10583. "type": "code",
  10584. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10585. },
  10586. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10587. "position": {
  10588. "type": "list<double>",
  10589. "value": [
  10590. "0;-77.88367395179966,0%",
  10591. "0;-59.72005360669368,0%"
  10592. ]
  10593. },
  10594. "orientation": {
  10595. "type": "double",
  10596. "value": "0;31.63241274671292"
  10597. },
  10598. "scale": {
  10599. "type": "list<double>",
  10600. "value": [
  10601. 1,
  10602. 1
  10603. ]
  10604. },
  10605. "arrow": "arrowHead",
  10606. "arrowType": "triangle-black-large",
  10607. "$linkDecoratorInfo": {
  10608. "type": "map<string,double>",
  10609. "value": {
  10610. "xratio": -1,
  10611. "yoffset": -10
  10612. }
  10613. }
  10614. },
  10615. "291": {
  10616. "r": {
  10617. "type": "double",
  10618. "value": 5
  10619. },
  10620. "style": {
  10621. "type": "map<string,string>",
  10622. "value": {
  10623. "stroke": "#000000",
  10624. "fill": "#000000",
  10625. "opacity": 0,
  10626. "stroke-width": 1
  10627. }
  10628. },
  10629. "mapper": {
  10630. "type": "code",
  10631. "value": ""
  10632. },
  10633. "parser": {
  10634. "type": "code",
  10635. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10636. },
  10637. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10638. "position": {
  10639. "type": "list<double>",
  10640. "value": [
  10641. "0;-80.5060122108963,0%",
  10642. "0;-55.46290173544486,0%"
  10643. ]
  10644. },
  10645. "orientation": {
  10646. "type": "double",
  10647. "value": "0;31.63241274671292"
  10648. },
  10649. "scale": {
  10650. "type": "list<double>",
  10651. "value": [
  10652. 1,
  10653. 1
  10654. ]
  10655. },
  10656. "arrow": "arrowHead",
  10657. "arrowType": "circle-black",
  10658. "$linkDecoratorInfo": {
  10659. "type": "map<string,double>",
  10660. "value": {
  10661. "xratio": -1,
  10662. "yoffset": -5
  10663. }
  10664. }
  10665. },
  10666. "292": {
  10667. "r": {
  10668. "type": "double",
  10669. "value": 5
  10670. },
  10671. "style": {
  10672. "type": "map<string,string>",
  10673. "value": {
  10674. "stroke": "#000000",
  10675. "fill": "#ffffff",
  10676. "opacity": 0,
  10677. "stroke-width": 1
  10678. }
  10679. },
  10680. "mapper": {
  10681. "type": "code",
  10682. "value": ""
  10683. },
  10684. "parser": {
  10685. "type": "code",
  10686. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10687. },
  10688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10689. "position": {
  10690. "type": "list<double>",
  10691. "value": [
  10692. "0;-80.5060122108963,0%",
  10693. "0;-55.46290173544486,0%"
  10694. ]
  10695. },
  10696. "orientation": {
  10697. "type": "double",
  10698. "value": "0;31.63241274671292"
  10699. },
  10700. "scale": {
  10701. "type": "list<double>",
  10702. "value": [
  10703. 1,
  10704. 1
  10705. ]
  10706. },
  10707. "arrow": "arrowHead",
  10708. "arrowType": "circle-white",
  10709. "$linkDecoratorInfo": {
  10710. "type": "map<string,double>",
  10711. "value": {
  10712. "xratio": -1,
  10713. "yoffset": -5
  10714. }
  10715. }
  10716. },
  10717. "293": {
  10718. "r": {
  10719. "type": "double",
  10720. "value": 10
  10721. },
  10722. "style": {
  10723. "type": "map<string,string>",
  10724. "value": {
  10725. "stroke": "#000000",
  10726. "fill": "#ffffff",
  10727. "opacity": 0,
  10728. "stroke-width": 1
  10729. }
  10730. },
  10731. "mapper": {
  10732. "type": "code",
  10733. "value": ""
  10734. },
  10735. "parser": {
  10736. "type": "code",
  10737. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10738. },
  10739. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10740. "position": {
  10741. "type": "list<double>",
  10742. "value": [
  10743. "0;-77.88367395179966,0%",
  10744. "0;-59.72005360669368,0%"
  10745. ]
  10746. },
  10747. "orientation": {
  10748. "type": "double",
  10749. "value": "0;31.63241274671292"
  10750. },
  10751. "scale": {
  10752. "type": "list<double>",
  10753. "value": [
  10754. 1,
  10755. 1
  10756. ]
  10757. },
  10758. "arrow": "arrowHead",
  10759. "arrowType": "circle-white-large",
  10760. "$linkDecoratorInfo": {
  10761. "type": "map<string,double>",
  10762. "value": {
  10763. "xratio": -1,
  10764. "yoffset": -10
  10765. }
  10766. }
  10767. },
  10768. "294": {
  10769. "segments": {
  10770. "type": "string",
  10771. "value": "m0,0 l-20,8 l20,8"
  10772. },
  10773. "style": {
  10774. "type": "map<string,string>",
  10775. "value": {
  10776. "stroke": "#000000",
  10777. "fill": "#000000",
  10778. "fill-opacity": 0,
  10779. "stroke-width": 1,
  10780. "opacity": 0
  10781. }
  10782. },
  10783. "mapper": {
  10784. "type": "code",
  10785. "value": ""
  10786. },
  10787. "parser": {
  10788. "type": "code",
  10789. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10790. },
  10791. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10792. "position": {
  10793. "type": "list<double>",
  10794. "value": [
  10795. "0;-78.93260925543836,0%",
  10796. "0;-58.017192858194164,0%"
  10797. ]
  10798. },
  10799. "orientation": {
  10800. "type": "double",
  10801. "value": "0;31.63241274671292"
  10802. },
  10803. "scale": {
  10804. "type": "list<double>",
  10805. "value": [
  10806. 1,
  10807. 1
  10808. ]
  10809. },
  10810. "arrow": "arrowHead",
  10811. "arrowType": "arrow-empty-large",
  10812. "$linkDecoratorInfo": {
  10813. "type": "map<string,double>",
  10814. "value": {
  10815. "xratio": -1,
  10816. "yoffset": -8
  10817. }
  10818. }
  10819. },
  10820. "295": {
  10821. "segments": {
  10822. "type": "string",
  10823. "value": "m0,0 l-10,4 l10,4"
  10824. },
  10825. "style": {
  10826. "type": "map<string,string>",
  10827. "value": {
  10828. "stroke": "#000000",
  10829. "fill": "#000000",
  10830. "fill-opacity": 0,
  10831. "stroke-width": 1,
  10832. "opacity": 0
  10833. }
  10834. },
  10835. "mapper": {
  10836. "type": "code",
  10837. "value": ""
  10838. },
  10839. "parser": {
  10840. "type": "code",
  10841. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10842. },
  10843. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10844. "position": {
  10845. "type": "list<double>",
  10846. "value": [
  10847. "0;-81.03047986271565,0%",
  10848. "0;-54.61147136119507,0%"
  10849. ]
  10850. },
  10851. "orientation": {
  10852. "type": "double",
  10853. "value": "0;31.63241274671292"
  10854. },
  10855. "scale": {
  10856. "type": "list<double>",
  10857. "value": [
  10858. 1,
  10859. 1
  10860. ]
  10861. },
  10862. "arrow": "arrowHead",
  10863. "arrowType": "arrow-empty",
  10864. "$linkDecoratorInfo": {
  10865. "type": "map<string,double>",
  10866. "value": {
  10867. "xratio": -1,
  10868. "yoffset": -4
  10869. }
  10870. }
  10871. },
  10872. "296": {
  10873. "segments": {
  10874. "type": "string",
  10875. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10876. },
  10877. "style": {
  10878. "type": "map<string,string>",
  10879. "value": {
  10880. "stroke": "#000000",
  10881. "fill": "#000000",
  10882. "opacity": 0,
  10883. "stroke-width": 1
  10884. }
  10885. },
  10886. "mapper": {
  10887. "type": "code",
  10888. "value": ""
  10889. },
  10890. "parser": {
  10891. "type": "code",
  10892. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10893. },
  10894. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10895. "position": {
  10896. "type": "list<double>",
  10897. "value": [
  10898. "0;-77.88367395179966,0%",
  10899. "0;-59.72005360669368,0%"
  10900. ]
  10901. },
  10902. "orientation": {
  10903. "type": "double",
  10904. "value": "0;31.63241274671292"
  10905. },
  10906. "scale": {
  10907. "type": "list<double>",
  10908. "value": [
  10909. 1,
  10910. 1
  10911. ]
  10912. },
  10913. "arrow": "arrowHead",
  10914. "arrowType": "diamond-black-large",
  10915. "$linkDecoratorInfo": {
  10916. "type": "map<string,double>",
  10917. "value": {
  10918. "xratio": -1,
  10919. "yoffset": -10
  10920. }
  10921. }
  10922. },
  10923. "297": {
  10924. "segments": {
  10925. "type": "string",
  10926. "value": "m0,0 l-10,4 l10,4 z"
  10927. },
  10928. "style": {
  10929. "type": "map<string,string>",
  10930. "value": {
  10931. "stroke": "#000000",
  10932. "fill": "#000000",
  10933. "opacity": 0,
  10934. "stroke-width": 1
  10935. }
  10936. },
  10937. "mapper": {
  10938. "type": "code",
  10939. "value": ""
  10940. },
  10941. "parser": {
  10942. "type": "code",
  10943. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10944. },
  10945. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10946. "position": {
  10947. "type": "list<double>",
  10948. "value": [
  10949. "0;-81.03047986271565,0%",
  10950. "0;-54.61147136119507,0%"
  10951. ]
  10952. },
  10953. "orientation": {
  10954. "type": "double",
  10955. "value": "0;31.63241274671292"
  10956. },
  10957. "scale": {
  10958. "type": "list<double>",
  10959. "value": [
  10960. 1,
  10961. 1
  10962. ]
  10963. },
  10964. "arrow": "arrowHead",
  10965. "arrowType": "triangle-black",
  10966. "$linkDecoratorInfo": {
  10967. "type": "map<string,double>",
  10968. "value": {
  10969. "xratio": -1,
  10970. "yoffset": -4
  10971. }
  10972. }
  10973. },
  10974. "298": {
  10975. "segments": {
  10976. "type": "string",
  10977. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10978. },
  10979. "style": {
  10980. "type": "map<string,string>",
  10981. "value": {
  10982. "stroke": "#000000",
  10983. "fill": "#ffffff",
  10984. "opacity": 0,
  10985. "stroke-width": 1
  10986. }
  10987. },
  10988. "mapper": {
  10989. "type": "code",
  10990. "value": ""
  10991. },
  10992. "parser": {
  10993. "type": "code",
  10994. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10995. },
  10996. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10997. "position": {
  10998. "type": "list<double>",
  10999. "value": [
  11000. "0;-77.88367395179966,0%",
  11001. "0;-59.72005360669368,0%"
  11002. ]
  11003. },
  11004. "orientation": {
  11005. "type": "double",
  11006. "value": "0;31.63241274671292"
  11007. },
  11008. "scale": {
  11009. "type": "list<double>",
  11010. "value": [
  11011. 1,
  11012. 1
  11013. ]
  11014. },
  11015. "arrow": "arrowHead",
  11016. "arrowType": "diamond-white-large",
  11017. "$linkDecoratorInfo": {
  11018. "type": "map<string,double>",
  11019. "value": {
  11020. "xratio": -1,
  11021. "yoffset": -10
  11022. }
  11023. }
  11024. }
  11025. },
  11026. "edges": []
  11027. }
  11028. },
  11029. "$asuri": {
  11030. "type": "string",
  11031. "value": "/Formalisms/__Transformations__/Transformation/MoTif/base/125.instance"
  11032. },
  11033. "$segments": {
  11034. "type": "map<string,list<string>>",
  11035. "value": {
  11036. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LQSRuleIcon/101.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/baseLink/125.instance": "M527,275L610.128350469993,326.205749864196",
  11037. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/baseLink/125.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/QRuleIcon/124.instance": "M610.1280858300357,326.20558685016545L692.9994710832906,377.2530502027478"
  11038. }
  11039. },
  11040. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/baseLink"
  11041. }
  11042. },
  11043. "edges": [],
  11044. "metamodels": [
  11045. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons",
  11046. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  11047. "/Formalisms/LCA-new/LCA.defaultIcons.pattern",
  11048. "/Formalisms/LCA-new/LCA.defaultIcons"
  11049. ]
  11050. },
  11051. "asm": {
  11052. "nodes": {
  11053. "0": {
  11054. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/Start"
  11055. },
  11056. "6": {
  11057. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess"
  11058. },
  11059. "7": {
  11060. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail"
  11061. },
  11062. "101": {
  11063. "maxIterations": {
  11064. "type": "int",
  11065. "value": 10000
  11066. },
  11067. "nested": {
  11068. "type": "int",
  11069. "value": "1"
  11070. },
  11071. "name": {
  11072. "type": "string",
  11073. "value": "LQSRule"
  11074. },
  11075. "alias": {
  11076. "type": "string",
  11077. "value": ""
  11078. },
  11079. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/LQSRule"
  11080. },
  11081. "105": {
  11082. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  11083. },
  11084. "107": {
  11085. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  11086. },
  11087. "108": {
  11088. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/initial"
  11089. },
  11090. "109": {
  11091. "ref": {
  11092. "type": "string",
  11093. "value": "/Formalisms/LCA-new/lqsrule/T_highlight.model"
  11094. },
  11095. "name": {
  11096. "type": "string",
  11097. "value": "T_highlight"
  11098. },
  11099. "alias": {
  11100. "type": "string",
  11101. "value": ""
  11102. },
  11103. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/CRule"
  11104. },
  11105. "110": {
  11106. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/loop"
  11107. },
  11108. "124": {
  11109. "query": {
  11110. "type": "string",
  11111. "value": "/Formalisms/LCA-new/lqsrule/R_getNodeWithNAC.model"
  11112. },
  11113. "name": {
  11114. "type": "string",
  11115. "value": "getNodeWithNAC"
  11116. },
  11117. "alias": {
  11118. "type": "string",
  11119. "value": ""
  11120. },
  11121. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/QRule"
  11122. },
  11123. "125": {
  11124. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/base"
  11125. }
  11126. },
  11127. "edges": [
  11128. {
  11129. "src": "101",
  11130. "dest": "105"
  11131. },
  11132. {
  11133. "src": "105",
  11134. "dest": "6"
  11135. },
  11136. {
  11137. "src": "101",
  11138. "dest": "107"
  11139. },
  11140. {
  11141. "src": "107",
  11142. "dest": "7"
  11143. },
  11144. {
  11145. "src": "0",
  11146. "dest": "108"
  11147. },
  11148. {
  11149. "src": "108",
  11150. "dest": "101"
  11151. },
  11152. {
  11153. "src": "101",
  11154. "dest": "110"
  11155. },
  11156. {
  11157. "src": "110",
  11158. "dest": "109"
  11159. },
  11160. {
  11161. "src": "101",
  11162. "dest": "125"
  11163. },
  11164. {
  11165. "src": "125",
  11166. "dest": "124"
  11167. }
  11168. ],
  11169. "metamodels": [
  11170. "/Formalisms/__Transformations__/Transformation/MoTif",
  11171. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  11172. "/Formalisms/LCA-new/LCA.pattern",
  11173. "/Formalisms/LCA-new/LCA"
  11174. ]
  11175. }
  11176. }