LCA.defaultIcons.model 161 KB

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