R_arule.model 216 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257
  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. 195,
  13. 258
  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. 572,
  103. 258
  104. ]
  105. },
  106. "orientation": {
  107. "type": "double",
  108. "value": 0
  109. },
  110. "scale": {
  111. "type": "list<double>",
  112. "value": [
  113. 1.62894169,
  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": "ARuleIcon"
  188. },
  189. "position": {
  190. "type": "list<double>",
  191. "value": [
  192. 302,
  193. 475
  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. "402": {
  220. "width": {
  221. "type": "double",
  222. "value": 200
  223. },
  224. "height": {
  225. "type": "double",
  226. "value": 50
  227. },
  228. "cornerRadius": {
  229. "type": "double",
  230. "value": 1
  231. },
  232. "style": {
  233. "type": "map<string,string>",
  234. "value": {
  235. "fill": "#ffffff",
  236. "stroke": "#008000",
  237. "stroke-width": "5",
  238. "stroke-linecap": "butt",
  239. "stroke-linejoin": "miter",
  240. "stroke-miterlimit": "4",
  241. "stroke-opacity": "1",
  242. "fill-opacity": "0.5"
  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. 25
  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. "403": {
  274. "textContent": {
  275. "type": "string",
  276. "value": "name"
  277. },
  278. "style": {
  279. "type": "map<string,string>",
  280. "value": {
  281. "font-size": "20px",
  282. "font-style": "normal",
  283. "font-variant": "normal",
  284. "font-weight": "bold",
  285. "font-stretch": "normal",
  286. "text-align": "left",
  287. "line-height": "125%",
  288. "writing-mode": "lr-tb",
  289. "text-anchor": "left",
  290. "fill": "#008000",
  291. "fill-opacity": "1",
  292. "stroke": "none",
  293. "font-family": "Arial"
  294. }
  295. },
  296. "mapper": {
  297. "type": "code",
  298. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  299. },
  300. "parser": {
  301. "type": "code",
  302. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  303. },
  304. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  305. "position": {
  306. "type": "list<double>",
  307. "value": [
  308. 49,
  309. 39
  310. ]
  311. },
  312. "orientation": {
  313. "type": "double",
  314. "value": 0
  315. },
  316. "scale": {
  317. "type": "list<double>",
  318. "value": [
  319. 1,
  320. 1
  321. ]
  322. }
  323. },
  324. "404": {
  325. "segments": {
  326. "type": "string",
  327. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  328. },
  329. "style": {
  330. "type": "map<string,string>",
  331. "value": {
  332. "fill": "none",
  333. "stroke": "#008000",
  334. "stroke-width": "3",
  335. "stroke-linecap": "round",
  336. "stroke-linejoin": "round",
  337. "stroke-miterlimit": "4",
  338. "stroke-opacity": "1",
  339. "stroke-dasharray": "none"
  340. }
  341. },
  342. "mapper": {
  343. "type": "code",
  344. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  345. },
  346. "parser": {
  347. "type": "code",
  348. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  349. },
  350. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  351. "position": {
  352. "type": "list<double>",
  353. "value": [
  354. 48,
  355. 78
  356. ]
  357. },
  358. "orientation": {
  359. "type": "double",
  360. "value": 0
  361. },
  362. "scale": {
  363. "type": "list<double>",
  364. "value": [
  365. 1,
  366. 1
  367. ]
  368. }
  369. },
  370. "405": {
  371. "textContent": {
  372. "type": "string",
  373. "value": ":"
  374. },
  375. "style": {
  376. "type": "map<string,string>",
  377. "value": {
  378. "font-size": "20px",
  379. "font-style": "normal",
  380. "font-variant": "normal",
  381. "font-weight": "bold",
  382. "font-stretch": "normal",
  383. "text-align": "left",
  384. "line-height": "125%",
  385. "writing-mode": "lr-tb",
  386. "text-anchor": "left",
  387. "fill": "#008000",
  388. "fill-opacity": "1",
  389. "stroke": "none",
  390. "font-family": "Arial"
  391. }
  392. },
  393. "mapper": {
  394. "type": "code",
  395. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  396. },
  397. "parser": {
  398. "type": "code",
  399. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  400. },
  401. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  402. "position": {
  403. "type": "list<double>",
  404. "value": [
  405. 42,
  406. 39
  407. ]
  408. },
  409. "orientation": {
  410. "type": "double",
  411. "value": 0
  412. },
  413. "scale": {
  414. "type": "list<double>",
  415. "value": [
  416. 1,
  417. 1
  418. ]
  419. }
  420. },
  421. "406": {
  422. "segments": {
  423. "type": "string",
  424. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  425. },
  426. "style": {
  427. "type": "map<string,string>",
  428. "value": {
  429. "fill": "none",
  430. "stroke": "#008000",
  431. "stroke-width": "3",
  432. "stroke-linecap": "round",
  433. "stroke-linejoin": "round",
  434. "stroke-miterlimit": "4",
  435. "stroke-opacity": "1",
  436. "stroke-dasharray": "none"
  437. }
  438. },
  439. "mapper": {
  440. "type": "code",
  441. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  442. },
  443. "parser": {
  444. "type": "code",
  445. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  446. },
  447. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  448. "position": {
  449. "type": "list<double>",
  450. "value": [
  451. 145,
  452. 78
  453. ]
  454. },
  455. "orientation": {
  456. "type": "double",
  457. "value": 0
  458. },
  459. "scale": {
  460. "type": "list<double>",
  461. "value": [
  462. 1,
  463. 1
  464. ]
  465. }
  466. },
  467. "407": {
  468. "textContent": {
  469. "type": "string",
  470. "value": "alias"
  471. },
  472. "style": {
  473. "type": "map<string,string>",
  474. "value": {
  475. "font-size": "20px",
  476. "font-style": "normal",
  477. "font-variant": "normal",
  478. "font-weight": "bold",
  479. "font-stretch": "normal",
  480. "line-height": "125%",
  481. "text-anchor": "end",
  482. "fill": "#008000",
  483. "fill-opacity": "1",
  484. "stroke": "none",
  485. "font-family": "Arial"
  486. }
  487. },
  488. "mapper": {
  489. "type": "code",
  490. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  491. },
  492. "parser": {
  493. "type": "code",
  494. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  495. },
  496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  497. "position": {
  498. "type": "list<double>",
  499. "value": [
  500. 41,
  501. 39
  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. },
  516. "408": {
  517. "segments": {
  518. "type": "string",
  519. "value": "M 1.5,1.5069319 12.49983,12.506752"
  520. },
  521. "style": {
  522. "type": "map<string,string>",
  523. "value": {
  524. "fill": "none",
  525. "stroke": "#008000",
  526. "stroke-width": "3",
  527. "stroke-linecap": "round",
  528. "stroke-linejoin": "round",
  529. "stroke-miterlimit": "4",
  530. "stroke-opacity": "1",
  531. "stroke-dasharray": "none"
  532. }
  533. },
  534. "mapper": {
  535. "type": "code",
  536. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  537. },
  538. "parser": {
  539. "type": "code",
  540. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  541. },
  542. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  543. "position": {
  544. "type": "list<double>",
  545. "value": [
  546. 145,
  547. 78
  548. ]
  549. },
  550. "orientation": {
  551. "type": "double",
  552. "value": 0
  553. },
  554. "scale": {
  555. "type": "list<double>",
  556. "value": [
  557. 1,
  558. 1
  559. ]
  560. }
  561. },
  562. "410": {
  563. "segments": {
  564. "type": "string",
  565. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  566. },
  567. "style": {
  568. "type": "map<string,string>",
  569. "value": {
  570. "fill": "#ffffff",
  571. "fill-opacity": "0.5",
  572. "stroke": "#008000",
  573. "stroke-width": "3",
  574. "stroke-linecap": "butt",
  575. "stroke-linejoin": "miter",
  576. "stroke-miterlimit": "4",
  577. "stroke-opacity": "1"
  578. }
  579. },
  580. "mapper": {
  581. "type": "code",
  582. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  583. },
  584. "parser": {
  585. "type": "code",
  586. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  587. },
  588. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  589. "position": {
  590. "type": "list<double>",
  591. "value": [
  592. 96,
  593. 1
  594. ]
  595. },
  596. "orientation": {
  597. "type": "double",
  598. "value": 0
  599. },
  600. "scale": {
  601. "type": "list<double>",
  602. "value": [
  603. 1,
  604. 1
  605. ]
  606. }
  607. },
  608. "411": {
  609. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  610. "position": {
  611. "type": "list<double>",
  612. "value": [
  613. 38.25,
  614. 38.5
  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. "link-style": {
  629. "type": "map<string,string>",
  630. "value": {
  631. "stroke": "#00ffff",
  632. "stroke-dasharray": "",
  633. "stroke-opacity": 0.1,
  634. "stroke-width": 1
  635. }
  636. }
  637. },
  638. "412": {
  639. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  640. "position": {
  641. "type": "list<double>",
  642. "value": [
  643. 16.25,
  644. 38.5
  645. ]
  646. },
  647. "orientation": {
  648. "type": "double",
  649. "value": 0
  650. },
  651. "scale": {
  652. "type": "list<double>",
  653. "value": [
  654. 1,
  655. 1
  656. ]
  657. },
  658. "link-style": {
  659. "type": "map<string,string>",
  660. "value": {
  661. "stroke": "#00ffff",
  662. "stroke-dasharray": "",
  663. "stroke-opacity": 0.1,
  664. "stroke-width": 1
  665. }
  666. }
  667. },
  668. "413": {
  669. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  670. "position": {
  671. "type": "list<double>",
  672. "value": [
  673. 24,
  674. 38.5
  675. ]
  676. },
  677. "orientation": {
  678. "type": "double",
  679. "value": 0
  680. },
  681. "scale": {
  682. "type": "list<double>",
  683. "value": [
  684. 1,
  685. 1
  686. ]
  687. },
  688. "link-style": {
  689. "type": "map<string,string>",
  690. "value": {
  691. "stroke": "#00ffff",
  692. "stroke-dasharray": "",
  693. "stroke-opacity": 0.1,
  694. "stroke-width": 1
  695. }
  696. }
  697. },
  698. "__pLabelText": {
  699. "position": {
  700. "type": "list<double>",
  701. "value": [
  702. 0,
  703. 0
  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. "textContent": {
  718. "type": "string",
  719. "value": "0"
  720. },
  721. "style": {
  722. "type": "map<string,string>",
  723. "value": {
  724. "stroke": "#6000ff",
  725. "fill": "#6000ff",
  726. "font-size": "15px",
  727. "opacity": "1"
  728. }
  729. },
  730. "mapper": {
  731. "type": "code",
  732. "value": "({'textContent':getAttr('__pLabel')})"
  733. },
  734. "parser": {
  735. "type": "code",
  736. "value": "({'__pLabel':getAttr('textContent')})"
  737. },
  738. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  739. }
  740. },
  741. "edges": [
  742. {
  743. "src": "402",
  744. "dest": "411"
  745. },
  746. {
  747. "src": "411",
  748. "dest": "403"
  749. },
  750. {
  751. "src": "402",
  752. "dest": "412"
  753. },
  754. {
  755. "src": "412",
  756. "dest": "407"
  757. },
  758. {
  759. "src": "402",
  760. "dest": "413"
  761. },
  762. {
  763. "src": "413",
  764. "dest": "405"
  765. }
  766. ]
  767. }
  768. },
  769. "$asuri": {
  770. "type": "string",
  771. "value": "/Formalisms/__Transformations__/Transformation/MoTif.pattern/__pARule/2.instance"
  772. },
  773. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern/__pARuleIcon"
  774. },
  775. "3": {
  776. "link-style": {
  777. "type": "map<string,string>",
  778. "value": {
  779. "stroke": "#00ff00",
  780. "stroke-dasharray": "",
  781. "stroke-opacity": 0.2,
  782. "stroke-width": 1,
  783. "arrow-start": "none",
  784. "arrow-end": "classic-wide-long"
  785. }
  786. },
  787. "typename": {
  788. "type": "string",
  789. "value": "PatternContentsLink"
  790. },
  791. "position": {
  792. "type": "list<double>",
  793. "value": [
  794. 547.598242798131,
  795. 376.7403876890276
  796. ]
  797. },
  798. "orientation": {
  799. "type": "double",
  800. "value": 0
  801. },
  802. "scale": {
  803. "type": "list<double>",
  804. "value": [
  805. 1,
  806. 1
  807. ]
  808. },
  809. "mapper": {
  810. "type": "code",
  811. "value": ""
  812. },
  813. "parser": {
  814. "type": "code",
  815. "value": ""
  816. },
  817. "$contents": {
  818. "type": "map<string,*>",
  819. "value": {
  820. "nodes": {},
  821. "edges": []
  822. }
  823. },
  824. "$asuri": {
  825. "type": "string",
  826. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/3.instance"
  827. },
  828. "$segments": {
  829. "type": "map<string,list<string>>",
  830. "value": {
  831. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/0.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/3.instance": "M195.99999999999997,258L547.598242798131,376.7403876890276",
  832. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/3.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern/__pARuleIcon/2.instance": "M547.5489330792203,376.68331989741057L403.99943538637126,520.2527225607896"
  833. }
  834. },
  835. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  836. },
  837. "4": {
  838. "typename": {
  839. "type": "string",
  840. "value": "ARuleIcon"
  841. },
  842. "position": {
  843. "type": "list<double>",
  844. "value": [
  845. 775,
  846. 470
  847. ]
  848. },
  849. "orientation": {
  850. "type": "double",
  851. "value": 0
  852. },
  853. "scale": {
  854. "type": "list<double>",
  855. "value": [
  856. 1,
  857. 1
  858. ]
  859. },
  860. "mapper": {
  861. "type": "code",
  862. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  863. },
  864. "parser": {
  865. "type": "code",
  866. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  867. },
  868. "$contents": {
  869. "type": "map<string,*>",
  870. "value": {
  871. "nodes": {
  872. "402": {
  873. "width": {
  874. "type": "double",
  875. "value": 200
  876. },
  877. "height": {
  878. "type": "double",
  879. "value": 50
  880. },
  881. "cornerRadius": {
  882. "type": "double",
  883. "value": 1
  884. },
  885. "style": {
  886. "type": "map<string,string>",
  887. "value": {
  888. "fill": "#ffffff",
  889. "stroke": "#008000",
  890. "stroke-width": "5",
  891. "stroke-linecap": "butt",
  892. "stroke-linejoin": "miter",
  893. "stroke-miterlimit": "4",
  894. "stroke-opacity": "1",
  895. "fill-opacity": "0.5"
  896. }
  897. },
  898. "mapper": {
  899. "type": "code",
  900. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  901. },
  902. "parser": {
  903. "type": "code",
  904. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  905. },
  906. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  907. "position": {
  908. "type": "list<double>",
  909. "value": [
  910. 2,
  911. 25
  912. ]
  913. },
  914. "orientation": {
  915. "type": "double",
  916. "value": 0
  917. },
  918. "scale": {
  919. "type": "list<double>",
  920. "value": [
  921. 1,
  922. 1
  923. ]
  924. }
  925. },
  926. "403": {
  927. "textContent": {
  928. "type": "string",
  929. "value": "name"
  930. },
  931. "style": {
  932. "type": "map<string,string>",
  933. "value": {
  934. "font-size": "20px",
  935. "font-style": "normal",
  936. "font-variant": "normal",
  937. "font-weight": "bold",
  938. "font-stretch": "normal",
  939. "text-align": "left",
  940. "line-height": "125%",
  941. "writing-mode": "lr-tb",
  942. "text-anchor": "left",
  943. "fill": "#008000",
  944. "fill-opacity": "1",
  945. "stroke": "none",
  946. "font-family": "Arial"
  947. }
  948. },
  949. "mapper": {
  950. "type": "code",
  951. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  952. },
  953. "parser": {
  954. "type": "code",
  955. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  956. },
  957. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  958. "position": {
  959. "type": "list<double>",
  960. "value": [
  961. 49,
  962. 39
  963. ]
  964. },
  965. "orientation": {
  966. "type": "double",
  967. "value": 0
  968. },
  969. "scale": {
  970. "type": "list<double>",
  971. "value": [
  972. 1,
  973. 1
  974. ]
  975. }
  976. },
  977. "404": {
  978. "segments": {
  979. "type": "string",
  980. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  981. },
  982. "style": {
  983. "type": "map<string,string>",
  984. "value": {
  985. "fill": "none",
  986. "stroke": "#008000",
  987. "stroke-width": "3",
  988. "stroke-linecap": "round",
  989. "stroke-linejoin": "round",
  990. "stroke-miterlimit": "4",
  991. "stroke-opacity": "1",
  992. "stroke-dasharray": "none"
  993. }
  994. },
  995. "mapper": {
  996. "type": "code",
  997. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  998. },
  999. "parser": {
  1000. "type": "code",
  1001. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1002. },
  1003. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1004. "position": {
  1005. "type": "list<double>",
  1006. "value": [
  1007. 48,
  1008. 78
  1009. ]
  1010. },
  1011. "orientation": {
  1012. "type": "double",
  1013. "value": 0
  1014. },
  1015. "scale": {
  1016. "type": "list<double>",
  1017. "value": [
  1018. 1,
  1019. 1
  1020. ]
  1021. }
  1022. },
  1023. "405": {
  1024. "textContent": {
  1025. "type": "string",
  1026. "value": ":"
  1027. },
  1028. "style": {
  1029. "type": "map<string,string>",
  1030. "value": {
  1031. "font-size": "20px",
  1032. "font-style": "normal",
  1033. "font-variant": "normal",
  1034. "font-weight": "bold",
  1035. "font-stretch": "normal",
  1036. "text-align": "left",
  1037. "line-height": "125%",
  1038. "writing-mode": "lr-tb",
  1039. "text-anchor": "left",
  1040. "fill": "#008000",
  1041. "fill-opacity": "1",
  1042. "stroke": "none",
  1043. "font-family": "Arial"
  1044. }
  1045. },
  1046. "mapper": {
  1047. "type": "code",
  1048. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1049. },
  1050. "parser": {
  1051. "type": "code",
  1052. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1053. },
  1054. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1055. "position": {
  1056. "type": "list<double>",
  1057. "value": [
  1058. 42,
  1059. 39
  1060. ]
  1061. },
  1062. "orientation": {
  1063. "type": "double",
  1064. "value": 0
  1065. },
  1066. "scale": {
  1067. "type": "list<double>",
  1068. "value": [
  1069. 1,
  1070. 1
  1071. ]
  1072. }
  1073. },
  1074. "406": {
  1075. "segments": {
  1076. "type": "string",
  1077. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  1078. },
  1079. "style": {
  1080. "type": "map<string,string>",
  1081. "value": {
  1082. "fill": "none",
  1083. "stroke": "#008000",
  1084. "stroke-width": "3",
  1085. "stroke-linecap": "round",
  1086. "stroke-linejoin": "round",
  1087. "stroke-miterlimit": "4",
  1088. "stroke-opacity": "1",
  1089. "stroke-dasharray": "none"
  1090. }
  1091. },
  1092. "mapper": {
  1093. "type": "code",
  1094. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1095. },
  1096. "parser": {
  1097. "type": "code",
  1098. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1099. },
  1100. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1101. "position": {
  1102. "type": "list<double>",
  1103. "value": [
  1104. 145,
  1105. 78
  1106. ]
  1107. },
  1108. "orientation": {
  1109. "type": "double",
  1110. "value": 0
  1111. },
  1112. "scale": {
  1113. "type": "list<double>",
  1114. "value": [
  1115. 1,
  1116. 1
  1117. ]
  1118. }
  1119. },
  1120. "407": {
  1121. "textContent": {
  1122. "type": "string",
  1123. "value": "alias"
  1124. },
  1125. "style": {
  1126. "type": "map<string,string>",
  1127. "value": {
  1128. "font-size": "20px",
  1129. "font-style": "normal",
  1130. "font-variant": "normal",
  1131. "font-weight": "bold",
  1132. "font-stretch": "normal",
  1133. "line-height": "125%",
  1134. "text-anchor": "end",
  1135. "fill": "#008000",
  1136. "fill-opacity": "1",
  1137. "stroke": "none",
  1138. "font-family": "Arial"
  1139. }
  1140. },
  1141. "mapper": {
  1142. "type": "code",
  1143. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1144. },
  1145. "parser": {
  1146. "type": "code",
  1147. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1148. },
  1149. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1150. "position": {
  1151. "type": "list<double>",
  1152. "value": [
  1153. 41,
  1154. 39
  1155. ]
  1156. },
  1157. "orientation": {
  1158. "type": "double",
  1159. "value": 0
  1160. },
  1161. "scale": {
  1162. "type": "list<double>",
  1163. "value": [
  1164. 1,
  1165. 1
  1166. ]
  1167. }
  1168. },
  1169. "408": {
  1170. "segments": {
  1171. "type": "string",
  1172. "value": "M 1.5,1.5069319 12.49983,12.506752"
  1173. },
  1174. "style": {
  1175. "type": "map<string,string>",
  1176. "value": {
  1177. "fill": "none",
  1178. "stroke": "#008000",
  1179. "stroke-width": "3",
  1180. "stroke-linecap": "round",
  1181. "stroke-linejoin": "round",
  1182. "stroke-miterlimit": "4",
  1183. "stroke-opacity": "1",
  1184. "stroke-dasharray": "none"
  1185. }
  1186. },
  1187. "mapper": {
  1188. "type": "code",
  1189. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1190. },
  1191. "parser": {
  1192. "type": "code",
  1193. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1194. },
  1195. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1196. "position": {
  1197. "type": "list<double>",
  1198. "value": [
  1199. 145,
  1200. 78
  1201. ]
  1202. },
  1203. "orientation": {
  1204. "type": "double",
  1205. "value": 0
  1206. },
  1207. "scale": {
  1208. "type": "list<double>",
  1209. "value": [
  1210. 1,
  1211. 1
  1212. ]
  1213. }
  1214. },
  1215. "410": {
  1216. "segments": {
  1217. "type": "string",
  1218. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  1219. },
  1220. "style": {
  1221. "type": "map<string,string>",
  1222. "value": {
  1223. "fill": "#ffffff",
  1224. "fill-opacity": "0.5",
  1225. "stroke": "#008000",
  1226. "stroke-width": "3",
  1227. "stroke-linecap": "butt",
  1228. "stroke-linejoin": "miter",
  1229. "stroke-miterlimit": "4",
  1230. "stroke-opacity": "1"
  1231. }
  1232. },
  1233. "mapper": {
  1234. "type": "code",
  1235. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1236. },
  1237. "parser": {
  1238. "type": "code",
  1239. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1240. },
  1241. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1242. "position": {
  1243. "type": "list<double>",
  1244. "value": [
  1245. 96,
  1246. 1
  1247. ]
  1248. },
  1249. "orientation": {
  1250. "type": "double",
  1251. "value": 0
  1252. },
  1253. "scale": {
  1254. "type": "list<double>",
  1255. "value": [
  1256. 1,
  1257. 1
  1258. ]
  1259. }
  1260. },
  1261. "411": {
  1262. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1263. "position": {
  1264. "type": "list<double>",
  1265. "value": [
  1266. 38.25,
  1267. 38.5
  1268. ]
  1269. },
  1270. "orientation": {
  1271. "type": "double",
  1272. "value": 0
  1273. },
  1274. "scale": {
  1275. "type": "list<double>",
  1276. "value": [
  1277. 1,
  1278. 1
  1279. ]
  1280. },
  1281. "link-style": {
  1282. "type": "map<string,string>",
  1283. "value": {
  1284. "stroke": "#00ffff",
  1285. "stroke-dasharray": "",
  1286. "stroke-opacity": 0.1,
  1287. "stroke-width": 1
  1288. }
  1289. }
  1290. },
  1291. "412": {
  1292. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1293. "position": {
  1294. "type": "list<double>",
  1295. "value": [
  1296. 16.25,
  1297. 38.5
  1298. ]
  1299. },
  1300. "orientation": {
  1301. "type": "double",
  1302. "value": 0
  1303. },
  1304. "scale": {
  1305. "type": "list<double>",
  1306. "value": [
  1307. 1,
  1308. 1
  1309. ]
  1310. },
  1311. "link-style": {
  1312. "type": "map<string,string>",
  1313. "value": {
  1314. "stroke": "#00ffff",
  1315. "stroke-dasharray": "",
  1316. "stroke-opacity": 0.1,
  1317. "stroke-width": 1
  1318. }
  1319. }
  1320. },
  1321. "413": {
  1322. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1323. "position": {
  1324. "type": "list<double>",
  1325. "value": [
  1326. 24,
  1327. 38.5
  1328. ]
  1329. },
  1330. "orientation": {
  1331. "type": "double",
  1332. "value": 0
  1333. },
  1334. "scale": {
  1335. "type": "list<double>",
  1336. "value": [
  1337. 1,
  1338. 1
  1339. ]
  1340. },
  1341. "link-style": {
  1342. "type": "map<string,string>",
  1343. "value": {
  1344. "stroke": "#00ffff",
  1345. "stroke-dasharray": "",
  1346. "stroke-opacity": 0.1,
  1347. "stroke-width": 1
  1348. }
  1349. }
  1350. },
  1351. "__pLabelText": {
  1352. "position": {
  1353. "type": "list<double>",
  1354. "value": [
  1355. 0,
  1356. 0
  1357. ]
  1358. },
  1359. "orientation": {
  1360. "type": "double",
  1361. "value": 0
  1362. },
  1363. "scale": {
  1364. "type": "list<double>",
  1365. "value": [
  1366. 1,
  1367. 1
  1368. ]
  1369. },
  1370. "textContent": {
  1371. "type": "string",
  1372. "value": "0"
  1373. },
  1374. "style": {
  1375. "type": "map<string,string>",
  1376. "value": {
  1377. "stroke": "#6000ff",
  1378. "fill": "#6000ff",
  1379. "font-size": "15px",
  1380. "opacity": "1"
  1381. }
  1382. },
  1383. "mapper": {
  1384. "type": "code",
  1385. "value": "({'textContent':getAttr('__pLabel')})"
  1386. },
  1387. "parser": {
  1388. "type": "code",
  1389. "value": "({'__pLabel':getAttr('textContent')})"
  1390. },
  1391. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1392. }
  1393. },
  1394. "edges": [
  1395. {
  1396. "src": "402",
  1397. "dest": "411"
  1398. },
  1399. {
  1400. "src": "411",
  1401. "dest": "403"
  1402. },
  1403. {
  1404. "src": "402",
  1405. "dest": "412"
  1406. },
  1407. {
  1408. "src": "412",
  1409. "dest": "407"
  1410. },
  1411. {
  1412. "src": "402",
  1413. "dest": "413"
  1414. },
  1415. {
  1416. "src": "413",
  1417. "dest": "405"
  1418. }
  1419. ]
  1420. }
  1421. },
  1422. "$asuri": {
  1423. "type": "string",
  1424. "value": "/Formalisms/__Transformations__/Transformation/MoTif.pattern/__pARule/4.instance"
  1425. },
  1426. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern/__pARuleIcon"
  1427. },
  1428. "5": {
  1429. "typename": {
  1430. "type": "string",
  1431. "value": "MatcherIcon"
  1432. },
  1433. "position": {
  1434. "type": "list<double>",
  1435. "value": [
  1436. 1046,
  1437. 316
  1438. ]
  1439. },
  1440. "orientation": {
  1441. "type": "double",
  1442. "value": 0
  1443. },
  1444. "scale": {
  1445. "type": "list<double>",
  1446. "value": [
  1447. 1,
  1448. 1
  1449. ]
  1450. },
  1451. "mapper": {
  1452. "type": "code",
  1453. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1454. },
  1455. "parser": {
  1456. "type": "code",
  1457. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1458. },
  1459. "$contents": {
  1460. "type": "map<string,*>",
  1461. "value": {
  1462. "nodes": {
  1463. "22": {
  1464. "width": {
  1465. "type": "double",
  1466. "value": 175
  1467. },
  1468. "height": {
  1469. "type": "double",
  1470. "value": 50
  1471. },
  1472. "cornerRadius": {
  1473. "type": "double",
  1474. "value": 25
  1475. },
  1476. "style": {
  1477. "type": "map<string,string>",
  1478. "value": {
  1479. "stroke": "#008000",
  1480. "stroke-dasharray": "",
  1481. "fill": "white",
  1482. "fill-opacity": 0.5,
  1483. "font-size": "20px",
  1484. "stroke-width": 5,
  1485. "arrow-start": "none",
  1486. "arrow-end": "none"
  1487. }
  1488. },
  1489. "mapper": {
  1490. "type": "code",
  1491. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1492. },
  1493. "parser": {
  1494. "type": "code",
  1495. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1496. },
  1497. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1498. "position": {
  1499. "type": "list<double>",
  1500. "value": [
  1501. 6,
  1502. 31
  1503. ]
  1504. },
  1505. "orientation": {
  1506. "type": "double",
  1507. "value": 0
  1508. },
  1509. "scale": {
  1510. "type": "list<double>",
  1511. "value": [
  1512. 1,
  1513. 1
  1514. ]
  1515. }
  1516. },
  1517. "23": {
  1518. "segments": {
  1519. "type": "string",
  1520. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  1521. },
  1522. "style": {
  1523. "type": "map<string,string>",
  1524. "value": {
  1525. "fill": "none",
  1526. "stroke": "#008000",
  1527. "stroke-width": "3",
  1528. "stroke-linecap": "round",
  1529. "stroke-linejoin": "round",
  1530. "stroke-miterlimit": "4",
  1531. "stroke-opacity": "1",
  1532. "stroke-dasharray": "none"
  1533. }
  1534. },
  1535. "mapper": {
  1536. "type": "code",
  1537. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1538. },
  1539. "parser": {
  1540. "type": "code",
  1541. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1542. },
  1543. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1544. "position": {
  1545. "type": "list<double>",
  1546. "value": [
  1547. 49,
  1548. 84
  1549. ]
  1550. },
  1551. "orientation": {
  1552. "type": "double",
  1553. "value": 0
  1554. },
  1555. "scale": {
  1556. "type": "list<double>",
  1557. "value": [
  1558. 1,
  1559. 1
  1560. ]
  1561. }
  1562. },
  1563. "24": {
  1564. "segments": {
  1565. "type": "string",
  1566. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  1567. },
  1568. "style": {
  1569. "type": "map<string,string>",
  1570. "value": {
  1571. "fill": "none",
  1572. "stroke": "#008000",
  1573. "stroke-width": "3",
  1574. "stroke-linecap": "round",
  1575. "stroke-linejoin": "round",
  1576. "stroke-miterlimit": "4",
  1577. "stroke-opacity": "1",
  1578. "stroke-dasharray": "none"
  1579. }
  1580. },
  1581. "mapper": {
  1582. "type": "code",
  1583. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1584. },
  1585. "parser": {
  1586. "type": "code",
  1587. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1588. },
  1589. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1590. "position": {
  1591. "type": "list<double>",
  1592. "value": [
  1593. 130,
  1594. 84
  1595. ]
  1596. },
  1597. "orientation": {
  1598. "type": "double",
  1599. "value": 0
  1600. },
  1601. "scale": {
  1602. "type": "list<double>",
  1603. "value": [
  1604. 1,
  1605. 1
  1606. ]
  1607. }
  1608. },
  1609. "25": {
  1610. "segments": {
  1611. "type": "string",
  1612. "value": "M 1.5,1.5069319 12.49983,12.506752"
  1613. },
  1614. "style": {
  1615. "type": "map<string,string>",
  1616. "value": {
  1617. "fill": "none",
  1618. "stroke": "#008000",
  1619. "stroke-width": "3",
  1620. "stroke-linecap": "round",
  1621. "stroke-linejoin": "round",
  1622. "stroke-miterlimit": "4",
  1623. "stroke-opacity": "1",
  1624. "stroke-dasharray": "none"
  1625. }
  1626. },
  1627. "mapper": {
  1628. "type": "code",
  1629. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1630. },
  1631. "parser": {
  1632. "type": "code",
  1633. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1634. },
  1635. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1636. "position": {
  1637. "type": "list<double>",
  1638. "value": [
  1639. 130,
  1640. 84
  1641. ]
  1642. },
  1643. "orientation": {
  1644. "type": "double",
  1645. "value": 0
  1646. },
  1647. "scale": {
  1648. "type": "list<double>",
  1649. "value": [
  1650. 1,
  1651. 1
  1652. ]
  1653. }
  1654. },
  1655. "26": {
  1656. "segments": {
  1657. "type": "string",
  1658. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  1659. },
  1660. "style": {
  1661. "type": "map<string,string>",
  1662. "value": {
  1663. "fill": "#ffffff",
  1664. "fill-opacity": "0.5",
  1665. "stroke": "#008000",
  1666. "stroke-width": "3",
  1667. "stroke-linecap": "butt",
  1668. "stroke-linejoin": "miter",
  1669. "stroke-miterlimit": "4",
  1670. "stroke-opacity": "1"
  1671. }
  1672. },
  1673. "mapper": {
  1674. "type": "code",
  1675. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1676. },
  1677. "parser": {
  1678. "type": "code",
  1679. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1680. },
  1681. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1682. "position": {
  1683. "type": "list<double>",
  1684. "value": [
  1685. 47,
  1686. 8
  1687. ]
  1688. },
  1689. "orientation": {
  1690. "type": "double",
  1691. "value": 0
  1692. },
  1693. "scale": {
  1694. "type": "list<double>",
  1695. "value": [
  1696. 1,
  1697. 1
  1698. ]
  1699. }
  1700. },
  1701. "27": {
  1702. "r": {
  1703. "type": "double",
  1704. "value": 6
  1705. },
  1706. "style": {
  1707. "type": "map<string,string>",
  1708. "value": {
  1709. "fill": "#008000",
  1710. "fill-opacity": "1.0",
  1711. "stroke": "#008000",
  1712. "stroke-width": "3",
  1713. "stroke-linecap": "butt",
  1714. "stroke-linejoin": "miter",
  1715. "stroke-miterlimit": "4",
  1716. "stroke-opacity": "1"
  1717. }
  1718. },
  1719. "mapper": {
  1720. "type": "code",
  1721. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1722. },
  1723. "parser": {
  1724. "type": "code",
  1725. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1726. },
  1727. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1728. "position": {
  1729. "type": "list<double>",
  1730. "value": [
  1731. 130,
  1732. 16
  1733. ]
  1734. },
  1735. "orientation": {
  1736. "type": "double",
  1737. "value": 0
  1738. },
  1739. "scale": {
  1740. "type": "list<double>",
  1741. "value": [
  1742. 1,
  1743. 1
  1744. ]
  1745. }
  1746. },
  1747. "28": {
  1748. "textContent": {
  1749. "type": "string",
  1750. "value": "M"
  1751. },
  1752. "style": {
  1753. "type": "map<string,string>",
  1754. "value": {
  1755. "stroke": "none",
  1756. "stroke-dasharray": "",
  1757. "fill": "#008000",
  1758. "fill-opacity": 1,
  1759. "font-size": "20px",
  1760. "stroke-width": 1,
  1761. "font-family": "Courier New",
  1762. "arrow-start": "none",
  1763. "font-weight": "bold",
  1764. "arrow-end": "none"
  1765. }
  1766. },
  1767. "mapper": {
  1768. "type": "code",
  1769. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1770. },
  1771. "parser": {
  1772. "type": "code",
  1773. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1774. },
  1775. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1776. "position": {
  1777. "type": "list<double>",
  1778. "value": [
  1779. 154,
  1780. 32
  1781. ]
  1782. },
  1783. "orientation": {
  1784. "type": "double",
  1785. "value": 0
  1786. },
  1787. "scale": {
  1788. "type": "list<double>",
  1789. "value": [
  1790. 1,
  1791. 1
  1792. ]
  1793. }
  1794. },
  1795. "29": {
  1796. "textContent": {
  1797. "type": "string",
  1798. "value": "alias"
  1799. },
  1800. "style": {
  1801. "type": "map<string,string>",
  1802. "value": {
  1803. "font-size": "20px",
  1804. "font-style": "normal",
  1805. "font-variant": "normal",
  1806. "font-weight": "bold",
  1807. "font-stretch": "normal",
  1808. "line-height": "125%",
  1809. "text-anchor": "end",
  1810. "fill": "#008000",
  1811. "fill-opacity": "1",
  1812. "stroke": "none",
  1813. "font-family": "Arial"
  1814. }
  1815. },
  1816. "mapper": {
  1817. "type": "code",
  1818. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1819. },
  1820. "parser": {
  1821. "type": "code",
  1822. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1823. },
  1824. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1825. "position": {
  1826. "type": "list<double>",
  1827. "value": [
  1828. 85,
  1829. 46
  1830. ]
  1831. },
  1832. "orientation": {
  1833. "type": "double",
  1834. "value": 0
  1835. },
  1836. "scale": {
  1837. "type": "list<double>",
  1838. "value": [
  1839. 1,
  1840. 1
  1841. ]
  1842. }
  1843. },
  1844. "30": {
  1845. "textContent": {
  1846. "type": "string",
  1847. "value": "name"
  1848. },
  1849. "style": {
  1850. "type": "map<string,string>",
  1851. "value": {
  1852. "font-size": "20px",
  1853. "font-style": "normal",
  1854. "font-variant": "normal",
  1855. "font-weight": "bold",
  1856. "font-stretch": "normal",
  1857. "text-align": "left",
  1858. "line-height": "125%",
  1859. "writing-mode": "lr-tb",
  1860. "text-anchor": "left",
  1861. "fill": "#008000",
  1862. "fill-opacity": "1",
  1863. "stroke": "none",
  1864. "font-family": "Arial"
  1865. }
  1866. },
  1867. "mapper": {
  1868. "type": "code",
  1869. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1870. },
  1871. "parser": {
  1872. "type": "code",
  1873. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1874. },
  1875. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1876. "position": {
  1877. "type": "list<double>",
  1878. "value": [
  1879. 92,
  1880. 45
  1881. ]
  1882. },
  1883. "orientation": {
  1884. "type": "double",
  1885. "value": 0
  1886. },
  1887. "scale": {
  1888. "type": "list<double>",
  1889. "value": [
  1890. 1,
  1891. 1
  1892. ]
  1893. }
  1894. },
  1895. "31": {
  1896. "textContent": {
  1897. "type": "string",
  1898. "value": ":"
  1899. },
  1900. "style": {
  1901. "type": "map<string,string>",
  1902. "value": {
  1903. "font-size": "20px",
  1904. "font-style": "normal",
  1905. "font-variant": "normal",
  1906. "font-weight": "bold",
  1907. "font-stretch": "normal",
  1908. "text-align": "left",
  1909. "line-height": "125%",
  1910. "writing-mode": "lr-tb",
  1911. "text-anchor": "left",
  1912. "fill": "#008000",
  1913. "fill-opacity": "1",
  1914. "stroke": "none",
  1915. "font-family": "Arial"
  1916. }
  1917. },
  1918. "mapper": {
  1919. "type": "code",
  1920. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1921. },
  1922. "parser": {
  1923. "type": "code",
  1924. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1925. },
  1926. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1927. "position": {
  1928. "type": "list<double>",
  1929. "value": [
  1930. 85,
  1931. 45
  1932. ]
  1933. },
  1934. "orientation": {
  1935. "type": "double",
  1936. "value": 0
  1937. },
  1938. "scale": {
  1939. "type": "list<double>",
  1940. "value": [
  1941. 1,
  1942. 1
  1943. ]
  1944. }
  1945. },
  1946. "32": {
  1947. "textContent": {
  1948. "type": "string",
  1949. "value": "-"
  1950. },
  1951. "style": {
  1952. "type": "map<string,string>",
  1953. "value": {
  1954. "stroke": "none",
  1955. "stroke-dasharray": "",
  1956. "fill": "white",
  1957. "fill-opacity": 1,
  1958. "font-size": "23px",
  1959. "stroke-width": 1,
  1960. "font-family": "Courier New",
  1961. "arrow-start": "none",
  1962. "font-weight": "bold",
  1963. "arrow-end": "none"
  1964. }
  1965. },
  1966. "mapper": {
  1967. "type": "code",
  1968. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1969. },
  1970. "parser": {
  1971. "type": "code",
  1972. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1973. },
  1974. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1975. "position": {
  1976. "type": "list<double>",
  1977. "value": [
  1978. 129,
  1979. 8
  1980. ]
  1981. },
  1982. "orientation": {
  1983. "type": "double",
  1984. "value": 0
  1985. },
  1986. "scale": {
  1987. "type": "list<double>",
  1988. "value": [
  1989. 1,
  1990. 1
  1991. ]
  1992. }
  1993. },
  1994. "201": {
  1995. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1996. "position": {
  1997. "type": "list<double>",
  1998. "value": [
  1999. 47.25,
  2000. 45.5
  2001. ]
  2002. },
  2003. "orientation": {
  2004. "type": "double",
  2005. "value": 0
  2006. },
  2007. "scale": {
  2008. "type": "list<double>",
  2009. "value": [
  2010. 1,
  2011. 1
  2012. ]
  2013. },
  2014. "link-style": {
  2015. "type": "map<string,string>",
  2016. "value": {
  2017. "stroke": "#00ffff",
  2018. "stroke-dasharray": "",
  2019. "stroke-opacity": 0.1,
  2020. "stroke-width": 1
  2021. }
  2022. }
  2023. },
  2024. "329": {
  2025. "segments": {
  2026. "type": "string",
  2027. "value": "M 21.5,1.5069319 12.49983,12.506752"
  2028. },
  2029. "style": {
  2030. "type": "map<string,string>",
  2031. "value": {
  2032. "fill": "none",
  2033. "stroke": "#008000",
  2034. "stroke-width": "3",
  2035. "stroke-linecap": "round",
  2036. "stroke-linejoin": "round",
  2037. "stroke-miterlimit": "4",
  2038. "stroke-opacity": "1",
  2039. "stroke-dasharray": "none"
  2040. }
  2041. },
  2042. "mapper": {
  2043. "type": "code",
  2044. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2045. },
  2046. "parser": {
  2047. "type": "code",
  2048. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2049. },
  2050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2051. "position": {
  2052. "type": "list<double>",
  2053. "value": [
  2054. 168,
  2055. 51
  2056. ]
  2057. },
  2058. "orientation": {
  2059. "type": "double",
  2060. "value": 0
  2061. },
  2062. "scale": {
  2063. "type": "list<double>",
  2064. "value": [
  2065. 1,
  2066. 1
  2067. ]
  2068. }
  2069. },
  2070. "330": {
  2071. "segments": {
  2072. "type": "string",
  2073. "value": "M 19.5,1.5069319 11.49983,9.506752"
  2074. },
  2075. "style": {
  2076. "type": "map<string,string>",
  2077. "value": {
  2078. "fill": "none",
  2079. "stroke": "#008000",
  2080. "stroke-width": "3",
  2081. "stroke-linecap": "round",
  2082. "stroke-linejoin": "round",
  2083. "stroke-miterlimit": "4",
  2084. "stroke-opacity": "1",
  2085. "stroke-dasharray": "none"
  2086. }
  2087. },
  2088. "mapper": {
  2089. "type": "code",
  2090. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2091. },
  2092. "parser": {
  2093. "type": "code",
  2094. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2095. },
  2096. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2097. "position": {
  2098. "type": "list<double>",
  2099. "value": [
  2100. 185,
  2101. 50
  2102. ]
  2103. },
  2104. "orientation": {
  2105. "type": "double",
  2106. "value": 0
  2107. },
  2108. "scale": {
  2109. "type": "list<double>",
  2110. "value": [
  2111. 1,
  2112. 1
  2113. ]
  2114. }
  2115. },
  2116. "331": {
  2117. "segments": {
  2118. "type": "string",
  2119. "value": "M 1.5,1.5069319 8.49983,8.506752"
  2120. },
  2121. "style": {
  2122. "type": "map<string,string>",
  2123. "value": {
  2124. "fill": "none",
  2125. "stroke": "#008000",
  2126. "stroke-width": "3",
  2127. "stroke-linecap": "round",
  2128. "stroke-linejoin": "round",
  2129. "stroke-miterlimit": "4",
  2130. "stroke-opacity": "1",
  2131. "stroke-dasharray": "none"
  2132. }
  2133. },
  2134. "mapper": {
  2135. "type": "code",
  2136. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2137. },
  2138. "parser": {
  2139. "type": "code",
  2140. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2141. },
  2142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2143. "position": {
  2144. "type": "list<double>",
  2145. "value": [
  2146. 188,
  2147. 51
  2148. ]
  2149. },
  2150. "orientation": {
  2151. "type": "double",
  2152. "value": 0
  2153. },
  2154. "scale": {
  2155. "type": "list<double>",
  2156. "value": [
  2157. 1,
  2158. 1
  2159. ]
  2160. }
  2161. },
  2162. "__pLabelText": {
  2163. "position": {
  2164. "type": "list<double>",
  2165. "value": [
  2166. 0,
  2167. 0
  2168. ]
  2169. },
  2170. "orientation": {
  2171. "type": "double",
  2172. "value": 0
  2173. },
  2174. "scale": {
  2175. "type": "list<double>",
  2176. "value": [
  2177. 1,
  2178. 1
  2179. ]
  2180. },
  2181. "textContent": {
  2182. "type": "string",
  2183. "value": "1"
  2184. },
  2185. "style": {
  2186. "type": "map<string,string>",
  2187. "value": {
  2188. "stroke": "#6000ff",
  2189. "fill": "#6000ff",
  2190. "font-size": "15px",
  2191. "opacity": "1"
  2192. }
  2193. },
  2194. "mapper": {
  2195. "type": "code",
  2196. "value": "({'textContent':getAttr('__pLabel')})"
  2197. },
  2198. "parser": {
  2199. "type": "code",
  2200. "value": "({'__pLabel':getAttr('textContent')})"
  2201. },
  2202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2203. }
  2204. },
  2205. "edges": [
  2206. {
  2207. "src": "22",
  2208. "dest": "201"
  2209. },
  2210. {
  2211. "src": "201",
  2212. "dest": "31"
  2213. }
  2214. ]
  2215. }
  2216. },
  2217. "$asuri": {
  2218. "type": "string",
  2219. "value": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pMatcher/5.instance"
  2220. },
  2221. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pMatcherIcon"
  2222. },
  2223. "6": {
  2224. "typename": {
  2225. "type": "string",
  2226. "value": "IteratorIcon"
  2227. },
  2228. "position": {
  2229. "type": "list<double>",
  2230. "value": [
  2231. 1032,
  2232. 458
  2233. ]
  2234. },
  2235. "orientation": {
  2236. "type": "double",
  2237. "value": 0
  2238. },
  2239. "scale": {
  2240. "type": "list<double>",
  2241. "value": [
  2242. 1,
  2243. 1
  2244. ]
  2245. },
  2246. "mapper": {
  2247. "type": "code",
  2248. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2249. },
  2250. "parser": {
  2251. "type": "code",
  2252. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2253. },
  2254. "$contents": {
  2255. "type": "map<string,*>",
  2256. "value": {
  2257. "nodes": {
  2258. "124": {
  2259. "width": {
  2260. "type": "double",
  2261. "value": 175
  2262. },
  2263. "height": {
  2264. "type": "double",
  2265. "value": 50
  2266. },
  2267. "cornerRadius": {
  2268. "type": "double",
  2269. "value": 25
  2270. },
  2271. "style": {
  2272. "type": "map<string,string>",
  2273. "value": {
  2274. "stroke": "#800000",
  2275. "stroke-dasharray": "",
  2276. "fill": "white",
  2277. "fill-opacity": 0.5,
  2278. "font-size": "20px",
  2279. "stroke-width": 5,
  2280. "arrow-start": "none",
  2281. "arrow-end": "none"
  2282. }
  2283. },
  2284. "mapper": {
  2285. "type": "code",
  2286. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2287. },
  2288. "parser": {
  2289. "type": "code",
  2290. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2291. },
  2292. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2293. "position": {
  2294. "type": "list<double>",
  2295. "value": [
  2296. 32,
  2297. 32
  2298. ]
  2299. },
  2300. "orientation": {
  2301. "type": "double",
  2302. "value": 0
  2303. },
  2304. "scale": {
  2305. "type": "list<double>",
  2306. "value": [
  2307. 1,
  2308. 1
  2309. ]
  2310. }
  2311. },
  2312. "125": {
  2313. "segments": {
  2314. "type": "string",
  2315. "value": "M 1.5,1.5069319 12.49983,12.506752"
  2316. },
  2317. "style": {
  2318. "type": "map<string,string>",
  2319. "value": {
  2320. "fill": "none",
  2321. "stroke": "#800000",
  2322. "stroke-width": "3",
  2323. "stroke-linecap": "round",
  2324. "stroke-linejoin": "round",
  2325. "stroke-miterlimit": "4",
  2326. "stroke-opacity": "1",
  2327. "stroke-dasharray": "none"
  2328. }
  2329. },
  2330. "mapper": {
  2331. "type": "code",
  2332. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2333. },
  2334. "parser": {
  2335. "type": "code",
  2336. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2337. },
  2338. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2339. "position": {
  2340. "type": "list<double>",
  2341. "value": [
  2342. 156,
  2343. 85
  2344. ]
  2345. },
  2346. "orientation": {
  2347. "type": "double",
  2348. "value": 0
  2349. },
  2350. "scale": {
  2351. "type": "list<double>",
  2352. "value": [
  2353. 1,
  2354. 1
  2355. ]
  2356. }
  2357. },
  2358. "126": {
  2359. "r": {
  2360. "type": "double",
  2361. "value": 6
  2362. },
  2363. "style": {
  2364. "type": "map<string,string>",
  2365. "value": {
  2366. "fill": "#800000",
  2367. "fill-opacity": "1.0",
  2368. "stroke": "#800000",
  2369. "stroke-width": "3",
  2370. "stroke-linecap": "butt",
  2371. "stroke-linejoin": "miter",
  2372. "stroke-miterlimit": "4",
  2373. "stroke-opacity": "1"
  2374. }
  2375. },
  2376. "mapper": {
  2377. "type": "code",
  2378. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2379. },
  2380. "parser": {
  2381. "type": "code",
  2382. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2383. },
  2384. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2385. "position": {
  2386. "type": "list<double>",
  2387. "value": [
  2388. 156,
  2389. 17
  2390. ]
  2391. },
  2392. "orientation": {
  2393. "type": "double",
  2394. "value": 0
  2395. },
  2396. "scale": {
  2397. "type": "list<double>",
  2398. "value": [
  2399. 1,
  2400. 1
  2401. ]
  2402. }
  2403. },
  2404. "127": {
  2405. "textContent": {
  2406. "type": "string",
  2407. "value": "I"
  2408. },
  2409. "style": {
  2410. "type": "map<string,string>",
  2411. "value": {
  2412. "stroke": "none",
  2413. "stroke-dasharray": "",
  2414. "fill": "#800000",
  2415. "fill-opacity": 1,
  2416. "font-size": "20px",
  2417. "stroke-width": 1,
  2418. "font-family": "Courier New",
  2419. "arrow-start": "none",
  2420. "font-weight": "bold",
  2421. "arrow-end": "none"
  2422. }
  2423. },
  2424. "mapper": {
  2425. "type": "code",
  2426. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2427. },
  2428. "parser": {
  2429. "type": "code",
  2430. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2431. },
  2432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2433. "position": {
  2434. "type": "list<double>",
  2435. "value": [
  2436. 180,
  2437. 33
  2438. ]
  2439. },
  2440. "orientation": {
  2441. "type": "double",
  2442. "value": 0
  2443. },
  2444. "scale": {
  2445. "type": "list<double>",
  2446. "value": [
  2447. 1,
  2448. 1
  2449. ]
  2450. }
  2451. },
  2452. "128": {
  2453. "segments": {
  2454. "type": "string",
  2455. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  2456. },
  2457. "style": {
  2458. "type": "map<string,string>",
  2459. "value": {
  2460. "fill": "none",
  2461. "stroke": "#800000",
  2462. "stroke-width": "3",
  2463. "stroke-linecap": "round",
  2464. "stroke-linejoin": "round",
  2465. "stroke-miterlimit": "4",
  2466. "stroke-opacity": "1",
  2467. "stroke-dasharray": "none"
  2468. }
  2469. },
  2470. "mapper": {
  2471. "type": "code",
  2472. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2473. },
  2474. "parser": {
  2475. "type": "code",
  2476. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2477. },
  2478. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2479. "position": {
  2480. "type": "list<double>",
  2481. "value": [
  2482. 156,
  2483. 85
  2484. ]
  2485. },
  2486. "orientation": {
  2487. "type": "double",
  2488. "value": 0
  2489. },
  2490. "scale": {
  2491. "type": "list<double>",
  2492. "value": [
  2493. 1,
  2494. 1
  2495. ]
  2496. }
  2497. },
  2498. "129": {
  2499. "textContent": {
  2500. "type": "string",
  2501. "value": "name"
  2502. },
  2503. "style": {
  2504. "type": "map<string,string>",
  2505. "value": {
  2506. "font-size": "20px",
  2507. "font-style": "normal",
  2508. "font-variant": "normal",
  2509. "font-weight": "bold",
  2510. "font-stretch": "normal",
  2511. "text-align": "left",
  2512. "line-height": "125%",
  2513. "writing-mode": "lr-tb",
  2514. "text-anchor": "left",
  2515. "fill": "#800000",
  2516. "fill-opacity": "1",
  2517. "stroke": "none",
  2518. "font-family": "Arial"
  2519. }
  2520. },
  2521. "mapper": {
  2522. "type": "code",
  2523. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2524. },
  2525. "parser": {
  2526. "type": "code",
  2527. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2528. },
  2529. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2530. "position": {
  2531. "type": "list<double>",
  2532. "value": [
  2533. 118,
  2534. 46
  2535. ]
  2536. },
  2537. "orientation": {
  2538. "type": "double",
  2539. "value": 0
  2540. },
  2541. "scale": {
  2542. "type": "list<double>",
  2543. "value": [
  2544. 1,
  2545. 1
  2546. ]
  2547. }
  2548. },
  2549. "130": {
  2550. "textContent": {
  2551. "type": "string",
  2552. "value": ":"
  2553. },
  2554. "style": {
  2555. "type": "map<string,string>",
  2556. "value": {
  2557. "font-size": "20px",
  2558. "font-style": "normal",
  2559. "font-variant": "normal",
  2560. "font-weight": "bold",
  2561. "font-stretch": "normal",
  2562. "text-align": "left",
  2563. "line-height": "125%",
  2564. "writing-mode": "lr-tb",
  2565. "text-anchor": "left",
  2566. "fill": "#800000",
  2567. "fill-opacity": "1",
  2568. "stroke": "none",
  2569. "font-family": "Arial"
  2570. }
  2571. },
  2572. "mapper": {
  2573. "type": "code",
  2574. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2575. },
  2576. "parser": {
  2577. "type": "code",
  2578. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2579. },
  2580. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2581. "position": {
  2582. "type": "list<double>",
  2583. "value": [
  2584. 111,
  2585. 46
  2586. ]
  2587. },
  2588. "orientation": {
  2589. "type": "double",
  2590. "value": 0
  2591. },
  2592. "scale": {
  2593. "type": "list<double>",
  2594. "value": [
  2595. 1,
  2596. 1
  2597. ]
  2598. }
  2599. },
  2600. "131": {
  2601. "textContent": {
  2602. "type": "string",
  2603. "value": "-"
  2604. },
  2605. "style": {
  2606. "type": "map<string,string>",
  2607. "value": {
  2608. "stroke": "none",
  2609. "stroke-dasharray": "",
  2610. "fill": "white",
  2611. "fill-opacity": 1,
  2612. "font-size": "23px",
  2613. "stroke-width": 1,
  2614. "font-family": "Courier New",
  2615. "arrow-start": "none",
  2616. "font-weight": "bold",
  2617. "arrow-end": "none"
  2618. }
  2619. },
  2620. "mapper": {
  2621. "type": "code",
  2622. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2623. },
  2624. "parser": {
  2625. "type": "code",
  2626. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2627. },
  2628. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2629. "position": {
  2630. "type": "list<double>",
  2631. "value": [
  2632. 155,
  2633. 10
  2634. ]
  2635. },
  2636. "orientation": {
  2637. "type": "double",
  2638. "value": 0
  2639. },
  2640. "scale": {
  2641. "type": "list<double>",
  2642. "value": [
  2643. 1,
  2644. 1
  2645. ]
  2646. }
  2647. },
  2648. "132": {
  2649. "segments": {
  2650. "type": "string",
  2651. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  2652. },
  2653. "style": {
  2654. "type": "map<string,string>",
  2655. "value": {
  2656. "fill": "#ffffff",
  2657. "fill-opacity": "0.5",
  2658. "stroke": "#800000",
  2659. "stroke-width": "3",
  2660. "stroke-linecap": "butt",
  2661. "stroke-linejoin": "miter",
  2662. "stroke-miterlimit": "4",
  2663. "stroke-opacity": "1"
  2664. }
  2665. },
  2666. "mapper": {
  2667. "type": "code",
  2668. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2669. },
  2670. "parser": {
  2671. "type": "code",
  2672. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2673. },
  2674. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2675. "position": {
  2676. "type": "list<double>",
  2677. "value": [
  2678. 73,
  2679. 9
  2680. ]
  2681. },
  2682. "orientation": {
  2683. "type": "double",
  2684. "value": 0
  2685. },
  2686. "scale": {
  2687. "type": "list<double>",
  2688. "value": [
  2689. 1,
  2690. 1
  2691. ]
  2692. }
  2693. },
  2694. "133": {
  2695. "textContent": {
  2696. "type": "string",
  2697. "value": "►"
  2698. },
  2699. "style": {
  2700. "type": "map<string,string>",
  2701. "value": {
  2702. "font-size": "17px",
  2703. "font-style": "normal",
  2704. "font-variant": "normal",
  2705. "font-weight": "bold",
  2706. "font-stretch": "normal",
  2707. "text-align": "left",
  2708. "line-height": "125%",
  2709. "writing-mode": "lr-tb",
  2710. "text-anchor": "left",
  2711. "fill": "#800000",
  2712. "fill-opacity": "1",
  2713. "stroke": "none",
  2714. "font-family": "Arial"
  2715. }
  2716. },
  2717. "mapper": {
  2718. "type": "code",
  2719. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2720. },
  2721. "parser": {
  2722. "type": "code",
  2723. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2724. },
  2725. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2726. "position": {
  2727. "type": "list<double>",
  2728. "value": [
  2729. 19,
  2730. 49
  2731. ]
  2732. },
  2733. "orientation": {
  2734. "type": "double",
  2735. "value": 0
  2736. },
  2737. "scale": {
  2738. "type": "list<double>",
  2739. "value": [
  2740. 1,
  2741. 1
  2742. ]
  2743. }
  2744. },
  2745. "134": {
  2746. "segments": {
  2747. "type": "string",
  2748. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  2749. },
  2750. "style": {
  2751. "type": "map<string,string>",
  2752. "value": {
  2753. "fill": "none",
  2754. "stroke": "#800000",
  2755. "stroke-width": "3",
  2756. "stroke-linecap": "round",
  2757. "stroke-linejoin": "round",
  2758. "stroke-miterlimit": "4",
  2759. "stroke-opacity": "1",
  2760. "stroke-dasharray": "none"
  2761. }
  2762. },
  2763. "mapper": {
  2764. "type": "code",
  2765. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2766. },
  2767. "parser": {
  2768. "type": "code",
  2769. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2770. },
  2771. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2772. "position": {
  2773. "type": "list<double>",
  2774. "value": [
  2775. 75,
  2776. 85
  2777. ]
  2778. },
  2779. "orientation": {
  2780. "type": "double",
  2781. "value": 0
  2782. },
  2783. "scale": {
  2784. "type": "list<double>",
  2785. "value": [
  2786. 1,
  2787. 1
  2788. ]
  2789. }
  2790. },
  2791. "135": {
  2792. "textContent": {
  2793. "type": "string",
  2794. "value": "►"
  2795. },
  2796. "style": {
  2797. "type": "map<string,string>",
  2798. "value": {
  2799. "font-size": "17px",
  2800. "font-style": "normal",
  2801. "font-variant": "normal",
  2802. "font-weight": "bold",
  2803. "font-stretch": "normal",
  2804. "text-align": "left",
  2805. "line-height": "125%",
  2806. "writing-mode": "lr-tb",
  2807. "text-anchor": "left",
  2808. "fill": "#800000",
  2809. "fill-opacity": "1",
  2810. "stroke": "none",
  2811. "font-family": "Arial"
  2812. }
  2813. },
  2814. "mapper": {
  2815. "type": "code",
  2816. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2817. },
  2818. "parser": {
  2819. "type": "code",
  2820. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2821. },
  2822. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2823. "position": {
  2824. "type": "list<double>",
  2825. "value": [
  2826. 10,
  2827. 49
  2828. ]
  2829. },
  2830. "orientation": {
  2831. "type": "double",
  2832. "value": 0
  2833. },
  2834. "scale": {
  2835. "type": "list<double>",
  2836. "value": [
  2837. 1,
  2838. 1
  2839. ]
  2840. }
  2841. },
  2842. "136": {
  2843. "textContent": {
  2844. "type": "string",
  2845. "value": "alias"
  2846. },
  2847. "style": {
  2848. "type": "map<string,string>",
  2849. "value": {
  2850. "font-size": "20px",
  2851. "font-style": "normal",
  2852. "font-variant": "normal",
  2853. "font-weight": "bold",
  2854. "font-stretch": "normal",
  2855. "line-height": "125%",
  2856. "text-anchor": "end",
  2857. "fill": "#800000",
  2858. "fill-opacity": "1",
  2859. "stroke": "none",
  2860. "font-family": "Arial"
  2861. }
  2862. },
  2863. "mapper": {
  2864. "type": "code",
  2865. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2866. },
  2867. "parser": {
  2868. "type": "code",
  2869. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2870. },
  2871. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2872. "position": {
  2873. "type": "list<double>",
  2874. "value": [
  2875. 110,
  2876. 46
  2877. ]
  2878. },
  2879. "orientation": {
  2880. "type": "double",
  2881. "value": 0
  2882. },
  2883. "scale": {
  2884. "type": "list<double>",
  2885. "value": [
  2886. 1,
  2887. 1
  2888. ]
  2889. }
  2890. },
  2891. "311": {
  2892. "segments": {
  2893. "type": "string",
  2894. "value": "M 21.5,1.5069319 12.49983,12.506752"
  2895. },
  2896. "style": {
  2897. "type": "map<string,string>",
  2898. "value": {
  2899. "fill": "none",
  2900. "stroke": "#800000",
  2901. "stroke-width": "3",
  2902. "stroke-linecap": "round",
  2903. "stroke-linejoin": "round",
  2904. "stroke-miterlimit": "4",
  2905. "stroke-opacity": "1",
  2906. "stroke-dasharray": "none"
  2907. }
  2908. },
  2909. "mapper": {
  2910. "type": "code",
  2911. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2912. },
  2913. "parser": {
  2914. "type": "code",
  2915. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2916. },
  2917. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2918. "position": {
  2919. "type": "list<double>",
  2920. "value": [
  2921. 195,
  2922. 51
  2923. ]
  2924. },
  2925. "orientation": {
  2926. "type": "double",
  2927. "value": 0
  2928. },
  2929. "scale": {
  2930. "type": "list<double>",
  2931. "value": [
  2932. 1,
  2933. 1
  2934. ]
  2935. }
  2936. },
  2937. "312": {
  2938. "segments": {
  2939. "type": "string",
  2940. "value": "M 19.5,1.5069319 11.49983,9.506752"
  2941. },
  2942. "style": {
  2943. "type": "map<string,string>",
  2944. "value": {
  2945. "fill": "none",
  2946. "stroke": "#800000",
  2947. "stroke-width": "3",
  2948. "stroke-linecap": "round",
  2949. "stroke-linejoin": "round",
  2950. "stroke-miterlimit": "4",
  2951. "stroke-opacity": "1",
  2952. "stroke-dasharray": "none"
  2953. }
  2954. },
  2955. "mapper": {
  2956. "type": "code",
  2957. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2958. },
  2959. "parser": {
  2960. "type": "code",
  2961. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2962. },
  2963. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2964. "position": {
  2965. "type": "list<double>",
  2966. "value": [
  2967. 212,
  2968. 50
  2969. ]
  2970. },
  2971. "orientation": {
  2972. "type": "double",
  2973. "value": 0
  2974. },
  2975. "scale": {
  2976. "type": "list<double>",
  2977. "value": [
  2978. 1,
  2979. 1
  2980. ]
  2981. }
  2982. },
  2983. "313": {
  2984. "segments": {
  2985. "type": "string",
  2986. "value": "M 1.5,1.5069319 8.49983,8.506752"
  2987. },
  2988. "style": {
  2989. "type": "map<string,string>",
  2990. "value": {
  2991. "fill": "none",
  2992. "stroke": "#800000",
  2993. "stroke-width": "3",
  2994. "stroke-linecap": "round",
  2995. "stroke-linejoin": "round",
  2996. "stroke-miterlimit": "4",
  2997. "stroke-opacity": "1",
  2998. "stroke-dasharray": "none"
  2999. }
  3000. },
  3001. "mapper": {
  3002. "type": "code",
  3003. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3004. },
  3005. "parser": {
  3006. "type": "code",
  3007. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3008. },
  3009. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3010. "position": {
  3011. "type": "list<double>",
  3012. "value": [
  3013. 215,
  3014. 51
  3015. ]
  3016. },
  3017. "orientation": {
  3018. "type": "double",
  3019. "value": 0
  3020. },
  3021. "scale": {
  3022. "type": "list<double>",
  3023. "value": [
  3024. 1,
  3025. 1
  3026. ]
  3027. }
  3028. },
  3029. "__pLabelText": {
  3030. "position": {
  3031. "type": "list<double>",
  3032. "value": [
  3033. 0,
  3034. 0
  3035. ]
  3036. },
  3037. "orientation": {
  3038. "type": "double",
  3039. "value": 0
  3040. },
  3041. "scale": {
  3042. "type": "list<double>",
  3043. "value": [
  3044. 1,
  3045. 1
  3046. ]
  3047. },
  3048. "textContent": {
  3049. "type": "string",
  3050. "value": "2"
  3051. },
  3052. "style": {
  3053. "type": "map<string,string>",
  3054. "value": {
  3055. "stroke": "#6000ff",
  3056. "fill": "#6000ff",
  3057. "font-size": "15px",
  3058. "opacity": "1"
  3059. }
  3060. },
  3061. "mapper": {
  3062. "type": "code",
  3063. "value": "({'textContent':getAttr('__pLabel')})"
  3064. },
  3065. "parser": {
  3066. "type": "code",
  3067. "value": "({'__pLabel':getAttr('textContent')})"
  3068. },
  3069. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3070. }
  3071. },
  3072. "edges": []
  3073. }
  3074. },
  3075. "$asuri": {
  3076. "type": "string",
  3077. "value": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pIterator/6.instance"
  3078. },
  3079. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pIteratorIcon"
  3080. },
  3081. "7": {
  3082. "typename": {
  3083. "type": "string",
  3084. "value": "RewriterIcon"
  3085. },
  3086. "position": {
  3087. "type": "list<double>",
  3088. "value": [
  3089. 1051,
  3090. 587
  3091. ]
  3092. },
  3093. "orientation": {
  3094. "type": "double",
  3095. "value": 0
  3096. },
  3097. "scale": {
  3098. "type": "list<double>",
  3099. "value": [
  3100. 1,
  3101. 1
  3102. ]
  3103. },
  3104. "mapper": {
  3105. "type": "code",
  3106. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3107. },
  3108. "parser": {
  3109. "type": "code",
  3110. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3111. },
  3112. "$contents": {
  3113. "type": "map<string,*>",
  3114. "value": {
  3115. "nodes": {
  3116. "73": {
  3117. "width": {
  3118. "type": "double",
  3119. "value": 175
  3120. },
  3121. "height": {
  3122. "type": "double",
  3123. "value": 50
  3124. },
  3125. "cornerRadius": {
  3126. "type": "double",
  3127. "value": 25
  3128. },
  3129. "style": {
  3130. "type": "map<string,string>",
  3131. "value": {
  3132. "stroke": "#003366",
  3133. "stroke-dasharray": "",
  3134. "fill": "white",
  3135. "fill-opacity": 0.5,
  3136. "font-size": "20px",
  3137. "stroke-width": 5,
  3138. "arrow-start": "none",
  3139. "arrow-end": "none"
  3140. }
  3141. },
  3142. "mapper": {
  3143. "type": "code",
  3144. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3145. },
  3146. "parser": {
  3147. "type": "code",
  3148. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3149. },
  3150. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3151. "position": {
  3152. "type": "list<double>",
  3153. "value": [
  3154. 7,
  3155. 32
  3156. ]
  3157. },
  3158. "orientation": {
  3159. "type": "double",
  3160. "value": 0
  3161. },
  3162. "scale": {
  3163. "type": "list<double>",
  3164. "value": [
  3165. 1,
  3166. 1
  3167. ]
  3168. }
  3169. },
  3170. "74": {
  3171. "segments": {
  3172. "type": "string",
  3173. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  3174. },
  3175. "style": {
  3176. "type": "map<string,string>",
  3177. "value": {
  3178. "fill": "none",
  3179. "stroke": "#003366",
  3180. "stroke-width": "3",
  3181. "stroke-linecap": "round",
  3182. "stroke-linejoin": "round",
  3183. "stroke-miterlimit": "4",
  3184. "stroke-opacity": "1",
  3185. "stroke-dasharray": "none"
  3186. }
  3187. },
  3188. "mapper": {
  3189. "type": "code",
  3190. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3191. },
  3192. "parser": {
  3193. "type": "code",
  3194. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3195. },
  3196. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3197. "position": {
  3198. "type": "list<double>",
  3199. "value": [
  3200. 50,
  3201. 85
  3202. ]
  3203. },
  3204. "orientation": {
  3205. "type": "double",
  3206. "value": 0
  3207. },
  3208. "scale": {
  3209. "type": "list<double>",
  3210. "value": [
  3211. 1,
  3212. 1
  3213. ]
  3214. }
  3215. },
  3216. "77": {
  3217. "segments": {
  3218. "type": "string",
  3219. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  3220. },
  3221. "style": {
  3222. "type": "map<string,string>",
  3223. "value": {
  3224. "fill": "#ffffff",
  3225. "fill-opacity": "0.5",
  3226. "stroke": "#003366",
  3227. "stroke-width": "3",
  3228. "stroke-linecap": "butt",
  3229. "stroke-linejoin": "miter",
  3230. "stroke-miterlimit": "4",
  3231. "stroke-opacity": "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. 48,
  3247. 9
  3248. ]
  3249. },
  3250. "orientation": {
  3251. "type": "double",
  3252. "value": 0
  3253. },
  3254. "scale": {
  3255. "type": "list<double>",
  3256. "value": [
  3257. 1,
  3258. 1
  3259. ]
  3260. }
  3261. },
  3262. "78": {
  3263. "r": {
  3264. "type": "double",
  3265. "value": 6
  3266. },
  3267. "style": {
  3268. "type": "map<string,string>",
  3269. "value": {
  3270. "fill": "#003366",
  3271. "fill-opacity": "1.0",
  3272. "stroke": "#003366",
  3273. "stroke-width": "3",
  3274. "stroke-linecap": "butt",
  3275. "stroke-linejoin": "miter",
  3276. "stroke-miterlimit": "4",
  3277. "stroke-opacity": "1"
  3278. }
  3279. },
  3280. "mapper": {
  3281. "type": "code",
  3282. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3283. },
  3284. "parser": {
  3285. "type": "code",
  3286. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3287. },
  3288. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3289. "position": {
  3290. "type": "list<double>",
  3291. "value": [
  3292. 131,
  3293. 17
  3294. ]
  3295. },
  3296. "orientation": {
  3297. "type": "double",
  3298. "value": 0
  3299. },
  3300. "scale": {
  3301. "type": "list<double>",
  3302. "value": [
  3303. 1,
  3304. 1
  3305. ]
  3306. }
  3307. },
  3308. "79": {
  3309. "textContent": {
  3310. "type": "string",
  3311. "value": "W"
  3312. },
  3313. "style": {
  3314. "type": "map<string,string>",
  3315. "value": {
  3316. "stroke": "none",
  3317. "stroke-dasharray": "",
  3318. "fill": "#003366",
  3319. "fill-opacity": 1,
  3320. "font-size": "20px",
  3321. "stroke-width": 1,
  3322. "font-family": "Courier New",
  3323. "arrow-start": "none",
  3324. "font-weight": "bold",
  3325. "arrow-end": "none"
  3326. }
  3327. },
  3328. "mapper": {
  3329. "type": "code",
  3330. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3331. },
  3332. "parser": {
  3333. "type": "code",
  3334. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3335. },
  3336. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3337. "position": {
  3338. "type": "list<double>",
  3339. "value": [
  3340. 155,
  3341. 33
  3342. ]
  3343. },
  3344. "orientation": {
  3345. "type": "double",
  3346. "value": 0
  3347. },
  3348. "scale": {
  3349. "type": "list<double>",
  3350. "value": [
  3351. 1,
  3352. 1
  3353. ]
  3354. }
  3355. },
  3356. "80": {
  3357. "textContent": {
  3358. "type": "string",
  3359. "value": "alias"
  3360. },
  3361. "style": {
  3362. "type": "map<string,string>",
  3363. "value": {
  3364. "font-size": "20px",
  3365. "font-style": "normal",
  3366. "font-variant": "normal",
  3367. "font-weight": "bold",
  3368. "font-stretch": "normal",
  3369. "line-height": "125%",
  3370. "text-anchor": "end",
  3371. "fill": "#003366",
  3372. "fill-opacity": "1",
  3373. "stroke": "none",
  3374. "font-family": "Arial"
  3375. }
  3376. },
  3377. "mapper": {
  3378. "type": "code",
  3379. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3380. },
  3381. "parser": {
  3382. "type": "code",
  3383. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3384. },
  3385. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3386. "position": {
  3387. "type": "list<double>",
  3388. "value": [
  3389. 87,
  3390. 46
  3391. ]
  3392. },
  3393. "orientation": {
  3394. "type": "double",
  3395. "value": 0
  3396. },
  3397. "scale": {
  3398. "type": "list<double>",
  3399. "value": [
  3400. 1,
  3401. 1
  3402. ]
  3403. }
  3404. },
  3405. "81": {
  3406. "textContent": {
  3407. "type": "string",
  3408. "value": "name"
  3409. },
  3410. "style": {
  3411. "type": "map<string,string>",
  3412. "value": {
  3413. "font-size": "20px",
  3414. "font-style": "normal",
  3415. "font-variant": "normal",
  3416. "font-weight": "bold",
  3417. "font-stretch": "normal",
  3418. "text-align": "left",
  3419. "line-height": "125%",
  3420. "writing-mode": "lr-tb",
  3421. "text-anchor": "left",
  3422. "fill": "#003366",
  3423. "fill-opacity": "1",
  3424. "stroke": "none",
  3425. "font-family": "Arial"
  3426. }
  3427. },
  3428. "mapper": {
  3429. "type": "code",
  3430. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3431. },
  3432. "parser": {
  3433. "type": "code",
  3434. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3435. },
  3436. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3437. "position": {
  3438. "type": "list<double>",
  3439. "value": [
  3440. 95,
  3441. 46
  3442. ]
  3443. },
  3444. "orientation": {
  3445. "type": "double",
  3446. "value": 0
  3447. },
  3448. "scale": {
  3449. "type": "list<double>",
  3450. "value": [
  3451. 1,
  3452. 1
  3453. ]
  3454. }
  3455. },
  3456. "82": {
  3457. "textContent": {
  3458. "type": "string",
  3459. "value": ":"
  3460. },
  3461. "style": {
  3462. "type": "map<string,string>",
  3463. "value": {
  3464. "font-size": "20px",
  3465. "font-style": "normal",
  3466. "font-variant": "normal",
  3467. "font-weight": "bold",
  3468. "font-stretch": "normal",
  3469. "text-align": "left",
  3470. "line-height": "125%",
  3471. "writing-mode": "lr-tb",
  3472. "text-anchor": "left",
  3473. "fill": "#003366",
  3474. "fill-opacity": "1",
  3475. "stroke": "none",
  3476. "font-family": "Arial"
  3477. }
  3478. },
  3479. "mapper": {
  3480. "type": "code",
  3481. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3482. },
  3483. "parser": {
  3484. "type": "code",
  3485. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3486. },
  3487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3488. "position": {
  3489. "type": "list<double>",
  3490. "value": [
  3491. 88,
  3492. 46
  3493. ]
  3494. },
  3495. "orientation": {
  3496. "type": "double",
  3497. "value": 0
  3498. },
  3499. "scale": {
  3500. "type": "list<double>",
  3501. "value": [
  3502. 1,
  3503. 1
  3504. ]
  3505. }
  3506. },
  3507. "83": {
  3508. "textContent": {
  3509. "type": "string",
  3510. "value": "-"
  3511. },
  3512. "style": {
  3513. "type": "map<string,string>",
  3514. "value": {
  3515. "stroke": "none",
  3516. "stroke-dasharray": "",
  3517. "fill": "white",
  3518. "fill-opacity": 1,
  3519. "font-size": "23px",
  3520. "stroke-width": 1,
  3521. "font-family": "Courier New",
  3522. "arrow-start": "none",
  3523. "font-weight": "bold",
  3524. "arrow-end": "none"
  3525. }
  3526. },
  3527. "mapper": {
  3528. "type": "code",
  3529. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3530. },
  3531. "parser": {
  3532. "type": "code",
  3533. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3534. },
  3535. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3536. "position": {
  3537. "type": "list<double>",
  3538. "value": [
  3539. 130,
  3540. 9
  3541. ]
  3542. },
  3543. "orientation": {
  3544. "type": "double",
  3545. "value": 0
  3546. },
  3547. "scale": {
  3548. "type": "list<double>",
  3549. "value": [
  3550. 1,
  3551. 1
  3552. ]
  3553. }
  3554. },
  3555. "323": {
  3556. "segments": {
  3557. "type": "string",
  3558. "value": "M 21.5,1.5069319 12.49983,12.506752"
  3559. },
  3560. "style": {
  3561. "type": "map<string,string>",
  3562. "value": {
  3563. "fill": "none",
  3564. "stroke": "#003366",
  3565. "stroke-width": "3",
  3566. "stroke-linecap": "round",
  3567. "stroke-linejoin": "round",
  3568. "stroke-miterlimit": "4",
  3569. "stroke-opacity": "1",
  3570. "stroke-dasharray": "none"
  3571. }
  3572. },
  3573. "mapper": {
  3574. "type": "code",
  3575. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3576. },
  3577. "parser": {
  3578. "type": "code",
  3579. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3580. },
  3581. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3582. "position": {
  3583. "type": "list<double>",
  3584. "value": [
  3585. 170,
  3586. 52
  3587. ]
  3588. },
  3589. "orientation": {
  3590. "type": "double",
  3591. "value": 0
  3592. },
  3593. "scale": {
  3594. "type": "list<double>",
  3595. "value": [
  3596. 1,
  3597. 1
  3598. ]
  3599. }
  3600. },
  3601. "324": {
  3602. "segments": {
  3603. "type": "string",
  3604. "value": "M 19.5,1.5069319 11.49983,9.506752"
  3605. },
  3606. "style": {
  3607. "type": "map<string,string>",
  3608. "value": {
  3609. "fill": "none",
  3610. "stroke": "#003366",
  3611. "stroke-width": "3",
  3612. "stroke-linecap": "round",
  3613. "stroke-linejoin": "round",
  3614. "stroke-miterlimit": "4",
  3615. "stroke-opacity": "1",
  3616. "stroke-dasharray": "none"
  3617. }
  3618. },
  3619. "mapper": {
  3620. "type": "code",
  3621. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3622. },
  3623. "parser": {
  3624. "type": "code",
  3625. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3626. },
  3627. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3628. "position": {
  3629. "type": "list<double>",
  3630. "value": [
  3631. 187,
  3632. 51
  3633. ]
  3634. },
  3635. "orientation": {
  3636. "type": "double",
  3637. "value": 0
  3638. },
  3639. "scale": {
  3640. "type": "list<double>",
  3641. "value": [
  3642. 1,
  3643. 1
  3644. ]
  3645. }
  3646. },
  3647. "325": {
  3648. "segments": {
  3649. "type": "string",
  3650. "value": "M 1.5,1.5069319 8.49983,8.506752"
  3651. },
  3652. "style": {
  3653. "type": "map<string,string>",
  3654. "value": {
  3655. "fill": "none",
  3656. "stroke": "#003366",
  3657. "stroke-width": "3",
  3658. "stroke-linecap": "round",
  3659. "stroke-linejoin": "round",
  3660. "stroke-miterlimit": "4",
  3661. "stroke-opacity": "1",
  3662. "stroke-dasharray": "none"
  3663. }
  3664. },
  3665. "mapper": {
  3666. "type": "code",
  3667. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3668. },
  3669. "parser": {
  3670. "type": "code",
  3671. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3672. },
  3673. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3674. "position": {
  3675. "type": "list<double>",
  3676. "value": [
  3677. 190,
  3678. 52
  3679. ]
  3680. },
  3681. "orientation": {
  3682. "type": "double",
  3683. "value": 0
  3684. },
  3685. "scale": {
  3686. "type": "list<double>",
  3687. "value": [
  3688. 1,
  3689. 1
  3690. ]
  3691. }
  3692. },
  3693. "__pLabelText": {
  3694. "position": {
  3695. "type": "list<double>",
  3696. "value": [
  3697. 0,
  3698. 0
  3699. ]
  3700. },
  3701. "orientation": {
  3702. "type": "double",
  3703. "value": 0
  3704. },
  3705. "scale": {
  3706. "type": "list<double>",
  3707. "value": [
  3708. 1,
  3709. 1
  3710. ]
  3711. },
  3712. "textContent": {
  3713. "type": "string",
  3714. "value": "3"
  3715. },
  3716. "style": {
  3717. "type": "map<string,string>",
  3718. "value": {
  3719. "stroke": "#6000ff",
  3720. "fill": "#6000ff",
  3721. "font-size": "15px",
  3722. "opacity": "1"
  3723. }
  3724. },
  3725. "mapper": {
  3726. "type": "code",
  3727. "value": "({'textContent':getAttr('__pLabel')})"
  3728. },
  3729. "parser": {
  3730. "type": "code",
  3731. "value": "({'__pLabel':getAttr('textContent')})"
  3732. },
  3733. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3734. }
  3735. },
  3736. "edges": []
  3737. }
  3738. },
  3739. "$asuri": {
  3740. "type": "string",
  3741. "value": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pRewriter/7.instance"
  3742. },
  3743. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pRewriterIcon"
  3744. },
  3745. "8": {
  3746. "link-style": {
  3747. "type": "map<string,string>",
  3748. "value": {
  3749. "stroke": "#008080",
  3750. "stroke-opacity": 1,
  3751. "stroke-width": 2
  3752. }
  3753. },
  3754. "arrowHead": {
  3755. "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)",
  3756. "value": "custom"
  3757. },
  3758. "arrowTail": {
  3759. "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)",
  3760. "value": "arrow-black"
  3761. },
  3762. "typename": {
  3763. "type": "string",
  3764. "value": "portLink"
  3765. },
  3766. "position": {
  3767. "type": "list<double>",
  3768. "value": [
  3769. 1106.5,
  3770. 446.5
  3771. ]
  3772. },
  3773. "orientation": {
  3774. "type": "double",
  3775. "value": 0
  3776. },
  3777. "scale": {
  3778. "type": "list<double>",
  3779. "value": [
  3780. 1,
  3781. 1
  3782. ]
  3783. },
  3784. "mapper": {
  3785. "type": "code",
  3786. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3787. },
  3788. "parser": {
  3789. "type": "code",
  3790. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3791. },
  3792. "$contents": {
  3793. "type": "map<string,*>",
  3794. "value": {
  3795. "nodes": {
  3796. "267": {
  3797. "segments": {
  3798. "type": "string",
  3799. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3800. },
  3801. "style": {
  3802. "type": "map<string,string>",
  3803. "value": {
  3804. "stroke": "#000000",
  3805. "fill": "#000000",
  3806. "opacity": 0,
  3807. "stroke-width": 1
  3808. }
  3809. },
  3810. "mapper": {
  3811. "type": "code",
  3812. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3813. },
  3814. "parser": {
  3815. "type": "code",
  3816. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3817. },
  3818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3819. "position": {
  3820. "type": "list<double>",
  3821. "value": [
  3822. "0;8.459730019420249,14.142135623730766%",
  3823. "0;30.933838888479784,98.99494936611669%"
  3824. ]
  3825. },
  3826. "orientation": {
  3827. "type": "double",
  3828. "value": "0;81.86989764584413"
  3829. },
  3830. "scale": {
  3831. "type": "list<double>",
  3832. "value": [
  3833. 1,
  3834. 1
  3835. ]
  3836. },
  3837. "arrow": "arrowTail",
  3838. "arrowType": "arrow-black",
  3839. "$linkDecoratorInfo": {
  3840. "type": "map<string,double>",
  3841. "value": {
  3842. "xratio": 1,
  3843. "yoffset": -4
  3844. }
  3845. }
  3846. },
  3847. "268": {
  3848. "segments": {
  3849. "type": "string",
  3850. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3851. },
  3852. "style": {
  3853. "type": "map<string,string>",
  3854. "value": {
  3855. "stroke": "#000000",
  3856. "fill": "#000000",
  3857. "opacity": 0,
  3858. "stroke-width": 1
  3859. }
  3860. },
  3861. "mapper": {
  3862. "type": "code",
  3863. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3864. },
  3865. "parser": {
  3866. "type": "code",
  3867. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3868. },
  3869. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3870. "position": {
  3871. "type": "list<double>",
  3872. "value": [
  3873. "0;14.39942698138725,14.142135623730766%",
  3874. "0;30.085310751055943,98.99494936611669%"
  3875. ]
  3876. },
  3877. "orientation": {
  3878. "type": "double",
  3879. "value": "0;81.86989764584413"
  3880. },
  3881. "scale": {
  3882. "type": "list<double>",
  3883. "value": [
  3884. 1,
  3885. 1
  3886. ]
  3887. },
  3888. "arrow": "arrowTail",
  3889. "arrowType": "diamond-black-large",
  3890. "$linkDecoratorInfo": {
  3891. "type": "map<string,double>",
  3892. "value": {
  3893. "xratio": 1,
  3894. "yoffset": -10
  3895. }
  3896. }
  3897. },
  3898. "269": {
  3899. "r": {
  3900. "type": "double",
  3901. "value": 10
  3902. },
  3903. "style": {
  3904. "type": "map<string,string>",
  3905. "value": {
  3906. "stroke": "#000000",
  3907. "fill": "#000000",
  3908. "opacity": 0,
  3909. "stroke-width": 1
  3910. }
  3911. },
  3912. "mapper": {
  3913. "type": "code",
  3914. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3915. },
  3916. "parser": {
  3917. "type": "code",
  3918. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3919. },
  3920. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3921. "position": {
  3922. "type": "list<double>",
  3923. "value": [
  3924. "0;14.39942698138725,14.142135623730766%",
  3925. "0;30.085310751055943,98.99494936611669%"
  3926. ]
  3927. },
  3928. "orientation": {
  3929. "type": "double",
  3930. "value": "0;81.86989764584413"
  3931. },
  3932. "scale": {
  3933. "type": "list<double>",
  3934. "value": [
  3935. 1,
  3936. 1
  3937. ]
  3938. },
  3939. "arrow": "arrowTail",
  3940. "arrowType": "circle-black-large",
  3941. "$linkDecoratorInfo": {
  3942. "type": "map<string,double>",
  3943. "value": {
  3944. "xratio": 1,
  3945. "yoffset": -10
  3946. }
  3947. }
  3948. },
  3949. "270": {
  3950. "r": {
  3951. "type": "double",
  3952. "value": 10
  3953. },
  3954. "style": {
  3955. "type": "map<string,string>",
  3956. "value": {
  3957. "stroke": "#000000",
  3958. "fill": "#ffffff",
  3959. "opacity": 0,
  3960. "stroke-width": 1
  3961. }
  3962. },
  3963. "mapper": {
  3964. "type": "code",
  3965. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3966. },
  3967. "parser": {
  3968. "type": "code",
  3969. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3970. },
  3971. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3972. "position": {
  3973. "type": "list<double>",
  3974. "value": [
  3975. "0;14.39942698138725,14.142135623730766%",
  3976. "0;30.085310751055943,98.99494936611669%"
  3977. ]
  3978. },
  3979. "orientation": {
  3980. "type": "double",
  3981. "value": "0;81.86989764584413"
  3982. },
  3983. "scale": {
  3984. "type": "list<double>",
  3985. "value": [
  3986. 1,
  3987. 1
  3988. ]
  3989. },
  3990. "arrow": "arrowTail",
  3991. "arrowType": "circle-white-large",
  3992. "$linkDecoratorInfo": {
  3993. "type": "map<string,double>",
  3994. "value": {
  3995. "xratio": 1,
  3996. "yoffset": -10
  3997. }
  3998. }
  3999. },
  4000. "271": {
  4001. "r": {
  4002. "type": "double",
  4003. "value": 5
  4004. },
  4005. "style": {
  4006. "type": "map<string,string>",
  4007. "value": {
  4008. "stroke": "#000000",
  4009. "fill": "#000000",
  4010. "opacity": 0,
  4011. "stroke-width": 1
  4012. }
  4013. },
  4014. "mapper": {
  4015. "type": "code",
  4016. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4017. },
  4018. "parser": {
  4019. "type": "code",
  4020. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4021. },
  4022. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4023. "position": {
  4024. "type": "list<double>",
  4025. "value": [
  4026. "0;9.449679513081264,14.142135623730766%",
  4027. "0;30.79241753224244,98.99494936611669%"
  4028. ]
  4029. },
  4030. "orientation": {
  4031. "type": "double",
  4032. "value": "0;81.86989764584413"
  4033. },
  4034. "scale": {
  4035. "type": "list<double>",
  4036. "value": [
  4037. 1,
  4038. 1
  4039. ]
  4040. },
  4041. "arrow": "arrowTail",
  4042. "arrowType": "circle-black",
  4043. "$linkDecoratorInfo": {
  4044. "type": "map<string,double>",
  4045. "value": {
  4046. "xratio": 1,
  4047. "yoffset": -5
  4048. }
  4049. }
  4050. },
  4051. "272": {
  4052. "segments": {
  4053. "type": "string",
  4054. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4055. },
  4056. "style": {
  4057. "type": "map<string,string>",
  4058. "value": {
  4059. "stroke": "#000000",
  4060. "fill": "#000000",
  4061. "opacity": 0,
  4062. "stroke-width": 1
  4063. }
  4064. },
  4065. "mapper": {
  4066. "type": "code",
  4067. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4068. },
  4069. "parser": {
  4070. "type": "code",
  4071. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4072. },
  4073. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4074. "position": {
  4075. "type": "list<double>",
  4076. "value": [
  4077. "0;9.449679513081264,14.142135623730766%",
  4078. "0;30.79241753224244,98.99494936611669%"
  4079. ]
  4080. },
  4081. "orientation": {
  4082. "type": "double",
  4083. "value": "0;81.86989764584413"
  4084. },
  4085. "scale": {
  4086. "type": "list<double>",
  4087. "value": [
  4088. 1,
  4089. 1
  4090. ]
  4091. },
  4092. "arrow": "arrowTail",
  4093. "arrowType": "diamond-black",
  4094. "$linkDecoratorInfo": {
  4095. "type": "map<string,double>",
  4096. "value": {
  4097. "xratio": 1,
  4098. "yoffset": -5
  4099. }
  4100. }
  4101. },
  4102. "273": {
  4103. "segments": {
  4104. "type": "string",
  4105. "value": "m0,0 l20,10 l-20,10 z"
  4106. },
  4107. "style": {
  4108. "type": "map<string,string>",
  4109. "value": {
  4110. "stroke": "#000000",
  4111. "fill": "#000000",
  4112. "opacity": 0,
  4113. "stroke-width": 1
  4114. }
  4115. },
  4116. "mapper": {
  4117. "type": "code",
  4118. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4119. },
  4120. "parser": {
  4121. "type": "code",
  4122. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4123. },
  4124. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4125. "position": {
  4126. "type": "list<double>",
  4127. "value": [
  4128. "0;14.39942698138725,14.142135623730766%",
  4129. "0;30.085310751055943,98.99494936611669%"
  4130. ]
  4131. },
  4132. "orientation": {
  4133. "type": "double",
  4134. "value": "0;81.86989764584413"
  4135. },
  4136. "scale": {
  4137. "type": "list<double>",
  4138. "value": [
  4139. 1,
  4140. 1
  4141. ]
  4142. },
  4143. "arrow": "arrowTail",
  4144. "arrowType": "triangle-black-large",
  4145. "$linkDecoratorInfo": {
  4146. "type": "map<string,double>",
  4147. "value": {
  4148. "xratio": 1,
  4149. "yoffset": -10
  4150. }
  4151. }
  4152. },
  4153. "274": {
  4154. "segments": {
  4155. "type": "string",
  4156. "value": "m0,0 l10,4 l-10,4 z"
  4157. },
  4158. "style": {
  4159. "type": "map<string,string>",
  4160. "value": {
  4161. "stroke": "#000000",
  4162. "fill": "#000000",
  4163. "opacity": 0,
  4164. "stroke-width": 1
  4165. }
  4166. },
  4167. "mapper": {
  4168. "type": "code",
  4169. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4170. },
  4171. "parser": {
  4172. "type": "code",
  4173. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4174. },
  4175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4176. "position": {
  4177. "type": "list<double>",
  4178. "value": [
  4179. "0;8.459730019420249,14.142135623730766%",
  4180. "0;30.933838888479784,98.99494936611669%"
  4181. ]
  4182. },
  4183. "orientation": {
  4184. "type": "double",
  4185. "value": "0;81.86989764584413"
  4186. },
  4187. "scale": {
  4188. "type": "list<double>",
  4189. "value": [
  4190. 1,
  4191. 1
  4192. ]
  4193. },
  4194. "arrow": "arrowTail",
  4195. "arrowType": "triangle-black",
  4196. "$linkDecoratorInfo": {
  4197. "type": "map<string,double>",
  4198. "value": {
  4199. "xratio": 1,
  4200. "yoffset": -4
  4201. }
  4202. }
  4203. },
  4204. "275": {
  4205. "segments": {
  4206. "type": "string",
  4207. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  4208. },
  4209. "style": {
  4210. "type": "map<string,string>",
  4211. "value": {
  4212. "stroke": "#000000",
  4213. "fill": "#000000",
  4214. "opacity": 0,
  4215. "stroke-width": 1
  4216. }
  4217. },
  4218. "mapper": {
  4219. "type": "code",
  4220. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4221. },
  4222. "parser": {
  4223. "type": "code",
  4224. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4225. },
  4226. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4227. "position": {
  4228. "type": "list<double>",
  4229. "value": [
  4230. "0;12.419527994064765,14.142135623730766%",
  4231. "0;30.36815346353052,98.99494936611669%"
  4232. ]
  4233. },
  4234. "orientation": {
  4235. "type": "double",
  4236. "value": "0;81.86989764584413"
  4237. },
  4238. "scale": {
  4239. "type": "list<double>",
  4240. "value": [
  4241. 1,
  4242. 1
  4243. ]
  4244. },
  4245. "arrow": "arrowTail",
  4246. "arrowType": "arrow-black-large",
  4247. "$linkDecoratorInfo": {
  4248. "type": "map<string,double>",
  4249. "value": {
  4250. "xratio": 1,
  4251. "yoffset": -8
  4252. }
  4253. }
  4254. },
  4255. "276": {
  4256. "segments": {
  4257. "type": "string",
  4258. "value": "m0,0 l20,10 l-20,10 z"
  4259. },
  4260. "style": {
  4261. "type": "map<string,string>",
  4262. "value": {
  4263. "stroke": "#000000",
  4264. "fill": "#ffffff",
  4265. "opacity": 0,
  4266. "stroke-width": 1
  4267. }
  4268. },
  4269. "mapper": {
  4270. "type": "code",
  4271. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4272. },
  4273. "parser": {
  4274. "type": "code",
  4275. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4276. },
  4277. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4278. "position": {
  4279. "type": "list<double>",
  4280. "value": [
  4281. "0;14.39942698138725,14.142135623730766%",
  4282. "0;30.085310751055943,98.99494936611669%"
  4283. ]
  4284. },
  4285. "orientation": {
  4286. "type": "double",
  4287. "value": "0;81.86989764584413"
  4288. },
  4289. "scale": {
  4290. "type": "list<double>",
  4291. "value": [
  4292. 1,
  4293. 1
  4294. ]
  4295. },
  4296. "arrow": "arrowTail",
  4297. "arrowType": "triangle-white-large",
  4298. "$linkDecoratorInfo": {
  4299. "type": "map<string,double>",
  4300. "value": {
  4301. "xratio": 1,
  4302. "yoffset": -10
  4303. }
  4304. }
  4305. },
  4306. "277": {
  4307. "segments": {
  4308. "type": "string",
  4309. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4310. },
  4311. "style": {
  4312. "type": "map<string,string>",
  4313. "value": {
  4314. "stroke": "#000000",
  4315. "fill": "#ffffff",
  4316. "opacity": 0,
  4317. "stroke-width": 1
  4318. }
  4319. },
  4320. "mapper": {
  4321. "type": "code",
  4322. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4323. },
  4324. "parser": {
  4325. "type": "code",
  4326. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4327. },
  4328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4329. "position": {
  4330. "type": "list<double>",
  4331. "value": [
  4332. "0;9.449679513081264,14.142135623730766%",
  4333. "0;30.79241753224244,98.99494936611669%"
  4334. ]
  4335. },
  4336. "orientation": {
  4337. "type": "double",
  4338. "value": "0;81.86989764584413"
  4339. },
  4340. "scale": {
  4341. "type": "list<double>",
  4342. "value": [
  4343. 1,
  4344. 1
  4345. ]
  4346. },
  4347. "arrow": "arrowTail",
  4348. "arrowType": "diamond-white",
  4349. "$linkDecoratorInfo": {
  4350. "type": "map<string,double>",
  4351. "value": {
  4352. "xratio": 1,
  4353. "yoffset": -5
  4354. }
  4355. }
  4356. },
  4357. "278": {
  4358. "segments": {
  4359. "type": "string",
  4360. "value": "m0,0 l20,8 l-20,8"
  4361. },
  4362. "style": {
  4363. "type": "map<string,string>",
  4364. "value": {
  4365. "stroke": "#000000",
  4366. "fill": "#000000",
  4367. "fill-opacity": 0,
  4368. "stroke-width": 1,
  4369. "opacity": 0
  4370. }
  4371. },
  4372. "mapper": {
  4373. "type": "code",
  4374. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4375. },
  4376. "parser": {
  4377. "type": "code",
  4378. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4379. },
  4380. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4381. "position": {
  4382. "type": "list<double>",
  4383. "value": [
  4384. "0;12.419527994064765,14.142135623730766%",
  4385. "0;30.36815346353052,98.99494936611669%"
  4386. ]
  4387. },
  4388. "orientation": {
  4389. "type": "double",
  4390. "value": "0;81.86989764584413"
  4391. },
  4392. "scale": {
  4393. "type": "list<double>",
  4394. "value": [
  4395. 1,
  4396. 1
  4397. ]
  4398. },
  4399. "arrow": "arrowTail",
  4400. "arrowType": "arrow-empty-large",
  4401. "$linkDecoratorInfo": {
  4402. "type": "map<string,double>",
  4403. "value": {
  4404. "xratio": 1,
  4405. "yoffset": -8
  4406. }
  4407. }
  4408. },
  4409. "279": {
  4410. "r": {
  4411. "type": "double",
  4412. "value": 5
  4413. },
  4414. "style": {
  4415. "type": "map<string,string>",
  4416. "value": {
  4417. "stroke": "#000000",
  4418. "fill": "#ffffff",
  4419. "opacity": 0,
  4420. "stroke-width": 1
  4421. }
  4422. },
  4423. "mapper": {
  4424. "type": "code",
  4425. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4426. },
  4427. "parser": {
  4428. "type": "code",
  4429. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4430. },
  4431. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4432. "position": {
  4433. "type": "list<double>",
  4434. "value": [
  4435. "0;9.449679513081264,14.142135623730766%",
  4436. "0;30.79241753224244,98.99494936611669%"
  4437. ]
  4438. },
  4439. "orientation": {
  4440. "type": "double",
  4441. "value": "0;81.86989764584413"
  4442. },
  4443. "scale": {
  4444. "type": "list<double>",
  4445. "value": [
  4446. 1,
  4447. 1
  4448. ]
  4449. },
  4450. "arrow": "arrowTail",
  4451. "arrowType": "circle-white",
  4452. "$linkDecoratorInfo": {
  4453. "type": "map<string,double>",
  4454. "value": {
  4455. "xratio": 1,
  4456. "yoffset": -5
  4457. }
  4458. }
  4459. },
  4460. "280": {
  4461. "segments": {
  4462. "type": "string",
  4463. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4464. },
  4465. "style": {
  4466. "type": "map<string,string>",
  4467. "value": {
  4468. "stroke": "#000000",
  4469. "fill": "#ffffff",
  4470. "opacity": 0,
  4471. "stroke-width": 1
  4472. }
  4473. },
  4474. "mapper": {
  4475. "type": "code",
  4476. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4477. },
  4478. "parser": {
  4479. "type": "code",
  4480. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4481. },
  4482. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4483. "position": {
  4484. "type": "list<double>",
  4485. "value": [
  4486. "0;14.39942698138725,14.142135623730766%",
  4487. "0;30.085310751055943,98.99494936611669%"
  4488. ]
  4489. },
  4490. "orientation": {
  4491. "type": "double",
  4492. "value": "0;81.86989764584413"
  4493. },
  4494. "scale": {
  4495. "type": "list<double>",
  4496. "value": [
  4497. 1,
  4498. 1
  4499. ]
  4500. },
  4501. "arrow": "arrowTail",
  4502. "arrowType": "diamond-white-large",
  4503. "$linkDecoratorInfo": {
  4504. "type": "map<string,double>",
  4505. "value": {
  4506. "xratio": 1,
  4507. "yoffset": -10
  4508. }
  4509. }
  4510. },
  4511. "281": {
  4512. "segments": {
  4513. "type": "string",
  4514. "value": "m0,0 l10,4 l-10,4"
  4515. },
  4516. "style": {
  4517. "type": "map<string,string>",
  4518. "value": {
  4519. "stroke": "#000000",
  4520. "fill": "#000000",
  4521. "fill-opacity": 0,
  4522. "stroke-width": 1,
  4523. "opacity": 0
  4524. }
  4525. },
  4526. "mapper": {
  4527. "type": "code",
  4528. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4529. },
  4530. "parser": {
  4531. "type": "code",
  4532. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4533. },
  4534. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4535. "position": {
  4536. "type": "list<double>",
  4537. "value": [
  4538. "0;8.459730019420249,14.142135623730766%",
  4539. "0;30.933838888479784,98.99494936611669%"
  4540. ]
  4541. },
  4542. "orientation": {
  4543. "type": "double",
  4544. "value": "0;81.86989764584413"
  4545. },
  4546. "scale": {
  4547. "type": "list<double>",
  4548. "value": [
  4549. 1,
  4550. 1
  4551. ]
  4552. },
  4553. "arrow": "arrowTail",
  4554. "arrowType": "arrow-empty",
  4555. "$linkDecoratorInfo": {
  4556. "type": "map<string,double>",
  4557. "value": {
  4558. "xratio": 1,
  4559. "yoffset": -4
  4560. }
  4561. }
  4562. },
  4563. "282": {
  4564. "segments": {
  4565. "type": "string",
  4566. "value": "m0,0 l10,5 l-10,5 z"
  4567. },
  4568. "style": {
  4569. "type": "map<string,string>",
  4570. "value": {
  4571. "stroke": "#000000",
  4572. "fill": "#ffffff",
  4573. "opacity": 0,
  4574. "stroke-width": 1
  4575. }
  4576. },
  4577. "mapper": {
  4578. "type": "code",
  4579. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4580. },
  4581. "parser": {
  4582. "type": "code",
  4583. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4584. },
  4585. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4586. "position": {
  4587. "type": "list<double>",
  4588. "value": [
  4589. "0;9.449679513081264,14.142135623730766%",
  4590. "0;30.79241753224244,98.99494936611669%"
  4591. ]
  4592. },
  4593. "orientation": {
  4594. "type": "double",
  4595. "value": "0;81.86989764584413"
  4596. },
  4597. "scale": {
  4598. "type": "list<double>",
  4599. "value": [
  4600. 1,
  4601. 1
  4602. ]
  4603. },
  4604. "arrow": "arrowTail",
  4605. "arrowType": "triangle-white",
  4606. "$linkDecoratorInfo": {
  4607. "type": "map<string,double>",
  4608. "value": {
  4609. "xratio": 1,
  4610. "yoffset": -5
  4611. }
  4612. }
  4613. },
  4614. "283": {
  4615. "segments": {
  4616. "type": "string",
  4617. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4618. },
  4619. "style": {
  4620. "type": "map<string,string>",
  4621. "value": {
  4622. "stroke": "#000000",
  4623. "fill": "#ffffff",
  4624. "opacity": 0,
  4625. "stroke-width": 1
  4626. }
  4627. },
  4628. "mapper": {
  4629. "type": "code",
  4630. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4631. },
  4632. "parser": {
  4633. "type": "code",
  4634. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4635. },
  4636. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4637. "position": {
  4638. "type": "list<double>",
  4639. "value": [
  4640. "0;-5.667811583067305,0%",
  4641. "0;-40.784505781716234,0%"
  4642. ]
  4643. },
  4644. "orientation": {
  4645. "type": "double",
  4646. "value": "0;75.11373315098244"
  4647. },
  4648. "scale": {
  4649. "type": "list<double>",
  4650. "value": [
  4651. 1,
  4652. 1
  4653. ]
  4654. },
  4655. "arrow": "arrowHead",
  4656. "arrowType": "diamond-white",
  4657. "$linkDecoratorInfo": {
  4658. "type": "map<string,double>",
  4659. "value": {
  4660. "xratio": -1,
  4661. "yoffset": -5
  4662. }
  4663. }
  4664. },
  4665. "284": {
  4666. "segments": {
  4667. "type": "string",
  4668. "value": "m0,0 l-10,5 l10,5 z"
  4669. },
  4670. "style": {
  4671. "type": "map<string,string>",
  4672. "value": {
  4673. "stroke": "#000000",
  4674. "fill": "#ffffff",
  4675. "opacity": 0,
  4676. "stroke-width": 1
  4677. }
  4678. },
  4679. "mapper": {
  4680. "type": "code",
  4681. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4682. },
  4683. "parser": {
  4684. "type": "code",
  4685. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4686. },
  4687. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4688. "position": {
  4689. "type": "list<double>",
  4690. "value": [
  4691. "0;-5.667811583067305,0%",
  4692. "0;-40.784505781716234,0%"
  4693. ]
  4694. },
  4695. "orientation": {
  4696. "type": "double",
  4697. "value": "0;75.11373315098244"
  4698. },
  4699. "scale": {
  4700. "type": "list<double>",
  4701. "value": [
  4702. 1,
  4703. 1
  4704. ]
  4705. },
  4706. "arrow": "arrowHead",
  4707. "arrowType": "triangle-white",
  4708. "$linkDecoratorInfo": {
  4709. "type": "map<string,double>",
  4710. "value": {
  4711. "xratio": -1,
  4712. "yoffset": -5
  4713. }
  4714. }
  4715. },
  4716. "285": {
  4717. "segments": {
  4718. "type": "string",
  4719. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4720. },
  4721. "style": {
  4722. "type": "map<string,string>",
  4723. "value": {
  4724. "stroke": "#000000",
  4725. "fill": "#000000",
  4726. "opacity": 0,
  4727. "stroke-width": 1
  4728. }
  4729. },
  4730. "mapper": {
  4731. "type": "code",
  4732. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4733. },
  4734. "parser": {
  4735. "type": "code",
  4736. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4737. },
  4738. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4739. "position": {
  4740. "type": "list<double>",
  4741. "value": [
  4742. "0;-5.667811583067305,0%",
  4743. "0;-40.784505781716234,0%"
  4744. ]
  4745. },
  4746. "orientation": {
  4747. "type": "double",
  4748. "value": "0;75.11373315098244"
  4749. },
  4750. "scale": {
  4751. "type": "list<double>",
  4752. "value": [
  4753. 1,
  4754. 1
  4755. ]
  4756. },
  4757. "arrow": "arrowHead",
  4758. "arrowType": "diamond-black",
  4759. "$linkDecoratorInfo": {
  4760. "type": "map<string,double>",
  4761. "value": {
  4762. "xratio": -1,
  4763. "yoffset": -5
  4764. }
  4765. }
  4766. },
  4767. "286": {
  4768. "r": {
  4769. "type": "double",
  4770. "value": 10
  4771. },
  4772. "style": {
  4773. "type": "map<string,string>",
  4774. "value": {
  4775. "stroke": "#000000",
  4776. "fill": "#000000",
  4777. "opacity": 0,
  4778. "stroke-width": 1
  4779. }
  4780. },
  4781. "mapper": {
  4782. "type": "code",
  4783. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4784. },
  4785. "parser": {
  4786. "type": "code",
  4787. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4788. },
  4789. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4790. "position": {
  4791. "type": "list<double>",
  4792. "value": [
  4793. "0;-0.8356231661348374,0%",
  4794. "0;-42.069011563432525,0%"
  4795. ]
  4796. },
  4797. "orientation": {
  4798. "type": "double",
  4799. "value": "0;75.11373315098244"
  4800. },
  4801. "scale": {
  4802. "type": "list<double>",
  4803. "value": [
  4804. 1,
  4805. 1
  4806. ]
  4807. },
  4808. "arrow": "arrowHead",
  4809. "arrowType": "circle-black-large",
  4810. "$linkDecoratorInfo": {
  4811. "type": "map<string,double>",
  4812. "value": {
  4813. "xratio": -1,
  4814. "yoffset": -10
  4815. }
  4816. }
  4817. },
  4818. "287": {
  4819. "segments": {
  4820. "type": "string",
  4821. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  4822. },
  4823. "style": {
  4824. "type": "map<string,string>",
  4825. "value": {
  4826. "stroke": "#000000",
  4827. "fill": "#000000",
  4828. "opacity": 0,
  4829. "stroke-width": 1
  4830. }
  4831. },
  4832. "mapper": {
  4833. "type": "code",
  4834. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4835. },
  4836. "parser": {
  4837. "type": "code",
  4838. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4839. },
  4840. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4841. "position": {
  4842. "type": "list<double>",
  4843. "value": [
  4844. "0;-2.76849853290787,0%",
  4845. "0;-41.55520925074603,0%"
  4846. ]
  4847. },
  4848. "orientation": {
  4849. "type": "double",
  4850. "value": "0;75.11373315098244"
  4851. },
  4852. "scale": {
  4853. "type": "list<double>",
  4854. "value": [
  4855. 1,
  4856. 1
  4857. ]
  4858. },
  4859. "arrow": "arrowHead",
  4860. "arrowType": "arrow-black-large",
  4861. "$linkDecoratorInfo": {
  4862. "type": "map<string,double>",
  4863. "value": {
  4864. "xratio": -1,
  4865. "yoffset": -8
  4866. }
  4867. }
  4868. },
  4869. "288": {
  4870. "segments": {
  4871. "type": "string",
  4872. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  4873. },
  4874. "style": {
  4875. "type": "map<string,string>",
  4876. "value": {
  4877. "stroke": "#000000",
  4878. "fill": "#000000",
  4879. "opacity": 0,
  4880. "stroke-width": 1
  4881. }
  4882. },
  4883. "mapper": {
  4884. "type": "code",
  4885. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4886. },
  4887. "parser": {
  4888. "type": "code",
  4889. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4890. },
  4891. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4892. "position": {
  4893. "type": "list<double>",
  4894. "value": [
  4895. "0;-6.634249266453935,0%",
  4896. "0;-40.52760462537299,0%"
  4897. ]
  4898. },
  4899. "orientation": {
  4900. "type": "double",
  4901. "value": "0;75.11373315098244"
  4902. },
  4903. "scale": {
  4904. "type": "list<double>",
  4905. "value": [
  4906. 1,
  4907. 1
  4908. ]
  4909. },
  4910. "arrow": "arrowHead",
  4911. "arrowType": "arrow-black",
  4912. "$linkDecoratorInfo": {
  4913. "type": "map<string,double>",
  4914. "value": {
  4915. "xratio": -1,
  4916. "yoffset": -4
  4917. }
  4918. }
  4919. },
  4920. "289": {
  4921. "segments": {
  4922. "type": "string",
  4923. "value": "m0,0 l-20,10 l20,10 z"
  4924. },
  4925. "style": {
  4926. "type": "map<string,string>",
  4927. "value": {
  4928. "stroke": "#000000",
  4929. "fill": "#ffffff",
  4930. "opacity": 0,
  4931. "stroke-width": 1
  4932. }
  4933. },
  4934. "mapper": {
  4935. "type": "code",
  4936. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4937. },
  4938. "parser": {
  4939. "type": "code",
  4940. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4941. },
  4942. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4943. "position": {
  4944. "type": "list<double>",
  4945. "value": [
  4946. "0;-0.8356231661348374,0%",
  4947. "0;-42.069011563432525,0%"
  4948. ]
  4949. },
  4950. "orientation": {
  4951. "type": "double",
  4952. "value": "0;75.11373315098244"
  4953. },
  4954. "scale": {
  4955. "type": "list<double>",
  4956. "value": [
  4957. 1,
  4958. 1
  4959. ]
  4960. },
  4961. "arrow": "arrowHead",
  4962. "arrowType": "triangle-white-large",
  4963. "$linkDecoratorInfo": {
  4964. "type": "map<string,double>",
  4965. "value": {
  4966. "xratio": -1,
  4967. "yoffset": -10
  4968. }
  4969. }
  4970. },
  4971. "290": {
  4972. "segments": {
  4973. "type": "string",
  4974. "value": "m0,0 l-20,10 l20,10 z"
  4975. },
  4976. "style": {
  4977. "type": "map<string,string>",
  4978. "value": {
  4979. "stroke": "#000000",
  4980. "fill": "#000000",
  4981. "opacity": 0,
  4982. "stroke-width": 1
  4983. }
  4984. },
  4985. "mapper": {
  4986. "type": "code",
  4987. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4988. },
  4989. "parser": {
  4990. "type": "code",
  4991. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4992. },
  4993. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4994. "position": {
  4995. "type": "list<double>",
  4996. "value": [
  4997. "0;-0.8356231661348374,0%",
  4998. "0;-42.069011563432525,0%"
  4999. ]
  5000. },
  5001. "orientation": {
  5002. "type": "double",
  5003. "value": "0;75.11373315098244"
  5004. },
  5005. "scale": {
  5006. "type": "list<double>",
  5007. "value": [
  5008. 1,
  5009. 1
  5010. ]
  5011. },
  5012. "arrow": "arrowHead",
  5013. "arrowType": "triangle-black-large",
  5014. "$linkDecoratorInfo": {
  5015. "type": "map<string,double>",
  5016. "value": {
  5017. "xratio": -1,
  5018. "yoffset": -10
  5019. }
  5020. }
  5021. },
  5022. "291": {
  5023. "r": {
  5024. "type": "double",
  5025. "value": 5
  5026. },
  5027. "style": {
  5028. "type": "map<string,string>",
  5029. "value": {
  5030. "stroke": "#000000",
  5031. "fill": "#000000",
  5032. "opacity": 0,
  5033. "stroke-width": 1
  5034. }
  5035. },
  5036. "mapper": {
  5037. "type": "code",
  5038. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5039. },
  5040. "parser": {
  5041. "type": "code",
  5042. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5043. },
  5044. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5045. "position": {
  5046. "type": "list<double>",
  5047. "value": [
  5048. "0;-5.667811583067305,0%",
  5049. "0;-40.784505781716234,0%"
  5050. ]
  5051. },
  5052. "orientation": {
  5053. "type": "double",
  5054. "value": "0;75.11373315098244"
  5055. },
  5056. "scale": {
  5057. "type": "list<double>",
  5058. "value": [
  5059. 1,
  5060. 1
  5061. ]
  5062. },
  5063. "arrow": "arrowHead",
  5064. "arrowType": "circle-black",
  5065. "$linkDecoratorInfo": {
  5066. "type": "map<string,double>",
  5067. "value": {
  5068. "xratio": -1,
  5069. "yoffset": -5
  5070. }
  5071. }
  5072. },
  5073. "292": {
  5074. "r": {
  5075. "type": "double",
  5076. "value": 5
  5077. },
  5078. "style": {
  5079. "type": "map<string,string>",
  5080. "value": {
  5081. "stroke": "#000000",
  5082. "fill": "#ffffff",
  5083. "opacity": 0,
  5084. "stroke-width": 1
  5085. }
  5086. },
  5087. "mapper": {
  5088. "type": "code",
  5089. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5090. },
  5091. "parser": {
  5092. "type": "code",
  5093. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5094. },
  5095. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5096. "position": {
  5097. "type": "list<double>",
  5098. "value": [
  5099. "0;-5.667811583067305,0%",
  5100. "0;-40.784505781716234,0%"
  5101. ]
  5102. },
  5103. "orientation": {
  5104. "type": "double",
  5105. "value": "0;75.11373315098244"
  5106. },
  5107. "scale": {
  5108. "type": "list<double>",
  5109. "value": [
  5110. 1,
  5111. 1
  5112. ]
  5113. },
  5114. "arrow": "arrowHead",
  5115. "arrowType": "circle-white",
  5116. "$linkDecoratorInfo": {
  5117. "type": "map<string,double>",
  5118. "value": {
  5119. "xratio": -1,
  5120. "yoffset": -5
  5121. }
  5122. }
  5123. },
  5124. "293": {
  5125. "r": {
  5126. "type": "double",
  5127. "value": 10
  5128. },
  5129. "style": {
  5130. "type": "map<string,string>",
  5131. "value": {
  5132. "stroke": "#000000",
  5133. "fill": "#ffffff",
  5134. "opacity": 0,
  5135. "stroke-width": 1
  5136. }
  5137. },
  5138. "mapper": {
  5139. "type": "code",
  5140. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5141. },
  5142. "parser": {
  5143. "type": "code",
  5144. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5145. },
  5146. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5147. "position": {
  5148. "type": "list<double>",
  5149. "value": [
  5150. "0;-0.8356231661348374,0%",
  5151. "0;-42.069011563432525,0%"
  5152. ]
  5153. },
  5154. "orientation": {
  5155. "type": "double",
  5156. "value": "0;75.11373315098244"
  5157. },
  5158. "scale": {
  5159. "type": "list<double>",
  5160. "value": [
  5161. 1,
  5162. 1
  5163. ]
  5164. },
  5165. "arrow": "arrowHead",
  5166. "arrowType": "circle-white-large",
  5167. "$linkDecoratorInfo": {
  5168. "type": "map<string,double>",
  5169. "value": {
  5170. "xratio": -1,
  5171. "yoffset": -10
  5172. }
  5173. }
  5174. },
  5175. "294": {
  5176. "segments": {
  5177. "type": "string",
  5178. "value": "m0,0 l-20,8 l20,8"
  5179. },
  5180. "style": {
  5181. "type": "map<string,string>",
  5182. "value": {
  5183. "stroke": "#000000",
  5184. "fill": "#000000",
  5185. "fill-opacity": 0,
  5186. "stroke-width": 1,
  5187. "opacity": 0
  5188. }
  5189. },
  5190. "mapper": {
  5191. "type": "code",
  5192. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5193. },
  5194. "parser": {
  5195. "type": "code",
  5196. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5197. },
  5198. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5199. "position": {
  5200. "type": "list<double>",
  5201. "value": [
  5202. "0;-2.76849853290787,0%",
  5203. "0;-41.55520925074603,0%"
  5204. ]
  5205. },
  5206. "orientation": {
  5207. "type": "double",
  5208. "value": "0;75.11373315098244"
  5209. },
  5210. "scale": {
  5211. "type": "list<double>",
  5212. "value": [
  5213. 1,
  5214. 1
  5215. ]
  5216. },
  5217. "arrow": "arrowHead",
  5218. "arrowType": "arrow-empty-large",
  5219. "$linkDecoratorInfo": {
  5220. "type": "map<string,double>",
  5221. "value": {
  5222. "xratio": -1,
  5223. "yoffset": -8
  5224. }
  5225. }
  5226. },
  5227. "295": {
  5228. "segments": {
  5229. "type": "string",
  5230. "value": "m0,0 l-10,4 l10,4"
  5231. },
  5232. "style": {
  5233. "type": "map<string,string>",
  5234. "value": {
  5235. "stroke": "#000000",
  5236. "fill": "#000000",
  5237. "fill-opacity": 0,
  5238. "stroke-width": 1,
  5239. "opacity": 0
  5240. }
  5241. },
  5242. "mapper": {
  5243. "type": "code",
  5244. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5245. },
  5246. "parser": {
  5247. "type": "code",
  5248. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5249. },
  5250. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5251. "position": {
  5252. "type": "list<double>",
  5253. "value": [
  5254. "0;-6.634249266453935,0%",
  5255. "0;-40.52760462537299,0%"
  5256. ]
  5257. },
  5258. "orientation": {
  5259. "type": "double",
  5260. "value": "0;75.11373315098244"
  5261. },
  5262. "scale": {
  5263. "type": "list<double>",
  5264. "value": [
  5265. 1,
  5266. 1
  5267. ]
  5268. },
  5269. "arrow": "arrowHead",
  5270. "arrowType": "arrow-empty",
  5271. "$linkDecoratorInfo": {
  5272. "type": "map<string,double>",
  5273. "value": {
  5274. "xratio": -1,
  5275. "yoffset": -4
  5276. }
  5277. }
  5278. },
  5279. "296": {
  5280. "segments": {
  5281. "type": "string",
  5282. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5283. },
  5284. "style": {
  5285. "type": "map<string,string>",
  5286. "value": {
  5287. "stroke": "#000000",
  5288. "fill": "#000000",
  5289. "opacity": 0,
  5290. "stroke-width": 1
  5291. }
  5292. },
  5293. "mapper": {
  5294. "type": "code",
  5295. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5296. },
  5297. "parser": {
  5298. "type": "code",
  5299. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5300. },
  5301. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5302. "position": {
  5303. "type": "list<double>",
  5304. "value": [
  5305. "0;-0.8356231661348374,0%",
  5306. "0;-42.069011563432525,0%"
  5307. ]
  5308. },
  5309. "orientation": {
  5310. "type": "double",
  5311. "value": "0;75.11373315098244"
  5312. },
  5313. "scale": {
  5314. "type": "list<double>",
  5315. "value": [
  5316. 1,
  5317. 1
  5318. ]
  5319. },
  5320. "arrow": "arrowHead",
  5321. "arrowType": "diamond-black-large",
  5322. "$linkDecoratorInfo": {
  5323. "type": "map<string,double>",
  5324. "value": {
  5325. "xratio": -1,
  5326. "yoffset": -10
  5327. }
  5328. }
  5329. },
  5330. "297": {
  5331. "segments": {
  5332. "type": "string",
  5333. "value": "m0,0 l-10,4 l10,4 z"
  5334. },
  5335. "style": {
  5336. "type": "map<string,string>",
  5337. "value": {
  5338. "stroke": "#000000",
  5339. "fill": "#000000",
  5340. "opacity": 0,
  5341. "stroke-width": 1
  5342. }
  5343. },
  5344. "mapper": {
  5345. "type": "code",
  5346. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5347. },
  5348. "parser": {
  5349. "type": "code",
  5350. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5351. },
  5352. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5353. "position": {
  5354. "type": "list<double>",
  5355. "value": [
  5356. "0;-6.634249266453935,0%",
  5357. "0;-40.52760462537299,0%"
  5358. ]
  5359. },
  5360. "orientation": {
  5361. "type": "double",
  5362. "value": "0;75.11373315098244"
  5363. },
  5364. "scale": {
  5365. "type": "list<double>",
  5366. "value": [
  5367. 1,
  5368. 1
  5369. ]
  5370. },
  5371. "arrow": "arrowHead",
  5372. "arrowType": "triangle-black",
  5373. "$linkDecoratorInfo": {
  5374. "type": "map<string,double>",
  5375. "value": {
  5376. "xratio": -1,
  5377. "yoffset": -4
  5378. }
  5379. }
  5380. },
  5381. "298": {
  5382. "segments": {
  5383. "type": "string",
  5384. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5385. },
  5386. "style": {
  5387. "type": "map<string,string>",
  5388. "value": {
  5389. "stroke": "#000000",
  5390. "fill": "#ffffff",
  5391. "opacity": 0,
  5392. "stroke-width": 1
  5393. }
  5394. },
  5395. "mapper": {
  5396. "type": "code",
  5397. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5398. },
  5399. "parser": {
  5400. "type": "code",
  5401. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5402. },
  5403. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5404. "position": {
  5405. "type": "list<double>",
  5406. "value": [
  5407. "0;-0.8356231661348374,0%",
  5408. "0;-42.069011563432525,0%"
  5409. ]
  5410. },
  5411. "orientation": {
  5412. "type": "double",
  5413. "value": "0;75.11373315098244"
  5414. },
  5415. "scale": {
  5416. "type": "list<double>",
  5417. "value": [
  5418. 1,
  5419. 1
  5420. ]
  5421. },
  5422. "arrow": "arrowHead",
  5423. "arrowType": "diamond-white-large",
  5424. "$linkDecoratorInfo": {
  5425. "type": "map<string,double>",
  5426. "value": {
  5427. "xratio": -1,
  5428. "yoffset": -10
  5429. }
  5430. }
  5431. },
  5432. "__pLabelText": {
  5433. "position": {
  5434. "type": "list<double>",
  5435. "value": [
  5436. 0,
  5437. 0
  5438. ]
  5439. },
  5440. "orientation": {
  5441. "type": "double",
  5442. "value": 0
  5443. },
  5444. "scale": {
  5445. "type": "list<double>",
  5446. "value": [
  5447. 1,
  5448. 1
  5449. ]
  5450. },
  5451. "textContent": {
  5452. "type": "string",
  5453. "value": "4"
  5454. },
  5455. "style": {
  5456. "type": "map<string,string>",
  5457. "value": {
  5458. "stroke": "#6000ff",
  5459. "fill": "#6000ff",
  5460. "font-size": "15px",
  5461. "opacity": "1"
  5462. }
  5463. },
  5464. "mapper": {
  5465. "type": "code",
  5466. "value": "({'textContent':getAttr('__pLabel')})"
  5467. },
  5468. "parser": {
  5469. "type": "code",
  5470. "value": "({'__pLabel':getAttr('textContent')})"
  5471. },
  5472. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  5473. }
  5474. },
  5475. "edges": []
  5476. }
  5477. },
  5478. "$asuri": {
  5479. "type": "string",
  5480. "value": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pport/8.instance"
  5481. },
  5482. "$segments": {
  5483. "type": "map<string,list<string>>",
  5484. "value": {
  5485. "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pMatcherIcon/5.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pportLink/8.instance": "M1096,407L1106.5,446.5",
  5486. "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pportLink/8.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pIteratorIcon/6.instance": "M1106.5106802631963,446.5747618423716L1110.9999320447755,477.999524313429"
  5487. }
  5488. },
  5489. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pportLink"
  5490. },
  5491. "9": {
  5492. "link-style": {
  5493. "type": "map<string,string>",
  5494. "value": {
  5495. "stroke": "#008080",
  5496. "stroke-opacity": 1,
  5497. "stroke-width": 2
  5498. }
  5499. },
  5500. "arrowHead": {
  5501. "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)",
  5502. "value": "custom"
  5503. },
  5504. "arrowTail": {
  5505. "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)",
  5506. "value": "arrow-black"
  5507. },
  5508. "typename": {
  5509. "type": "string",
  5510. "value": "portLink"
  5511. },
  5512. "position": {
  5513. "type": "list<double>",
  5514. "value": [
  5515. 1108,
  5516. 580
  5517. ]
  5518. },
  5519. "orientation": {
  5520. "type": "double",
  5521. "value": 0
  5522. },
  5523. "scale": {
  5524. "type": "list<double>",
  5525. "value": [
  5526. 1,
  5527. 1
  5528. ]
  5529. },
  5530. "mapper": {
  5531. "type": "code",
  5532. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5533. },
  5534. "parser": {
  5535. "type": "code",
  5536. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5537. },
  5538. "$contents": {
  5539. "type": "map<string,*>",
  5540. "value": {
  5541. "nodes": {
  5542. "267": {
  5543. "segments": {
  5544. "type": "string",
  5545. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  5546. },
  5547. "style": {
  5548. "type": "map<string,string>",
  5549. "value": {
  5550. "stroke": "#000000",
  5551. "fill": "#000000",
  5552. "opacity": 0,
  5553. "stroke-width": 1
  5554. }
  5555. },
  5556. "mapper": {
  5557. "type": "code",
  5558. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5559. },
  5560. "parser": {
  5561. "type": "code",
  5562. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5563. },
  5564. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5565. "position": {
  5566. "type": "list<double>",
  5567. "value": [
  5568. "0;1.9898730190752758,-7.1247049987907305%",
  5569. "0;28.284453123421144,99.74586998307352%"
  5570. ]
  5571. },
  5572. "orientation": {
  5573. "type": "double",
  5574. "value": "0;94.08561677997474"
  5575. },
  5576. "scale": {
  5577. "type": "list<double>",
  5578. "value": [
  5579. 1,
  5580. 1
  5581. ]
  5582. },
  5583. "arrow": "arrowTail",
  5584. "arrowType": "arrow-black",
  5585. "$linkDecoratorInfo": {
  5586. "type": "map<string,double>",
  5587. "value": {
  5588. "xratio": 1,
  5589. "yoffset": -4
  5590. }
  5591. }
  5592. },
  5593. "268": {
  5594. "segments": {
  5595. "type": "string",
  5596. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5597. },
  5598. "style": {
  5599. "type": "map<string,string>",
  5600. "value": {
  5601. "stroke": "#000000",
  5602. "fill": "#000000",
  5603. "opacity": 0,
  5604. "stroke-width": 1
  5605. }
  5606. },
  5607. "mapper": {
  5608. "type": "code",
  5609. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5610. },
  5611. "parser": {
  5612. "type": "code",
  5613. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5614. },
  5615. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5616. "position": {
  5617. "type": "list<double>",
  5618. "value": [
  5619. "0;7.9746252180596,-7.1247049987907305%",
  5620. "0;28.711935423348564,99.74586998307352%"
  5621. ]
  5622. },
  5623. "orientation": {
  5624. "type": "double",
  5625. "value": "0;94.08561677997474"
  5626. },
  5627. "scale": {
  5628. "type": "list<double>",
  5629. "value": [
  5630. 1,
  5631. 1
  5632. ]
  5633. },
  5634. "arrow": "arrowTail",
  5635. "arrowType": "diamond-black-large",
  5636. "$linkDecoratorInfo": {
  5637. "type": "map<string,double>",
  5638. "value": {
  5639. "xratio": 1,
  5640. "yoffset": -10
  5641. }
  5642. }
  5643. },
  5644. "269": {
  5645. "r": {
  5646. "type": "double",
  5647. "value": 10
  5648. },
  5649. "style": {
  5650. "type": "map<string,string>",
  5651. "value": {
  5652. "stroke": "#000000",
  5653. "fill": "#000000",
  5654. "opacity": 0,
  5655. "stroke-width": 1
  5656. }
  5657. },
  5658. "mapper": {
  5659. "type": "code",
  5660. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5661. },
  5662. "parser": {
  5663. "type": "code",
  5664. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5665. },
  5666. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5667. "position": {
  5668. "type": "list<double>",
  5669. "value": [
  5670. "0;7.9746252180596,-7.1247049987907305%",
  5671. "0;28.711935423348564,99.74586998307352%"
  5672. ]
  5673. },
  5674. "orientation": {
  5675. "type": "double",
  5676. "value": "0;94.08561677997474"
  5677. },
  5678. "scale": {
  5679. "type": "list<double>",
  5680. "value": [
  5681. 1,
  5682. 1
  5683. ]
  5684. },
  5685. "arrow": "arrowTail",
  5686. "arrowType": "circle-black-large",
  5687. "$linkDecoratorInfo": {
  5688. "type": "map<string,double>",
  5689. "value": {
  5690. "xratio": 1,
  5691. "yoffset": -10
  5692. }
  5693. }
  5694. },
  5695. "270": {
  5696. "r": {
  5697. "type": "double",
  5698. "value": 10
  5699. },
  5700. "style": {
  5701. "type": "map<string,string>",
  5702. "value": {
  5703. "stroke": "#000000",
  5704. "fill": "#ffffff",
  5705. "opacity": 0,
  5706. "stroke-width": 1
  5707. }
  5708. },
  5709. "mapper": {
  5710. "type": "code",
  5711. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5712. },
  5713. "parser": {
  5714. "type": "code",
  5715. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5716. },
  5717. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5718. "position": {
  5719. "type": "list<double>",
  5720. "value": [
  5721. "0;7.9746252180596,-7.1247049987907305%",
  5722. "0;28.711935423348564,99.74586998307352%"
  5723. ]
  5724. },
  5725. "orientation": {
  5726. "type": "double",
  5727. "value": "0;94.08561677997474"
  5728. },
  5729. "scale": {
  5730. "type": "list<double>",
  5731. "value": [
  5732. 1,
  5733. 1
  5734. ]
  5735. },
  5736. "arrow": "arrowTail",
  5737. "arrowType": "circle-white-large",
  5738. "$linkDecoratorInfo": {
  5739. "type": "map<string,double>",
  5740. "value": {
  5741. "xratio": 1,
  5742. "yoffset": -10
  5743. }
  5744. }
  5745. },
  5746. "271": {
  5747. "r": {
  5748. "type": "double",
  5749. "value": 5
  5750. },
  5751. "style": {
  5752. "type": "map<string,string>",
  5753. "value": {
  5754. "stroke": "#000000",
  5755. "fill": "#000000",
  5756. "opacity": 0,
  5757. "stroke-width": 1
  5758. }
  5759. },
  5760. "mapper": {
  5761. "type": "code",
  5762. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5763. },
  5764. "parser": {
  5765. "type": "code",
  5766. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5767. },
  5768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5769. "position": {
  5770. "type": "list<double>",
  5771. "value": [
  5772. "0;2.987331718905807,-7.1247049987907305%",
  5773. "0;28.355700173409105,99.74586998307352%"
  5774. ]
  5775. },
  5776. "orientation": {
  5777. "type": "double",
  5778. "value": "0;94.08561677997474"
  5779. },
  5780. "scale": {
  5781. "type": "list<double>",
  5782. "value": [
  5783. 1,
  5784. 1
  5785. ]
  5786. },
  5787. "arrow": "arrowTail",
  5788. "arrowType": "circle-black",
  5789. "$linkDecoratorInfo": {
  5790. "type": "map<string,double>",
  5791. "value": {
  5792. "xratio": 1,
  5793. "yoffset": -5
  5794. }
  5795. }
  5796. },
  5797. "272": {
  5798. "segments": {
  5799. "type": "string",
  5800. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5801. },
  5802. "style": {
  5803. "type": "map<string,string>",
  5804. "value": {
  5805. "stroke": "#000000",
  5806. "fill": "#000000",
  5807. "opacity": 0,
  5808. "stroke-width": 1
  5809. }
  5810. },
  5811. "mapper": {
  5812. "type": "code",
  5813. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5814. },
  5815. "parser": {
  5816. "type": "code",
  5817. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5818. },
  5819. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5820. "position": {
  5821. "type": "list<double>",
  5822. "value": [
  5823. "0;2.987331718905807,-7.1247049987907305%",
  5824. "0;28.355700173409105,99.74586998307352%"
  5825. ]
  5826. },
  5827. "orientation": {
  5828. "type": "double",
  5829. "value": "0;94.08561677997474"
  5830. },
  5831. "scale": {
  5832. "type": "list<double>",
  5833. "value": [
  5834. 1,
  5835. 1
  5836. ]
  5837. },
  5838. "arrow": "arrowTail",
  5839. "arrowType": "diamond-black",
  5840. "$linkDecoratorInfo": {
  5841. "type": "map<string,double>",
  5842. "value": {
  5843. "xratio": 1,
  5844. "yoffset": -5
  5845. }
  5846. }
  5847. },
  5848. "273": {
  5849. "segments": {
  5850. "type": "string",
  5851. "value": "m0,0 l20,10 l-20,10 z"
  5852. },
  5853. "style": {
  5854. "type": "map<string,string>",
  5855. "value": {
  5856. "stroke": "#000000",
  5857. "fill": "#000000",
  5858. "opacity": 0,
  5859. "stroke-width": 1
  5860. }
  5861. },
  5862. "mapper": {
  5863. "type": "code",
  5864. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5865. },
  5866. "parser": {
  5867. "type": "code",
  5868. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5869. },
  5870. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5871. "position": {
  5872. "type": "list<double>",
  5873. "value": [
  5874. "0;7.9746252180596,-7.1247049987907305%",
  5875. "0;28.711935423348564,99.74586998307352%"
  5876. ]
  5877. },
  5878. "orientation": {
  5879. "type": "double",
  5880. "value": "0;94.08561677997474"
  5881. },
  5882. "scale": {
  5883. "type": "list<double>",
  5884. "value": [
  5885. 1,
  5886. 1
  5887. ]
  5888. },
  5889. "arrow": "arrowTail",
  5890. "arrowType": "triangle-black-large",
  5891. "$linkDecoratorInfo": {
  5892. "type": "map<string,double>",
  5893. "value": {
  5894. "xratio": 1,
  5895. "yoffset": -10
  5896. }
  5897. }
  5898. },
  5899. "274": {
  5900. "segments": {
  5901. "type": "string",
  5902. "value": "m0,0 l10,4 l-10,4 z"
  5903. },
  5904. "style": {
  5905. "type": "map<string,string>",
  5906. "value": {
  5907. "stroke": "#000000",
  5908. "fill": "#000000",
  5909. "opacity": 0,
  5910. "stroke-width": 1
  5911. }
  5912. },
  5913. "mapper": {
  5914. "type": "code",
  5915. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5916. },
  5917. "parser": {
  5918. "type": "code",
  5919. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5920. },
  5921. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5922. "position": {
  5923. "type": "list<double>",
  5924. "value": [
  5925. "0;1.9898730190752758,-7.1247049987907305%",
  5926. "0;28.284453123421144,99.74586998307352%"
  5927. ]
  5928. },
  5929. "orientation": {
  5930. "type": "double",
  5931. "value": "0;94.08561677997474"
  5932. },
  5933. "scale": {
  5934. "type": "list<double>",
  5935. "value": [
  5936. 1,
  5937. 1
  5938. ]
  5939. },
  5940. "arrow": "arrowTail",
  5941. "arrowType": "triangle-black",
  5942. "$linkDecoratorInfo": {
  5943. "type": "map<string,double>",
  5944. "value": {
  5945. "xratio": 1,
  5946. "yoffset": -4
  5947. }
  5948. }
  5949. },
  5950. "275": {
  5951. "segments": {
  5952. "type": "string",
  5953. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  5954. },
  5955. "style": {
  5956. "type": "map<string,string>",
  5957. "value": {
  5958. "stroke": "#000000",
  5959. "fill": "#000000",
  5960. "opacity": 0,
  5961. "stroke-width": 1
  5962. }
  5963. },
  5964. "mapper": {
  5965. "type": "code",
  5966. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5967. },
  5968. "parser": {
  5969. "type": "code",
  5970. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5971. },
  5972. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5973. "position": {
  5974. "type": "list<double>",
  5975. "value": [
  5976. "0;5.979707818398083,-7.1247049987907305%",
  5977. "0;28.569441323372757,99.74586998307352%"
  5978. ]
  5979. },
  5980. "orientation": {
  5981. "type": "double",
  5982. "value": "0;94.08561677997474"
  5983. },
  5984. "scale": {
  5985. "type": "list<double>",
  5986. "value": [
  5987. 1,
  5988. 1
  5989. ]
  5990. },
  5991. "arrow": "arrowTail",
  5992. "arrowType": "arrow-black-large",
  5993. "$linkDecoratorInfo": {
  5994. "type": "map<string,double>",
  5995. "value": {
  5996. "xratio": 1,
  5997. "yoffset": -8
  5998. }
  5999. }
  6000. },
  6001. "276": {
  6002. "segments": {
  6003. "type": "string",
  6004. "value": "m0,0 l20,10 l-20,10 z"
  6005. },
  6006. "style": {
  6007. "type": "map<string,string>",
  6008. "value": {
  6009. "stroke": "#000000",
  6010. "fill": "#ffffff",
  6011. "opacity": 0,
  6012. "stroke-width": 1
  6013. }
  6014. },
  6015. "mapper": {
  6016. "type": "code",
  6017. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6018. },
  6019. "parser": {
  6020. "type": "code",
  6021. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6022. },
  6023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6024. "position": {
  6025. "type": "list<double>",
  6026. "value": [
  6027. "0;7.9746252180596,-7.1247049987907305%",
  6028. "0;28.711935423348564,99.74586998307352%"
  6029. ]
  6030. },
  6031. "orientation": {
  6032. "type": "double",
  6033. "value": "0;94.08561677997474"
  6034. },
  6035. "scale": {
  6036. "type": "list<double>",
  6037. "value": [
  6038. 1,
  6039. 1
  6040. ]
  6041. },
  6042. "arrow": "arrowTail",
  6043. "arrowType": "triangle-white-large",
  6044. "$linkDecoratorInfo": {
  6045. "type": "map<string,double>",
  6046. "value": {
  6047. "xratio": 1,
  6048. "yoffset": -10
  6049. }
  6050. }
  6051. },
  6052. "277": {
  6053. "segments": {
  6054. "type": "string",
  6055. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6056. },
  6057. "style": {
  6058. "type": "map<string,string>",
  6059. "value": {
  6060. "stroke": "#000000",
  6061. "fill": "#ffffff",
  6062. "opacity": 0,
  6063. "stroke-width": 1
  6064. }
  6065. },
  6066. "mapper": {
  6067. "type": "code",
  6068. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6069. },
  6070. "parser": {
  6071. "type": "code",
  6072. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6073. },
  6074. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6075. "position": {
  6076. "type": "list<double>",
  6077. "value": [
  6078. "0;2.987331718905807,-7.1247049987907305%",
  6079. "0;28.355700173409105,99.74586998307352%"
  6080. ]
  6081. },
  6082. "orientation": {
  6083. "type": "double",
  6084. "value": "0;94.08561677997474"
  6085. },
  6086. "scale": {
  6087. "type": "list<double>",
  6088. "value": [
  6089. 1,
  6090. 1
  6091. ]
  6092. },
  6093. "arrow": "arrowTail",
  6094. "arrowType": "diamond-white",
  6095. "$linkDecoratorInfo": {
  6096. "type": "map<string,double>",
  6097. "value": {
  6098. "xratio": 1,
  6099. "yoffset": -5
  6100. }
  6101. }
  6102. },
  6103. "278": {
  6104. "segments": {
  6105. "type": "string",
  6106. "value": "m0,0 l20,8 l-20,8"
  6107. },
  6108. "style": {
  6109. "type": "map<string,string>",
  6110. "value": {
  6111. "stroke": "#000000",
  6112. "fill": "#000000",
  6113. "fill-opacity": 0,
  6114. "stroke-width": 1,
  6115. "opacity": 0
  6116. }
  6117. },
  6118. "mapper": {
  6119. "type": "code",
  6120. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6121. },
  6122. "parser": {
  6123. "type": "code",
  6124. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6125. },
  6126. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6127. "position": {
  6128. "type": "list<double>",
  6129. "value": [
  6130. "0;5.979707818398083,-7.1247049987907305%",
  6131. "0;28.569441323372757,99.74586998307352%"
  6132. ]
  6133. },
  6134. "orientation": {
  6135. "type": "double",
  6136. "value": "0;94.08561677997474"
  6137. },
  6138. "scale": {
  6139. "type": "list<double>",
  6140. "value": [
  6141. 1,
  6142. 1
  6143. ]
  6144. },
  6145. "arrow": "arrowTail",
  6146. "arrowType": "arrow-empty-large",
  6147. "$linkDecoratorInfo": {
  6148. "type": "map<string,double>",
  6149. "value": {
  6150. "xratio": 1,
  6151. "yoffset": -8
  6152. }
  6153. }
  6154. },
  6155. "279": {
  6156. "r": {
  6157. "type": "double",
  6158. "value": 5
  6159. },
  6160. "style": {
  6161. "type": "map<string,string>",
  6162. "value": {
  6163. "stroke": "#000000",
  6164. "fill": "#ffffff",
  6165. "opacity": 0,
  6166. "stroke-width": 1
  6167. }
  6168. },
  6169. "mapper": {
  6170. "type": "code",
  6171. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6172. },
  6173. "parser": {
  6174. "type": "code",
  6175. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6176. },
  6177. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6178. "position": {
  6179. "type": "list<double>",
  6180. "value": [
  6181. "0;2.987331718905807,-7.1247049987907305%",
  6182. "0;28.355700173409105,99.74586998307352%"
  6183. ]
  6184. },
  6185. "orientation": {
  6186. "type": "double",
  6187. "value": "0;94.08561677997474"
  6188. },
  6189. "scale": {
  6190. "type": "list<double>",
  6191. "value": [
  6192. 1,
  6193. 1
  6194. ]
  6195. },
  6196. "arrow": "arrowTail",
  6197. "arrowType": "circle-white",
  6198. "$linkDecoratorInfo": {
  6199. "type": "map<string,double>",
  6200. "value": {
  6201. "xratio": 1,
  6202. "yoffset": -5
  6203. }
  6204. }
  6205. },
  6206. "280": {
  6207. "segments": {
  6208. "type": "string",
  6209. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6210. },
  6211. "style": {
  6212. "type": "map<string,string>",
  6213. "value": {
  6214. "stroke": "#000000",
  6215. "fill": "#ffffff",
  6216. "opacity": 0,
  6217. "stroke-width": 1
  6218. }
  6219. },
  6220. "mapper": {
  6221. "type": "code",
  6222. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6223. },
  6224. "parser": {
  6225. "type": "code",
  6226. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6227. },
  6228. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6229. "position": {
  6230. "type": "list<double>",
  6231. "value": [
  6232. "0;7.9746252180596,-7.1247049987907305%",
  6233. "0;28.711935423348564,99.74586998307352%"
  6234. ]
  6235. },
  6236. "orientation": {
  6237. "type": "double",
  6238. "value": "0;94.08561677997474"
  6239. },
  6240. "scale": {
  6241. "type": "list<double>",
  6242. "value": [
  6243. 1,
  6244. 1
  6245. ]
  6246. },
  6247. "arrow": "arrowTail",
  6248. "arrowType": "diamond-white-large",
  6249. "$linkDecoratorInfo": {
  6250. "type": "map<string,double>",
  6251. "value": {
  6252. "xratio": 1,
  6253. "yoffset": -10
  6254. }
  6255. }
  6256. },
  6257. "281": {
  6258. "segments": {
  6259. "type": "string",
  6260. "value": "m0,0 l10,4 l-10,4"
  6261. },
  6262. "style": {
  6263. "type": "map<string,string>",
  6264. "value": {
  6265. "stroke": "#000000",
  6266. "fill": "#000000",
  6267. "fill-opacity": 0,
  6268. "stroke-width": 1,
  6269. "opacity": 0
  6270. }
  6271. },
  6272. "mapper": {
  6273. "type": "code",
  6274. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6275. },
  6276. "parser": {
  6277. "type": "code",
  6278. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6279. },
  6280. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6281. "position": {
  6282. "type": "list<double>",
  6283. "value": [
  6284. "0;1.9898730190752758,-7.1247049987907305%",
  6285. "0;28.284453123421144,99.74586998307352%"
  6286. ]
  6287. },
  6288. "orientation": {
  6289. "type": "double",
  6290. "value": "0;94.08561677997474"
  6291. },
  6292. "scale": {
  6293. "type": "list<double>",
  6294. "value": [
  6295. 1,
  6296. 1
  6297. ]
  6298. },
  6299. "arrow": "arrowTail",
  6300. "arrowType": "arrow-empty",
  6301. "$linkDecoratorInfo": {
  6302. "type": "map<string,double>",
  6303. "value": {
  6304. "xratio": 1,
  6305. "yoffset": -4
  6306. }
  6307. }
  6308. },
  6309. "282": {
  6310. "segments": {
  6311. "type": "string",
  6312. "value": "m0,0 l10,5 l-10,5 z"
  6313. },
  6314. "style": {
  6315. "type": "map<string,string>",
  6316. "value": {
  6317. "stroke": "#000000",
  6318. "fill": "#ffffff",
  6319. "opacity": 0,
  6320. "stroke-width": 1
  6321. }
  6322. },
  6323. "mapper": {
  6324. "type": "code",
  6325. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6326. },
  6327. "parser": {
  6328. "type": "code",
  6329. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6330. },
  6331. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6332. "position": {
  6333. "type": "list<double>",
  6334. "value": [
  6335. "0;2.987331718905807,-7.1247049987907305%",
  6336. "0;28.355700173409105,99.74586998307352%"
  6337. ]
  6338. },
  6339. "orientation": {
  6340. "type": "double",
  6341. "value": "0;94.08561677997474"
  6342. },
  6343. "scale": {
  6344. "type": "list<double>",
  6345. "value": [
  6346. 1,
  6347. 1
  6348. ]
  6349. },
  6350. "arrow": "arrowTail",
  6351. "arrowType": "triangle-white",
  6352. "$linkDecoratorInfo": {
  6353. "type": "map<string,double>",
  6354. "value": {
  6355. "xratio": 1,
  6356. "yoffset": -5
  6357. }
  6358. }
  6359. },
  6360. "283": {
  6361. "segments": {
  6362. "type": "string",
  6363. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6364. },
  6365. "style": {
  6366. "type": "map<string,string>",
  6367. "value": {
  6368. "stroke": "#000000",
  6369. "fill": "#ffffff",
  6370. "opacity": 0,
  6371. "stroke-width": 1
  6372. }
  6373. },
  6374. "mapper": {
  6375. "type": "code",
  6376. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6377. },
  6378. "parser": {
  6379. "type": "code",
  6380. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6381. },
  6382. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6383. "position": {
  6384. "type": "list<double>",
  6385. "value": [
  6386. "0;6.987293499153566,0%",
  6387. "0;-27.643764750060427,0%"
  6388. ]
  6389. },
  6390. "orientation": {
  6391. "type": "double",
  6392. "value": "0;94.08561677997488"
  6393. },
  6394. "scale": {
  6395. "type": "list<double>",
  6396. "value": [
  6397. 1,
  6398. 1
  6399. ]
  6400. },
  6401. "arrow": "arrowHead",
  6402. "arrowType": "diamond-white",
  6403. "$linkDecoratorInfo": {
  6404. "type": "map<string,double>",
  6405. "value": {
  6406. "xratio": -1,
  6407. "yoffset": -5
  6408. }
  6409. }
  6410. },
  6411. "284": {
  6412. "segments": {
  6413. "type": "string",
  6414. "value": "m0,0 l-10,5 l10,5 z"
  6415. },
  6416. "style": {
  6417. "type": "map<string,string>",
  6418. "value": {
  6419. "stroke": "#000000",
  6420. "fill": "#ffffff",
  6421. "opacity": 0,
  6422. "stroke-width": 1
  6423. }
  6424. },
  6425. "mapper": {
  6426. "type": "code",
  6427. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6428. },
  6429. "parser": {
  6430. "type": "code",
  6431. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6432. },
  6433. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6434. "position": {
  6435. "type": "list<double>",
  6436. "value": [
  6437. "0;6.987293499153566,0%",
  6438. "0;-27.643764750060427,0%"
  6439. ]
  6440. },
  6441. "orientation": {
  6442. "type": "double",
  6443. "value": "0;94.08561677997488"
  6444. },
  6445. "scale": {
  6446. "type": "list<double>",
  6447. "value": [
  6448. 1,
  6449. 1
  6450. ]
  6451. },
  6452. "arrow": "arrowHead",
  6453. "arrowType": "triangle-white",
  6454. "$linkDecoratorInfo": {
  6455. "type": "map<string,double>",
  6456. "value": {
  6457. "xratio": -1,
  6458. "yoffset": -5
  6459. }
  6460. }
  6461. },
  6462. "285": {
  6463. "segments": {
  6464. "type": "string",
  6465. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6466. },
  6467. "style": {
  6468. "type": "map<string,string>",
  6469. "value": {
  6470. "stroke": "#000000",
  6471. "fill": "#000000",
  6472. "opacity": 0,
  6473. "stroke-width": 1
  6474. }
  6475. },
  6476. "mapper": {
  6477. "type": "code",
  6478. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6479. },
  6480. "parser": {
  6481. "type": "code",
  6482. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6483. },
  6484. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6485. "position": {
  6486. "type": "list<double>",
  6487. "value": [
  6488. "0;6.987293499153566,0%",
  6489. "0;-27.643764750060427,0%"
  6490. ]
  6491. },
  6492. "orientation": {
  6493. "type": "double",
  6494. "value": "0;94.08561677997488"
  6495. },
  6496. "scale": {
  6497. "type": "list<double>",
  6498. "value": [
  6499. 1,
  6500. 1
  6501. ]
  6502. },
  6503. "arrow": "arrowHead",
  6504. "arrowType": "diamond-black",
  6505. "$linkDecoratorInfo": {
  6506. "type": "map<string,double>",
  6507. "value": {
  6508. "xratio": -1,
  6509. "yoffset": -5
  6510. }
  6511. }
  6512. },
  6513. "286": {
  6514. "r": {
  6515. "type": "double",
  6516. "value": 10
  6517. },
  6518. "style": {
  6519. "type": "map<string,string>",
  6520. "value": {
  6521. "stroke": "#000000",
  6522. "fill": "#000000",
  6523. "opacity": 0,
  6524. "stroke-width": 1
  6525. }
  6526. },
  6527. "mapper": {
  6528. "type": "code",
  6529. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6530. },
  6531. "parser": {
  6532. "type": "code",
  6533. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6534. },
  6535. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6536. "position": {
  6537. "type": "list<double>",
  6538. "value": [
  6539. "0;11.974586998307359,0%",
  6540. "0;-27.287529500120854,0%"
  6541. ]
  6542. },
  6543. "orientation": {
  6544. "type": "double",
  6545. "value": "0;94.08561677997488"
  6546. },
  6547. "scale": {
  6548. "type": "list<double>",
  6549. "value": [
  6550. 1,
  6551. 1
  6552. ]
  6553. },
  6554. "arrow": "arrowHead",
  6555. "arrowType": "circle-black-large",
  6556. "$linkDecoratorInfo": {
  6557. "type": "map<string,double>",
  6558. "value": {
  6559. "xratio": -1,
  6560. "yoffset": -10
  6561. }
  6562. }
  6563. },
  6564. "287": {
  6565. "segments": {
  6566. "type": "string",
  6567. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  6568. },
  6569. "style": {
  6570. "type": "map<string,string>",
  6571. "value": {
  6572. "stroke": "#000000",
  6573. "fill": "#000000",
  6574. "opacity": 0,
  6575. "stroke-width": 1
  6576. }
  6577. },
  6578. "mapper": {
  6579. "type": "code",
  6580. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6581. },
  6582. "parser": {
  6583. "type": "code",
  6584. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6585. },
  6586. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6587. "position": {
  6588. "type": "list<double>",
  6589. "value": [
  6590. "0;9.979669598645842,0%",
  6591. "0;-27.430023600096774,0%"
  6592. ]
  6593. },
  6594. "orientation": {
  6595. "type": "double",
  6596. "value": "0;94.08561677997488"
  6597. },
  6598. "scale": {
  6599. "type": "list<double>",
  6600. "value": [
  6601. 1,
  6602. 1
  6603. ]
  6604. },
  6605. "arrow": "arrowHead",
  6606. "arrowType": "arrow-black-large",
  6607. "$linkDecoratorInfo": {
  6608. "type": "map<string,double>",
  6609. "value": {
  6610. "xratio": -1,
  6611. "yoffset": -8
  6612. }
  6613. }
  6614. },
  6615. "288": {
  6616. "segments": {
  6617. "type": "string",
  6618. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  6619. },
  6620. "style": {
  6621. "type": "map<string,string>",
  6622. "value": {
  6623. "stroke": "#000000",
  6624. "fill": "#000000",
  6625. "opacity": 0,
  6626. "stroke-width": 1
  6627. }
  6628. },
  6629. "mapper": {
  6630. "type": "code",
  6631. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6632. },
  6633. "parser": {
  6634. "type": "code",
  6635. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6636. },
  6637. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6638. "position": {
  6639. "type": "list<double>",
  6640. "value": [
  6641. "0;5.9898347993230345,0%",
  6642. "0;-27.715011800048387,0%"
  6643. ]
  6644. },
  6645. "orientation": {
  6646. "type": "double",
  6647. "value": "0;94.08561677997488"
  6648. },
  6649. "scale": {
  6650. "type": "list<double>",
  6651. "value": [
  6652. 1,
  6653. 1
  6654. ]
  6655. },
  6656. "arrow": "arrowHead",
  6657. "arrowType": "arrow-black",
  6658. "$linkDecoratorInfo": {
  6659. "type": "map<string,double>",
  6660. "value": {
  6661. "xratio": -1,
  6662. "yoffset": -4
  6663. }
  6664. }
  6665. },
  6666. "289": {
  6667. "segments": {
  6668. "type": "string",
  6669. "value": "m0,0 l-20,10 l20,10 z"
  6670. },
  6671. "style": {
  6672. "type": "map<string,string>",
  6673. "value": {
  6674. "stroke": "#000000",
  6675. "fill": "#ffffff",
  6676. "opacity": 0,
  6677. "stroke-width": 1
  6678. }
  6679. },
  6680. "mapper": {
  6681. "type": "code",
  6682. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6683. },
  6684. "parser": {
  6685. "type": "code",
  6686. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6687. },
  6688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6689. "position": {
  6690. "type": "list<double>",
  6691. "value": [
  6692. "0;11.974586998307359,0%",
  6693. "0;-27.287529500120854,0%"
  6694. ]
  6695. },
  6696. "orientation": {
  6697. "type": "double",
  6698. "value": "0;94.08561677997488"
  6699. },
  6700. "scale": {
  6701. "type": "list<double>",
  6702. "value": [
  6703. 1,
  6704. 1
  6705. ]
  6706. },
  6707. "arrow": "arrowHead",
  6708. "arrowType": "triangle-white-large",
  6709. "$linkDecoratorInfo": {
  6710. "type": "map<string,double>",
  6711. "value": {
  6712. "xratio": -1,
  6713. "yoffset": -10
  6714. }
  6715. }
  6716. },
  6717. "290": {
  6718. "segments": {
  6719. "type": "string",
  6720. "value": "m0,0 l-20,10 l20,10 z"
  6721. },
  6722. "style": {
  6723. "type": "map<string,string>",
  6724. "value": {
  6725. "stroke": "#000000",
  6726. "fill": "#000000",
  6727. "opacity": 0,
  6728. "stroke-width": 1
  6729. }
  6730. },
  6731. "mapper": {
  6732. "type": "code",
  6733. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6734. },
  6735. "parser": {
  6736. "type": "code",
  6737. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6738. },
  6739. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6740. "position": {
  6741. "type": "list<double>",
  6742. "value": [
  6743. "0;11.974586998307359,0%",
  6744. "0;-27.287529500120854,0%"
  6745. ]
  6746. },
  6747. "orientation": {
  6748. "type": "double",
  6749. "value": "0;94.08561677997488"
  6750. },
  6751. "scale": {
  6752. "type": "list<double>",
  6753. "value": [
  6754. 1,
  6755. 1
  6756. ]
  6757. },
  6758. "arrow": "arrowHead",
  6759. "arrowType": "triangle-black-large",
  6760. "$linkDecoratorInfo": {
  6761. "type": "map<string,double>",
  6762. "value": {
  6763. "xratio": -1,
  6764. "yoffset": -10
  6765. }
  6766. }
  6767. },
  6768. "291": {
  6769. "r": {
  6770. "type": "double",
  6771. "value": 5
  6772. },
  6773. "style": {
  6774. "type": "map<string,string>",
  6775. "value": {
  6776. "stroke": "#000000",
  6777. "fill": "#000000",
  6778. "opacity": 0,
  6779. "stroke-width": 1
  6780. }
  6781. },
  6782. "mapper": {
  6783. "type": "code",
  6784. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6785. },
  6786. "parser": {
  6787. "type": "code",
  6788. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6789. },
  6790. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6791. "position": {
  6792. "type": "list<double>",
  6793. "value": [
  6794. "0;6.987293499153566,0%",
  6795. "0;-27.643764750060427,0%"
  6796. ]
  6797. },
  6798. "orientation": {
  6799. "type": "double",
  6800. "value": "0;94.08561677997488"
  6801. },
  6802. "scale": {
  6803. "type": "list<double>",
  6804. "value": [
  6805. 1,
  6806. 1
  6807. ]
  6808. },
  6809. "arrow": "arrowHead",
  6810. "arrowType": "circle-black",
  6811. "$linkDecoratorInfo": {
  6812. "type": "map<string,double>",
  6813. "value": {
  6814. "xratio": -1,
  6815. "yoffset": -5
  6816. }
  6817. }
  6818. },
  6819. "292": {
  6820. "r": {
  6821. "type": "double",
  6822. "value": 5
  6823. },
  6824. "style": {
  6825. "type": "map<string,string>",
  6826. "value": {
  6827. "stroke": "#000000",
  6828. "fill": "#ffffff",
  6829. "opacity": 0,
  6830. "stroke-width": 1
  6831. }
  6832. },
  6833. "mapper": {
  6834. "type": "code",
  6835. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6836. },
  6837. "parser": {
  6838. "type": "code",
  6839. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6840. },
  6841. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6842. "position": {
  6843. "type": "list<double>",
  6844. "value": [
  6845. "0;6.987293499153566,0%",
  6846. "0;-27.643764750060427,0%"
  6847. ]
  6848. },
  6849. "orientation": {
  6850. "type": "double",
  6851. "value": "0;94.08561677997488"
  6852. },
  6853. "scale": {
  6854. "type": "list<double>",
  6855. "value": [
  6856. 1,
  6857. 1
  6858. ]
  6859. },
  6860. "arrow": "arrowHead",
  6861. "arrowType": "circle-white",
  6862. "$linkDecoratorInfo": {
  6863. "type": "map<string,double>",
  6864. "value": {
  6865. "xratio": -1,
  6866. "yoffset": -5
  6867. }
  6868. }
  6869. },
  6870. "293": {
  6871. "r": {
  6872. "type": "double",
  6873. "value": 10
  6874. },
  6875. "style": {
  6876. "type": "map<string,string>",
  6877. "value": {
  6878. "stroke": "#000000",
  6879. "fill": "#ffffff",
  6880. "opacity": 0,
  6881. "stroke-width": 1
  6882. }
  6883. },
  6884. "mapper": {
  6885. "type": "code",
  6886. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6887. },
  6888. "parser": {
  6889. "type": "code",
  6890. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6891. },
  6892. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6893. "position": {
  6894. "type": "list<double>",
  6895. "value": [
  6896. "0;11.974586998307359,0%",
  6897. "0;-27.287529500120854,0%"
  6898. ]
  6899. },
  6900. "orientation": {
  6901. "type": "double",
  6902. "value": "0;94.08561677997488"
  6903. },
  6904. "scale": {
  6905. "type": "list<double>",
  6906. "value": [
  6907. 1,
  6908. 1
  6909. ]
  6910. },
  6911. "arrow": "arrowHead",
  6912. "arrowType": "circle-white-large",
  6913. "$linkDecoratorInfo": {
  6914. "type": "map<string,double>",
  6915. "value": {
  6916. "xratio": -1,
  6917. "yoffset": -10
  6918. }
  6919. }
  6920. },
  6921. "294": {
  6922. "segments": {
  6923. "type": "string",
  6924. "value": "m0,0 l-20,8 l20,8"
  6925. },
  6926. "style": {
  6927. "type": "map<string,string>",
  6928. "value": {
  6929. "stroke": "#000000",
  6930. "fill": "#000000",
  6931. "fill-opacity": 0,
  6932. "stroke-width": 1,
  6933. "opacity": 0
  6934. }
  6935. },
  6936. "mapper": {
  6937. "type": "code",
  6938. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6939. },
  6940. "parser": {
  6941. "type": "code",
  6942. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6943. },
  6944. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6945. "position": {
  6946. "type": "list<double>",
  6947. "value": [
  6948. "0;9.979669598645842,0%",
  6949. "0;-27.430023600096774,0%"
  6950. ]
  6951. },
  6952. "orientation": {
  6953. "type": "double",
  6954. "value": "0;94.08561677997488"
  6955. },
  6956. "scale": {
  6957. "type": "list<double>",
  6958. "value": [
  6959. 1,
  6960. 1
  6961. ]
  6962. },
  6963. "arrow": "arrowHead",
  6964. "arrowType": "arrow-empty-large",
  6965. "$linkDecoratorInfo": {
  6966. "type": "map<string,double>",
  6967. "value": {
  6968. "xratio": -1,
  6969. "yoffset": -8
  6970. }
  6971. }
  6972. },
  6973. "295": {
  6974. "segments": {
  6975. "type": "string",
  6976. "value": "m0,0 l-10,4 l10,4"
  6977. },
  6978. "style": {
  6979. "type": "map<string,string>",
  6980. "value": {
  6981. "stroke": "#000000",
  6982. "fill": "#000000",
  6983. "fill-opacity": 0,
  6984. "stroke-width": 1,
  6985. "opacity": 0
  6986. }
  6987. },
  6988. "mapper": {
  6989. "type": "code",
  6990. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6991. },
  6992. "parser": {
  6993. "type": "code",
  6994. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  6995. },
  6996. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6997. "position": {
  6998. "type": "list<double>",
  6999. "value": [
  7000. "0;5.9898347993230345,0%",
  7001. "0;-27.715011800048387,0%"
  7002. ]
  7003. },
  7004. "orientation": {
  7005. "type": "double",
  7006. "value": "0;94.08561677997488"
  7007. },
  7008. "scale": {
  7009. "type": "list<double>",
  7010. "value": [
  7011. 1,
  7012. 1
  7013. ]
  7014. },
  7015. "arrow": "arrowHead",
  7016. "arrowType": "arrow-empty",
  7017. "$linkDecoratorInfo": {
  7018. "type": "map<string,double>",
  7019. "value": {
  7020. "xratio": -1,
  7021. "yoffset": -4
  7022. }
  7023. }
  7024. },
  7025. "296": {
  7026. "segments": {
  7027. "type": "string",
  7028. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7029. },
  7030. "style": {
  7031. "type": "map<string,string>",
  7032. "value": {
  7033. "stroke": "#000000",
  7034. "fill": "#000000",
  7035. "opacity": 0,
  7036. "stroke-width": 1
  7037. }
  7038. },
  7039. "mapper": {
  7040. "type": "code",
  7041. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7042. },
  7043. "parser": {
  7044. "type": "code",
  7045. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7046. },
  7047. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7048. "position": {
  7049. "type": "list<double>",
  7050. "value": [
  7051. "0;11.974586998307359,0%",
  7052. "0;-27.287529500120854,0%"
  7053. ]
  7054. },
  7055. "orientation": {
  7056. "type": "double",
  7057. "value": "0;94.08561677997488"
  7058. },
  7059. "scale": {
  7060. "type": "list<double>",
  7061. "value": [
  7062. 1,
  7063. 1
  7064. ]
  7065. },
  7066. "arrow": "arrowHead",
  7067. "arrowType": "diamond-black-large",
  7068. "$linkDecoratorInfo": {
  7069. "type": "map<string,double>",
  7070. "value": {
  7071. "xratio": -1,
  7072. "yoffset": -10
  7073. }
  7074. }
  7075. },
  7076. "297": {
  7077. "segments": {
  7078. "type": "string",
  7079. "value": "m0,0 l-10,4 l10,4 z"
  7080. },
  7081. "style": {
  7082. "type": "map<string,string>",
  7083. "value": {
  7084. "stroke": "#000000",
  7085. "fill": "#000000",
  7086. "opacity": 0,
  7087. "stroke-width": 1
  7088. }
  7089. },
  7090. "mapper": {
  7091. "type": "code",
  7092. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7093. },
  7094. "parser": {
  7095. "type": "code",
  7096. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7097. },
  7098. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7099. "position": {
  7100. "type": "list<double>",
  7101. "value": [
  7102. "0;5.9898347993230345,0%",
  7103. "0;-27.715011800048387,0%"
  7104. ]
  7105. },
  7106. "orientation": {
  7107. "type": "double",
  7108. "value": "0;94.08561677997488"
  7109. },
  7110. "scale": {
  7111. "type": "list<double>",
  7112. "value": [
  7113. 1,
  7114. 1
  7115. ]
  7116. },
  7117. "arrow": "arrowHead",
  7118. "arrowType": "triangle-black",
  7119. "$linkDecoratorInfo": {
  7120. "type": "map<string,double>",
  7121. "value": {
  7122. "xratio": -1,
  7123. "yoffset": -4
  7124. }
  7125. }
  7126. },
  7127. "298": {
  7128. "segments": {
  7129. "type": "string",
  7130. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7131. },
  7132. "style": {
  7133. "type": "map<string,string>",
  7134. "value": {
  7135. "stroke": "#000000",
  7136. "fill": "#ffffff",
  7137. "opacity": 0,
  7138. "stroke-width": 1
  7139. }
  7140. },
  7141. "mapper": {
  7142. "type": "code",
  7143. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7144. },
  7145. "parser": {
  7146. "type": "code",
  7147. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7148. },
  7149. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7150. "position": {
  7151. "type": "list<double>",
  7152. "value": [
  7153. "0;11.974586998307359,0%",
  7154. "0;-27.287529500120854,0%"
  7155. ]
  7156. },
  7157. "orientation": {
  7158. "type": "double",
  7159. "value": "0;94.08561677997488"
  7160. },
  7161. "scale": {
  7162. "type": "list<double>",
  7163. "value": [
  7164. 1,
  7165. 1
  7166. ]
  7167. },
  7168. "arrow": "arrowHead",
  7169. "arrowType": "diamond-white-large",
  7170. "$linkDecoratorInfo": {
  7171. "type": "map<string,double>",
  7172. "value": {
  7173. "xratio": -1,
  7174. "yoffset": -10
  7175. }
  7176. }
  7177. },
  7178. "__pLabelText": {
  7179. "position": {
  7180. "type": "list<double>",
  7181. "value": [
  7182. 0,
  7183. 0
  7184. ]
  7185. },
  7186. "orientation": {
  7187. "type": "double",
  7188. "value": 0
  7189. },
  7190. "scale": {
  7191. "type": "list<double>",
  7192. "value": [
  7193. 1,
  7194. 1
  7195. ]
  7196. },
  7197. "textContent": {
  7198. "type": "string",
  7199. "value": "5"
  7200. },
  7201. "style": {
  7202. "type": "map<string,string>",
  7203. "value": {
  7204. "stroke": "#6000ff",
  7205. "fill": "#6000ff",
  7206. "font-size": "15px",
  7207. "opacity": "1"
  7208. }
  7209. },
  7210. "mapper": {
  7211. "type": "code",
  7212. "value": "({'textContent':getAttr('__pLabel')})"
  7213. },
  7214. "parser": {
  7215. "type": "code",
  7216. "value": "({'__pLabel':getAttr('textContent')})"
  7217. },
  7218. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  7219. }
  7220. },
  7221. "edges": []
  7222. }
  7223. },
  7224. "$asuri": {
  7225. "type": "string",
  7226. "value": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pport/9.instance"
  7227. },
  7228. "$segments": {
  7229. "type": "map<string,list<string>>",
  7230. "value": {
  7231. "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pIteratorIcon/6.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pportLink/9.instance": "M1110,552L1108,580",
  7232. "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pportLink/9.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pRewriterIcon/7.instance": "M1107.9946619954294,580.0747320639889L1106.0000382197522,607.9994649234695"
  7233. }
  7234. },
  7235. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pportLink"
  7236. },
  7237. "10": {
  7238. "link-style": {
  7239. "type": "map<string,string>",
  7240. "value": {
  7241. "stroke": "#a000ff",
  7242. "stroke-dasharray": "",
  7243. "stroke-opacity": 1,
  7244. "stroke-width": 1
  7245. }
  7246. },
  7247. "arrowHead": {
  7248. "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)",
  7249. "value": "custom"
  7250. },
  7251. "arrowTail": {
  7252. "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)",
  7253. "value": "arrow-black"
  7254. },
  7255. "typename": {
  7256. "type": "string",
  7257. "value": "GenericLinkLink"
  7258. },
  7259. "position": {
  7260. "type": "list<double>",
  7261. "value": [
  7262. 1018.5,
  7263. 445.5
  7264. ]
  7265. },
  7266. "orientation": {
  7267. "type": "double",
  7268. "value": 0
  7269. },
  7270. "scale": {
  7271. "type": "list<double>",
  7272. "value": [
  7273. 1,
  7274. 1
  7275. ]
  7276. },
  7277. "mapper": {
  7278. "type": "code",
  7279. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7280. },
  7281. "parser": {
  7282. "type": "code",
  7283. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7284. },
  7285. "$contents": {
  7286. "type": "map<string,*>",
  7287. "value": {
  7288. "nodes": {
  7289. "__pLabelText": {
  7290. "position": {
  7291. "type": "list<double>",
  7292. "value": [
  7293. 0,
  7294. 0
  7295. ]
  7296. },
  7297. "orientation": {
  7298. "type": "double",
  7299. "value": 0
  7300. },
  7301. "scale": {
  7302. "type": "list<double>",
  7303. "value": [
  7304. 1,
  7305. 1
  7306. ]
  7307. },
  7308. "textContent": {
  7309. "type": "string",
  7310. "value": "6"
  7311. },
  7312. "style": {
  7313. "type": "map<string,string>",
  7314. "value": {
  7315. "stroke": "#6000ff",
  7316. "fill": "#6000ff",
  7317. "font-size": "15px",
  7318. "opacity": "1"
  7319. }
  7320. },
  7321. "mapper": {
  7322. "type": "code",
  7323. "value": "({'textContent':getAttr('__pLabel')})"
  7324. },
  7325. "parser": {
  7326. "type": "code",
  7327. "value": "({'__pLabel':getAttr('textContent')})"
  7328. },
  7329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  7330. }
  7331. },
  7332. "edges": []
  7333. }
  7334. },
  7335. "$asuri": {
  7336. "type": "string",
  7337. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/10.instance"
  7338. },
  7339. "$segments": {
  7340. "type": "map<string,list<string>>",
  7341. "value": {
  7342. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern/__pARuleIcon/4.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/10.instance": "M975,498L1018.5,445.5",
  7343. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/10.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pMatcherIcon/5.instance": "M1018.5956735906057,445.3845318734068L1055.9994361070121,385.0006805605028"
  7344. }
  7345. },
  7346. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  7347. },
  7348. "11": {
  7349. "link-style": {
  7350. "type": "map<string,string>",
  7351. "value": {
  7352. "stroke": "#a000ff",
  7353. "stroke-dasharray": "",
  7354. "stroke-opacity": 1,
  7355. "stroke-width": 1
  7356. }
  7357. },
  7358. "arrowHead": {
  7359. "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)",
  7360. "value": "custom"
  7361. },
  7362. "arrowTail": {
  7363. "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)",
  7364. "value": "arrow-black"
  7365. },
  7366. "typename": {
  7367. "type": "string",
  7368. "value": "GenericLinkLink"
  7369. },
  7370. "position": {
  7371. "type": "list<double>",
  7372. "value": [
  7373. 1011.6499996795385,
  7374. 518.9924050795171
  7375. ]
  7376. },
  7377. "orientation": {
  7378. "type": "double",
  7379. "value": 0
  7380. },
  7381. "scale": {
  7382. "type": "list<double>",
  7383. "value": [
  7384. 1,
  7385. 1
  7386. ]
  7387. },
  7388. "mapper": {
  7389. "type": "code",
  7390. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7391. },
  7392. "parser": {
  7393. "type": "code",
  7394. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7395. },
  7396. "$contents": {
  7397. "type": "map<string,*>",
  7398. "value": {
  7399. "nodes": {
  7400. "__pLabelText": {
  7401. "position": {
  7402. "type": "list<double>",
  7403. "value": [
  7404. 0,
  7405. 0
  7406. ]
  7407. },
  7408. "orientation": {
  7409. "type": "double",
  7410. "value": 0
  7411. },
  7412. "scale": {
  7413. "type": "list<double>",
  7414. "value": [
  7415. 1,
  7416. 1
  7417. ]
  7418. },
  7419. "textContent": {
  7420. "type": "string",
  7421. "value": "7"
  7422. },
  7423. "style": {
  7424. "type": "map<string,string>",
  7425. "value": {
  7426. "stroke": "#6000ff",
  7427. "fill": "#6000ff",
  7428. "font-size": "15px",
  7429. "opacity": "1"
  7430. }
  7431. },
  7432. "mapper": {
  7433. "type": "code",
  7434. "value": "({'textContent':getAttr('__pLabel')})"
  7435. },
  7436. "parser": {
  7437. "type": "code",
  7438. "value": "({'__pLabel':getAttr('textContent')})"
  7439. },
  7440. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  7441. }
  7442. },
  7443. "edges": []
  7444. }
  7445. },
  7446. "$asuri": {
  7447. "type": "string",
  7448. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/11.instance"
  7449. },
  7450. "$segments": {
  7451. "type": "map<string,list<string>>",
  7452. "value": {
  7453. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern/__pARuleIcon/4.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/11.instance": "M972,521L1011.6499996795385,518.9924050795171",
  7454. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/11.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pIteratorIcon/6.instance": "M1011.5748100868282,518.9962121475023L1050.999620573626,517.0000192114619"
  7455. }
  7456. },
  7457. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  7458. },
  7459. "12": {
  7460. "link-style": {
  7461. "type": "map<string,string>",
  7462. "value": {
  7463. "stroke": "#a000ff",
  7464. "stroke-dasharray": "",
  7465. "stroke-opacity": 1,
  7466. "stroke-width": 1
  7467. }
  7468. },
  7469. "arrowHead": {
  7470. "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)",
  7471. "value": "custom"
  7472. },
  7473. "arrowTail": {
  7474. "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)",
  7475. "value": "arrow-black"
  7476. },
  7477. "typename": {
  7478. "type": "string",
  7479. "value": "GenericLinkLink"
  7480. },
  7481. "position": {
  7482. "type": "list<double>",
  7483. "value": [
  7484. 1017,
  7485. 589.5
  7486. ]
  7487. },
  7488. "orientation": {
  7489. "type": "double",
  7490. "value": 0
  7491. },
  7492. "scale": {
  7493. "type": "list<double>",
  7494. "value": [
  7495. 1,
  7496. 1
  7497. ]
  7498. },
  7499. "mapper": {
  7500. "type": "code",
  7501. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7502. },
  7503. "parser": {
  7504. "type": "code",
  7505. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  7506. },
  7507. "$contents": {
  7508. "type": "map<string,*>",
  7509. "value": {
  7510. "nodes": {
  7511. "__pLabelText": {
  7512. "position": {
  7513. "type": "list<double>",
  7514. "value": [
  7515. 0,
  7516. 0
  7517. ]
  7518. },
  7519. "orientation": {
  7520. "type": "double",
  7521. "value": 0
  7522. },
  7523. "scale": {
  7524. "type": "list<double>",
  7525. "value": [
  7526. 1,
  7527. 1
  7528. ]
  7529. },
  7530. "textContent": {
  7531. "type": "string",
  7532. "value": "8"
  7533. },
  7534. "style": {
  7535. "type": "map<string,string>",
  7536. "value": {
  7537. "stroke": "#6000ff",
  7538. "fill": "#6000ff",
  7539. "font-size": "15px",
  7540. "opacity": "1"
  7541. }
  7542. },
  7543. "mapper": {
  7544. "type": "code",
  7545. "value": "({'textContent':getAttr('__pLabel')})"
  7546. },
  7547. "parser": {
  7548. "type": "code",
  7549. "value": "({'__pLabel':getAttr('textContent')})"
  7550. },
  7551. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  7552. }
  7553. },
  7554. "edges": []
  7555. }
  7556. },
  7557. "$asuri": {
  7558. "type": "string",
  7559. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/12.instance"
  7560. },
  7561. "$segments": {
  7562. "type": "map<string,list<string>>",
  7563. "value": {
  7564. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern/__pARuleIcon/4.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/12.instance": "M973,545L1017,589.5",
  7565. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/12.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pRewriterIcon/7.instance": "M1017.1052619907503,589.6064581497362L1060.999324880896,633.9993172090881"
  7566. }
  7567. },
  7568. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  7569. },
  7570. "17": {
  7571. "link-style": {
  7572. "type": "map<string,string>",
  7573. "value": {
  7574. "stroke": "#00ff00",
  7575. "stroke-dasharray": "",
  7576. "stroke-opacity": 0.2,
  7577. "stroke-width": 1,
  7578. "arrow-start": "none",
  7579. "arrow-end": "classic-wide-long"
  7580. }
  7581. },
  7582. "typename": {
  7583. "type": "string",
  7584. "value": "PatternContentsLink"
  7585. },
  7586. "position": {
  7587. "type": "list<double>",
  7588. "value": [
  7589. 724.5,
  7590. 386.62668800354004
  7591. ]
  7592. },
  7593. "orientation": {
  7594. "type": "double",
  7595. "value": 0
  7596. },
  7597. "scale": {
  7598. "type": "list<double>",
  7599. "value": [
  7600. 1,
  7601. 1
  7602. ]
  7603. },
  7604. "mapper": {
  7605. "type": "code",
  7606. "value": ""
  7607. },
  7608. "parser": {
  7609. "type": "code",
  7610. "value": ""
  7611. },
  7612. "$contents": {
  7613. "type": "map<string,*>",
  7614. "value": {
  7615. "nodes": {},
  7616. "edges": []
  7617. }
  7618. },
  7619. "$asuri": {
  7620. "type": "string",
  7621. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/17.instance"
  7622. },
  7623. "$segments": {
  7624. "type": "map<string,list<string>>",
  7625. "value": {
  7626. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/17.instance": "M572,258L724.5,386.62668800354004",
  7627. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/17.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern/__pARuleIcon/4.instance": "M724.5571584023379,386.674898469011L876.9994829886633,515.2529399319595"
  7628. }
  7629. },
  7630. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  7631. },
  7632. "18": {
  7633. "link-style": {
  7634. "type": "map<string,string>",
  7635. "value": {
  7636. "stroke": "#00ff00",
  7637. "stroke-dasharray": "",
  7638. "stroke-opacity": 0.2,
  7639. "stroke-width": 1,
  7640. "arrow-start": "none",
  7641. "arrow-end": "classic-wide-long"
  7642. }
  7643. },
  7644. "typename": {
  7645. "type": "string",
  7646. "value": "PatternContentsLink"
  7647. },
  7648. "position": {
  7649. "type": "list<double>",
  7650. "value": [
  7651. 860.2727564044998,
  7652. 311.153932457865
  7653. ]
  7654. },
  7655. "orientation": {
  7656. "type": "double",
  7657. "value": 0
  7658. },
  7659. "scale": {
  7660. "type": "list<double>",
  7661. "value": [
  7662. 1,
  7663. 1
  7664. ]
  7665. },
  7666. "mapper": {
  7667. "type": "code",
  7668. "value": ""
  7669. },
  7670. "parser": {
  7671. "type": "code",
  7672. "value": ""
  7673. },
  7674. "$contents": {
  7675. "type": "map<string,*>",
  7676. "value": {
  7677. "nodes": {},
  7678. "edges": []
  7679. }
  7680. },
  7681. "$asuri": {
  7682. "type": "string",
  7683. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/18.instance"
  7684. },
  7685. "$segments": {
  7686. "type": "map<string,list<string>>",
  7687. "value": {
  7688. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/18.instance": "M572,258L860.2727564044998,311.153932457865",
  7689. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/18.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pMatcherIcon/5.instance": "M860.2724533144628,311.1538765718092L1148.2491921282358,364.2532270455142"
  7690. }
  7691. },
  7692. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  7693. },
  7694. "19": {
  7695. "link-style": {
  7696. "type": "map<string,string>",
  7697. "value": {
  7698. "stroke": "#00ff00",
  7699. "stroke-dasharray": "",
  7700. "stroke-opacity": 0.2,
  7701. "stroke-width": 1,
  7702. "arrow-start": "none",
  7703. "arrow-end": "classic-wide-long"
  7704. }
  7705. },
  7706. "typename": {
  7707. "type": "string",
  7708. "value": "PatternContentsLink"
  7709. },
  7710. "position": {
  7711. "type": "list<double>",
  7712. "value": [
  7713. 859.875,
  7714. 382.37668800354004
  7715. ]
  7716. },
  7717. "orientation": {
  7718. "type": "double",
  7719. "value": 0
  7720. },
  7721. "scale": {
  7722. "type": "list<double>",
  7723. "value": [
  7724. 1,
  7725. 1
  7726. ]
  7727. },
  7728. "mapper": {
  7729. "type": "code",
  7730. "value": ""
  7731. },
  7732. "parser": {
  7733. "type": "code",
  7734. "value": ""
  7735. },
  7736. "$contents": {
  7737. "type": "map<string,*>",
  7738. "value": {
  7739. "nodes": {},
  7740. "edges": []
  7741. }
  7742. },
  7743. "$asuri": {
  7744. "type": "string",
  7745. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/19.instance"
  7746. },
  7747. "$segments": {
  7748. "type": "map<string,list<string>>",
  7749. "value": {
  7750. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/19.instance": "M572,258L859.875,382.37668800354004",
  7751. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/19.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pIteratorIcon/6.instance": "M860.0124756140453,382.43608448311005L1147.7492973236203,506.7530724150319"
  7752. }
  7753. },
  7754. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  7755. },
  7756. "20": {
  7757. "link-style": {
  7758. "type": "map<string,string>",
  7759. "value": {
  7760. "stroke": "#00ff00",
  7761. "stroke-dasharray": "",
  7762. "stroke-opacity": 0.2,
  7763. "stroke-width": 1,
  7764. "arrow-start": "none",
  7765. "arrow-end": "classic-wide-long"
  7766. }
  7767. },
  7768. "typename": {
  7769. "type": "string",
  7770. "value": "PatternContentsLink"
  7771. },
  7772. "position": {
  7773. "type": "list<double>",
  7774. "value": [
  7775. 863.125,
  7776. 446.2611713409424
  7777. ]
  7778. },
  7779. "orientation": {
  7780. "type": "double",
  7781. "value": 0
  7782. },
  7783. "scale": {
  7784. "type": "list<double>",
  7785. "value": [
  7786. 1,
  7787. 1
  7788. ]
  7789. },
  7790. "mapper": {
  7791. "type": "code",
  7792. "value": ""
  7793. },
  7794. "parser": {
  7795. "type": "code",
  7796. "value": ""
  7797. },
  7798. "$contents": {
  7799. "type": "map<string,*>",
  7800. "value": {
  7801. "nodes": {},
  7802. "edges": []
  7803. }
  7804. },
  7805. "$asuri": {
  7806. "type": "string",
  7807. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/20.instance"
  7808. },
  7809. "$segments": {
  7810. "type": "map<string,list<string>>",
  7811. "value": {
  7812. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/20.instance": "M572,258L863.125,446.2611713409424",
  7813. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/20.instance--/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern/__pRewriterIcon/7.instance": "M863.2508099045044,446.3425285585921L1154.2494182758194,634.5219664995726"
  7814. }
  7815. },
  7816. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  7817. }
  7818. },
  7819. "edges": [],
  7820. "metamodels": [
  7821. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  7822. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons.pattern",
  7823. "/Formalisms/__Transformations__/Transformation/T-Core.defaultIcons.pattern",
  7824. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern"
  7825. ]
  7826. },
  7827. "asm": {
  7828. "nodes": {
  7829. "0": {
  7830. "Condition": {
  7831. "type": "code",
  7832. "value": "result = True"
  7833. },
  7834. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  7835. },
  7836. "1": {
  7837. "Action": {
  7838. "type": "code",
  7839. "value": "rulePath = getAttr('rule','0')\nruleName = getAttr('name','0')\nruleAlias = getAttr('alias','0')\ncsPosition = getAttr('position','0')\n\nsetAttr('rule',rulePath,'1')\nsetAttr('name',ruleName,'1')\nsetAttr('alias',ruleAlias,'1')\nsetAttr('position',[csPosition[0]+300,csPosition[1]-125],'1')\n\nsetAttr('rule',rulePath,'2')\nsetAttr('name',ruleName,'2')\nsetAttr('alias',ruleAlias,'2')\nsetAttr('position',[csPosition[0]+300,csPosition[1]],'2')\n\nsetAttr('rule',rulePath,'3')\nsetAttr('name',ruleName,'3')\nsetAttr('alias',ruleAlias,'3')\nsetAttr('position',[csPosition[0]+300,csPosition[1]+125],'3')"
  7840. },
  7841. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  7842. },
  7843. "2": {
  7844. "__pLabel": {
  7845. "type": "string",
  7846. "value": "0"
  7847. },
  7848. "__pPivotIn": {
  7849. "type": "string",
  7850. "value": ""
  7851. },
  7852. "__pPivotOut": {
  7853. "type": "string",
  7854. "value": ""
  7855. },
  7856. "__pMatchSubtypes": {
  7857. "type": "boolean",
  7858. "value": false
  7859. },
  7860. "rule": {
  7861. "type": "code",
  7862. "value": "result = True"
  7863. },
  7864. "name": {
  7865. "type": "code",
  7866. "value": "result = True"
  7867. },
  7868. "alias": {
  7869. "type": "code",
  7870. "value": "result = True"
  7871. },
  7872. "position": {
  7873. "type": "code",
  7874. "value": "result = True"
  7875. },
  7876. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.pattern/__pARule"
  7877. },
  7878. "3": {
  7879. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  7880. },
  7881. "4": {
  7882. "__pLabel": {
  7883. "type": "string",
  7884. "value": "0"
  7885. },
  7886. "__pPivotIn": {
  7887. "type": "string",
  7888. "value": ""
  7889. },
  7890. "__pPivotOut": {
  7891. "type": "string",
  7892. "value": ""
  7893. },
  7894. "__pMatchSubtypes": {
  7895. "type": "boolean"
  7896. },
  7897. "rule": {
  7898. "type": "code",
  7899. "value": "result = getAttr()"
  7900. },
  7901. "name": {
  7902. "type": "code",
  7903. "value": "result = getAttr()"
  7904. },
  7905. "alias": {
  7906. "type": "code",
  7907. "value": "result = getAttr()"
  7908. },
  7909. "position": {
  7910. "type": "code",
  7911. "value": "result = getAttr()"
  7912. },
  7913. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.pattern/__pARule"
  7914. },
  7915. "5": {
  7916. "__pLabel": {
  7917. "type": "string",
  7918. "value": "1"
  7919. },
  7920. "__pPivotIn": {
  7921. "type": "string",
  7922. "value": ""
  7923. },
  7924. "__pPivotOut": {
  7925. "type": "string",
  7926. "value": ""
  7927. },
  7928. "__pMatchSubtypes": {
  7929. "type": "boolean"
  7930. },
  7931. "max": {
  7932. "type": "code",
  7933. "value": "result = 1"
  7934. },
  7935. "rule": {
  7936. "type": "code",
  7937. "value": "result = \"\""
  7938. },
  7939. "name": {
  7940. "type": "code",
  7941. "value": "result = \"\""
  7942. },
  7943. "alias": {
  7944. "type": "code",
  7945. "value": "result = \"\""
  7946. },
  7947. "isSuccess": {
  7948. "type": "code",
  7949. "value": "result = \"\""
  7950. },
  7951. "exception": {
  7952. "type": "code",
  7953. "value": "result = \"\""
  7954. },
  7955. "position": {
  7956. "type": "code",
  7957. "value": "result = []"
  7958. },
  7959. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pMatcher"
  7960. },
  7961. "6": {
  7962. "__pLabel": {
  7963. "type": "string",
  7964. "value": "2"
  7965. },
  7966. "__pPivotIn": {
  7967. "type": "string",
  7968. "value": ""
  7969. },
  7970. "__pPivotOut": {
  7971. "type": "string",
  7972. "value": ""
  7973. },
  7974. "__pMatchSubtypes": {
  7975. "type": "boolean"
  7976. },
  7977. "maxIterations": {
  7978. "type": "code",
  7979. "value": "result = 1"
  7980. },
  7981. "rule": {
  7982. "type": "code",
  7983. "value": "result = \"\""
  7984. },
  7985. "name": {
  7986. "type": "code",
  7987. "value": "result = \"\""
  7988. },
  7989. "alias": {
  7990. "type": "code",
  7991. "value": "result = \"\""
  7992. },
  7993. "isSuccess": {
  7994. "type": "code",
  7995. "value": "result = \"\""
  7996. },
  7997. "exception": {
  7998. "type": "code",
  7999. "value": "result = \"\""
  8000. },
  8001. "position": {
  8002. "type": "code",
  8003. "value": "result = []"
  8004. },
  8005. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pIterator"
  8006. },
  8007. "7": {
  8008. "__pLabel": {
  8009. "type": "string",
  8010. "value": "3"
  8011. },
  8012. "__pPivotIn": {
  8013. "type": "string",
  8014. "value": ""
  8015. },
  8016. "__pPivotOut": {
  8017. "type": "string",
  8018. "value": ""
  8019. },
  8020. "__pMatchSubtypes": {
  8021. "type": "boolean"
  8022. },
  8023. "rule": {
  8024. "type": "code",
  8025. "value": "result = \"\""
  8026. },
  8027. "name": {
  8028. "type": "code",
  8029. "value": "result = \"\""
  8030. },
  8031. "alias": {
  8032. "type": "code",
  8033. "value": "result = \"\""
  8034. },
  8035. "isSuccess": {
  8036. "type": "code",
  8037. "value": "result = \"\""
  8038. },
  8039. "exception": {
  8040. "type": "code",
  8041. "value": "result = \"\""
  8042. },
  8043. "position": {
  8044. "type": "code",
  8045. "value": "result = []"
  8046. },
  8047. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pRewriter"
  8048. },
  8049. "8": {
  8050. "__pLabel": {
  8051. "type": "string",
  8052. "value": "4"
  8053. },
  8054. "__pPivotIn": {
  8055. "type": "string",
  8056. "value": ""
  8057. },
  8058. "__pPivotOut": {
  8059. "type": "string",
  8060. "value": ""
  8061. },
  8062. "__pMatchSubtypes": {
  8063. "type": "boolean"
  8064. },
  8065. "output": {
  8066. "type": "code",
  8067. "value": "result = 'success'"
  8068. },
  8069. "input": {
  8070. "type": "code",
  8071. "value": "result = 'packetIn'"
  8072. },
  8073. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pport"
  8074. },
  8075. "9": {
  8076. "__pLabel": {
  8077. "type": "string",
  8078. "value": "5"
  8079. },
  8080. "__pPivotIn": {
  8081. "type": "string",
  8082. "value": ""
  8083. },
  8084. "__pPivotOut": {
  8085. "type": "string",
  8086. "value": ""
  8087. },
  8088. "__pMatchSubtypes": {
  8089. "type": "boolean"
  8090. },
  8091. "output": {
  8092. "type": "code",
  8093. "value": "result = \"success\""
  8094. },
  8095. "input": {
  8096. "type": "code",
  8097. "value": "result = \"packetIn\""
  8098. },
  8099. "$type": "/Formalisms/__Transformations__/Transformation/T-Core.pattern/__pport"
  8100. },
  8101. "10": {
  8102. "__pLabel": {
  8103. "type": "string",
  8104. "value": "6"
  8105. },
  8106. "__pPivotIn": {
  8107. "type": "string",
  8108. "value": ""
  8109. },
  8110. "__pPivotOut": {
  8111. "type": "string",
  8112. "value": ""
  8113. },
  8114. "__pMatchSubtypes": {
  8115. "type": "boolean"
  8116. },
  8117. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  8118. },
  8119. "11": {
  8120. "__pLabel": {
  8121. "type": "string",
  8122. "value": "7"
  8123. },
  8124. "__pPivotIn": {
  8125. "type": "string",
  8126. "value": ""
  8127. },
  8128. "__pPivotOut": {
  8129. "type": "string",
  8130. "value": ""
  8131. },
  8132. "__pMatchSubtypes": {
  8133. "type": "boolean"
  8134. },
  8135. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  8136. },
  8137. "12": {
  8138. "__pLabel": {
  8139. "type": "string",
  8140. "value": "8"
  8141. },
  8142. "__pPivotIn": {
  8143. "type": "string",
  8144. "value": ""
  8145. },
  8146. "__pPivotOut": {
  8147. "type": "string",
  8148. "value": ""
  8149. },
  8150. "__pMatchSubtypes": {
  8151. "type": "boolean"
  8152. },
  8153. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  8154. },
  8155. "17": {
  8156. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  8157. },
  8158. "18": {
  8159. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  8160. },
  8161. "19": {
  8162. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  8163. },
  8164. "20": {
  8165. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  8166. }
  8167. },
  8168. "edges": [
  8169. {
  8170. "src": "0",
  8171. "dest": "3"
  8172. },
  8173. {
  8174. "src": "3",
  8175. "dest": "2"
  8176. },
  8177. {
  8178. "src": "5",
  8179. "dest": "8"
  8180. },
  8181. {
  8182. "src": "8",
  8183. "dest": "6"
  8184. },
  8185. {
  8186. "src": "6",
  8187. "dest": "9"
  8188. },
  8189. {
  8190. "src": "9",
  8191. "dest": "7"
  8192. },
  8193. {
  8194. "src": "4",
  8195. "dest": "10"
  8196. },
  8197. {
  8198. "src": "10",
  8199. "dest": "5"
  8200. },
  8201. {
  8202. "src": "4",
  8203. "dest": "11"
  8204. },
  8205. {
  8206. "src": "11",
  8207. "dest": "6"
  8208. },
  8209. {
  8210. "src": "4",
  8211. "dest": "12"
  8212. },
  8213. {
  8214. "src": "12",
  8215. "dest": "7"
  8216. },
  8217. {
  8218. "src": "1",
  8219. "dest": "17"
  8220. },
  8221. {
  8222. "src": "17",
  8223. "dest": "4"
  8224. },
  8225. {
  8226. "src": "1",
  8227. "dest": "18"
  8228. },
  8229. {
  8230. "src": "18",
  8231. "dest": "5"
  8232. },
  8233. {
  8234. "src": "1",
  8235. "dest": "19"
  8236. },
  8237. {
  8238. "src": "19",
  8239. "dest": "6"
  8240. },
  8241. {
  8242. "src": "1",
  8243. "dest": "20"
  8244. },
  8245. {
  8246. "src": "20",
  8247. "dest": "7"
  8248. }
  8249. ],
  8250. "metamodels": [
  8251. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  8252. "/Formalisms/__Transformations__/Transformation/MoTif.pattern",
  8253. "/Formalisms/__Transformations__/Transformation/T-Core.pattern",
  8254. "/Formalisms/GenericGraph/GenericGraph.pattern"
  8255. ]
  8256. }
  8257. }