R_Simulate.model 140 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597
  1. {
  2. "csm": {
  3. "nodes": {
  4. "4": {
  5. "typename": {
  6. "type": "string",
  7. "value": "LHSIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 25,
  13. 202
  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/4.instance"
  91. },
  92. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon"
  93. },
  94. "5": {
  95. "typename": {
  96. "type": "string",
  97. "value": "StateIcon"
  98. },
  99. "position": {
  100. "type": "list<double>",
  101. "value": [
  102. 52,
  103. 352
  104. ]
  105. },
  106. "orientation": {
  107. "type": "double",
  108. "value": 0
  109. },
  110. "scale": {
  111. "type": "list<double>",
  112. "value": [
  113. 1,
  114. 1
  115. ]
  116. },
  117. "mapper": {
  118. "type": "code",
  119. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  120. },
  121. "parser": {
  122. "type": "code",
  123. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  124. },
  125. "$contents": {
  126. "type": "map<string,*>",
  127. "value": {
  128. "nodes": {
  129. "1": {
  130. "r": {
  131. "type": "double",
  132. "value": 50
  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. "font-size": "20px",
  142. "stroke-width": 2,
  143. "arrow-start": "none",
  144. "arrow-end": "none"
  145. }
  146. },
  147. "mapper": {
  148. "type": "code",
  149. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  150. },
  151. "parser": {
  152. "type": "code",
  153. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  154. },
  155. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  156. "position": {
  157. "type": "list<double>",
  158. "value": [
  159. 4,
  160. 4
  161. ]
  162. },
  163. "orientation": {
  164. "type": "double",
  165. "value": 0
  166. },
  167. "scale": {
  168. "type": "list<double>",
  169. "value": [
  170. 1,
  171. 1
  172. ]
  173. }
  174. },
  175. "2": {
  176. "textContent": {
  177. "type": "string",
  178. "value": "T..."
  179. },
  180. "style": {
  181. "type": "map<string,string>",
  182. "value": {
  183. "stroke": "#000000",
  184. "stroke-dasharray": "",
  185. "fill": "#ffffff",
  186. "fill-opacity": 0.75,
  187. "font-size": "14px",
  188. "arrow-start": "none",
  189. "arrow-end": "none"
  190. }
  191. },
  192. "mapper": {
  193. "type": "code",
  194. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  195. },
  196. "parser": {
  197. "type": "code",
  198. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  199. },
  200. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  201. "position": {
  202. "type": "list<double>",
  203. "value": [
  204. 11,
  205. 48
  206. ]
  207. },
  208. "orientation": {
  209. "type": "double",
  210. "value": 0
  211. },
  212. "scale": {
  213. "type": "list<double>",
  214. "value": [
  215. 1,
  216. 1
  217. ]
  218. }
  219. },
  220. "3": {
  221. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  222. "position": {
  223. "type": "list<double>",
  224. "value": [
  225. 12.71270269242143,
  226. 30
  227. ]
  228. },
  229. "orientation": {
  230. "type": "double",
  231. "value": 0
  232. },
  233. "scale": {
  234. "type": "list<double>",
  235. "value": [
  236. 1,
  237. 1
  238. ]
  239. },
  240. "link-style": {
  241. "type": "map<string,string>",
  242. "value": {
  243. "stroke": "#00ffff",
  244. "stroke-dasharray": "",
  245. "stroke-opacity": 0.1,
  246. "stroke-width": 1
  247. }
  248. }
  249. },
  250. "__pLabelText": {
  251. "position": {
  252. "type": "list<double>",
  253. "value": [
  254. 0,
  255. 0
  256. ]
  257. },
  258. "orientation": {
  259. "type": "double",
  260. "value": 0
  261. },
  262. "scale": {
  263. "type": "list<double>",
  264. "value": [
  265. 1,
  266. 1
  267. ]
  268. },
  269. "textContent": {
  270. "type": "string",
  271. "value": "0"
  272. },
  273. "style": {
  274. "type": "map<string,string>",
  275. "value": {
  276. "stroke": "#6000ff",
  277. "fill": "#6000ff",
  278. "font-size": "15px",
  279. "opacity": "1"
  280. }
  281. },
  282. "mapper": {
  283. "type": "code",
  284. "value": "({'textContent':getAttr('__pLabel')})"
  285. },
  286. "parser": {
  287. "type": "code",
  288. "value": "({'__pLabel':getAttr('textContent')})"
  289. },
  290. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  291. }
  292. },
  293. "edges": [
  294. {
  295. "src": "1",
  296. "dest": "3"
  297. },
  298. {
  299. "src": "3",
  300. "dest": "2"
  301. }
  302. ]
  303. }
  304. },
  305. "$asuri": {
  306. "type": "string",
  307. "value": "/Formalisms/FSA/FSA.pattern/__pState/5.instance"
  308. },
  309. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon"
  310. },
  311. "6": {
  312. "typename": {
  313. "type": "string",
  314. "value": "StateIcon"
  315. },
  316. "position": {
  317. "type": "list<double>",
  318. "value": [
  319. 249,
  320. 354
  321. ]
  322. },
  323. "orientation": {
  324. "type": "double",
  325. "value": 0
  326. },
  327. "scale": {
  328. "type": "list<double>",
  329. "value": [
  330. 1,
  331. 1
  332. ]
  333. },
  334. "mapper": {
  335. "type": "code",
  336. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  337. },
  338. "parser": {
  339. "type": "code",
  340. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  341. },
  342. "$contents": {
  343. "type": "map<string,*>",
  344. "value": {
  345. "nodes": {
  346. "1": {
  347. "r": {
  348. "type": "double",
  349. "value": 50
  350. },
  351. "style": {
  352. "type": "map<string,string>",
  353. "value": {
  354. "stroke": "#000000",
  355. "stroke-dasharray": "",
  356. "fill": "#ffffff",
  357. "fill-opacity": 0.75,
  358. "font-size": "20px",
  359. "stroke-width": 2,
  360. "arrow-start": "none",
  361. "arrow-end": "none"
  362. }
  363. },
  364. "mapper": {
  365. "type": "code",
  366. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  367. },
  368. "parser": {
  369. "type": "code",
  370. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  371. },
  372. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  373. "position": {
  374. "type": "list<double>",
  375. "value": [
  376. 4,
  377. 4
  378. ]
  379. },
  380. "orientation": {
  381. "type": "double",
  382. "value": 0
  383. },
  384. "scale": {
  385. "type": "list<double>",
  386. "value": [
  387. 1,
  388. 1
  389. ]
  390. }
  391. },
  392. "2": {
  393. "textContent": {
  394. "type": "string",
  395. "value": "T..."
  396. },
  397. "style": {
  398. "type": "map<string,string>",
  399. "value": {
  400. "stroke": "#000000",
  401. "stroke-dasharray": "",
  402. "fill": "#ffffff",
  403. "fill-opacity": 0.75,
  404. "font-size": "14px",
  405. "arrow-start": "none",
  406. "arrow-end": "none"
  407. }
  408. },
  409. "mapper": {
  410. "type": "code",
  411. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  412. },
  413. "parser": {
  414. "type": "code",
  415. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  416. },
  417. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  418. "position": {
  419. "type": "list<double>",
  420. "value": [
  421. 11,
  422. 48
  423. ]
  424. },
  425. "orientation": {
  426. "type": "double",
  427. "value": 0
  428. },
  429. "scale": {
  430. "type": "list<double>",
  431. "value": [
  432. 1,
  433. 1
  434. ]
  435. }
  436. },
  437. "3": {
  438. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  439. "position": {
  440. "type": "list<double>",
  441. "value": [
  442. 12.71270269242143,
  443. 30
  444. ]
  445. },
  446. "orientation": {
  447. "type": "double",
  448. "value": 0
  449. },
  450. "scale": {
  451. "type": "list<double>",
  452. "value": [
  453. 1,
  454. 1
  455. ]
  456. },
  457. "link-style": {
  458. "type": "map<string,string>",
  459. "value": {
  460. "stroke": "#00ffff",
  461. "stroke-dasharray": "",
  462. "stroke-opacity": 0.1,
  463. "stroke-width": 1
  464. }
  465. }
  466. },
  467. "__pLabelText": {
  468. "position": {
  469. "type": "list<double>",
  470. "value": [
  471. 0,
  472. 0
  473. ]
  474. },
  475. "orientation": {
  476. "type": "double",
  477. "value": 0
  478. },
  479. "scale": {
  480. "type": "list<double>",
  481. "value": [
  482. 1,
  483. 1
  484. ]
  485. },
  486. "textContent": {
  487. "type": "string",
  488. "value": "1"
  489. },
  490. "style": {
  491. "type": "map<string,string>",
  492. "value": {
  493. "stroke": "#6000ff",
  494. "fill": "#6000ff",
  495. "font-size": "15px",
  496. "opacity": "1"
  497. }
  498. },
  499. "mapper": {
  500. "type": "code",
  501. "value": "({'textContent':getAttr('__pLabel')})"
  502. },
  503. "parser": {
  504. "type": "code",
  505. "value": "({'__pLabel':getAttr('textContent')})"
  506. },
  507. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  508. }
  509. },
  510. "edges": [
  511. {
  512. "src": "1",
  513. "dest": "3"
  514. },
  515. {
  516. "src": "3",
  517. "dest": "2"
  518. }
  519. ]
  520. }
  521. },
  522. "$asuri": {
  523. "type": "string",
  524. "value": "/Formalisms/FSA/FSA.pattern/__pState/6.instance"
  525. },
  526. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon"
  527. },
  528. "7": {
  529. "typename": {
  530. "type": "string",
  531. "value": "InputEventsIcon"
  532. },
  533. "position": {
  534. "type": "list<double>",
  535. "value": [
  536. 173,
  537. 476
  538. ]
  539. },
  540. "orientation": {
  541. "type": "double",
  542. "value": 0
  543. },
  544. "scale": {
  545. "type": "list<double>",
  546. "value": [
  547. 1,
  548. 1
  549. ]
  550. },
  551. "mapper": {
  552. "type": "code",
  553. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  554. },
  555. "parser": {
  556. "type": "code",
  557. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  558. },
  559. "$contents": {
  560. "type": "map<string,*>",
  561. "value": {
  562. "nodes": {
  563. "7": {
  564. "textContent": {
  565. "type": "string",
  566. "value": "T..."
  567. },
  568. "style": {
  569. "type": "map<string,string>",
  570. "value": {
  571. "stroke": "#000000",
  572. "stroke-dasharray": "",
  573. "fill": "#ff0000",
  574. "fill-opacity": 0.75,
  575. "stroke-width": 1,
  576. "font-size": "20px",
  577. "arrow-start": "none",
  578. "arrow-end": "none"
  579. }
  580. },
  581. "mapper": {
  582. "type": "code",
  583. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  584. },
  585. "parser": {
  586. "type": "code",
  587. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  588. },
  589. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  590. "position": {
  591. "type": "list<double>",
  592. "value": [
  593. 4,
  594. 7
  595. ]
  596. },
  597. "orientation": {
  598. "type": "double",
  599. "value": 0
  600. },
  601. "scale": {
  602. "type": "list<double>",
  603. "value": [
  604. 1,
  605. 1
  606. ]
  607. }
  608. },
  609. "__pLabelText": {
  610. "position": {
  611. "type": "list<double>",
  612. "value": [
  613. 0,
  614. 0
  615. ]
  616. },
  617. "orientation": {
  618. "type": "double",
  619. "value": 0
  620. },
  621. "scale": {
  622. "type": "list<double>",
  623. "value": [
  624. 1,
  625. 1
  626. ]
  627. },
  628. "textContent": {
  629. "type": "string",
  630. "value": "3"
  631. },
  632. "style": {
  633. "type": "map<string,string>",
  634. "value": {
  635. "stroke": "#6000ff",
  636. "fill": "#6000ff",
  637. "font-size": "15px",
  638. "opacity": "1"
  639. }
  640. },
  641. "mapper": {
  642. "type": "code",
  643. "value": "({'textContent':getAttr('__pLabel')})"
  644. },
  645. "parser": {
  646. "type": "code",
  647. "value": "({'__pLabel':getAttr('textContent')})"
  648. },
  649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  650. }
  651. },
  652. "edges": []
  653. }
  654. },
  655. "$asuri": {
  656. "type": "string",
  657. "value": "/Formalisms/FSA/FSA.pattern/__pInputEvents/7.instance"
  658. },
  659. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pInputEventsIcon"
  660. },
  661. "8": {
  662. "link-style": {
  663. "type": "map<string,string>",
  664. "value": {
  665. "stroke": "#000000",
  666. "stroke-dasharray": "",
  667. "stroke-opacity": 1,
  668. "stroke-width": 2
  669. }
  670. },
  671. "arrowHead": {
  672. "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)",
  673. "value": "custom"
  674. },
  675. "arrowTail": {
  676. "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)",
  677. "value": "arrow-black"
  678. },
  679. "typename": {
  680. "type": "string",
  681. "value": "TransitionLink"
  682. },
  683. "position": {
  684. "type": "list<double>",
  685. "value": [
  686. 202,
  687. 402
  688. ]
  689. },
  690. "orientation": {
  691. "type": "double",
  692. "value": 0
  693. },
  694. "scale": {
  695. "type": "list<double>",
  696. "value": [
  697. 1,
  698. 1
  699. ]
  700. },
  701. "mapper": {
  702. "type": "code",
  703. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  704. },
  705. "parser": {
  706. "type": "code",
  707. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  708. },
  709. "$contents": {
  710. "type": "map<string,*>",
  711. "value": {
  712. "nodes": {
  713. "13": {
  714. "textContent": {
  715. "type": "string",
  716. "value": "T..."
  717. },
  718. "style": {
  719. "type": "map<string,string>",
  720. "value": {
  721. "stroke": "#000000",
  722. "stroke-dasharray": "",
  723. "fill": "#ffffff",
  724. "fill-opacity": 0.75,
  725. "font-size": "16px",
  726. "arrow-start": "none",
  727. "arrow-end": "none"
  728. }
  729. },
  730. "mapper": {
  731. "type": "code",
  732. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  733. },
  734. "parser": {
  735. "type": "code",
  736. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  737. },
  738. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  739. "position": {
  740. "type": "list<double>",
  741. "value": [
  742. "0;-32.52152886588985,0%",
  743. "0;-21.5,0%"
  744. ]
  745. },
  746. "orientation": {
  747. "type": "double",
  748. "value": "0;0"
  749. },
  750. "scale": {
  751. "type": "list<double>",
  752. "value": [
  753. 1,
  754. 1
  755. ]
  756. },
  757. "$linkDecoratorInfo": {
  758. "type": "map<string,double>",
  759. "value": {
  760. "xratio": 0.2147239263803681,
  761. "yoffset": -21.5
  762. }
  763. }
  764. },
  765. "267": {
  766. "segments": {
  767. "type": "string",
  768. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  769. },
  770. "style": {
  771. "type": "map<string,string>",
  772. "value": {
  773. "stroke": "#000000",
  774. "fill": "#000000",
  775. "opacity": 1,
  776. "stroke-width": 1
  777. }
  778. },
  779. "mapper": {
  780. "type": "code",
  781. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  782. },
  783. "parser": {
  784. "type": "code",
  785. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  786. },
  787. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  788. "position": {
  789. "type": "list<double>",
  790. "value": [
  791. "0;56.999736995998774,100%",
  792. "0;-4,0%"
  793. ]
  794. },
  795. "orientation": {
  796. "type": "double",
  797. "value": "0;0"
  798. },
  799. "scale": {
  800. "type": "list<double>",
  801. "value": [
  802. 1,
  803. 1
  804. ]
  805. },
  806. "arrow": "arrowTail",
  807. "arrowType": "arrow-black",
  808. "$linkDecoratorInfo": {
  809. "type": "map<string,double>",
  810. "value": {
  811. "xratio": 1,
  812. "yoffset": -4
  813. }
  814. }
  815. },
  816. "268": {
  817. "segments": {
  818. "type": "string",
  819. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  820. },
  821. "style": {
  822. "type": "map<string,string>",
  823. "value": {
  824. "stroke": "#000000",
  825. "fill": "#000000",
  826. "opacity": 0,
  827. "stroke-width": 1
  828. }
  829. },
  830. "mapper": {
  831. "type": "code",
  832. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  833. },
  834. "parser": {
  835. "type": "code",
  836. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  837. },
  838. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  839. "position": {
  840. "type": "list<double>",
  841. "value": [
  842. "0;56.999736995998774,100%",
  843. "0;-10,0%"
  844. ]
  845. },
  846. "orientation": {
  847. "type": "double",
  848. "value": "0;0"
  849. },
  850. "scale": {
  851. "type": "list<double>",
  852. "value": [
  853. 1,
  854. 1
  855. ]
  856. },
  857. "arrow": "arrowTail",
  858. "arrowType": "diamond-black-large",
  859. "$linkDecoratorInfo": {
  860. "type": "map<string,double>",
  861. "value": {
  862. "xratio": 1,
  863. "yoffset": -10
  864. }
  865. }
  866. },
  867. "269": {
  868. "r": {
  869. "type": "double",
  870. "value": 10
  871. },
  872. "style": {
  873. "type": "map<string,string>",
  874. "value": {
  875. "stroke": "#000000",
  876. "fill": "#000000",
  877. "opacity": 0,
  878. "stroke-width": 1
  879. }
  880. },
  881. "mapper": {
  882. "type": "code",
  883. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  884. },
  885. "parser": {
  886. "type": "code",
  887. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  888. },
  889. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  890. "position": {
  891. "type": "list<double>",
  892. "value": [
  893. "0;56.999736995998774,100%",
  894. "0;-10,0%"
  895. ]
  896. },
  897. "orientation": {
  898. "type": "double",
  899. "value": "0;0"
  900. },
  901. "scale": {
  902. "type": "list<double>",
  903. "value": [
  904. 1,
  905. 1
  906. ]
  907. },
  908. "arrow": "arrowTail",
  909. "arrowType": "circle-black-large",
  910. "$linkDecoratorInfo": {
  911. "type": "map<string,double>",
  912. "value": {
  913. "xratio": 1,
  914. "yoffset": -10
  915. }
  916. }
  917. },
  918. "270": {
  919. "r": {
  920. "type": "double",
  921. "value": 10
  922. },
  923. "style": {
  924. "type": "map<string,string>",
  925. "value": {
  926. "stroke": "#000000",
  927. "fill": "#ffffff",
  928. "opacity": 0,
  929. "stroke-width": 1
  930. }
  931. },
  932. "mapper": {
  933. "type": "code",
  934. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  935. },
  936. "parser": {
  937. "type": "code",
  938. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  939. },
  940. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  941. "position": {
  942. "type": "list<double>",
  943. "value": [
  944. "0;56.999736995998774,100%",
  945. "0;-10,0%"
  946. ]
  947. },
  948. "orientation": {
  949. "type": "double",
  950. "value": "0;0"
  951. },
  952. "scale": {
  953. "type": "list<double>",
  954. "value": [
  955. 1,
  956. 1
  957. ]
  958. },
  959. "arrow": "arrowTail",
  960. "arrowType": "circle-white-large",
  961. "$linkDecoratorInfo": {
  962. "type": "map<string,double>",
  963. "value": {
  964. "xratio": 1,
  965. "yoffset": -10
  966. }
  967. }
  968. },
  969. "271": {
  970. "r": {
  971. "type": "double",
  972. "value": 5
  973. },
  974. "style": {
  975. "type": "map<string,string>",
  976. "value": {
  977. "stroke": "#000000",
  978. "fill": "#000000",
  979. "opacity": 0,
  980. "stroke-width": 1
  981. }
  982. },
  983. "mapper": {
  984. "type": "code",
  985. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  986. },
  987. "parser": {
  988. "type": "code",
  989. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  990. },
  991. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  992. "position": {
  993. "type": "list<double>",
  994. "value": [
  995. "0;56.999736995998774,100%",
  996. "0;-5,0%"
  997. ]
  998. },
  999. "orientation": {
  1000. "type": "double",
  1001. "value": "0;0"
  1002. },
  1003. "scale": {
  1004. "type": "list<double>",
  1005. "value": [
  1006. 1,
  1007. 1
  1008. ]
  1009. },
  1010. "arrow": "arrowTail",
  1011. "arrowType": "circle-black",
  1012. "$linkDecoratorInfo": {
  1013. "type": "map<string,double>",
  1014. "value": {
  1015. "xratio": 1,
  1016. "yoffset": -5
  1017. }
  1018. }
  1019. },
  1020. "272": {
  1021. "segments": {
  1022. "type": "string",
  1023. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1024. },
  1025. "style": {
  1026. "type": "map<string,string>",
  1027. "value": {
  1028. "stroke": "#000000",
  1029. "fill": "#000000",
  1030. "opacity": 0,
  1031. "stroke-width": 1
  1032. }
  1033. },
  1034. "mapper": {
  1035. "type": "code",
  1036. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1037. },
  1038. "parser": {
  1039. "type": "code",
  1040. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1041. },
  1042. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1043. "position": {
  1044. "type": "list<double>",
  1045. "value": [
  1046. "0;56.999736995998774,100%",
  1047. "0;-5,0%"
  1048. ]
  1049. },
  1050. "orientation": {
  1051. "type": "double",
  1052. "value": "0;0"
  1053. },
  1054. "scale": {
  1055. "type": "list<double>",
  1056. "value": [
  1057. 1,
  1058. 1
  1059. ]
  1060. },
  1061. "arrow": "arrowTail",
  1062. "arrowType": "diamond-black",
  1063. "$linkDecoratorInfo": {
  1064. "type": "map<string,double>",
  1065. "value": {
  1066. "xratio": 1,
  1067. "yoffset": -5
  1068. }
  1069. }
  1070. },
  1071. "273": {
  1072. "segments": {
  1073. "type": "string",
  1074. "value": "m0,0 l20,10 l-20,10 z"
  1075. },
  1076. "style": {
  1077. "type": "map<string,string>",
  1078. "value": {
  1079. "stroke": "#000000",
  1080. "fill": "#000000",
  1081. "opacity": 0,
  1082. "stroke-width": 1
  1083. }
  1084. },
  1085. "mapper": {
  1086. "type": "code",
  1087. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1088. },
  1089. "parser": {
  1090. "type": "code",
  1091. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1092. },
  1093. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1094. "position": {
  1095. "type": "list<double>",
  1096. "value": [
  1097. "0;56.999736995998774,100%",
  1098. "0;-10,0%"
  1099. ]
  1100. },
  1101. "orientation": {
  1102. "type": "double",
  1103. "value": "0;0"
  1104. },
  1105. "scale": {
  1106. "type": "list<double>",
  1107. "value": [
  1108. 1,
  1109. 1
  1110. ]
  1111. },
  1112. "arrow": "arrowTail",
  1113. "arrowType": "triangle-black-large",
  1114. "$linkDecoratorInfo": {
  1115. "type": "map<string,double>",
  1116. "value": {
  1117. "xratio": 1,
  1118. "yoffset": -10
  1119. }
  1120. }
  1121. },
  1122. "274": {
  1123. "segments": {
  1124. "type": "string",
  1125. "value": "m0,0 l10,4 l-10,4 z"
  1126. },
  1127. "style": {
  1128. "type": "map<string,string>",
  1129. "value": {
  1130. "stroke": "#000000",
  1131. "fill": "#000000",
  1132. "opacity": 0,
  1133. "stroke-width": 1
  1134. }
  1135. },
  1136. "mapper": {
  1137. "type": "code",
  1138. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1139. },
  1140. "parser": {
  1141. "type": "code",
  1142. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1143. },
  1144. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1145. "position": {
  1146. "type": "list<double>",
  1147. "value": [
  1148. "0;56.999736995998774,100%",
  1149. "0;-4,0%"
  1150. ]
  1151. },
  1152. "orientation": {
  1153. "type": "double",
  1154. "value": "0;0"
  1155. },
  1156. "scale": {
  1157. "type": "list<double>",
  1158. "value": [
  1159. 1,
  1160. 1
  1161. ]
  1162. },
  1163. "arrow": "arrowTail",
  1164. "arrowType": "triangle-black",
  1165. "$linkDecoratorInfo": {
  1166. "type": "map<string,double>",
  1167. "value": {
  1168. "xratio": 1,
  1169. "yoffset": -4
  1170. }
  1171. }
  1172. },
  1173. "275": {
  1174. "segments": {
  1175. "type": "string",
  1176. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1177. },
  1178. "style": {
  1179. "type": "map<string,string>",
  1180. "value": {
  1181. "stroke": "#000000",
  1182. "fill": "#000000",
  1183. "opacity": 0,
  1184. "stroke-width": 1
  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. "0;56.999736995998774,100%",
  1200. "0;-8,0%"
  1201. ]
  1202. },
  1203. "orientation": {
  1204. "type": "double",
  1205. "value": "0;0"
  1206. },
  1207. "scale": {
  1208. "type": "list<double>",
  1209. "value": [
  1210. 1,
  1211. 1
  1212. ]
  1213. },
  1214. "arrow": "arrowTail",
  1215. "arrowType": "arrow-black-large",
  1216. "$linkDecoratorInfo": {
  1217. "type": "map<string,double>",
  1218. "value": {
  1219. "xratio": 1,
  1220. "yoffset": -8
  1221. }
  1222. }
  1223. },
  1224. "276": {
  1225. "segments": {
  1226. "type": "string",
  1227. "value": "m0,0 l20,10 l-20,10 z"
  1228. },
  1229. "style": {
  1230. "type": "map<string,string>",
  1231. "value": {
  1232. "stroke": "#000000",
  1233. "fill": "#ffffff",
  1234. "opacity": 0,
  1235. "stroke-width": 1
  1236. }
  1237. },
  1238. "mapper": {
  1239. "type": "code",
  1240. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1241. },
  1242. "parser": {
  1243. "type": "code",
  1244. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1245. },
  1246. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1247. "position": {
  1248. "type": "list<double>",
  1249. "value": [
  1250. "0;56.999736995998774,100%",
  1251. "0;-10,0%"
  1252. ]
  1253. },
  1254. "orientation": {
  1255. "type": "double",
  1256. "value": "0;0"
  1257. },
  1258. "scale": {
  1259. "type": "list<double>",
  1260. "value": [
  1261. 1,
  1262. 1
  1263. ]
  1264. },
  1265. "arrow": "arrowTail",
  1266. "arrowType": "triangle-white-large",
  1267. "$linkDecoratorInfo": {
  1268. "type": "map<string,double>",
  1269. "value": {
  1270. "xratio": 1,
  1271. "yoffset": -10
  1272. }
  1273. }
  1274. },
  1275. "277": {
  1276. "segments": {
  1277. "type": "string",
  1278. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1279. },
  1280. "style": {
  1281. "type": "map<string,string>",
  1282. "value": {
  1283. "stroke": "#000000",
  1284. "fill": "#ffffff",
  1285. "opacity": 0,
  1286. "stroke-width": 1
  1287. }
  1288. },
  1289. "mapper": {
  1290. "type": "code",
  1291. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1292. },
  1293. "parser": {
  1294. "type": "code",
  1295. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1296. },
  1297. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1298. "position": {
  1299. "type": "list<double>",
  1300. "value": [
  1301. "0;56.999736995998774,100%",
  1302. "0;-5,0%"
  1303. ]
  1304. },
  1305. "orientation": {
  1306. "type": "double",
  1307. "value": "0;0"
  1308. },
  1309. "scale": {
  1310. "type": "list<double>",
  1311. "value": [
  1312. 1,
  1313. 1
  1314. ]
  1315. },
  1316. "arrow": "arrowTail",
  1317. "arrowType": "diamond-white",
  1318. "$linkDecoratorInfo": {
  1319. "type": "map<string,double>",
  1320. "value": {
  1321. "xratio": 1,
  1322. "yoffset": -5
  1323. }
  1324. }
  1325. },
  1326. "278": {
  1327. "segments": {
  1328. "type": "string",
  1329. "value": "m0,0 l20,8 l-20,8"
  1330. },
  1331. "style": {
  1332. "type": "map<string,string>",
  1333. "value": {
  1334. "stroke": "#000000",
  1335. "fill": "#000000",
  1336. "fill-opacity": 0,
  1337. "stroke-width": 1,
  1338. "opacity": 0
  1339. }
  1340. },
  1341. "mapper": {
  1342. "type": "code",
  1343. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1344. },
  1345. "parser": {
  1346. "type": "code",
  1347. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1348. },
  1349. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1350. "position": {
  1351. "type": "list<double>",
  1352. "value": [
  1353. "0;56.999736995998774,100%",
  1354. "0;-8,0%"
  1355. ]
  1356. },
  1357. "orientation": {
  1358. "type": "double",
  1359. "value": "0;0"
  1360. },
  1361. "scale": {
  1362. "type": "list<double>",
  1363. "value": [
  1364. 1,
  1365. 1
  1366. ]
  1367. },
  1368. "arrow": "arrowTail",
  1369. "arrowType": "arrow-empty-large",
  1370. "$linkDecoratorInfo": {
  1371. "type": "map<string,double>",
  1372. "value": {
  1373. "xratio": 1,
  1374. "yoffset": -8
  1375. }
  1376. }
  1377. },
  1378. "279": {
  1379. "r": {
  1380. "type": "double",
  1381. "value": 5
  1382. },
  1383. "style": {
  1384. "type": "map<string,string>",
  1385. "value": {
  1386. "stroke": "#000000",
  1387. "fill": "#ffffff",
  1388. "opacity": 0,
  1389. "stroke-width": 1
  1390. }
  1391. },
  1392. "mapper": {
  1393. "type": "code",
  1394. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1395. },
  1396. "parser": {
  1397. "type": "code",
  1398. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1399. },
  1400. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1401. "position": {
  1402. "type": "list<double>",
  1403. "value": [
  1404. "0;56.999736995998774,100%",
  1405. "0;-5,0%"
  1406. ]
  1407. },
  1408. "orientation": {
  1409. "type": "double",
  1410. "value": "0;0"
  1411. },
  1412. "scale": {
  1413. "type": "list<double>",
  1414. "value": [
  1415. 1,
  1416. 1
  1417. ]
  1418. },
  1419. "arrow": "arrowTail",
  1420. "arrowType": "circle-white",
  1421. "$linkDecoratorInfo": {
  1422. "type": "map<string,double>",
  1423. "value": {
  1424. "xratio": 1,
  1425. "yoffset": -5
  1426. }
  1427. }
  1428. },
  1429. "280": {
  1430. "segments": {
  1431. "type": "string",
  1432. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1433. },
  1434. "style": {
  1435. "type": "map<string,string>",
  1436. "value": {
  1437. "stroke": "#000000",
  1438. "fill": "#ffffff",
  1439. "opacity": 0,
  1440. "stroke-width": 1
  1441. }
  1442. },
  1443. "mapper": {
  1444. "type": "code",
  1445. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1446. },
  1447. "parser": {
  1448. "type": "code",
  1449. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1450. },
  1451. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1452. "position": {
  1453. "type": "list<double>",
  1454. "value": [
  1455. "0;56.999736995998774,100%",
  1456. "0;-10,0%"
  1457. ]
  1458. },
  1459. "orientation": {
  1460. "type": "double",
  1461. "value": "0;0"
  1462. },
  1463. "scale": {
  1464. "type": "list<double>",
  1465. "value": [
  1466. 1,
  1467. 1
  1468. ]
  1469. },
  1470. "arrow": "arrowTail",
  1471. "arrowType": "diamond-white-large",
  1472. "$linkDecoratorInfo": {
  1473. "type": "map<string,double>",
  1474. "value": {
  1475. "xratio": 1,
  1476. "yoffset": -10
  1477. }
  1478. }
  1479. },
  1480. "281": {
  1481. "segments": {
  1482. "type": "string",
  1483. "value": "m0,0 l10,4 l-10,4"
  1484. },
  1485. "style": {
  1486. "type": "map<string,string>",
  1487. "value": {
  1488. "stroke": "#000000",
  1489. "fill": "#000000",
  1490. "fill-opacity": 0,
  1491. "stroke-width": 1,
  1492. "opacity": 0
  1493. }
  1494. },
  1495. "mapper": {
  1496. "type": "code",
  1497. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1498. },
  1499. "parser": {
  1500. "type": "code",
  1501. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1502. },
  1503. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1504. "position": {
  1505. "type": "list<double>",
  1506. "value": [
  1507. "0;56.999736995998774,100%",
  1508. "0;-4,0%"
  1509. ]
  1510. },
  1511. "orientation": {
  1512. "type": "double",
  1513. "value": "0;0"
  1514. },
  1515. "scale": {
  1516. "type": "list<double>",
  1517. "value": [
  1518. 1,
  1519. 1
  1520. ]
  1521. },
  1522. "arrow": "arrowTail",
  1523. "arrowType": "arrow-empty",
  1524. "$linkDecoratorInfo": {
  1525. "type": "map<string,double>",
  1526. "value": {
  1527. "xratio": 1,
  1528. "yoffset": -4
  1529. }
  1530. }
  1531. },
  1532. "282": {
  1533. "segments": {
  1534. "type": "string",
  1535. "value": "m0,0 l10,5 l-10,5 z"
  1536. },
  1537. "style": {
  1538. "type": "map<string,string>",
  1539. "value": {
  1540. "stroke": "#000000",
  1541. "fill": "#ffffff",
  1542. "opacity": 0,
  1543. "stroke-width": 1
  1544. }
  1545. },
  1546. "mapper": {
  1547. "type": "code",
  1548. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1549. },
  1550. "parser": {
  1551. "type": "code",
  1552. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1553. },
  1554. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1555. "position": {
  1556. "type": "list<double>",
  1557. "value": [
  1558. "0;56.999736995998774,100%",
  1559. "0;-5,0%"
  1560. ]
  1561. },
  1562. "orientation": {
  1563. "type": "double",
  1564. "value": "0;0"
  1565. },
  1566. "scale": {
  1567. "type": "list<double>",
  1568. "value": [
  1569. 1,
  1570. 1
  1571. ]
  1572. },
  1573. "arrow": "arrowTail",
  1574. "arrowType": "triangle-white",
  1575. "$linkDecoratorInfo": {
  1576. "type": "map<string,double>",
  1577. "value": {
  1578. "xratio": 1,
  1579. "yoffset": -5
  1580. }
  1581. }
  1582. },
  1583. "283": {
  1584. "segments": {
  1585. "type": "string",
  1586. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1587. },
  1588. "style": {
  1589. "type": "map<string,string>",
  1590. "value": {
  1591. "stroke": "#000000",
  1592. "fill": "#ffffff",
  1593. "opacity": 0,
  1594. "stroke-width": 1
  1595. }
  1596. },
  1597. "mapper": {
  1598. "type": "code",
  1599. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1600. },
  1601. "parser": {
  1602. "type": "code",
  1603. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1604. },
  1605. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1606. "position": {
  1607. "type": "list<double>",
  1608. "value": [
  1609. "0;-57.00000000000003,0%",
  1610. "0;-5,0%"
  1611. ]
  1612. },
  1613. "orientation": {
  1614. "type": "double",
  1615. "value": "0;0"
  1616. },
  1617. "scale": {
  1618. "type": "list<double>",
  1619. "value": [
  1620. 1,
  1621. 1
  1622. ]
  1623. },
  1624. "arrow": "arrowHead",
  1625. "arrowType": "diamond-white",
  1626. "$linkDecoratorInfo": {
  1627. "type": "map<string,double>",
  1628. "value": {
  1629. "xratio": -1,
  1630. "yoffset": -5
  1631. }
  1632. }
  1633. },
  1634. "284": {
  1635. "segments": {
  1636. "type": "string",
  1637. "value": "m0,0 l-10,5 l10,5 z"
  1638. },
  1639. "style": {
  1640. "type": "map<string,string>",
  1641. "value": {
  1642. "stroke": "#000000",
  1643. "fill": "#ffffff",
  1644. "opacity": 0,
  1645. "stroke-width": 1
  1646. }
  1647. },
  1648. "mapper": {
  1649. "type": "code",
  1650. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1651. },
  1652. "parser": {
  1653. "type": "code",
  1654. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1655. },
  1656. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1657. "position": {
  1658. "type": "list<double>",
  1659. "value": [
  1660. "0;-57.00000000000003,0%",
  1661. "0;-5,0%"
  1662. ]
  1663. },
  1664. "orientation": {
  1665. "type": "double",
  1666. "value": "0;0"
  1667. },
  1668. "scale": {
  1669. "type": "list<double>",
  1670. "value": [
  1671. 1,
  1672. 1
  1673. ]
  1674. },
  1675. "arrow": "arrowHead",
  1676. "arrowType": "triangle-white",
  1677. "$linkDecoratorInfo": {
  1678. "type": "map<string,double>",
  1679. "value": {
  1680. "xratio": -1,
  1681. "yoffset": -5
  1682. }
  1683. }
  1684. },
  1685. "285": {
  1686. "segments": {
  1687. "type": "string",
  1688. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1689. },
  1690. "style": {
  1691. "type": "map<string,string>",
  1692. "value": {
  1693. "stroke": "#000000",
  1694. "fill": "#000000",
  1695. "opacity": 0,
  1696. "stroke-width": 1
  1697. }
  1698. },
  1699. "mapper": {
  1700. "type": "code",
  1701. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1702. },
  1703. "parser": {
  1704. "type": "code",
  1705. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1706. },
  1707. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1708. "position": {
  1709. "type": "list<double>",
  1710. "value": [
  1711. "0;-57.00000000000003,0%",
  1712. "0;-5,0%"
  1713. ]
  1714. },
  1715. "orientation": {
  1716. "type": "double",
  1717. "value": "0;0"
  1718. },
  1719. "scale": {
  1720. "type": "list<double>",
  1721. "value": [
  1722. 1,
  1723. 1
  1724. ]
  1725. },
  1726. "arrow": "arrowHead",
  1727. "arrowType": "diamond-black",
  1728. "$linkDecoratorInfo": {
  1729. "type": "map<string,double>",
  1730. "value": {
  1731. "xratio": -1,
  1732. "yoffset": -5
  1733. }
  1734. }
  1735. },
  1736. "286": {
  1737. "r": {
  1738. "type": "double",
  1739. "value": 10
  1740. },
  1741. "style": {
  1742. "type": "map<string,string>",
  1743. "value": {
  1744. "stroke": "#000000",
  1745. "fill": "#000000",
  1746. "opacity": 0,
  1747. "stroke-width": 1
  1748. }
  1749. },
  1750. "mapper": {
  1751. "type": "code",
  1752. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1753. },
  1754. "parser": {
  1755. "type": "code",
  1756. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1757. },
  1758. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1759. "position": {
  1760. "type": "list<double>",
  1761. "value": [
  1762. "0;-57.00000000000003,0%",
  1763. "0;-10,0%"
  1764. ]
  1765. },
  1766. "orientation": {
  1767. "type": "double",
  1768. "value": "0;0"
  1769. },
  1770. "scale": {
  1771. "type": "list<double>",
  1772. "value": [
  1773. 1,
  1774. 1
  1775. ]
  1776. },
  1777. "arrow": "arrowHead",
  1778. "arrowType": "circle-black-large",
  1779. "$linkDecoratorInfo": {
  1780. "type": "map<string,double>",
  1781. "value": {
  1782. "xratio": -1,
  1783. "yoffset": -10
  1784. }
  1785. }
  1786. },
  1787. "287": {
  1788. "segments": {
  1789. "type": "string",
  1790. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1791. },
  1792. "style": {
  1793. "type": "map<string,string>",
  1794. "value": {
  1795. "stroke": "#000000",
  1796. "fill": "#000000",
  1797. "opacity": 0,
  1798. "stroke-width": 1
  1799. }
  1800. },
  1801. "mapper": {
  1802. "type": "code",
  1803. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1804. },
  1805. "parser": {
  1806. "type": "code",
  1807. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1808. },
  1809. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1810. "position": {
  1811. "type": "list<double>",
  1812. "value": [
  1813. "0;-57.00000000000003,0%",
  1814. "0;-8,0%"
  1815. ]
  1816. },
  1817. "orientation": {
  1818. "type": "double",
  1819. "value": "0;0"
  1820. },
  1821. "scale": {
  1822. "type": "list<double>",
  1823. "value": [
  1824. 1,
  1825. 1
  1826. ]
  1827. },
  1828. "arrow": "arrowHead",
  1829. "arrowType": "arrow-black-large",
  1830. "$linkDecoratorInfo": {
  1831. "type": "map<string,double>",
  1832. "value": {
  1833. "xratio": -1,
  1834. "yoffset": -8
  1835. }
  1836. }
  1837. },
  1838. "288": {
  1839. "segments": {
  1840. "type": "string",
  1841. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1842. },
  1843. "style": {
  1844. "type": "map<string,string>",
  1845. "value": {
  1846. "stroke": "#000000",
  1847. "fill": "#000000",
  1848. "opacity": 0,
  1849. "stroke-width": 1
  1850. }
  1851. },
  1852. "mapper": {
  1853. "type": "code",
  1854. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1855. },
  1856. "parser": {
  1857. "type": "code",
  1858. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1859. },
  1860. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1861. "position": {
  1862. "type": "list<double>",
  1863. "value": [
  1864. "0;-57.00000000000003,0%",
  1865. "0;-4,0%"
  1866. ]
  1867. },
  1868. "orientation": {
  1869. "type": "double",
  1870. "value": "0;0"
  1871. },
  1872. "scale": {
  1873. "type": "list<double>",
  1874. "value": [
  1875. 1,
  1876. 1
  1877. ]
  1878. },
  1879. "arrow": "arrowHead",
  1880. "arrowType": "arrow-black",
  1881. "$linkDecoratorInfo": {
  1882. "type": "map<string,double>",
  1883. "value": {
  1884. "xratio": -1,
  1885. "yoffset": -4
  1886. }
  1887. }
  1888. },
  1889. "289": {
  1890. "segments": {
  1891. "type": "string",
  1892. "value": "m0,0 l-20,10 l20,10 z"
  1893. },
  1894. "style": {
  1895. "type": "map<string,string>",
  1896. "value": {
  1897. "stroke": "#000000",
  1898. "fill": "#ffffff",
  1899. "opacity": 0,
  1900. "stroke-width": 1
  1901. }
  1902. },
  1903. "mapper": {
  1904. "type": "code",
  1905. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1906. },
  1907. "parser": {
  1908. "type": "code",
  1909. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1910. },
  1911. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1912. "position": {
  1913. "type": "list<double>",
  1914. "value": [
  1915. "0;-57.00000000000003,0%",
  1916. "0;-10,0%"
  1917. ]
  1918. },
  1919. "orientation": {
  1920. "type": "double",
  1921. "value": "0;0"
  1922. },
  1923. "scale": {
  1924. "type": "list<double>",
  1925. "value": [
  1926. 1,
  1927. 1
  1928. ]
  1929. },
  1930. "arrow": "arrowHead",
  1931. "arrowType": "triangle-white-large",
  1932. "$linkDecoratorInfo": {
  1933. "type": "map<string,double>",
  1934. "value": {
  1935. "xratio": -1,
  1936. "yoffset": -10
  1937. }
  1938. }
  1939. },
  1940. "290": {
  1941. "segments": {
  1942. "type": "string",
  1943. "value": "m0,0 l-20,10 l20,10 z"
  1944. },
  1945. "style": {
  1946. "type": "map<string,string>",
  1947. "value": {
  1948. "stroke": "#000000",
  1949. "fill": "#000000",
  1950. "opacity": 0,
  1951. "stroke-width": 1
  1952. }
  1953. },
  1954. "mapper": {
  1955. "type": "code",
  1956. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1957. },
  1958. "parser": {
  1959. "type": "code",
  1960. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1961. },
  1962. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1963. "position": {
  1964. "type": "list<double>",
  1965. "value": [
  1966. "0;-57.00000000000003,0%",
  1967. "0;-10,0%"
  1968. ]
  1969. },
  1970. "orientation": {
  1971. "type": "double",
  1972. "value": "0;0"
  1973. },
  1974. "scale": {
  1975. "type": "list<double>",
  1976. "value": [
  1977. 1,
  1978. 1
  1979. ]
  1980. },
  1981. "arrow": "arrowHead",
  1982. "arrowType": "triangle-black-large",
  1983. "$linkDecoratorInfo": {
  1984. "type": "map<string,double>",
  1985. "value": {
  1986. "xratio": -1,
  1987. "yoffset": -10
  1988. }
  1989. }
  1990. },
  1991. "291": {
  1992. "r": {
  1993. "type": "double",
  1994. "value": 5
  1995. },
  1996. "style": {
  1997. "type": "map<string,string>",
  1998. "value": {
  1999. "stroke": "#000000",
  2000. "fill": "#000000",
  2001. "opacity": 0,
  2002. "stroke-width": 1
  2003. }
  2004. },
  2005. "mapper": {
  2006. "type": "code",
  2007. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2008. },
  2009. "parser": {
  2010. "type": "code",
  2011. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2012. },
  2013. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2014. "position": {
  2015. "type": "list<double>",
  2016. "value": [
  2017. "0;-57.00000000000003,0%",
  2018. "0;-5,0%"
  2019. ]
  2020. },
  2021. "orientation": {
  2022. "type": "double",
  2023. "value": "0;0"
  2024. },
  2025. "scale": {
  2026. "type": "list<double>",
  2027. "value": [
  2028. 1,
  2029. 1
  2030. ]
  2031. },
  2032. "arrow": "arrowHead",
  2033. "arrowType": "circle-black",
  2034. "$linkDecoratorInfo": {
  2035. "type": "map<string,double>",
  2036. "value": {
  2037. "xratio": -1,
  2038. "yoffset": -5
  2039. }
  2040. }
  2041. },
  2042. "292": {
  2043. "r": {
  2044. "type": "double",
  2045. "value": 5
  2046. },
  2047. "style": {
  2048. "type": "map<string,string>",
  2049. "value": {
  2050. "stroke": "#000000",
  2051. "fill": "#ffffff",
  2052. "opacity": 0,
  2053. "stroke-width": 1
  2054. }
  2055. },
  2056. "mapper": {
  2057. "type": "code",
  2058. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2059. },
  2060. "parser": {
  2061. "type": "code",
  2062. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2063. },
  2064. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2065. "position": {
  2066. "type": "list<double>",
  2067. "value": [
  2068. "0;-57.00000000000003,0%",
  2069. "0;-5,0%"
  2070. ]
  2071. },
  2072. "orientation": {
  2073. "type": "double",
  2074. "value": "0;0"
  2075. },
  2076. "scale": {
  2077. "type": "list<double>",
  2078. "value": [
  2079. 1,
  2080. 1
  2081. ]
  2082. },
  2083. "arrow": "arrowHead",
  2084. "arrowType": "circle-white",
  2085. "$linkDecoratorInfo": {
  2086. "type": "map<string,double>",
  2087. "value": {
  2088. "xratio": -1,
  2089. "yoffset": -5
  2090. }
  2091. }
  2092. },
  2093. "293": {
  2094. "r": {
  2095. "type": "double",
  2096. "value": 10
  2097. },
  2098. "style": {
  2099. "type": "map<string,string>",
  2100. "value": {
  2101. "stroke": "#000000",
  2102. "fill": "#ffffff",
  2103. "opacity": 0,
  2104. "stroke-width": 1
  2105. }
  2106. },
  2107. "mapper": {
  2108. "type": "code",
  2109. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2110. },
  2111. "parser": {
  2112. "type": "code",
  2113. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2114. },
  2115. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2116. "position": {
  2117. "type": "list<double>",
  2118. "value": [
  2119. "0;-57.00000000000003,0%",
  2120. "0;-10,0%"
  2121. ]
  2122. },
  2123. "orientation": {
  2124. "type": "double",
  2125. "value": "0;0"
  2126. },
  2127. "scale": {
  2128. "type": "list<double>",
  2129. "value": [
  2130. 1,
  2131. 1
  2132. ]
  2133. },
  2134. "arrow": "arrowHead",
  2135. "arrowType": "circle-white-large",
  2136. "$linkDecoratorInfo": {
  2137. "type": "map<string,double>",
  2138. "value": {
  2139. "xratio": -1,
  2140. "yoffset": -10
  2141. }
  2142. }
  2143. },
  2144. "294": {
  2145. "segments": {
  2146. "type": "string",
  2147. "value": "m0,0 l-20,8 l20,8"
  2148. },
  2149. "style": {
  2150. "type": "map<string,string>",
  2151. "value": {
  2152. "stroke": "#000000",
  2153. "fill": "#000000",
  2154. "fill-opacity": 0,
  2155. "stroke-width": 1,
  2156. "opacity": 0
  2157. }
  2158. },
  2159. "mapper": {
  2160. "type": "code",
  2161. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2162. },
  2163. "parser": {
  2164. "type": "code",
  2165. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2166. },
  2167. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2168. "position": {
  2169. "type": "list<double>",
  2170. "value": [
  2171. "0;-57.00000000000003,0%",
  2172. "0;-8,0%"
  2173. ]
  2174. },
  2175. "orientation": {
  2176. "type": "double",
  2177. "value": "0;0"
  2178. },
  2179. "scale": {
  2180. "type": "list<double>",
  2181. "value": [
  2182. 1,
  2183. 1
  2184. ]
  2185. },
  2186. "arrow": "arrowHead",
  2187. "arrowType": "arrow-empty-large",
  2188. "$linkDecoratorInfo": {
  2189. "type": "map<string,double>",
  2190. "value": {
  2191. "xratio": -1,
  2192. "yoffset": -8
  2193. }
  2194. }
  2195. },
  2196. "295": {
  2197. "segments": {
  2198. "type": "string",
  2199. "value": "m0,0 l-10,4 l10,4"
  2200. },
  2201. "style": {
  2202. "type": "map<string,string>",
  2203. "value": {
  2204. "stroke": "#000000",
  2205. "fill": "#000000",
  2206. "fill-opacity": 0,
  2207. "stroke-width": 1,
  2208. "opacity": 0
  2209. }
  2210. },
  2211. "mapper": {
  2212. "type": "code",
  2213. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2214. },
  2215. "parser": {
  2216. "type": "code",
  2217. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2218. },
  2219. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2220. "position": {
  2221. "type": "list<double>",
  2222. "value": [
  2223. "0;-57.00000000000003,0%",
  2224. "0;-4,0%"
  2225. ]
  2226. },
  2227. "orientation": {
  2228. "type": "double",
  2229. "value": "0;0"
  2230. },
  2231. "scale": {
  2232. "type": "list<double>",
  2233. "value": [
  2234. 1,
  2235. 1
  2236. ]
  2237. },
  2238. "arrow": "arrowHead",
  2239. "arrowType": "arrow-empty",
  2240. "$linkDecoratorInfo": {
  2241. "type": "map<string,double>",
  2242. "value": {
  2243. "xratio": -1,
  2244. "yoffset": -4
  2245. }
  2246. }
  2247. },
  2248. "296": {
  2249. "segments": {
  2250. "type": "string",
  2251. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2252. },
  2253. "style": {
  2254. "type": "map<string,string>",
  2255. "value": {
  2256. "stroke": "#000000",
  2257. "fill": "#000000",
  2258. "opacity": 0,
  2259. "stroke-width": 1
  2260. }
  2261. },
  2262. "mapper": {
  2263. "type": "code",
  2264. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2265. },
  2266. "parser": {
  2267. "type": "code",
  2268. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2269. },
  2270. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2271. "position": {
  2272. "type": "list<double>",
  2273. "value": [
  2274. "0;-57.00000000000003,0%",
  2275. "0;-10,0%"
  2276. ]
  2277. },
  2278. "orientation": {
  2279. "type": "double",
  2280. "value": "0;0"
  2281. },
  2282. "scale": {
  2283. "type": "list<double>",
  2284. "value": [
  2285. 1,
  2286. 1
  2287. ]
  2288. },
  2289. "arrow": "arrowHead",
  2290. "arrowType": "diamond-black-large",
  2291. "$linkDecoratorInfo": {
  2292. "type": "map<string,double>",
  2293. "value": {
  2294. "xratio": -1,
  2295. "yoffset": -10
  2296. }
  2297. }
  2298. },
  2299. "297": {
  2300. "segments": {
  2301. "type": "string",
  2302. "value": "m0,0 l-10,4 l10,4 z"
  2303. },
  2304. "style": {
  2305. "type": "map<string,string>",
  2306. "value": {
  2307. "stroke": "#000000",
  2308. "fill": "#000000",
  2309. "opacity": 0,
  2310. "stroke-width": 1
  2311. }
  2312. },
  2313. "mapper": {
  2314. "type": "code",
  2315. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2316. },
  2317. "parser": {
  2318. "type": "code",
  2319. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2320. },
  2321. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2322. "position": {
  2323. "type": "list<double>",
  2324. "value": [
  2325. "0;-57.00000000000003,0%",
  2326. "0;-4,0%"
  2327. ]
  2328. },
  2329. "orientation": {
  2330. "type": "double",
  2331. "value": "0;0"
  2332. },
  2333. "scale": {
  2334. "type": "list<double>",
  2335. "value": [
  2336. 1,
  2337. 1
  2338. ]
  2339. },
  2340. "arrow": "arrowHead",
  2341. "arrowType": "triangle-black",
  2342. "$linkDecoratorInfo": {
  2343. "type": "map<string,double>",
  2344. "value": {
  2345. "xratio": -1,
  2346. "yoffset": -4
  2347. }
  2348. }
  2349. },
  2350. "298": {
  2351. "segments": {
  2352. "type": "string",
  2353. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2354. },
  2355. "style": {
  2356. "type": "map<string,string>",
  2357. "value": {
  2358. "stroke": "#000000",
  2359. "fill": "#ffffff",
  2360. "opacity": 0,
  2361. "stroke-width": 1
  2362. }
  2363. },
  2364. "mapper": {
  2365. "type": "code",
  2366. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2367. },
  2368. "parser": {
  2369. "type": "code",
  2370. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2371. },
  2372. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2373. "position": {
  2374. "type": "list<double>",
  2375. "value": [
  2376. "0;-57.00000000000003,0%",
  2377. "0;-10,0%"
  2378. ]
  2379. },
  2380. "orientation": {
  2381. "type": "double",
  2382. "value": "0;0"
  2383. },
  2384. "scale": {
  2385. "type": "list<double>",
  2386. "value": [
  2387. 1,
  2388. 1
  2389. ]
  2390. },
  2391. "arrow": "arrowHead",
  2392. "arrowType": "diamond-white-large",
  2393. "$linkDecoratorInfo": {
  2394. "type": "map<string,double>",
  2395. "value": {
  2396. "xratio": -1,
  2397. "yoffset": -10
  2398. }
  2399. }
  2400. },
  2401. "__pLabelText": {
  2402. "position": {
  2403. "type": "list<double>",
  2404. "value": [
  2405. 0,
  2406. 0
  2407. ]
  2408. },
  2409. "orientation": {
  2410. "type": "double",
  2411. "value": 0
  2412. },
  2413. "scale": {
  2414. "type": "list<double>",
  2415. "value": [
  2416. 1,
  2417. 1
  2418. ]
  2419. },
  2420. "textContent": {
  2421. "type": "string",
  2422. "value": "2"
  2423. },
  2424. "style": {
  2425. "type": "map<string,string>",
  2426. "value": {
  2427. "stroke": "#6000ff",
  2428. "fill": "#6000ff",
  2429. "font-size": "15px",
  2430. "opacity": "1"
  2431. }
  2432. },
  2433. "mapper": {
  2434. "type": "code",
  2435. "value": "({'textContent':getAttr('__pLabel')})"
  2436. },
  2437. "parser": {
  2438. "type": "code",
  2439. "value": "({'__pLabel':getAttr('textContent')})"
  2440. },
  2441. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2442. }
  2443. },
  2444. "edges": []
  2445. }
  2446. },
  2447. "$asuri": {
  2448. "type": "string",
  2449. "value": "/Formalisms/FSA/FSA.pattern/__pTransition/8.instance"
  2450. },
  2451. "$segments": {
  2452. "type": "map<string,list<string>>",
  2453. "value": {
  2454. "/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/5.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pTransitionLink/8.instance": "M144.99999999999997,402L201.99999999999997,402",
  2455. "/Formalisms/FSA/FSA.defaultIcons.pattern/__pTransitionLink/8.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/6.instance": "M202.07619467009474,402L258.9997369959988,402"
  2456. }
  2457. },
  2458. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pTransitionLink"
  2459. },
  2460. "9": {
  2461. "link-style": {
  2462. "type": "map<string,string>",
  2463. "value": {
  2464. "stroke": "#00ff00",
  2465. "stroke-dasharray": "",
  2466. "stroke-opacity": 0.2,
  2467. "stroke-width": 1,
  2468. "arrow-start": "none",
  2469. "arrow-end": "classic-wide-long"
  2470. }
  2471. },
  2472. "typename": {
  2473. "type": "string",
  2474. "value": "PatternContentsLink"
  2475. },
  2476. "position": {
  2477. "type": "list<double>",
  2478. "value": [
  2479. 65.0541666511869,
  2480. 303.1402777376893
  2481. ]
  2482. },
  2483. "orientation": {
  2484. "type": "double",
  2485. "value": 0
  2486. },
  2487. "scale": {
  2488. "type": "list<double>",
  2489. "value": [
  2490. 1,
  2491. 1
  2492. ]
  2493. },
  2494. "mapper": {
  2495. "type": "code",
  2496. "value": ""
  2497. },
  2498. "parser": {
  2499. "type": "code",
  2500. "value": ""
  2501. },
  2502. "$contents": {
  2503. "type": "map<string,*>",
  2504. "value": {
  2505. "nodes": {},
  2506. "edges": []
  2507. }
  2508. },
  2509. "$asuri": {
  2510. "type": "string",
  2511. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/9.instance"
  2512. },
  2513. "$segments": {
  2514. "type": "map<string,list<string>>",
  2515. "value": {
  2516. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/4.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/9.instance": "M25.99999999999997,202L65.05416665118688,303.1402777376893",
  2517. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/9.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/5.instance": "M65.05406634263082,303.14001796424895L103.99979950655388,403.9994807733831"
  2518. }
  2519. },
  2520. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2521. },
  2522. "10": {
  2523. "link-style": {
  2524. "type": "map<string,string>",
  2525. "value": {
  2526. "stroke": "#00ff00",
  2527. "stroke-dasharray": "",
  2528. "stroke-opacity": 0.2,
  2529. "stroke-width": 1,
  2530. "arrow-start": "none",
  2531. "arrow-end": "classic-wide-long"
  2532. }
  2533. },
  2534. "typename": {
  2535. "type": "string",
  2536. "value": "PatternContentsLink"
  2537. },
  2538. "position": {
  2539. "type": "list<double>",
  2540. "value": [
  2541. 163.5,
  2542. 304
  2543. ]
  2544. },
  2545. "orientation": {
  2546. "type": "double",
  2547. "value": 0
  2548. },
  2549. "scale": {
  2550. "type": "list<double>",
  2551. "value": [
  2552. 1,
  2553. 1
  2554. ]
  2555. },
  2556. "mapper": {
  2557. "type": "code",
  2558. "value": ""
  2559. },
  2560. "parser": {
  2561. "type": "code",
  2562. "value": ""
  2563. },
  2564. "$contents": {
  2565. "type": "map<string,*>",
  2566. "value": {
  2567. "nodes": {},
  2568. "edges": []
  2569. }
  2570. },
  2571. "$asuri": {
  2572. "type": "string",
  2573. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/10.instance"
  2574. },
  2575. "$segments": {
  2576. "type": "map<string,list<string>>",
  2577. "value": {
  2578. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/4.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/10.instance": "M25.99999999999997,202L163.49999999999997,304",
  2579. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/10.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/6.instance": "M163.5600954122728,304.04457986946795L300.99936556052336,405.999529361261"
  2580. }
  2581. },
  2582. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2583. },
  2584. "11": {
  2585. "link-style": {
  2586. "type": "map<string,string>",
  2587. "value": {
  2588. "stroke": "#00ff00",
  2589. "stroke-dasharray": "",
  2590. "stroke-opacity": 0.2,
  2591. "stroke-width": 1,
  2592. "arrow-start": "none",
  2593. "arrow-end": "classic-wide-long"
  2594. }
  2595. },
  2596. "typename": {
  2597. "type": "string",
  2598. "value": "PatternContentsLink"
  2599. },
  2600. "position": {
  2601. "type": "list<double>",
  2602. "value": [
  2603. 108,
  2604. 346.5
  2605. ]
  2606. },
  2607. "orientation": {
  2608. "type": "double",
  2609. "value": 0
  2610. },
  2611. "scale": {
  2612. "type": "list<double>",
  2613. "value": [
  2614. 1,
  2615. 1
  2616. ]
  2617. },
  2618. "mapper": {
  2619. "type": "code",
  2620. "value": ""
  2621. },
  2622. "parser": {
  2623. "type": "code",
  2624. "value": ""
  2625. },
  2626. "$contents": {
  2627. "type": "map<string,*>",
  2628. "value": {
  2629. "nodes": {},
  2630. "edges": []
  2631. }
  2632. },
  2633. "$asuri": {
  2634. "type": "string",
  2635. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/11.instance"
  2636. },
  2637. "$segments": {
  2638. "type": "map<string,list<string>>",
  2639. "value": {
  2640. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/4.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/11.instance": "M25.99999999999997,202L108.00000000000003,346.5",
  2641. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/11.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pInputEventsIcon/7.instance": "M108.03691428253234,346.56505016860876L189.99959851461287,490.9992925044095"
  2642. }
  2643. },
  2644. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2645. },
  2646. "17": {
  2647. "typename": {
  2648. "type": "string",
  2649. "value": "RHSIcon"
  2650. },
  2651. "position": {
  2652. "type": "list<double>",
  2653. "value": [
  2654. 470,
  2655. 200
  2656. ]
  2657. },
  2658. "orientation": {
  2659. "type": "double",
  2660. "value": 0
  2661. },
  2662. "scale": {
  2663. "type": "list<double>",
  2664. "value": [
  2665. 1,
  2666. 1
  2667. ]
  2668. },
  2669. "mapper": {
  2670. "type": "code",
  2671. "value": ""
  2672. },
  2673. "parser": {
  2674. "type": "code",
  2675. "value": ""
  2676. },
  2677. "$contents": {
  2678. "type": "map<string,*>",
  2679. "value": {
  2680. "nodes": {
  2681. "7": {
  2682. "segments": {
  2683. "type": "string",
  2684. "value": "m0,0 l450,0 l0,500 l-450,0 l100,-250z"
  2685. },
  2686. "style": {
  2687. "type": "map<string,string>",
  2688. "value": {
  2689. "stroke": "#000000",
  2690. "stroke-dasharray": "",
  2691. "fill": "#ffffff",
  2692. "fill-opacity": 0.75,
  2693. "stroke-width": 2,
  2694. "arrow-start": "none",
  2695. "arrow-end": "none"
  2696. }
  2697. },
  2698. "mapper": {
  2699. "type": "code",
  2700. "value": ""
  2701. },
  2702. "parser": {
  2703. "type": "code",
  2704. "value": ""
  2705. },
  2706. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2707. "position": {
  2708. "type": "list<double>",
  2709. "value": [
  2710. 0,
  2711. 0
  2712. ]
  2713. },
  2714. "orientation": {
  2715. "type": "double",
  2716. "value": 0
  2717. },
  2718. "scale": {
  2719. "type": "list<double>",
  2720. "value": [
  2721. 1,
  2722. 1
  2723. ]
  2724. }
  2725. }
  2726. },
  2727. "edges": []
  2728. }
  2729. },
  2730. "$asuri": {
  2731. "type": "string",
  2732. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS/17.instance"
  2733. },
  2734. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon"
  2735. },
  2736. "18": {
  2737. "typename": {
  2738. "type": "string",
  2739. "value": "StateIcon"
  2740. },
  2741. "position": {
  2742. "type": "list<double>",
  2743. "value": [
  2744. 591,
  2745. 356
  2746. ]
  2747. },
  2748. "orientation": {
  2749. "type": "double",
  2750. "value": 0
  2751. },
  2752. "scale": {
  2753. "type": "list<double>",
  2754. "value": [
  2755. 1,
  2756. 1
  2757. ]
  2758. },
  2759. "mapper": {
  2760. "type": "code",
  2761. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2762. },
  2763. "parser": {
  2764. "type": "code",
  2765. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2766. },
  2767. "$contents": {
  2768. "type": "map<string,*>",
  2769. "value": {
  2770. "nodes": {
  2771. "1": {
  2772. "r": {
  2773. "type": "double",
  2774. "value": 50
  2775. },
  2776. "style": {
  2777. "type": "map<string,string>",
  2778. "value": {
  2779. "stroke": "#000000",
  2780. "stroke-dasharray": "",
  2781. "fill": "#ffffff",
  2782. "fill-opacity": 0.75,
  2783. "font-size": "20px",
  2784. "stroke-width": 2,
  2785. "arrow-start": "none",
  2786. "arrow-end": "none"
  2787. }
  2788. },
  2789. "mapper": {
  2790. "type": "code",
  2791. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2792. },
  2793. "parser": {
  2794. "type": "code",
  2795. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2796. },
  2797. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2798. "position": {
  2799. "type": "list<double>",
  2800. "value": [
  2801. 4,
  2802. 4
  2803. ]
  2804. },
  2805. "orientation": {
  2806. "type": "double",
  2807. "value": 0
  2808. },
  2809. "scale": {
  2810. "type": "list<double>",
  2811. "value": [
  2812. 1,
  2813. 1
  2814. ]
  2815. }
  2816. },
  2817. "2": {
  2818. "textContent": {
  2819. "type": "string",
  2820. "value": "T..."
  2821. },
  2822. "style": {
  2823. "type": "map<string,string>",
  2824. "value": {
  2825. "stroke": "#000000",
  2826. "stroke-dasharray": "",
  2827. "fill": "#ffffff",
  2828. "fill-opacity": 0.75,
  2829. "font-size": "14px",
  2830. "arrow-start": "none",
  2831. "arrow-end": "none"
  2832. }
  2833. },
  2834. "mapper": {
  2835. "type": "code",
  2836. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2837. },
  2838. "parser": {
  2839. "type": "code",
  2840. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2841. },
  2842. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2843. "position": {
  2844. "type": "list<double>",
  2845. "value": [
  2846. 11,
  2847. 48
  2848. ]
  2849. },
  2850. "orientation": {
  2851. "type": "double",
  2852. "value": 0
  2853. },
  2854. "scale": {
  2855. "type": "list<double>",
  2856. "value": [
  2857. 1,
  2858. 1
  2859. ]
  2860. }
  2861. },
  2862. "3": {
  2863. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2864. "position": {
  2865. "type": "list<double>",
  2866. "value": [
  2867. 12.71270269242143,
  2868. 30
  2869. ]
  2870. },
  2871. "orientation": {
  2872. "type": "double",
  2873. "value": 0
  2874. },
  2875. "scale": {
  2876. "type": "list<double>",
  2877. "value": [
  2878. 1,
  2879. 1
  2880. ]
  2881. },
  2882. "link-style": {
  2883. "type": "map<string,string>",
  2884. "value": {
  2885. "stroke": "#00ffff",
  2886. "stroke-dasharray": "",
  2887. "stroke-opacity": 0.1,
  2888. "stroke-width": 1
  2889. }
  2890. }
  2891. },
  2892. "__pLabelText": {
  2893. "position": {
  2894. "type": "list<double>",
  2895. "value": [
  2896. 0,
  2897. 0
  2898. ]
  2899. },
  2900. "orientation": {
  2901. "type": "double",
  2902. "value": 0
  2903. },
  2904. "scale": {
  2905. "type": "list<double>",
  2906. "value": [
  2907. 1,
  2908. 1
  2909. ]
  2910. },
  2911. "textContent": {
  2912. "type": "string",
  2913. "value": "0"
  2914. },
  2915. "style": {
  2916. "type": "map<string,string>",
  2917. "value": {
  2918. "stroke": "#6000ff",
  2919. "fill": "#6000ff",
  2920. "font-size": "15px",
  2921. "opacity": "1"
  2922. }
  2923. },
  2924. "mapper": {
  2925. "type": "code",
  2926. "value": "({'textContent':getAttr('__pLabel')})"
  2927. },
  2928. "parser": {
  2929. "type": "code",
  2930. "value": "({'__pLabel':getAttr('textContent')})"
  2931. },
  2932. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2933. }
  2934. },
  2935. "edges": [
  2936. {
  2937. "src": "1",
  2938. "dest": "3"
  2939. },
  2940. {
  2941. "src": "3",
  2942. "dest": "2"
  2943. }
  2944. ]
  2945. }
  2946. },
  2947. "$asuri": {
  2948. "type": "string",
  2949. "value": "/Formalisms/FSA/FSA.pattern/__pState/18.instance"
  2950. },
  2951. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon"
  2952. },
  2953. "19": {
  2954. "typename": {
  2955. "type": "string",
  2956. "value": "StateIcon"
  2957. },
  2958. "position": {
  2959. "type": "list<double>",
  2960. "value": [
  2961. 788,
  2962. 358
  2963. ]
  2964. },
  2965. "orientation": {
  2966. "type": "double",
  2967. "value": 0
  2968. },
  2969. "scale": {
  2970. "type": "list<double>",
  2971. "value": [
  2972. 1,
  2973. 1
  2974. ]
  2975. },
  2976. "mapper": {
  2977. "type": "code",
  2978. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2979. },
  2980. "parser": {
  2981. "type": "code",
  2982. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2983. },
  2984. "$contents": {
  2985. "type": "map<string,*>",
  2986. "value": {
  2987. "nodes": {
  2988. "1": {
  2989. "r": {
  2990. "type": "double",
  2991. "value": 50
  2992. },
  2993. "style": {
  2994. "type": "map<string,string>",
  2995. "value": {
  2996. "stroke": "#000000",
  2997. "stroke-dasharray": "",
  2998. "fill": "#ffffff",
  2999. "fill-opacity": 0.75,
  3000. "font-size": "20px",
  3001. "stroke-width": 2,
  3002. "arrow-start": "none",
  3003. "arrow-end": "none"
  3004. }
  3005. },
  3006. "mapper": {
  3007. "type": "code",
  3008. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3009. },
  3010. "parser": {
  3011. "type": "code",
  3012. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3013. },
  3014. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3015. "position": {
  3016. "type": "list<double>",
  3017. "value": [
  3018. 4,
  3019. 4
  3020. ]
  3021. },
  3022. "orientation": {
  3023. "type": "double",
  3024. "value": 0
  3025. },
  3026. "scale": {
  3027. "type": "list<double>",
  3028. "value": [
  3029. 1,
  3030. 1
  3031. ]
  3032. }
  3033. },
  3034. "2": {
  3035. "textContent": {
  3036. "type": "string",
  3037. "value": "T..."
  3038. },
  3039. "style": {
  3040. "type": "map<string,string>",
  3041. "value": {
  3042. "stroke": "#000000",
  3043. "stroke-dasharray": "",
  3044. "fill": "#ffffff",
  3045. "fill-opacity": 0.75,
  3046. "font-size": "14px",
  3047. "arrow-start": "none",
  3048. "arrow-end": "none"
  3049. }
  3050. },
  3051. "mapper": {
  3052. "type": "code",
  3053. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3054. },
  3055. "parser": {
  3056. "type": "code",
  3057. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3058. },
  3059. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3060. "position": {
  3061. "type": "list<double>",
  3062. "value": [
  3063. 11,
  3064. 48
  3065. ]
  3066. },
  3067. "orientation": {
  3068. "type": "double",
  3069. "value": 0
  3070. },
  3071. "scale": {
  3072. "type": "list<double>",
  3073. "value": [
  3074. 1,
  3075. 1
  3076. ]
  3077. }
  3078. },
  3079. "3": {
  3080. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3081. "position": {
  3082. "type": "list<double>",
  3083. "value": [
  3084. 12.71270269242143,
  3085. 30
  3086. ]
  3087. },
  3088. "orientation": {
  3089. "type": "double",
  3090. "value": 0
  3091. },
  3092. "scale": {
  3093. "type": "list<double>",
  3094. "value": [
  3095. 1,
  3096. 1
  3097. ]
  3098. },
  3099. "link-style": {
  3100. "type": "map<string,string>",
  3101. "value": {
  3102. "stroke": "#00ffff",
  3103. "stroke-dasharray": "",
  3104. "stroke-opacity": 0.1,
  3105. "stroke-width": 1
  3106. }
  3107. }
  3108. },
  3109. "__pLabelText": {
  3110. "position": {
  3111. "type": "list<double>",
  3112. "value": [
  3113. 0,
  3114. 0
  3115. ]
  3116. },
  3117. "orientation": {
  3118. "type": "double",
  3119. "value": 0
  3120. },
  3121. "scale": {
  3122. "type": "list<double>",
  3123. "value": [
  3124. 1,
  3125. 1
  3126. ]
  3127. },
  3128. "textContent": {
  3129. "type": "string",
  3130. "value": "1"
  3131. },
  3132. "style": {
  3133. "type": "map<string,string>",
  3134. "value": {
  3135. "stroke": "#6000ff",
  3136. "fill": "#6000ff",
  3137. "font-size": "15px",
  3138. "opacity": "1"
  3139. }
  3140. },
  3141. "mapper": {
  3142. "type": "code",
  3143. "value": "({'textContent':getAttr('__pLabel')})"
  3144. },
  3145. "parser": {
  3146. "type": "code",
  3147. "value": "({'__pLabel':getAttr('textContent')})"
  3148. },
  3149. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3150. }
  3151. },
  3152. "edges": [
  3153. {
  3154. "src": "1",
  3155. "dest": "3"
  3156. },
  3157. {
  3158. "src": "3",
  3159. "dest": "2"
  3160. }
  3161. ]
  3162. }
  3163. },
  3164. "$asuri": {
  3165. "type": "string",
  3166. "value": "/Formalisms/FSA/FSA.pattern/__pState/19.instance"
  3167. },
  3168. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon"
  3169. },
  3170. "20": {
  3171. "typename": {
  3172. "type": "string",
  3173. "value": "InputEventsIcon"
  3174. },
  3175. "position": {
  3176. "type": "list<double>",
  3177. "value": [
  3178. 712,
  3179. 480
  3180. ]
  3181. },
  3182. "orientation": {
  3183. "type": "double",
  3184. "value": 0
  3185. },
  3186. "scale": {
  3187. "type": "list<double>",
  3188. "value": [
  3189. 1,
  3190. 1
  3191. ]
  3192. },
  3193. "mapper": {
  3194. "type": "code",
  3195. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3196. },
  3197. "parser": {
  3198. "type": "code",
  3199. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3200. },
  3201. "$contents": {
  3202. "type": "map<string,*>",
  3203. "value": {
  3204. "nodes": {
  3205. "7": {
  3206. "textContent": {
  3207. "type": "string",
  3208. "value": "T..."
  3209. },
  3210. "style": {
  3211. "type": "map<string,string>",
  3212. "value": {
  3213. "stroke": "#000000",
  3214. "stroke-dasharray": "",
  3215. "fill": "#ff0000",
  3216. "fill-opacity": 0.75,
  3217. "stroke-width": 1,
  3218. "font-size": "20px",
  3219. "arrow-start": "none",
  3220. "arrow-end": "none"
  3221. }
  3222. },
  3223. "mapper": {
  3224. "type": "code",
  3225. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3226. },
  3227. "parser": {
  3228. "type": "code",
  3229. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3230. },
  3231. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3232. "position": {
  3233. "type": "list<double>",
  3234. "value": [
  3235. 4,
  3236. 7
  3237. ]
  3238. },
  3239. "orientation": {
  3240. "type": "double",
  3241. "value": 0
  3242. },
  3243. "scale": {
  3244. "type": "list<double>",
  3245. "value": [
  3246. 1,
  3247. 1
  3248. ]
  3249. }
  3250. },
  3251. "__pLabelText": {
  3252. "position": {
  3253. "type": "list<double>",
  3254. "value": [
  3255. 0,
  3256. 0
  3257. ]
  3258. },
  3259. "orientation": {
  3260. "type": "double",
  3261. "value": 0
  3262. },
  3263. "scale": {
  3264. "type": "list<double>",
  3265. "value": [
  3266. 1,
  3267. 1
  3268. ]
  3269. },
  3270. "textContent": {
  3271. "type": "string",
  3272. "value": "3"
  3273. },
  3274. "style": {
  3275. "type": "map<string,string>",
  3276. "value": {
  3277. "stroke": "#6000ff",
  3278. "fill": "#6000ff",
  3279. "font-size": "15px",
  3280. "opacity": "1"
  3281. }
  3282. },
  3283. "mapper": {
  3284. "type": "code",
  3285. "value": "({'textContent':getAttr('__pLabel')})"
  3286. },
  3287. "parser": {
  3288. "type": "code",
  3289. "value": "({'__pLabel':getAttr('textContent')})"
  3290. },
  3291. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3292. }
  3293. },
  3294. "edges": []
  3295. }
  3296. },
  3297. "$asuri": {
  3298. "type": "string",
  3299. "value": "/Formalisms/FSA/FSA.pattern/__pInputEvents/20.instance"
  3300. },
  3301. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pInputEventsIcon"
  3302. },
  3303. "21": {
  3304. "link-style": {
  3305. "type": "map<string,string>",
  3306. "value": {
  3307. "stroke": "#000000",
  3308. "stroke-dasharray": "",
  3309. "stroke-opacity": 1,
  3310. "stroke-width": 2
  3311. }
  3312. },
  3313. "arrowHead": {
  3314. "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)",
  3315. "value": "custom"
  3316. },
  3317. "arrowTail": {
  3318. "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)",
  3319. "value": "arrow-black"
  3320. },
  3321. "typename": {
  3322. "type": "string",
  3323. "value": "TransitionLink"
  3324. },
  3325. "position": {
  3326. "type": "list<double>",
  3327. "value": [
  3328. 741,
  3329. 406
  3330. ]
  3331. },
  3332. "orientation": {
  3333. "type": "double",
  3334. "value": 0
  3335. },
  3336. "scale": {
  3337. "type": "list<double>",
  3338. "value": [
  3339. 1,
  3340. 1
  3341. ]
  3342. },
  3343. "mapper": {
  3344. "type": "code",
  3345. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3346. },
  3347. "parser": {
  3348. "type": "code",
  3349. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3350. },
  3351. "$contents": {
  3352. "type": "map<string,*>",
  3353. "value": {
  3354. "nodes": {
  3355. "13": {
  3356. "textContent": {
  3357. "type": "string",
  3358. "value": "T..."
  3359. },
  3360. "style": {
  3361. "type": "map<string,string>",
  3362. "value": {
  3363. "stroke": "#000000",
  3364. "stroke-dasharray": "",
  3365. "fill": "#ffffff",
  3366. "fill-opacity": 0.75,
  3367. "font-size": "16px",
  3368. "arrow-start": "none",
  3369. "arrow-end": "none"
  3370. }
  3371. },
  3372. "mapper": {
  3373. "type": "code",
  3374. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3375. },
  3376. "parser": {
  3377. "type": "code",
  3378. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3379. },
  3380. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3381. "position": {
  3382. "type": "list<double>",
  3383. "value": [
  3384. "0;-32.52152886588988,0%",
  3385. "0;-21.5,0%"
  3386. ]
  3387. },
  3388. "orientation": {
  3389. "type": "double",
  3390. "value": "0;0"
  3391. },
  3392. "scale": {
  3393. "type": "list<double>",
  3394. "value": [
  3395. 1,
  3396. 1
  3397. ]
  3398. },
  3399. "$linkDecoratorInfo": {
  3400. "type": "map<string,double>",
  3401. "value": {
  3402. "xratio": 0.2147239263803681,
  3403. "yoffset": -21.5
  3404. }
  3405. }
  3406. },
  3407. "267": {
  3408. "segments": {
  3409. "type": "string",
  3410. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3411. },
  3412. "style": {
  3413. "type": "map<string,string>",
  3414. "value": {
  3415. "stroke": "#000000",
  3416. "fill": "#000000",
  3417. "opacity": 1,
  3418. "stroke-width": 1
  3419. }
  3420. },
  3421. "mapper": {
  3422. "type": "code",
  3423. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3424. },
  3425. "parser": {
  3426. "type": "code",
  3427. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3428. },
  3429. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3430. "position": {
  3431. "type": "list<double>",
  3432. "value": [
  3433. "0;56.999736995998774,100%",
  3434. "0;-4,0%"
  3435. ]
  3436. },
  3437. "orientation": {
  3438. "type": "double",
  3439. "value": "0;0"
  3440. },
  3441. "scale": {
  3442. "type": "list<double>",
  3443. "value": [
  3444. 1,
  3445. 1
  3446. ]
  3447. },
  3448. "arrow": "arrowTail",
  3449. "arrowType": "arrow-black",
  3450. "$linkDecoratorInfo": {
  3451. "type": "map<string,double>",
  3452. "value": {
  3453. "xratio": 1,
  3454. "yoffset": -4
  3455. }
  3456. }
  3457. },
  3458. "268": {
  3459. "segments": {
  3460. "type": "string",
  3461. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3462. },
  3463. "style": {
  3464. "type": "map<string,string>",
  3465. "value": {
  3466. "stroke": "#000000",
  3467. "fill": "#000000",
  3468. "opacity": 0,
  3469. "stroke-width": 1
  3470. }
  3471. },
  3472. "mapper": {
  3473. "type": "code",
  3474. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3475. },
  3476. "parser": {
  3477. "type": "code",
  3478. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3479. },
  3480. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3481. "position": {
  3482. "type": "list<double>",
  3483. "value": [
  3484. "0;56.999736995998774,100%",
  3485. "0;-10,0%"
  3486. ]
  3487. },
  3488. "orientation": {
  3489. "type": "double",
  3490. "value": "0;0"
  3491. },
  3492. "scale": {
  3493. "type": "list<double>",
  3494. "value": [
  3495. 1,
  3496. 1
  3497. ]
  3498. },
  3499. "arrow": "arrowTail",
  3500. "arrowType": "diamond-black-large",
  3501. "$linkDecoratorInfo": {
  3502. "type": "map<string,double>",
  3503. "value": {
  3504. "xratio": 1,
  3505. "yoffset": -10
  3506. }
  3507. }
  3508. },
  3509. "269": {
  3510. "r": {
  3511. "type": "double",
  3512. "value": 10
  3513. },
  3514. "style": {
  3515. "type": "map<string,string>",
  3516. "value": {
  3517. "stroke": "#000000",
  3518. "fill": "#000000",
  3519. "opacity": 0,
  3520. "stroke-width": 1
  3521. }
  3522. },
  3523. "mapper": {
  3524. "type": "code",
  3525. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3526. },
  3527. "parser": {
  3528. "type": "code",
  3529. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3530. },
  3531. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3532. "position": {
  3533. "type": "list<double>",
  3534. "value": [
  3535. "0;56.999736995998774,100%",
  3536. "0;-10,0%"
  3537. ]
  3538. },
  3539. "orientation": {
  3540. "type": "double",
  3541. "value": "0;0"
  3542. },
  3543. "scale": {
  3544. "type": "list<double>",
  3545. "value": [
  3546. 1,
  3547. 1
  3548. ]
  3549. },
  3550. "arrow": "arrowTail",
  3551. "arrowType": "circle-black-large",
  3552. "$linkDecoratorInfo": {
  3553. "type": "map<string,double>",
  3554. "value": {
  3555. "xratio": 1,
  3556. "yoffset": -10
  3557. }
  3558. }
  3559. },
  3560. "270": {
  3561. "r": {
  3562. "type": "double",
  3563. "value": 10
  3564. },
  3565. "style": {
  3566. "type": "map<string,string>",
  3567. "value": {
  3568. "stroke": "#000000",
  3569. "fill": "#ffffff",
  3570. "opacity": 0,
  3571. "stroke-width": 1
  3572. }
  3573. },
  3574. "mapper": {
  3575. "type": "code",
  3576. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3577. },
  3578. "parser": {
  3579. "type": "code",
  3580. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3581. },
  3582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3583. "position": {
  3584. "type": "list<double>",
  3585. "value": [
  3586. "0;56.999736995998774,100%",
  3587. "0;-10,0%"
  3588. ]
  3589. },
  3590. "orientation": {
  3591. "type": "double",
  3592. "value": "0;0"
  3593. },
  3594. "scale": {
  3595. "type": "list<double>",
  3596. "value": [
  3597. 1,
  3598. 1
  3599. ]
  3600. },
  3601. "arrow": "arrowTail",
  3602. "arrowType": "circle-white-large",
  3603. "$linkDecoratorInfo": {
  3604. "type": "map<string,double>",
  3605. "value": {
  3606. "xratio": 1,
  3607. "yoffset": -10
  3608. }
  3609. }
  3610. },
  3611. "271": {
  3612. "r": {
  3613. "type": "double",
  3614. "value": 5
  3615. },
  3616. "style": {
  3617. "type": "map<string,string>",
  3618. "value": {
  3619. "stroke": "#000000",
  3620. "fill": "#000000",
  3621. "opacity": 0,
  3622. "stroke-width": 1
  3623. }
  3624. },
  3625. "mapper": {
  3626. "type": "code",
  3627. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3628. },
  3629. "parser": {
  3630. "type": "code",
  3631. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3632. },
  3633. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3634. "position": {
  3635. "type": "list<double>",
  3636. "value": [
  3637. "0;56.999736995998774,100%",
  3638. "0;-5,0%"
  3639. ]
  3640. },
  3641. "orientation": {
  3642. "type": "double",
  3643. "value": "0;0"
  3644. },
  3645. "scale": {
  3646. "type": "list<double>",
  3647. "value": [
  3648. 1,
  3649. 1
  3650. ]
  3651. },
  3652. "arrow": "arrowTail",
  3653. "arrowType": "circle-black",
  3654. "$linkDecoratorInfo": {
  3655. "type": "map<string,double>",
  3656. "value": {
  3657. "xratio": 1,
  3658. "yoffset": -5
  3659. }
  3660. }
  3661. },
  3662. "272": {
  3663. "segments": {
  3664. "type": "string",
  3665. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3666. },
  3667. "style": {
  3668. "type": "map<string,string>",
  3669. "value": {
  3670. "stroke": "#000000",
  3671. "fill": "#000000",
  3672. "opacity": 0,
  3673. "stroke-width": 1
  3674. }
  3675. },
  3676. "mapper": {
  3677. "type": "code",
  3678. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3679. },
  3680. "parser": {
  3681. "type": "code",
  3682. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3683. },
  3684. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3685. "position": {
  3686. "type": "list<double>",
  3687. "value": [
  3688. "0;56.999736995998774,100%",
  3689. "0;-5,0%"
  3690. ]
  3691. },
  3692. "orientation": {
  3693. "type": "double",
  3694. "value": "0;0"
  3695. },
  3696. "scale": {
  3697. "type": "list<double>",
  3698. "value": [
  3699. 1,
  3700. 1
  3701. ]
  3702. },
  3703. "arrow": "arrowTail",
  3704. "arrowType": "diamond-black",
  3705. "$linkDecoratorInfo": {
  3706. "type": "map<string,double>",
  3707. "value": {
  3708. "xratio": 1,
  3709. "yoffset": -5
  3710. }
  3711. }
  3712. },
  3713. "273": {
  3714. "segments": {
  3715. "type": "string",
  3716. "value": "m0,0 l20,10 l-20,10 z"
  3717. },
  3718. "style": {
  3719. "type": "map<string,string>",
  3720. "value": {
  3721. "stroke": "#000000",
  3722. "fill": "#000000",
  3723. "opacity": 0,
  3724. "stroke-width": 1
  3725. }
  3726. },
  3727. "mapper": {
  3728. "type": "code",
  3729. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3730. },
  3731. "parser": {
  3732. "type": "code",
  3733. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3734. },
  3735. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3736. "position": {
  3737. "type": "list<double>",
  3738. "value": [
  3739. "0;56.999736995998774,100%",
  3740. "0;-10,0%"
  3741. ]
  3742. },
  3743. "orientation": {
  3744. "type": "double",
  3745. "value": "0;0"
  3746. },
  3747. "scale": {
  3748. "type": "list<double>",
  3749. "value": [
  3750. 1,
  3751. 1
  3752. ]
  3753. },
  3754. "arrow": "arrowTail",
  3755. "arrowType": "triangle-black-large",
  3756. "$linkDecoratorInfo": {
  3757. "type": "map<string,double>",
  3758. "value": {
  3759. "xratio": 1,
  3760. "yoffset": -10
  3761. }
  3762. }
  3763. },
  3764. "274": {
  3765. "segments": {
  3766. "type": "string",
  3767. "value": "m0,0 l10,4 l-10,4 z"
  3768. },
  3769. "style": {
  3770. "type": "map<string,string>",
  3771. "value": {
  3772. "stroke": "#000000",
  3773. "fill": "#000000",
  3774. "opacity": 0,
  3775. "stroke-width": 1
  3776. }
  3777. },
  3778. "mapper": {
  3779. "type": "code",
  3780. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3781. },
  3782. "parser": {
  3783. "type": "code",
  3784. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3785. },
  3786. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3787. "position": {
  3788. "type": "list<double>",
  3789. "value": [
  3790. "0;56.999736995998774,100%",
  3791. "0;-4,0%"
  3792. ]
  3793. },
  3794. "orientation": {
  3795. "type": "double",
  3796. "value": "0;0"
  3797. },
  3798. "scale": {
  3799. "type": "list<double>",
  3800. "value": [
  3801. 1,
  3802. 1
  3803. ]
  3804. },
  3805. "arrow": "arrowTail",
  3806. "arrowType": "triangle-black",
  3807. "$linkDecoratorInfo": {
  3808. "type": "map<string,double>",
  3809. "value": {
  3810. "xratio": 1,
  3811. "yoffset": -4
  3812. }
  3813. }
  3814. },
  3815. "275": {
  3816. "segments": {
  3817. "type": "string",
  3818. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  3819. },
  3820. "style": {
  3821. "type": "map<string,string>",
  3822. "value": {
  3823. "stroke": "#000000",
  3824. "fill": "#000000",
  3825. "opacity": 0,
  3826. "stroke-width": 1
  3827. }
  3828. },
  3829. "mapper": {
  3830. "type": "code",
  3831. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3832. },
  3833. "parser": {
  3834. "type": "code",
  3835. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3836. },
  3837. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3838. "position": {
  3839. "type": "list<double>",
  3840. "value": [
  3841. "0;56.999736995998774,100%",
  3842. "0;-8,0%"
  3843. ]
  3844. },
  3845. "orientation": {
  3846. "type": "double",
  3847. "value": "0;0"
  3848. },
  3849. "scale": {
  3850. "type": "list<double>",
  3851. "value": [
  3852. 1,
  3853. 1
  3854. ]
  3855. },
  3856. "arrow": "arrowTail",
  3857. "arrowType": "arrow-black-large",
  3858. "$linkDecoratorInfo": {
  3859. "type": "map<string,double>",
  3860. "value": {
  3861. "xratio": 1,
  3862. "yoffset": -8
  3863. }
  3864. }
  3865. },
  3866. "276": {
  3867. "segments": {
  3868. "type": "string",
  3869. "value": "m0,0 l20,10 l-20,10 z"
  3870. },
  3871. "style": {
  3872. "type": "map<string,string>",
  3873. "value": {
  3874. "stroke": "#000000",
  3875. "fill": "#ffffff",
  3876. "opacity": 0,
  3877. "stroke-width": 1
  3878. }
  3879. },
  3880. "mapper": {
  3881. "type": "code",
  3882. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3883. },
  3884. "parser": {
  3885. "type": "code",
  3886. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3887. },
  3888. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3889. "position": {
  3890. "type": "list<double>",
  3891. "value": [
  3892. "0;56.999736995998774,100%",
  3893. "0;-10,0%"
  3894. ]
  3895. },
  3896. "orientation": {
  3897. "type": "double",
  3898. "value": "0;0"
  3899. },
  3900. "scale": {
  3901. "type": "list<double>",
  3902. "value": [
  3903. 1,
  3904. 1
  3905. ]
  3906. },
  3907. "arrow": "arrowTail",
  3908. "arrowType": "triangle-white-large",
  3909. "$linkDecoratorInfo": {
  3910. "type": "map<string,double>",
  3911. "value": {
  3912. "xratio": 1,
  3913. "yoffset": -10
  3914. }
  3915. }
  3916. },
  3917. "277": {
  3918. "segments": {
  3919. "type": "string",
  3920. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3921. },
  3922. "style": {
  3923. "type": "map<string,string>",
  3924. "value": {
  3925. "stroke": "#000000",
  3926. "fill": "#ffffff",
  3927. "opacity": 0,
  3928. "stroke-width": 1
  3929. }
  3930. },
  3931. "mapper": {
  3932. "type": "code",
  3933. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3934. },
  3935. "parser": {
  3936. "type": "code",
  3937. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3938. },
  3939. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3940. "position": {
  3941. "type": "list<double>",
  3942. "value": [
  3943. "0;56.999736995998774,100%",
  3944. "0;-5,0%"
  3945. ]
  3946. },
  3947. "orientation": {
  3948. "type": "double",
  3949. "value": "0;0"
  3950. },
  3951. "scale": {
  3952. "type": "list<double>",
  3953. "value": [
  3954. 1,
  3955. 1
  3956. ]
  3957. },
  3958. "arrow": "arrowTail",
  3959. "arrowType": "diamond-white",
  3960. "$linkDecoratorInfo": {
  3961. "type": "map<string,double>",
  3962. "value": {
  3963. "xratio": 1,
  3964. "yoffset": -5
  3965. }
  3966. }
  3967. },
  3968. "278": {
  3969. "segments": {
  3970. "type": "string",
  3971. "value": "m0,0 l20,8 l-20,8"
  3972. },
  3973. "style": {
  3974. "type": "map<string,string>",
  3975. "value": {
  3976. "stroke": "#000000",
  3977. "fill": "#000000",
  3978. "fill-opacity": 0,
  3979. "stroke-width": 1,
  3980. "opacity": 0
  3981. }
  3982. },
  3983. "mapper": {
  3984. "type": "code",
  3985. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3986. },
  3987. "parser": {
  3988. "type": "code",
  3989. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3990. },
  3991. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3992. "position": {
  3993. "type": "list<double>",
  3994. "value": [
  3995. "0;56.999736995998774,100%",
  3996. "0;-8,0%"
  3997. ]
  3998. },
  3999. "orientation": {
  4000. "type": "double",
  4001. "value": "0;0"
  4002. },
  4003. "scale": {
  4004. "type": "list<double>",
  4005. "value": [
  4006. 1,
  4007. 1
  4008. ]
  4009. },
  4010. "arrow": "arrowTail",
  4011. "arrowType": "arrow-empty-large",
  4012. "$linkDecoratorInfo": {
  4013. "type": "map<string,double>",
  4014. "value": {
  4015. "xratio": 1,
  4016. "yoffset": -8
  4017. }
  4018. }
  4019. },
  4020. "279": {
  4021. "r": {
  4022. "type": "double",
  4023. "value": 5
  4024. },
  4025. "style": {
  4026. "type": "map<string,string>",
  4027. "value": {
  4028. "stroke": "#000000",
  4029. "fill": "#ffffff",
  4030. "opacity": 0,
  4031. "stroke-width": 1
  4032. }
  4033. },
  4034. "mapper": {
  4035. "type": "code",
  4036. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4037. },
  4038. "parser": {
  4039. "type": "code",
  4040. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4041. },
  4042. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4043. "position": {
  4044. "type": "list<double>",
  4045. "value": [
  4046. "0;56.999736995998774,100%",
  4047. "0;-5,0%"
  4048. ]
  4049. },
  4050. "orientation": {
  4051. "type": "double",
  4052. "value": "0;0"
  4053. },
  4054. "scale": {
  4055. "type": "list<double>",
  4056. "value": [
  4057. 1,
  4058. 1
  4059. ]
  4060. },
  4061. "arrow": "arrowTail",
  4062. "arrowType": "circle-white",
  4063. "$linkDecoratorInfo": {
  4064. "type": "map<string,double>",
  4065. "value": {
  4066. "xratio": 1,
  4067. "yoffset": -5
  4068. }
  4069. }
  4070. },
  4071. "280": {
  4072. "segments": {
  4073. "type": "string",
  4074. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4075. },
  4076. "style": {
  4077. "type": "map<string,string>",
  4078. "value": {
  4079. "stroke": "#000000",
  4080. "fill": "#ffffff",
  4081. "opacity": 0,
  4082. "stroke-width": 1
  4083. }
  4084. },
  4085. "mapper": {
  4086. "type": "code",
  4087. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4088. },
  4089. "parser": {
  4090. "type": "code",
  4091. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4092. },
  4093. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4094. "position": {
  4095. "type": "list<double>",
  4096. "value": [
  4097. "0;56.999736995998774,100%",
  4098. "0;-10,0%"
  4099. ]
  4100. },
  4101. "orientation": {
  4102. "type": "double",
  4103. "value": "0;0"
  4104. },
  4105. "scale": {
  4106. "type": "list<double>",
  4107. "value": [
  4108. 1,
  4109. 1
  4110. ]
  4111. },
  4112. "arrow": "arrowTail",
  4113. "arrowType": "diamond-white-large",
  4114. "$linkDecoratorInfo": {
  4115. "type": "map<string,double>",
  4116. "value": {
  4117. "xratio": 1,
  4118. "yoffset": -10
  4119. }
  4120. }
  4121. },
  4122. "281": {
  4123. "segments": {
  4124. "type": "string",
  4125. "value": "m0,0 l10,4 l-10,4"
  4126. },
  4127. "style": {
  4128. "type": "map<string,string>",
  4129. "value": {
  4130. "stroke": "#000000",
  4131. "fill": "#000000",
  4132. "fill-opacity": 0,
  4133. "stroke-width": 1,
  4134. "opacity": 0
  4135. }
  4136. },
  4137. "mapper": {
  4138. "type": "code",
  4139. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4140. },
  4141. "parser": {
  4142. "type": "code",
  4143. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4144. },
  4145. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4146. "position": {
  4147. "type": "list<double>",
  4148. "value": [
  4149. "0;56.999736995998774,100%",
  4150. "0;-4,0%"
  4151. ]
  4152. },
  4153. "orientation": {
  4154. "type": "double",
  4155. "value": "0;0"
  4156. },
  4157. "scale": {
  4158. "type": "list<double>",
  4159. "value": [
  4160. 1,
  4161. 1
  4162. ]
  4163. },
  4164. "arrow": "arrowTail",
  4165. "arrowType": "arrow-empty",
  4166. "$linkDecoratorInfo": {
  4167. "type": "map<string,double>",
  4168. "value": {
  4169. "xratio": 1,
  4170. "yoffset": -4
  4171. }
  4172. }
  4173. },
  4174. "282": {
  4175. "segments": {
  4176. "type": "string",
  4177. "value": "m0,0 l10,5 l-10,5 z"
  4178. },
  4179. "style": {
  4180. "type": "map<string,string>",
  4181. "value": {
  4182. "stroke": "#000000",
  4183. "fill": "#ffffff",
  4184. "opacity": 0,
  4185. "stroke-width": 1
  4186. }
  4187. },
  4188. "mapper": {
  4189. "type": "code",
  4190. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4191. },
  4192. "parser": {
  4193. "type": "code",
  4194. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4195. },
  4196. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4197. "position": {
  4198. "type": "list<double>",
  4199. "value": [
  4200. "0;56.999736995998774,100%",
  4201. "0;-5,0%"
  4202. ]
  4203. },
  4204. "orientation": {
  4205. "type": "double",
  4206. "value": "0;0"
  4207. },
  4208. "scale": {
  4209. "type": "list<double>",
  4210. "value": [
  4211. 1,
  4212. 1
  4213. ]
  4214. },
  4215. "arrow": "arrowTail",
  4216. "arrowType": "triangle-white",
  4217. "$linkDecoratorInfo": {
  4218. "type": "map<string,double>",
  4219. "value": {
  4220. "xratio": 1,
  4221. "yoffset": -5
  4222. }
  4223. }
  4224. },
  4225. "283": {
  4226. "segments": {
  4227. "type": "string",
  4228. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4229. },
  4230. "style": {
  4231. "type": "map<string,string>",
  4232. "value": {
  4233. "stroke": "#000000",
  4234. "fill": "#ffffff",
  4235. "opacity": 0,
  4236. "stroke-width": 1
  4237. }
  4238. },
  4239. "mapper": {
  4240. "type": "code",
  4241. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4242. },
  4243. "parser": {
  4244. "type": "code",
  4245. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4246. },
  4247. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4248. "position": {
  4249. "type": "list<double>",
  4250. "value": [
  4251. "0;-57,0%",
  4252. "0;-5,0%"
  4253. ]
  4254. },
  4255. "orientation": {
  4256. "type": "double",
  4257. "value": "0;0"
  4258. },
  4259. "scale": {
  4260. "type": "list<double>",
  4261. "value": [
  4262. 1,
  4263. 1
  4264. ]
  4265. },
  4266. "arrow": "arrowHead",
  4267. "arrowType": "diamond-white",
  4268. "$linkDecoratorInfo": {
  4269. "type": "map<string,double>",
  4270. "value": {
  4271. "xratio": -1,
  4272. "yoffset": -5
  4273. }
  4274. }
  4275. },
  4276. "284": {
  4277. "segments": {
  4278. "type": "string",
  4279. "value": "m0,0 l-10,5 l10,5 z"
  4280. },
  4281. "style": {
  4282. "type": "map<string,string>",
  4283. "value": {
  4284. "stroke": "#000000",
  4285. "fill": "#ffffff",
  4286. "opacity": 0,
  4287. "stroke-width": 1
  4288. }
  4289. },
  4290. "mapper": {
  4291. "type": "code",
  4292. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4293. },
  4294. "parser": {
  4295. "type": "code",
  4296. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4297. },
  4298. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4299. "position": {
  4300. "type": "list<double>",
  4301. "value": [
  4302. "0;-57,0%",
  4303. "0;-5,0%"
  4304. ]
  4305. },
  4306. "orientation": {
  4307. "type": "double",
  4308. "value": "0;0"
  4309. },
  4310. "scale": {
  4311. "type": "list<double>",
  4312. "value": [
  4313. 1,
  4314. 1
  4315. ]
  4316. },
  4317. "arrow": "arrowHead",
  4318. "arrowType": "triangle-white",
  4319. "$linkDecoratorInfo": {
  4320. "type": "map<string,double>",
  4321. "value": {
  4322. "xratio": -1,
  4323. "yoffset": -5
  4324. }
  4325. }
  4326. },
  4327. "285": {
  4328. "segments": {
  4329. "type": "string",
  4330. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4331. },
  4332. "style": {
  4333. "type": "map<string,string>",
  4334. "value": {
  4335. "stroke": "#000000",
  4336. "fill": "#000000",
  4337. "opacity": 0,
  4338. "stroke-width": 1
  4339. }
  4340. },
  4341. "mapper": {
  4342. "type": "code",
  4343. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4344. },
  4345. "parser": {
  4346. "type": "code",
  4347. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4348. },
  4349. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4350. "position": {
  4351. "type": "list<double>",
  4352. "value": [
  4353. "0;-57,0%",
  4354. "0;-5,0%"
  4355. ]
  4356. },
  4357. "orientation": {
  4358. "type": "double",
  4359. "value": "0;0"
  4360. },
  4361. "scale": {
  4362. "type": "list<double>",
  4363. "value": [
  4364. 1,
  4365. 1
  4366. ]
  4367. },
  4368. "arrow": "arrowHead",
  4369. "arrowType": "diamond-black",
  4370. "$linkDecoratorInfo": {
  4371. "type": "map<string,double>",
  4372. "value": {
  4373. "xratio": -1,
  4374. "yoffset": -5
  4375. }
  4376. }
  4377. },
  4378. "286": {
  4379. "r": {
  4380. "type": "double",
  4381. "value": 10
  4382. },
  4383. "style": {
  4384. "type": "map<string,string>",
  4385. "value": {
  4386. "stroke": "#000000",
  4387. "fill": "#000000",
  4388. "opacity": 0,
  4389. "stroke-width": 1
  4390. }
  4391. },
  4392. "mapper": {
  4393. "type": "code",
  4394. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4395. },
  4396. "parser": {
  4397. "type": "code",
  4398. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4399. },
  4400. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4401. "position": {
  4402. "type": "list<double>",
  4403. "value": [
  4404. "0;-57,0%",
  4405. "0;-10,0%"
  4406. ]
  4407. },
  4408. "orientation": {
  4409. "type": "double",
  4410. "value": "0;0"
  4411. },
  4412. "scale": {
  4413. "type": "list<double>",
  4414. "value": [
  4415. 1,
  4416. 1
  4417. ]
  4418. },
  4419. "arrow": "arrowHead",
  4420. "arrowType": "circle-black-large",
  4421. "$linkDecoratorInfo": {
  4422. "type": "map<string,double>",
  4423. "value": {
  4424. "xratio": -1,
  4425. "yoffset": -10
  4426. }
  4427. }
  4428. },
  4429. "287": {
  4430. "segments": {
  4431. "type": "string",
  4432. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  4433. },
  4434. "style": {
  4435. "type": "map<string,string>",
  4436. "value": {
  4437. "stroke": "#000000",
  4438. "fill": "#000000",
  4439. "opacity": 0,
  4440. "stroke-width": 1
  4441. }
  4442. },
  4443. "mapper": {
  4444. "type": "code",
  4445. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4446. },
  4447. "parser": {
  4448. "type": "code",
  4449. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4450. },
  4451. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4452. "position": {
  4453. "type": "list<double>",
  4454. "value": [
  4455. "0;-57,0%",
  4456. "0;-8,0%"
  4457. ]
  4458. },
  4459. "orientation": {
  4460. "type": "double",
  4461. "value": "0;0"
  4462. },
  4463. "scale": {
  4464. "type": "list<double>",
  4465. "value": [
  4466. 1,
  4467. 1
  4468. ]
  4469. },
  4470. "arrow": "arrowHead",
  4471. "arrowType": "arrow-black-large",
  4472. "$linkDecoratorInfo": {
  4473. "type": "map<string,double>",
  4474. "value": {
  4475. "xratio": -1,
  4476. "yoffset": -8
  4477. }
  4478. }
  4479. },
  4480. "288": {
  4481. "segments": {
  4482. "type": "string",
  4483. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  4484. },
  4485. "style": {
  4486. "type": "map<string,string>",
  4487. "value": {
  4488. "stroke": "#000000",
  4489. "fill": "#000000",
  4490. "opacity": 0,
  4491. "stroke-width": 1
  4492. }
  4493. },
  4494. "mapper": {
  4495. "type": "code",
  4496. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4497. },
  4498. "parser": {
  4499. "type": "code",
  4500. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4501. },
  4502. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4503. "position": {
  4504. "type": "list<double>",
  4505. "value": [
  4506. "0;-57,0%",
  4507. "0;-4,0%"
  4508. ]
  4509. },
  4510. "orientation": {
  4511. "type": "double",
  4512. "value": "0;0"
  4513. },
  4514. "scale": {
  4515. "type": "list<double>",
  4516. "value": [
  4517. 1,
  4518. 1
  4519. ]
  4520. },
  4521. "arrow": "arrowHead",
  4522. "arrowType": "arrow-black",
  4523. "$linkDecoratorInfo": {
  4524. "type": "map<string,double>",
  4525. "value": {
  4526. "xratio": -1,
  4527. "yoffset": -4
  4528. }
  4529. }
  4530. },
  4531. "289": {
  4532. "segments": {
  4533. "type": "string",
  4534. "value": "m0,0 l-20,10 l20,10 z"
  4535. },
  4536. "style": {
  4537. "type": "map<string,string>",
  4538. "value": {
  4539. "stroke": "#000000",
  4540. "fill": "#ffffff",
  4541. "opacity": 0,
  4542. "stroke-width": 1
  4543. }
  4544. },
  4545. "mapper": {
  4546. "type": "code",
  4547. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4548. },
  4549. "parser": {
  4550. "type": "code",
  4551. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4552. },
  4553. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4554. "position": {
  4555. "type": "list<double>",
  4556. "value": [
  4557. "0;-57,0%",
  4558. "0;-10,0%"
  4559. ]
  4560. },
  4561. "orientation": {
  4562. "type": "double",
  4563. "value": "0;0"
  4564. },
  4565. "scale": {
  4566. "type": "list<double>",
  4567. "value": [
  4568. 1,
  4569. 1
  4570. ]
  4571. },
  4572. "arrow": "arrowHead",
  4573. "arrowType": "triangle-white-large",
  4574. "$linkDecoratorInfo": {
  4575. "type": "map<string,double>",
  4576. "value": {
  4577. "xratio": -1,
  4578. "yoffset": -10
  4579. }
  4580. }
  4581. },
  4582. "290": {
  4583. "segments": {
  4584. "type": "string",
  4585. "value": "m0,0 l-20,10 l20,10 z"
  4586. },
  4587. "style": {
  4588. "type": "map<string,string>",
  4589. "value": {
  4590. "stroke": "#000000",
  4591. "fill": "#000000",
  4592. "opacity": 0,
  4593. "stroke-width": 1
  4594. }
  4595. },
  4596. "mapper": {
  4597. "type": "code",
  4598. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4599. },
  4600. "parser": {
  4601. "type": "code",
  4602. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4603. },
  4604. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4605. "position": {
  4606. "type": "list<double>",
  4607. "value": [
  4608. "0;-57,0%",
  4609. "0;-10,0%"
  4610. ]
  4611. },
  4612. "orientation": {
  4613. "type": "double",
  4614. "value": "0;0"
  4615. },
  4616. "scale": {
  4617. "type": "list<double>",
  4618. "value": [
  4619. 1,
  4620. 1
  4621. ]
  4622. },
  4623. "arrow": "arrowHead",
  4624. "arrowType": "triangle-black-large",
  4625. "$linkDecoratorInfo": {
  4626. "type": "map<string,double>",
  4627. "value": {
  4628. "xratio": -1,
  4629. "yoffset": -10
  4630. }
  4631. }
  4632. },
  4633. "291": {
  4634. "r": {
  4635. "type": "double",
  4636. "value": 5
  4637. },
  4638. "style": {
  4639. "type": "map<string,string>",
  4640. "value": {
  4641. "stroke": "#000000",
  4642. "fill": "#000000",
  4643. "opacity": 0,
  4644. "stroke-width": 1
  4645. }
  4646. },
  4647. "mapper": {
  4648. "type": "code",
  4649. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4650. },
  4651. "parser": {
  4652. "type": "code",
  4653. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4654. },
  4655. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4656. "position": {
  4657. "type": "list<double>",
  4658. "value": [
  4659. "0;-57,0%",
  4660. "0;-5,0%"
  4661. ]
  4662. },
  4663. "orientation": {
  4664. "type": "double",
  4665. "value": "0;0"
  4666. },
  4667. "scale": {
  4668. "type": "list<double>",
  4669. "value": [
  4670. 1,
  4671. 1
  4672. ]
  4673. },
  4674. "arrow": "arrowHead",
  4675. "arrowType": "circle-black",
  4676. "$linkDecoratorInfo": {
  4677. "type": "map<string,double>",
  4678. "value": {
  4679. "xratio": -1,
  4680. "yoffset": -5
  4681. }
  4682. }
  4683. },
  4684. "292": {
  4685. "r": {
  4686. "type": "double",
  4687. "value": 5
  4688. },
  4689. "style": {
  4690. "type": "map<string,string>",
  4691. "value": {
  4692. "stroke": "#000000",
  4693. "fill": "#ffffff",
  4694. "opacity": 0,
  4695. "stroke-width": 1
  4696. }
  4697. },
  4698. "mapper": {
  4699. "type": "code",
  4700. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4701. },
  4702. "parser": {
  4703. "type": "code",
  4704. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4705. },
  4706. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4707. "position": {
  4708. "type": "list<double>",
  4709. "value": [
  4710. "0;-57,0%",
  4711. "0;-5,0%"
  4712. ]
  4713. },
  4714. "orientation": {
  4715. "type": "double",
  4716. "value": "0;0"
  4717. },
  4718. "scale": {
  4719. "type": "list<double>",
  4720. "value": [
  4721. 1,
  4722. 1
  4723. ]
  4724. },
  4725. "arrow": "arrowHead",
  4726. "arrowType": "circle-white",
  4727. "$linkDecoratorInfo": {
  4728. "type": "map<string,double>",
  4729. "value": {
  4730. "xratio": -1,
  4731. "yoffset": -5
  4732. }
  4733. }
  4734. },
  4735. "293": {
  4736. "r": {
  4737. "type": "double",
  4738. "value": 10
  4739. },
  4740. "style": {
  4741. "type": "map<string,string>",
  4742. "value": {
  4743. "stroke": "#000000",
  4744. "fill": "#ffffff",
  4745. "opacity": 0,
  4746. "stroke-width": 1
  4747. }
  4748. },
  4749. "mapper": {
  4750. "type": "code",
  4751. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4752. },
  4753. "parser": {
  4754. "type": "code",
  4755. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4756. },
  4757. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4758. "position": {
  4759. "type": "list<double>",
  4760. "value": [
  4761. "0;-57,0%",
  4762. "0;-10,0%"
  4763. ]
  4764. },
  4765. "orientation": {
  4766. "type": "double",
  4767. "value": "0;0"
  4768. },
  4769. "scale": {
  4770. "type": "list<double>",
  4771. "value": [
  4772. 1,
  4773. 1
  4774. ]
  4775. },
  4776. "arrow": "arrowHead",
  4777. "arrowType": "circle-white-large",
  4778. "$linkDecoratorInfo": {
  4779. "type": "map<string,double>",
  4780. "value": {
  4781. "xratio": -1,
  4782. "yoffset": -10
  4783. }
  4784. }
  4785. },
  4786. "294": {
  4787. "segments": {
  4788. "type": "string",
  4789. "value": "m0,0 l-20,8 l20,8"
  4790. },
  4791. "style": {
  4792. "type": "map<string,string>",
  4793. "value": {
  4794. "stroke": "#000000",
  4795. "fill": "#000000",
  4796. "fill-opacity": 0,
  4797. "stroke-width": 1,
  4798. "opacity": 0
  4799. }
  4800. },
  4801. "mapper": {
  4802. "type": "code",
  4803. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4804. },
  4805. "parser": {
  4806. "type": "code",
  4807. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4808. },
  4809. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4810. "position": {
  4811. "type": "list<double>",
  4812. "value": [
  4813. "0;-57,0%",
  4814. "0;-8,0%"
  4815. ]
  4816. },
  4817. "orientation": {
  4818. "type": "double",
  4819. "value": "0;0"
  4820. },
  4821. "scale": {
  4822. "type": "list<double>",
  4823. "value": [
  4824. 1,
  4825. 1
  4826. ]
  4827. },
  4828. "arrow": "arrowHead",
  4829. "arrowType": "arrow-empty-large",
  4830. "$linkDecoratorInfo": {
  4831. "type": "map<string,double>",
  4832. "value": {
  4833. "xratio": -1,
  4834. "yoffset": -8
  4835. }
  4836. }
  4837. },
  4838. "295": {
  4839. "segments": {
  4840. "type": "string",
  4841. "value": "m0,0 l-10,4 l10,4"
  4842. },
  4843. "style": {
  4844. "type": "map<string,string>",
  4845. "value": {
  4846. "stroke": "#000000",
  4847. "fill": "#000000",
  4848. "fill-opacity": 0,
  4849. "stroke-width": 1,
  4850. "opacity": 0
  4851. }
  4852. },
  4853. "mapper": {
  4854. "type": "code",
  4855. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4856. },
  4857. "parser": {
  4858. "type": "code",
  4859. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4860. },
  4861. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4862. "position": {
  4863. "type": "list<double>",
  4864. "value": [
  4865. "0;-57,0%",
  4866. "0;-4,0%"
  4867. ]
  4868. },
  4869. "orientation": {
  4870. "type": "double",
  4871. "value": "0;0"
  4872. },
  4873. "scale": {
  4874. "type": "list<double>",
  4875. "value": [
  4876. 1,
  4877. 1
  4878. ]
  4879. },
  4880. "arrow": "arrowHead",
  4881. "arrowType": "arrow-empty",
  4882. "$linkDecoratorInfo": {
  4883. "type": "map<string,double>",
  4884. "value": {
  4885. "xratio": -1,
  4886. "yoffset": -4
  4887. }
  4888. }
  4889. },
  4890. "296": {
  4891. "segments": {
  4892. "type": "string",
  4893. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4894. },
  4895. "style": {
  4896. "type": "map<string,string>",
  4897. "value": {
  4898. "stroke": "#000000",
  4899. "fill": "#000000",
  4900. "opacity": 0,
  4901. "stroke-width": 1
  4902. }
  4903. },
  4904. "mapper": {
  4905. "type": "code",
  4906. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4907. },
  4908. "parser": {
  4909. "type": "code",
  4910. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4911. },
  4912. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4913. "position": {
  4914. "type": "list<double>",
  4915. "value": [
  4916. "0;-57,0%",
  4917. "0;-10,0%"
  4918. ]
  4919. },
  4920. "orientation": {
  4921. "type": "double",
  4922. "value": "0;0"
  4923. },
  4924. "scale": {
  4925. "type": "list<double>",
  4926. "value": [
  4927. 1,
  4928. 1
  4929. ]
  4930. },
  4931. "arrow": "arrowHead",
  4932. "arrowType": "diamond-black-large",
  4933. "$linkDecoratorInfo": {
  4934. "type": "map<string,double>",
  4935. "value": {
  4936. "xratio": -1,
  4937. "yoffset": -10
  4938. }
  4939. }
  4940. },
  4941. "297": {
  4942. "segments": {
  4943. "type": "string",
  4944. "value": "m0,0 l-10,4 l10,4 z"
  4945. },
  4946. "style": {
  4947. "type": "map<string,string>",
  4948. "value": {
  4949. "stroke": "#000000",
  4950. "fill": "#000000",
  4951. "opacity": 0,
  4952. "stroke-width": 1
  4953. }
  4954. },
  4955. "mapper": {
  4956. "type": "code",
  4957. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4958. },
  4959. "parser": {
  4960. "type": "code",
  4961. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  4962. },
  4963. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4964. "position": {
  4965. "type": "list<double>",
  4966. "value": [
  4967. "0;-57,0%",
  4968. "0;-4,0%"
  4969. ]
  4970. },
  4971. "orientation": {
  4972. "type": "double",
  4973. "value": "0;0"
  4974. },
  4975. "scale": {
  4976. "type": "list<double>",
  4977. "value": [
  4978. 1,
  4979. 1
  4980. ]
  4981. },
  4982. "arrow": "arrowHead",
  4983. "arrowType": "triangle-black",
  4984. "$linkDecoratorInfo": {
  4985. "type": "map<string,double>",
  4986. "value": {
  4987. "xratio": -1,
  4988. "yoffset": -4
  4989. }
  4990. }
  4991. },
  4992. "298": {
  4993. "segments": {
  4994. "type": "string",
  4995. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4996. },
  4997. "style": {
  4998. "type": "map<string,string>",
  4999. "value": {
  5000. "stroke": "#000000",
  5001. "fill": "#ffffff",
  5002. "opacity": 0,
  5003. "stroke-width": 1
  5004. }
  5005. },
  5006. "mapper": {
  5007. "type": "code",
  5008. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5009. },
  5010. "parser": {
  5011. "type": "code",
  5012. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  5013. },
  5014. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5015. "position": {
  5016. "type": "list<double>",
  5017. "value": [
  5018. "0;-57,0%",
  5019. "0;-10,0%"
  5020. ]
  5021. },
  5022. "orientation": {
  5023. "type": "double",
  5024. "value": "0;0"
  5025. },
  5026. "scale": {
  5027. "type": "list<double>",
  5028. "value": [
  5029. 1,
  5030. 1
  5031. ]
  5032. },
  5033. "arrow": "arrowHead",
  5034. "arrowType": "diamond-white-large",
  5035. "$linkDecoratorInfo": {
  5036. "type": "map<string,double>",
  5037. "value": {
  5038. "xratio": -1,
  5039. "yoffset": -10
  5040. }
  5041. }
  5042. },
  5043. "__pLabelText": {
  5044. "position": {
  5045. "type": "list<double>",
  5046. "value": [
  5047. 0,
  5048. 0
  5049. ]
  5050. },
  5051. "orientation": {
  5052. "type": "double",
  5053. "value": 0
  5054. },
  5055. "scale": {
  5056. "type": "list<double>",
  5057. "value": [
  5058. 1,
  5059. 1
  5060. ]
  5061. },
  5062. "textContent": {
  5063. "type": "string",
  5064. "value": "2"
  5065. },
  5066. "style": {
  5067. "type": "map<string,string>",
  5068. "value": {
  5069. "stroke": "#6000ff",
  5070. "fill": "#6000ff",
  5071. "font-size": "15px",
  5072. "opacity": "1"
  5073. }
  5074. },
  5075. "mapper": {
  5076. "type": "code",
  5077. "value": "({'textContent':getAttr('__pLabel')})"
  5078. },
  5079. "parser": {
  5080. "type": "code",
  5081. "value": "({'__pLabel':getAttr('textContent')})"
  5082. },
  5083. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  5084. }
  5085. },
  5086. "edges": []
  5087. }
  5088. },
  5089. "$asuri": {
  5090. "type": "string",
  5091. "value": "/Formalisms/FSA/FSA.pattern/__pTransition/21.instance"
  5092. },
  5093. "$segments": {
  5094. "type": "map<string,list<string>>",
  5095. "value": {
  5096. "/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/18.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pTransitionLink/21.instance": "M684,406L741,406",
  5097. "/Formalisms/FSA/FSA.defaultIcons.pattern/__pTransitionLink/21.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/19.instance": "M741.0761946700948,406L797.9997369959988,406"
  5098. }
  5099. },
  5100. "$type": "/Formalisms/FSA/FSA.defaultIcons.pattern/__pTransitionLink"
  5101. },
  5102. "22": {
  5103. "link-style": {
  5104. "type": "map<string,string>",
  5105. "value": {
  5106. "stroke": "#00ff00",
  5107. "stroke-dasharray": "",
  5108. "stroke-opacity": 0.2,
  5109. "stroke-width": 1,
  5110. "arrow-start": "none",
  5111. "arrow-end": "classic-wide-long"
  5112. }
  5113. },
  5114. "typename": {
  5115. "type": "string",
  5116. "value": "PatternContentsLink"
  5117. },
  5118. "position": {
  5119. "type": "list<double>",
  5120. "value": [
  5121. 556.5961110935325,
  5122. 304.11555553442054
  5123. ]
  5124. },
  5125. "orientation": {
  5126. "type": "double",
  5127. "value": 0
  5128. },
  5129. "scale": {
  5130. "type": "list<double>",
  5131. "value": [
  5132. 1,
  5133. 1
  5134. ]
  5135. },
  5136. "mapper": {
  5137. "type": "code",
  5138. "value": ""
  5139. },
  5140. "parser": {
  5141. "type": "code",
  5142. "value": ""
  5143. },
  5144. "$contents": {
  5145. "type": "map<string,*>",
  5146. "value": {
  5147. "nodes": {},
  5148. "edges": []
  5149. }
  5150. },
  5151. "$asuri": {
  5152. "type": "string",
  5153. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/22.instance"
  5154. },
  5155. "$segments": {
  5156. "type": "map<string,list<string>>",
  5157. "value": {
  5158. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/17.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/22.instance": "M470,200L556.5961110935325,304.11555553442054",
  5159. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/22.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/18.instance": "M556.5959687067791,304.1153843410988L642.9997153669665,407.99965778224873"
  5160. }
  5161. },
  5162. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  5163. },
  5164. "23": {
  5165. "link-style": {
  5166. "type": "map<string,string>",
  5167. "value": {
  5168. "stroke": "#00ff00",
  5169. "stroke-dasharray": "",
  5170. "stroke-opacity": 0.2,
  5171. "stroke-width": 1,
  5172. "arrow-start": "none",
  5173. "arrow-end": "classic-wide-long"
  5174. }
  5175. },
  5176. "typename": {
  5177. "type": "string",
  5178. "value": "PatternContentsLink"
  5179. },
  5180. "position": {
  5181. "type": "list<double>",
  5182. "value": [
  5183. 655.1305882256543,
  5184. 305.0741176415876
  5185. ]
  5186. },
  5187. "orientation": {
  5188. "type": "double",
  5189. "value": 0
  5190. },
  5191. "scale": {
  5192. "type": "list<double>",
  5193. "value": [
  5194. 1,
  5195. 1
  5196. ]
  5197. },
  5198. "mapper": {
  5199. "type": "code",
  5200. "value": ""
  5201. },
  5202. "parser": {
  5203. "type": "code",
  5204. "value": ""
  5205. },
  5206. "$contents": {
  5207. "type": "map<string,*>",
  5208. "value": {
  5209. "nodes": {},
  5210. "edges": []
  5211. }
  5212. },
  5213. "$asuri": {
  5214. "type": "string",
  5215. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/23.instance"
  5216. },
  5217. "$segments": {
  5218. "type": "map<string,list<string>>",
  5219. "value": {
  5220. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/17.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/23.instance": "M470,200L655.1305882256543,305.0741176415876",
  5221. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/23.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pStateIcon/19.instance": "M655.0651097565906,305.03695418617315L839.9994471806879,409.9996862376878"
  5222. }
  5223. },
  5224. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  5225. },
  5226. "24": {
  5227. "link-style": {
  5228. "type": "map<string,string>",
  5229. "value": {
  5230. "stroke": "#00ff00",
  5231. "stroke-dasharray": "",
  5232. "stroke-opacity": 0.2,
  5233. "stroke-width": 1,
  5234. "arrow-start": "none",
  5235. "arrow-end": "classic-wide-long"
  5236. }
  5237. },
  5238. "typename": {
  5239. "type": "string",
  5240. "value": "PatternContentsLink"
  5241. },
  5242. "position": {
  5243. "type": "list<double>",
  5244. "value": [
  5245. 599.5991071342577,
  5246. 347.61288264326646
  5247. ]
  5248. },
  5249. "orientation": {
  5250. "type": "double",
  5251. "value": 0
  5252. },
  5253. "scale": {
  5254. "type": "list<double>",
  5255. "value": [
  5256. 1,
  5257. 1
  5258. ]
  5259. },
  5260. "mapper": {
  5261. "type": "code",
  5262. "value": ""
  5263. },
  5264. "parser": {
  5265. "type": "code",
  5266. "value": ""
  5267. },
  5268. "$contents": {
  5269. "type": "map<string,*>",
  5270. "value": {
  5271. "nodes": {},
  5272. "edges": []
  5273. }
  5274. },
  5275. "$asuri": {
  5276. "type": "string",
  5277. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/24.instance"
  5278. },
  5279. "$segments": {
  5280. "type": "map<string,list<string>>",
  5281. "value": {
  5282. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/17.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/24.instance": "M470,200L599.5991071342578,347.6128826432665",
  5283. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/24.instance--/Formalisms/FSA/FSA.defaultIcons.pattern/__pInputEventsIcon/20.instance": "M599.5494018757572,347.55626854574655L728.9995451483665,494.9994819257455"
  5284. }
  5285. },
  5286. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  5287. }
  5288. },
  5289. "edges": [],
  5290. "metamodels": [
  5291. "/Formalisms/FSA/FSA.defaultIcons.pattern",
  5292. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons"
  5293. ]
  5294. },
  5295. "asm": {
  5296. "nodes": {
  5297. "4": {
  5298. "Condition": {
  5299. "type": "code",
  5300. "value": "result = getAttr(\"eventList\", \"3\").startswith(getAttr(\"event\", \"2\"))"
  5301. },
  5302. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  5303. },
  5304. "5": {
  5305. "__pLabel": {
  5306. "type": "string",
  5307. "value": "0"
  5308. },
  5309. "__pPivotIn": {
  5310. "type": "string",
  5311. "value": ""
  5312. },
  5313. "__pPivotOut": {
  5314. "type": "string",
  5315. "value": ""
  5316. },
  5317. "__pMatchSubtypes": {
  5318. "type": "boolean",
  5319. "value": false
  5320. },
  5321. "name": {
  5322. "type": "code",
  5323. "value": "result = True"
  5324. },
  5325. "current": {
  5326. "type": "code",
  5327. "value": "result = bool(getAttr('current'))"
  5328. },
  5329. "$type": "/Formalisms/FSA/FSA.pattern/__pState"
  5330. },
  5331. "6": {
  5332. "__pLabel": {
  5333. "type": "string",
  5334. "value": "1"
  5335. },
  5336. "__pPivotIn": {
  5337. "type": "string",
  5338. "value": ""
  5339. },
  5340. "__pPivotOut": {
  5341. "type": "string",
  5342. "value": ""
  5343. },
  5344. "__pMatchSubtypes": {
  5345. "type": "boolean",
  5346. "value": false
  5347. },
  5348. "name": {
  5349. "type": "code",
  5350. "value": "result = True"
  5351. },
  5352. "current": {
  5353. "type": "code",
  5354. "value": "result = True"
  5355. },
  5356. "$type": "/Formalisms/FSA/FSA.pattern/__pState"
  5357. },
  5358. "7": {
  5359. "__pLabel": {
  5360. "type": "string",
  5361. "value": "3"
  5362. },
  5363. "__pPivotIn": {
  5364. "type": "string",
  5365. "value": ""
  5366. },
  5367. "__pPivotOut": {
  5368. "type": "string",
  5369. "value": ""
  5370. },
  5371. "__pMatchSubtypes": {
  5372. "type": "boolean",
  5373. "value": false
  5374. },
  5375. "eventList": {
  5376. "type": "code",
  5377. "value": "result = True"
  5378. },
  5379. "$type": "/Formalisms/FSA/FSA.pattern/__pInputEvents"
  5380. },
  5381. "8": {
  5382. "__pLabel": {
  5383. "type": "string",
  5384. "value": "2"
  5385. },
  5386. "__pPivotIn": {
  5387. "type": "string",
  5388. "value": ""
  5389. },
  5390. "__pPivotOut": {
  5391. "type": "string",
  5392. "value": ""
  5393. },
  5394. "__pMatchSubtypes": {
  5395. "type": "boolean",
  5396. "value": false
  5397. },
  5398. "event": {
  5399. "type": "code",
  5400. "value": "result = True"
  5401. },
  5402. "$type": "/Formalisms/FSA/FSA.pattern/__pTransition"
  5403. },
  5404. "9": {
  5405. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  5406. },
  5407. "10": {
  5408. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  5409. },
  5410. "11": {
  5411. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  5412. },
  5413. "17": {
  5414. "Action": {
  5415. "type": "code",
  5416. "value": ""
  5417. },
  5418. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  5419. },
  5420. "18": {
  5421. "__pLabel": {
  5422. "type": "string",
  5423. "value": "0"
  5424. },
  5425. "__pPivotIn": {
  5426. "type": "string",
  5427. "value": ""
  5428. },
  5429. "__pPivotOut": {
  5430. "type": "string",
  5431. "value": ""
  5432. },
  5433. "__pMatchSubtypes": {
  5434. "type": "boolean"
  5435. },
  5436. "name": {
  5437. "type": "code",
  5438. "value": "result = getAttr()"
  5439. },
  5440. "current": {
  5441. "type": "code",
  5442. "value": "result = False"
  5443. },
  5444. "$type": "/Formalisms/FSA/FSA.pattern/__pState"
  5445. },
  5446. "19": {
  5447. "__pLabel": {
  5448. "type": "string",
  5449. "value": "1"
  5450. },
  5451. "__pPivotIn": {
  5452. "type": "string",
  5453. "value": ""
  5454. },
  5455. "__pPivotOut": {
  5456. "type": "string",
  5457. "value": ""
  5458. },
  5459. "__pMatchSubtypes": {
  5460. "type": "boolean"
  5461. },
  5462. "name": {
  5463. "type": "code",
  5464. "value": "result = getAttr()"
  5465. },
  5466. "current": {
  5467. "type": "code",
  5468. "value": "result = True"
  5469. },
  5470. "$type": "/Formalisms/FSA/FSA.pattern/__pState"
  5471. },
  5472. "20": {
  5473. "__pLabel": {
  5474. "type": "string",
  5475. "value": "3"
  5476. },
  5477. "__pPivotIn": {
  5478. "type": "string",
  5479. "value": ""
  5480. },
  5481. "__pPivotOut": {
  5482. "type": "string",
  5483. "value": ""
  5484. },
  5485. "__pMatchSubtypes": {
  5486. "type": "boolean"
  5487. },
  5488. "eventList": {
  5489. "type": "code",
  5490. "value": "result = getAttr()[1:]"
  5491. },
  5492. "$type": "/Formalisms/FSA/FSA.pattern/__pInputEvents"
  5493. },
  5494. "21": {
  5495. "__pLabel": {
  5496. "type": "string",
  5497. "value": "2"
  5498. },
  5499. "__pPivotIn": {
  5500. "type": "string",
  5501. "value": ""
  5502. },
  5503. "__pPivotOut": {
  5504. "type": "string",
  5505. "value": ""
  5506. },
  5507. "__pMatchSubtypes": {
  5508. "type": "boolean"
  5509. },
  5510. "event": {
  5511. "type": "code",
  5512. "value": "result = getAttr()"
  5513. },
  5514. "$type": "/Formalisms/FSA/FSA.pattern/__pTransition"
  5515. },
  5516. "22": {
  5517. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  5518. },
  5519. "23": {
  5520. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  5521. },
  5522. "24": {
  5523. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  5524. }
  5525. },
  5526. "edges": [
  5527. {
  5528. "src": "5",
  5529. "dest": "8"
  5530. },
  5531. {
  5532. "src": "8",
  5533. "dest": "6"
  5534. },
  5535. {
  5536. "src": "4",
  5537. "dest": "9"
  5538. },
  5539. {
  5540. "src": "9",
  5541. "dest": "5"
  5542. },
  5543. {
  5544. "src": "4",
  5545. "dest": "10"
  5546. },
  5547. {
  5548. "src": "10",
  5549. "dest": "6"
  5550. },
  5551. {
  5552. "src": "4",
  5553. "dest": "11"
  5554. },
  5555. {
  5556. "src": "11",
  5557. "dest": "7"
  5558. },
  5559. {
  5560. "src": "18",
  5561. "dest": "21"
  5562. },
  5563. {
  5564. "src": "21",
  5565. "dest": "19"
  5566. },
  5567. {
  5568. "src": "17",
  5569. "dest": "22"
  5570. },
  5571. {
  5572. "src": "22",
  5573. "dest": "18"
  5574. },
  5575. {
  5576. "src": "17",
  5577. "dest": "23"
  5578. },
  5579. {
  5580. "src": "23",
  5581. "dest": "19"
  5582. },
  5583. {
  5584. "src": "17",
  5585. "dest": "24"
  5586. },
  5587. {
  5588. "src": "24",
  5589. "dest": "20"
  5590. }
  5591. ],
  5592. "metamodels": [
  5593. "/Formalisms/FSA/FSA.pattern",
  5594. "/Formalisms/__Transformations__/TransformationRule/TransformationRule"
  5595. ]
  5596. }
  5597. }