R_GhostMoveRight.model 258 KB

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