TheRace.model 241 KB

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