R_PacMoveLeft.model 325 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620
  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. 649,
  13. 325
  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. 1143,
  103. 332
  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. 738,
  193. 522
  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. 882,
  703. 531
  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. "7": {
  1205. "link-style": {
  1206. "type": "map<string,string>",
  1207. "value": {
  1208. "stroke": "#00ff00",
  1209. "stroke-dasharray": "",
  1210. "stroke-opacity": 0.2,
  1211. "stroke-width": 1,
  1212. "arrow-start": "none",
  1213. "arrow-end": "classic-wide-long"
  1214. }
  1215. },
  1216. "typename": {
  1217. "type": "string",
  1218. "value": "PatternContentsLink"
  1219. },
  1220. "position": {
  1221. "type": "list<double>",
  1222. "value": [
  1223. 751.115209103267,
  1224. 409.8466729851671
  1225. ]
  1226. },
  1227. "orientation": {
  1228. "type": "double",
  1229. "value": 0
  1230. },
  1231. "scale": {
  1232. "type": "list<double>",
  1233. "value": [
  1234. 1,
  1235. 1
  1236. ]
  1237. },
  1238. "mapper": {
  1239. "type": "code",
  1240. "value": ""
  1241. },
  1242. "parser": {
  1243. "type": "code",
  1244. "value": ""
  1245. },
  1246. "$contents": {
  1247. "type": "map<string,*>",
  1248. "value": {
  1249. "nodes": {},
  1250. "edges": []
  1251. }
  1252. },
  1253. "$asuri": {
  1254. "type": "string",
  1255. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/7.instance"
  1256. },
  1257. "$segments": {
  1258. "type": "map<string,list<string>>",
  1259. "value": {
  1260. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/0.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/7.instance": "M650,325L751.115209103267,409.8466729851672",
  1261. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/7.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/2.instance": "M751.1150338803636,409.8465259540676L788.999649731657,572.4997060867122"
  1262. }
  1263. },
  1264. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1265. },
  1266. "8": {
  1267. "link-style": {
  1268. "type": "map<string,string>",
  1269. "value": {
  1270. "stroke": "#00ff00",
  1271. "stroke-dasharray": "",
  1272. "stroke-opacity": 0.2,
  1273. "stroke-width": 1,
  1274. "arrow-start": "none",
  1275. "arrow-end": "classic-wide-long"
  1276. }
  1277. },
  1278. "typename": {
  1279. "type": "string",
  1280. "value": "PatternContentsLink"
  1281. },
  1282. "position": {
  1283. "type": "list<double>",
  1284. "value": [
  1285. 751.0848739407006,
  1286. 472.373739482853
  1287. ]
  1288. },
  1289. "orientation": {
  1290. "type": "double",
  1291. "value": 0
  1292. },
  1293. "scale": {
  1294. "type": "list<double>",
  1295. "value": [
  1296. 1,
  1297. 1
  1298. ]
  1299. },
  1300. "mapper": {
  1301. "type": "code",
  1302. "value": ""
  1303. },
  1304. "parser": {
  1305. "type": "code",
  1306. "value": ""
  1307. },
  1308. "$contents": {
  1309. "type": "map<string,*>",
  1310. "value": {
  1311. "nodes": {},
  1312. "edges": []
  1313. }
  1314. },
  1315. "$asuri": {
  1316. "type": "string",
  1317. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/8.instance"
  1318. },
  1319. "$segments": {
  1320. "type": "map<string,list<string>>",
  1321. "value": {
  1322. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/0.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/8.instance": "M650,325L751.0848739407006,472.373739482853",
  1323. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/8.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/3.instance": "M751.0422943283977,472.3116617807582L932.9995723038598,581.4993764529044"
  1324. }
  1325. },
  1326. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1327. },
  1328. "9": {
  1329. "typename": {
  1330. "type": "string",
  1331. "value": "GridNodeIcon"
  1332. },
  1333. "position": {
  1334. "type": "list<double>",
  1335. "value": [
  1336. 1297,
  1337. 487
  1338. ]
  1339. },
  1340. "orientation": {
  1341. "type": "double",
  1342. "value": 0
  1343. },
  1344. "scale": {
  1345. "type": "list<double>",
  1346. "value": [
  1347. 1,
  1348. 1
  1349. ]
  1350. },
  1351. "mapper": {
  1352. "type": "code",
  1353. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1354. },
  1355. "parser": {
  1356. "type": "code",
  1357. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1358. },
  1359. "$contents": {
  1360. "type": "map<string,*>",
  1361. "value": {
  1362. "nodes": {
  1363. "35": {
  1364. "width": {
  1365. "type": "double",
  1366. "value": 100
  1367. },
  1368. "height": {
  1369. "type": "double",
  1370. "value": 100
  1371. },
  1372. "cornerRadius": {
  1373. "type": "double",
  1374. "value": 0
  1375. },
  1376. "style": {
  1377. "type": "map<string,string>",
  1378. "value": {
  1379. "stroke": "#000000",
  1380. "stroke-dasharray": "",
  1381. "fill": "#C0C0C0",
  1382. "fill-opacity": 1,
  1383. "font-size": "20px",
  1384. "stroke-width": 0,
  1385. "arrow-start": "none",
  1386. "arrow-end": "none"
  1387. }
  1388. },
  1389. "mapper": {
  1390. "type": "code",
  1391. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1392. },
  1393. "parser": {
  1394. "type": "code",
  1395. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1396. },
  1397. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1398. "position": {
  1399. "type": "list<double>",
  1400. "value": [
  1401. 2,
  1402. 1
  1403. ]
  1404. },
  1405. "orientation": {
  1406. "type": "double",
  1407. "value": 0
  1408. },
  1409. "scale": {
  1410. "type": "list<double>",
  1411. "value": [
  1412. 1,
  1413. 1
  1414. ]
  1415. }
  1416. },
  1417. "69": {
  1418. "width": {
  1419. "type": "double",
  1420. "value": 30
  1421. },
  1422. "height": {
  1423. "type": "double",
  1424. "value": 30
  1425. },
  1426. "cornerRadius": {
  1427. "type": "double",
  1428. "value": 0
  1429. },
  1430. "style": {
  1431. "type": "map<string,string>",
  1432. "value": {
  1433. "stroke": "#000000",
  1434. "stroke-dasharray": "",
  1435. "fill": "#000000",
  1436. "fill-opacity": 0.75,
  1437. "font-size": "20px",
  1438. "stroke-width": 0,
  1439. "arrow-start": "none",
  1440. "arrow-end": "none"
  1441. }
  1442. },
  1443. "mapper": {
  1444. "type": "code",
  1445. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1446. },
  1447. "parser": {
  1448. "type": "code",
  1449. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1450. },
  1451. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1452. "position": {
  1453. "type": "list<double>",
  1454. "value": [
  1455. 3,
  1456. 3
  1457. ]
  1458. },
  1459. "orientation": {
  1460. "type": "double",
  1461. "value": 0
  1462. },
  1463. "scale": {
  1464. "type": "list<double>",
  1465. "value": [
  1466. 1,
  1467. 1
  1468. ]
  1469. }
  1470. },
  1471. "75": {
  1472. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1473. "position": {
  1474. "type": "list<double>",
  1475. "value": [
  1476. 10.610866770773328,
  1477. 10.104345196021995
  1478. ]
  1479. },
  1480. "orientation": {
  1481. "type": "double",
  1482. "value": 0
  1483. },
  1484. "scale": {
  1485. "type": "list<double>",
  1486. "value": [
  1487. 1,
  1488. 1
  1489. ]
  1490. },
  1491. "link-style": {
  1492. "type": "map<string,string>",
  1493. "value": {
  1494. "stroke": "#00ffff",
  1495. "stroke-dasharray": "",
  1496. "stroke-opacity": 0.1,
  1497. "stroke-width": 1
  1498. }
  1499. }
  1500. },
  1501. "76": {
  1502. "width": {
  1503. "type": "double",
  1504. "value": 30
  1505. },
  1506. "height": {
  1507. "type": "double",
  1508. "value": 30
  1509. },
  1510. "cornerRadius": {
  1511. "type": "double",
  1512. "value": 0
  1513. },
  1514. "style": {
  1515. "type": "map<string,string>",
  1516. "value": {
  1517. "stroke": "#000000",
  1518. "stroke-dasharray": "",
  1519. "fill": "#000000",
  1520. "fill-opacity": 0.75,
  1521. "font-size": "20px",
  1522. "stroke-width": 0,
  1523. "arrow-start": "none",
  1524. "arrow-end": "none"
  1525. }
  1526. },
  1527. "mapper": {
  1528. "type": "code",
  1529. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1530. },
  1531. "parser": {
  1532. "type": "code",
  1533. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1534. },
  1535. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1536. "position": {
  1537. "type": "list<double>",
  1538. "value": [
  1539. 3,
  1540. 70
  1541. ]
  1542. },
  1543. "orientation": {
  1544. "type": "double",
  1545. "value": 0
  1546. },
  1547. "scale": {
  1548. "type": "list<double>",
  1549. "value": [
  1550. 1,
  1551. 1
  1552. ]
  1553. }
  1554. },
  1555. "77": {
  1556. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1557. "position": {
  1558. "type": "list<double>",
  1559. "value": [
  1560. 10,
  1561. 43.5
  1562. ]
  1563. },
  1564. "orientation": {
  1565. "type": "double",
  1566. "value": 0
  1567. },
  1568. "scale": {
  1569. "type": "list<double>",
  1570. "value": [
  1571. 1,
  1572. 1
  1573. ]
  1574. },
  1575. "link-style": {
  1576. "type": "map<string,string>",
  1577. "value": {
  1578. "stroke": "#00ffff",
  1579. "stroke-dasharray": "",
  1580. "stroke-opacity": 0.1,
  1581. "stroke-width": 1
  1582. }
  1583. }
  1584. },
  1585. "78": {
  1586. "width": {
  1587. "type": "double",
  1588. "value": 30
  1589. },
  1590. "height": {
  1591. "type": "double",
  1592. "value": 30
  1593. },
  1594. "cornerRadius": {
  1595. "type": "double",
  1596. "value": 0
  1597. },
  1598. "style": {
  1599. "type": "map<string,string>",
  1600. "value": {
  1601. "stroke": "#000000",
  1602. "stroke-dasharray": "",
  1603. "fill": "#000000",
  1604. "fill-opacity": 0.75,
  1605. "font-size": "20px",
  1606. "stroke-width": 0,
  1607. "arrow-start": "none",
  1608. "arrow-end": "none"
  1609. }
  1610. },
  1611. "mapper": {
  1612. "type": "code",
  1613. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1614. },
  1615. "parser": {
  1616. "type": "code",
  1617. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1618. },
  1619. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1620. "position": {
  1621. "type": "list<double>",
  1622. "value": [
  1623. 71,
  1624. 3
  1625. ]
  1626. },
  1627. "orientation": {
  1628. "type": "double",
  1629. "value": 0
  1630. },
  1631. "scale": {
  1632. "type": "list<double>",
  1633. "value": [
  1634. 1,
  1635. 1
  1636. ]
  1637. }
  1638. },
  1639. "80": {
  1640. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1641. "position": {
  1642. "type": "list<double>",
  1643. "value": [
  1644. 43.5,
  1645. 10
  1646. ]
  1647. },
  1648. "orientation": {
  1649. "type": "double",
  1650. "value": 0
  1651. },
  1652. "scale": {
  1653. "type": "list<double>",
  1654. "value": [
  1655. 1,
  1656. 1
  1657. ]
  1658. },
  1659. "link-style": {
  1660. "type": "map<string,string>",
  1661. "value": {
  1662. "stroke": "#00ffff",
  1663. "stroke-dasharray": "",
  1664. "stroke-opacity": 0.1,
  1665. "stroke-width": 1
  1666. }
  1667. }
  1668. },
  1669. "81": {
  1670. "width": {
  1671. "type": "double",
  1672. "value": 30
  1673. },
  1674. "height": {
  1675. "type": "double",
  1676. "value": 30
  1677. },
  1678. "cornerRadius": {
  1679. "type": "double",
  1680. "value": 0
  1681. },
  1682. "style": {
  1683. "type": "map<string,string>",
  1684. "value": {
  1685. "stroke": "#000000",
  1686. "stroke-dasharray": "",
  1687. "fill": "#000000",
  1688. "fill-opacity": 0.75,
  1689. "font-size": "20px",
  1690. "stroke-width": 0,
  1691. "arrow-start": "none",
  1692. "arrow-end": "none"
  1693. }
  1694. },
  1695. "mapper": {
  1696. "type": "code",
  1697. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1698. },
  1699. "parser": {
  1700. "type": "code",
  1701. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1702. },
  1703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1704. "position": {
  1705. "type": "list<double>",
  1706. "value": [
  1707. 71,
  1708. 70
  1709. ]
  1710. },
  1711. "orientation": {
  1712. "type": "double",
  1713. "value": 0
  1714. },
  1715. "scale": {
  1716. "type": "list<double>",
  1717. "value": [
  1718. 1,
  1719. 1
  1720. ]
  1721. }
  1722. },
  1723. "82": {
  1724. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1725. "position": {
  1726. "type": "list<double>",
  1727. "value": [
  1728. 43.5,
  1729. 43.5
  1730. ]
  1731. },
  1732. "orientation": {
  1733. "type": "double",
  1734. "value": 0
  1735. },
  1736. "scale": {
  1737. "type": "list<double>",
  1738. "value": [
  1739. 1,
  1740. 1
  1741. ]
  1742. },
  1743. "link-style": {
  1744. "type": "map<string,string>",
  1745. "value": {
  1746. "stroke": "#00ffff",
  1747. "stroke-dasharray": "",
  1748. "stroke-opacity": 0.1,
  1749. "stroke-width": 1
  1750. }
  1751. }
  1752. },
  1753. "__pLabelText": {
  1754. "position": {
  1755. "type": "list<double>",
  1756. "value": [
  1757. 0,
  1758. 0
  1759. ]
  1760. },
  1761. "orientation": {
  1762. "type": "double",
  1763. "value": 0
  1764. },
  1765. "scale": {
  1766. "type": "list<double>",
  1767. "value": [
  1768. 1,
  1769. 1
  1770. ]
  1771. },
  1772. "textContent": {
  1773. "type": "string",
  1774. "value": "0"
  1775. },
  1776. "style": {
  1777. "type": "map<string,string>",
  1778. "value": {
  1779. "stroke": "#6000ff",
  1780. "fill": "#6000ff",
  1781. "font-size": "15px",
  1782. "opacity": "1"
  1783. }
  1784. },
  1785. "mapper": {
  1786. "type": "code",
  1787. "value": "({'textContent':getAttr('__pLabel')})"
  1788. },
  1789. "parser": {
  1790. "type": "code",
  1791. "value": "({'__pLabel':getAttr('textContent')})"
  1792. },
  1793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1794. }
  1795. },
  1796. "edges": [
  1797. {
  1798. "src": "35",
  1799. "dest": "75"
  1800. },
  1801. {
  1802. "src": "75",
  1803. "dest": "69"
  1804. },
  1805. {
  1806. "src": "35",
  1807. "dest": "77"
  1808. },
  1809. {
  1810. "src": "77",
  1811. "dest": "76"
  1812. },
  1813. {
  1814. "src": "35",
  1815. "dest": "80"
  1816. },
  1817. {
  1818. "src": "80",
  1819. "dest": "78"
  1820. },
  1821. {
  1822. "src": "35",
  1823. "dest": "82"
  1824. },
  1825. {
  1826. "src": "82",
  1827. "dest": "81"
  1828. }
  1829. ]
  1830. }
  1831. },
  1832. "$asuri": {
  1833. "type": "string",
  1834. "value": "/Formalisms/Pacman/Pacman.pattern/__pGridNode/9.instance"
  1835. },
  1836. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon"
  1837. },
  1838. "11": {
  1839. "typename": {
  1840. "type": "string",
  1841. "value": "GridNodeIcon"
  1842. },
  1843. "position": {
  1844. "type": "list<double>",
  1845. "value": [
  1846. 1444,
  1847. 491
  1848. ]
  1849. },
  1850. "orientation": {
  1851. "type": "double",
  1852. "value": 0
  1853. },
  1854. "scale": {
  1855. "type": "list<double>",
  1856. "value": [
  1857. 1,
  1858. 1
  1859. ]
  1860. },
  1861. "mapper": {
  1862. "type": "code",
  1863. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1864. },
  1865. "parser": {
  1866. "type": "code",
  1867. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1868. },
  1869. "$contents": {
  1870. "type": "map<string,*>",
  1871. "value": {
  1872. "nodes": {
  1873. "35": {
  1874. "width": {
  1875. "type": "double",
  1876. "value": 100
  1877. },
  1878. "height": {
  1879. "type": "double",
  1880. "value": 100
  1881. },
  1882. "cornerRadius": {
  1883. "type": "double",
  1884. "value": 0
  1885. },
  1886. "style": {
  1887. "type": "map<string,string>",
  1888. "value": {
  1889. "stroke": "#000000",
  1890. "stroke-dasharray": "",
  1891. "fill": "#C0C0C0",
  1892. "fill-opacity": 1,
  1893. "font-size": "20px",
  1894. "stroke-width": 0,
  1895. "arrow-start": "none",
  1896. "arrow-end": "none"
  1897. }
  1898. },
  1899. "mapper": {
  1900. "type": "code",
  1901. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1902. },
  1903. "parser": {
  1904. "type": "code",
  1905. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1906. },
  1907. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1908. "position": {
  1909. "type": "list<double>",
  1910. "value": [
  1911. 2,
  1912. 1
  1913. ]
  1914. },
  1915. "orientation": {
  1916. "type": "double",
  1917. "value": 0
  1918. },
  1919. "scale": {
  1920. "type": "list<double>",
  1921. "value": [
  1922. 1,
  1923. 1
  1924. ]
  1925. }
  1926. },
  1927. "69": {
  1928. "width": {
  1929. "type": "double",
  1930. "value": 30
  1931. },
  1932. "height": {
  1933. "type": "double",
  1934. "value": 30
  1935. },
  1936. "cornerRadius": {
  1937. "type": "double",
  1938. "value": 0
  1939. },
  1940. "style": {
  1941. "type": "map<string,string>",
  1942. "value": {
  1943. "stroke": "#000000",
  1944. "stroke-dasharray": "",
  1945. "fill": "#000000",
  1946. "fill-opacity": 0.75,
  1947. "font-size": "20px",
  1948. "stroke-width": 0,
  1949. "arrow-start": "none",
  1950. "arrow-end": "none"
  1951. }
  1952. },
  1953. "mapper": {
  1954. "type": "code",
  1955. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1956. },
  1957. "parser": {
  1958. "type": "code",
  1959. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1960. },
  1961. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1962. "position": {
  1963. "type": "list<double>",
  1964. "value": [
  1965. 3,
  1966. 3
  1967. ]
  1968. },
  1969. "orientation": {
  1970. "type": "double",
  1971. "value": 0
  1972. },
  1973. "scale": {
  1974. "type": "list<double>",
  1975. "value": [
  1976. 1,
  1977. 1
  1978. ]
  1979. }
  1980. },
  1981. "75": {
  1982. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1983. "position": {
  1984. "type": "list<double>",
  1985. "value": [
  1986. 10.610866770773328,
  1987. 10.104345196021995
  1988. ]
  1989. },
  1990. "orientation": {
  1991. "type": "double",
  1992. "value": 0
  1993. },
  1994. "scale": {
  1995. "type": "list<double>",
  1996. "value": [
  1997. 1,
  1998. 1
  1999. ]
  2000. },
  2001. "link-style": {
  2002. "type": "map<string,string>",
  2003. "value": {
  2004. "stroke": "#00ffff",
  2005. "stroke-dasharray": "",
  2006. "stroke-opacity": 0.1,
  2007. "stroke-width": 1
  2008. }
  2009. }
  2010. },
  2011. "76": {
  2012. "width": {
  2013. "type": "double",
  2014. "value": 30
  2015. },
  2016. "height": {
  2017. "type": "double",
  2018. "value": 30
  2019. },
  2020. "cornerRadius": {
  2021. "type": "double",
  2022. "value": 0
  2023. },
  2024. "style": {
  2025. "type": "map<string,string>",
  2026. "value": {
  2027. "stroke": "#000000",
  2028. "stroke-dasharray": "",
  2029. "fill": "#000000",
  2030. "fill-opacity": 0.75,
  2031. "font-size": "20px",
  2032. "stroke-width": 0,
  2033. "arrow-start": "none",
  2034. "arrow-end": "none"
  2035. }
  2036. },
  2037. "mapper": {
  2038. "type": "code",
  2039. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2040. },
  2041. "parser": {
  2042. "type": "code",
  2043. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2044. },
  2045. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2046. "position": {
  2047. "type": "list<double>",
  2048. "value": [
  2049. 3,
  2050. 70
  2051. ]
  2052. },
  2053. "orientation": {
  2054. "type": "double",
  2055. "value": 0
  2056. },
  2057. "scale": {
  2058. "type": "list<double>",
  2059. "value": [
  2060. 1,
  2061. 1
  2062. ]
  2063. }
  2064. },
  2065. "77": {
  2066. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2067. "position": {
  2068. "type": "list<double>",
  2069. "value": [
  2070. 10,
  2071. 43.5
  2072. ]
  2073. },
  2074. "orientation": {
  2075. "type": "double",
  2076. "value": 0
  2077. },
  2078. "scale": {
  2079. "type": "list<double>",
  2080. "value": [
  2081. 1,
  2082. 1
  2083. ]
  2084. },
  2085. "link-style": {
  2086. "type": "map<string,string>",
  2087. "value": {
  2088. "stroke": "#00ffff",
  2089. "stroke-dasharray": "",
  2090. "stroke-opacity": 0.1,
  2091. "stroke-width": 1
  2092. }
  2093. }
  2094. },
  2095. "78": {
  2096. "width": {
  2097. "type": "double",
  2098. "value": 30
  2099. },
  2100. "height": {
  2101. "type": "double",
  2102. "value": 30
  2103. },
  2104. "cornerRadius": {
  2105. "type": "double",
  2106. "value": 0
  2107. },
  2108. "style": {
  2109. "type": "map<string,string>",
  2110. "value": {
  2111. "stroke": "#000000",
  2112. "stroke-dasharray": "",
  2113. "fill": "#000000",
  2114. "fill-opacity": 0.75,
  2115. "font-size": "20px",
  2116. "stroke-width": 0,
  2117. "arrow-start": "none",
  2118. "arrow-end": "none"
  2119. }
  2120. },
  2121. "mapper": {
  2122. "type": "code",
  2123. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2124. },
  2125. "parser": {
  2126. "type": "code",
  2127. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2128. },
  2129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2130. "position": {
  2131. "type": "list<double>",
  2132. "value": [
  2133. 71,
  2134. 3
  2135. ]
  2136. },
  2137. "orientation": {
  2138. "type": "double",
  2139. "value": 0
  2140. },
  2141. "scale": {
  2142. "type": "list<double>",
  2143. "value": [
  2144. 1,
  2145. 1
  2146. ]
  2147. }
  2148. },
  2149. "80": {
  2150. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2151. "position": {
  2152. "type": "list<double>",
  2153. "value": [
  2154. 43.5,
  2155. 10
  2156. ]
  2157. },
  2158. "orientation": {
  2159. "type": "double",
  2160. "value": 0
  2161. },
  2162. "scale": {
  2163. "type": "list<double>",
  2164. "value": [
  2165. 1,
  2166. 1
  2167. ]
  2168. },
  2169. "link-style": {
  2170. "type": "map<string,string>",
  2171. "value": {
  2172. "stroke": "#00ffff",
  2173. "stroke-dasharray": "",
  2174. "stroke-opacity": 0.1,
  2175. "stroke-width": 1
  2176. }
  2177. }
  2178. },
  2179. "81": {
  2180. "width": {
  2181. "type": "double",
  2182. "value": 30
  2183. },
  2184. "height": {
  2185. "type": "double",
  2186. "value": 30
  2187. },
  2188. "cornerRadius": {
  2189. "type": "double",
  2190. "value": 0
  2191. },
  2192. "style": {
  2193. "type": "map<string,string>",
  2194. "value": {
  2195. "stroke": "#000000",
  2196. "stroke-dasharray": "",
  2197. "fill": "#000000",
  2198. "fill-opacity": 0.75,
  2199. "font-size": "20px",
  2200. "stroke-width": 0,
  2201. "arrow-start": "none",
  2202. "arrow-end": "none"
  2203. }
  2204. },
  2205. "mapper": {
  2206. "type": "code",
  2207. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2208. },
  2209. "parser": {
  2210. "type": "code",
  2211. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2212. },
  2213. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2214. "position": {
  2215. "type": "list<double>",
  2216. "value": [
  2217. 71,
  2218. 70
  2219. ]
  2220. },
  2221. "orientation": {
  2222. "type": "double",
  2223. "value": 0
  2224. },
  2225. "scale": {
  2226. "type": "list<double>",
  2227. "value": [
  2228. 1,
  2229. 1
  2230. ]
  2231. }
  2232. },
  2233. "82": {
  2234. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2235. "position": {
  2236. "type": "list<double>",
  2237. "value": [
  2238. 43.5,
  2239. 43.5
  2240. ]
  2241. },
  2242. "orientation": {
  2243. "type": "double",
  2244. "value": 0
  2245. },
  2246. "scale": {
  2247. "type": "list<double>",
  2248. "value": [
  2249. 1,
  2250. 1
  2251. ]
  2252. },
  2253. "link-style": {
  2254. "type": "map<string,string>",
  2255. "value": {
  2256. "stroke": "#00ffff",
  2257. "stroke-dasharray": "",
  2258. "stroke-opacity": 0.1,
  2259. "stroke-width": 1
  2260. }
  2261. }
  2262. },
  2263. "__pLabelText": {
  2264. "position": {
  2265. "type": "list<double>",
  2266. "value": [
  2267. 0,
  2268. 0
  2269. ]
  2270. },
  2271. "orientation": {
  2272. "type": "double",
  2273. "value": 0
  2274. },
  2275. "scale": {
  2276. "type": "list<double>",
  2277. "value": [
  2278. 1,
  2279. 1
  2280. ]
  2281. },
  2282. "textContent": {
  2283. "type": "string",
  2284. "value": "1"
  2285. },
  2286. "style": {
  2287. "type": "map<string,string>",
  2288. "value": {
  2289. "stroke": "#6000ff",
  2290. "fill": "#6000ff",
  2291. "font-size": "15px",
  2292. "opacity": "1"
  2293. }
  2294. },
  2295. "mapper": {
  2296. "type": "code",
  2297. "value": "({'textContent':getAttr('__pLabel')})"
  2298. },
  2299. "parser": {
  2300. "type": "code",
  2301. "value": "({'__pLabel':getAttr('textContent')})"
  2302. },
  2303. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2304. }
  2305. },
  2306. "edges": [
  2307. {
  2308. "src": "35",
  2309. "dest": "75"
  2310. },
  2311. {
  2312. "src": "75",
  2313. "dest": "69"
  2314. },
  2315. {
  2316. "src": "35",
  2317. "dest": "77"
  2318. },
  2319. {
  2320. "src": "77",
  2321. "dest": "76"
  2322. },
  2323. {
  2324. "src": "35",
  2325. "dest": "80"
  2326. },
  2327. {
  2328. "src": "80",
  2329. "dest": "78"
  2330. },
  2331. {
  2332. "src": "35",
  2333. "dest": "82"
  2334. },
  2335. {
  2336. "src": "82",
  2337. "dest": "81"
  2338. }
  2339. ]
  2340. }
  2341. },
  2342. "$asuri": {
  2343. "type": "string",
  2344. "value": "/Formalisms/Pacman/Pacman.pattern/__pGridNode/11.instance"
  2345. },
  2346. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon"
  2347. },
  2348. "17": {
  2349. "link-style": {
  2350. "type": "map<string,string>",
  2351. "value": {
  2352. "stroke": "#00ff00",
  2353. "stroke-dasharray": "",
  2354. "stroke-opacity": 0.2,
  2355. "stroke-width": 1,
  2356. "arrow-start": "none",
  2357. "arrow-end": "classic-wide-long"
  2358. }
  2359. },
  2360. "typename": {
  2361. "type": "string",
  2362. "value": "PatternContentsLink"
  2363. },
  2364. "position": {
  2365. "type": "list<double>",
  2366. "value": [
  2367. 1292,
  2368. 418.75
  2369. ]
  2370. },
  2371. "orientation": {
  2372. "type": "double",
  2373. "value": 0
  2374. },
  2375. "scale": {
  2376. "type": "list<double>",
  2377. "value": [
  2378. 1,
  2379. 1
  2380. ]
  2381. },
  2382. "mapper": {
  2383. "type": "code",
  2384. "value": ""
  2385. },
  2386. "parser": {
  2387. "type": "code",
  2388. "value": ""
  2389. },
  2390. "$contents": {
  2391. "type": "map<string,*>",
  2392. "value": {
  2393. "nodes": {},
  2394. "edges": []
  2395. }
  2396. },
  2397. "$asuri": {
  2398. "type": "string",
  2399. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/17.instance"
  2400. },
  2401. "$segments": {
  2402. "type": "map<string,list<string>>",
  2403. "value": {
  2404. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/17.instance": "M1143,332L1292,418.75",
  2405. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/17.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/9.instance": "M1292.0647442856416,418.78769507905645L1347.9993204669677,537.4996043658352"
  2406. }
  2407. },
  2408. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2409. },
  2410. "18": {
  2411. "link-style": {
  2412. "type": "map<string,string>",
  2413. "value": {
  2414. "stroke": "#00ff00",
  2415. "stroke-dasharray": "",
  2416. "stroke-opacity": 0.2,
  2417. "stroke-width": 1,
  2418. "arrow-start": "none",
  2419. "arrow-end": "classic-wide-long"
  2420. }
  2421. },
  2422. "typename": {
  2423. "type": "string",
  2424. "value": "PatternContentsLink"
  2425. },
  2426. "position": {
  2427. "type": "list<double>",
  2428. "value": [
  2429. 1292,
  2430. 481.25
  2431. ]
  2432. },
  2433. "orientation": {
  2434. "type": "double",
  2435. "value": 0
  2436. },
  2437. "scale": {
  2438. "type": "list<double>",
  2439. "value": [
  2440. 1,
  2441. 1
  2442. ]
  2443. },
  2444. "mapper": {
  2445. "type": "code",
  2446. "value": ""
  2447. },
  2448. "parser": {
  2449. "type": "code",
  2450. "value": ""
  2451. },
  2452. "$contents": {
  2453. "type": "map<string,*>",
  2454. "value": {
  2455. "nodes": {},
  2456. "edges": []
  2457. }
  2458. },
  2459. "$asuri": {
  2460. "type": "string",
  2461. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/18.instance"
  2462. },
  2463. "$segments": {
  2464. "type": "map<string,list<string>>",
  2465. "value": {
  2466. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/18.instance": "M1143,332L1292,481.25",
  2467. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/18.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/11.instance": "M1292.0529365656057,481.3030253853468L1494.999546257487,541.4995454961742"
  2468. }
  2469. },
  2470. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2471. },
  2472. "21": {
  2473. "typename": {
  2474. "type": "string",
  2475. "value": "NACIcon"
  2476. },
  2477. "position": {
  2478. "type": "list<double>",
  2479. "value": [
  2480. 175,
  2481. 326
  2482. ]
  2483. },
  2484. "orientation": {
  2485. "type": "double",
  2486. "value": 0
  2487. },
  2488. "scale": {
  2489. "type": "list<double>",
  2490. "value": [
  2491. 1,
  2492. 1
  2493. ]
  2494. },
  2495. "mapper": {
  2496. "type": "code",
  2497. "value": ""
  2498. },
  2499. "parser": {
  2500. "type": "code",
  2501. "value": ""
  2502. },
  2503. "$contents": {
  2504. "type": "map<string,*>",
  2505. "value": {
  2506. "nodes": {
  2507. "1": {
  2508. "width": {
  2509. "type": "double",
  2510. "value": "400"
  2511. },
  2512. "height": {
  2513. "type": "double",
  2514. "value": "500"
  2515. },
  2516. "cornerRadius": {
  2517. "type": "double",
  2518. "value": "0"
  2519. },
  2520. "style": {
  2521. "type": "map<string,string>",
  2522. "value": {
  2523. "stroke": "#000000",
  2524. "stroke-dasharray": "- .",
  2525. "fill": "#ffffff",
  2526. "fill-opacity": 0.75,
  2527. "stroke-width": 2
  2528. }
  2529. },
  2530. "mapper": {
  2531. "type": "code",
  2532. "value": ""
  2533. },
  2534. "parser": {
  2535. "type": "code",
  2536. "value": ""
  2537. },
  2538. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2539. "position": {
  2540. "type": "list<double>",
  2541. "value": [
  2542. 0,
  2543. -1
  2544. ]
  2545. },
  2546. "orientation": {
  2547. "type": "double",
  2548. "value": 0
  2549. },
  2550. "scale": {
  2551. "type": "list<double>",
  2552. "value": [
  2553. 1,
  2554. 1
  2555. ]
  2556. }
  2557. }
  2558. },
  2559. "edges": []
  2560. }
  2561. },
  2562. "$asuri": {
  2563. "type": "string",
  2564. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/NAC/21.instance"
  2565. },
  2566. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon"
  2567. },
  2568. "22": {
  2569. "typename": {
  2570. "type": "string",
  2571. "value": "PacmanIcon"
  2572. },
  2573. "position": {
  2574. "type": "list<double>",
  2575. "value": [
  2576. 924,
  2577. 570
  2578. ]
  2579. },
  2580. "orientation": {
  2581. "type": "double",
  2582. "value": 0
  2583. },
  2584. "scale": {
  2585. "type": "list<double>",
  2586. "value": [
  2587. 1,
  2588. 1
  2589. ]
  2590. },
  2591. "mapper": {
  2592. "type": "code",
  2593. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2594. },
  2595. "parser": {
  2596. "type": "code",
  2597. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2598. },
  2599. "$contents": {
  2600. "type": "map<string,*>",
  2601. "value": {
  2602. "nodes": {
  2603. "2": {
  2604. "src": {
  2605. "type": "string",
  2606. "value": "http://upload.wikimedia.org/wikipedia/commons/1/19/Pac-Man.svg"
  2607. },
  2608. "width": {
  2609. "type": "double",
  2610. "value": 48
  2611. },
  2612. "height": {
  2613. "type": "double",
  2614. "value": 48
  2615. },
  2616. "style": {
  2617. "type": "map<string,string>",
  2618. "value": {
  2619. "stroke": "#000000",
  2620. "stroke-dasharray": "",
  2621. "fill": "#ffffff",
  2622. "opacity": 1,
  2623. "font-size": "20px",
  2624. "stroke-width": 1,
  2625. "arrow-start": "none",
  2626. "arrow-end": "none"
  2627. }
  2628. },
  2629. "mapper": {
  2630. "type": "code",
  2631. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2632. },
  2633. "parser": {
  2634. "type": "code",
  2635. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2636. },
  2637. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  2638. "position": {
  2639. "type": "list<double>",
  2640. "value": [
  2641. 2,
  2642. 3
  2643. ]
  2644. },
  2645. "orientation": {
  2646. "type": "double",
  2647. "value": 0
  2648. },
  2649. "scale": {
  2650. "type": "list<double>",
  2651. "value": [
  2652. 1,
  2653. 1
  2654. ]
  2655. }
  2656. },
  2657. "__pLabelText": {
  2658. "position": {
  2659. "type": "list<double>",
  2660. "value": [
  2661. 0,
  2662. 0
  2663. ]
  2664. },
  2665. "orientation": {
  2666. "type": "double",
  2667. "value": 0
  2668. },
  2669. "scale": {
  2670. "type": "list<double>",
  2671. "value": [
  2672. 1,
  2673. 1
  2674. ]
  2675. },
  2676. "textContent": {
  2677. "type": "string",
  2678. "value": "3"
  2679. },
  2680. "style": {
  2681. "type": "map<string,string>",
  2682. "value": {
  2683. "stroke": "#6000ff",
  2684. "fill": "#6000ff",
  2685. "font-size": "15px",
  2686. "opacity": "1"
  2687. }
  2688. },
  2689. "mapper": {
  2690. "type": "code",
  2691. "value": "({'textContent':getAttr('__pLabel')})"
  2692. },
  2693. "parser": {
  2694. "type": "code",
  2695. "value": "({'__pLabel':getAttr('textContent')})"
  2696. },
  2697. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2698. }
  2699. },
  2700. "edges": []
  2701. }
  2702. },
  2703. "$asuri": {
  2704. "type": "string",
  2705. "value": "/Formalisms/Pacman/Pacman.pattern/__pPacman/22.instance"
  2706. },
  2707. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPacmanIcon"
  2708. },
  2709. "23": {
  2710. "link-style": {
  2711. "type": "map<string,string>",
  2712. "value": {
  2713. "stroke": "#000000",
  2714. "stroke-dasharray": "",
  2715. "stroke-opacity": 1,
  2716. "stroke-width": 0
  2717. }
  2718. },
  2719. "arrowHead": {
  2720. "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)",
  2721. "value": "custom"
  2722. },
  2723. "arrowTail": {
  2724. "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)",
  2725. "value": "arrow-black"
  2726. },
  2727. "typename": {
  2728. "type": "string",
  2729. "value": "PoGLink"
  2730. },
  2731. "position": {
  2732. "type": "list<double>",
  2733. "value": [
  2734. 915.5,
  2735. 563.25
  2736. ]
  2737. },
  2738. "orientation": {
  2739. "type": "double",
  2740. "value": 0
  2741. },
  2742. "scale": {
  2743. "type": "list<double>",
  2744. "value": [
  2745. 1,
  2746. 1
  2747. ]
  2748. },
  2749. "mapper": {
  2750. "type": "code",
  2751. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2752. },
  2753. "parser": {
  2754. "type": "code",
  2755. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2756. },
  2757. "$contents": {
  2758. "type": "map<string,*>",
  2759. "value": {
  2760. "nodes": {
  2761. "267": {
  2762. "segments": {
  2763. "type": "string",
  2764. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2765. },
  2766. "style": {
  2767. "type": "map<string,string>",
  2768. "value": {
  2769. "stroke": "#000000",
  2770. "fill": "#000000",
  2771. "opacity": 0,
  2772. "stroke-width": 1
  2773. }
  2774. },
  2775. "mapper": {
  2776. "type": "code",
  2777. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2778. },
  2779. "parser": {
  2780. "type": "code",
  2781. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2782. },
  2783. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2784. "position": {
  2785. "type": "list<double>",
  2786. "value": [
  2787. "0;36.27392122490278,72.04196957091892%",
  2788. "0;29.368097652253596,69.35383637797402%"
  2789. ]
  2790. },
  2791. "orientation": {
  2792. "type": "double",
  2793. "value": "0;43.91085783010342"
  2794. },
  2795. "scale": {
  2796. "type": "list<double>",
  2797. "value": [
  2798. 1,
  2799. 1
  2800. ]
  2801. },
  2802. "arrow": "arrowTail",
  2803. "arrowType": "arrow-black",
  2804. "$linkDecoratorInfo": {
  2805. "type": "map<string,double>",
  2806. "value": {
  2807. "xratio": 1,
  2808. "yoffset": -4
  2809. }
  2810. }
  2811. },
  2812. "268": {
  2813. "segments": {
  2814. "type": "string",
  2815. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2816. },
  2817. "style": {
  2818. "type": "map<string,string>",
  2819. "value": {
  2820. "stroke": "#000000",
  2821. "fill": "#000000",
  2822. "opacity": 0,
  2823. "stroke-width": 1
  2824. }
  2825. },
  2826. "mapper": {
  2827. "type": "code",
  2828. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2829. },
  2830. "parser": {
  2831. "type": "code",
  2832. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2833. },
  2834. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2835. "position": {
  2836. "type": "list<double>",
  2837. "value": [
  2838. "0;40.4351514075812,72.04196957091892%",
  2839. "0;25.045579477998444,69.35383637797402%"
  2840. ]
  2841. },
  2842. "orientation": {
  2843. "type": "double",
  2844. "value": "0;43.91085783010342"
  2845. },
  2846. "scale": {
  2847. "type": "list<double>",
  2848. "value": [
  2849. 1,
  2850. 1
  2851. ]
  2852. },
  2853. "arrow": "arrowTail",
  2854. "arrowType": "diamond-black-large",
  2855. "$linkDecoratorInfo": {
  2856. "type": "map<string,double>",
  2857. "value": {
  2858. "xratio": 1,
  2859. "yoffset": -10
  2860. }
  2861. }
  2862. },
  2863. "269": {
  2864. "r": {
  2865. "type": "double",
  2866. "value": 10
  2867. },
  2868. "style": {
  2869. "type": "map<string,string>",
  2870. "value": {
  2871. "stroke": "#000000",
  2872. "fill": "#000000",
  2873. "opacity": 0,
  2874. "stroke-width": 1
  2875. }
  2876. },
  2877. "mapper": {
  2878. "type": "code",
  2879. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2880. },
  2881. "parser": {
  2882. "type": "code",
  2883. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2884. },
  2885. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2886. "position": {
  2887. "type": "list<double>",
  2888. "value": [
  2889. "0;40.4351514075812,72.04196957091892%",
  2890. "0;25.045579477998444,69.35383637797402%"
  2891. ]
  2892. },
  2893. "orientation": {
  2894. "type": "double",
  2895. "value": "0;43.91085783010342"
  2896. },
  2897. "scale": {
  2898. "type": "list<double>",
  2899. "value": [
  2900. 1,
  2901. 1
  2902. ]
  2903. },
  2904. "arrow": "arrowTail",
  2905. "arrowType": "circle-black-large",
  2906. "$linkDecoratorInfo": {
  2907. "type": "map<string,double>",
  2908. "value": {
  2909. "xratio": 1,
  2910. "yoffset": -10
  2911. }
  2912. }
  2913. },
  2914. "270": {
  2915. "r": {
  2916. "type": "double",
  2917. "value": 10
  2918. },
  2919. "style": {
  2920. "type": "map<string,string>",
  2921. "value": {
  2922. "stroke": "#000000",
  2923. "fill": "#ffffff",
  2924. "opacity": 0,
  2925. "stroke-width": 1
  2926. }
  2927. },
  2928. "mapper": {
  2929. "type": "code",
  2930. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2931. },
  2932. "parser": {
  2933. "type": "code",
  2934. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2935. },
  2936. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2937. "position": {
  2938. "type": "list<double>",
  2939. "value": [
  2940. "0;40.4351514075812,72.04196957091892%",
  2941. "0;25.045579477998444,69.35383637797402%"
  2942. ]
  2943. },
  2944. "orientation": {
  2945. "type": "double",
  2946. "value": "0;43.91085783010342"
  2947. },
  2948. "scale": {
  2949. "type": "list<double>",
  2950. "value": [
  2951. 1,
  2952. 1
  2953. ]
  2954. },
  2955. "arrow": "arrowTail",
  2956. "arrowType": "circle-white-large",
  2957. "$linkDecoratorInfo": {
  2958. "type": "map<string,double>",
  2959. "value": {
  2960. "xratio": 1,
  2961. "yoffset": -10
  2962. }
  2963. }
  2964. },
  2965. "271": {
  2966. "r": {
  2967. "type": "double",
  2968. "value": 5
  2969. },
  2970. "style": {
  2971. "type": "map<string,string>",
  2972. "value": {
  2973. "stroke": "#000000",
  2974. "fill": "#000000",
  2975. "opacity": 0,
  2976. "stroke-width": 1
  2977. }
  2978. },
  2979. "mapper": {
  2980. "type": "code",
  2981. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2982. },
  2983. "parser": {
  2984. "type": "code",
  2985. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2986. },
  2987. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2988. "position": {
  2989. "type": "list<double>",
  2990. "value": [
  2991. "0;36.96745958868257,72.04196957091892%",
  2992. "0;28.647677956544385,69.35383637797402%"
  2993. ]
  2994. },
  2995. "orientation": {
  2996. "type": "double",
  2997. "value": "0;43.91085783010342"
  2998. },
  2999. "scale": {
  3000. "type": "list<double>",
  3001. "value": [
  3002. 1,
  3003. 1
  3004. ]
  3005. },
  3006. "arrow": "arrowTail",
  3007. "arrowType": "circle-black",
  3008. "$linkDecoratorInfo": {
  3009. "type": "map<string,double>",
  3010. "value": {
  3011. "xratio": 1,
  3012. "yoffset": -5
  3013. }
  3014. }
  3015. },
  3016. "272": {
  3017. "segments": {
  3018. "type": "string",
  3019. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3020. },
  3021. "style": {
  3022. "type": "map<string,string>",
  3023. "value": {
  3024. "stroke": "#000000",
  3025. "fill": "#000000",
  3026. "opacity": 0,
  3027. "stroke-width": 1
  3028. }
  3029. },
  3030. "mapper": {
  3031. "type": "code",
  3032. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3033. },
  3034. "parser": {
  3035. "type": "code",
  3036. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3037. },
  3038. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3039. "position": {
  3040. "type": "list<double>",
  3041. "value": [
  3042. "0;36.96745958868257,72.04196957091892%",
  3043. "0;28.647677956544385,69.35383637797402%"
  3044. ]
  3045. },
  3046. "orientation": {
  3047. "type": "double",
  3048. "value": "0;43.91085783010342"
  3049. },
  3050. "scale": {
  3051. "type": "list<double>",
  3052. "value": [
  3053. 1,
  3054. 1
  3055. ]
  3056. },
  3057. "arrow": "arrowTail",
  3058. "arrowType": "diamond-black",
  3059. "$linkDecoratorInfo": {
  3060. "type": "map<string,double>",
  3061. "value": {
  3062. "xratio": 1,
  3063. "yoffset": -5
  3064. }
  3065. }
  3066. },
  3067. "273": {
  3068. "segments": {
  3069. "type": "string",
  3070. "value": "m0,0 l20,10 l-20,10 z"
  3071. },
  3072. "style": {
  3073. "type": "map<string,string>",
  3074. "value": {
  3075. "stroke": "#000000",
  3076. "fill": "#000000",
  3077. "opacity": 0,
  3078. "stroke-width": 1
  3079. }
  3080. },
  3081. "mapper": {
  3082. "type": "code",
  3083. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3084. },
  3085. "parser": {
  3086. "type": "code",
  3087. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3088. },
  3089. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3090. "position": {
  3091. "type": "list<double>",
  3092. "value": [
  3093. "0;40.4351514075812,72.04196957091892%",
  3094. "0;25.045579477998444,69.35383637797402%"
  3095. ]
  3096. },
  3097. "orientation": {
  3098. "type": "double",
  3099. "value": "0;43.91085783010342"
  3100. },
  3101. "scale": {
  3102. "type": "list<double>",
  3103. "value": [
  3104. 1,
  3105. 1
  3106. ]
  3107. },
  3108. "arrow": "arrowTail",
  3109. "arrowType": "triangle-black-large",
  3110. "$linkDecoratorInfo": {
  3111. "type": "map<string,double>",
  3112. "value": {
  3113. "xratio": 1,
  3114. "yoffset": -10
  3115. }
  3116. }
  3117. },
  3118. "274": {
  3119. "segments": {
  3120. "type": "string",
  3121. "value": "m0,0 l10,4 l-10,4 z"
  3122. },
  3123. "style": {
  3124. "type": "map<string,string>",
  3125. "value": {
  3126. "stroke": "#000000",
  3127. "fill": "#000000",
  3128. "opacity": 0,
  3129. "stroke-width": 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. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3141. "position": {
  3142. "type": "list<double>",
  3143. "value": [
  3144. "0;36.27392122490278,72.04196957091892%",
  3145. "0;29.368097652253596,69.35383637797402%"
  3146. ]
  3147. },
  3148. "orientation": {
  3149. "type": "double",
  3150. "value": "0;43.91085783010342"
  3151. },
  3152. "scale": {
  3153. "type": "list<double>",
  3154. "value": [
  3155. 1,
  3156. 1
  3157. ]
  3158. },
  3159. "arrow": "arrowTail",
  3160. "arrowType": "triangle-black",
  3161. "$linkDecoratorInfo": {
  3162. "type": "map<string,double>",
  3163. "value": {
  3164. "xratio": 1,
  3165. "yoffset": -4
  3166. }
  3167. }
  3168. },
  3169. "275": {
  3170. "segments": {
  3171. "type": "string",
  3172. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  3173. },
  3174. "style": {
  3175. "type": "map<string,string>",
  3176. "value": {
  3177. "stroke": "#000000",
  3178. "fill": "#000000",
  3179. "opacity": 0,
  3180. "stroke-width": 1
  3181. }
  3182. },
  3183. "mapper": {
  3184. "type": "code",
  3185. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3186. },
  3187. "parser": {
  3188. "type": "code",
  3189. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3190. },
  3191. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3192. "position": {
  3193. "type": "list<double>",
  3194. "value": [
  3195. "0;39.04807468002173,72.04196957091892%",
  3196. "0;26.486418869416866,69.35383637797402%"
  3197. ]
  3198. },
  3199. "orientation": {
  3200. "type": "double",
  3201. "value": "0;43.91085783010342"
  3202. },
  3203. "scale": {
  3204. "type": "list<double>",
  3205. "value": [
  3206. 1,
  3207. 1
  3208. ]
  3209. },
  3210. "arrow": "arrowTail",
  3211. "arrowType": "arrow-black-large",
  3212. "$linkDecoratorInfo": {
  3213. "type": "map<string,double>",
  3214. "value": {
  3215. "xratio": 1,
  3216. "yoffset": -8
  3217. }
  3218. }
  3219. },
  3220. "276": {
  3221. "segments": {
  3222. "type": "string",
  3223. "value": "m0,0 l20,10 l-20,10 z"
  3224. },
  3225. "style": {
  3226. "type": "map<string,string>",
  3227. "value": {
  3228. "stroke": "#000000",
  3229. "fill": "#ffffff",
  3230. "opacity": 0,
  3231. "stroke-width": 1
  3232. }
  3233. },
  3234. "mapper": {
  3235. "type": "code",
  3236. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3237. },
  3238. "parser": {
  3239. "type": "code",
  3240. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3241. },
  3242. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3243. "position": {
  3244. "type": "list<double>",
  3245. "value": [
  3246. "0;40.4351514075812,72.04196957091892%",
  3247. "0;25.045579477998444,69.35383637797402%"
  3248. ]
  3249. },
  3250. "orientation": {
  3251. "type": "double",
  3252. "value": "0;43.91085783010342"
  3253. },
  3254. "scale": {
  3255. "type": "list<double>",
  3256. "value": [
  3257. 1,
  3258. 1
  3259. ]
  3260. },
  3261. "arrow": "arrowTail",
  3262. "arrowType": "triangle-white-large",
  3263. "$linkDecoratorInfo": {
  3264. "type": "map<string,double>",
  3265. "value": {
  3266. "xratio": 1,
  3267. "yoffset": -10
  3268. }
  3269. }
  3270. },
  3271. "277": {
  3272. "segments": {
  3273. "type": "string",
  3274. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3275. },
  3276. "style": {
  3277. "type": "map<string,string>",
  3278. "value": {
  3279. "stroke": "#000000",
  3280. "fill": "#ffffff",
  3281. "opacity": 0,
  3282. "stroke-width": 1
  3283. }
  3284. },
  3285. "mapper": {
  3286. "type": "code",
  3287. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3288. },
  3289. "parser": {
  3290. "type": "code",
  3291. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3292. },
  3293. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3294. "position": {
  3295. "type": "list<double>",
  3296. "value": [
  3297. "0;36.96745958868257,72.04196957091892%",
  3298. "0;28.647677956544385,69.35383637797402%"
  3299. ]
  3300. },
  3301. "orientation": {
  3302. "type": "double",
  3303. "value": "0;43.91085783010342"
  3304. },
  3305. "scale": {
  3306. "type": "list<double>",
  3307. "value": [
  3308. 1,
  3309. 1
  3310. ]
  3311. },
  3312. "arrow": "arrowTail",
  3313. "arrowType": "diamond-white",
  3314. "$linkDecoratorInfo": {
  3315. "type": "map<string,double>",
  3316. "value": {
  3317. "xratio": 1,
  3318. "yoffset": -5
  3319. }
  3320. }
  3321. },
  3322. "278": {
  3323. "segments": {
  3324. "type": "string",
  3325. "value": "m0,0 l20,8 l-20,8"
  3326. },
  3327. "style": {
  3328. "type": "map<string,string>",
  3329. "value": {
  3330. "stroke": "#000000",
  3331. "fill": "#000000",
  3332. "fill-opacity": 0,
  3333. "stroke-width": 1,
  3334. "opacity": 0
  3335. }
  3336. },
  3337. "mapper": {
  3338. "type": "code",
  3339. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3340. },
  3341. "parser": {
  3342. "type": "code",
  3343. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3344. },
  3345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3346. "position": {
  3347. "type": "list<double>",
  3348. "value": [
  3349. "0;39.04807468002173,72.04196957091892%",
  3350. "0;26.486418869416866,69.35383637797402%"
  3351. ]
  3352. },
  3353. "orientation": {
  3354. "type": "double",
  3355. "value": "0;43.91085783010342"
  3356. },
  3357. "scale": {
  3358. "type": "list<double>",
  3359. "value": [
  3360. 1,
  3361. 1
  3362. ]
  3363. },
  3364. "arrow": "arrowTail",
  3365. "arrowType": "arrow-empty-large",
  3366. "$linkDecoratorInfo": {
  3367. "type": "map<string,double>",
  3368. "value": {
  3369. "xratio": 1,
  3370. "yoffset": -8
  3371. }
  3372. }
  3373. },
  3374. "279": {
  3375. "r": {
  3376. "type": "double",
  3377. "value": 5
  3378. },
  3379. "style": {
  3380. "type": "map<string,string>",
  3381. "value": {
  3382. "stroke": "#000000",
  3383. "fill": "#ffffff",
  3384. "opacity": 0,
  3385. "stroke-width": 1
  3386. }
  3387. },
  3388. "mapper": {
  3389. "type": "code",
  3390. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3391. },
  3392. "parser": {
  3393. "type": "code",
  3394. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3395. },
  3396. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3397. "position": {
  3398. "type": "list<double>",
  3399. "value": [
  3400. "0;36.96745958868257,72.04196957091892%",
  3401. "0;28.647677956544385,69.35383637797402%"
  3402. ]
  3403. },
  3404. "orientation": {
  3405. "type": "double",
  3406. "value": "0;43.91085783010342"
  3407. },
  3408. "scale": {
  3409. "type": "list<double>",
  3410. "value": [
  3411. 1,
  3412. 1
  3413. ]
  3414. },
  3415. "arrow": "arrowTail",
  3416. "arrowType": "circle-white",
  3417. "$linkDecoratorInfo": {
  3418. "type": "map<string,double>",
  3419. "value": {
  3420. "xratio": 1,
  3421. "yoffset": -5
  3422. }
  3423. }
  3424. },
  3425. "280": {
  3426. "segments": {
  3427. "type": "string",
  3428. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3429. },
  3430. "style": {
  3431. "type": "map<string,string>",
  3432. "value": {
  3433. "stroke": "#000000",
  3434. "fill": "#ffffff",
  3435. "opacity": 0,
  3436. "stroke-width": 1
  3437. }
  3438. },
  3439. "mapper": {
  3440. "type": "code",
  3441. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3442. },
  3443. "parser": {
  3444. "type": "code",
  3445. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3446. },
  3447. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3448. "position": {
  3449. "type": "list<double>",
  3450. "value": [
  3451. "0;40.4351514075812,72.04196957091892%",
  3452. "0;25.045579477998444,69.35383637797402%"
  3453. ]
  3454. },
  3455. "orientation": {
  3456. "type": "double",
  3457. "value": "0;43.91085783010342"
  3458. },
  3459. "scale": {
  3460. "type": "list<double>",
  3461. "value": [
  3462. 1,
  3463. 1
  3464. ]
  3465. },
  3466. "arrow": "arrowTail",
  3467. "arrowType": "diamond-white-large",
  3468. "$linkDecoratorInfo": {
  3469. "type": "map<string,double>",
  3470. "value": {
  3471. "xratio": 1,
  3472. "yoffset": -10
  3473. }
  3474. }
  3475. },
  3476. "281": {
  3477. "segments": {
  3478. "type": "string",
  3479. "value": "m0,0 l10,4 l-10,4"
  3480. },
  3481. "style": {
  3482. "type": "map<string,string>",
  3483. "value": {
  3484. "stroke": "#000000",
  3485. "fill": "#000000",
  3486. "fill-opacity": 0,
  3487. "stroke-width": 1,
  3488. "opacity": 0
  3489. }
  3490. },
  3491. "mapper": {
  3492. "type": "code",
  3493. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3494. },
  3495. "parser": {
  3496. "type": "code",
  3497. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3498. },
  3499. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3500. "position": {
  3501. "type": "list<double>",
  3502. "value": [
  3503. "0;36.27392122490278,72.04196957091892%",
  3504. "0;29.368097652253596,69.35383637797402%"
  3505. ]
  3506. },
  3507. "orientation": {
  3508. "type": "double",
  3509. "value": "0;43.91085783010342"
  3510. },
  3511. "scale": {
  3512. "type": "list<double>",
  3513. "value": [
  3514. 1,
  3515. 1
  3516. ]
  3517. },
  3518. "arrow": "arrowTail",
  3519. "arrowType": "arrow-empty",
  3520. "$linkDecoratorInfo": {
  3521. "type": "map<string,double>",
  3522. "value": {
  3523. "xratio": 1,
  3524. "yoffset": -4
  3525. }
  3526. }
  3527. },
  3528. "282": {
  3529. "segments": {
  3530. "type": "string",
  3531. "value": "m0,0 l10,5 l-10,5 z"
  3532. },
  3533. "style": {
  3534. "type": "map<string,string>",
  3535. "value": {
  3536. "stroke": "#000000",
  3537. "fill": "#ffffff",
  3538. "opacity": 0,
  3539. "stroke-width": 1
  3540. }
  3541. },
  3542. "mapper": {
  3543. "type": "code",
  3544. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3545. },
  3546. "parser": {
  3547. "type": "code",
  3548. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3549. },
  3550. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3551. "position": {
  3552. "type": "list<double>",
  3553. "value": [
  3554. "0;36.96745958868257,72.04196957091892%",
  3555. "0;28.647677956544385,69.35383637797402%"
  3556. ]
  3557. },
  3558. "orientation": {
  3559. "type": "double",
  3560. "value": "0;43.91085783010342"
  3561. },
  3562. "scale": {
  3563. "type": "list<double>",
  3564. "value": [
  3565. 1,
  3566. 1
  3567. ]
  3568. },
  3569. "arrow": "arrowTail",
  3570. "arrowType": "triangle-white",
  3571. "$linkDecoratorInfo": {
  3572. "type": "map<string,double>",
  3573. "value": {
  3574. "xratio": 1,
  3575. "yoffset": -5
  3576. }
  3577. }
  3578. },
  3579. "283": {
  3580. "segments": {
  3581. "type": "string",
  3582. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3583. },
  3584. "style": {
  3585. "type": "map<string,string>",
  3586. "value": {
  3587. "stroke": "#000000",
  3588. "fill": "#ffffff",
  3589. "opacity": 0,
  3590. "stroke-width": 1
  3591. }
  3592. },
  3593. "mapper": {
  3594. "type": "code",
  3595. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3596. },
  3597. "parser": {
  3598. "type": "code",
  3599. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3600. },
  3601. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3602. "position": {
  3603. "type": "list<double>",
  3604. "value": [
  3605. "0;-30.032308181101257,0%",
  3606. "0;-35.85209847854594,0%"
  3607. ]
  3608. },
  3609. "orientation": {
  3610. "type": "double",
  3611. "value": "0;43.91085783010349"
  3612. },
  3613. "scale": {
  3614. "type": "list<double>",
  3615. "value": [
  3616. 1,
  3617. 1
  3618. ]
  3619. },
  3620. "arrow": "arrowHead",
  3621. "arrowType": "diamond-white",
  3622. "$linkDecoratorInfo": {
  3623. "type": "map<string,double>",
  3624. "value": {
  3625. "xratio": -1,
  3626. "yoffset": -5
  3627. }
  3628. }
  3629. },
  3630. "284": {
  3631. "segments": {
  3632. "type": "string",
  3633. "value": "m0,0 l-10,5 l10,5 z"
  3634. },
  3635. "style": {
  3636. "type": "map<string,string>",
  3637. "value": {
  3638. "stroke": "#000000",
  3639. "fill": "#ffffff",
  3640. "opacity": 0,
  3641. "stroke-width": 1
  3642. }
  3643. },
  3644. "mapper": {
  3645. "type": "code",
  3646. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3647. },
  3648. "parser": {
  3649. "type": "code",
  3650. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3651. },
  3652. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3653. "position": {
  3654. "type": "list<double>",
  3655. "value": [
  3656. "0;-30.032308181101257,0%",
  3657. "0;-35.85209847854594,0%"
  3658. ]
  3659. },
  3660. "orientation": {
  3661. "type": "double",
  3662. "value": "0;43.91085783010349"
  3663. },
  3664. "scale": {
  3665. "type": "list<double>",
  3666. "value": [
  3667. 1,
  3668. 1
  3669. ]
  3670. },
  3671. "arrow": "arrowHead",
  3672. "arrowType": "triangle-white",
  3673. "$linkDecoratorInfo": {
  3674. "type": "map<string,double>",
  3675. "value": {
  3676. "xratio": -1,
  3677. "yoffset": -5
  3678. }
  3679. }
  3680. },
  3681. "285": {
  3682. "segments": {
  3683. "type": "string",
  3684. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3685. },
  3686. "style": {
  3687. "type": "map<string,string>",
  3688. "value": {
  3689. "stroke": "#000000",
  3690. "fill": "#000000",
  3691. "opacity": 0,
  3692. "stroke-width": 1
  3693. }
  3694. },
  3695. "mapper": {
  3696. "type": "code",
  3697. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3698. },
  3699. "parser": {
  3700. "type": "code",
  3701. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3702. },
  3703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3704. "position": {
  3705. "type": "list<double>",
  3706. "value": [
  3707. "0;-30.032308181101257,0%",
  3708. "0;-35.85209847854594,0%"
  3709. ]
  3710. },
  3711. "orientation": {
  3712. "type": "double",
  3713. "value": "0;43.91085783010349"
  3714. },
  3715. "scale": {
  3716. "type": "list<double>",
  3717. "value": [
  3718. 1,
  3719. 1
  3720. ]
  3721. },
  3722. "arrow": "arrowHead",
  3723. "arrowType": "diamond-black",
  3724. "$linkDecoratorInfo": {
  3725. "type": "map<string,double>",
  3726. "value": {
  3727. "xratio": -1,
  3728. "yoffset": -5
  3729. }
  3730. }
  3731. },
  3732. "286": {
  3733. "r": {
  3734. "type": "double",
  3735. "value": 10
  3736. },
  3737. "style": {
  3738. "type": "map<string,string>",
  3739. "value": {
  3740. "stroke": "#000000",
  3741. "fill": "#000000",
  3742. "opacity": 0,
  3743. "stroke-width": 1
  3744. }
  3745. },
  3746. "mapper": {
  3747. "type": "code",
  3748. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3749. },
  3750. "parser": {
  3751. "type": "code",
  3752. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3753. },
  3754. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3755. "position": {
  3756. "type": "list<double>",
  3757. "value": [
  3758. "0;-26.564616362202628,0%",
  3759. "0;-39.45419695709188,0%"
  3760. ]
  3761. },
  3762. "orientation": {
  3763. "type": "double",
  3764. "value": "0;43.91085783010349"
  3765. },
  3766. "scale": {
  3767. "type": "list<double>",
  3768. "value": [
  3769. 1,
  3770. 1
  3771. ]
  3772. },
  3773. "arrow": "arrowHead",
  3774. "arrowType": "circle-black-large",
  3775. "$linkDecoratorInfo": {
  3776. "type": "map<string,double>",
  3777. "value": {
  3778. "xratio": -1,
  3779. "yoffset": -10
  3780. }
  3781. }
  3782. },
  3783. "287": {
  3784. "segments": {
  3785. "type": "string",
  3786. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  3787. },
  3788. "style": {
  3789. "type": "map<string,string>",
  3790. "value": {
  3791. "stroke": "#000000",
  3792. "fill": "#000000",
  3793. "opacity": 0,
  3794. "stroke-width": 1
  3795. }
  3796. },
  3797. "mapper": {
  3798. "type": "code",
  3799. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3800. },
  3801. "parser": {
  3802. "type": "code",
  3803. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3804. },
  3805. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3806. "position": {
  3807. "type": "list<double>",
  3808. "value": [
  3809. "0;-27.951693089762102,0%",
  3810. "0;-38.01335756567346,0%"
  3811. ]
  3812. },
  3813. "orientation": {
  3814. "type": "double",
  3815. "value": "0;43.91085783010349"
  3816. },
  3817. "scale": {
  3818. "type": "list<double>",
  3819. "value": [
  3820. 1,
  3821. 1
  3822. ]
  3823. },
  3824. "arrow": "arrowHead",
  3825. "arrowType": "arrow-black-large",
  3826. "$linkDecoratorInfo": {
  3827. "type": "map<string,double>",
  3828. "value": {
  3829. "xratio": -1,
  3830. "yoffset": -8
  3831. }
  3832. }
  3833. },
  3834. "288": {
  3835. "segments": {
  3836. "type": "string",
  3837. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  3838. },
  3839. "style": {
  3840. "type": "map<string,string>",
  3841. "value": {
  3842. "stroke": "#000000",
  3843. "fill": "#000000",
  3844. "opacity": 0,
  3845. "stroke-width": 1
  3846. }
  3847. },
  3848. "mapper": {
  3849. "type": "code",
  3850. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3851. },
  3852. "parser": {
  3853. "type": "code",
  3854. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3855. },
  3856. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3857. "position": {
  3858. "type": "list<double>",
  3859. "value": [
  3860. "0;-30.72584654488105,0%",
  3861. "0;-35.13167878283673,0%"
  3862. ]
  3863. },
  3864. "orientation": {
  3865. "type": "double",
  3866. "value": "0;43.91085783010349"
  3867. },
  3868. "scale": {
  3869. "type": "list<double>",
  3870. "value": [
  3871. 1,
  3872. 1
  3873. ]
  3874. },
  3875. "arrow": "arrowHead",
  3876. "arrowType": "arrow-black",
  3877. "$linkDecoratorInfo": {
  3878. "type": "map<string,double>",
  3879. "value": {
  3880. "xratio": -1,
  3881. "yoffset": -4
  3882. }
  3883. }
  3884. },
  3885. "289": {
  3886. "segments": {
  3887. "type": "string",
  3888. "value": "m0,0 l-20,10 l20,10 z"
  3889. },
  3890. "style": {
  3891. "type": "map<string,string>",
  3892. "value": {
  3893. "stroke": "#000000",
  3894. "fill": "#ffffff",
  3895. "opacity": 0,
  3896. "stroke-width": 1
  3897. }
  3898. },
  3899. "mapper": {
  3900. "type": "code",
  3901. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3902. },
  3903. "parser": {
  3904. "type": "code",
  3905. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3906. },
  3907. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3908. "position": {
  3909. "type": "list<double>",
  3910. "value": [
  3911. "0;-26.564616362202628,0%",
  3912. "0;-39.45419695709188,0%"
  3913. ]
  3914. },
  3915. "orientation": {
  3916. "type": "double",
  3917. "value": "0;43.91085783010349"
  3918. },
  3919. "scale": {
  3920. "type": "list<double>",
  3921. "value": [
  3922. 1,
  3923. 1
  3924. ]
  3925. },
  3926. "arrow": "arrowHead",
  3927. "arrowType": "triangle-white-large",
  3928. "$linkDecoratorInfo": {
  3929. "type": "map<string,double>",
  3930. "value": {
  3931. "xratio": -1,
  3932. "yoffset": -10
  3933. }
  3934. }
  3935. },
  3936. "290": {
  3937. "segments": {
  3938. "type": "string",
  3939. "value": "m0,0 l-20,10 l20,10 z"
  3940. },
  3941. "style": {
  3942. "type": "map<string,string>",
  3943. "value": {
  3944. "stroke": "#000000",
  3945. "fill": "#000000",
  3946. "opacity": 0,
  3947. "stroke-width": 1
  3948. }
  3949. },
  3950. "mapper": {
  3951. "type": "code",
  3952. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3953. },
  3954. "parser": {
  3955. "type": "code",
  3956. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3957. },
  3958. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3959. "position": {
  3960. "type": "list<double>",
  3961. "value": [
  3962. "0;-26.564616362202628,0%",
  3963. "0;-39.45419695709188,0%"
  3964. ]
  3965. },
  3966. "orientation": {
  3967. "type": "double",
  3968. "value": "0;43.91085783010349"
  3969. },
  3970. "scale": {
  3971. "type": "list<double>",
  3972. "value": [
  3973. 1,
  3974. 1
  3975. ]
  3976. },
  3977. "arrow": "arrowHead",
  3978. "arrowType": "triangle-black-large",
  3979. "$linkDecoratorInfo": {
  3980. "type": "map<string,double>",
  3981. "value": {
  3982. "xratio": -1,
  3983. "yoffset": -10
  3984. }
  3985. }
  3986. },
  3987. "291": {
  3988. "r": {
  3989. "type": "double",
  3990. "value": 5
  3991. },
  3992. "style": {
  3993. "type": "map<string,string>",
  3994. "value": {
  3995. "stroke": "#000000",
  3996. "fill": "#000000",
  3997. "opacity": 0,
  3998. "stroke-width": 1
  3999. }
  4000. },
  4001. "mapper": {
  4002. "type": "code",
  4003. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4004. },
  4005. "parser": {
  4006. "type": "code",
  4007. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4008. },
  4009. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4010. "position": {
  4011. "type": "list<double>",
  4012. "value": [
  4013. "0;-30.032308181101257,0%",
  4014. "0;-35.85209847854594,0%"
  4015. ]
  4016. },
  4017. "orientation": {
  4018. "type": "double",
  4019. "value": "0;43.91085783010349"
  4020. },
  4021. "scale": {
  4022. "type": "list<double>",
  4023. "value": [
  4024. 1,
  4025. 1
  4026. ]
  4027. },
  4028. "arrow": "arrowHead",
  4029. "arrowType": "circle-black",
  4030. "$linkDecoratorInfo": {
  4031. "type": "map<string,double>",
  4032. "value": {
  4033. "xratio": -1,
  4034. "yoffset": -5
  4035. }
  4036. }
  4037. },
  4038. "292": {
  4039. "r": {
  4040. "type": "double",
  4041. "value": 5
  4042. },
  4043. "style": {
  4044. "type": "map<string,string>",
  4045. "value": {
  4046. "stroke": "#000000",
  4047. "fill": "#ffffff",
  4048. "opacity": 0,
  4049. "stroke-width": 1
  4050. }
  4051. },
  4052. "mapper": {
  4053. "type": "code",
  4054. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4055. },
  4056. "parser": {
  4057. "type": "code",
  4058. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4059. },
  4060. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4061. "position": {
  4062. "type": "list<double>",
  4063. "value": [
  4064. "0;-30.032308181101257,0%",
  4065. "0;-35.85209847854594,0%"
  4066. ]
  4067. },
  4068. "orientation": {
  4069. "type": "double",
  4070. "value": "0;43.91085783010349"
  4071. },
  4072. "scale": {
  4073. "type": "list<double>",
  4074. "value": [
  4075. 1,
  4076. 1
  4077. ]
  4078. },
  4079. "arrow": "arrowHead",
  4080. "arrowType": "circle-white",
  4081. "$linkDecoratorInfo": {
  4082. "type": "map<string,double>",
  4083. "value": {
  4084. "xratio": -1,
  4085. "yoffset": -5
  4086. }
  4087. }
  4088. },
  4089. "293": {
  4090. "r": {
  4091. "type": "double",
  4092. "value": 10
  4093. },
  4094. "style": {
  4095. "type": "map<string,string>",
  4096. "value": {
  4097. "stroke": "#000000",
  4098. "fill": "#ffffff",
  4099. "opacity": 0,
  4100. "stroke-width": 1
  4101. }
  4102. },
  4103. "mapper": {
  4104. "type": "code",
  4105. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4106. },
  4107. "parser": {
  4108. "type": "code",
  4109. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4110. },
  4111. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4112. "position": {
  4113. "type": "list<double>",
  4114. "value": [
  4115. "0;-26.564616362202628,0%",
  4116. "0;-39.45419695709188,0%"
  4117. ]
  4118. },
  4119. "orientation": {
  4120. "type": "double",
  4121. "value": "0;43.91085783010349"
  4122. },
  4123. "scale": {
  4124. "type": "list<double>",
  4125. "value": [
  4126. 1,
  4127. 1
  4128. ]
  4129. },
  4130. "arrow": "arrowHead",
  4131. "arrowType": "circle-white-large",
  4132. "$linkDecoratorInfo": {
  4133. "type": "map<string,double>",
  4134. "value": {
  4135. "xratio": -1,
  4136. "yoffset": -10
  4137. }
  4138. }
  4139. },
  4140. "294": {
  4141. "segments": {
  4142. "type": "string",
  4143. "value": "m0,0 l-20,8 l20,8"
  4144. },
  4145. "style": {
  4146. "type": "map<string,string>",
  4147. "value": {
  4148. "stroke": "#000000",
  4149. "fill": "#000000",
  4150. "fill-opacity": 0,
  4151. "stroke-width": 1,
  4152. "opacity": 0
  4153. }
  4154. },
  4155. "mapper": {
  4156. "type": "code",
  4157. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4158. },
  4159. "parser": {
  4160. "type": "code",
  4161. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4162. },
  4163. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4164. "position": {
  4165. "type": "list<double>",
  4166. "value": [
  4167. "0;-27.951693089762102,0%",
  4168. "0;-38.01335756567346,0%"
  4169. ]
  4170. },
  4171. "orientation": {
  4172. "type": "double",
  4173. "value": "0;43.91085783010349"
  4174. },
  4175. "scale": {
  4176. "type": "list<double>",
  4177. "value": [
  4178. 1,
  4179. 1
  4180. ]
  4181. },
  4182. "arrow": "arrowHead",
  4183. "arrowType": "arrow-empty-large",
  4184. "$linkDecoratorInfo": {
  4185. "type": "map<string,double>",
  4186. "value": {
  4187. "xratio": -1,
  4188. "yoffset": -8
  4189. }
  4190. }
  4191. },
  4192. "295": {
  4193. "segments": {
  4194. "type": "string",
  4195. "value": "m0,0 l-10,4 l10,4"
  4196. },
  4197. "style": {
  4198. "type": "map<string,string>",
  4199. "value": {
  4200. "stroke": "#000000",
  4201. "fill": "#000000",
  4202. "fill-opacity": 0,
  4203. "stroke-width": 1,
  4204. "opacity": 0
  4205. }
  4206. },
  4207. "mapper": {
  4208. "type": "code",
  4209. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4210. },
  4211. "parser": {
  4212. "type": "code",
  4213. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4214. },
  4215. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4216. "position": {
  4217. "type": "list<double>",
  4218. "value": [
  4219. "0;-30.72584654488105,0%",
  4220. "0;-35.13167878283673,0%"
  4221. ]
  4222. },
  4223. "orientation": {
  4224. "type": "double",
  4225. "value": "0;43.91085783010349"
  4226. },
  4227. "scale": {
  4228. "type": "list<double>",
  4229. "value": [
  4230. 1,
  4231. 1
  4232. ]
  4233. },
  4234. "arrow": "arrowHead",
  4235. "arrowType": "arrow-empty",
  4236. "$linkDecoratorInfo": {
  4237. "type": "map<string,double>",
  4238. "value": {
  4239. "xratio": -1,
  4240. "yoffset": -4
  4241. }
  4242. }
  4243. },
  4244. "296": {
  4245. "segments": {
  4246. "type": "string",
  4247. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4248. },
  4249. "style": {
  4250. "type": "map<string,string>",
  4251. "value": {
  4252. "stroke": "#000000",
  4253. "fill": "#000000",
  4254. "opacity": 0,
  4255. "stroke-width": 1
  4256. }
  4257. },
  4258. "mapper": {
  4259. "type": "code",
  4260. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4261. },
  4262. "parser": {
  4263. "type": "code",
  4264. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4265. },
  4266. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4267. "position": {
  4268. "type": "list<double>",
  4269. "value": [
  4270. "0;-26.564616362202628,0%",
  4271. "0;-39.45419695709188,0%"
  4272. ]
  4273. },
  4274. "orientation": {
  4275. "type": "double",
  4276. "value": "0;43.91085783010349"
  4277. },
  4278. "scale": {
  4279. "type": "list<double>",
  4280. "value": [
  4281. 1,
  4282. 1
  4283. ]
  4284. },
  4285. "arrow": "arrowHead",
  4286. "arrowType": "diamond-black-large",
  4287. "$linkDecoratorInfo": {
  4288. "type": "map<string,double>",
  4289. "value": {
  4290. "xratio": -1,
  4291. "yoffset": -10
  4292. }
  4293. }
  4294. },
  4295. "297": {
  4296. "segments": {
  4297. "type": "string",
  4298. "value": "m0,0 l-10,4 l10,4 z"
  4299. },
  4300. "style": {
  4301. "type": "map<string,string>",
  4302. "value": {
  4303. "stroke": "#000000",
  4304. "fill": "#000000",
  4305. "opacity": 0,
  4306. "stroke-width": 1
  4307. }
  4308. },
  4309. "mapper": {
  4310. "type": "code",
  4311. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4312. },
  4313. "parser": {
  4314. "type": "code",
  4315. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4316. },
  4317. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4318. "position": {
  4319. "type": "list<double>",
  4320. "value": [
  4321. "0;-30.72584654488105,0%",
  4322. "0;-35.13167878283673,0%"
  4323. ]
  4324. },
  4325. "orientation": {
  4326. "type": "double",
  4327. "value": "0;43.91085783010349"
  4328. },
  4329. "scale": {
  4330. "type": "list<double>",
  4331. "value": [
  4332. 1,
  4333. 1
  4334. ]
  4335. },
  4336. "arrow": "arrowHead",
  4337. "arrowType": "triangle-black",
  4338. "$linkDecoratorInfo": {
  4339. "type": "map<string,double>",
  4340. "value": {
  4341. "xratio": -1,
  4342. "yoffset": -4
  4343. }
  4344. }
  4345. },
  4346. "298": {
  4347. "segments": {
  4348. "type": "string",
  4349. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4350. },
  4351. "style": {
  4352. "type": "map<string,string>",
  4353. "value": {
  4354. "stroke": "#000000",
  4355. "fill": "#ffffff",
  4356. "opacity": 0,
  4357. "stroke-width": 1
  4358. }
  4359. },
  4360. "mapper": {
  4361. "type": "code",
  4362. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4363. },
  4364. "parser": {
  4365. "type": "code",
  4366. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4367. },
  4368. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4369. "position": {
  4370. "type": "list<double>",
  4371. "value": [
  4372. "0;-26.564616362202628,0%",
  4373. "0;-39.45419695709188,0%"
  4374. ]
  4375. },
  4376. "orientation": {
  4377. "type": "double",
  4378. "value": "0;43.91085783010349"
  4379. },
  4380. "scale": {
  4381. "type": "list<double>",
  4382. "value": [
  4383. 1,
  4384. 1
  4385. ]
  4386. },
  4387. "arrow": "arrowHead",
  4388. "arrowType": "diamond-white-large",
  4389. "$linkDecoratorInfo": {
  4390. "type": "map<string,double>",
  4391. "value": {
  4392. "xratio": -1,
  4393. "yoffset": -10
  4394. }
  4395. }
  4396. },
  4397. "__pLabelText": {
  4398. "position": {
  4399. "type": "list<double>",
  4400. "value": [
  4401. 0,
  4402. 0
  4403. ]
  4404. },
  4405. "orientation": {
  4406. "type": "double",
  4407. "value": 0
  4408. },
  4409. "scale": {
  4410. "type": "list<double>",
  4411. "value": [
  4412. 1,
  4413. 1
  4414. ]
  4415. },
  4416. "textContent": {
  4417. "type": "string",
  4418. "value": "4"
  4419. },
  4420. "style": {
  4421. "type": "map<string,string>",
  4422. "value": {
  4423. "stroke": "#6000ff",
  4424. "fill": "#6000ff",
  4425. "font-size": "15px",
  4426. "opacity": "1"
  4427. }
  4428. },
  4429. "mapper": {
  4430. "type": "code",
  4431. "value": "({'textContent':getAttr('__pLabel')})"
  4432. },
  4433. "parser": {
  4434. "type": "code",
  4435. "value": "({'__pLabel':getAttr('textContent')})"
  4436. },
  4437. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  4438. }
  4439. },
  4440. "edges": []
  4441. }
  4442. },
  4443. "$asuri": {
  4444. "type": "string",
  4445. "value": "/Formalisms/Pacman/Pacman.pattern/__pPoG/23.instance"
  4446. },
  4447. "$segments": {
  4448. "type": "map<string,list<string>>",
  4449. "value": {
  4450. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/3.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPoGLink/23.instance": "M882,531L915.5,563.25",
  4451. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPoGLink/23.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPacmanIcon/22.instance": "M915.5539160389701,563.301904246471L948.9997677697838,595.4997764350903"
  4452. }
  4453. },
  4454. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPoGLink"
  4455. },
  4456. "24": {
  4457. "typename": {
  4458. "type": "string",
  4459. "value": "PacmanIcon"
  4460. },
  4461. "position": {
  4462. "type": "list<double>",
  4463. "value": [
  4464. 1336,
  4465. 499
  4466. ]
  4467. },
  4468. "orientation": {
  4469. "type": "double",
  4470. "value": 0
  4471. },
  4472. "scale": {
  4473. "type": "list<double>",
  4474. "value": [
  4475. 1,
  4476. 1
  4477. ]
  4478. },
  4479. "mapper": {
  4480. "type": "code",
  4481. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4482. },
  4483. "parser": {
  4484. "type": "code",
  4485. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4486. },
  4487. "$contents": {
  4488. "type": "map<string,*>",
  4489. "value": {
  4490. "nodes": {
  4491. "2": {
  4492. "src": {
  4493. "type": "string",
  4494. "value": "http://upload.wikimedia.org/wikipedia/commons/1/19/Pac-Man.svg"
  4495. },
  4496. "width": {
  4497. "type": "double",
  4498. "value": 48
  4499. },
  4500. "height": {
  4501. "type": "double",
  4502. "value": 48
  4503. },
  4504. "style": {
  4505. "type": "map<string,string>",
  4506. "value": {
  4507. "stroke": "#000000",
  4508. "stroke-dasharray": "",
  4509. "fill": "#ffffff",
  4510. "opacity": 1,
  4511. "font-size": "20px",
  4512. "stroke-width": 1,
  4513. "arrow-start": "none",
  4514. "arrow-end": "none"
  4515. }
  4516. },
  4517. "mapper": {
  4518. "type": "code",
  4519. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4520. },
  4521. "parser": {
  4522. "type": "code",
  4523. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4524. },
  4525. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  4526. "position": {
  4527. "type": "list<double>",
  4528. "value": [
  4529. 2,
  4530. 3
  4531. ]
  4532. },
  4533. "orientation": {
  4534. "type": "double",
  4535. "value": 0
  4536. },
  4537. "scale": {
  4538. "type": "list<double>",
  4539. "value": [
  4540. 1,
  4541. 1
  4542. ]
  4543. }
  4544. },
  4545. "__pLabelText": {
  4546. "position": {
  4547. "type": "list<double>",
  4548. "value": [
  4549. 0,
  4550. 0
  4551. ]
  4552. },
  4553. "orientation": {
  4554. "type": "double",
  4555. "value": 0
  4556. },
  4557. "scale": {
  4558. "type": "list<double>",
  4559. "value": [
  4560. 1,
  4561. 1
  4562. ]
  4563. },
  4564. "textContent": {
  4565. "type": "string",
  4566. "value": "5"
  4567. },
  4568. "style": {
  4569. "type": "map<string,string>",
  4570. "value": {
  4571. "stroke": "#6000ff",
  4572. "fill": "#6000ff",
  4573. "font-size": "15px",
  4574. "opacity": "1"
  4575. }
  4576. },
  4577. "mapper": {
  4578. "type": "code",
  4579. "value": "({'textContent':getAttr('__pLabel')})"
  4580. },
  4581. "parser": {
  4582. "type": "code",
  4583. "value": "({'__pLabel':getAttr('textContent')})"
  4584. },
  4585. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  4586. }
  4587. },
  4588. "edges": []
  4589. }
  4590. },
  4591. "$asuri": {
  4592. "type": "string",
  4593. "value": "/Formalisms/Pacman/Pacman.pattern/__pPacman/24.instance"
  4594. },
  4595. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPacmanIcon"
  4596. },
  4597. "25": {
  4598. "link-style": {
  4599. "type": "map<string,string>",
  4600. "value": {
  4601. "stroke": "#000000",
  4602. "stroke-dasharray": "",
  4603. "stroke-opacity": 1,
  4604. "stroke-width": 0
  4605. }
  4606. },
  4607. "arrowHead": {
  4608. "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)",
  4609. "value": "custom"
  4610. },
  4611. "arrowTail": {
  4612. "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)",
  4613. "value": "arrow-black"
  4614. },
  4615. "typename": {
  4616. "type": "string",
  4617. "value": "PoGLink"
  4618. },
  4619. "position": {
  4620. "type": "list<double>",
  4621. "value": [
  4622. 1329.129729413855,
  4623. 505.8260133284307
  4624. ]
  4625. },
  4626. "orientation": {
  4627. "type": "double",
  4628. "value": 0
  4629. },
  4630. "scale": {
  4631. "type": "list<double>",
  4632. "value": [
  4633. 1,
  4634. 1
  4635. ]
  4636. },
  4637. "mapper": {
  4638. "type": "code",
  4639. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4640. },
  4641. "parser": {
  4642. "type": "code",
  4643. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4644. },
  4645. "$contents": {
  4646. "type": "map<string,*>",
  4647. "value": {
  4648. "nodes": {
  4649. "267": {
  4650. "segments": {
  4651. "type": "string",
  4652. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  4653. },
  4654. "style": {
  4655. "type": "map<string,string>",
  4656. "value": {
  4657. "stroke": "#000000",
  4658. "fill": "#000000",
  4659. "opacity": 0,
  4660. "stroke-width": 1
  4661. }
  4662. },
  4663. "mapper": {
  4664. "type": "code",
  4665. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4666. },
  4667. "parser": {
  4668. "type": "code",
  4669. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4670. },
  4671. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4672. "position": {
  4673. "type": "list<double>",
  4674. "value": [
  4675. "0;33.89210628185765,86.27993603111817%",
  4676. "0;15.222583973479118,50.554650018234305%"
  4677. ]
  4678. },
  4679. "orientation": {
  4680. "type": "double",
  4681. "value": "0;30.367636984149037"
  4682. },
  4683. "scale": {
  4684. "type": "list<double>",
  4685. "value": [
  4686. 1,
  4687. 1
  4688. ]
  4689. },
  4690. "arrow": "arrowTail",
  4691. "arrowType": "arrow-black",
  4692. "$linkDecoratorInfo": {
  4693. "type": "map<string,double>",
  4694. "value": {
  4695. "xratio": 1,
  4696. "yoffset": -4
  4697. }
  4698. }
  4699. },
  4700. "268": {
  4701. "segments": {
  4702. "type": "string",
  4703. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4704. },
  4705. "style": {
  4706. "type": "map<string,string>",
  4707. "value": {
  4708. "stroke": "#000000",
  4709. "fill": "#000000",
  4710. "opacity": 0,
  4711. "stroke-width": 1
  4712. }
  4713. },
  4714. "mapper": {
  4715. "type": "code",
  4716. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4717. },
  4718. "parser": {
  4719. "type": "code",
  4720. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4721. },
  4722. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4723. "position": {
  4724. "type": "list<double>",
  4725. "value": [
  4726. "0;36.925385282951765,86.27993603111817%",
  4727. "0;10.045787811612058,50.554650018234305%"
  4728. ]
  4729. },
  4730. "orientation": {
  4731. "type": "double",
  4732. "value": "0;30.367636984149037"
  4733. },
  4734. "scale": {
  4735. "type": "list<double>",
  4736. "value": [
  4737. 1,
  4738. 1
  4739. ]
  4740. },
  4741. "arrow": "arrowTail",
  4742. "arrowType": "diamond-black-large",
  4743. "$linkDecoratorInfo": {
  4744. "type": "map<string,double>",
  4745. "value": {
  4746. "xratio": 1,
  4747. "yoffset": -10
  4748. }
  4749. }
  4750. },
  4751. "269": {
  4752. "r": {
  4753. "type": "double",
  4754. "value": 10
  4755. },
  4756. "style": {
  4757. "type": "map<string,string>",
  4758. "value": {
  4759. "stroke": "#000000",
  4760. "fill": "#000000",
  4761. "opacity": 0,
  4762. "stroke-width": 1
  4763. }
  4764. },
  4765. "mapper": {
  4766. "type": "code",
  4767. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4768. },
  4769. "parser": {
  4770. "type": "code",
  4771. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4772. },
  4773. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4774. "position": {
  4775. "type": "list<double>",
  4776. "value": [
  4777. "0;36.925385282951765,86.27993603111817%",
  4778. "0;10.045787811612058,50.554650018234305%"
  4779. ]
  4780. },
  4781. "orientation": {
  4782. "type": "double",
  4783. "value": "0;30.367636984149037"
  4784. },
  4785. "scale": {
  4786. "type": "list<double>",
  4787. "value": [
  4788. 1,
  4789. 1
  4790. ]
  4791. },
  4792. "arrow": "arrowTail",
  4793. "arrowType": "circle-black-large",
  4794. "$linkDecoratorInfo": {
  4795. "type": "map<string,double>",
  4796. "value": {
  4797. "xratio": 1,
  4798. "yoffset": -10
  4799. }
  4800. }
  4801. },
  4802. "270": {
  4803. "r": {
  4804. "type": "double",
  4805. "value": 10
  4806. },
  4807. "style": {
  4808. "type": "map<string,string>",
  4809. "value": {
  4810. "stroke": "#000000",
  4811. "fill": "#ffffff",
  4812. "opacity": 0,
  4813. "stroke-width": 1
  4814. }
  4815. },
  4816. "mapper": {
  4817. "type": "code",
  4818. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4819. },
  4820. "parser": {
  4821. "type": "code",
  4822. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4823. },
  4824. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4825. "position": {
  4826. "type": "list<double>",
  4827. "value": [
  4828. "0;36.925385282951765,86.27993603111817%",
  4829. "0;10.045787811612058,50.554650018234305%"
  4830. ]
  4831. },
  4832. "orientation": {
  4833. "type": "double",
  4834. "value": "0;30.367636984149037"
  4835. },
  4836. "scale": {
  4837. "type": "list<double>",
  4838. "value": [
  4839. 1,
  4840. 1
  4841. ]
  4842. },
  4843. "arrow": "arrowTail",
  4844. "arrowType": "circle-white-large",
  4845. "$linkDecoratorInfo": {
  4846. "type": "map<string,double>",
  4847. "value": {
  4848. "xratio": 1,
  4849. "yoffset": -10
  4850. }
  4851. }
  4852. },
  4853. "271": {
  4854. "r": {
  4855. "type": "double",
  4856. "value": 5
  4857. },
  4858. "style": {
  4859. "type": "map<string,string>",
  4860. "value": {
  4861. "stroke": "#000000",
  4862. "fill": "#000000",
  4863. "opacity": 0,
  4864. "stroke-width": 1
  4865. }
  4866. },
  4867. "mapper": {
  4868. "type": "code",
  4869. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4870. },
  4871. "parser": {
  4872. "type": "code",
  4873. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4874. },
  4875. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4876. "position": {
  4877. "type": "list<double>",
  4878. "value": [
  4879. "0;34.39765278204004,86.27993603111817%",
  4880. "0;14.35978461316796,50.554650018234305%"
  4881. ]
  4882. },
  4883. "orientation": {
  4884. "type": "double",
  4885. "value": "0;30.367636984149037"
  4886. },
  4887. "scale": {
  4888. "type": "list<double>",
  4889. "value": [
  4890. 1,
  4891. 1
  4892. ]
  4893. },
  4894. "arrow": "arrowTail",
  4895. "arrowType": "circle-black",
  4896. "$linkDecoratorInfo": {
  4897. "type": "map<string,double>",
  4898. "value": {
  4899. "xratio": 1,
  4900. "yoffset": -5
  4901. }
  4902. }
  4903. },
  4904. "272": {
  4905. "segments": {
  4906. "type": "string",
  4907. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4908. },
  4909. "style": {
  4910. "type": "map<string,string>",
  4911. "value": {
  4912. "stroke": "#000000",
  4913. "fill": "#000000",
  4914. "opacity": 0,
  4915. "stroke-width": 1
  4916. }
  4917. },
  4918. "mapper": {
  4919. "type": "code",
  4920. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4921. },
  4922. "parser": {
  4923. "type": "code",
  4924. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4925. },
  4926. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4927. "position": {
  4928. "type": "list<double>",
  4929. "value": [
  4930. "0;34.39765278204004,86.27993603111817%",
  4931. "0;14.35978461316796,50.554650018234305%"
  4932. ]
  4933. },
  4934. "orientation": {
  4935. "type": "double",
  4936. "value": "0;30.367636984149037"
  4937. },
  4938. "scale": {
  4939. "type": "list<double>",
  4940. "value": [
  4941. 1,
  4942. 1
  4943. ]
  4944. },
  4945. "arrow": "arrowTail",
  4946. "arrowType": "diamond-black",
  4947. "$linkDecoratorInfo": {
  4948. "type": "map<string,double>",
  4949. "value": {
  4950. "xratio": 1,
  4951. "yoffset": -5
  4952. }
  4953. }
  4954. },
  4955. "273": {
  4956. "segments": {
  4957. "type": "string",
  4958. "value": "m0,0 l20,10 l-20,10 z"
  4959. },
  4960. "style": {
  4961. "type": "map<string,string>",
  4962. "value": {
  4963. "stroke": "#000000",
  4964. "fill": "#000000",
  4965. "opacity": 0,
  4966. "stroke-width": 1
  4967. }
  4968. },
  4969. "mapper": {
  4970. "type": "code",
  4971. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4972. },
  4973. "parser": {
  4974. "type": "code",
  4975. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4976. },
  4977. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4978. "position": {
  4979. "type": "list<double>",
  4980. "value": [
  4981. "0;36.925385282951765,86.27993603111817%",
  4982. "0;10.045787811612058,50.554650018234305%"
  4983. ]
  4984. },
  4985. "orientation": {
  4986. "type": "double",
  4987. "value": "0;30.367636984149037"
  4988. },
  4989. "scale": {
  4990. "type": "list<double>",
  4991. "value": [
  4992. 1,
  4993. 1
  4994. ]
  4995. },
  4996. "arrow": "arrowTail",
  4997. "arrowType": "triangle-black-large",
  4998. "$linkDecoratorInfo": {
  4999. "type": "map<string,double>",
  5000. "value": {
  5001. "xratio": 1,
  5002. "yoffset": -10
  5003. }
  5004. }
  5005. },
  5006. "274": {
  5007. "segments": {
  5008. "type": "string",
  5009. "value": "m0,0 l10,4 l-10,4 z"
  5010. },
  5011. "style": {
  5012. "type": "map<string,string>",
  5013. "value": {
  5014. "stroke": "#000000",
  5015. "fill": "#000000",
  5016. "opacity": 0,
  5017. "stroke-width": 1
  5018. }
  5019. },
  5020. "mapper": {
  5021. "type": "code",
  5022. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5023. },
  5024. "parser": {
  5025. "type": "code",
  5026. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5027. },
  5028. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5029. "position": {
  5030. "type": "list<double>",
  5031. "value": [
  5032. "0;33.89210628185765,86.27993603111817%",
  5033. "0;15.222583973479118,50.554650018234305%"
  5034. ]
  5035. },
  5036. "orientation": {
  5037. "type": "double",
  5038. "value": "0;30.367636984149037"
  5039. },
  5040. "scale": {
  5041. "type": "list<double>",
  5042. "value": [
  5043. 1,
  5044. 1
  5045. ]
  5046. },
  5047. "arrow": "arrowTail",
  5048. "arrowType": "triangle-black",
  5049. "$linkDecoratorInfo": {
  5050. "type": "map<string,double>",
  5051. "value": {
  5052. "xratio": 1,
  5053. "yoffset": -4
  5054. }
  5055. }
  5056. },
  5057. "275": {
  5058. "segments": {
  5059. "type": "string",
  5060. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  5061. },
  5062. "style": {
  5063. "type": "map<string,string>",
  5064. "value": {
  5065. "stroke": "#000000",
  5066. "fill": "#000000",
  5067. "opacity": 0,
  5068. "stroke-width": 1
  5069. }
  5070. },
  5071. "mapper": {
  5072. "type": "code",
  5073. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5074. },
  5075. "parser": {
  5076. "type": "code",
  5077. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5078. },
  5079. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5080. "position": {
  5081. "type": "list<double>",
  5082. "value": [
  5083. "0;35.914292282586985,86.27993603111817%",
  5084. "0;11.771386532234374,50.554650018234305%"
  5085. ]
  5086. },
  5087. "orientation": {
  5088. "type": "double",
  5089. "value": "0;30.367636984149037"
  5090. },
  5091. "scale": {
  5092. "type": "list<double>",
  5093. "value": [
  5094. 1,
  5095. 1
  5096. ]
  5097. },
  5098. "arrow": "arrowTail",
  5099. "arrowType": "arrow-black-large",
  5100. "$linkDecoratorInfo": {
  5101. "type": "map<string,double>",
  5102. "value": {
  5103. "xratio": 1,
  5104. "yoffset": -8
  5105. }
  5106. }
  5107. },
  5108. "276": {
  5109. "segments": {
  5110. "type": "string",
  5111. "value": "m0,0 l20,10 l-20,10 z"
  5112. },
  5113. "style": {
  5114. "type": "map<string,string>",
  5115. "value": {
  5116. "stroke": "#000000",
  5117. "fill": "#ffffff",
  5118. "opacity": 0,
  5119. "stroke-width": 1
  5120. }
  5121. },
  5122. "mapper": {
  5123. "type": "code",
  5124. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5125. },
  5126. "parser": {
  5127. "type": "code",
  5128. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5129. },
  5130. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5131. "position": {
  5132. "type": "list<double>",
  5133. "value": [
  5134. "0;36.925385282951765,86.27993603111817%",
  5135. "0;10.045787811612058,50.554650018234305%"
  5136. ]
  5137. },
  5138. "orientation": {
  5139. "type": "double",
  5140. "value": "0;30.367636984149037"
  5141. },
  5142. "scale": {
  5143. "type": "list<double>",
  5144. "value": [
  5145. 1,
  5146. 1
  5147. ]
  5148. },
  5149. "arrow": "arrowTail",
  5150. "arrowType": "triangle-white-large",
  5151. "$linkDecoratorInfo": {
  5152. "type": "map<string,double>",
  5153. "value": {
  5154. "xratio": 1,
  5155. "yoffset": -10
  5156. }
  5157. }
  5158. },
  5159. "277": {
  5160. "segments": {
  5161. "type": "string",
  5162. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5163. },
  5164. "style": {
  5165. "type": "map<string,string>",
  5166. "value": {
  5167. "stroke": "#000000",
  5168. "fill": "#ffffff",
  5169. "opacity": 0,
  5170. "stroke-width": 1
  5171. }
  5172. },
  5173. "mapper": {
  5174. "type": "code",
  5175. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5176. },
  5177. "parser": {
  5178. "type": "code",
  5179. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5180. },
  5181. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5182. "position": {
  5183. "type": "list<double>",
  5184. "value": [
  5185. "0;34.39765278204004,86.27993603111817%",
  5186. "0;14.35978461316796,50.554650018234305%"
  5187. ]
  5188. },
  5189. "orientation": {
  5190. "type": "double",
  5191. "value": "0;30.367636984149037"
  5192. },
  5193. "scale": {
  5194. "type": "list<double>",
  5195. "value": [
  5196. 1,
  5197. 1
  5198. ]
  5199. },
  5200. "arrow": "arrowTail",
  5201. "arrowType": "diamond-white",
  5202. "$linkDecoratorInfo": {
  5203. "type": "map<string,double>",
  5204. "value": {
  5205. "xratio": 1,
  5206. "yoffset": -5
  5207. }
  5208. }
  5209. },
  5210. "278": {
  5211. "segments": {
  5212. "type": "string",
  5213. "value": "m0,0 l20,8 l-20,8"
  5214. },
  5215. "style": {
  5216. "type": "map<string,string>",
  5217. "value": {
  5218. "stroke": "#000000",
  5219. "fill": "#000000",
  5220. "fill-opacity": 0,
  5221. "stroke-width": 1,
  5222. "opacity": 0
  5223. }
  5224. },
  5225. "mapper": {
  5226. "type": "code",
  5227. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5228. },
  5229. "parser": {
  5230. "type": "code",
  5231. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5232. },
  5233. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5234. "position": {
  5235. "type": "list<double>",
  5236. "value": [
  5237. "0;35.914292282586985,86.27993603111817%",
  5238. "0;11.771386532234374,50.554650018234305%"
  5239. ]
  5240. },
  5241. "orientation": {
  5242. "type": "double",
  5243. "value": "0;30.367636984149037"
  5244. },
  5245. "scale": {
  5246. "type": "list<double>",
  5247. "value": [
  5248. 1,
  5249. 1
  5250. ]
  5251. },
  5252. "arrow": "arrowTail",
  5253. "arrowType": "arrow-empty-large",
  5254. "$linkDecoratorInfo": {
  5255. "type": "map<string,double>",
  5256. "value": {
  5257. "xratio": 1,
  5258. "yoffset": -8
  5259. }
  5260. }
  5261. },
  5262. "279": {
  5263. "r": {
  5264. "type": "double",
  5265. "value": 5
  5266. },
  5267. "style": {
  5268. "type": "map<string,string>",
  5269. "value": {
  5270. "stroke": "#000000",
  5271. "fill": "#ffffff",
  5272. "opacity": 0,
  5273. "stroke-width": 1
  5274. }
  5275. },
  5276. "mapper": {
  5277. "type": "code",
  5278. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5279. },
  5280. "parser": {
  5281. "type": "code",
  5282. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5283. },
  5284. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5285. "position": {
  5286. "type": "list<double>",
  5287. "value": [
  5288. "0;34.39765278204004,86.27993603111817%",
  5289. "0;14.35978461316796,50.554650018234305%"
  5290. ]
  5291. },
  5292. "orientation": {
  5293. "type": "double",
  5294. "value": "0;30.367636984149037"
  5295. },
  5296. "scale": {
  5297. "type": "list<double>",
  5298. "value": [
  5299. 1,
  5300. 1
  5301. ]
  5302. },
  5303. "arrow": "arrowTail",
  5304. "arrowType": "circle-white",
  5305. "$linkDecoratorInfo": {
  5306. "type": "map<string,double>",
  5307. "value": {
  5308. "xratio": 1,
  5309. "yoffset": -5
  5310. }
  5311. }
  5312. },
  5313. "280": {
  5314. "segments": {
  5315. "type": "string",
  5316. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5317. },
  5318. "style": {
  5319. "type": "map<string,string>",
  5320. "value": {
  5321. "stroke": "#000000",
  5322. "fill": "#ffffff",
  5323. "opacity": 0,
  5324. "stroke-width": 1
  5325. }
  5326. },
  5327. "mapper": {
  5328. "type": "code",
  5329. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5330. },
  5331. "parser": {
  5332. "type": "code",
  5333. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5334. },
  5335. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5336. "position": {
  5337. "type": "list<double>",
  5338. "value": [
  5339. "0;36.925385282951765,86.27993603111817%",
  5340. "0;10.045787811612058,50.554650018234305%"
  5341. ]
  5342. },
  5343. "orientation": {
  5344. "type": "double",
  5345. "value": "0;30.367636984149037"
  5346. },
  5347. "scale": {
  5348. "type": "list<double>",
  5349. "value": [
  5350. 1,
  5351. 1
  5352. ]
  5353. },
  5354. "arrow": "arrowTail",
  5355. "arrowType": "diamond-white-large",
  5356. "$linkDecoratorInfo": {
  5357. "type": "map<string,double>",
  5358. "value": {
  5359. "xratio": 1,
  5360. "yoffset": -10
  5361. }
  5362. }
  5363. },
  5364. "281": {
  5365. "segments": {
  5366. "type": "string",
  5367. "value": "m0,0 l10,4 l-10,4"
  5368. },
  5369. "style": {
  5370. "type": "map<string,string>",
  5371. "value": {
  5372. "stroke": "#000000",
  5373. "fill": "#000000",
  5374. "fill-opacity": 0,
  5375. "stroke-width": 1,
  5376. "opacity": 0
  5377. }
  5378. },
  5379. "mapper": {
  5380. "type": "code",
  5381. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5382. },
  5383. "parser": {
  5384. "type": "code",
  5385. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5386. },
  5387. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5388. "position": {
  5389. "type": "list<double>",
  5390. "value": [
  5391. "0;33.89210628185765,86.27993603111817%",
  5392. "0;15.222583973479118,50.554650018234305%"
  5393. ]
  5394. },
  5395. "orientation": {
  5396. "type": "double",
  5397. "value": "0;30.367636984149037"
  5398. },
  5399. "scale": {
  5400. "type": "list<double>",
  5401. "value": [
  5402. 1,
  5403. 1
  5404. ]
  5405. },
  5406. "arrow": "arrowTail",
  5407. "arrowType": "arrow-empty",
  5408. "$linkDecoratorInfo": {
  5409. "type": "map<string,double>",
  5410. "value": {
  5411. "xratio": 1,
  5412. "yoffset": -4
  5413. }
  5414. }
  5415. },
  5416. "282": {
  5417. "segments": {
  5418. "type": "string",
  5419. "value": "m0,0 l10,5 l-10,5 z"
  5420. },
  5421. "style": {
  5422. "type": "map<string,string>",
  5423. "value": {
  5424. "stroke": "#000000",
  5425. "fill": "#ffffff",
  5426. "opacity": 0,
  5427. "stroke-width": 1
  5428. }
  5429. },
  5430. "mapper": {
  5431. "type": "code",
  5432. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5433. },
  5434. "parser": {
  5435. "type": "code",
  5436. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5437. },
  5438. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5439. "position": {
  5440. "type": "list<double>",
  5441. "value": [
  5442. "0;34.39765278204004,86.27993603111817%",
  5443. "0;14.35978461316796,50.554650018234305%"
  5444. ]
  5445. },
  5446. "orientation": {
  5447. "type": "double",
  5448. "value": "0;30.367636984149037"
  5449. },
  5450. "scale": {
  5451. "type": "list<double>",
  5452. "value": [
  5453. 1,
  5454. 1
  5455. ]
  5456. },
  5457. "arrow": "arrowTail",
  5458. "arrowType": "triangle-white",
  5459. "$linkDecoratorInfo": {
  5460. "type": "map<string,double>",
  5461. "value": {
  5462. "xratio": 1,
  5463. "yoffset": -5
  5464. }
  5465. }
  5466. },
  5467. "283": {
  5468. "segments": {
  5469. "type": "string",
  5470. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5471. },
  5472. "style": {
  5473. "type": "map<string,string>",
  5474. "value": {
  5475. "stroke": "#000000",
  5476. "fill": "#ffffff",
  5477. "opacity": 0,
  5478. "stroke-width": 1
  5479. }
  5480. },
  5481. "mapper": {
  5482. "type": "code",
  5483. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5484. },
  5485. "parser": {
  5486. "type": "code",
  5487. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5488. },
  5489. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5490. "position": {
  5491. "type": "list<double>",
  5492. "value": [
  5493. "0;-29.601996912943378,0%",
  5494. "0;-23.14001012998665,0%"
  5495. ]
  5496. },
  5497. "orientation": {
  5498. "type": "double",
  5499. "value": "0;30.36763698414832"
  5500. },
  5501. "scale": {
  5502. "type": "list<double>",
  5503. "value": [
  5504. 1,
  5505. 1
  5506. ]
  5507. },
  5508. "arrow": "arrowHead",
  5509. "arrowType": "diamond-white",
  5510. "$linkDecoratorInfo": {
  5511. "type": "map<string,double>",
  5512. "value": {
  5513. "xratio": -1,
  5514. "yoffset": -5
  5515. }
  5516. }
  5517. },
  5518. "284": {
  5519. "segments": {
  5520. "type": "string",
  5521. "value": "m0,0 l-10,5 l10,5 z"
  5522. },
  5523. "style": {
  5524. "type": "map<string,string>",
  5525. "value": {
  5526. "stroke": "#000000",
  5527. "fill": "#ffffff",
  5528. "opacity": 0,
  5529. "stroke-width": 1
  5530. }
  5531. },
  5532. "mapper": {
  5533. "type": "code",
  5534. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5535. },
  5536. "parser": {
  5537. "type": "code",
  5538. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5539. },
  5540. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5541. "position": {
  5542. "type": "list<double>",
  5543. "value": [
  5544. "0;-29.601996912943378,0%",
  5545. "0;-23.14001012998665,0%"
  5546. ]
  5547. },
  5548. "orientation": {
  5549. "type": "double",
  5550. "value": "0;30.36763698414832"
  5551. },
  5552. "scale": {
  5553. "type": "list<double>",
  5554. "value": [
  5555. 1,
  5556. 1
  5557. ]
  5558. },
  5559. "arrow": "arrowHead",
  5560. "arrowType": "triangle-white",
  5561. "$linkDecoratorInfo": {
  5562. "type": "map<string,double>",
  5563. "value": {
  5564. "xratio": -1,
  5565. "yoffset": -5
  5566. }
  5567. }
  5568. },
  5569. "285": {
  5570. "segments": {
  5571. "type": "string",
  5572. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5573. },
  5574. "style": {
  5575. "type": "map<string,string>",
  5576. "value": {
  5577. "stroke": "#000000",
  5578. "fill": "#000000",
  5579. "opacity": 0,
  5580. "stroke-width": 1
  5581. }
  5582. },
  5583. "mapper": {
  5584. "type": "code",
  5585. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5586. },
  5587. "parser": {
  5588. "type": "code",
  5589. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5590. },
  5591. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5592. "position": {
  5593. "type": "list<double>",
  5594. "value": [
  5595. "0;-29.601996912943378,0%",
  5596. "0;-23.14001012998665,0%"
  5597. ]
  5598. },
  5599. "orientation": {
  5600. "type": "double",
  5601. "value": "0;30.36763698414832"
  5602. },
  5603. "scale": {
  5604. "type": "list<double>",
  5605. "value": [
  5606. 1,
  5607. 1
  5608. ]
  5609. },
  5610. "arrow": "arrowHead",
  5611. "arrowType": "diamond-black",
  5612. "$linkDecoratorInfo": {
  5613. "type": "map<string,double>",
  5614. "value": {
  5615. "xratio": -1,
  5616. "yoffset": -5
  5617. }
  5618. }
  5619. },
  5620. "286": {
  5621. "r": {
  5622. "type": "double",
  5623. "value": 10
  5624. },
  5625. "style": {
  5626. "type": "map<string,string>",
  5627. "value": {
  5628. "stroke": "#000000",
  5629. "fill": "#000000",
  5630. "opacity": 0,
  5631. "stroke-width": 1
  5632. }
  5633. },
  5634. "mapper": {
  5635. "type": "code",
  5636. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5637. },
  5638. "parser": {
  5639. "type": "code",
  5640. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5641. },
  5642. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5643. "position": {
  5644. "type": "list<double>",
  5645. "value": [
  5646. "0;-27.07426441203188,0%",
  5647. "0;-27.454006931542608,0%"
  5648. ]
  5649. },
  5650. "orientation": {
  5651. "type": "double",
  5652. "value": "0;30.36763698414832"
  5653. },
  5654. "scale": {
  5655. "type": "list<double>",
  5656. "value": [
  5657. 1,
  5658. 1
  5659. ]
  5660. },
  5661. "arrow": "arrowHead",
  5662. "arrowType": "circle-black-large",
  5663. "$linkDecoratorInfo": {
  5664. "type": "map<string,double>",
  5665. "value": {
  5666. "xratio": -1,
  5667. "yoffset": -10
  5668. }
  5669. }
  5670. },
  5671. "287": {
  5672. "segments": {
  5673. "type": "string",
  5674. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  5675. },
  5676. "style": {
  5677. "type": "map<string,string>",
  5678. "value": {
  5679. "stroke": "#000000",
  5680. "fill": "#000000",
  5681. "opacity": 0,
  5682. "stroke-width": 1
  5683. }
  5684. },
  5685. "mapper": {
  5686. "type": "code",
  5687. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5688. },
  5689. "parser": {
  5690. "type": "code",
  5691. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5692. },
  5693. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5694. "position": {
  5695. "type": "list<double>",
  5696. "value": [
  5697. "0;-28.085357412396434,0%",
  5698. "0;-25.72840821092018,0%"
  5699. ]
  5700. },
  5701. "orientation": {
  5702. "type": "double",
  5703. "value": "0;30.36763698414832"
  5704. },
  5705. "scale": {
  5706. "type": "list<double>",
  5707. "value": [
  5708. 1,
  5709. 1
  5710. ]
  5711. },
  5712. "arrow": "arrowHead",
  5713. "arrowType": "arrow-black-large",
  5714. "$linkDecoratorInfo": {
  5715. "type": "map<string,double>",
  5716. "value": {
  5717. "xratio": -1,
  5718. "yoffset": -8
  5719. }
  5720. }
  5721. },
  5722. "288": {
  5723. "segments": {
  5724. "type": "string",
  5725. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  5726. },
  5727. "style": {
  5728. "type": "map<string,string>",
  5729. "value": {
  5730. "stroke": "#000000",
  5731. "fill": "#000000",
  5732. "opacity": 0,
  5733. "stroke-width": 1
  5734. }
  5735. },
  5736. "mapper": {
  5737. "type": "code",
  5738. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5739. },
  5740. "parser": {
  5741. "type": "code",
  5742. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5743. },
  5744. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5745. "position": {
  5746. "type": "list<double>",
  5747. "value": [
  5748. "0;-30.107543413125768,0%",
  5749. "0;-22.277210769675435,0%"
  5750. ]
  5751. },
  5752. "orientation": {
  5753. "type": "double",
  5754. "value": "0;30.36763698414832"
  5755. },
  5756. "scale": {
  5757. "type": "list<double>",
  5758. "value": [
  5759. 1,
  5760. 1
  5761. ]
  5762. },
  5763. "arrow": "arrowHead",
  5764. "arrowType": "arrow-black",
  5765. "$linkDecoratorInfo": {
  5766. "type": "map<string,double>",
  5767. "value": {
  5768. "xratio": -1,
  5769. "yoffset": -4
  5770. }
  5771. }
  5772. },
  5773. "289": {
  5774. "segments": {
  5775. "type": "string",
  5776. "value": "m0,0 l-20,10 l20,10 z"
  5777. },
  5778. "style": {
  5779. "type": "map<string,string>",
  5780. "value": {
  5781. "stroke": "#000000",
  5782. "fill": "#ffffff",
  5783. "opacity": 0,
  5784. "stroke-width": 1
  5785. }
  5786. },
  5787. "mapper": {
  5788. "type": "code",
  5789. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5790. },
  5791. "parser": {
  5792. "type": "code",
  5793. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5794. },
  5795. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5796. "position": {
  5797. "type": "list<double>",
  5798. "value": [
  5799. "0;-27.07426441203188,0%",
  5800. "0;-27.454006931542608,0%"
  5801. ]
  5802. },
  5803. "orientation": {
  5804. "type": "double",
  5805. "value": "0;30.36763698414832"
  5806. },
  5807. "scale": {
  5808. "type": "list<double>",
  5809. "value": [
  5810. 1,
  5811. 1
  5812. ]
  5813. },
  5814. "arrow": "arrowHead",
  5815. "arrowType": "triangle-white-large",
  5816. "$linkDecoratorInfo": {
  5817. "type": "map<string,double>",
  5818. "value": {
  5819. "xratio": -1,
  5820. "yoffset": -10
  5821. }
  5822. }
  5823. },
  5824. "290": {
  5825. "segments": {
  5826. "type": "string",
  5827. "value": "m0,0 l-20,10 l20,10 z"
  5828. },
  5829. "style": {
  5830. "type": "map<string,string>",
  5831. "value": {
  5832. "stroke": "#000000",
  5833. "fill": "#000000",
  5834. "opacity": 0,
  5835. "stroke-width": 1
  5836. }
  5837. },
  5838. "mapper": {
  5839. "type": "code",
  5840. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5841. },
  5842. "parser": {
  5843. "type": "code",
  5844. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5845. },
  5846. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5847. "position": {
  5848. "type": "list<double>",
  5849. "value": [
  5850. "0;-27.07426441203188,0%",
  5851. "0;-27.454006931542608,0%"
  5852. ]
  5853. },
  5854. "orientation": {
  5855. "type": "double",
  5856. "value": "0;30.36763698414832"
  5857. },
  5858. "scale": {
  5859. "type": "list<double>",
  5860. "value": [
  5861. 1,
  5862. 1
  5863. ]
  5864. },
  5865. "arrow": "arrowHead",
  5866. "arrowType": "triangle-black-large",
  5867. "$linkDecoratorInfo": {
  5868. "type": "map<string,double>",
  5869. "value": {
  5870. "xratio": -1,
  5871. "yoffset": -10
  5872. }
  5873. }
  5874. },
  5875. "291": {
  5876. "r": {
  5877. "type": "double",
  5878. "value": 5
  5879. },
  5880. "style": {
  5881. "type": "map<string,string>",
  5882. "value": {
  5883. "stroke": "#000000",
  5884. "fill": "#000000",
  5885. "opacity": 0,
  5886. "stroke-width": 1
  5887. }
  5888. },
  5889. "mapper": {
  5890. "type": "code",
  5891. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5892. },
  5893. "parser": {
  5894. "type": "code",
  5895. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5896. },
  5897. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5898. "position": {
  5899. "type": "list<double>",
  5900. "value": [
  5901. "0;-29.601996912943378,0%",
  5902. "0;-23.14001012998665,0%"
  5903. ]
  5904. },
  5905. "orientation": {
  5906. "type": "double",
  5907. "value": "0;30.36763698414832"
  5908. },
  5909. "scale": {
  5910. "type": "list<double>",
  5911. "value": [
  5912. 1,
  5913. 1
  5914. ]
  5915. },
  5916. "arrow": "arrowHead",
  5917. "arrowType": "circle-black",
  5918. "$linkDecoratorInfo": {
  5919. "type": "map<string,double>",
  5920. "value": {
  5921. "xratio": -1,
  5922. "yoffset": -5
  5923. }
  5924. }
  5925. },
  5926. "292": {
  5927. "r": {
  5928. "type": "double",
  5929. "value": 5
  5930. },
  5931. "style": {
  5932. "type": "map<string,string>",
  5933. "value": {
  5934. "stroke": "#000000",
  5935. "fill": "#ffffff",
  5936. "opacity": 0,
  5937. "stroke-width": 1
  5938. }
  5939. },
  5940. "mapper": {
  5941. "type": "code",
  5942. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5943. },
  5944. "parser": {
  5945. "type": "code",
  5946. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5947. },
  5948. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5949. "position": {
  5950. "type": "list<double>",
  5951. "value": [
  5952. "0;-29.601996912943378,0%",
  5953. "0;-23.14001012998665,0%"
  5954. ]
  5955. },
  5956. "orientation": {
  5957. "type": "double",
  5958. "value": "0;30.36763698414832"
  5959. },
  5960. "scale": {
  5961. "type": "list<double>",
  5962. "value": [
  5963. 1,
  5964. 1
  5965. ]
  5966. },
  5967. "arrow": "arrowHead",
  5968. "arrowType": "circle-white",
  5969. "$linkDecoratorInfo": {
  5970. "type": "map<string,double>",
  5971. "value": {
  5972. "xratio": -1,
  5973. "yoffset": -5
  5974. }
  5975. }
  5976. },
  5977. "293": {
  5978. "r": {
  5979. "type": "double",
  5980. "value": 10
  5981. },
  5982. "style": {
  5983. "type": "map<string,string>",
  5984. "value": {
  5985. "stroke": "#000000",
  5986. "fill": "#ffffff",
  5987. "opacity": 0,
  5988. "stroke-width": 1
  5989. }
  5990. },
  5991. "mapper": {
  5992. "type": "code",
  5993. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5994. },
  5995. "parser": {
  5996. "type": "code",
  5997. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5998. },
  5999. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6000. "position": {
  6001. "type": "list<double>",
  6002. "value": [
  6003. "0;-27.07426441203188,0%",
  6004. "0;-27.454006931542608,0%"
  6005. ]
  6006. },
  6007. "orientation": {
  6008. "type": "double",
  6009. "value": "0;30.36763698414832"
  6010. },
  6011. "scale": {
  6012. "type": "list<double>",
  6013. "value": [
  6014. 1,
  6015. 1
  6016. ]
  6017. },
  6018. "arrow": "arrowHead",
  6019. "arrowType": "circle-white-large",
  6020. "$linkDecoratorInfo": {
  6021. "type": "map<string,double>",
  6022. "value": {
  6023. "xratio": -1,
  6024. "yoffset": -10
  6025. }
  6026. }
  6027. },
  6028. "294": {
  6029. "segments": {
  6030. "type": "string",
  6031. "value": "m0,0 l-20,8 l20,8"
  6032. },
  6033. "style": {
  6034. "type": "map<string,string>",
  6035. "value": {
  6036. "stroke": "#000000",
  6037. "fill": "#000000",
  6038. "fill-opacity": 0,
  6039. "stroke-width": 1,
  6040. "opacity": 0
  6041. }
  6042. },
  6043. "mapper": {
  6044. "type": "code",
  6045. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6046. },
  6047. "parser": {
  6048. "type": "code",
  6049. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6050. },
  6051. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6052. "position": {
  6053. "type": "list<double>",
  6054. "value": [
  6055. "0;-28.085357412396434,0%",
  6056. "0;-25.72840821092018,0%"
  6057. ]
  6058. },
  6059. "orientation": {
  6060. "type": "double",
  6061. "value": "0;30.36763698414832"
  6062. },
  6063. "scale": {
  6064. "type": "list<double>",
  6065. "value": [
  6066. 1,
  6067. 1
  6068. ]
  6069. },
  6070. "arrow": "arrowHead",
  6071. "arrowType": "arrow-empty-large",
  6072. "$linkDecoratorInfo": {
  6073. "type": "map<string,double>",
  6074. "value": {
  6075. "xratio": -1,
  6076. "yoffset": -8
  6077. }
  6078. }
  6079. },
  6080. "295": {
  6081. "segments": {
  6082. "type": "string",
  6083. "value": "m0,0 l-10,4 l10,4"
  6084. },
  6085. "style": {
  6086. "type": "map<string,string>",
  6087. "value": {
  6088. "stroke": "#000000",
  6089. "fill": "#000000",
  6090. "fill-opacity": 0,
  6091. "stroke-width": 1,
  6092. "opacity": 0
  6093. }
  6094. },
  6095. "mapper": {
  6096. "type": "code",
  6097. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6098. },
  6099. "parser": {
  6100. "type": "code",
  6101. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6102. },
  6103. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6104. "position": {
  6105. "type": "list<double>",
  6106. "value": [
  6107. "0;-30.107543413125768,0%",
  6108. "0;-22.277210769675435,0%"
  6109. ]
  6110. },
  6111. "orientation": {
  6112. "type": "double",
  6113. "value": "0;30.36763698414832"
  6114. },
  6115. "scale": {
  6116. "type": "list<double>",
  6117. "value": [
  6118. 1,
  6119. 1
  6120. ]
  6121. },
  6122. "arrow": "arrowHead",
  6123. "arrowType": "arrow-empty",
  6124. "$linkDecoratorInfo": {
  6125. "type": "map<string,double>",
  6126. "value": {
  6127. "xratio": -1,
  6128. "yoffset": -4
  6129. }
  6130. }
  6131. },
  6132. "296": {
  6133. "segments": {
  6134. "type": "string",
  6135. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6136. },
  6137. "style": {
  6138. "type": "map<string,string>",
  6139. "value": {
  6140. "stroke": "#000000",
  6141. "fill": "#000000",
  6142. "opacity": 0,
  6143. "stroke-width": 1
  6144. }
  6145. },
  6146. "mapper": {
  6147. "type": "code",
  6148. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6149. },
  6150. "parser": {
  6151. "type": "code",
  6152. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6153. },
  6154. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6155. "position": {
  6156. "type": "list<double>",
  6157. "value": [
  6158. "0;-27.07426441203188,0%",
  6159. "0;-27.454006931542608,0%"
  6160. ]
  6161. },
  6162. "orientation": {
  6163. "type": "double",
  6164. "value": "0;30.36763698414832"
  6165. },
  6166. "scale": {
  6167. "type": "list<double>",
  6168. "value": [
  6169. 1,
  6170. 1
  6171. ]
  6172. },
  6173. "arrow": "arrowHead",
  6174. "arrowType": "diamond-black-large",
  6175. "$linkDecoratorInfo": {
  6176. "type": "map<string,double>",
  6177. "value": {
  6178. "xratio": -1,
  6179. "yoffset": -10
  6180. }
  6181. }
  6182. },
  6183. "297": {
  6184. "segments": {
  6185. "type": "string",
  6186. "value": "m0,0 l-10,4 l10,4 z"
  6187. },
  6188. "style": {
  6189. "type": "map<string,string>",
  6190. "value": {
  6191. "stroke": "#000000",
  6192. "fill": "#000000",
  6193. "opacity": 0,
  6194. "stroke-width": 1
  6195. }
  6196. },
  6197. "mapper": {
  6198. "type": "code",
  6199. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6200. },
  6201. "parser": {
  6202. "type": "code",
  6203. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6204. },
  6205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6206. "position": {
  6207. "type": "list<double>",
  6208. "value": [
  6209. "0;-30.107543413125768,0%",
  6210. "0;-22.277210769675435,0%"
  6211. ]
  6212. },
  6213. "orientation": {
  6214. "type": "double",
  6215. "value": "0;30.36763698414832"
  6216. },
  6217. "scale": {
  6218. "type": "list<double>",
  6219. "value": [
  6220. 1,
  6221. 1
  6222. ]
  6223. },
  6224. "arrow": "arrowHead",
  6225. "arrowType": "triangle-black",
  6226. "$linkDecoratorInfo": {
  6227. "type": "map<string,double>",
  6228. "value": {
  6229. "xratio": -1,
  6230. "yoffset": -4
  6231. }
  6232. }
  6233. },
  6234. "298": {
  6235. "segments": {
  6236. "type": "string",
  6237. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6238. },
  6239. "style": {
  6240. "type": "map<string,string>",
  6241. "value": {
  6242. "stroke": "#000000",
  6243. "fill": "#ffffff",
  6244. "opacity": 0,
  6245. "stroke-width": 1
  6246. }
  6247. },
  6248. "mapper": {
  6249. "type": "code",
  6250. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6251. },
  6252. "parser": {
  6253. "type": "code",
  6254. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6255. },
  6256. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6257. "position": {
  6258. "type": "list<double>",
  6259. "value": [
  6260. "0;-27.07426441203188,0%",
  6261. "0;-27.454006931542608,0%"
  6262. ]
  6263. },
  6264. "orientation": {
  6265. "type": "double",
  6266. "value": "0;30.36763698414832"
  6267. },
  6268. "scale": {
  6269. "type": "list<double>",
  6270. "value": [
  6271. 1,
  6272. 1
  6273. ]
  6274. },
  6275. "arrow": "arrowHead",
  6276. "arrowType": "diamond-white-large",
  6277. "$linkDecoratorInfo": {
  6278. "type": "map<string,double>",
  6279. "value": {
  6280. "xratio": -1,
  6281. "yoffset": -10
  6282. }
  6283. }
  6284. },
  6285. "__pLabelText": {
  6286. "position": {
  6287. "type": "list<double>",
  6288. "value": [
  6289. 0,
  6290. 0
  6291. ]
  6292. },
  6293. "orientation": {
  6294. "type": "double",
  6295. "value": 0
  6296. },
  6297. "scale": {
  6298. "type": "list<double>",
  6299. "value": [
  6300. 1,
  6301. 1
  6302. ]
  6303. },
  6304. "textContent": {
  6305. "type": "string",
  6306. "value": "6"
  6307. },
  6308. "style": {
  6309. "type": "map<string,string>",
  6310. "value": {
  6311. "stroke": "#6000ff",
  6312. "fill": "#6000ff",
  6313. "font-size": "15px",
  6314. "opacity": "1"
  6315. }
  6316. },
  6317. "mapper": {
  6318. "type": "code",
  6319. "value": "({'textContent':getAttr('__pLabel')})"
  6320. },
  6321. "parser": {
  6322. "type": "code",
  6323. "value": "({'__pLabel':getAttr('textContent')})"
  6324. },
  6325. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  6326. }
  6327. },
  6328. "edges": []
  6329. }
  6330. },
  6331. "$asuri": {
  6332. "type": "string",
  6333. "value": "/Formalisms/Pacman/Pacman.pattern/__pPoG/25.instance"
  6334. },
  6335. "$segments": {
  6336. "type": "map<string,list<string>>",
  6337. "value": {
  6338. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/9.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPoGLink/25.instance": "M1297,487L1329.1297294138553,505.8260133284307",
  6339. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPoGLink/25.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPacmanIcon/24.instance": "M1329.0646895152545,505.78790401284425L1360.9996496949834,524.4997947431546"
  6340. }
  6341. },
  6342. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pPoGLink"
  6343. },
  6344. "26": {
  6345. "typename": {
  6346. "type": "string",
  6347. "value": "GridNodeIcon"
  6348. },
  6349. "position": {
  6350. "type": "list<double>",
  6351. "value": [
  6352. 326,
  6353. 503
  6354. ]
  6355. },
  6356. "orientation": {
  6357. "type": "double",
  6358. "value": 0
  6359. },
  6360. "scale": {
  6361. "type": "list<double>",
  6362. "value": [
  6363. 1,
  6364. 1
  6365. ]
  6366. },
  6367. "mapper": {
  6368. "type": "code",
  6369. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6370. },
  6371. "parser": {
  6372. "type": "code",
  6373. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6374. },
  6375. "$contents": {
  6376. "type": "map<string,*>",
  6377. "value": {
  6378. "nodes": {
  6379. "35": {
  6380. "width": {
  6381. "type": "double",
  6382. "value": 100
  6383. },
  6384. "height": {
  6385. "type": "double",
  6386. "value": 100
  6387. },
  6388. "cornerRadius": {
  6389. "type": "double",
  6390. "value": 0
  6391. },
  6392. "style": {
  6393. "type": "map<string,string>",
  6394. "value": {
  6395. "stroke": "#000000",
  6396. "stroke-dasharray": "",
  6397. "fill": "#C0C0C0",
  6398. "fill-opacity": 1,
  6399. "font-size": "20px",
  6400. "stroke-width": 0,
  6401. "arrow-start": "none",
  6402. "arrow-end": "none"
  6403. }
  6404. },
  6405. "mapper": {
  6406. "type": "code",
  6407. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6408. },
  6409. "parser": {
  6410. "type": "code",
  6411. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6412. },
  6413. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6414. "position": {
  6415. "type": "list<double>",
  6416. "value": [
  6417. 2,
  6418. 1
  6419. ]
  6420. },
  6421. "orientation": {
  6422. "type": "double",
  6423. "value": 0
  6424. },
  6425. "scale": {
  6426. "type": "list<double>",
  6427. "value": [
  6428. 1,
  6429. 1
  6430. ]
  6431. }
  6432. },
  6433. "69": {
  6434. "width": {
  6435. "type": "double",
  6436. "value": 30
  6437. },
  6438. "height": {
  6439. "type": "double",
  6440. "value": 30
  6441. },
  6442. "cornerRadius": {
  6443. "type": "double",
  6444. "value": 0
  6445. },
  6446. "style": {
  6447. "type": "map<string,string>",
  6448. "value": {
  6449. "stroke": "#000000",
  6450. "stroke-dasharray": "",
  6451. "fill": "#000000",
  6452. "fill-opacity": 0.75,
  6453. "font-size": "20px",
  6454. "stroke-width": 0,
  6455. "arrow-start": "none",
  6456. "arrow-end": "none"
  6457. }
  6458. },
  6459. "mapper": {
  6460. "type": "code",
  6461. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6462. },
  6463. "parser": {
  6464. "type": "code",
  6465. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6466. },
  6467. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6468. "position": {
  6469. "type": "list<double>",
  6470. "value": [
  6471. 3,
  6472. 3
  6473. ]
  6474. },
  6475. "orientation": {
  6476. "type": "double",
  6477. "value": 0
  6478. },
  6479. "scale": {
  6480. "type": "list<double>",
  6481. "value": [
  6482. 1,
  6483. 1
  6484. ]
  6485. }
  6486. },
  6487. "75": {
  6488. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6489. "position": {
  6490. "type": "list<double>",
  6491. "value": [
  6492. 10.610866770773328,
  6493. 10.104345196021995
  6494. ]
  6495. },
  6496. "orientation": {
  6497. "type": "double",
  6498. "value": 0
  6499. },
  6500. "scale": {
  6501. "type": "list<double>",
  6502. "value": [
  6503. 1,
  6504. 1
  6505. ]
  6506. },
  6507. "link-style": {
  6508. "type": "map<string,string>",
  6509. "value": {
  6510. "stroke": "#00ffff",
  6511. "stroke-dasharray": "",
  6512. "stroke-opacity": 0.1,
  6513. "stroke-width": 1
  6514. }
  6515. }
  6516. },
  6517. "76": {
  6518. "width": {
  6519. "type": "double",
  6520. "value": 30
  6521. },
  6522. "height": {
  6523. "type": "double",
  6524. "value": 30
  6525. },
  6526. "cornerRadius": {
  6527. "type": "double",
  6528. "value": 0
  6529. },
  6530. "style": {
  6531. "type": "map<string,string>",
  6532. "value": {
  6533. "stroke": "#000000",
  6534. "stroke-dasharray": "",
  6535. "fill": "#000000",
  6536. "fill-opacity": 0.75,
  6537. "font-size": "20px",
  6538. "stroke-width": 0,
  6539. "arrow-start": "none",
  6540. "arrow-end": "none"
  6541. }
  6542. },
  6543. "mapper": {
  6544. "type": "code",
  6545. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6546. },
  6547. "parser": {
  6548. "type": "code",
  6549. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6550. },
  6551. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6552. "position": {
  6553. "type": "list<double>",
  6554. "value": [
  6555. 3,
  6556. 70
  6557. ]
  6558. },
  6559. "orientation": {
  6560. "type": "double",
  6561. "value": 0
  6562. },
  6563. "scale": {
  6564. "type": "list<double>",
  6565. "value": [
  6566. 1,
  6567. 1
  6568. ]
  6569. }
  6570. },
  6571. "77": {
  6572. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6573. "position": {
  6574. "type": "list<double>",
  6575. "value": [
  6576. 10,
  6577. 43.5
  6578. ]
  6579. },
  6580. "orientation": {
  6581. "type": "double",
  6582. "value": 0
  6583. },
  6584. "scale": {
  6585. "type": "list<double>",
  6586. "value": [
  6587. 1,
  6588. 1
  6589. ]
  6590. },
  6591. "link-style": {
  6592. "type": "map<string,string>",
  6593. "value": {
  6594. "stroke": "#00ffff",
  6595. "stroke-dasharray": "",
  6596. "stroke-opacity": 0.1,
  6597. "stroke-width": 1
  6598. }
  6599. }
  6600. },
  6601. "78": {
  6602. "width": {
  6603. "type": "double",
  6604. "value": 30
  6605. },
  6606. "height": {
  6607. "type": "double",
  6608. "value": 30
  6609. },
  6610. "cornerRadius": {
  6611. "type": "double",
  6612. "value": 0
  6613. },
  6614. "style": {
  6615. "type": "map<string,string>",
  6616. "value": {
  6617. "stroke": "#000000",
  6618. "stroke-dasharray": "",
  6619. "fill": "#000000",
  6620. "fill-opacity": 0.75,
  6621. "font-size": "20px",
  6622. "stroke-width": 0,
  6623. "arrow-start": "none",
  6624. "arrow-end": "none"
  6625. }
  6626. },
  6627. "mapper": {
  6628. "type": "code",
  6629. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6630. },
  6631. "parser": {
  6632. "type": "code",
  6633. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6634. },
  6635. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6636. "position": {
  6637. "type": "list<double>",
  6638. "value": [
  6639. 71,
  6640. 3
  6641. ]
  6642. },
  6643. "orientation": {
  6644. "type": "double",
  6645. "value": 0
  6646. },
  6647. "scale": {
  6648. "type": "list<double>",
  6649. "value": [
  6650. 1,
  6651. 1
  6652. ]
  6653. }
  6654. },
  6655. "80": {
  6656. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6657. "position": {
  6658. "type": "list<double>",
  6659. "value": [
  6660. 43.5,
  6661. 10
  6662. ]
  6663. },
  6664. "orientation": {
  6665. "type": "double",
  6666. "value": 0
  6667. },
  6668. "scale": {
  6669. "type": "list<double>",
  6670. "value": [
  6671. 1,
  6672. 1
  6673. ]
  6674. },
  6675. "link-style": {
  6676. "type": "map<string,string>",
  6677. "value": {
  6678. "stroke": "#00ffff",
  6679. "stroke-dasharray": "",
  6680. "stroke-opacity": 0.1,
  6681. "stroke-width": 1
  6682. }
  6683. }
  6684. },
  6685. "81": {
  6686. "width": {
  6687. "type": "double",
  6688. "value": 30
  6689. },
  6690. "height": {
  6691. "type": "double",
  6692. "value": 30
  6693. },
  6694. "cornerRadius": {
  6695. "type": "double",
  6696. "value": 0
  6697. },
  6698. "style": {
  6699. "type": "map<string,string>",
  6700. "value": {
  6701. "stroke": "#000000",
  6702. "stroke-dasharray": "",
  6703. "fill": "#000000",
  6704. "fill-opacity": 0.75,
  6705. "font-size": "20px",
  6706. "stroke-width": 0,
  6707. "arrow-start": "none",
  6708. "arrow-end": "none"
  6709. }
  6710. },
  6711. "mapper": {
  6712. "type": "code",
  6713. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6714. },
  6715. "parser": {
  6716. "type": "code",
  6717. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6718. },
  6719. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  6720. "position": {
  6721. "type": "list<double>",
  6722. "value": [
  6723. 71,
  6724. 70
  6725. ]
  6726. },
  6727. "orientation": {
  6728. "type": "double",
  6729. "value": 0
  6730. },
  6731. "scale": {
  6732. "type": "list<double>",
  6733. "value": [
  6734. 1,
  6735. 1
  6736. ]
  6737. }
  6738. },
  6739. "82": {
  6740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  6741. "position": {
  6742. "type": "list<double>",
  6743. "value": [
  6744. 43.5,
  6745. 43.5
  6746. ]
  6747. },
  6748. "orientation": {
  6749. "type": "double",
  6750. "value": 0
  6751. },
  6752. "scale": {
  6753. "type": "list<double>",
  6754. "value": [
  6755. 1,
  6756. 1
  6757. ]
  6758. },
  6759. "link-style": {
  6760. "type": "map<string,string>",
  6761. "value": {
  6762. "stroke": "#00ffff",
  6763. "stroke-dasharray": "",
  6764. "stroke-opacity": 0.1,
  6765. "stroke-width": 1
  6766. }
  6767. }
  6768. },
  6769. "__pLabelText": {
  6770. "position": {
  6771. "type": "list<double>",
  6772. "value": [
  6773. 0,
  6774. 0
  6775. ]
  6776. },
  6777. "orientation": {
  6778. "type": "double",
  6779. "value": 0
  6780. },
  6781. "scale": {
  6782. "type": "list<double>",
  6783. "value": [
  6784. 1,
  6785. 1
  6786. ]
  6787. },
  6788. "textContent": {
  6789. "type": "string",
  6790. "value": "0"
  6791. },
  6792. "style": {
  6793. "type": "map<string,string>",
  6794. "value": {
  6795. "stroke": "#6000ff",
  6796. "fill": "#6000ff",
  6797. "font-size": "15px",
  6798. "opacity": "1"
  6799. }
  6800. },
  6801. "mapper": {
  6802. "type": "code",
  6803. "value": "({'textContent':getAttr('__pLabel')})"
  6804. },
  6805. "parser": {
  6806. "type": "code",
  6807. "value": "({'__pLabel':getAttr('textContent')})"
  6808. },
  6809. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  6810. }
  6811. },
  6812. "edges": [
  6813. {
  6814. "src": "35",
  6815. "dest": "75"
  6816. },
  6817. {
  6818. "src": "75",
  6819. "dest": "69"
  6820. },
  6821. {
  6822. "src": "35",
  6823. "dest": "77"
  6824. },
  6825. {
  6826. "src": "77",
  6827. "dest": "76"
  6828. },
  6829. {
  6830. "src": "35",
  6831. "dest": "80"
  6832. },
  6833. {
  6834. "src": "80",
  6835. "dest": "78"
  6836. },
  6837. {
  6838. "src": "35",
  6839. "dest": "82"
  6840. },
  6841. {
  6842. "src": "82",
  6843. "dest": "81"
  6844. }
  6845. ]
  6846. }
  6847. },
  6848. "$asuri": {
  6849. "type": "string",
  6850. "value": "/Formalisms/Pacman/Pacman.pattern/__pGridNode/26.instance"
  6851. },
  6852. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon"
  6853. },
  6854. "27": {
  6855. "typename": {
  6856. "type": "string",
  6857. "value": "GhostIcon"
  6858. },
  6859. "position": {
  6860. "type": "list<double>",
  6861. "value": [
  6862. 371,
  6863. 525
  6864. ]
  6865. },
  6866. "orientation": {
  6867. "type": "double",
  6868. "value": 0
  6869. },
  6870. "scale": {
  6871. "type": "list<double>",
  6872. "value": [
  6873. 1,
  6874. 1
  6875. ]
  6876. },
  6877. "mapper": {
  6878. "type": "code",
  6879. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6880. },
  6881. "parser": {
  6882. "type": "code",
  6883. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6884. },
  6885. "$contents": {
  6886. "type": "map<string,*>",
  6887. "value": {
  6888. "nodes": {
  6889. "40": {
  6890. "src": {
  6891. "type": "string",
  6892. "value": "http://clipart.nicubunu.ro/png/pacman/base.svg.png"
  6893. },
  6894. "width": {
  6895. "type": "double",
  6896. "value": 48
  6897. },
  6898. "height": {
  6899. "type": "double",
  6900. "value": 48
  6901. },
  6902. "style": {
  6903. "type": "map<string,string>",
  6904. "value": {
  6905. "stroke": "#000000",
  6906. "stroke-dasharray": "",
  6907. "fill": "#ffffff",
  6908. "fill-opacity": 0.75,
  6909. "font-size": "20px",
  6910. "stroke-width": 1,
  6911. "arrow-start": "none",
  6912. "arrow-end": "none"
  6913. }
  6914. },
  6915. "mapper": {
  6916. "type": "code",
  6917. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6918. },
  6919. "parser": {
  6920. "type": "code",
  6921. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6922. },
  6923. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  6924. "position": {
  6925. "type": "list<double>",
  6926. "value": [
  6927. 1,
  6928. 1
  6929. ]
  6930. },
  6931. "orientation": {
  6932. "type": "double",
  6933. "value": 0
  6934. },
  6935. "scale": {
  6936. "type": "list<double>",
  6937. "value": [
  6938. 1,
  6939. 1
  6940. ]
  6941. }
  6942. },
  6943. "__pLabelText": {
  6944. "position": {
  6945. "type": "list<double>",
  6946. "value": [
  6947. 0,
  6948. 0
  6949. ]
  6950. },
  6951. "orientation": {
  6952. "type": "double",
  6953. "value": 0
  6954. },
  6955. "scale": {
  6956. "type": "list<double>",
  6957. "value": [
  6958. 1,
  6959. 1
  6960. ]
  6961. },
  6962. "textContent": {
  6963. "type": "string",
  6964. "value": "7"
  6965. },
  6966. "style": {
  6967. "type": "map<string,string>",
  6968. "value": {
  6969. "stroke": "#6000ff",
  6970. "fill": "#6000ff",
  6971. "font-size": "15px",
  6972. "opacity": "1"
  6973. }
  6974. },
  6975. "mapper": {
  6976. "type": "code",
  6977. "value": "({'textContent':getAttr('__pLabel')})"
  6978. },
  6979. "parser": {
  6980. "type": "code",
  6981. "value": "({'__pLabel':getAttr('textContent')})"
  6982. },
  6983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  6984. }
  6985. },
  6986. "edges": []
  6987. }
  6988. },
  6989. "$asuri": {
  6990. "type": "string",
  6991. "value": "/Formalisms/Pacman/Pacman.pattern/__pGhost/27.instance"
  6992. },
  6993. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGhostIcon"
  6994. },
  6995. "28": {
  6996. "link-style": {
  6997. "type": "map<string,string>",
  6998. "value": {
  6999. "stroke": "#000000",
  7000. "stroke-dasharray": "",
  7001. "stroke-opacity": 1,
  7002. "stroke-width": 0
  7003. }
  7004. },
  7005. "arrowHead": {
  7006. "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)",
  7007. "value": "custom"
  7008. },
  7009. "arrowTail": {
  7010. "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)",
  7011. "value": "arrow-black"
  7012. },
  7013. "typename": {
  7014. "type": "string",
  7015. "value": "GoGLink"
  7016. },
  7017. "position": {
  7018. "type": "list<double>",
  7019. "value": [
  7020. 360.87560216654106,
  7021. 526.3340359819304
  7022. ]
  7023. },
  7024. "orientation": {
  7025. "type": "double",
  7026. "value": 0
  7027. },
  7028. "scale": {
  7029. "type": "list<double>",
  7030. "value": [
  7031. 1,
  7032. 1
  7033. ]
  7034. },
  7035. "mapper": {
  7036. "type": "code",
  7037. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7038. },
  7039. "parser": {
  7040. "type": "code",
  7041. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7042. },
  7043. "$contents": {
  7044. "type": "map<string,*>",
  7045. "value": {
  7046. "nodes": {
  7047. "267": {
  7048. "segments": {
  7049. "type": "string",
  7050. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  7051. },
  7052. "style": {
  7053. "type": "map<string,string>",
  7054. "value": {
  7055. "stroke": "#000000",
  7056. "fill": "#000000",
  7057. "opacity": 0,
  7058. "stroke-width": 1
  7059. }
  7060. },
  7061. "mapper": {
  7062. "type": "code",
  7063. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7064. },
  7065. "parser": {
  7066. "type": "code",
  7067. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7068. },
  7069. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7070. "position": {
  7071. "type": "list<double>",
  7072. "value": [
  7073. "0;36.848412551322156,83.11292506269803%",
  7074. "0;19.841244681475814,55.607928279359065%"
  7075. ]
  7076. },
  7077. "orientation": {
  7078. "type": "double",
  7079. "value": "0;33.78508531534641"
  7080. },
  7081. "scale": {
  7082. "type": "list<double>",
  7083. "value": [
  7084. 1,
  7085. 1
  7086. ]
  7087. },
  7088. "arrow": "arrowTail",
  7089. "arrowType": "arrow-black",
  7090. "$linkDecoratorInfo": {
  7091. "type": "map<string,double>",
  7092. "value": {
  7093. "xratio": 1,
  7094. "yoffset": -4
  7095. }
  7096. }
  7097. },
  7098. "268": {
  7099. "segments": {
  7100. "type": "string",
  7101. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7102. },
  7103. "style": {
  7104. "type": "map<string,string>",
  7105. "value": {
  7106. "stroke": "#000000",
  7107. "fill": "#000000",
  7108. "opacity": 0,
  7109. "stroke-width": 1
  7110. }
  7111. },
  7112. "mapper": {
  7113. "type": "code",
  7114. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7115. },
  7116. "parser": {
  7117. "type": "code",
  7118. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7119. },
  7120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7121. "position": {
  7122. "type": "list<double>",
  7123. "value": [
  7124. "0;40.18488824808372,83.11292506269803%",
  7125. "0;14.854469177714009,55.607928279359065%"
  7126. ]
  7127. },
  7128. "orientation": {
  7129. "type": "double",
  7130. "value": "0;33.78508531534641"
  7131. },
  7132. "scale": {
  7133. "type": "list<double>",
  7134. "value": [
  7135. 1,
  7136. 1
  7137. ]
  7138. },
  7139. "arrow": "arrowTail",
  7140. "arrowType": "diamond-black-large",
  7141. "$linkDecoratorInfo": {
  7142. "type": "map<string,double>",
  7143. "value": {
  7144. "xratio": 1,
  7145. "yoffset": -10
  7146. }
  7147. }
  7148. },
  7149. "269": {
  7150. "r": {
  7151. "type": "double",
  7152. "value": 10
  7153. },
  7154. "style": {
  7155. "type": "map<string,string>",
  7156. "value": {
  7157. "stroke": "#000000",
  7158. "fill": "#000000",
  7159. "opacity": 0,
  7160. "stroke-width": 1
  7161. }
  7162. },
  7163. "mapper": {
  7164. "type": "code",
  7165. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7166. },
  7167. "parser": {
  7168. "type": "code",
  7169. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7170. },
  7171. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7172. "position": {
  7173. "type": "list<double>",
  7174. "value": [
  7175. "0;40.18488824808372,83.11292506269803%",
  7176. "0;14.854469177714009,55.607928279359065%"
  7177. ]
  7178. },
  7179. "orientation": {
  7180. "type": "double",
  7181. "value": "0;33.78508531534641"
  7182. },
  7183. "scale": {
  7184. "type": "list<double>",
  7185. "value": [
  7186. 1,
  7187. 1
  7188. ]
  7189. },
  7190. "arrow": "arrowTail",
  7191. "arrowType": "circle-black-large",
  7192. "$linkDecoratorInfo": {
  7193. "type": "map<string,double>",
  7194. "value": {
  7195. "xratio": 1,
  7196. "yoffset": -10
  7197. }
  7198. }
  7199. },
  7200. "270": {
  7201. "r": {
  7202. "type": "double",
  7203. "value": 10
  7204. },
  7205. "style": {
  7206. "type": "map<string,string>",
  7207. "value": {
  7208. "stroke": "#000000",
  7209. "fill": "#ffffff",
  7210. "opacity": 0,
  7211. "stroke-width": 1
  7212. }
  7213. },
  7214. "mapper": {
  7215. "type": "code",
  7216. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7217. },
  7218. "parser": {
  7219. "type": "code",
  7220. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7221. },
  7222. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7223. "position": {
  7224. "type": "list<double>",
  7225. "value": [
  7226. "0;40.18488824808372,83.11292506269803%",
  7227. "0;14.854469177714009,55.607928279359065%"
  7228. ]
  7229. },
  7230. "orientation": {
  7231. "type": "double",
  7232. "value": "0;33.78508531534641"
  7233. },
  7234. "scale": {
  7235. "type": "list<double>",
  7236. "value": [
  7237. 1,
  7238. 1
  7239. ]
  7240. },
  7241. "arrow": "arrowTail",
  7242. "arrowType": "circle-white-large",
  7243. "$linkDecoratorInfo": {
  7244. "type": "map<string,double>",
  7245. "value": {
  7246. "xratio": 1,
  7247. "yoffset": -10
  7248. }
  7249. }
  7250. },
  7251. "271": {
  7252. "r": {
  7253. "type": "double",
  7254. "value": 5
  7255. },
  7256. "style": {
  7257. "type": "map<string,string>",
  7258. "value": {
  7259. "stroke": "#000000",
  7260. "fill": "#000000",
  7261. "opacity": 0,
  7262. "stroke-width": 1
  7263. }
  7264. },
  7265. "mapper": {
  7266. "type": "code",
  7267. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7268. },
  7269. "parser": {
  7270. "type": "code",
  7271. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7272. },
  7273. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7274. "position": {
  7275. "type": "list<double>",
  7276. "value": [
  7277. "0;37.40449183411573,83.11292506269803%",
  7278. "0;19.010115430848828,55.607928279359065%"
  7279. ]
  7280. },
  7281. "orientation": {
  7282. "type": "double",
  7283. "value": "0;33.78508531534641"
  7284. },
  7285. "scale": {
  7286. "type": "list<double>",
  7287. "value": [
  7288. 1,
  7289. 1
  7290. ]
  7291. },
  7292. "arrow": "arrowTail",
  7293. "arrowType": "circle-black",
  7294. "$linkDecoratorInfo": {
  7295. "type": "map<string,double>",
  7296. "value": {
  7297. "xratio": 1,
  7298. "yoffset": -5
  7299. }
  7300. }
  7301. },
  7302. "272": {
  7303. "segments": {
  7304. "type": "string",
  7305. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7306. },
  7307. "style": {
  7308. "type": "map<string,string>",
  7309. "value": {
  7310. "stroke": "#000000",
  7311. "fill": "#000000",
  7312. "opacity": 0,
  7313. "stroke-width": 1
  7314. }
  7315. },
  7316. "mapper": {
  7317. "type": "code",
  7318. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7319. },
  7320. "parser": {
  7321. "type": "code",
  7322. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7323. },
  7324. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7325. "position": {
  7326. "type": "list<double>",
  7327. "value": [
  7328. "0;37.40449183411573,83.11292506269803%",
  7329. "0;19.010115430848828,55.607928279359065%"
  7330. ]
  7331. },
  7332. "orientation": {
  7333. "type": "double",
  7334. "value": "0;33.78508531534641"
  7335. },
  7336. "scale": {
  7337. "type": "list<double>",
  7338. "value": [
  7339. 1,
  7340. 1
  7341. ]
  7342. },
  7343. "arrow": "arrowTail",
  7344. "arrowType": "diamond-black",
  7345. "$linkDecoratorInfo": {
  7346. "type": "map<string,double>",
  7347. "value": {
  7348. "xratio": 1,
  7349. "yoffset": -5
  7350. }
  7351. }
  7352. },
  7353. "273": {
  7354. "segments": {
  7355. "type": "string",
  7356. "value": "m0,0 l20,10 l-20,10 z"
  7357. },
  7358. "style": {
  7359. "type": "map<string,string>",
  7360. "value": {
  7361. "stroke": "#000000",
  7362. "fill": "#000000",
  7363. "opacity": 0,
  7364. "stroke-width": 1
  7365. }
  7366. },
  7367. "mapper": {
  7368. "type": "code",
  7369. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7370. },
  7371. "parser": {
  7372. "type": "code",
  7373. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7374. },
  7375. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7376. "position": {
  7377. "type": "list<double>",
  7378. "value": [
  7379. "0;40.18488824808372,83.11292506269803%",
  7380. "0;14.854469177714009,55.607928279359065%"
  7381. ]
  7382. },
  7383. "orientation": {
  7384. "type": "double",
  7385. "value": "0;33.78508531534641"
  7386. },
  7387. "scale": {
  7388. "type": "list<double>",
  7389. "value": [
  7390. 1,
  7391. 1
  7392. ]
  7393. },
  7394. "arrow": "arrowTail",
  7395. "arrowType": "triangle-black-large",
  7396. "$linkDecoratorInfo": {
  7397. "type": "map<string,double>",
  7398. "value": {
  7399. "xratio": 1,
  7400. "yoffset": -10
  7401. }
  7402. }
  7403. },
  7404. "274": {
  7405. "segments": {
  7406. "type": "string",
  7407. "value": "m0,0 l10,4 l-10,4 z"
  7408. },
  7409. "style": {
  7410. "type": "map<string,string>",
  7411. "value": {
  7412. "stroke": "#000000",
  7413. "fill": "#000000",
  7414. "opacity": 0,
  7415. "stroke-width": 1
  7416. }
  7417. },
  7418. "mapper": {
  7419. "type": "code",
  7420. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7421. },
  7422. "parser": {
  7423. "type": "code",
  7424. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7425. },
  7426. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7427. "position": {
  7428. "type": "list<double>",
  7429. "value": [
  7430. "0;36.848412551322156,83.11292506269803%",
  7431. "0;19.841244681475814,55.607928279359065%"
  7432. ]
  7433. },
  7434. "orientation": {
  7435. "type": "double",
  7436. "value": "0;33.78508531534641"
  7437. },
  7438. "scale": {
  7439. "type": "list<double>",
  7440. "value": [
  7441. 1,
  7442. 1
  7443. ]
  7444. },
  7445. "arrow": "arrowTail",
  7446. "arrowType": "triangle-black",
  7447. "$linkDecoratorInfo": {
  7448. "type": "map<string,double>",
  7449. "value": {
  7450. "xratio": 1,
  7451. "yoffset": -4
  7452. }
  7453. }
  7454. },
  7455. "275": {
  7456. "segments": {
  7457. "type": "string",
  7458. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  7459. },
  7460. "style": {
  7461. "type": "map<string,string>",
  7462. "value": {
  7463. "stroke": "#000000",
  7464. "fill": "#000000",
  7465. "opacity": 0,
  7466. "stroke-width": 1
  7467. }
  7468. },
  7469. "mapper": {
  7470. "type": "code",
  7471. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7472. },
  7473. "parser": {
  7474. "type": "code",
  7475. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7476. },
  7477. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7478. "position": {
  7479. "type": "list<double>",
  7480. "value": [
  7481. "0;39.072729682496515,83.11292506269803%",
  7482. "0;16.516727678967868,55.607928279359065%"
  7483. ]
  7484. },
  7485. "orientation": {
  7486. "type": "double",
  7487. "value": "0;33.78508531534641"
  7488. },
  7489. "scale": {
  7490. "type": "list<double>",
  7491. "value": [
  7492. 1,
  7493. 1
  7494. ]
  7495. },
  7496. "arrow": "arrowTail",
  7497. "arrowType": "arrow-black-large",
  7498. "$linkDecoratorInfo": {
  7499. "type": "map<string,double>",
  7500. "value": {
  7501. "xratio": 1,
  7502. "yoffset": -8
  7503. }
  7504. }
  7505. },
  7506. "276": {
  7507. "segments": {
  7508. "type": "string",
  7509. "value": "m0,0 l20,10 l-20,10 z"
  7510. },
  7511. "style": {
  7512. "type": "map<string,string>",
  7513. "value": {
  7514. "stroke": "#000000",
  7515. "fill": "#ffffff",
  7516. "opacity": 0,
  7517. "stroke-width": 1
  7518. }
  7519. },
  7520. "mapper": {
  7521. "type": "code",
  7522. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7523. },
  7524. "parser": {
  7525. "type": "code",
  7526. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7527. },
  7528. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7529. "position": {
  7530. "type": "list<double>",
  7531. "value": [
  7532. "0;40.18488824808372,83.11292506269803%",
  7533. "0;14.854469177714009,55.607928279359065%"
  7534. ]
  7535. },
  7536. "orientation": {
  7537. "type": "double",
  7538. "value": "0;33.78508531534641"
  7539. },
  7540. "scale": {
  7541. "type": "list<double>",
  7542. "value": [
  7543. 1,
  7544. 1
  7545. ]
  7546. },
  7547. "arrow": "arrowTail",
  7548. "arrowType": "triangle-white-large",
  7549. "$linkDecoratorInfo": {
  7550. "type": "map<string,double>",
  7551. "value": {
  7552. "xratio": 1,
  7553. "yoffset": -10
  7554. }
  7555. }
  7556. },
  7557. "277": {
  7558. "segments": {
  7559. "type": "string",
  7560. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7561. },
  7562. "style": {
  7563. "type": "map<string,string>",
  7564. "value": {
  7565. "stroke": "#000000",
  7566. "fill": "#ffffff",
  7567. "opacity": 0,
  7568. "stroke-width": 1
  7569. }
  7570. },
  7571. "mapper": {
  7572. "type": "code",
  7573. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7574. },
  7575. "parser": {
  7576. "type": "code",
  7577. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7578. },
  7579. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7580. "position": {
  7581. "type": "list<double>",
  7582. "value": [
  7583. "0;37.40449183411573,83.11292506269803%",
  7584. "0;19.010115430848828,55.607928279359065%"
  7585. ]
  7586. },
  7587. "orientation": {
  7588. "type": "double",
  7589. "value": "0;33.78508531534641"
  7590. },
  7591. "scale": {
  7592. "type": "list<double>",
  7593. "value": [
  7594. 1,
  7595. 1
  7596. ]
  7597. },
  7598. "arrow": "arrowTail",
  7599. "arrowType": "diamond-white",
  7600. "$linkDecoratorInfo": {
  7601. "type": "map<string,double>",
  7602. "value": {
  7603. "xratio": 1,
  7604. "yoffset": -5
  7605. }
  7606. }
  7607. },
  7608. "278": {
  7609. "segments": {
  7610. "type": "string",
  7611. "value": "m0,0 l20,8 l-20,8"
  7612. },
  7613. "style": {
  7614. "type": "map<string,string>",
  7615. "value": {
  7616. "stroke": "#000000",
  7617. "fill": "#000000",
  7618. "fill-opacity": 0,
  7619. "stroke-width": 1,
  7620. "opacity": 0
  7621. }
  7622. },
  7623. "mapper": {
  7624. "type": "code",
  7625. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7626. },
  7627. "parser": {
  7628. "type": "code",
  7629. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7630. },
  7631. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7632. "position": {
  7633. "type": "list<double>",
  7634. "value": [
  7635. "0;39.072729682496515,83.11292506269803%",
  7636. "0;16.516727678967868,55.607928279359065%"
  7637. ]
  7638. },
  7639. "orientation": {
  7640. "type": "double",
  7641. "value": "0;33.78508531534641"
  7642. },
  7643. "scale": {
  7644. "type": "list<double>",
  7645. "value": [
  7646. 1,
  7647. 1
  7648. ]
  7649. },
  7650. "arrow": "arrowTail",
  7651. "arrowType": "arrow-empty-large",
  7652. "$linkDecoratorInfo": {
  7653. "type": "map<string,double>",
  7654. "value": {
  7655. "xratio": 1,
  7656. "yoffset": -8
  7657. }
  7658. }
  7659. },
  7660. "279": {
  7661. "r": {
  7662. "type": "double",
  7663. "value": 5
  7664. },
  7665. "style": {
  7666. "type": "map<string,string>",
  7667. "value": {
  7668. "stroke": "#000000",
  7669. "fill": "#ffffff",
  7670. "opacity": 0,
  7671. "stroke-width": 1
  7672. }
  7673. },
  7674. "mapper": {
  7675. "type": "code",
  7676. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7677. },
  7678. "parser": {
  7679. "type": "code",
  7680. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7681. },
  7682. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7683. "position": {
  7684. "type": "list<double>",
  7685. "value": [
  7686. "0;37.40449183411573,83.11292506269803%",
  7687. "0;19.010115430848828,55.607928279359065%"
  7688. ]
  7689. },
  7690. "orientation": {
  7691. "type": "double",
  7692. "value": "0;33.78508531534641"
  7693. },
  7694. "scale": {
  7695. "type": "list<double>",
  7696. "value": [
  7697. 1,
  7698. 1
  7699. ]
  7700. },
  7701. "arrow": "arrowTail",
  7702. "arrowType": "circle-white",
  7703. "$linkDecoratorInfo": {
  7704. "type": "map<string,double>",
  7705. "value": {
  7706. "xratio": 1,
  7707. "yoffset": -5
  7708. }
  7709. }
  7710. },
  7711. "280": {
  7712. "segments": {
  7713. "type": "string",
  7714. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7715. },
  7716. "style": {
  7717. "type": "map<string,string>",
  7718. "value": {
  7719. "stroke": "#000000",
  7720. "fill": "#ffffff",
  7721. "opacity": 0,
  7722. "stroke-width": 1
  7723. }
  7724. },
  7725. "mapper": {
  7726. "type": "code",
  7727. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7728. },
  7729. "parser": {
  7730. "type": "code",
  7731. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7732. },
  7733. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7734. "position": {
  7735. "type": "list<double>",
  7736. "value": [
  7737. "0;40.18488824808372,83.11292506269803%",
  7738. "0;14.854469177714009,55.607928279359065%"
  7739. ]
  7740. },
  7741. "orientation": {
  7742. "type": "double",
  7743. "value": "0;33.78508531534641"
  7744. },
  7745. "scale": {
  7746. "type": "list<double>",
  7747. "value": [
  7748. 1,
  7749. 1
  7750. ]
  7751. },
  7752. "arrow": "arrowTail",
  7753. "arrowType": "diamond-white-large",
  7754. "$linkDecoratorInfo": {
  7755. "type": "map<string,double>",
  7756. "value": {
  7757. "xratio": 1,
  7758. "yoffset": -10
  7759. }
  7760. }
  7761. },
  7762. "281": {
  7763. "segments": {
  7764. "type": "string",
  7765. "value": "m0,0 l10,4 l-10,4"
  7766. },
  7767. "style": {
  7768. "type": "map<string,string>",
  7769. "value": {
  7770. "stroke": "#000000",
  7771. "fill": "#000000",
  7772. "fill-opacity": 0,
  7773. "stroke-width": 1,
  7774. "opacity": 0
  7775. }
  7776. },
  7777. "mapper": {
  7778. "type": "code",
  7779. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7780. },
  7781. "parser": {
  7782. "type": "code",
  7783. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7784. },
  7785. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7786. "position": {
  7787. "type": "list<double>",
  7788. "value": [
  7789. "0;36.848412551322156,83.11292506269803%",
  7790. "0;19.841244681475814,55.607928279359065%"
  7791. ]
  7792. },
  7793. "orientation": {
  7794. "type": "double",
  7795. "value": "0;33.78508531534641"
  7796. },
  7797. "scale": {
  7798. "type": "list<double>",
  7799. "value": [
  7800. 1,
  7801. 1
  7802. ]
  7803. },
  7804. "arrow": "arrowTail",
  7805. "arrowType": "arrow-empty",
  7806. "$linkDecoratorInfo": {
  7807. "type": "map<string,double>",
  7808. "value": {
  7809. "xratio": 1,
  7810. "yoffset": -4
  7811. }
  7812. }
  7813. },
  7814. "282": {
  7815. "segments": {
  7816. "type": "string",
  7817. "value": "m0,0 l10,5 l-10,5 z"
  7818. },
  7819. "style": {
  7820. "type": "map<string,string>",
  7821. "value": {
  7822. "stroke": "#000000",
  7823. "fill": "#ffffff",
  7824. "opacity": 0,
  7825. "stroke-width": 1
  7826. }
  7827. },
  7828. "mapper": {
  7829. "type": "code",
  7830. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7831. },
  7832. "parser": {
  7833. "type": "code",
  7834. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7835. },
  7836. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7837. "position": {
  7838. "type": "list<double>",
  7839. "value": [
  7840. "0;37.40449183411573,83.11292506269803%",
  7841. "0;19.010115430848828,55.607928279359065%"
  7842. ]
  7843. },
  7844. "orientation": {
  7845. "type": "double",
  7846. "value": "0;33.78508531534641"
  7847. },
  7848. "scale": {
  7849. "type": "list<double>",
  7850. "value": [
  7851. 1,
  7852. 1
  7853. ]
  7854. },
  7855. "arrow": "arrowTail",
  7856. "arrowType": "triangle-white",
  7857. "$linkDecoratorInfo": {
  7858. "type": "map<string,double>",
  7859. "value": {
  7860. "xratio": 1,
  7861. "yoffset": -5
  7862. }
  7863. }
  7864. },
  7865. "283": {
  7866. "segments": {
  7867. "type": "string",
  7868. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7869. },
  7870. "style": {
  7871. "type": "map<string,string>",
  7872. "value": {
  7873. "stroke": "#000000",
  7874. "fill": "#ffffff",
  7875. "opacity": 0,
  7876. "stroke-width": 1
  7877. }
  7878. },
  7879. "mapper": {
  7880. "type": "code",
  7881. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7882. },
  7883. "parser": {
  7884. "type": "code",
  7885. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7886. },
  7887. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7888. "position": {
  7889. "type": "list<double>",
  7890. "value": [
  7891. "0;-32.09520575257312,0%",
  7892. "0;-27.48968223506529,0%"
  7893. ]
  7894. },
  7895. "orientation": {
  7896. "type": "double",
  7897. "value": "0;33.78508531534644"
  7898. },
  7899. "scale": {
  7900. "type": "list<double>",
  7901. "value": [
  7902. 1,
  7903. 1
  7904. ]
  7905. },
  7906. "arrow": "arrowHead",
  7907. "arrowType": "diamond-white",
  7908. "$linkDecoratorInfo": {
  7909. "type": "map<string,double>",
  7910. "value": {
  7911. "xratio": -1,
  7912. "yoffset": -5
  7913. }
  7914. }
  7915. },
  7916. "284": {
  7917. "segments": {
  7918. "type": "string",
  7919. "value": "m0,0 l-10,5 l10,5 z"
  7920. },
  7921. "style": {
  7922. "type": "map<string,string>",
  7923. "value": {
  7924. "stroke": "#000000",
  7925. "fill": "#ffffff",
  7926. "opacity": 0,
  7927. "stroke-width": 1
  7928. }
  7929. },
  7930. "mapper": {
  7931. "type": "code",
  7932. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7933. },
  7934. "parser": {
  7935. "type": "code",
  7936. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7937. },
  7938. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7939. "position": {
  7940. "type": "list<double>",
  7941. "value": [
  7942. "0;-32.09520575257312,0%",
  7943. "0;-27.48968223506529,0%"
  7944. ]
  7945. },
  7946. "orientation": {
  7947. "type": "double",
  7948. "value": "0;33.78508531534644"
  7949. },
  7950. "scale": {
  7951. "type": "list<double>",
  7952. "value": [
  7953. 1,
  7954. 1
  7955. ]
  7956. },
  7957. "arrow": "arrowHead",
  7958. "arrowType": "triangle-white",
  7959. "$linkDecoratorInfo": {
  7960. "type": "map<string,double>",
  7961. "value": {
  7962. "xratio": -1,
  7963. "yoffset": -5
  7964. }
  7965. }
  7966. },
  7967. "285": {
  7968. "segments": {
  7969. "type": "string",
  7970. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7971. },
  7972. "style": {
  7973. "type": "map<string,string>",
  7974. "value": {
  7975. "stroke": "#000000",
  7976. "fill": "#000000",
  7977. "opacity": 0,
  7978. "stroke-width": 1
  7979. }
  7980. },
  7981. "mapper": {
  7982. "type": "code",
  7983. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7984. },
  7985. "parser": {
  7986. "type": "code",
  7987. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7988. },
  7989. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7990. "position": {
  7991. "type": "list<double>",
  7992. "value": [
  7993. "0;-32.09520575257312,0%",
  7994. "0;-27.48968223506529,0%"
  7995. ]
  7996. },
  7997. "orientation": {
  7998. "type": "double",
  7999. "value": "0;33.78508531534644"
  8000. },
  8001. "scale": {
  8002. "type": "list<double>",
  8003. "value": [
  8004. 1,
  8005. 1
  8006. ]
  8007. },
  8008. "arrow": "arrowHead",
  8009. "arrowType": "diamond-black",
  8010. "$linkDecoratorInfo": {
  8011. "type": "map<string,double>",
  8012. "value": {
  8013. "xratio": -1,
  8014. "yoffset": -5
  8015. }
  8016. }
  8017. },
  8018. "286": {
  8019. "r": {
  8020. "type": "double",
  8021. "value": 10
  8022. },
  8023. "style": {
  8024. "type": "map<string,string>",
  8025. "value": {
  8026. "stroke": "#000000",
  8027. "fill": "#000000",
  8028. "opacity": 0,
  8029. "stroke-width": 1
  8030. }
  8031. },
  8032. "mapper": {
  8033. "type": "code",
  8034. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8035. },
  8036. "parser": {
  8037. "type": "code",
  8038. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8039. },
  8040. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8041. "position": {
  8042. "type": "list<double>",
  8043. "value": [
  8044. "0;-29.31480933860513,0%",
  8045. "0;-31.645328488200107,0%"
  8046. ]
  8047. },
  8048. "orientation": {
  8049. "type": "double",
  8050. "value": "0;33.78508531534644"
  8051. },
  8052. "scale": {
  8053. "type": "list<double>",
  8054. "value": [
  8055. 1,
  8056. 1
  8057. ]
  8058. },
  8059. "arrow": "arrowHead",
  8060. "arrowType": "circle-black-large",
  8061. "$linkDecoratorInfo": {
  8062. "type": "map<string,double>",
  8063. "value": {
  8064. "xratio": -1,
  8065. "yoffset": -10
  8066. }
  8067. }
  8068. },
  8069. "287": {
  8070. "segments": {
  8071. "type": "string",
  8072. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  8073. },
  8074. "style": {
  8075. "type": "map<string,string>",
  8076. "value": {
  8077. "stroke": "#000000",
  8078. "fill": "#000000",
  8079. "opacity": 0,
  8080. "stroke-width": 1
  8081. }
  8082. },
  8083. "mapper": {
  8084. "type": "code",
  8085. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8086. },
  8087. "parser": {
  8088. "type": "code",
  8089. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8090. },
  8091. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8092. "position": {
  8093. "type": "list<double>",
  8094. "value": [
  8095. "0;-30.426967904192338,0%",
  8096. "0;-29.983069986946248,0%"
  8097. ]
  8098. },
  8099. "orientation": {
  8100. "type": "double",
  8101. "value": "0;33.78508531534644"
  8102. },
  8103. "scale": {
  8104. "type": "list<double>",
  8105. "value": [
  8106. 1,
  8107. 1
  8108. ]
  8109. },
  8110. "arrow": "arrowHead",
  8111. "arrowType": "arrow-black-large",
  8112. "$linkDecoratorInfo": {
  8113. "type": "map<string,double>",
  8114. "value": {
  8115. "xratio": -1,
  8116. "yoffset": -8
  8117. }
  8118. }
  8119. },
  8120. "288": {
  8121. "segments": {
  8122. "type": "string",
  8123. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  8124. },
  8125. "style": {
  8126. "type": "map<string,string>",
  8127. "value": {
  8128. "stroke": "#000000",
  8129. "fill": "#000000",
  8130. "opacity": 0,
  8131. "stroke-width": 1
  8132. }
  8133. },
  8134. "mapper": {
  8135. "type": "code",
  8136. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8137. },
  8138. "parser": {
  8139. "type": "code",
  8140. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8141. },
  8142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8143. "position": {
  8144. "type": "list<double>",
  8145. "value": [
  8146. "0;-32.6512850353667,0%",
  8147. "0;-26.658552984438302,0%"
  8148. ]
  8149. },
  8150. "orientation": {
  8151. "type": "double",
  8152. "value": "0;33.78508531534644"
  8153. },
  8154. "scale": {
  8155. "type": "list<double>",
  8156. "value": [
  8157. 1,
  8158. 1
  8159. ]
  8160. },
  8161. "arrow": "arrowHead",
  8162. "arrowType": "arrow-black",
  8163. "$linkDecoratorInfo": {
  8164. "type": "map<string,double>",
  8165. "value": {
  8166. "xratio": -1,
  8167. "yoffset": -4
  8168. }
  8169. }
  8170. },
  8171. "289": {
  8172. "segments": {
  8173. "type": "string",
  8174. "value": "m0,0 l-20,10 l20,10 z"
  8175. },
  8176. "style": {
  8177. "type": "map<string,string>",
  8178. "value": {
  8179. "stroke": "#000000",
  8180. "fill": "#ffffff",
  8181. "opacity": 0,
  8182. "stroke-width": 1
  8183. }
  8184. },
  8185. "mapper": {
  8186. "type": "code",
  8187. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8188. },
  8189. "parser": {
  8190. "type": "code",
  8191. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8192. },
  8193. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8194. "position": {
  8195. "type": "list<double>",
  8196. "value": [
  8197. "0;-29.31480933860513,0%",
  8198. "0;-31.645328488200107,0%"
  8199. ]
  8200. },
  8201. "orientation": {
  8202. "type": "double",
  8203. "value": "0;33.78508531534644"
  8204. },
  8205. "scale": {
  8206. "type": "list<double>",
  8207. "value": [
  8208. 1,
  8209. 1
  8210. ]
  8211. },
  8212. "arrow": "arrowHead",
  8213. "arrowType": "triangle-white-large",
  8214. "$linkDecoratorInfo": {
  8215. "type": "map<string,double>",
  8216. "value": {
  8217. "xratio": -1,
  8218. "yoffset": -10
  8219. }
  8220. }
  8221. },
  8222. "290": {
  8223. "segments": {
  8224. "type": "string",
  8225. "value": "m0,0 l-20,10 l20,10 z"
  8226. },
  8227. "style": {
  8228. "type": "map<string,string>",
  8229. "value": {
  8230. "stroke": "#000000",
  8231. "fill": "#000000",
  8232. "opacity": 0,
  8233. "stroke-width": 1
  8234. }
  8235. },
  8236. "mapper": {
  8237. "type": "code",
  8238. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8239. },
  8240. "parser": {
  8241. "type": "code",
  8242. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8243. },
  8244. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8245. "position": {
  8246. "type": "list<double>",
  8247. "value": [
  8248. "0;-29.31480933860513,0%",
  8249. "0;-31.645328488200107,0%"
  8250. ]
  8251. },
  8252. "orientation": {
  8253. "type": "double",
  8254. "value": "0;33.78508531534644"
  8255. },
  8256. "scale": {
  8257. "type": "list<double>",
  8258. "value": [
  8259. 1,
  8260. 1
  8261. ]
  8262. },
  8263. "arrow": "arrowHead",
  8264. "arrowType": "triangle-black-large",
  8265. "$linkDecoratorInfo": {
  8266. "type": "map<string,double>",
  8267. "value": {
  8268. "xratio": -1,
  8269. "yoffset": -10
  8270. }
  8271. }
  8272. },
  8273. "291": {
  8274. "r": {
  8275. "type": "double",
  8276. "value": 5
  8277. },
  8278. "style": {
  8279. "type": "map<string,string>",
  8280. "value": {
  8281. "stroke": "#000000",
  8282. "fill": "#000000",
  8283. "opacity": 0,
  8284. "stroke-width": 1
  8285. }
  8286. },
  8287. "mapper": {
  8288. "type": "code",
  8289. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8290. },
  8291. "parser": {
  8292. "type": "code",
  8293. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8294. },
  8295. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8296. "position": {
  8297. "type": "list<double>",
  8298. "value": [
  8299. "0;-32.09520575257312,0%",
  8300. "0;-27.48968223506529,0%"
  8301. ]
  8302. },
  8303. "orientation": {
  8304. "type": "double",
  8305. "value": "0;33.78508531534644"
  8306. },
  8307. "scale": {
  8308. "type": "list<double>",
  8309. "value": [
  8310. 1,
  8311. 1
  8312. ]
  8313. },
  8314. "arrow": "arrowHead",
  8315. "arrowType": "circle-black",
  8316. "$linkDecoratorInfo": {
  8317. "type": "map<string,double>",
  8318. "value": {
  8319. "xratio": -1,
  8320. "yoffset": -5
  8321. }
  8322. }
  8323. },
  8324. "292": {
  8325. "r": {
  8326. "type": "double",
  8327. "value": 5
  8328. },
  8329. "style": {
  8330. "type": "map<string,string>",
  8331. "value": {
  8332. "stroke": "#000000",
  8333. "fill": "#ffffff",
  8334. "opacity": 0,
  8335. "stroke-width": 1
  8336. }
  8337. },
  8338. "mapper": {
  8339. "type": "code",
  8340. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8341. },
  8342. "parser": {
  8343. "type": "code",
  8344. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8345. },
  8346. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8347. "position": {
  8348. "type": "list<double>",
  8349. "value": [
  8350. "0;-32.09520575257312,0%",
  8351. "0;-27.48968223506529,0%"
  8352. ]
  8353. },
  8354. "orientation": {
  8355. "type": "double",
  8356. "value": "0;33.78508531534644"
  8357. },
  8358. "scale": {
  8359. "type": "list<double>",
  8360. "value": [
  8361. 1,
  8362. 1
  8363. ]
  8364. },
  8365. "arrow": "arrowHead",
  8366. "arrowType": "circle-white",
  8367. "$linkDecoratorInfo": {
  8368. "type": "map<string,double>",
  8369. "value": {
  8370. "xratio": -1,
  8371. "yoffset": -5
  8372. }
  8373. }
  8374. },
  8375. "293": {
  8376. "r": {
  8377. "type": "double",
  8378. "value": 10
  8379. },
  8380. "style": {
  8381. "type": "map<string,string>",
  8382. "value": {
  8383. "stroke": "#000000",
  8384. "fill": "#ffffff",
  8385. "opacity": 0,
  8386. "stroke-width": 1
  8387. }
  8388. },
  8389. "mapper": {
  8390. "type": "code",
  8391. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8392. },
  8393. "parser": {
  8394. "type": "code",
  8395. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8396. },
  8397. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8398. "position": {
  8399. "type": "list<double>",
  8400. "value": [
  8401. "0;-29.31480933860513,0%",
  8402. "0;-31.645328488200107,0%"
  8403. ]
  8404. },
  8405. "orientation": {
  8406. "type": "double",
  8407. "value": "0;33.78508531534644"
  8408. },
  8409. "scale": {
  8410. "type": "list<double>",
  8411. "value": [
  8412. 1,
  8413. 1
  8414. ]
  8415. },
  8416. "arrow": "arrowHead",
  8417. "arrowType": "circle-white-large",
  8418. "$linkDecoratorInfo": {
  8419. "type": "map<string,double>",
  8420. "value": {
  8421. "xratio": -1,
  8422. "yoffset": -10
  8423. }
  8424. }
  8425. },
  8426. "294": {
  8427. "segments": {
  8428. "type": "string",
  8429. "value": "m0,0 l-20,8 l20,8"
  8430. },
  8431. "style": {
  8432. "type": "map<string,string>",
  8433. "value": {
  8434. "stroke": "#000000",
  8435. "fill": "#000000",
  8436. "fill-opacity": 0,
  8437. "stroke-width": 1,
  8438. "opacity": 0
  8439. }
  8440. },
  8441. "mapper": {
  8442. "type": "code",
  8443. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8444. },
  8445. "parser": {
  8446. "type": "code",
  8447. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8448. },
  8449. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8450. "position": {
  8451. "type": "list<double>",
  8452. "value": [
  8453. "0;-30.426967904192338,0%",
  8454. "0;-29.983069986946248,0%"
  8455. ]
  8456. },
  8457. "orientation": {
  8458. "type": "double",
  8459. "value": "0;33.78508531534644"
  8460. },
  8461. "scale": {
  8462. "type": "list<double>",
  8463. "value": [
  8464. 1,
  8465. 1
  8466. ]
  8467. },
  8468. "arrow": "arrowHead",
  8469. "arrowType": "arrow-empty-large",
  8470. "$linkDecoratorInfo": {
  8471. "type": "map<string,double>",
  8472. "value": {
  8473. "xratio": -1,
  8474. "yoffset": -8
  8475. }
  8476. }
  8477. },
  8478. "295": {
  8479. "segments": {
  8480. "type": "string",
  8481. "value": "m0,0 l-10,4 l10,4"
  8482. },
  8483. "style": {
  8484. "type": "map<string,string>",
  8485. "value": {
  8486. "stroke": "#000000",
  8487. "fill": "#000000",
  8488. "fill-opacity": 0,
  8489. "stroke-width": 1,
  8490. "opacity": 0
  8491. }
  8492. },
  8493. "mapper": {
  8494. "type": "code",
  8495. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8496. },
  8497. "parser": {
  8498. "type": "code",
  8499. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8500. },
  8501. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8502. "position": {
  8503. "type": "list<double>",
  8504. "value": [
  8505. "0;-32.6512850353667,0%",
  8506. "0;-26.658552984438302,0%"
  8507. ]
  8508. },
  8509. "orientation": {
  8510. "type": "double",
  8511. "value": "0;33.78508531534644"
  8512. },
  8513. "scale": {
  8514. "type": "list<double>",
  8515. "value": [
  8516. 1,
  8517. 1
  8518. ]
  8519. },
  8520. "arrow": "arrowHead",
  8521. "arrowType": "arrow-empty",
  8522. "$linkDecoratorInfo": {
  8523. "type": "map<string,double>",
  8524. "value": {
  8525. "xratio": -1,
  8526. "yoffset": -4
  8527. }
  8528. }
  8529. },
  8530. "296": {
  8531. "segments": {
  8532. "type": "string",
  8533. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8534. },
  8535. "style": {
  8536. "type": "map<string,string>",
  8537. "value": {
  8538. "stroke": "#000000",
  8539. "fill": "#000000",
  8540. "opacity": 0,
  8541. "stroke-width": 1
  8542. }
  8543. },
  8544. "mapper": {
  8545. "type": "code",
  8546. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8547. },
  8548. "parser": {
  8549. "type": "code",
  8550. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8551. },
  8552. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8553. "position": {
  8554. "type": "list<double>",
  8555. "value": [
  8556. "0;-29.31480933860513,0%",
  8557. "0;-31.645328488200107,0%"
  8558. ]
  8559. },
  8560. "orientation": {
  8561. "type": "double",
  8562. "value": "0;33.78508531534644"
  8563. },
  8564. "scale": {
  8565. "type": "list<double>",
  8566. "value": [
  8567. 1,
  8568. 1
  8569. ]
  8570. },
  8571. "arrow": "arrowHead",
  8572. "arrowType": "diamond-black-large",
  8573. "$linkDecoratorInfo": {
  8574. "type": "map<string,double>",
  8575. "value": {
  8576. "xratio": -1,
  8577. "yoffset": -10
  8578. }
  8579. }
  8580. },
  8581. "297": {
  8582. "segments": {
  8583. "type": "string",
  8584. "value": "m0,0 l-10,4 l10,4 z"
  8585. },
  8586. "style": {
  8587. "type": "map<string,string>",
  8588. "value": {
  8589. "stroke": "#000000",
  8590. "fill": "#000000",
  8591. "opacity": 0,
  8592. "stroke-width": 1
  8593. }
  8594. },
  8595. "mapper": {
  8596. "type": "code",
  8597. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8598. },
  8599. "parser": {
  8600. "type": "code",
  8601. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8602. },
  8603. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8604. "position": {
  8605. "type": "list<double>",
  8606. "value": [
  8607. "0;-32.6512850353667,0%",
  8608. "0;-26.658552984438302,0%"
  8609. ]
  8610. },
  8611. "orientation": {
  8612. "type": "double",
  8613. "value": "0;33.78508531534644"
  8614. },
  8615. "scale": {
  8616. "type": "list<double>",
  8617. "value": [
  8618. 1,
  8619. 1
  8620. ]
  8621. },
  8622. "arrow": "arrowHead",
  8623. "arrowType": "triangle-black",
  8624. "$linkDecoratorInfo": {
  8625. "type": "map<string,double>",
  8626. "value": {
  8627. "xratio": -1,
  8628. "yoffset": -4
  8629. }
  8630. }
  8631. },
  8632. "298": {
  8633. "segments": {
  8634. "type": "string",
  8635. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8636. },
  8637. "style": {
  8638. "type": "map<string,string>",
  8639. "value": {
  8640. "stroke": "#000000",
  8641. "fill": "#ffffff",
  8642. "opacity": 0,
  8643. "stroke-width": 1
  8644. }
  8645. },
  8646. "mapper": {
  8647. "type": "code",
  8648. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8649. },
  8650. "parser": {
  8651. "type": "code",
  8652. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8653. },
  8654. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8655. "position": {
  8656. "type": "list<double>",
  8657. "value": [
  8658. "0;-29.31480933860513,0%",
  8659. "0;-31.645328488200107,0%"
  8660. ]
  8661. },
  8662. "orientation": {
  8663. "type": "double",
  8664. "value": "0;33.78508531534644"
  8665. },
  8666. "scale": {
  8667. "type": "list<double>",
  8668. "value": [
  8669. 1,
  8670. 1
  8671. ]
  8672. },
  8673. "arrow": "arrowHead",
  8674. "arrowType": "diamond-white-large",
  8675. "$linkDecoratorInfo": {
  8676. "type": "map<string,double>",
  8677. "value": {
  8678. "xratio": -1,
  8679. "yoffset": -10
  8680. }
  8681. }
  8682. },
  8683. "__pLabelText": {
  8684. "position": {
  8685. "type": "list<double>",
  8686. "value": [
  8687. 0,
  8688. 0
  8689. ]
  8690. },
  8691. "orientation": {
  8692. "type": "double",
  8693. "value": 0
  8694. },
  8695. "scale": {
  8696. "type": "list<double>",
  8697. "value": [
  8698. 1,
  8699. 1
  8700. ]
  8701. },
  8702. "textContent": {
  8703. "type": "string",
  8704. "value": "8"
  8705. },
  8706. "style": {
  8707. "type": "map<string,string>",
  8708. "value": {
  8709. "stroke": "#6000ff",
  8710. "fill": "#6000ff",
  8711. "font-size": "15px",
  8712. "opacity": "1"
  8713. }
  8714. },
  8715. "mapper": {
  8716. "type": "code",
  8717. "value": "({'textContent':getAttr('__pLabel')})"
  8718. },
  8719. "parser": {
  8720. "type": "code",
  8721. "value": "({'__pLabel':getAttr('textContent')})"
  8722. },
  8723. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  8724. }
  8725. },
  8726. "edges": []
  8727. }
  8728. },
  8729. "$asuri": {
  8730. "type": "string",
  8731. "value": "/Formalisms/Pacman/Pacman.pattern/__pGoG/28.instance"
  8732. },
  8733. "$segments": {
  8734. "type": "map<string,list<string>>",
  8735. "value": {
  8736. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/26.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGoGLink/28.instance": "M326,503L360.87560216654106,526.3340359819304",
  8737. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGoGLink/28.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGhostIcon/27.instance": "M360.8126498464469,526.2919168037379L395.49969758668885,549.4997976659141"
  8738. }
  8739. },
  8740. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGoGLink"
  8741. },
  8742. "29": {
  8743. "link-style": {
  8744. "type": "map<string,string>",
  8745. "value": {
  8746. "stroke": "#00ff00",
  8747. "stroke-dasharray": "",
  8748. "stroke-opacity": 0.2,
  8749. "stroke-width": 1,
  8750. "arrow-start": "none",
  8751. "arrow-end": "classic-wide-long"
  8752. }
  8753. },
  8754. "typename": {
  8755. "type": "string",
  8756. "value": "PatternContentsLink"
  8757. },
  8758. "position": {
  8759. "type": "list<double>",
  8760. "value": [
  8761. 276.09967103825153,
  8762. 439.3627466942598
  8763. ]
  8764. },
  8765. "orientation": {
  8766. "type": "double",
  8767. "value": 0
  8768. },
  8769. "scale": {
  8770. "type": "list<double>",
  8771. "value": [
  8772. 1,
  8773. 1
  8774. ]
  8775. },
  8776. "mapper": {
  8777. "type": "code",
  8778. "value": ""
  8779. },
  8780. "parser": {
  8781. "type": "code",
  8782. "value": ""
  8783. },
  8784. "$contents": {
  8785. "type": "map<string,*>",
  8786. "value": {
  8787. "nodes": {},
  8788. "edges": []
  8789. }
  8790. },
  8791. "$asuri": {
  8792. "type": "string",
  8793. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/29.instance"
  8794. },
  8795. "$segments": {
  8796. "type": "map<string,list<string>>",
  8797. "value": {
  8798. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon/21.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/29.instance": "M175,325L276.09967103825153,439.3627466942598",
  8799. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/29.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/26.instance": "M276.04963880535666,439.30615082685154L376.99941023071307,553.4993328599897"
  8800. }
  8801. },
  8802. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  8803. },
  8804. "45": {
  8805. "link-style": {
  8806. "type": "map<string,string>",
  8807. "value": {
  8808. "stroke": "#000000",
  8809. "stroke-dasharray": "",
  8810. "stroke-opacity": 1,
  8811. "stroke-width": 0
  8812. }
  8813. },
  8814. "arrowHead": {
  8815. "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)",
  8816. "value": "custom"
  8817. },
  8818. "arrowTail": {
  8819. "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)",
  8820. "value": "arrow-black"
  8821. },
  8822. "typename": {
  8823. "type": "string",
  8824. "value": "rightLink"
  8825. },
  8826. "position": {
  8827. "type": "list<double>",
  8828. "value": [
  8829. 858.8500004882812,
  8830. 614.9812500610351
  8831. ]
  8832. },
  8833. "orientation": {
  8834. "type": "double",
  8835. "value": 0
  8836. },
  8837. "scale": {
  8838. "type": "list<double>",
  8839. "value": [
  8840. 1,
  8841. 1
  8842. ]
  8843. },
  8844. "mapper": {
  8845. "type": "code",
  8846. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8847. },
  8848. "parser": {
  8849. "type": "code",
  8850. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8851. },
  8852. "$contents": {
  8853. "type": "map<string,*>",
  8854. "value": {
  8855. "nodes": {
  8856. "267": {
  8857. "segments": {
  8858. "type": "string",
  8859. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  8860. },
  8861. "style": {
  8862. "type": "map<string,string>",
  8863. "value": {
  8864. "stroke": "#000000",
  8865. "fill": "#000000",
  8866. "opacity": 0,
  8867. "stroke-width": 1
  8868. }
  8869. },
  8870. "mapper": {
  8871. "type": "code",
  8872. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8873. },
  8874. "parser": {
  8875. "type": "code",
  8876. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8877. },
  8878. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8879. "position": {
  8880. "type": "list<double>",
  8881. "value": [
  8882. "0;-32.34567116491917,-99.22778767136681%",
  8883. "0;-0.012080021465521895,-12.40347345892053%"
  8884. ]
  8885. },
  8886. "orientation": {
  8887. "type": "double",
  8888. "value": "0;-172.87498365109838"
  8889. },
  8890. "scale": {
  8891. "type": "list<double>",
  8892. "value": [
  8893. 1,
  8894. 1
  8895. ]
  8896. },
  8897. "arrow": "arrowTail",
  8898. "arrowType": "arrow-black",
  8899. "$linkDecoratorInfo": {
  8900. "type": "map<string,double>",
  8901. "value": {
  8902. "xratio": 1,
  8903. "yoffset": -4
  8904. }
  8905. }
  8906. },
  8907. "268": {
  8908. "segments": {
  8909. "type": "string",
  8910. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8911. },
  8912. "style": {
  8913. "type": "map<string,string>",
  8914. "value": {
  8915. "stroke": "#000000",
  8916. "fill": "#000000",
  8917. "opacity": 0,
  8918. "stroke-width": 1
  8919. }
  8920. },
  8921. "mapper": {
  8922. "type": "code",
  8923. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8924. },
  8925. "parser": {
  8926. "type": "code",
  8927. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8928. },
  8929. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8930. "position": {
  8931. "type": "list<double>",
  8932. "value": [
  8933. "0;-33.08987957245438,-99.22778767136681%",
  8934. "0;5.94158723881651,-12.40347345892053%"
  8935. ]
  8936. },
  8937. "orientation": {
  8938. "type": "double",
  8939. "value": "0;-172.87498365109838"
  8940. },
  8941. "scale": {
  8942. "type": "list<double>",
  8943. "value": [
  8944. 1,
  8945. 1
  8946. ]
  8947. },
  8948. "arrow": "arrowTail",
  8949. "arrowType": "diamond-black-large",
  8950. "$linkDecoratorInfo": {
  8951. "type": "map<string,double>",
  8952. "value": {
  8953. "xratio": 1,
  8954. "yoffset": -10
  8955. }
  8956. }
  8957. },
  8958. "269": {
  8959. "r": {
  8960. "type": "double",
  8961. "value": 10
  8962. },
  8963. "style": {
  8964. "type": "map<string,string>",
  8965. "value": {
  8966. "stroke": "#000000",
  8967. "fill": "#000000",
  8968. "opacity": 0,
  8969. "stroke-width": 1
  8970. }
  8971. },
  8972. "mapper": {
  8973. "type": "code",
  8974. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8975. },
  8976. "parser": {
  8977. "type": "code",
  8978. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  8979. },
  8980. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8981. "position": {
  8982. "type": "list<double>",
  8983. "value": [
  8984. "0;-33.08987957245438,-99.22778767136681%",
  8985. "0;5.94158723881651,-12.40347345892053%"
  8986. ]
  8987. },
  8988. "orientation": {
  8989. "type": "double",
  8990. "value": "0;-172.87498365109838"
  8991. },
  8992. "scale": {
  8993. "type": "list<double>",
  8994. "value": [
  8995. 1,
  8996. 1
  8997. ]
  8998. },
  8999. "arrow": "arrowTail",
  9000. "arrowType": "circle-black-large",
  9001. "$linkDecoratorInfo": {
  9002. "type": "map<string,double>",
  9003. "value": {
  9004. "xratio": 1,
  9005. "yoffset": -10
  9006. }
  9007. }
  9008. },
  9009. "270": {
  9010. "r": {
  9011. "type": "double",
  9012. "value": 10
  9013. },
  9014. "style": {
  9015. "type": "map<string,string>",
  9016. "value": {
  9017. "stroke": "#000000",
  9018. "fill": "#ffffff",
  9019. "opacity": 0,
  9020. "stroke-width": 1
  9021. }
  9022. },
  9023. "mapper": {
  9024. "type": "code",
  9025. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9026. },
  9027. "parser": {
  9028. "type": "code",
  9029. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9030. },
  9031. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9032. "position": {
  9033. "type": "list<double>",
  9034. "value": [
  9035. "0;-33.08987957245438,-99.22778767136681%",
  9036. "0;5.94158723881651,-12.40347345892053%"
  9037. ]
  9038. },
  9039. "orientation": {
  9040. "type": "double",
  9041. "value": "0;-172.87498365109838"
  9042. },
  9043. "scale": {
  9044. "type": "list<double>",
  9045. "value": [
  9046. 1,
  9047. 1
  9048. ]
  9049. },
  9050. "arrow": "arrowTail",
  9051. "arrowType": "circle-white-large",
  9052. "$linkDecoratorInfo": {
  9053. "type": "map<string,double>",
  9054. "value": {
  9055. "xratio": 1,
  9056. "yoffset": -10
  9057. }
  9058. }
  9059. },
  9060. "271": {
  9061. "r": {
  9062. "type": "double",
  9063. "value": 5
  9064. },
  9065. "style": {
  9066. "type": "map<string,string>",
  9067. "value": {
  9068. "stroke": "#000000",
  9069. "fill": "#000000",
  9070. "opacity": 0,
  9071. "stroke-width": 1
  9072. }
  9073. },
  9074. "mapper": {
  9075. "type": "code",
  9076. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9077. },
  9078. "parser": {
  9079. "type": "code",
  9080. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9081. },
  9082. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9083. "position": {
  9084. "type": "list<double>",
  9085. "value": [
  9086. "0;-32.469705899508426,-99.22778767136681%",
  9087. "0;0.9801978552480932,-12.40347345892053%"
  9088. ]
  9089. },
  9090. "orientation": {
  9091. "type": "double",
  9092. "value": "0;-172.87498365109838"
  9093. },
  9094. "scale": {
  9095. "type": "list<double>",
  9096. "value": [
  9097. 1,
  9098. 1
  9099. ]
  9100. },
  9101. "arrow": "arrowTail",
  9102. "arrowType": "circle-black",
  9103. "$linkDecoratorInfo": {
  9104. "type": "map<string,double>",
  9105. "value": {
  9106. "xratio": 1,
  9107. "yoffset": -5
  9108. }
  9109. }
  9110. },
  9111. "272": {
  9112. "segments": {
  9113. "type": "string",
  9114. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9115. },
  9116. "style": {
  9117. "type": "map<string,string>",
  9118. "value": {
  9119. "stroke": "#000000",
  9120. "fill": "#000000",
  9121. "opacity": 0,
  9122. "stroke-width": 1
  9123. }
  9124. },
  9125. "mapper": {
  9126. "type": "code",
  9127. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9128. },
  9129. "parser": {
  9130. "type": "code",
  9131. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9132. },
  9133. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9134. "position": {
  9135. "type": "list<double>",
  9136. "value": [
  9137. "0;-32.469705899508426,-99.22778767136681%",
  9138. "0;0.9801978552480932,-12.40347345892053%"
  9139. ]
  9140. },
  9141. "orientation": {
  9142. "type": "double",
  9143. "value": "0;-172.87498365109838"
  9144. },
  9145. "scale": {
  9146. "type": "list<double>",
  9147. "value": [
  9148. 1,
  9149. 1
  9150. ]
  9151. },
  9152. "arrow": "arrowTail",
  9153. "arrowType": "diamond-black",
  9154. "$linkDecoratorInfo": {
  9155. "type": "map<string,double>",
  9156. "value": {
  9157. "xratio": 1,
  9158. "yoffset": -5
  9159. }
  9160. }
  9161. },
  9162. "273": {
  9163. "segments": {
  9164. "type": "string",
  9165. "value": "m0,0 l20,10 l-20,10 z"
  9166. },
  9167. "style": {
  9168. "type": "map<string,string>",
  9169. "value": {
  9170. "stroke": "#000000",
  9171. "fill": "#000000",
  9172. "opacity": 0,
  9173. "stroke-width": 1
  9174. }
  9175. },
  9176. "mapper": {
  9177. "type": "code",
  9178. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9179. },
  9180. "parser": {
  9181. "type": "code",
  9182. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9183. },
  9184. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9185. "position": {
  9186. "type": "list<double>",
  9187. "value": [
  9188. "0;-33.08987957245438,-99.22778767136681%",
  9189. "0;5.94158723881651,-12.40347345892053%"
  9190. ]
  9191. },
  9192. "orientation": {
  9193. "type": "double",
  9194. "value": "0;-172.87498365109838"
  9195. },
  9196. "scale": {
  9197. "type": "list<double>",
  9198. "value": [
  9199. 1,
  9200. 1
  9201. ]
  9202. },
  9203. "arrow": "arrowTail",
  9204. "arrowType": "triangle-black-large",
  9205. "$linkDecoratorInfo": {
  9206. "type": "map<string,double>",
  9207. "value": {
  9208. "xratio": 1,
  9209. "yoffset": -10
  9210. }
  9211. }
  9212. },
  9213. "274": {
  9214. "segments": {
  9215. "type": "string",
  9216. "value": "m0,0 l10,4 l-10,4 z"
  9217. },
  9218. "style": {
  9219. "type": "map<string,string>",
  9220. "value": {
  9221. "stroke": "#000000",
  9222. "fill": "#000000",
  9223. "opacity": 0,
  9224. "stroke-width": 1
  9225. }
  9226. },
  9227. "mapper": {
  9228. "type": "code",
  9229. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9230. },
  9231. "parser": {
  9232. "type": "code",
  9233. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9234. },
  9235. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9236. "position": {
  9237. "type": "list<double>",
  9238. "value": [
  9239. "0;-32.34567116491917,-99.22778767136681%",
  9240. "0;-0.012080021465521895,-12.40347345892053%"
  9241. ]
  9242. },
  9243. "orientation": {
  9244. "type": "double",
  9245. "value": "0;-172.87498365109838"
  9246. },
  9247. "scale": {
  9248. "type": "list<double>",
  9249. "value": [
  9250. 1,
  9251. 1
  9252. ]
  9253. },
  9254. "arrow": "arrowTail",
  9255. "arrowType": "triangle-black",
  9256. "$linkDecoratorInfo": {
  9257. "type": "map<string,double>",
  9258. "value": {
  9259. "xratio": 1,
  9260. "yoffset": -4
  9261. }
  9262. }
  9263. },
  9264. "275": {
  9265. "segments": {
  9266. "type": "string",
  9267. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  9268. },
  9269. "style": {
  9270. "type": "map<string,string>",
  9271. "value": {
  9272. "stroke": "#000000",
  9273. "fill": "#000000",
  9274. "opacity": 0,
  9275. "stroke-width": 1
  9276. }
  9277. },
  9278. "mapper": {
  9279. "type": "code",
  9280. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9281. },
  9282. "parser": {
  9283. "type": "code",
  9284. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9285. },
  9286. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9287. "position": {
  9288. "type": "list<double>",
  9289. "value": [
  9290. "0;-32.841810103275975,-99.22778767136681%",
  9291. "0;3.957031485389166,-12.40347345892053%"
  9292. ]
  9293. },
  9294. "orientation": {
  9295. "type": "double",
  9296. "value": "0;-172.87498365109838"
  9297. },
  9298. "scale": {
  9299. "type": "list<double>",
  9300. "value": [
  9301. 1,
  9302. 1
  9303. ]
  9304. },
  9305. "arrow": "arrowTail",
  9306. "arrowType": "arrow-black-large",
  9307. "$linkDecoratorInfo": {
  9308. "type": "map<string,double>",
  9309. "value": {
  9310. "xratio": 1,
  9311. "yoffset": -8
  9312. }
  9313. }
  9314. },
  9315. "276": {
  9316. "segments": {
  9317. "type": "string",
  9318. "value": "m0,0 l20,10 l-20,10 z"
  9319. },
  9320. "style": {
  9321. "type": "map<string,string>",
  9322. "value": {
  9323. "stroke": "#000000",
  9324. "fill": "#ffffff",
  9325. "opacity": 0,
  9326. "stroke-width": 1
  9327. }
  9328. },
  9329. "mapper": {
  9330. "type": "code",
  9331. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9332. },
  9333. "parser": {
  9334. "type": "code",
  9335. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9336. },
  9337. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9338. "position": {
  9339. "type": "list<double>",
  9340. "value": [
  9341. "0;-33.08987957245438,-99.22778767136681%",
  9342. "0;5.94158723881651,-12.40347345892053%"
  9343. ]
  9344. },
  9345. "orientation": {
  9346. "type": "double",
  9347. "value": "0;-172.87498365109838"
  9348. },
  9349. "scale": {
  9350. "type": "list<double>",
  9351. "value": [
  9352. 1,
  9353. 1
  9354. ]
  9355. },
  9356. "arrow": "arrowTail",
  9357. "arrowType": "triangle-white-large",
  9358. "$linkDecoratorInfo": {
  9359. "type": "map<string,double>",
  9360. "value": {
  9361. "xratio": 1,
  9362. "yoffset": -10
  9363. }
  9364. }
  9365. },
  9366. "277": {
  9367. "segments": {
  9368. "type": "string",
  9369. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9370. },
  9371. "style": {
  9372. "type": "map<string,string>",
  9373. "value": {
  9374. "stroke": "#000000",
  9375. "fill": "#ffffff",
  9376. "opacity": 0,
  9377. "stroke-width": 1
  9378. }
  9379. },
  9380. "mapper": {
  9381. "type": "code",
  9382. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9383. },
  9384. "parser": {
  9385. "type": "code",
  9386. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9387. },
  9388. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9389. "position": {
  9390. "type": "list<double>",
  9391. "value": [
  9392. "0;-32.469705899508426,-99.22778767136681%",
  9393. "0;0.9801978552480932,-12.40347345892053%"
  9394. ]
  9395. },
  9396. "orientation": {
  9397. "type": "double",
  9398. "value": "0;-172.87498365109838"
  9399. },
  9400. "scale": {
  9401. "type": "list<double>",
  9402. "value": [
  9403. 1,
  9404. 1
  9405. ]
  9406. },
  9407. "arrow": "arrowTail",
  9408. "arrowType": "diamond-white",
  9409. "$linkDecoratorInfo": {
  9410. "type": "map<string,double>",
  9411. "value": {
  9412. "xratio": 1,
  9413. "yoffset": -5
  9414. }
  9415. }
  9416. },
  9417. "278": {
  9418. "segments": {
  9419. "type": "string",
  9420. "value": "m0,0 l20,8 l-20,8"
  9421. },
  9422. "style": {
  9423. "type": "map<string,string>",
  9424. "value": {
  9425. "stroke": "#000000",
  9426. "fill": "#000000",
  9427. "fill-opacity": 0,
  9428. "stroke-width": 1,
  9429. "opacity": 0
  9430. }
  9431. },
  9432. "mapper": {
  9433. "type": "code",
  9434. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9435. },
  9436. "parser": {
  9437. "type": "code",
  9438. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9439. },
  9440. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9441. "position": {
  9442. "type": "list<double>",
  9443. "value": [
  9444. "0;-32.841810103275975,-99.22778767136681%",
  9445. "0;3.957031485389166,-12.40347345892053%"
  9446. ]
  9447. },
  9448. "orientation": {
  9449. "type": "double",
  9450. "value": "0;-172.87498365109838"
  9451. },
  9452. "scale": {
  9453. "type": "list<double>",
  9454. "value": [
  9455. 1,
  9456. 1
  9457. ]
  9458. },
  9459. "arrow": "arrowTail",
  9460. "arrowType": "arrow-empty-large",
  9461. "$linkDecoratorInfo": {
  9462. "type": "map<string,double>",
  9463. "value": {
  9464. "xratio": 1,
  9465. "yoffset": -8
  9466. }
  9467. }
  9468. },
  9469. "279": {
  9470. "r": {
  9471. "type": "double",
  9472. "value": 5
  9473. },
  9474. "style": {
  9475. "type": "map<string,string>",
  9476. "value": {
  9477. "stroke": "#000000",
  9478. "fill": "#ffffff",
  9479. "opacity": 0,
  9480. "stroke-width": 1
  9481. }
  9482. },
  9483. "mapper": {
  9484. "type": "code",
  9485. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9486. },
  9487. "parser": {
  9488. "type": "code",
  9489. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9490. },
  9491. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9492. "position": {
  9493. "type": "list<double>",
  9494. "value": [
  9495. "0;-32.469705899508426,-99.22778767136681%",
  9496. "0;0.9801978552480932,-12.40347345892053%"
  9497. ]
  9498. },
  9499. "orientation": {
  9500. "type": "double",
  9501. "value": "0;-172.87498365109838"
  9502. },
  9503. "scale": {
  9504. "type": "list<double>",
  9505. "value": [
  9506. 1,
  9507. 1
  9508. ]
  9509. },
  9510. "arrow": "arrowTail",
  9511. "arrowType": "circle-white",
  9512. "$linkDecoratorInfo": {
  9513. "type": "map<string,double>",
  9514. "value": {
  9515. "xratio": 1,
  9516. "yoffset": -5
  9517. }
  9518. }
  9519. },
  9520. "280": {
  9521. "segments": {
  9522. "type": "string",
  9523. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9524. },
  9525. "style": {
  9526. "type": "map<string,string>",
  9527. "value": {
  9528. "stroke": "#000000",
  9529. "fill": "#ffffff",
  9530. "opacity": 0,
  9531. "stroke-width": 1
  9532. }
  9533. },
  9534. "mapper": {
  9535. "type": "code",
  9536. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9537. },
  9538. "parser": {
  9539. "type": "code",
  9540. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9541. },
  9542. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9543. "position": {
  9544. "type": "list<double>",
  9545. "value": [
  9546. "0;-33.08987957245438,-99.22778767136681%",
  9547. "0;5.94158723881651,-12.40347345892053%"
  9548. ]
  9549. },
  9550. "orientation": {
  9551. "type": "double",
  9552. "value": "0;-172.87498365109838"
  9553. },
  9554. "scale": {
  9555. "type": "list<double>",
  9556. "value": [
  9557. 1,
  9558. 1
  9559. ]
  9560. },
  9561. "arrow": "arrowTail",
  9562. "arrowType": "diamond-white-large",
  9563. "$linkDecoratorInfo": {
  9564. "type": "map<string,double>",
  9565. "value": {
  9566. "xratio": 1,
  9567. "yoffset": -10
  9568. }
  9569. }
  9570. },
  9571. "281": {
  9572. "segments": {
  9573. "type": "string",
  9574. "value": "m0,0 l10,4 l-10,4"
  9575. },
  9576. "style": {
  9577. "type": "map<string,string>",
  9578. "value": {
  9579. "stroke": "#000000",
  9580. "fill": "#000000",
  9581. "fill-opacity": 0,
  9582. "stroke-width": 1,
  9583. "opacity": 0
  9584. }
  9585. },
  9586. "mapper": {
  9587. "type": "code",
  9588. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9589. },
  9590. "parser": {
  9591. "type": "code",
  9592. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9593. },
  9594. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9595. "position": {
  9596. "type": "list<double>",
  9597. "value": [
  9598. "0;-32.34567116491917,-99.22778767136681%",
  9599. "0;-0.012080021465521895,-12.40347345892053%"
  9600. ]
  9601. },
  9602. "orientation": {
  9603. "type": "double",
  9604. "value": "0;-172.87498365109838"
  9605. },
  9606. "scale": {
  9607. "type": "list<double>",
  9608. "value": [
  9609. 1,
  9610. 1
  9611. ]
  9612. },
  9613. "arrow": "arrowTail",
  9614. "arrowType": "arrow-empty",
  9615. "$linkDecoratorInfo": {
  9616. "type": "map<string,double>",
  9617. "value": {
  9618. "xratio": 1,
  9619. "yoffset": -4
  9620. }
  9621. }
  9622. },
  9623. "282": {
  9624. "segments": {
  9625. "type": "string",
  9626. "value": "m0,0 l10,5 l-10,5 z"
  9627. },
  9628. "style": {
  9629. "type": "map<string,string>",
  9630. "value": {
  9631. "stroke": "#000000",
  9632. "fill": "#ffffff",
  9633. "opacity": 0,
  9634. "stroke-width": 1
  9635. }
  9636. },
  9637. "mapper": {
  9638. "type": "code",
  9639. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9640. },
  9641. "parser": {
  9642. "type": "code",
  9643. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9644. },
  9645. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9646. "position": {
  9647. "type": "list<double>",
  9648. "value": [
  9649. "0;-32.469705899508426,-99.22778767136681%",
  9650. "0;0.9801978552480932,-12.40347345892053%"
  9651. ]
  9652. },
  9653. "orientation": {
  9654. "type": "double",
  9655. "value": "0;-172.87498365109838"
  9656. },
  9657. "scale": {
  9658. "type": "list<double>",
  9659. "value": [
  9660. 1,
  9661. 1
  9662. ]
  9663. },
  9664. "arrow": "arrowTail",
  9665. "arrowType": "triangle-white",
  9666. "$linkDecoratorInfo": {
  9667. "type": "map<string,double>",
  9668. "value": {
  9669. "xratio": 1,
  9670. "yoffset": -5
  9671. }
  9672. }
  9673. },
  9674. "283": {
  9675. "segments": {
  9676. "type": "string",
  9677. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9678. },
  9679. "style": {
  9680. "type": "map<string,string>",
  9681. "value": {
  9682. "stroke": "#000000",
  9683. "fill": "#ffffff",
  9684. "opacity": 0,
  9685. "stroke-width": 1
  9686. }
  9687. },
  9688. "mapper": {
  9689. "type": "code",
  9690. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9691. },
  9692. "parser": {
  9693. "type": "code",
  9694. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9695. },
  9696. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9697. "position": {
  9698. "type": "list<double>",
  9699. "value": [
  9700. "0;31.529825838772695,0%",
  9701. "0;8.980139322533205,0%"
  9702. ]
  9703. },
  9704. "orientation": {
  9705. "type": "double",
  9706. "value": "0;-172.87498365109812"
  9707. },
  9708. "scale": {
  9709. "type": "list<double>",
  9710. "value": [
  9711. 1,
  9712. 1
  9713. ]
  9714. },
  9715. "arrow": "arrowHead",
  9716. "arrowType": "diamond-white",
  9717. "$linkDecoratorInfo": {
  9718. "type": "map<string,double>",
  9719. "value": {
  9720. "xratio": -1,
  9721. "yoffset": -5
  9722. }
  9723. }
  9724. },
  9725. "284": {
  9726. "segments": {
  9727. "type": "string",
  9728. "value": "m0,0 l-10,5 l10,5 z"
  9729. },
  9730. "style": {
  9731. "type": "map<string,string>",
  9732. "value": {
  9733. "stroke": "#000000",
  9734. "fill": "#ffffff",
  9735. "opacity": 0,
  9736. "stroke-width": 1
  9737. }
  9738. },
  9739. "mapper": {
  9740. "type": "code",
  9741. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9742. },
  9743. "parser": {
  9744. "type": "code",
  9745. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9746. },
  9747. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9748. "position": {
  9749. "type": "list<double>",
  9750. "value": [
  9751. "0;31.529825838772695,0%",
  9752. "0;8.980139322533205,0%"
  9753. ]
  9754. },
  9755. "orientation": {
  9756. "type": "double",
  9757. "value": "0;-172.87498365109812"
  9758. },
  9759. "scale": {
  9760. "type": "list<double>",
  9761. "value": [
  9762. 1,
  9763. 1
  9764. ]
  9765. },
  9766. "arrow": "arrowHead",
  9767. "arrowType": "triangle-white",
  9768. "$linkDecoratorInfo": {
  9769. "type": "map<string,double>",
  9770. "value": {
  9771. "xratio": -1,
  9772. "yoffset": -5
  9773. }
  9774. }
  9775. },
  9776. "285": {
  9777. "segments": {
  9778. "type": "string",
  9779. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9780. },
  9781. "style": {
  9782. "type": "map<string,string>",
  9783. "value": {
  9784. "stroke": "#000000",
  9785. "fill": "#000000",
  9786. "opacity": 0,
  9787. "stroke-width": 1
  9788. }
  9789. },
  9790. "mapper": {
  9791. "type": "code",
  9792. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9793. },
  9794. "parser": {
  9795. "type": "code",
  9796. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9797. },
  9798. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9799. "position": {
  9800. "type": "list<double>",
  9801. "value": [
  9802. "0;31.529825838772695,0%",
  9803. "0;8.980139322533205,0%"
  9804. ]
  9805. },
  9806. "orientation": {
  9807. "type": "double",
  9808. "value": "0;-172.87498365109812"
  9809. },
  9810. "scale": {
  9811. "type": "list<double>",
  9812. "value": [
  9813. 1,
  9814. 1
  9815. ]
  9816. },
  9817. "arrow": "arrowHead",
  9818. "arrowType": "diamond-black",
  9819. "$linkDecoratorInfo": {
  9820. "type": "map<string,double>",
  9821. "value": {
  9822. "xratio": -1,
  9823. "yoffset": -5
  9824. }
  9825. }
  9826. },
  9827. "286": {
  9828. "r": {
  9829. "type": "double",
  9830. "value": 10
  9831. },
  9832. "style": {
  9833. "type": "map<string,string>",
  9834. "value": {
  9835. "stroke": "#000000",
  9836. "fill": "#000000",
  9837. "opacity": 0,
  9838. "stroke-width": 1
  9839. }
  9840. },
  9841. "mapper": {
  9842. "type": "code",
  9843. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9844. },
  9845. "parser": {
  9846. "type": "code",
  9847. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9848. },
  9849. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9850. "position": {
  9851. "type": "list<double>",
  9852. "value": [
  9853. "0;30.90965216582663,0%",
  9854. "0;13.941528706101622,0%"
  9855. ]
  9856. },
  9857. "orientation": {
  9858. "type": "double",
  9859. "value": "0;-172.87498365109812"
  9860. },
  9861. "scale": {
  9862. "type": "list<double>",
  9863. "value": [
  9864. 1,
  9865. 1
  9866. ]
  9867. },
  9868. "arrow": "arrowHead",
  9869. "arrowType": "circle-black-large",
  9870. "$linkDecoratorInfo": {
  9871. "type": "map<string,double>",
  9872. "value": {
  9873. "xratio": -1,
  9874. "yoffset": -10
  9875. }
  9876. }
  9877. },
  9878. "287": {
  9879. "segments": {
  9880. "type": "string",
  9881. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  9882. },
  9883. "style": {
  9884. "type": "map<string,string>",
  9885. "value": {
  9886. "stroke": "#000000",
  9887. "fill": "#000000",
  9888. "opacity": 0,
  9889. "stroke-width": 1
  9890. }
  9891. },
  9892. "mapper": {
  9893. "type": "code",
  9894. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9895. },
  9896. "parser": {
  9897. "type": "code",
  9898. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9899. },
  9900. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9901. "position": {
  9902. "type": "list<double>",
  9903. "value": [
  9904. "0;31.157721635005032,0%",
  9905. "0;11.956972952674278,0%"
  9906. ]
  9907. },
  9908. "orientation": {
  9909. "type": "double",
  9910. "value": "0;-172.87498365109812"
  9911. },
  9912. "scale": {
  9913. "type": "list<double>",
  9914. "value": [
  9915. 1,
  9916. 1
  9917. ]
  9918. },
  9919. "arrow": "arrowHead",
  9920. "arrowType": "arrow-black-large",
  9921. "$linkDecoratorInfo": {
  9922. "type": "map<string,double>",
  9923. "value": {
  9924. "xratio": -1,
  9925. "yoffset": -8
  9926. }
  9927. }
  9928. },
  9929. "288": {
  9930. "segments": {
  9931. "type": "string",
  9932. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  9933. },
  9934. "style": {
  9935. "type": "map<string,string>",
  9936. "value": {
  9937. "stroke": "#000000",
  9938. "fill": "#000000",
  9939. "opacity": 0,
  9940. "stroke-width": 1
  9941. }
  9942. },
  9943. "mapper": {
  9944. "type": "code",
  9945. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9946. },
  9947. "parser": {
  9948. "type": "code",
  9949. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9950. },
  9951. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9952. "position": {
  9953. "type": "list<double>",
  9954. "value": [
  9955. "0;31.653860573361953,0%",
  9956. "0;7.98786144581959,0%"
  9957. ]
  9958. },
  9959. "orientation": {
  9960. "type": "double",
  9961. "value": "0;-172.87498365109812"
  9962. },
  9963. "scale": {
  9964. "type": "list<double>",
  9965. "value": [
  9966. 1,
  9967. 1
  9968. ]
  9969. },
  9970. "arrow": "arrowHead",
  9971. "arrowType": "arrow-black",
  9972. "$linkDecoratorInfo": {
  9973. "type": "map<string,double>",
  9974. "value": {
  9975. "xratio": -1,
  9976. "yoffset": -4
  9977. }
  9978. }
  9979. },
  9980. "289": {
  9981. "segments": {
  9982. "type": "string",
  9983. "value": "m0,0 l-20,10 l20,10 z"
  9984. },
  9985. "style": {
  9986. "type": "map<string,string>",
  9987. "value": {
  9988. "stroke": "#000000",
  9989. "fill": "#ffffff",
  9990. "opacity": 0,
  9991. "stroke-width": 1
  9992. }
  9993. },
  9994. "mapper": {
  9995. "type": "code",
  9996. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  9997. },
  9998. "parser": {
  9999. "type": "code",
  10000. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10001. },
  10002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10003. "position": {
  10004. "type": "list<double>",
  10005. "value": [
  10006. "0;30.90965216582663,0%",
  10007. "0;13.941528706101622,0%"
  10008. ]
  10009. },
  10010. "orientation": {
  10011. "type": "double",
  10012. "value": "0;-172.87498365109812"
  10013. },
  10014. "scale": {
  10015. "type": "list<double>",
  10016. "value": [
  10017. 1,
  10018. 1
  10019. ]
  10020. },
  10021. "arrow": "arrowHead",
  10022. "arrowType": "triangle-white-large",
  10023. "$linkDecoratorInfo": {
  10024. "type": "map<string,double>",
  10025. "value": {
  10026. "xratio": -1,
  10027. "yoffset": -10
  10028. }
  10029. }
  10030. },
  10031. "290": {
  10032. "segments": {
  10033. "type": "string",
  10034. "value": "m0,0 l-20,10 l20,10 z"
  10035. },
  10036. "style": {
  10037. "type": "map<string,string>",
  10038. "value": {
  10039. "stroke": "#000000",
  10040. "fill": "#000000",
  10041. "opacity": 0,
  10042. "stroke-width": 1
  10043. }
  10044. },
  10045. "mapper": {
  10046. "type": "code",
  10047. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10048. },
  10049. "parser": {
  10050. "type": "code",
  10051. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10052. },
  10053. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10054. "position": {
  10055. "type": "list<double>",
  10056. "value": [
  10057. "0;30.90965216582663,0%",
  10058. "0;13.941528706101622,0%"
  10059. ]
  10060. },
  10061. "orientation": {
  10062. "type": "double",
  10063. "value": "0;-172.87498365109812"
  10064. },
  10065. "scale": {
  10066. "type": "list<double>",
  10067. "value": [
  10068. 1,
  10069. 1
  10070. ]
  10071. },
  10072. "arrow": "arrowHead",
  10073. "arrowType": "triangle-black-large",
  10074. "$linkDecoratorInfo": {
  10075. "type": "map<string,double>",
  10076. "value": {
  10077. "xratio": -1,
  10078. "yoffset": -10
  10079. }
  10080. }
  10081. },
  10082. "291": {
  10083. "r": {
  10084. "type": "double",
  10085. "value": 5
  10086. },
  10087. "style": {
  10088. "type": "map<string,string>",
  10089. "value": {
  10090. "stroke": "#000000",
  10091. "fill": "#000000",
  10092. "opacity": 0,
  10093. "stroke-width": 1
  10094. }
  10095. },
  10096. "mapper": {
  10097. "type": "code",
  10098. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10099. },
  10100. "parser": {
  10101. "type": "code",
  10102. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10103. },
  10104. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10105. "position": {
  10106. "type": "list<double>",
  10107. "value": [
  10108. "0;31.529825838772695,0%",
  10109. "0;8.980139322533205,0%"
  10110. ]
  10111. },
  10112. "orientation": {
  10113. "type": "double",
  10114. "value": "0;-172.87498365109812"
  10115. },
  10116. "scale": {
  10117. "type": "list<double>",
  10118. "value": [
  10119. 1,
  10120. 1
  10121. ]
  10122. },
  10123. "arrow": "arrowHead",
  10124. "arrowType": "circle-black",
  10125. "$linkDecoratorInfo": {
  10126. "type": "map<string,double>",
  10127. "value": {
  10128. "xratio": -1,
  10129. "yoffset": -5
  10130. }
  10131. }
  10132. },
  10133. "292": {
  10134. "r": {
  10135. "type": "double",
  10136. "value": 5
  10137. },
  10138. "style": {
  10139. "type": "map<string,string>",
  10140. "value": {
  10141. "stroke": "#000000",
  10142. "fill": "#ffffff",
  10143. "opacity": 0,
  10144. "stroke-width": 1
  10145. }
  10146. },
  10147. "mapper": {
  10148. "type": "code",
  10149. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10150. },
  10151. "parser": {
  10152. "type": "code",
  10153. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10154. },
  10155. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10156. "position": {
  10157. "type": "list<double>",
  10158. "value": [
  10159. "0;31.529825838772695,0%",
  10160. "0;8.980139322533205,0%"
  10161. ]
  10162. },
  10163. "orientation": {
  10164. "type": "double",
  10165. "value": "0;-172.87498365109812"
  10166. },
  10167. "scale": {
  10168. "type": "list<double>",
  10169. "value": [
  10170. 1,
  10171. 1
  10172. ]
  10173. },
  10174. "arrow": "arrowHead",
  10175. "arrowType": "circle-white",
  10176. "$linkDecoratorInfo": {
  10177. "type": "map<string,double>",
  10178. "value": {
  10179. "xratio": -1,
  10180. "yoffset": -5
  10181. }
  10182. }
  10183. },
  10184. "293": {
  10185. "r": {
  10186. "type": "double",
  10187. "value": 10
  10188. },
  10189. "style": {
  10190. "type": "map<string,string>",
  10191. "value": {
  10192. "stroke": "#000000",
  10193. "fill": "#ffffff",
  10194. "opacity": 0,
  10195. "stroke-width": 1
  10196. }
  10197. },
  10198. "mapper": {
  10199. "type": "code",
  10200. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10201. },
  10202. "parser": {
  10203. "type": "code",
  10204. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10205. },
  10206. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10207. "position": {
  10208. "type": "list<double>",
  10209. "value": [
  10210. "0;30.90965216582663,0%",
  10211. "0;13.941528706101622,0%"
  10212. ]
  10213. },
  10214. "orientation": {
  10215. "type": "double",
  10216. "value": "0;-172.87498365109812"
  10217. },
  10218. "scale": {
  10219. "type": "list<double>",
  10220. "value": [
  10221. 1,
  10222. 1
  10223. ]
  10224. },
  10225. "arrow": "arrowHead",
  10226. "arrowType": "circle-white-large",
  10227. "$linkDecoratorInfo": {
  10228. "type": "map<string,double>",
  10229. "value": {
  10230. "xratio": -1,
  10231. "yoffset": -10
  10232. }
  10233. }
  10234. },
  10235. "294": {
  10236. "segments": {
  10237. "type": "string",
  10238. "value": "m0,0 l-20,8 l20,8"
  10239. },
  10240. "style": {
  10241. "type": "map<string,string>",
  10242. "value": {
  10243. "stroke": "#000000",
  10244. "fill": "#000000",
  10245. "fill-opacity": 0,
  10246. "stroke-width": 1,
  10247. "opacity": 0
  10248. }
  10249. },
  10250. "mapper": {
  10251. "type": "code",
  10252. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10253. },
  10254. "parser": {
  10255. "type": "code",
  10256. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10257. },
  10258. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10259. "position": {
  10260. "type": "list<double>",
  10261. "value": [
  10262. "0;31.157721635005032,0%",
  10263. "0;11.956972952674278,0%"
  10264. ]
  10265. },
  10266. "orientation": {
  10267. "type": "double",
  10268. "value": "0;-172.87498365109812"
  10269. },
  10270. "scale": {
  10271. "type": "list<double>",
  10272. "value": [
  10273. 1,
  10274. 1
  10275. ]
  10276. },
  10277. "arrow": "arrowHead",
  10278. "arrowType": "arrow-empty-large",
  10279. "$linkDecoratorInfo": {
  10280. "type": "map<string,double>",
  10281. "value": {
  10282. "xratio": -1,
  10283. "yoffset": -8
  10284. }
  10285. }
  10286. },
  10287. "295": {
  10288. "segments": {
  10289. "type": "string",
  10290. "value": "m0,0 l-10,4 l10,4"
  10291. },
  10292. "style": {
  10293. "type": "map<string,string>",
  10294. "value": {
  10295. "stroke": "#000000",
  10296. "fill": "#000000",
  10297. "fill-opacity": 0,
  10298. "stroke-width": 1,
  10299. "opacity": 0
  10300. }
  10301. },
  10302. "mapper": {
  10303. "type": "code",
  10304. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10305. },
  10306. "parser": {
  10307. "type": "code",
  10308. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10309. },
  10310. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10311. "position": {
  10312. "type": "list<double>",
  10313. "value": [
  10314. "0;31.653860573361953,0%",
  10315. "0;7.98786144581959,0%"
  10316. ]
  10317. },
  10318. "orientation": {
  10319. "type": "double",
  10320. "value": "0;-172.87498365109812"
  10321. },
  10322. "scale": {
  10323. "type": "list<double>",
  10324. "value": [
  10325. 1,
  10326. 1
  10327. ]
  10328. },
  10329. "arrow": "arrowHead",
  10330. "arrowType": "arrow-empty",
  10331. "$linkDecoratorInfo": {
  10332. "type": "map<string,double>",
  10333. "value": {
  10334. "xratio": -1,
  10335. "yoffset": -4
  10336. }
  10337. }
  10338. },
  10339. "296": {
  10340. "segments": {
  10341. "type": "string",
  10342. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10343. },
  10344. "style": {
  10345. "type": "map<string,string>",
  10346. "value": {
  10347. "stroke": "#000000",
  10348. "fill": "#000000",
  10349. "opacity": 0,
  10350. "stroke-width": 1
  10351. }
  10352. },
  10353. "mapper": {
  10354. "type": "code",
  10355. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10356. },
  10357. "parser": {
  10358. "type": "code",
  10359. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10360. },
  10361. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10362. "position": {
  10363. "type": "list<double>",
  10364. "value": [
  10365. "0;30.90965216582663,0%",
  10366. "0;13.941528706101622,0%"
  10367. ]
  10368. },
  10369. "orientation": {
  10370. "type": "double",
  10371. "value": "0;-172.87498365109812"
  10372. },
  10373. "scale": {
  10374. "type": "list<double>",
  10375. "value": [
  10376. 1,
  10377. 1
  10378. ]
  10379. },
  10380. "arrow": "arrowHead",
  10381. "arrowType": "diamond-black-large",
  10382. "$linkDecoratorInfo": {
  10383. "type": "map<string,double>",
  10384. "value": {
  10385. "xratio": -1,
  10386. "yoffset": -10
  10387. }
  10388. }
  10389. },
  10390. "297": {
  10391. "segments": {
  10392. "type": "string",
  10393. "value": "m0,0 l-10,4 l10,4 z"
  10394. },
  10395. "style": {
  10396. "type": "map<string,string>",
  10397. "value": {
  10398. "stroke": "#000000",
  10399. "fill": "#000000",
  10400. "opacity": 0,
  10401. "stroke-width": 1
  10402. }
  10403. },
  10404. "mapper": {
  10405. "type": "code",
  10406. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10407. },
  10408. "parser": {
  10409. "type": "code",
  10410. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10411. },
  10412. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10413. "position": {
  10414. "type": "list<double>",
  10415. "value": [
  10416. "0;31.653860573361953,0%",
  10417. "0;7.98786144581959,0%"
  10418. ]
  10419. },
  10420. "orientation": {
  10421. "type": "double",
  10422. "value": "0;-172.87498365109812"
  10423. },
  10424. "scale": {
  10425. "type": "list<double>",
  10426. "value": [
  10427. 1,
  10428. 1
  10429. ]
  10430. },
  10431. "arrow": "arrowHead",
  10432. "arrowType": "triangle-black",
  10433. "$linkDecoratorInfo": {
  10434. "type": "map<string,double>",
  10435. "value": {
  10436. "xratio": -1,
  10437. "yoffset": -4
  10438. }
  10439. }
  10440. },
  10441. "298": {
  10442. "segments": {
  10443. "type": "string",
  10444. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10445. },
  10446. "style": {
  10447. "type": "map<string,string>",
  10448. "value": {
  10449. "stroke": "#000000",
  10450. "fill": "#ffffff",
  10451. "opacity": 0,
  10452. "stroke-width": 1
  10453. }
  10454. },
  10455. "mapper": {
  10456. "type": "code",
  10457. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10458. },
  10459. "parser": {
  10460. "type": "code",
  10461. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10462. },
  10463. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10464. "position": {
  10465. "type": "list<double>",
  10466. "value": [
  10467. "0;30.90965216582663,0%",
  10468. "0;13.941528706101622,0%"
  10469. ]
  10470. },
  10471. "orientation": {
  10472. "type": "double",
  10473. "value": "0;-172.87498365109812"
  10474. },
  10475. "scale": {
  10476. "type": "list<double>",
  10477. "value": [
  10478. 1,
  10479. 1
  10480. ]
  10481. },
  10482. "arrow": "arrowHead",
  10483. "arrowType": "diamond-white-large",
  10484. "$linkDecoratorInfo": {
  10485. "type": "map<string,double>",
  10486. "value": {
  10487. "xratio": -1,
  10488. "yoffset": -10
  10489. }
  10490. }
  10491. },
  10492. "__pLabelText": {
  10493. "position": {
  10494. "type": "list<double>",
  10495. "value": [
  10496. 0,
  10497. 0
  10498. ]
  10499. },
  10500. "orientation": {
  10501. "type": "double",
  10502. "value": 0
  10503. },
  10504. "scale": {
  10505. "type": "list<double>",
  10506. "value": [
  10507. 1,
  10508. 1
  10509. ]
  10510. },
  10511. "textContent": {
  10512. "type": "string",
  10513. "value": "2"
  10514. },
  10515. "style": {
  10516. "type": "map<string,string>",
  10517. "value": {
  10518. "stroke": "#6000ff",
  10519. "fill": "#6000ff",
  10520. "font-size": "15px",
  10521. "opacity": "1"
  10522. }
  10523. },
  10524. "mapper": {
  10525. "type": "code",
  10526. "value": "({'textContent':getAttr('__pLabel')})"
  10527. },
  10528. "parser": {
  10529. "type": "code",
  10530. "value": "({'__pLabel':getAttr('textContent')})"
  10531. },
  10532. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  10533. }
  10534. },
  10535. "edges": []
  10536. }
  10537. },
  10538. "$asuri": {
  10539. "type": "string",
  10540. "value": "/Formalisms/Pacman/Pacman.pattern/__pright/45.instance"
  10541. },
  10542. "$segments": {
  10543. "type": "map<string,list<string>>",
  10544. "value": {
  10545. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/3.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__prightLink/45.instance": "M891,619L858.8500004882812,614.9812500610351",
  10546. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__prightLink/45.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/2.instance": "M858.9252344354647,614.9906543044331L827.0004682617189,611.0000585327149"
  10547. }
  10548. },
  10549. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__prightLink"
  10550. },
  10551. "46": {
  10552. "link-style": {
  10553. "type": "map<string,string>",
  10554. "value": {
  10555. "stroke": "#000000",
  10556. "stroke-dasharray": "",
  10557. "stroke-opacity": 1,
  10558. "stroke-width": 0
  10559. }
  10560. },
  10561. "arrowHead": {
  10562. "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)",
  10563. "value": "custom"
  10564. },
  10565. "arrowTail": {
  10566. "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)",
  10567. "value": "arrow-black"
  10568. },
  10569. "typename": {
  10570. "type": "string",
  10571. "value": "rightLink"
  10572. },
  10573. "position": {
  10574. "type": "list<double>",
  10575. "value": [
  10576. 1421.3500003753047,
  10577. 575.5020547893794
  10578. ]
  10579. },
  10580. "orientation": {
  10581. "type": "double",
  10582. "value": 0
  10583. },
  10584. "scale": {
  10585. "type": "list<double>",
  10586. "value": [
  10587. 1,
  10588. 1
  10589. ]
  10590. },
  10591. "mapper": {
  10592. "type": "code",
  10593. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10594. },
  10595. "parser": {
  10596. "type": "code",
  10597. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10598. },
  10599. "$contents": {
  10600. "type": "map<string,*>",
  10601. "value": {
  10602. "nodes": {
  10603. "267": {
  10604. "segments": {
  10605. "type": "string",
  10606. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  10607. },
  10608. "style": {
  10609. "type": "map<string,string>",
  10610. "value": {
  10611. "stroke": "#000000",
  10612. "fill": "#000000",
  10613. "opacity": 0,
  10614. "stroke-width": 1
  10615. }
  10616. },
  10617. "mapper": {
  10618. "type": "code",
  10619. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10620. },
  10621. "parser": {
  10622. "type": "code",
  10623. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10624. },
  10625. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10626. "position": {
  10627. "type": "list<double>",
  10628. "value": [
  10629. "0;-36.294800411597635,-99.99061869691636%",
  10630. "0;4.497564334064464,1.3697345026977217%"
  10631. ]
  10632. },
  10633. "orientation": {
  10634. "type": "double",
  10635. "value": "0;179.21517539700798"
  10636. },
  10637. "scale": {
  10638. "type": "list<double>",
  10639. "value": [
  10640. 1,
  10641. 1
  10642. ]
  10643. },
  10644. "arrow": "arrowTail",
  10645. "arrowType": "arrow-black",
  10646. "$linkDecoratorInfo": {
  10647. "type": "map<string,double>",
  10648. "value": {
  10649. "xratio": 1,
  10650. "yoffset": -4
  10651. }
  10652. }
  10653. },
  10654. "268": {
  10655. "segments": {
  10656. "type": "string",
  10657. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10658. },
  10659. "style": {
  10660. "type": "map<string,string>",
  10661. "value": {
  10662. "stroke": "#000000",
  10663. "fill": "#000000",
  10664. "opacity": 0,
  10665. "stroke-width": 1
  10666. }
  10667. },
  10668. "mapper": {
  10669. "type": "code",
  10670. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10671. },
  10672. "parser": {
  10673. "type": "code",
  10674. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10675. },
  10676. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10677. "position": {
  10678. "type": "list<double>",
  10679. "value": [
  10680. "0;-36.212616341435705,-99.99061869691636%",
  10681. "0;10.497001455879513,1.3697345026977217%"
  10682. ]
  10683. },
  10684. "orientation": {
  10685. "type": "double",
  10686. "value": "0;179.21517539700798"
  10687. },
  10688. "scale": {
  10689. "type": "list<double>",
  10690. "value": [
  10691. 1,
  10692. 1
  10693. ]
  10694. },
  10695. "arrow": "arrowTail",
  10696. "arrowType": "diamond-black-large",
  10697. "$linkDecoratorInfo": {
  10698. "type": "map<string,double>",
  10699. "value": {
  10700. "xratio": 1,
  10701. "yoffset": -10
  10702. }
  10703. }
  10704. },
  10705. "269": {
  10706. "r": {
  10707. "type": "double",
  10708. "value": 10
  10709. },
  10710. "style": {
  10711. "type": "map<string,string>",
  10712. "value": {
  10713. "stroke": "#000000",
  10714. "fill": "#000000",
  10715. "opacity": 0,
  10716. "stroke-width": 1
  10717. }
  10718. },
  10719. "mapper": {
  10720. "type": "code",
  10721. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10722. },
  10723. "parser": {
  10724. "type": "code",
  10725. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10726. },
  10727. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10728. "position": {
  10729. "type": "list<double>",
  10730. "value": [
  10731. "0;-36.212616341435705,-99.99061869691636%",
  10732. "0;10.497001455879513,1.3697345026977217%"
  10733. ]
  10734. },
  10735. "orientation": {
  10736. "type": "double",
  10737. "value": "0;179.21517539700798"
  10738. },
  10739. "scale": {
  10740. "type": "list<double>",
  10741. "value": [
  10742. 1,
  10743. 1
  10744. ]
  10745. },
  10746. "arrow": "arrowTail",
  10747. "arrowType": "circle-black-large",
  10748. "$linkDecoratorInfo": {
  10749. "type": "map<string,double>",
  10750. "value": {
  10751. "xratio": 1,
  10752. "yoffset": -10
  10753. }
  10754. }
  10755. },
  10756. "270": {
  10757. "r": {
  10758. "type": "double",
  10759. "value": 10
  10760. },
  10761. "style": {
  10762. "type": "map<string,string>",
  10763. "value": {
  10764. "stroke": "#000000",
  10765. "fill": "#ffffff",
  10766. "opacity": 0,
  10767. "stroke-width": 1
  10768. }
  10769. },
  10770. "mapper": {
  10771. "type": "code",
  10772. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10773. },
  10774. "parser": {
  10775. "type": "code",
  10776. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10777. },
  10778. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10779. "position": {
  10780. "type": "list<double>",
  10781. "value": [
  10782. "0;-36.212616341435705,-99.99061869691636%",
  10783. "0;10.497001455879513,1.3697345026977217%"
  10784. ]
  10785. },
  10786. "orientation": {
  10787. "type": "double",
  10788. "value": "0;179.21517539700798"
  10789. },
  10790. "scale": {
  10791. "type": "list<double>",
  10792. "value": [
  10793. 1,
  10794. 1
  10795. ]
  10796. },
  10797. "arrow": "arrowTail",
  10798. "arrowType": "circle-white-large",
  10799. "$linkDecoratorInfo": {
  10800. "type": "map<string,double>",
  10801. "value": {
  10802. "xratio": 1,
  10803. "yoffset": -10
  10804. }
  10805. }
  10806. },
  10807. "271": {
  10808. "r": {
  10809. "type": "double",
  10810. "value": 5
  10811. },
  10812. "style": {
  10813. "type": "map<string,string>",
  10814. "value": {
  10815. "stroke": "#000000",
  10816. "fill": "#000000",
  10817. "opacity": 0,
  10818. "stroke-width": 1
  10819. }
  10820. },
  10821. "mapper": {
  10822. "type": "code",
  10823. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10824. },
  10825. "parser": {
  10826. "type": "code",
  10827. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10828. },
  10829. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10830. "position": {
  10831. "type": "list<double>",
  10832. "value": [
  10833. "0;-36.28110306657072,-99.99061869691636%",
  10834. "0;5.49747052103362,1.3697345026977217%"
  10835. ]
  10836. },
  10837. "orientation": {
  10838. "type": "double",
  10839. "value": "0;179.21517539700798"
  10840. },
  10841. "scale": {
  10842. "type": "list<double>",
  10843. "value": [
  10844. 1,
  10845. 1
  10846. ]
  10847. },
  10848. "arrow": "arrowTail",
  10849. "arrowType": "circle-black",
  10850. "$linkDecoratorInfo": {
  10851. "type": "map<string,double>",
  10852. "value": {
  10853. "xratio": 1,
  10854. "yoffset": -5
  10855. }
  10856. }
  10857. },
  10858. "272": {
  10859. "segments": {
  10860. "type": "string",
  10861. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10862. },
  10863. "style": {
  10864. "type": "map<string,string>",
  10865. "value": {
  10866. "stroke": "#000000",
  10867. "fill": "#000000",
  10868. "opacity": 0,
  10869. "stroke-width": 1
  10870. }
  10871. },
  10872. "mapper": {
  10873. "type": "code",
  10874. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10875. },
  10876. "parser": {
  10877. "type": "code",
  10878. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10879. },
  10880. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10881. "position": {
  10882. "type": "list<double>",
  10883. "value": [
  10884. "0;-36.28110306657072,-99.99061869691636%",
  10885. "0;5.49747052103362,1.3697345026977217%"
  10886. ]
  10887. },
  10888. "orientation": {
  10889. "type": "double",
  10890. "value": "0;179.21517539700798"
  10891. },
  10892. "scale": {
  10893. "type": "list<double>",
  10894. "value": [
  10895. 1,
  10896. 1
  10897. ]
  10898. },
  10899. "arrow": "arrowTail",
  10900. "arrowType": "diamond-black",
  10901. "$linkDecoratorInfo": {
  10902. "type": "map<string,double>",
  10903. "value": {
  10904. "xratio": 1,
  10905. "yoffset": -5
  10906. }
  10907. }
  10908. },
  10909. "273": {
  10910. "segments": {
  10911. "type": "string",
  10912. "value": "m0,0 l20,10 l-20,10 z"
  10913. },
  10914. "style": {
  10915. "type": "map<string,string>",
  10916. "value": {
  10917. "stroke": "#000000",
  10918. "fill": "#000000",
  10919. "opacity": 0,
  10920. "stroke-width": 1
  10921. }
  10922. },
  10923. "mapper": {
  10924. "type": "code",
  10925. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10926. },
  10927. "parser": {
  10928. "type": "code",
  10929. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10930. },
  10931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10932. "position": {
  10933. "type": "list<double>",
  10934. "value": [
  10935. "0;-36.212616341435705,-99.99061869691636%",
  10936. "0;10.497001455879513,1.3697345026977217%"
  10937. ]
  10938. },
  10939. "orientation": {
  10940. "type": "double",
  10941. "value": "0;179.21517539700798"
  10942. },
  10943. "scale": {
  10944. "type": "list<double>",
  10945. "value": [
  10946. 1,
  10947. 1
  10948. ]
  10949. },
  10950. "arrow": "arrowTail",
  10951. "arrowType": "triangle-black-large",
  10952. "$linkDecoratorInfo": {
  10953. "type": "map<string,double>",
  10954. "value": {
  10955. "xratio": 1,
  10956. "yoffset": -10
  10957. }
  10958. }
  10959. },
  10960. "274": {
  10961. "segments": {
  10962. "type": "string",
  10963. "value": "m0,0 l10,4 l-10,4 z"
  10964. },
  10965. "style": {
  10966. "type": "map<string,string>",
  10967. "value": {
  10968. "stroke": "#000000",
  10969. "fill": "#000000",
  10970. "opacity": 0,
  10971. "stroke-width": 1
  10972. }
  10973. },
  10974. "mapper": {
  10975. "type": "code",
  10976. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10977. },
  10978. "parser": {
  10979. "type": "code",
  10980. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  10981. },
  10982. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10983. "position": {
  10984. "type": "list<double>",
  10985. "value": [
  10986. "0;-36.294800411597635,-99.99061869691636%",
  10987. "0;4.497564334064464,1.3697345026977217%"
  10988. ]
  10989. },
  10990. "orientation": {
  10991. "type": "double",
  10992. "value": "0;179.21517539700798"
  10993. },
  10994. "scale": {
  10995. "type": "list<double>",
  10996. "value": [
  10997. 1,
  10998. 1
  10999. ]
  11000. },
  11001. "arrow": "arrowTail",
  11002. "arrowType": "triangle-black",
  11003. "$linkDecoratorInfo": {
  11004. "type": "map<string,double>",
  11005. "value": {
  11006. "xratio": 1,
  11007. "yoffset": -4
  11008. }
  11009. }
  11010. },
  11011. "275": {
  11012. "segments": {
  11013. "type": "string",
  11014. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  11015. },
  11016. "style": {
  11017. "type": "map<string,string>",
  11018. "value": {
  11019. "stroke": "#000000",
  11020. "fill": "#000000",
  11021. "opacity": 0,
  11022. "stroke-width": 1
  11023. }
  11024. },
  11025. "mapper": {
  11026. "type": "code",
  11027. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11028. },
  11029. "parser": {
  11030. "type": "code",
  11031. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11032. },
  11033. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11034. "position": {
  11035. "type": "list<double>",
  11036. "value": [
  11037. "0;-36.24001103148976,-99.99061869691636%",
  11038. "0;8.497189081941201,1.3697345026977217%"
  11039. ]
  11040. },
  11041. "orientation": {
  11042. "type": "double",
  11043. "value": "0;179.21517539700798"
  11044. },
  11045. "scale": {
  11046. "type": "list<double>",
  11047. "value": [
  11048. 1,
  11049. 1
  11050. ]
  11051. },
  11052. "arrow": "arrowTail",
  11053. "arrowType": "arrow-black-large",
  11054. "$linkDecoratorInfo": {
  11055. "type": "map<string,double>",
  11056. "value": {
  11057. "xratio": 1,
  11058. "yoffset": -8
  11059. }
  11060. }
  11061. },
  11062. "276": {
  11063. "segments": {
  11064. "type": "string",
  11065. "value": "m0,0 l20,10 l-20,10 z"
  11066. },
  11067. "style": {
  11068. "type": "map<string,string>",
  11069. "value": {
  11070. "stroke": "#000000",
  11071. "fill": "#ffffff",
  11072. "opacity": 0,
  11073. "stroke-width": 1
  11074. }
  11075. },
  11076. "mapper": {
  11077. "type": "code",
  11078. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11079. },
  11080. "parser": {
  11081. "type": "code",
  11082. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11083. },
  11084. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11085. "position": {
  11086. "type": "list<double>",
  11087. "value": [
  11088. "0;-36.212616341435705,-99.99061869691636%",
  11089. "0;10.497001455879513,1.3697345026977217%"
  11090. ]
  11091. },
  11092. "orientation": {
  11093. "type": "double",
  11094. "value": "0;179.21517539700798"
  11095. },
  11096. "scale": {
  11097. "type": "list<double>",
  11098. "value": [
  11099. 1,
  11100. 1
  11101. ]
  11102. },
  11103. "arrow": "arrowTail",
  11104. "arrowType": "triangle-white-large",
  11105. "$linkDecoratorInfo": {
  11106. "type": "map<string,double>",
  11107. "value": {
  11108. "xratio": 1,
  11109. "yoffset": -10
  11110. }
  11111. }
  11112. },
  11113. "277": {
  11114. "segments": {
  11115. "type": "string",
  11116. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11117. },
  11118. "style": {
  11119. "type": "map<string,string>",
  11120. "value": {
  11121. "stroke": "#000000",
  11122. "fill": "#ffffff",
  11123. "opacity": 0,
  11124. "stroke-width": 1
  11125. }
  11126. },
  11127. "mapper": {
  11128. "type": "code",
  11129. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11130. },
  11131. "parser": {
  11132. "type": "code",
  11133. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11134. },
  11135. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11136. "position": {
  11137. "type": "list<double>",
  11138. "value": [
  11139. "0;-36.28110306657072,-99.99061869691636%",
  11140. "0;5.49747052103362,1.3697345026977217%"
  11141. ]
  11142. },
  11143. "orientation": {
  11144. "type": "double",
  11145. "value": "0;179.21517539700798"
  11146. },
  11147. "scale": {
  11148. "type": "list<double>",
  11149. "value": [
  11150. 1,
  11151. 1
  11152. ]
  11153. },
  11154. "arrow": "arrowTail",
  11155. "arrowType": "diamond-white",
  11156. "$linkDecoratorInfo": {
  11157. "type": "map<string,double>",
  11158. "value": {
  11159. "xratio": 1,
  11160. "yoffset": -5
  11161. }
  11162. }
  11163. },
  11164. "278": {
  11165. "segments": {
  11166. "type": "string",
  11167. "value": "m0,0 l20,8 l-20,8"
  11168. },
  11169. "style": {
  11170. "type": "map<string,string>",
  11171. "value": {
  11172. "stroke": "#000000",
  11173. "fill": "#000000",
  11174. "fill-opacity": 0,
  11175. "stroke-width": 1,
  11176. "opacity": 0
  11177. }
  11178. },
  11179. "mapper": {
  11180. "type": "code",
  11181. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11182. },
  11183. "parser": {
  11184. "type": "code",
  11185. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11186. },
  11187. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11188. "position": {
  11189. "type": "list<double>",
  11190. "value": [
  11191. "0;-36.24001103148976,-99.99061869691636%",
  11192. "0;8.497189081941201,1.3697345026977217%"
  11193. ]
  11194. },
  11195. "orientation": {
  11196. "type": "double",
  11197. "value": "0;179.21517539700798"
  11198. },
  11199. "scale": {
  11200. "type": "list<double>",
  11201. "value": [
  11202. 1,
  11203. 1
  11204. ]
  11205. },
  11206. "arrow": "arrowTail",
  11207. "arrowType": "arrow-empty-large",
  11208. "$linkDecoratorInfo": {
  11209. "type": "map<string,double>",
  11210. "value": {
  11211. "xratio": 1,
  11212. "yoffset": -8
  11213. }
  11214. }
  11215. },
  11216. "279": {
  11217. "r": {
  11218. "type": "double",
  11219. "value": 5
  11220. },
  11221. "style": {
  11222. "type": "map<string,string>",
  11223. "value": {
  11224. "stroke": "#000000",
  11225. "fill": "#ffffff",
  11226. "opacity": 0,
  11227. "stroke-width": 1
  11228. }
  11229. },
  11230. "mapper": {
  11231. "type": "code",
  11232. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11233. },
  11234. "parser": {
  11235. "type": "code",
  11236. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11237. },
  11238. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11239. "position": {
  11240. "type": "list<double>",
  11241. "value": [
  11242. "0;-36.28110306657072,-99.99061869691636%",
  11243. "0;5.49747052103362,1.3697345026977217%"
  11244. ]
  11245. },
  11246. "orientation": {
  11247. "type": "double",
  11248. "value": "0;179.21517539700798"
  11249. },
  11250. "scale": {
  11251. "type": "list<double>",
  11252. "value": [
  11253. 1,
  11254. 1
  11255. ]
  11256. },
  11257. "arrow": "arrowTail",
  11258. "arrowType": "circle-white",
  11259. "$linkDecoratorInfo": {
  11260. "type": "map<string,double>",
  11261. "value": {
  11262. "xratio": 1,
  11263. "yoffset": -5
  11264. }
  11265. }
  11266. },
  11267. "280": {
  11268. "segments": {
  11269. "type": "string",
  11270. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  11271. },
  11272. "style": {
  11273. "type": "map<string,string>",
  11274. "value": {
  11275. "stroke": "#000000",
  11276. "fill": "#ffffff",
  11277. "opacity": 0,
  11278. "stroke-width": 1
  11279. }
  11280. },
  11281. "mapper": {
  11282. "type": "code",
  11283. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11284. },
  11285. "parser": {
  11286. "type": "code",
  11287. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11288. },
  11289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11290. "position": {
  11291. "type": "list<double>",
  11292. "value": [
  11293. "0;-36.212616341435705,-99.99061869691636%",
  11294. "0;10.497001455879513,1.3697345026977217%"
  11295. ]
  11296. },
  11297. "orientation": {
  11298. "type": "double",
  11299. "value": "0;179.21517539700798"
  11300. },
  11301. "scale": {
  11302. "type": "list<double>",
  11303. "value": [
  11304. 1,
  11305. 1
  11306. ]
  11307. },
  11308. "arrow": "arrowTail",
  11309. "arrowType": "diamond-white-large",
  11310. "$linkDecoratorInfo": {
  11311. "type": "map<string,double>",
  11312. "value": {
  11313. "xratio": 1,
  11314. "yoffset": -10
  11315. }
  11316. }
  11317. },
  11318. "281": {
  11319. "segments": {
  11320. "type": "string",
  11321. "value": "m0,0 l10,4 l-10,4"
  11322. },
  11323. "style": {
  11324. "type": "map<string,string>",
  11325. "value": {
  11326. "stroke": "#000000",
  11327. "fill": "#000000",
  11328. "fill-opacity": 0,
  11329. "stroke-width": 1,
  11330. "opacity": 0
  11331. }
  11332. },
  11333. "mapper": {
  11334. "type": "code",
  11335. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11336. },
  11337. "parser": {
  11338. "type": "code",
  11339. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11340. },
  11341. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11342. "position": {
  11343. "type": "list<double>",
  11344. "value": [
  11345. "0;-36.294800411597635,-99.99061869691636%",
  11346. "0;4.497564334064464,1.3697345026977217%"
  11347. ]
  11348. },
  11349. "orientation": {
  11350. "type": "double",
  11351. "value": "0;179.21517539700798"
  11352. },
  11353. "scale": {
  11354. "type": "list<double>",
  11355. "value": [
  11356. 1,
  11357. 1
  11358. ]
  11359. },
  11360. "arrow": "arrowTail",
  11361. "arrowType": "arrow-empty",
  11362. "$linkDecoratorInfo": {
  11363. "type": "map<string,double>",
  11364. "value": {
  11365. "xratio": 1,
  11366. "yoffset": -4
  11367. }
  11368. }
  11369. },
  11370. "282": {
  11371. "segments": {
  11372. "type": "string",
  11373. "value": "m0,0 l10,5 l-10,5 z"
  11374. },
  11375. "style": {
  11376. "type": "map<string,string>",
  11377. "value": {
  11378. "stroke": "#000000",
  11379. "fill": "#ffffff",
  11380. "opacity": 0,
  11381. "stroke-width": 1
  11382. }
  11383. },
  11384. "mapper": {
  11385. "type": "code",
  11386. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11387. },
  11388. "parser": {
  11389. "type": "code",
  11390. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11391. },
  11392. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11393. "position": {
  11394. "type": "list<double>",
  11395. "value": [
  11396. "0;-36.28110306657072,-99.99061869691636%",
  11397. "0;5.49747052103362,1.3697345026977217%"
  11398. ]
  11399. },
  11400. "orientation": {
  11401. "type": "double",
  11402. "value": "0;179.21517539700798"
  11403. },
  11404. "scale": {
  11405. "type": "list<double>",
  11406. "value": [
  11407. 1,
  11408. 1
  11409. ]
  11410. },
  11411. "arrow": "arrowTail",
  11412. "arrowType": "triangle-white",
  11413. "$linkDecoratorInfo": {
  11414. "type": "map<string,double>",
  11415. "value": {
  11416. "xratio": 1,
  11417. "yoffset": -5
  11418. }
  11419. }
  11420. },
  11421. "283": {
  11422. "segments": {
  11423. "type": "string",
  11424. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11425. },
  11426. "style": {
  11427. "type": "map<string,string>",
  11428. "value": {
  11429. "stroke": "#000000",
  11430. "fill": "#ffffff",
  11431. "opacity": 0,
  11432. "stroke-width": 1
  11433. }
  11434. },
  11435. "mapper": {
  11436. "type": "code",
  11437. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11438. },
  11439. "parser": {
  11440. "type": "code",
  11441. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11442. },
  11443. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11444. "position": {
  11445. "type": "list<double>",
  11446. "value": [
  11447. "0;36.71848634983007,0%",
  11448. "0;4.497476145466408,0%"
  11449. ]
  11450. },
  11451. "orientation": {
  11452. "type": "double",
  11453. "value": "0;179.21517539700812"
  11454. },
  11455. "scale": {
  11456. "type": "list<double>",
  11457. "value": [
  11458. 1,
  11459. 1
  11460. ]
  11461. },
  11462. "arrow": "arrowHead",
  11463. "arrowType": "diamond-white",
  11464. "$linkDecoratorInfo": {
  11465. "type": "map<string,double>",
  11466. "value": {
  11467. "xratio": -1,
  11468. "yoffset": -5
  11469. }
  11470. }
  11471. },
  11472. "284": {
  11473. "segments": {
  11474. "type": "string",
  11475. "value": "m0,0 l-10,5 l10,5 z"
  11476. },
  11477. "style": {
  11478. "type": "map<string,string>",
  11479. "value": {
  11480. "stroke": "#000000",
  11481. "fill": "#ffffff",
  11482. "opacity": 0,
  11483. "stroke-width": 1
  11484. }
  11485. },
  11486. "mapper": {
  11487. "type": "code",
  11488. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11489. },
  11490. "parser": {
  11491. "type": "code",
  11492. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11493. },
  11494. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11495. "position": {
  11496. "type": "list<double>",
  11497. "value": [
  11498. "0;36.71848634983007,0%",
  11499. "0;4.497476145466408,0%"
  11500. ]
  11501. },
  11502. "orientation": {
  11503. "type": "double",
  11504. "value": "0;179.21517539700812"
  11505. },
  11506. "scale": {
  11507. "type": "list<double>",
  11508. "value": [
  11509. 1,
  11510. 1
  11511. ]
  11512. },
  11513. "arrow": "arrowHead",
  11514. "arrowType": "triangle-white",
  11515. "$linkDecoratorInfo": {
  11516. "type": "map<string,double>",
  11517. "value": {
  11518. "xratio": -1,
  11519. "yoffset": -5
  11520. }
  11521. }
  11522. },
  11523. "285": {
  11524. "segments": {
  11525. "type": "string",
  11526. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  11527. },
  11528. "style": {
  11529. "type": "map<string,string>",
  11530. "value": {
  11531. "stroke": "#000000",
  11532. "fill": "#000000",
  11533. "opacity": 0,
  11534. "stroke-width": 1
  11535. }
  11536. },
  11537. "mapper": {
  11538. "type": "code",
  11539. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11540. },
  11541. "parser": {
  11542. "type": "code",
  11543. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11544. },
  11545. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11546. "position": {
  11547. "type": "list<double>",
  11548. "value": [
  11549. "0;36.71848634983007,0%",
  11550. "0;4.497476145466408,0%"
  11551. ]
  11552. },
  11553. "orientation": {
  11554. "type": "double",
  11555. "value": "0;179.21517539700812"
  11556. },
  11557. "scale": {
  11558. "type": "list<double>",
  11559. "value": [
  11560. 1,
  11561. 1
  11562. ]
  11563. },
  11564. "arrow": "arrowHead",
  11565. "arrowType": "diamond-black",
  11566. "$linkDecoratorInfo": {
  11567. "type": "map<string,double>",
  11568. "value": {
  11569. "xratio": -1,
  11570. "yoffset": -5
  11571. }
  11572. }
  11573. },
  11574. "286": {
  11575. "r": {
  11576. "type": "double",
  11577. "value": 10
  11578. },
  11579. "style": {
  11580. "type": "map<string,string>",
  11581. "value": {
  11582. "stroke": "#000000",
  11583. "fill": "#000000",
  11584. "opacity": 0,
  11585. "stroke-width": 1
  11586. }
  11587. },
  11588. "mapper": {
  11589. "type": "code",
  11590. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11591. },
  11592. "parser": {
  11593. "type": "code",
  11594. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11595. },
  11596. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11597. "position": {
  11598. "type": "list<double>",
  11599. "value": [
  11600. "0;36.78697307496509,0%",
  11601. "0;9.4970070803123,0%"
  11602. ]
  11603. },
  11604. "orientation": {
  11605. "type": "double",
  11606. "value": "0;179.21517539700812"
  11607. },
  11608. "scale": {
  11609. "type": "list<double>",
  11610. "value": [
  11611. 1,
  11612. 1
  11613. ]
  11614. },
  11615. "arrow": "arrowHead",
  11616. "arrowType": "circle-black-large",
  11617. "$linkDecoratorInfo": {
  11618. "type": "map<string,double>",
  11619. "value": {
  11620. "xratio": -1,
  11621. "yoffset": -10
  11622. }
  11623. }
  11624. },
  11625. "287": {
  11626. "segments": {
  11627. "type": "string",
  11628. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  11629. },
  11630. "style": {
  11631. "type": "map<string,string>",
  11632. "value": {
  11633. "stroke": "#000000",
  11634. "fill": "#000000",
  11635. "opacity": 0,
  11636. "stroke-width": 1
  11637. }
  11638. },
  11639. "mapper": {
  11640. "type": "code",
  11641. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11642. },
  11643. "parser": {
  11644. "type": "code",
  11645. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11646. },
  11647. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11648. "position": {
  11649. "type": "list<double>",
  11650. "value": [
  11651. "0;36.75957838491104,0%",
  11652. "0;7.497194706373989,0%"
  11653. ]
  11654. },
  11655. "orientation": {
  11656. "type": "double",
  11657. "value": "0;179.21517539700812"
  11658. },
  11659. "scale": {
  11660. "type": "list<double>",
  11661. "value": [
  11662. 1,
  11663. 1
  11664. ]
  11665. },
  11666. "arrow": "arrowHead",
  11667. "arrowType": "arrow-black-large",
  11668. "$linkDecoratorInfo": {
  11669. "type": "map<string,double>",
  11670. "value": {
  11671. "xratio": -1,
  11672. "yoffset": -8
  11673. }
  11674. }
  11675. },
  11676. "288": {
  11677. "segments": {
  11678. "type": "string",
  11679. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  11680. },
  11681. "style": {
  11682. "type": "map<string,string>",
  11683. "value": {
  11684. "stroke": "#000000",
  11685. "fill": "#000000",
  11686. "opacity": 0,
  11687. "stroke-width": 1
  11688. }
  11689. },
  11690. "mapper": {
  11691. "type": "code",
  11692. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11693. },
  11694. "parser": {
  11695. "type": "code",
  11696. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11697. },
  11698. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11699. "position": {
  11700. "type": "list<double>",
  11701. "value": [
  11702. "0;36.70478900480316,0%",
  11703. "0;3.4975699584972517,0%"
  11704. ]
  11705. },
  11706. "orientation": {
  11707. "type": "double",
  11708. "value": "0;179.21517539700812"
  11709. },
  11710. "scale": {
  11711. "type": "list<double>",
  11712. "value": [
  11713. 1,
  11714. 1
  11715. ]
  11716. },
  11717. "arrow": "arrowHead",
  11718. "arrowType": "arrow-black",
  11719. "$linkDecoratorInfo": {
  11720. "type": "map<string,double>",
  11721. "value": {
  11722. "xratio": -1,
  11723. "yoffset": -4
  11724. }
  11725. }
  11726. },
  11727. "289": {
  11728. "segments": {
  11729. "type": "string",
  11730. "value": "m0,0 l-20,10 l20,10 z"
  11731. },
  11732. "style": {
  11733. "type": "map<string,string>",
  11734. "value": {
  11735. "stroke": "#000000",
  11736. "fill": "#ffffff",
  11737. "opacity": 0,
  11738. "stroke-width": 1
  11739. }
  11740. },
  11741. "mapper": {
  11742. "type": "code",
  11743. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11744. },
  11745. "parser": {
  11746. "type": "code",
  11747. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11748. },
  11749. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11750. "position": {
  11751. "type": "list<double>",
  11752. "value": [
  11753. "0;36.78697307496509,0%",
  11754. "0;9.4970070803123,0%"
  11755. ]
  11756. },
  11757. "orientation": {
  11758. "type": "double",
  11759. "value": "0;179.21517539700812"
  11760. },
  11761. "scale": {
  11762. "type": "list<double>",
  11763. "value": [
  11764. 1,
  11765. 1
  11766. ]
  11767. },
  11768. "arrow": "arrowHead",
  11769. "arrowType": "triangle-white-large",
  11770. "$linkDecoratorInfo": {
  11771. "type": "map<string,double>",
  11772. "value": {
  11773. "xratio": -1,
  11774. "yoffset": -10
  11775. }
  11776. }
  11777. },
  11778. "290": {
  11779. "segments": {
  11780. "type": "string",
  11781. "value": "m0,0 l-20,10 l20,10 z"
  11782. },
  11783. "style": {
  11784. "type": "map<string,string>",
  11785. "value": {
  11786. "stroke": "#000000",
  11787. "fill": "#000000",
  11788. "opacity": 0,
  11789. "stroke-width": 1
  11790. }
  11791. },
  11792. "mapper": {
  11793. "type": "code",
  11794. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11795. },
  11796. "parser": {
  11797. "type": "code",
  11798. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11799. },
  11800. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  11801. "position": {
  11802. "type": "list<double>",
  11803. "value": [
  11804. "0;36.78697307496509,0%",
  11805. "0;9.4970070803123,0%"
  11806. ]
  11807. },
  11808. "orientation": {
  11809. "type": "double",
  11810. "value": "0;179.21517539700812"
  11811. },
  11812. "scale": {
  11813. "type": "list<double>",
  11814. "value": [
  11815. 1,
  11816. 1
  11817. ]
  11818. },
  11819. "arrow": "arrowHead",
  11820. "arrowType": "triangle-black-large",
  11821. "$linkDecoratorInfo": {
  11822. "type": "map<string,double>",
  11823. "value": {
  11824. "xratio": -1,
  11825. "yoffset": -10
  11826. }
  11827. }
  11828. },
  11829. "291": {
  11830. "r": {
  11831. "type": "double",
  11832. "value": 5
  11833. },
  11834. "style": {
  11835. "type": "map<string,string>",
  11836. "value": {
  11837. "stroke": "#000000",
  11838. "fill": "#000000",
  11839. "opacity": 0,
  11840. "stroke-width": 1
  11841. }
  11842. },
  11843. "mapper": {
  11844. "type": "code",
  11845. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11846. },
  11847. "parser": {
  11848. "type": "code",
  11849. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11850. },
  11851. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11852. "position": {
  11853. "type": "list<double>",
  11854. "value": [
  11855. "0;36.71848634983007,0%",
  11856. "0;4.497476145466408,0%"
  11857. ]
  11858. },
  11859. "orientation": {
  11860. "type": "double",
  11861. "value": "0;179.21517539700812"
  11862. },
  11863. "scale": {
  11864. "type": "list<double>",
  11865. "value": [
  11866. 1,
  11867. 1
  11868. ]
  11869. },
  11870. "arrow": "arrowHead",
  11871. "arrowType": "circle-black",
  11872. "$linkDecoratorInfo": {
  11873. "type": "map<string,double>",
  11874. "value": {
  11875. "xratio": -1,
  11876. "yoffset": -5
  11877. }
  11878. }
  11879. },
  11880. "292": {
  11881. "r": {
  11882. "type": "double",
  11883. "value": 5
  11884. },
  11885. "style": {
  11886. "type": "map<string,string>",
  11887. "value": {
  11888. "stroke": "#000000",
  11889. "fill": "#ffffff",
  11890. "opacity": 0,
  11891. "stroke-width": 1
  11892. }
  11893. },
  11894. "mapper": {
  11895. "type": "code",
  11896. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11897. },
  11898. "parser": {
  11899. "type": "code",
  11900. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11901. },
  11902. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11903. "position": {
  11904. "type": "list<double>",
  11905. "value": [
  11906. "0;36.71848634983007,0%",
  11907. "0;4.497476145466408,0%"
  11908. ]
  11909. },
  11910. "orientation": {
  11911. "type": "double",
  11912. "value": "0;179.21517539700812"
  11913. },
  11914. "scale": {
  11915. "type": "list<double>",
  11916. "value": [
  11917. 1,
  11918. 1
  11919. ]
  11920. },
  11921. "arrow": "arrowHead",
  11922. "arrowType": "circle-white",
  11923. "$linkDecoratorInfo": {
  11924. "type": "map<string,double>",
  11925. "value": {
  11926. "xratio": -1,
  11927. "yoffset": -5
  11928. }
  11929. }
  11930. },
  11931. "293": {
  11932. "r": {
  11933. "type": "double",
  11934. "value": 10
  11935. },
  11936. "style": {
  11937. "type": "map<string,string>",
  11938. "value": {
  11939. "stroke": "#000000",
  11940. "fill": "#ffffff",
  11941. "opacity": 0,
  11942. "stroke-width": 1
  11943. }
  11944. },
  11945. "mapper": {
  11946. "type": "code",
  11947. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11948. },
  11949. "parser": {
  11950. "type": "code",
  11951. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  11952. },
  11953. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  11954. "position": {
  11955. "type": "list<double>",
  11956. "value": [
  11957. "0;36.78697307496509,0%",
  11958. "0;9.4970070803123,0%"
  11959. ]
  11960. },
  11961. "orientation": {
  11962. "type": "double",
  11963. "value": "0;179.21517539700812"
  11964. },
  11965. "scale": {
  11966. "type": "list<double>",
  11967. "value": [
  11968. 1,
  11969. 1
  11970. ]
  11971. },
  11972. "arrow": "arrowHead",
  11973. "arrowType": "circle-white-large",
  11974. "$linkDecoratorInfo": {
  11975. "type": "map<string,double>",
  11976. "value": {
  11977. "xratio": -1,
  11978. "yoffset": -10
  11979. }
  11980. }
  11981. },
  11982. "294": {
  11983. "segments": {
  11984. "type": "string",
  11985. "value": "m0,0 l-20,8 l20,8"
  11986. },
  11987. "style": {
  11988. "type": "map<string,string>",
  11989. "value": {
  11990. "stroke": "#000000",
  11991. "fill": "#000000",
  11992. "fill-opacity": 0,
  11993. "stroke-width": 1,
  11994. "opacity": 0
  11995. }
  11996. },
  11997. "mapper": {
  11998. "type": "code",
  11999. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12000. },
  12001. "parser": {
  12002. "type": "code",
  12003. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12004. },
  12005. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12006. "position": {
  12007. "type": "list<double>",
  12008. "value": [
  12009. "0;36.75957838491104,0%",
  12010. "0;7.497194706373989,0%"
  12011. ]
  12012. },
  12013. "orientation": {
  12014. "type": "double",
  12015. "value": "0;179.21517539700812"
  12016. },
  12017. "scale": {
  12018. "type": "list<double>",
  12019. "value": [
  12020. 1,
  12021. 1
  12022. ]
  12023. },
  12024. "arrow": "arrowHead",
  12025. "arrowType": "arrow-empty-large",
  12026. "$linkDecoratorInfo": {
  12027. "type": "map<string,double>",
  12028. "value": {
  12029. "xratio": -1,
  12030. "yoffset": -8
  12031. }
  12032. }
  12033. },
  12034. "295": {
  12035. "segments": {
  12036. "type": "string",
  12037. "value": "m0,0 l-10,4 l10,4"
  12038. },
  12039. "style": {
  12040. "type": "map<string,string>",
  12041. "value": {
  12042. "stroke": "#000000",
  12043. "fill": "#000000",
  12044. "fill-opacity": 0,
  12045. "stroke-width": 1,
  12046. "opacity": 0
  12047. }
  12048. },
  12049. "mapper": {
  12050. "type": "code",
  12051. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12052. },
  12053. "parser": {
  12054. "type": "code",
  12055. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12056. },
  12057. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12058. "position": {
  12059. "type": "list<double>",
  12060. "value": [
  12061. "0;36.70478900480316,0%",
  12062. "0;3.4975699584972517,0%"
  12063. ]
  12064. },
  12065. "orientation": {
  12066. "type": "double",
  12067. "value": "0;179.21517539700812"
  12068. },
  12069. "scale": {
  12070. "type": "list<double>",
  12071. "value": [
  12072. 1,
  12073. 1
  12074. ]
  12075. },
  12076. "arrow": "arrowHead",
  12077. "arrowType": "arrow-empty",
  12078. "$linkDecoratorInfo": {
  12079. "type": "map<string,double>",
  12080. "value": {
  12081. "xratio": -1,
  12082. "yoffset": -4
  12083. }
  12084. }
  12085. },
  12086. "296": {
  12087. "segments": {
  12088. "type": "string",
  12089. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12090. },
  12091. "style": {
  12092. "type": "map<string,string>",
  12093. "value": {
  12094. "stroke": "#000000",
  12095. "fill": "#000000",
  12096. "opacity": 0,
  12097. "stroke-width": 1
  12098. }
  12099. },
  12100. "mapper": {
  12101. "type": "code",
  12102. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12103. },
  12104. "parser": {
  12105. "type": "code",
  12106. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12107. },
  12108. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12109. "position": {
  12110. "type": "list<double>",
  12111. "value": [
  12112. "0;36.78697307496509,0%",
  12113. "0;9.4970070803123,0%"
  12114. ]
  12115. },
  12116. "orientation": {
  12117. "type": "double",
  12118. "value": "0;179.21517539700812"
  12119. },
  12120. "scale": {
  12121. "type": "list<double>",
  12122. "value": [
  12123. 1,
  12124. 1
  12125. ]
  12126. },
  12127. "arrow": "arrowHead",
  12128. "arrowType": "diamond-black-large",
  12129. "$linkDecoratorInfo": {
  12130. "type": "map<string,double>",
  12131. "value": {
  12132. "xratio": -1,
  12133. "yoffset": -10
  12134. }
  12135. }
  12136. },
  12137. "297": {
  12138. "segments": {
  12139. "type": "string",
  12140. "value": "m0,0 l-10,4 l10,4 z"
  12141. },
  12142. "style": {
  12143. "type": "map<string,string>",
  12144. "value": {
  12145. "stroke": "#000000",
  12146. "fill": "#000000",
  12147. "opacity": 0,
  12148. "stroke-width": 1
  12149. }
  12150. },
  12151. "mapper": {
  12152. "type": "code",
  12153. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12154. },
  12155. "parser": {
  12156. "type": "code",
  12157. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12158. },
  12159. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12160. "position": {
  12161. "type": "list<double>",
  12162. "value": [
  12163. "0;36.70478900480316,0%",
  12164. "0;3.4975699584972517,0%"
  12165. ]
  12166. },
  12167. "orientation": {
  12168. "type": "double",
  12169. "value": "0;179.21517539700812"
  12170. },
  12171. "scale": {
  12172. "type": "list<double>",
  12173. "value": [
  12174. 1,
  12175. 1
  12176. ]
  12177. },
  12178. "arrow": "arrowHead",
  12179. "arrowType": "triangle-black",
  12180. "$linkDecoratorInfo": {
  12181. "type": "map<string,double>",
  12182. "value": {
  12183. "xratio": -1,
  12184. "yoffset": -4
  12185. }
  12186. }
  12187. },
  12188. "298": {
  12189. "segments": {
  12190. "type": "string",
  12191. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  12192. },
  12193. "style": {
  12194. "type": "map<string,string>",
  12195. "value": {
  12196. "stroke": "#000000",
  12197. "fill": "#ffffff",
  12198. "opacity": 0,
  12199. "stroke-width": 1
  12200. }
  12201. },
  12202. "mapper": {
  12203. "type": "code",
  12204. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12205. },
  12206. "parser": {
  12207. "type": "code",
  12208. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  12209. },
  12210. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  12211. "position": {
  12212. "type": "list<double>",
  12213. "value": [
  12214. "0;36.78697307496509,0%",
  12215. "0;9.4970070803123,0%"
  12216. ]
  12217. },
  12218. "orientation": {
  12219. "type": "double",
  12220. "value": "0;179.21517539700812"
  12221. },
  12222. "scale": {
  12223. "type": "list<double>",
  12224. "value": [
  12225. 1,
  12226. 1
  12227. ]
  12228. },
  12229. "arrow": "arrowHead",
  12230. "arrowType": "diamond-white-large",
  12231. "$linkDecoratorInfo": {
  12232. "type": "map<string,double>",
  12233. "value": {
  12234. "xratio": -1,
  12235. "yoffset": -10
  12236. }
  12237. }
  12238. },
  12239. "__pLabelText": {
  12240. "position": {
  12241. "type": "list<double>",
  12242. "value": [
  12243. 0,
  12244. 0
  12245. ]
  12246. },
  12247. "orientation": {
  12248. "type": "double",
  12249. "value": 0
  12250. },
  12251. "scale": {
  12252. "type": "list<double>",
  12253. "value": [
  12254. 1,
  12255. 1
  12256. ]
  12257. },
  12258. "textContent": {
  12259. "type": "string",
  12260. "value": "2"
  12261. },
  12262. "style": {
  12263. "type": "map<string,string>",
  12264. "value": {
  12265. "stroke": "#6000ff",
  12266. "fill": "#6000ff",
  12267. "font-size": "15px",
  12268. "opacity": "1"
  12269. }
  12270. },
  12271. "mapper": {
  12272. "type": "code",
  12273. "value": "({'textContent':getAttr('__pLabel')})"
  12274. },
  12275. "parser": {
  12276. "type": "code",
  12277. "value": "({'__pLabel':getAttr('textContent')})"
  12278. },
  12279. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  12280. }
  12281. },
  12282. "edges": []
  12283. }
  12284. },
  12285. "$asuri": {
  12286. "type": "string",
  12287. "value": "/Formalisms/Pacman/Pacman.pattern/__pright/46.instance"
  12288. },
  12289. "$segments": {
  12290. "type": "map<string,list<string>>",
  12291. "value": {
  12292. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/11.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__prightLink/46.instance": "M1458,575L1421.3500003753047,575.5020547893794",
  12293. "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__prightLink/46.instance--/Formalisms/Pacman/Pacman.defaultIcons.pattern/__pGridNodeIcon/9.instance": "M1421.4252055259806,575.5010245818358L1385.0004105835992,575.9999943755672"
  12294. }
  12295. },
  12296. "$type": "/Formalisms/Pacman/Pacman.defaultIcons.pattern/__prightLink"
  12297. }
  12298. },
  12299. "edges": [],
  12300. "metamodels": [
  12301. "/Formalisms/Pacman/Pacman.defaultIcons.pattern",
  12302. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons"
  12303. ]
  12304. },
  12305. "asm": {
  12306. "nodes": {
  12307. "0": {
  12308. "Condition": {
  12309. "type": "code",
  12310. "value": "result = True"
  12311. },
  12312. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  12313. },
  12314. "1": {
  12315. "Action": {
  12316. "type": "code",
  12317. "value": ""
  12318. },
  12319. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  12320. },
  12321. "2": {
  12322. "__pLabel": {
  12323. "type": "string",
  12324. "value": "0"
  12325. },
  12326. "__pMatchSubtypes": {
  12327. "type": "boolean",
  12328. "value": false
  12329. },
  12330. "position": {
  12331. "type": "code",
  12332. "value": "result = True"
  12333. },
  12334. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGridNode"
  12335. },
  12336. "3": {
  12337. "__pLabel": {
  12338. "type": "string",
  12339. "value": "1"
  12340. },
  12341. "__pMatchSubtypes": {
  12342. "type": "boolean",
  12343. "value": false
  12344. },
  12345. "position": {
  12346. "type": "code",
  12347. "value": "result = True"
  12348. },
  12349. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGridNode"
  12350. },
  12351. "7": {
  12352. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  12353. },
  12354. "8": {
  12355. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  12356. },
  12357. "9": {
  12358. "__pLabel": {
  12359. "type": "string",
  12360. "value": "0"
  12361. },
  12362. "__pMatchSubtypes": {
  12363. "type": "boolean"
  12364. },
  12365. "position": {
  12366. "type": "code",
  12367. "value": "result = getAttr()"
  12368. },
  12369. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGridNode"
  12370. },
  12371. "11": {
  12372. "__pLabel": {
  12373. "type": "string",
  12374. "value": "1"
  12375. },
  12376. "__pMatchSubtypes": {
  12377. "type": "boolean"
  12378. },
  12379. "position": {
  12380. "type": "code",
  12381. "value": "result = getAttr()"
  12382. },
  12383. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGridNode"
  12384. },
  12385. "17": {
  12386. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  12387. },
  12388. "18": {
  12389. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  12390. },
  12391. "21": {
  12392. "name": {
  12393. "type": "string",
  12394. "value": "NAC_"
  12395. },
  12396. "Condition": {
  12397. "type": "code",
  12398. "value": "result = True"
  12399. },
  12400. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/NAC"
  12401. },
  12402. "22": {
  12403. "__pLabel": {
  12404. "type": "string",
  12405. "value": "3"
  12406. },
  12407. "__pMatchSubtypes": {
  12408. "type": "boolean",
  12409. "value": false
  12410. },
  12411. "name": {
  12412. "type": "code",
  12413. "value": "result = True"
  12414. },
  12415. "position": {
  12416. "type": "code",
  12417. "value": "result = True"
  12418. },
  12419. "$type": "/Formalisms/Pacman/Pacman.pattern/__pPacman"
  12420. },
  12421. "23": {
  12422. "__pLabel": {
  12423. "type": "string",
  12424. "value": "4"
  12425. },
  12426. "__pMatchSubtypes": {
  12427. "type": "boolean",
  12428. "value": false
  12429. },
  12430. "$type": "/Formalisms/Pacman/Pacman.pattern/__pPoG"
  12431. },
  12432. "24": {
  12433. "__pLabel": {
  12434. "type": "string",
  12435. "value": "5"
  12436. },
  12437. "__pMatchSubtypes": {
  12438. "type": "boolean",
  12439. "value": false
  12440. },
  12441. "name": {
  12442. "type": "code",
  12443. "value": "result = getAttr()"
  12444. },
  12445. "position": {
  12446. "type": "code",
  12447. "value": "result = getAttr()"
  12448. },
  12449. "$type": "/Formalisms/Pacman/Pacman.pattern/__pPacman"
  12450. },
  12451. "25": {
  12452. "__pLabel": {
  12453. "type": "string",
  12454. "value": "6"
  12455. },
  12456. "__pMatchSubtypes": {
  12457. "type": "boolean",
  12458. "value": false
  12459. },
  12460. "$type": "/Formalisms/Pacman/Pacman.pattern/__pPoG"
  12461. },
  12462. "26": {
  12463. "__pLabel": {
  12464. "type": "string",
  12465. "value": "0"
  12466. },
  12467. "__pMatchSubtypes": {
  12468. "type": "boolean",
  12469. "value": false
  12470. },
  12471. "position": {
  12472. "type": "code",
  12473. "value": "result = True"
  12474. },
  12475. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGridNode"
  12476. },
  12477. "27": {
  12478. "__pLabel": {
  12479. "type": "string",
  12480. "value": "7"
  12481. },
  12482. "__pMatchSubtypes": {
  12483. "type": "boolean",
  12484. "value": false
  12485. },
  12486. "type": {
  12487. "type": "code",
  12488. "value": "result = True"
  12489. },
  12490. "position": {
  12491. "type": "code",
  12492. "value": "result = True"
  12493. },
  12494. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGhost"
  12495. },
  12496. "28": {
  12497. "__pLabel": {
  12498. "type": "string",
  12499. "value": "8"
  12500. },
  12501. "__pMatchSubtypes": {
  12502. "type": "boolean",
  12503. "value": false
  12504. },
  12505. "$type": "/Formalisms/Pacman/Pacman.pattern/__pGoG"
  12506. },
  12507. "29": {
  12508. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  12509. },
  12510. "45": {
  12511. "__pLabel": {
  12512. "type": "string",
  12513. "value": "2"
  12514. },
  12515. "__pMatchSubtypes": {
  12516. "type": "boolean",
  12517. "value": false
  12518. },
  12519. "$type": "/Formalisms/Pacman/Pacman.pattern/__pright"
  12520. },
  12521. "46": {
  12522. "__pLabel": {
  12523. "type": "string",
  12524. "value": "2"
  12525. },
  12526. "__pMatchSubtypes": {
  12527. "type": "boolean",
  12528. "value": false
  12529. },
  12530. "$type": "/Formalisms/Pacman/Pacman.pattern/__pright"
  12531. }
  12532. },
  12533. "edges": [
  12534. {
  12535. "src": "0",
  12536. "dest": "7"
  12537. },
  12538. {
  12539. "src": "7",
  12540. "dest": "2"
  12541. },
  12542. {
  12543. "src": "0",
  12544. "dest": "8"
  12545. },
  12546. {
  12547. "src": "8",
  12548. "dest": "3"
  12549. },
  12550. {
  12551. "src": "1",
  12552. "dest": "17"
  12553. },
  12554. {
  12555. "src": "17",
  12556. "dest": "9"
  12557. },
  12558. {
  12559. "src": "1",
  12560. "dest": "18"
  12561. },
  12562. {
  12563. "src": "18",
  12564. "dest": "11"
  12565. },
  12566. {
  12567. "src": "3",
  12568. "dest": "23"
  12569. },
  12570. {
  12571. "src": "23",
  12572. "dest": "22"
  12573. },
  12574. {
  12575. "src": "9",
  12576. "dest": "25"
  12577. },
  12578. {
  12579. "src": "25",
  12580. "dest": "24"
  12581. },
  12582. {
  12583. "src": "26",
  12584. "dest": "28"
  12585. },
  12586. {
  12587. "src": "28",
  12588. "dest": "27"
  12589. },
  12590. {
  12591. "src": "21",
  12592. "dest": "29"
  12593. },
  12594. {
  12595. "src": "29",
  12596. "dest": "26"
  12597. },
  12598. {
  12599. "src": "3",
  12600. "dest": "45"
  12601. },
  12602. {
  12603. "src": "45",
  12604. "dest": "2"
  12605. },
  12606. {
  12607. "src": "11",
  12608. "dest": "46"
  12609. },
  12610. {
  12611. "src": "46",
  12612. "dest": "9"
  12613. }
  12614. ],
  12615. "metamodels": [
  12616. "/Formalisms/Pacman/Pacman.pattern",
  12617. "/Formalisms/__Transformations__/TransformationRule/TransformationRule"
  12618. ]
  12619. }
  12620. }