Traffic.defaultIcons.model 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "IconIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 76,
  13. 100
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "1": {
  40. "width": {
  41. "type": "double",
  42. "value": "200"
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": "150"
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": "10"
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "- ",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "stroke-width": 1
  60. }
  61. },
  62. "mapper": {
  63. "type": "code",
  64. "value": ""
  65. },
  66. "parser": {
  67. "type": "code",
  68. "value": ""
  69. },
  70. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  71. "position": {
  72. "type": "list<double>",
  73. "value": [
  74. 0,
  75. 0
  76. ]
  77. },
  78. "orientation": {
  79. "type": "double",
  80. "value": 0
  81. },
  82. "scale": {
  83. "type": "list<double>",
  84. "value": [
  85. 1,
  86. 1
  87. ]
  88. }
  89. },
  90. "2": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "GeneratorIcon"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "stroke-dasharray": "",
  100. "fill": "#000000",
  101. "fill-opacity": "1",
  102. "font-size": "13px"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "({\"textContent\":getAttr(\"typename\")})"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({\"typename\":getAttr(\"textContent\")})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 58,
  118. 151
  119. ]
  120. },
  121. "orientation": {
  122. "type": "double",
  123. "value": 0
  124. },
  125. "scale": {
  126. "type": "list<double>",
  127. "value": [
  128. 1,
  129. 1
  130. ]
  131. }
  132. },
  133. "3": {
  134. "distance": {
  135. "type": "double",
  136. "value": 0
  137. },
  138. "alignment": {
  139. "type": "ENUM(\"right\",\"left\",\"center\")",
  140. "value": "center"
  141. },
  142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  143. "position": {
  144. "type": "list<double>",
  145. "value": [
  146. 93.49899850809561,
  147. 137.49900000000002
  148. ]
  149. },
  150. "orientation": {
  151. "type": "double",
  152. "value": 0
  153. },
  154. "scale": {
  155. "type": "list<double>",
  156. "value": [
  157. 1,
  158. 1
  159. ]
  160. },
  161. "link-style": {
  162. "type": "map<string,string>",
  163. "value": {
  164. "stroke": "#00ff00",
  165. "stroke-dasharray": "",
  166. "stroke-opacity": 1,
  167. "arrow-start": "none",
  168. "arrow-end": "classic-wide-long"
  169. }
  170. }
  171. }
  172. },
  173. "edges": [
  174. {
  175. "src": "2",
  176. "dest": 3
  177. },
  178. {
  179. "src": 3,
  180. "dest": "1"
  181. }
  182. ]
  183. }
  184. },
  185. "$asuri": {
  186. "type": "string",
  187. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/0.instance"
  188. },
  189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  190. },
  191. "1": {
  192. "typename": {
  193. "type": "string",
  194. "value": "IconIcon"
  195. },
  196. "position": {
  197. "type": "list<double>",
  198. "value": [
  199. 76,
  200. 377
  201. ]
  202. },
  203. "orientation": {
  204. "type": "double",
  205. "value": 0
  206. },
  207. "scale": {
  208. "type": "list<double>",
  209. "value": [
  210. 1.7103,
  211. 1.1576250000000001
  212. ]
  213. },
  214. "mapper": {
  215. "type": "code",
  216. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  217. },
  218. "parser": {
  219. "type": "code",
  220. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  221. },
  222. "$contents": {
  223. "type": "map<string,*>",
  224. "value": {
  225. "nodes": {
  226. "1": {
  227. "width": {
  228. "type": "double",
  229. "value": "200"
  230. },
  231. "height": {
  232. "type": "double",
  233. "value": "150"
  234. },
  235. "cornerRadius": {
  236. "type": "double",
  237. "value": "10"
  238. },
  239. "style": {
  240. "type": "map<string,string>",
  241. "value": {
  242. "stroke": "#000000",
  243. "stroke-dasharray": "- ",
  244. "fill": "#ffffff",
  245. "fill-opacity": 0.75,
  246. "stroke-width": 1
  247. }
  248. },
  249. "mapper": {
  250. "type": "code",
  251. "value": ""
  252. },
  253. "parser": {
  254. "type": "code",
  255. "value": ""
  256. },
  257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  258. "position": {
  259. "type": "list<double>",
  260. "value": [
  261. 0,
  262. 0
  263. ]
  264. },
  265. "orientation": {
  266. "type": "double",
  267. "value": 0
  268. },
  269. "scale": {
  270. "type": "list<double>",
  271. "value": [
  272. 1,
  273. 1
  274. ]
  275. }
  276. },
  277. "2": {
  278. "textContent": {
  279. "type": "string",
  280. "value": "RoadSegmentIcon"
  281. },
  282. "style": {
  283. "type": "map<string,string>",
  284. "value": {
  285. "stroke": "#000000",
  286. "stroke-dasharray": "",
  287. "fill": "#000000",
  288. "fill-opacity": "1",
  289. "font-size": "13px"
  290. }
  291. },
  292. "mapper": {
  293. "type": "code",
  294. "value": "({\"textContent\":getAttr(\"typename\")})"
  295. },
  296. "parser": {
  297. "type": "code",
  298. "value": "({\"typename\":getAttr(\"textContent\")})"
  299. },
  300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  301. "position": {
  302. "type": "list<double>",
  303. "value": [
  304. 58,
  305. 151
  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. },
  320. "3": {
  321. "distance": {
  322. "type": "double",
  323. "value": 0
  324. },
  325. "alignment": {
  326. "type": "ENUM(\"right\",\"left\",\"center\")",
  327. "value": "center"
  328. },
  329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  330. "position": {
  331. "type": "list<double>",
  332. "value": [
  333. 93.49899850809561,
  334. 137.49900000000002
  335. ]
  336. },
  337. "orientation": {
  338. "type": "double",
  339. "value": 0
  340. },
  341. "scale": {
  342. "type": "list<double>",
  343. "value": [
  344. 1,
  345. 1
  346. ]
  347. },
  348. "link-style": {
  349. "type": "map<string,string>",
  350. "value": {
  351. "stroke": "#00ff00",
  352. "stroke-dasharray": "",
  353. "stroke-opacity": 1,
  354. "arrow-start": "none",
  355. "arrow-end": "classic-wide-long"
  356. }
  357. }
  358. }
  359. },
  360. "edges": [
  361. {
  362. "src": "2",
  363. "dest": 3
  364. },
  365. {
  366. "src": 3,
  367. "dest": "1"
  368. }
  369. ]
  370. }
  371. },
  372. "$asuri": {
  373. "type": "string",
  374. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/1.instance"
  375. },
  376. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  377. },
  378. "2": {
  379. "typename": {
  380. "type": "string",
  381. "value": "IconIcon"
  382. },
  383. "position": {
  384. "type": "list<double>",
  385. "value": [
  386. 476,
  387. 425
  388. ]
  389. },
  390. "orientation": {
  391. "type": "double",
  392. "value": 0
  393. },
  394. "scale": {
  395. "type": "list<double>",
  396. "value": [
  397. 1,
  398. 1
  399. ]
  400. },
  401. "mapper": {
  402. "type": "code",
  403. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  404. },
  405. "parser": {
  406. "type": "code",
  407. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  408. },
  409. "$contents": {
  410. "type": "map<string,*>",
  411. "value": {
  412. "nodes": {
  413. "1": {
  414. "width": {
  415. "type": "double",
  416. "value": "200"
  417. },
  418. "height": {
  419. "type": "double",
  420. "value": "150"
  421. },
  422. "cornerRadius": {
  423. "type": "double",
  424. "value": "10"
  425. },
  426. "style": {
  427. "type": "map<string,string>",
  428. "value": {
  429. "stroke": "#000000",
  430. "stroke-dasharray": "- ",
  431. "fill": "#ffffff",
  432. "fill-opacity": 0.75,
  433. "stroke-width": 1
  434. }
  435. },
  436. "mapper": {
  437. "type": "code",
  438. "value": ""
  439. },
  440. "parser": {
  441. "type": "code",
  442. "value": ""
  443. },
  444. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  445. "position": {
  446. "type": "list<double>",
  447. "value": [
  448. 0,
  449. 0
  450. ]
  451. },
  452. "orientation": {
  453. "type": "double",
  454. "value": 0
  455. },
  456. "scale": {
  457. "type": "list<double>",
  458. "value": [
  459. 1,
  460. 1
  461. ]
  462. }
  463. },
  464. "2": {
  465. "textContent": {
  466. "type": "string",
  467. "value": "CarIcon"
  468. },
  469. "style": {
  470. "type": "map<string,string>",
  471. "value": {
  472. "stroke": "#000000",
  473. "stroke-dasharray": "",
  474. "fill": "#000000",
  475. "fill-opacity": "1",
  476. "font-size": "13px"
  477. }
  478. },
  479. "mapper": {
  480. "type": "code",
  481. "value": "({\"textContent\":getAttr(\"typename\")})"
  482. },
  483. "parser": {
  484. "type": "code",
  485. "value": "({\"typename\":getAttr(\"textContent\")})"
  486. },
  487. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  488. "position": {
  489. "type": "list<double>",
  490. "value": [
  491. 58,
  492. 151
  493. ]
  494. },
  495. "orientation": {
  496. "type": "double",
  497. "value": 0
  498. },
  499. "scale": {
  500. "type": "list<double>",
  501. "value": [
  502. 1,
  503. 1
  504. ]
  505. }
  506. },
  507. "3": {
  508. "distance": {
  509. "type": "double",
  510. "value": 0
  511. },
  512. "alignment": {
  513. "type": "ENUM(\"right\",\"left\",\"center\")",
  514. "value": "center"
  515. },
  516. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  517. "position": {
  518. "type": "list<double>",
  519. "value": [
  520. 93.49899850809561,
  521. 137.49900000000002
  522. ]
  523. },
  524. "orientation": {
  525. "type": "double",
  526. "value": 0
  527. },
  528. "scale": {
  529. "type": "list<double>",
  530. "value": [
  531. 1,
  532. 1
  533. ]
  534. },
  535. "link-style": {
  536. "type": "map<string,string>",
  537. "value": {
  538. "stroke": "#00ff00",
  539. "stroke-dasharray": "",
  540. "stroke-opacity": 1,
  541. "arrow-start": "none",
  542. "arrow-end": "classic-wide-long"
  543. }
  544. }
  545. }
  546. },
  547. "edges": [
  548. {
  549. "src": "2",
  550. "dest": 3
  551. },
  552. {
  553. "src": 3,
  554. "dest": "1"
  555. }
  556. ]
  557. }
  558. },
  559. "$asuri": {
  560. "type": "string",
  561. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/2.instance"
  562. },
  563. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  564. },
  565. "3": {
  566. "typename": {
  567. "type": "string",
  568. "value": "LinkIcon"
  569. },
  570. "position": {
  571. "type": "list<double>",
  572. "value": [
  573. 1023,
  574. 124
  575. ]
  576. },
  577. "orientation": {
  578. "type": "double",
  579. "value": 0
  580. },
  581. "scale": {
  582. "type": "list<double>",
  583. "value": [
  584. 1,
  585. 1
  586. ]
  587. },
  588. "mapper": {
  589. "type": "code",
  590. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  591. },
  592. "parser": {
  593. "type": "code",
  594. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  595. },
  596. "$contents": {
  597. "type": "map<string,*>",
  598. "value": {
  599. "nodes": {
  600. "8": {
  601. "width": {
  602. "type": "double",
  603. "value": "200"
  604. },
  605. "height": {
  606. "type": "double",
  607. "value": "150"
  608. },
  609. "cornerRadius": {
  610. "type": "double",
  611. "value": "10"
  612. },
  613. "style": {
  614. "type": "map<string,string>",
  615. "value": {
  616. "stroke": "#000000",
  617. "stroke-dasharray": ". ",
  618. "fill": "#ffffff",
  619. "fill-opacity": 0.75,
  620. "stroke-width": 1
  621. }
  622. },
  623. "mapper": {
  624. "type": "code",
  625. "value": ""
  626. },
  627. "parser": {
  628. "type": "code",
  629. "value": ""
  630. },
  631. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  632. "position": {
  633. "type": "list<double>",
  634. "value": [
  635. 0,
  636. 1
  637. ]
  638. },
  639. "orientation": {
  640. "type": "double",
  641. "value": 0
  642. },
  643. "scale": {
  644. "type": "list<double>",
  645. "value": [
  646. 1,
  647. 1
  648. ]
  649. }
  650. },
  651. "9": {
  652. "textContent": {
  653. "type": "string",
  654. "value": "RS2GLink"
  655. },
  656. "style": {
  657. "type": "map<string,string>",
  658. "value": {
  659. "stroke": "#000000",
  660. "stroke-dasharray": "",
  661. "fill": "#000000",
  662. "fill-opacity": "1",
  663. "font-size": "13px"
  664. }
  665. },
  666. "mapper": {
  667. "type": "code",
  668. "value": "({\"textContent\":getAttr(\"typename\")})"
  669. },
  670. "parser": {
  671. "type": "code",
  672. "value": "({\"typename\":getAttr(\"textContent\")})"
  673. },
  674. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  675. "position": {
  676. "type": "list<double>",
  677. "value": [
  678. 58,
  679. 153
  680. ]
  681. },
  682. "orientation": {
  683. "type": "double",
  684. "value": 0
  685. },
  686. "scale": {
  687. "type": "list<double>",
  688. "value": [
  689. 1,
  690. 1
  691. ]
  692. }
  693. },
  694. "10": {
  695. "distance": {
  696. "type": "double",
  697. "value": 0
  698. },
  699. "alignment": {
  700. "type": "ENUM(\"right\",\"left\",\"center\")",
  701. "value": "center"
  702. },
  703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  704. "position": {
  705. "type": "list<double>",
  706. "value": [
  707. 98.49899850809561,
  708. 131.99900000000002
  709. ]
  710. },
  711. "orientation": {
  712. "type": "double",
  713. "value": 0
  714. },
  715. "scale": {
  716. "type": "list<double>",
  717. "value": [
  718. 1,
  719. 1
  720. ]
  721. },
  722. "link-style": {
  723. "type": "map<string,string>",
  724. "value": {
  725. "stroke": "#00ff00",
  726. "stroke-dasharray": "",
  727. "stroke-opacity": 1,
  728. "arrow-start": "none",
  729. "arrow-end": "classic-wide-long"
  730. }
  731. }
  732. }
  733. },
  734. "edges": [
  735. {
  736. "src": "9",
  737. "dest": 10
  738. },
  739. {
  740. "src": 10,
  741. "dest": "8"
  742. }
  743. ]
  744. }
  745. },
  746. "$asuri": {
  747. "type": "string",
  748. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/3.instance"
  749. },
  750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  751. },
  752. "4": {
  753. "typename": {
  754. "type": "string",
  755. "value": "LinkIcon"
  756. },
  757. "position": {
  758. "type": "list<double>",
  759. "value": [
  760. 1026,
  761. 300
  762. ]
  763. },
  764. "orientation": {
  765. "type": "double",
  766. "value": 0
  767. },
  768. "scale": {
  769. "type": "list<double>",
  770. "value": [
  771. 1,
  772. 1
  773. ]
  774. },
  775. "mapper": {
  776. "type": "code",
  777. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  778. },
  779. "parser": {
  780. "type": "code",
  781. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  782. },
  783. "$contents": {
  784. "type": "map<string,*>",
  785. "value": {
  786. "nodes": {
  787. "8": {
  788. "width": {
  789. "type": "double",
  790. "value": "200"
  791. },
  792. "height": {
  793. "type": "double",
  794. "value": "150"
  795. },
  796. "cornerRadius": {
  797. "type": "double",
  798. "value": "10"
  799. },
  800. "style": {
  801. "type": "map<string,string>",
  802. "value": {
  803. "stroke": "#000000",
  804. "stroke-dasharray": ". ",
  805. "fill": "#ffffff",
  806. "fill-opacity": 0.75,
  807. "stroke-width": 1
  808. }
  809. },
  810. "mapper": {
  811. "type": "code",
  812. "value": ""
  813. },
  814. "parser": {
  815. "type": "code",
  816. "value": ""
  817. },
  818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  819. "position": {
  820. "type": "list<double>",
  821. "value": [
  822. 0,
  823. 1
  824. ]
  825. },
  826. "orientation": {
  827. "type": "double",
  828. "value": 0
  829. },
  830. "scale": {
  831. "type": "list<double>",
  832. "value": [
  833. 1,
  834. 1
  835. ]
  836. }
  837. },
  838. "9": {
  839. "textContent": {
  840. "type": "string",
  841. "value": "RS2RSLink"
  842. },
  843. "style": {
  844. "type": "map<string,string>",
  845. "value": {
  846. "stroke": "#000000",
  847. "stroke-dasharray": "",
  848. "fill": "#000000",
  849. "fill-opacity": "1",
  850. "font-size": "13px"
  851. }
  852. },
  853. "mapper": {
  854. "type": "code",
  855. "value": "({\"textContent\":getAttr(\"typename\")})"
  856. },
  857. "parser": {
  858. "type": "code",
  859. "value": "({\"typename\":getAttr(\"textContent\")})"
  860. },
  861. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  862. "position": {
  863. "type": "list<double>",
  864. "value": [
  865. 58,
  866. 153
  867. ]
  868. },
  869. "orientation": {
  870. "type": "double",
  871. "value": 0
  872. },
  873. "scale": {
  874. "type": "list<double>",
  875. "value": [
  876. 1,
  877. 1
  878. ]
  879. }
  880. },
  881. "10": {
  882. "distance": {
  883. "type": "double",
  884. "value": 0
  885. },
  886. "alignment": {
  887. "type": "ENUM(\"right\",\"left\",\"center\")",
  888. "value": "center"
  889. },
  890. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  891. "position": {
  892. "type": "list<double>",
  893. "value": [
  894. 98.49899850809561,
  895. 131.99900000000002
  896. ]
  897. },
  898. "orientation": {
  899. "type": "double",
  900. "value": 0
  901. },
  902. "scale": {
  903. "type": "list<double>",
  904. "value": [
  905. 1,
  906. 1
  907. ]
  908. },
  909. "link-style": {
  910. "type": "map<string,string>",
  911. "value": {
  912. "stroke": "#00ff00",
  913. "stroke-dasharray": "",
  914. "stroke-opacity": 1,
  915. "arrow-start": "none",
  916. "arrow-end": "classic-wide-long"
  917. }
  918. }
  919. }
  920. },
  921. "edges": [
  922. {
  923. "src": "9",
  924. "dest": 10
  925. },
  926. {
  927. "src": 10,
  928. "dest": "8"
  929. }
  930. ]
  931. }
  932. },
  933. "$asuri": {
  934. "type": "string",
  935. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/4.instance"
  936. },
  937. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  938. },
  939. "5": {
  940. "typename": {
  941. "type": "string",
  942. "value": "LinkIcon"
  943. },
  944. "position": {
  945. "type": "list<double>",
  946. "value": [
  947. 1025,
  948. 474
  949. ]
  950. },
  951. "orientation": {
  952. "type": "double",
  953. "value": 0
  954. },
  955. "scale": {
  956. "type": "list<double>",
  957. "value": [
  958. 1,
  959. 1
  960. ]
  961. },
  962. "mapper": {
  963. "type": "code",
  964. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  965. },
  966. "parser": {
  967. "type": "code",
  968. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  969. },
  970. "$contents": {
  971. "type": "map<string,*>",
  972. "value": {
  973. "nodes": {
  974. "8": {
  975. "width": {
  976. "type": "double",
  977. "value": "200"
  978. },
  979. "height": {
  980. "type": "double",
  981. "value": "150"
  982. },
  983. "cornerRadius": {
  984. "type": "double",
  985. "value": "10"
  986. },
  987. "style": {
  988. "type": "map<string,string>",
  989. "value": {
  990. "stroke": "#000000",
  991. "stroke-dasharray": ". ",
  992. "fill": "#ffffff",
  993. "fill-opacity": 0.75,
  994. "stroke-width": 1
  995. }
  996. },
  997. "mapper": {
  998. "type": "code",
  999. "value": ""
  1000. },
  1001. "parser": {
  1002. "type": "code",
  1003. "value": ""
  1004. },
  1005. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1006. "position": {
  1007. "type": "list<double>",
  1008. "value": [
  1009. 0,
  1010. 1
  1011. ]
  1012. },
  1013. "orientation": {
  1014. "type": "double",
  1015. "value": 0
  1016. },
  1017. "scale": {
  1018. "type": "list<double>",
  1019. "value": [
  1020. 1,
  1021. 1
  1022. ]
  1023. }
  1024. },
  1025. "9": {
  1026. "textContent": {
  1027. "type": "string",
  1028. "value": "S2RSLink"
  1029. },
  1030. "style": {
  1031. "type": "map<string,string>",
  1032. "value": {
  1033. "stroke": "#000000",
  1034. "stroke-dasharray": "",
  1035. "fill": "#000000",
  1036. "fill-opacity": "1",
  1037. "font-size": "13px"
  1038. }
  1039. },
  1040. "mapper": {
  1041. "type": "code",
  1042. "value": "({\"textContent\":getAttr(\"typename\")})"
  1043. },
  1044. "parser": {
  1045. "type": "code",
  1046. "value": "({\"typename\":getAttr(\"textContent\")})"
  1047. },
  1048. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1049. "position": {
  1050. "type": "list<double>",
  1051. "value": [
  1052. 58,
  1053. 153
  1054. ]
  1055. },
  1056. "orientation": {
  1057. "type": "double",
  1058. "value": 0
  1059. },
  1060. "scale": {
  1061. "type": "list<double>",
  1062. "value": [
  1063. 1,
  1064. 1
  1065. ]
  1066. }
  1067. },
  1068. "10": {
  1069. "distance": {
  1070. "type": "double",
  1071. "value": 0
  1072. },
  1073. "alignment": {
  1074. "type": "ENUM(\"right\",\"left\",\"center\")",
  1075. "value": "center"
  1076. },
  1077. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1078. "position": {
  1079. "type": "list<double>",
  1080. "value": [
  1081. 98.49899850809561,
  1082. 131.99900000000002
  1083. ]
  1084. },
  1085. "orientation": {
  1086. "type": "double",
  1087. "value": 0
  1088. },
  1089. "scale": {
  1090. "type": "list<double>",
  1091. "value": [
  1092. 1,
  1093. 1
  1094. ]
  1095. },
  1096. "link-style": {
  1097. "type": "map<string,string>",
  1098. "value": {
  1099. "stroke": "#00ff00",
  1100. "stroke-dasharray": "",
  1101. "stroke-opacity": 1,
  1102. "arrow-start": "none",
  1103. "arrow-end": "classic-wide-long"
  1104. }
  1105. }
  1106. }
  1107. },
  1108. "edges": [
  1109. {
  1110. "src": "9",
  1111. "dest": 10
  1112. },
  1113. {
  1114. "src": 10,
  1115. "dest": "8"
  1116. }
  1117. ]
  1118. }
  1119. },
  1120. "$asuri": {
  1121. "type": "string",
  1122. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/5.instance"
  1123. },
  1124. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  1125. },
  1126. "6": {
  1127. "typename": {
  1128. "type": "string",
  1129. "value": "LinkIcon"
  1130. },
  1131. "position": {
  1132. "type": "list<double>",
  1133. "value": [
  1134. 1026,
  1135. 649
  1136. ]
  1137. },
  1138. "orientation": {
  1139. "type": "double",
  1140. "value": 0
  1141. },
  1142. "scale": {
  1143. "type": "list<double>",
  1144. "value": [
  1145. 1,
  1146. 1
  1147. ]
  1148. },
  1149. "mapper": {
  1150. "type": "code",
  1151. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1152. },
  1153. "parser": {
  1154. "type": "code",
  1155. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1156. },
  1157. "$contents": {
  1158. "type": "map<string,*>",
  1159. "value": {
  1160. "nodes": {
  1161. "8": {
  1162. "width": {
  1163. "type": "double",
  1164. "value": "200"
  1165. },
  1166. "height": {
  1167. "type": "double",
  1168. "value": "150"
  1169. },
  1170. "cornerRadius": {
  1171. "type": "double",
  1172. "value": "10"
  1173. },
  1174. "style": {
  1175. "type": "map<string,string>",
  1176. "value": {
  1177. "stroke": "#000000",
  1178. "stroke-dasharray": ". ",
  1179. "fill": "#ffffff",
  1180. "fill-opacity": 0.75,
  1181. "stroke-width": 1
  1182. }
  1183. },
  1184. "mapper": {
  1185. "type": "code",
  1186. "value": ""
  1187. },
  1188. "parser": {
  1189. "type": "code",
  1190. "value": ""
  1191. },
  1192. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1193. "position": {
  1194. "type": "list<double>",
  1195. "value": [
  1196. 0,
  1197. 1
  1198. ]
  1199. },
  1200. "orientation": {
  1201. "type": "double",
  1202. "value": 0
  1203. },
  1204. "scale": {
  1205. "type": "list<double>",
  1206. "value": [
  1207. 1,
  1208. 1
  1209. ]
  1210. }
  1211. },
  1212. "9": {
  1213. "textContent": {
  1214. "type": "string",
  1215. "value": "CarOnRoadSegmentLink"
  1216. },
  1217. "style": {
  1218. "type": "map<string,string>",
  1219. "value": {
  1220. "stroke": "#000000",
  1221. "stroke-dasharray": "",
  1222. "fill": "#000000",
  1223. "fill-opacity": "1",
  1224. "font-size": "13px"
  1225. }
  1226. },
  1227. "mapper": {
  1228. "type": "code",
  1229. "value": "({\"textContent\":getAttr(\"typename\")})"
  1230. },
  1231. "parser": {
  1232. "type": "code",
  1233. "value": "({\"typename\":getAttr(\"textContent\")})"
  1234. },
  1235. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1236. "position": {
  1237. "type": "list<double>",
  1238. "value": [
  1239. 58,
  1240. 153
  1241. ]
  1242. },
  1243. "orientation": {
  1244. "type": "double",
  1245. "value": 0
  1246. },
  1247. "scale": {
  1248. "type": "list<double>",
  1249. "value": [
  1250. 1,
  1251. 1
  1252. ]
  1253. }
  1254. },
  1255. "10": {
  1256. "distance": {
  1257. "type": "double",
  1258. "value": 0
  1259. },
  1260. "alignment": {
  1261. "type": "ENUM(\"right\",\"left\",\"center\")",
  1262. "value": "center"
  1263. },
  1264. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1265. "position": {
  1266. "type": "list<double>",
  1267. "value": [
  1268. 98.49899850809561,
  1269. 131.99900000000002
  1270. ]
  1271. },
  1272. "orientation": {
  1273. "type": "double",
  1274. "value": 0
  1275. },
  1276. "scale": {
  1277. "type": "list<double>",
  1278. "value": [
  1279. 1,
  1280. 1
  1281. ]
  1282. },
  1283. "link-style": {
  1284. "type": "map<string,string>",
  1285. "value": {
  1286. "stroke": "#00ff00",
  1287. "stroke-dasharray": "",
  1288. "stroke-opacity": 1,
  1289. "arrow-start": "none",
  1290. "arrow-end": "classic-wide-long"
  1291. }
  1292. }
  1293. }
  1294. },
  1295. "edges": [
  1296. {
  1297. "src": "9",
  1298. "dest": 10
  1299. },
  1300. {
  1301. "src": 10,
  1302. "dest": "8"
  1303. }
  1304. ]
  1305. }
  1306. },
  1307. "$asuri": {
  1308. "type": "string",
  1309. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/6.instance"
  1310. },
  1311. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  1312. },
  1313. "7": {
  1314. "typename": {
  1315. "type": "string",
  1316. "value": "IconIcon"
  1317. },
  1318. "position": {
  1319. "type": "list<double>",
  1320. "value": [
  1321. 325,
  1322. 150
  1323. ]
  1324. },
  1325. "orientation": {
  1326. "type": "double",
  1327. "value": 0
  1328. },
  1329. "scale": {
  1330. "type": "list<double>",
  1331. "value": [
  1332. 1,
  1333. 1
  1334. ]
  1335. },
  1336. "mapper": {
  1337. "type": "code",
  1338. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1339. },
  1340. "parser": {
  1341. "type": "code",
  1342. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1343. },
  1344. "$contents": {
  1345. "type": "map<string,*>",
  1346. "value": {
  1347. "nodes": {
  1348. "1": {
  1349. "width": {
  1350. "type": "double",
  1351. "value": "200"
  1352. },
  1353. "height": {
  1354. "type": "double",
  1355. "value": "150"
  1356. },
  1357. "cornerRadius": {
  1358. "type": "double",
  1359. "value": "10"
  1360. },
  1361. "style": {
  1362. "type": "map<string,string>",
  1363. "value": {
  1364. "stroke": "#000000",
  1365. "stroke-dasharray": "- ",
  1366. "fill": "#ffffff",
  1367. "fill-opacity": 0.75,
  1368. "stroke-width": 1
  1369. }
  1370. },
  1371. "mapper": {
  1372. "type": "code",
  1373. "value": ""
  1374. },
  1375. "parser": {
  1376. "type": "code",
  1377. "value": ""
  1378. },
  1379. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1380. "position": {
  1381. "type": "list<double>",
  1382. "value": [
  1383. 0,
  1384. 0
  1385. ]
  1386. },
  1387. "orientation": {
  1388. "type": "double",
  1389. "value": 0
  1390. },
  1391. "scale": {
  1392. "type": "list<double>",
  1393. "value": [
  1394. 1,
  1395. 1
  1396. ]
  1397. }
  1398. },
  1399. "2": {
  1400. "textContent": {
  1401. "type": "string",
  1402. "value": "SinkIcon"
  1403. },
  1404. "style": {
  1405. "type": "map<string,string>",
  1406. "value": {
  1407. "stroke": "#000000",
  1408. "stroke-dasharray": "",
  1409. "fill": "#000000",
  1410. "fill-opacity": "1",
  1411. "font-size": "13px"
  1412. }
  1413. },
  1414. "mapper": {
  1415. "type": "code",
  1416. "value": "({\"textContent\":getAttr(\"typename\")})"
  1417. },
  1418. "parser": {
  1419. "type": "code",
  1420. "value": "({\"typename\":getAttr(\"textContent\")})"
  1421. },
  1422. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1423. "position": {
  1424. "type": "list<double>",
  1425. "value": [
  1426. 58,
  1427. 151
  1428. ]
  1429. },
  1430. "orientation": {
  1431. "type": "double",
  1432. "value": 0
  1433. },
  1434. "scale": {
  1435. "type": "list<double>",
  1436. "value": [
  1437. 1,
  1438. 1
  1439. ]
  1440. }
  1441. },
  1442. "3": {
  1443. "distance": {
  1444. "type": "double",
  1445. "value": 0
  1446. },
  1447. "alignment": {
  1448. "type": "ENUM(\"right\",\"left\",\"center\")",
  1449. "value": "center"
  1450. },
  1451. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1452. "position": {
  1453. "type": "list<double>",
  1454. "value": [
  1455. 93.49899850809561,
  1456. 137.49900000000002
  1457. ]
  1458. },
  1459. "orientation": {
  1460. "type": "double",
  1461. "value": 0
  1462. },
  1463. "scale": {
  1464. "type": "list<double>",
  1465. "value": [
  1466. 1,
  1467. 1
  1468. ]
  1469. },
  1470. "link-style": {
  1471. "type": "map<string,string>",
  1472. "value": {
  1473. "stroke": "#00ff00",
  1474. "stroke-dasharray": "",
  1475. "stroke-opacity": 1,
  1476. "arrow-start": "none",
  1477. "arrow-end": "classic-wide-long"
  1478. }
  1479. }
  1480. }
  1481. },
  1482. "edges": [
  1483. {
  1484. "src": "2",
  1485. "dest": 3
  1486. },
  1487. {
  1488. "src": 3,
  1489. "dest": "1"
  1490. }
  1491. ]
  1492. }
  1493. },
  1494. "$asuri": {
  1495. "type": "string",
  1496. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/7.instance"
  1497. },
  1498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  1499. },
  1500. "12": {
  1501. "typename": {
  1502. "type": "string",
  1503. "value": "TextIcon"
  1504. },
  1505. "position": {
  1506. "type": "list<double>",
  1507. "value": [
  1508. 79,
  1509. 179
  1510. ]
  1511. },
  1512. "orientation": {
  1513. "type": "double",
  1514. "value": 0
  1515. },
  1516. "scale": {
  1517. "type": "list<double>",
  1518. "value": [
  1519. 1,
  1520. 1
  1521. ]
  1522. },
  1523. "mapper": {
  1524. "type": "code",
  1525. "value": ""
  1526. },
  1527. "parser": {
  1528. "type": "code",
  1529. "value": ""
  1530. },
  1531. "$contents": {
  1532. "type": "map<string,*>",
  1533. "value": {
  1534. "nodes": {
  1535. "21": {
  1536. "textContent": {
  1537. "type": "string",
  1538. "value": "<coded>"
  1539. },
  1540. "style": {
  1541. "type": "map<string,string>",
  1542. "value": {
  1543. "stroke": "#000000",
  1544. "stroke-dasharray": "",
  1545. "fill": "#ffffff",
  1546. "fill-opacity": 0.75,
  1547. "font-size": "20px",
  1548. "stroke-width": 1,
  1549. "arrow-start": "none",
  1550. "arrow-end": "none"
  1551. }
  1552. },
  1553. "mapper": {
  1554. "type": "code",
  1555. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  1556. },
  1557. "parser": {
  1558. "type": "code",
  1559. "value": "({\"textContent\":getAttr(\"textContent\")})"
  1560. },
  1561. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1562. "position": {
  1563. "type": "list<double>",
  1564. "value": [
  1565. 0,
  1566. 0
  1567. ]
  1568. },
  1569. "orientation": {
  1570. "type": "double",
  1571. "value": 0
  1572. },
  1573. "scale": {
  1574. "type": "list<double>",
  1575. "value": [
  1576. 1,
  1577. 1
  1578. ]
  1579. }
  1580. }
  1581. },
  1582. "edges": []
  1583. }
  1584. },
  1585. "$asuri": {
  1586. "type": "string",
  1587. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/12.instance"
  1588. },
  1589. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  1590. },
  1591. "17": {
  1592. "typename": {
  1593. "type": "string",
  1594. "value": "TextIcon"
  1595. },
  1596. "position": {
  1597. "type": "list<double>",
  1598. "value": [
  1599. 365,
  1600. 234
  1601. ]
  1602. },
  1603. "orientation": {
  1604. "type": "double",
  1605. "value": 0
  1606. },
  1607. "scale": {
  1608. "type": "list<double>",
  1609. "value": [
  1610. 1,
  1611. 1
  1612. ]
  1613. },
  1614. "mapper": {
  1615. "type": "code",
  1616. "value": ""
  1617. },
  1618. "parser": {
  1619. "type": "code",
  1620. "value": ""
  1621. },
  1622. "$contents": {
  1623. "type": "map<string,*>",
  1624. "value": {
  1625. "nodes": {
  1626. "21": {
  1627. "textContent": {
  1628. "type": "string",
  1629. "value": "<coded>"
  1630. },
  1631. "style": {
  1632. "type": "map<string,string>",
  1633. "value": {
  1634. "stroke": "#000000",
  1635. "stroke-dasharray": "",
  1636. "fill": "#ffffff",
  1637. "fill-opacity": 0.75,
  1638. "font-size": "20px",
  1639. "stroke-width": 1,
  1640. "arrow-start": "none",
  1641. "arrow-end": "none"
  1642. }
  1643. },
  1644. "mapper": {
  1645. "type": "code",
  1646. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  1647. },
  1648. "parser": {
  1649. "type": "code",
  1650. "value": "({\"textContent\":getAttr(\"textContent\")})"
  1651. },
  1652. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1653. "position": {
  1654. "type": "list<double>",
  1655. "value": [
  1656. 0,
  1657. 0
  1658. ]
  1659. },
  1660. "orientation": {
  1661. "type": "double",
  1662. "value": 0
  1663. },
  1664. "scale": {
  1665. "type": "list<double>",
  1666. "value": [
  1667. 1,
  1668. 1
  1669. ]
  1670. }
  1671. }
  1672. },
  1673. "edges": []
  1674. }
  1675. },
  1676. "$asuri": {
  1677. "type": "string",
  1678. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/17.instance"
  1679. },
  1680. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  1681. },
  1682. "22": {
  1683. "typename": {
  1684. "type": "string",
  1685. "value": "PathIcon"
  1686. },
  1687. "position": {
  1688. "type": "list<double>",
  1689. "value": [
  1690. 77,
  1691. 99
  1692. ]
  1693. },
  1694. "orientation": {
  1695. "type": "double",
  1696. "value": 0
  1697. },
  1698. "scale": {
  1699. "type": "list<double>",
  1700. "value": [
  1701. 1,
  1702. 1
  1703. ]
  1704. },
  1705. "mapper": {
  1706. "type": "code",
  1707. "value": ""
  1708. },
  1709. "parser": {
  1710. "type": "code",
  1711. "value": ""
  1712. },
  1713. "$contents": {
  1714. "type": "map<string,*>",
  1715. "value": {
  1716. "nodes": {
  1717. "44": {
  1718. "segments": {
  1719. "type": "string",
  1720. "value": "m0,0l80,40,l-80,40z"
  1721. },
  1722. "style": {
  1723. "type": "map<string,string>",
  1724. "value": {
  1725. "stroke": "#aa00ff",
  1726. "fill": "#aa00ff",
  1727. "fill-opacity": 1,
  1728. "arrow-start": "none",
  1729. "arrow-end": "none"
  1730. }
  1731. },
  1732. "mapper": {
  1733. "type": "code",
  1734. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  1735. },
  1736. "parser": {
  1737. "type": "code",
  1738. "value": ""
  1739. },
  1740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1741. "position": {
  1742. "type": "list<double>",
  1743. "value": [
  1744. -1,
  1745. 0
  1746. ]
  1747. },
  1748. "orientation": {
  1749. "type": "double",
  1750. "value": 0
  1751. },
  1752. "scale": {
  1753. "type": "list<double>",
  1754. "value": [
  1755. 1,
  1756. 1
  1757. ]
  1758. }
  1759. }
  1760. },
  1761. "edges": []
  1762. }
  1763. },
  1764. "$asuri": {
  1765. "type": "string",
  1766. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/22.instance"
  1767. },
  1768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  1769. },
  1770. "24": {
  1771. "typename": {
  1772. "type": "string",
  1773. "value": "PathIcon"
  1774. },
  1775. "position": {
  1776. "type": "list<double>",
  1777. "value": [
  1778. 328,
  1779. 151
  1780. ]
  1781. },
  1782. "orientation": {
  1783. "type": "double",
  1784. "value": 0
  1785. },
  1786. "scale": {
  1787. "type": "list<double>",
  1788. "value": [
  1789. 1,
  1790. 1
  1791. ]
  1792. },
  1793. "mapper": {
  1794. "type": "code",
  1795. "value": ""
  1796. },
  1797. "parser": {
  1798. "type": "code",
  1799. "value": ""
  1800. },
  1801. "$contents": {
  1802. "type": "map<string,*>",
  1803. "value": {
  1804. "nodes": {
  1805. "44": {
  1806. "segments": {
  1807. "type": "string",
  1808. "value": "m0,0l80,0l-40,80,z"
  1809. },
  1810. "style": {
  1811. "type": "map<string,string>",
  1812. "value": {
  1813. "stroke": "#ffff00",
  1814. "fill": "#ffff00",
  1815. "fill-opacity": 1,
  1816. "arrow-start": "none",
  1817. "arrow-end": "none"
  1818. }
  1819. },
  1820. "mapper": {
  1821. "type": "code",
  1822. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  1823. },
  1824. "parser": {
  1825. "type": "code",
  1826. "value": ""
  1827. },
  1828. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1829. "position": {
  1830. "type": "list<double>",
  1831. "value": [
  1832. -1,
  1833. 0
  1834. ]
  1835. },
  1836. "orientation": {
  1837. "type": "double",
  1838. "value": 0
  1839. },
  1840. "scale": {
  1841. "type": "list<double>",
  1842. "value": [
  1843. 1,
  1844. 1
  1845. ]
  1846. }
  1847. }
  1848. },
  1849. "edges": []
  1850. }
  1851. },
  1852. "$asuri": {
  1853. "type": "string",
  1854. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/24.instance"
  1855. },
  1856. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  1857. },
  1858. "32": {
  1859. "link-style": {
  1860. "type": "map<string,string>",
  1861. "value": {
  1862. "stroke": "#ff00ff",
  1863. "stroke-dasharray": "",
  1864. "stroke-opacity": 0.1,
  1865. "arrow-start": "none",
  1866. "arrow-end": "classic-wide-long"
  1867. }
  1868. },
  1869. "typename": {
  1870. "type": "string",
  1871. "value": "IconContentsLink"
  1872. },
  1873. "position": {
  1874. "type": "list<double>",
  1875. "value": [
  1876. "97,50%",
  1877. "145.5,50%"
  1878. ]
  1879. },
  1880. "orientation": {
  1881. "type": "double",
  1882. "value": 0
  1883. },
  1884. "scale": {
  1885. "type": "list<double>",
  1886. "value": [
  1887. 1,
  1888. 1
  1889. ]
  1890. },
  1891. "mapper": {
  1892. "type": "code",
  1893. "value": ""
  1894. },
  1895. "parser": {
  1896. "type": "code",
  1897. "value": ""
  1898. },
  1899. "$contents": {
  1900. "type": "map<string,*>",
  1901. "value": {
  1902. "nodes": {},
  1903. "edges": []
  1904. }
  1905. },
  1906. "$asuri": {
  1907. "type": "string",
  1908. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/32.instance"
  1909. },
  1910. "$segments": {
  1911. "type": "map<string,list<string>>",
  1912. "value": {
  1913. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/32.instance": "M76,100L97,145.5",
  1914. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/32.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/12.instance": "M97.03143698956288,145.56811347738622L117.999874084,190.999727182"
  1915. }
  1916. },
  1917. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1918. },
  1919. "33": {
  1920. "link-style": {
  1921. "type": "map<string,string>",
  1922. "value": {
  1923. "stroke": "#ff00ff",
  1924. "stroke-dasharray": "",
  1925. "stroke-opacity": 0.1,
  1926. "arrow-start": "none",
  1927. "arrow-end": "classic-wide-long"
  1928. }
  1929. },
  1930. "typename": {
  1931. "type": "string",
  1932. "value": "IconContentsLink"
  1933. },
  1934. "position": {
  1935. "type": "list<double>",
  1936. "value": [
  1937. "96,50%",
  1938. "119.5,50%"
  1939. ]
  1940. },
  1941. "orientation": {
  1942. "type": "double",
  1943. "value": 0
  1944. },
  1945. "scale": {
  1946. "type": "list<double>",
  1947. "value": [
  1948. 1,
  1949. 1
  1950. ]
  1951. },
  1952. "mapper": {
  1953. "type": "code",
  1954. "value": ""
  1955. },
  1956. "parser": {
  1957. "type": "code",
  1958. "value": ""
  1959. },
  1960. "$contents": {
  1961. "type": "map<string,*>",
  1962. "value": {
  1963. "nodes": {},
  1964. "edges": []
  1965. }
  1966. },
  1967. "$asuri": {
  1968. "type": "string",
  1969. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/33.instance"
  1970. },
  1971. "$segments": {
  1972. "type": "map<string,list<string>>",
  1973. "value": {
  1974. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/33.instance": "M76,100L96,119.5",
  1975. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/33.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/22.instance": "M96.05434704798614,119.5529883717865L115.99960378662661,138.99961369196095"
  1976. }
  1977. },
  1978. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1979. },
  1980. "34": {
  1981. "link-style": {
  1982. "type": "map<string,string>",
  1983. "value": {
  1984. "stroke": "#ff00ff",
  1985. "stroke-dasharray": "",
  1986. "stroke-opacity": 0.1,
  1987. "arrow-start": "none",
  1988. "arrow-end": "classic-wide-long"
  1989. }
  1990. },
  1991. "typename": {
  1992. "type": "string",
  1993. "value": "IconContentsLink"
  1994. },
  1995. "position": {
  1996. "type": "list<double>",
  1997. "value": [
  1998. "364.5955644332601,50%",
  1999. "198.11612893155652,50%"
  2000. ]
  2001. },
  2002. "orientation": {
  2003. "type": "double",
  2004. "value": 0
  2005. },
  2006. "scale": {
  2007. "type": "list<double>",
  2008. "value": [
  2009. 1,
  2010. 1
  2011. ]
  2012. },
  2013. "mapper": {
  2014. "type": "code",
  2015. "value": ""
  2016. },
  2017. "parser": {
  2018. "type": "code",
  2019. "value": ""
  2020. },
  2021. "$contents": {
  2022. "type": "map<string,*>",
  2023. "value": {
  2024. "nodes": {},
  2025. "edges": []
  2026. }
  2027. },
  2028. "$asuri": {
  2029. "type": "string",
  2030. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/34.instance"
  2031. },
  2032. "$segments": {
  2033. "type": "map<string,list<string>>",
  2034. "value": {
  2035. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/7.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/34.instance": "M325,150L364.5955644332601,198.11612893155652",
  2036. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/34.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/17.instance": "M364.5952561614268,198.1157543227464L403.99938411768653,245.99925158604947"
  2037. }
  2038. },
  2039. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2040. },
  2041. "35": {
  2042. "link-style": {
  2043. "type": "map<string,string>",
  2044. "value": {
  2045. "stroke": "#ff00ff",
  2046. "stroke-dasharray": "",
  2047. "stroke-opacity": 0.1,
  2048. "arrow-start": "none",
  2049. "arrow-end": "classic-wide-long"
  2050. }
  2051. },
  2052. "typename": {
  2053. "type": "string",
  2054. "value": "IconContentsLink"
  2055. },
  2056. "position": {
  2057. "type": "list<double>",
  2058. "value": [
  2059. "346,50%",
  2060. "170.5,50%"
  2061. ]
  2062. },
  2063. "orientation": {
  2064. "type": "double",
  2065. "value": 0
  2066. },
  2067. "scale": {
  2068. "type": "list<double>",
  2069. "value": [
  2070. 1,
  2071. 1
  2072. ]
  2073. },
  2074. "mapper": {
  2075. "type": "code",
  2076. "value": ""
  2077. },
  2078. "parser": {
  2079. "type": "code",
  2080. "value": ""
  2081. },
  2082. "$contents": {
  2083. "type": "map<string,*>",
  2084. "value": {
  2085. "nodes": {},
  2086. "edges": []
  2087. }
  2088. },
  2089. "$asuri": {
  2090. "type": "string",
  2091. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/35.instance"
  2092. },
  2093. "$segments": {
  2094. "type": "map<string,list<string>>",
  2095. "value": {
  2096. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/7.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/35.instance": "M325,150L346,170.5",
  2097. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/35.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/24.instance": "M346.054123014516,170.55283437131322L366.9996258764197,190.999634784124"
  2098. }
  2099. },
  2100. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2101. },
  2102. "36": {
  2103. "typename": {
  2104. "type": "string",
  2105. "value": "RectangleIcon"
  2106. },
  2107. "position": {
  2108. "type": "list<double>",
  2109. "value": [
  2110. 77,
  2111. 377
  2112. ]
  2113. },
  2114. "orientation": {
  2115. "type": "double",
  2116. "value": 0
  2117. },
  2118. "scale": {
  2119. "type": "list<double>",
  2120. "value": [
  2121. 1,
  2122. 1
  2123. ]
  2124. },
  2125. "mapper": {
  2126. "type": "code",
  2127. "value": ""
  2128. },
  2129. "parser": {
  2130. "type": "code",
  2131. "value": ""
  2132. },
  2133. "$contents": {
  2134. "type": "map<string,*>",
  2135. "value": {
  2136. "nodes": {
  2137. "17": {
  2138. "width": {
  2139. "type": "double",
  2140. "value": 300
  2141. },
  2142. "height": {
  2143. "type": "double",
  2144. "value": 100
  2145. },
  2146. "cornerRadius": {
  2147. "type": "double",
  2148. "value": 0
  2149. },
  2150. "style": {
  2151. "type": "map<string,string>",
  2152. "value": {
  2153. "stroke": "#000000",
  2154. "stroke-dasharray": "",
  2155. "fill": "#bbbbbb",
  2156. "fill-opacity": 1,
  2157. "font-size": "20px",
  2158. "stroke-width": 1,
  2159. "arrow-start": "none",
  2160. "arrow-end": "none"
  2161. }
  2162. },
  2163. "mapper": {
  2164. "type": "code",
  2165. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  2166. },
  2167. "parser": {
  2168. "type": "code",
  2169. "value": ""
  2170. },
  2171. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2172. "position": {
  2173. "type": "list<double>",
  2174. "value": [
  2175. 0,
  2176. 1
  2177. ]
  2178. },
  2179. "orientation": {
  2180. "type": "double",
  2181. "value": 0
  2182. },
  2183. "scale": {
  2184. "type": "list<double>",
  2185. "value": [
  2186. 1,
  2187. 1
  2188. ]
  2189. }
  2190. }
  2191. },
  2192. "edges": []
  2193. }
  2194. },
  2195. "$asuri": {
  2196. "type": "string",
  2197. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/36.instance"
  2198. },
  2199. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  2200. },
  2201. "37": {
  2202. "typename": {
  2203. "type": "string",
  2204. "value": "PathIcon"
  2205. },
  2206. "position": {
  2207. "type": "list<double>",
  2208. "value": [
  2209. 79,
  2210. 429
  2211. ]
  2212. },
  2213. "orientation": {
  2214. "type": "double",
  2215. "value": 0
  2216. },
  2217. "scale": {
  2218. "type": "list<double>",
  2219. "value": [
  2220. 1,
  2221. 1
  2222. ]
  2223. },
  2224. "mapper": {
  2225. "type": "code",
  2226. "value": ""
  2227. },
  2228. "parser": {
  2229. "type": "code",
  2230. "value": ""
  2231. },
  2232. "$contents": {
  2233. "type": "map<string,*>",
  2234. "value": {
  2235. "nodes": {
  2236. "44": {
  2237. "segments": {
  2238. "type": "string",
  2239. "value": "m0,0l300,0"
  2240. },
  2241. "style": {
  2242. "type": "map<string,string>",
  2243. "value": {
  2244. "stroke": "#ffff00",
  2245. "stroke-dasharray": "- ",
  2246. "fill": "#ffff00",
  2247. "fill-opacity": 0.75,
  2248. "stroke-width": 4,
  2249. "arrow-start": "none",
  2250. "arrow-end": "none"
  2251. }
  2252. },
  2253. "mapper": {
  2254. "type": "code",
  2255. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  2256. },
  2257. "parser": {
  2258. "type": "code",
  2259. "value": ""
  2260. },
  2261. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2262. "position": {
  2263. "type": "list<double>",
  2264. "value": [
  2265. -1,
  2266. 0
  2267. ]
  2268. },
  2269. "orientation": {
  2270. "type": "double",
  2271. "value": 0
  2272. },
  2273. "scale": {
  2274. "type": "list<double>",
  2275. "value": [
  2276. 1,
  2277. 1
  2278. ]
  2279. }
  2280. }
  2281. },
  2282. "edges": []
  2283. }
  2284. },
  2285. "$asuri": {
  2286. "type": "string",
  2287. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/37.instance"
  2288. },
  2289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  2290. },
  2291. "38": {
  2292. "link-style": {
  2293. "type": "map<string,string>",
  2294. "value": {
  2295. "stroke": "#ff00ff",
  2296. "stroke-dasharray": "",
  2297. "stroke-opacity": 0.1,
  2298. "arrow-start": "none",
  2299. "arrow-end": "classic-wide-long"
  2300. }
  2301. },
  2302. "typename": {
  2303. "type": "string",
  2304. "value": "IconContentsLink"
  2305. },
  2306. "position": {
  2307. "type": "list<double>",
  2308. "value": [
  2309. "151.6424527550583,50%",
  2310. "402.54811318217196,50%"
  2311. ]
  2312. },
  2313. "orientation": {
  2314. "type": "double",
  2315. "value": 0
  2316. },
  2317. "scale": {
  2318. "type": "list<double>",
  2319. "value": [
  2320. 1,
  2321. 1
  2322. ]
  2323. },
  2324. "mapper": {
  2325. "type": "code",
  2326. "value": ""
  2327. },
  2328. "parser": {
  2329. "type": "code",
  2330. "value": ""
  2331. },
  2332. "$contents": {
  2333. "type": "map<string,*>",
  2334. "value": {
  2335. "nodes": {},
  2336. "edges": []
  2337. }
  2338. },
  2339. "$asuri": {
  2340. "type": "string",
  2341. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/38.instance"
  2342. },
  2343. "$segments": {
  2344. "type": "map<string,list<string>>",
  2345. "value": {
  2346. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/38.instance": "M76,377L151.6424527550583,402.54811318217196",
  2347. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/38.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/36.instance": "M151.64209438372404,402.5479921428472L226.9992838572433,427.99975812396957"
  2348. }
  2349. },
  2350. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2351. },
  2352. "39": {
  2353. "link-style": {
  2354. "type": "map<string,string>",
  2355. "value": {
  2356. "stroke": "#ff00ff",
  2357. "stroke-dasharray": "",
  2358. "stroke-opacity": 0.1,
  2359. "arrow-start": "none",
  2360. "arrow-end": "classic-wide-long"
  2361. }
  2362. },
  2363. "typename": {
  2364. "type": "string",
  2365. "value": "IconContentsLink"
  2366. },
  2367. "position": {
  2368. "type": "list<double>",
  2369. "value": [
  2370. "152,50%",
  2371. "403,50%"
  2372. ]
  2373. },
  2374. "orientation": {
  2375. "type": "double",
  2376. "value": 0
  2377. },
  2378. "scale": {
  2379. "type": "list<double>",
  2380. "value": [
  2381. 1,
  2382. 1
  2383. ]
  2384. },
  2385. "mapper": {
  2386. "type": "code",
  2387. "value": ""
  2388. },
  2389. "parser": {
  2390. "type": "code",
  2391. "value": ""
  2392. },
  2393. "$contents": {
  2394. "type": "map<string,*>",
  2395. "value": {
  2396. "nodes": {},
  2397. "edges": []
  2398. }
  2399. },
  2400. "$asuri": {
  2401. "type": "string",
  2402. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/39.instance"
  2403. },
  2404. "$segments": {
  2405. "type": "map<string,list<string>>",
  2406. "value": {
  2407. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/39.instance": "M76,377L152,403",
  2408. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/39.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/37.instance": "M152.1421436763365,403.0486280997993L227.99928809375,428.99975645312503"
  2409. }
  2410. },
  2411. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2412. },
  2413. "40": {
  2414. "typename": {
  2415. "type": "string",
  2416. "value": "PolygonIcon"
  2417. },
  2418. "position": {
  2419. "type": "list<double>",
  2420. "value": [
  2421. 479,
  2422. 425
  2423. ]
  2424. },
  2425. "orientation": {
  2426. "type": "double",
  2427. "value": 0
  2428. },
  2429. "scale": {
  2430. "type": "list<double>",
  2431. "value": [
  2432. 1,
  2433. 1
  2434. ]
  2435. },
  2436. "mapper": {
  2437. "type": "code",
  2438. "value": ""
  2439. },
  2440. "parser": {
  2441. "type": "code",
  2442. "value": ""
  2443. },
  2444. "$contents": {
  2445. "type": "map<string,*>",
  2446. "value": {
  2447. "nodes": {
  2448. "35": {
  2449. "r": {
  2450. "type": "double",
  2451. "value": 50
  2452. },
  2453. "sides": {
  2454. "type": "int",
  2455. "value": 5
  2456. },
  2457. "style": {
  2458. "type": "map<string,string>",
  2459. "value": {
  2460. "stroke": "#7FFF00",
  2461. "stroke-dasharray": "",
  2462. "fill": "#FFA500",
  2463. "fill-opacity": 0.75,
  2464. "font-size": "20px",
  2465. "stroke-width": 1,
  2466. "arrow-start": "none",
  2467. "arrow-end": "none"
  2468. }
  2469. },
  2470. "mapper": {
  2471. "type": "code",
  2472. "value": "({\"r\":getAttr(\"r\"), \"sides\":getAttr(\"sides\"), \"style\":getAttr(\"style\")})"
  2473. },
  2474. "parser": {
  2475. "type": "code",
  2476. "value": ""
  2477. },
  2478. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon",
  2479. "position": {
  2480. "type": "list<double>",
  2481. "value": [
  2482. 0,
  2483. 5
  2484. ]
  2485. },
  2486. "orientation": {
  2487. "type": "double",
  2488. "value": 0
  2489. },
  2490. "scale": {
  2491. "type": "list<double>",
  2492. "value": [
  2493. 1,
  2494. 1
  2495. ]
  2496. }
  2497. }
  2498. },
  2499. "edges": []
  2500. }
  2501. },
  2502. "$asuri": {
  2503. "type": "string",
  2504. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon/40.instance"
  2505. },
  2506. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PolygonIcon"
  2507. },
  2508. "41": {
  2509. "typename": {
  2510. "type": "string",
  2511. "value": "CircleIcon"
  2512. },
  2513. "position": {
  2514. "type": "list<double>",
  2515. "value": [
  2516. 478,
  2517. 493
  2518. ]
  2519. },
  2520. "orientation": {
  2521. "type": "double",
  2522. "value": 0
  2523. },
  2524. "scale": {
  2525. "type": "list<double>",
  2526. "value": [
  2527. 1,
  2528. 1
  2529. ]
  2530. },
  2531. "mapper": {
  2532. "type": "code",
  2533. "value": ""
  2534. },
  2535. "parser": {
  2536. "type": "code",
  2537. "value": ""
  2538. },
  2539. "$contents": {
  2540. "type": "map<string,*>",
  2541. "value": {
  2542. "nodes": {
  2543. "31": {
  2544. "r": {
  2545. "type": "double",
  2546. "value": 20
  2547. },
  2548. "style": {
  2549. "type": "map<string,string>",
  2550. "value": {
  2551. "stroke": "#000000",
  2552. "stroke-dasharray": "",
  2553. "fill": "#F5F5F5",
  2554. "fill-opacity": 0.5,
  2555. "font-size": "20px",
  2556. "stroke-width": 1,
  2557. "arrow-start": "none",
  2558. "arrow-end": "none"
  2559. }
  2560. },
  2561. "mapper": {
  2562. "type": "code",
  2563. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  2564. },
  2565. "parser": {
  2566. "type": "code",
  2567. "value": ""
  2568. },
  2569. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2570. "position": {
  2571. "type": "list<double>",
  2572. "value": [
  2573. 0,
  2574. 0
  2575. ]
  2576. },
  2577. "orientation": {
  2578. "type": "double",
  2579. "value": 0
  2580. },
  2581. "scale": {
  2582. "type": "list<double>",
  2583. "value": [
  2584. 1,
  2585. 1
  2586. ]
  2587. }
  2588. }
  2589. },
  2590. "edges": []
  2591. }
  2592. },
  2593. "$asuri": {
  2594. "type": "string",
  2595. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/41.instance"
  2596. },
  2597. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  2598. },
  2599. "42": {
  2600. "typename": {
  2601. "type": "string",
  2602. "value": "CircleIcon"
  2603. },
  2604. "position": {
  2605. "type": "list<double>",
  2606. "value": [
  2607. 536,
  2608. 493
  2609. ]
  2610. },
  2611. "orientation": {
  2612. "type": "double",
  2613. "value": 0
  2614. },
  2615. "scale": {
  2616. "type": "list<double>",
  2617. "value": [
  2618. 1,
  2619. 1
  2620. ]
  2621. },
  2622. "mapper": {
  2623. "type": "code",
  2624. "value": ""
  2625. },
  2626. "parser": {
  2627. "type": "code",
  2628. "value": ""
  2629. },
  2630. "$contents": {
  2631. "type": "map<string,*>",
  2632. "value": {
  2633. "nodes": {
  2634. "31": {
  2635. "r": {
  2636. "type": "double",
  2637. "value": 20
  2638. },
  2639. "style": {
  2640. "type": "map<string,string>",
  2641. "value": {
  2642. "stroke": "#000000",
  2643. "stroke-dasharray": "",
  2644. "fill": "#F5F5F5",
  2645. "fill-opacity": 0.5,
  2646. "font-size": "20px",
  2647. "stroke-width": 1,
  2648. "arrow-start": "none",
  2649. "arrow-end": "none"
  2650. }
  2651. },
  2652. "mapper": {
  2653. "type": "code",
  2654. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  2655. },
  2656. "parser": {
  2657. "type": "code",
  2658. "value": ""
  2659. },
  2660. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2661. "position": {
  2662. "type": "list<double>",
  2663. "value": [
  2664. 0,
  2665. 0
  2666. ]
  2667. },
  2668. "orientation": {
  2669. "type": "double",
  2670. "value": 0
  2671. },
  2672. "scale": {
  2673. "type": "list<double>",
  2674. "value": [
  2675. 1,
  2676. 1
  2677. ]
  2678. }
  2679. }
  2680. },
  2681. "edges": []
  2682. }
  2683. },
  2684. "$asuri": {
  2685. "type": "string",
  2686. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/42.instance"
  2687. },
  2688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  2689. },
  2690. "46": {
  2691. "link-style": {
  2692. "type": "map<string,string>",
  2693. "value": {
  2694. "stroke": "#ff00ff",
  2695. "stroke-dasharray": "",
  2696. "stroke-opacity": 0.1,
  2697. "arrow-start": "none",
  2698. "arrow-end": "classic-wide-long"
  2699. }
  2700. },
  2701. "typename": {
  2702. "type": "string",
  2703. "value": "IconContentsLink"
  2704. },
  2705. "position": {
  2706. "type": "list<double>",
  2707. "value": [
  2708. "501.2764129073788,50%",
  2709. "447.7254248593737,50%"
  2710. ]
  2711. },
  2712. "orientation": {
  2713. "type": "double",
  2714. "value": 0
  2715. },
  2716. "scale": {
  2717. "type": "list<double>",
  2718. "value": [
  2719. 1,
  2720. 1
  2721. ]
  2722. },
  2723. "mapper": {
  2724. "type": "code",
  2725. "value": ""
  2726. },
  2727. "parser": {
  2728. "type": "code",
  2729. "value": ""
  2730. },
  2731. "$contents": {
  2732. "type": "map<string,*>",
  2733. "value": {
  2734. "nodes": {},
  2735. "edges": []
  2736. }
  2737. },
  2738. "$asuri": {
  2739. "type": "string",
  2740. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/46.instance"
  2741. },
  2742. "$segments": {
  2743. "type": "map<string,list<string>>",
  2744. "value": {
  2745. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/2.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/46.instance": "M476,425L501.2764129073788,447.7254248593737",
  2746. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/46.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PolygonIcon/40.instance": "M501.33283292751383,447.77615076470056L526.5524883062402,470.45054627282406"
  2747. }
  2748. },
  2749. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2750. },
  2751. "47": {
  2752. "link-style": {
  2753. "type": "map<string,string>",
  2754. "value": {
  2755. "stroke": "#ff00ff",
  2756. "stroke-dasharray": "",
  2757. "stroke-opacity": 0.1,
  2758. "arrow-start": "none",
  2759. "arrow-end": "classic-wide-long"
  2760. }
  2761. },
  2762. "typename": {
  2763. "type": "string",
  2764. "value": "IconContentsLink"
  2765. },
  2766. "position": {
  2767. "type": "list<double>",
  2768. "value": [
  2769. "487,50%",
  2770. "469,50%"
  2771. ]
  2772. },
  2773. "orientation": {
  2774. "type": "double",
  2775. "value": 0
  2776. },
  2777. "scale": {
  2778. "type": "list<double>",
  2779. "value": [
  2780. 1,
  2781. 1
  2782. ]
  2783. },
  2784. "mapper": {
  2785. "type": "code",
  2786. "value": ""
  2787. },
  2788. "parser": {
  2789. "type": "code",
  2790. "value": ""
  2791. },
  2792. "$contents": {
  2793. "type": "map<string,*>",
  2794. "value": {
  2795. "nodes": {},
  2796. "edges": []
  2797. }
  2798. },
  2799. "$asuri": {
  2800. "type": "string",
  2801. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/47.instance"
  2802. },
  2803. "$segments": {
  2804. "type": "map<string,list<string>>",
  2805. "value": {
  2806. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/2.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/47.instance": "M476,425L487,469",
  2807. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/47.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/41.instance": "M487.01829258509815,469.0731703403928L497.9999185788751,512.9996743155007"
  2808. }
  2809. },
  2810. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2811. },
  2812. "48": {
  2813. "link-style": {
  2814. "type": "map<string,string>",
  2815. "value": {
  2816. "stroke": "#ff00ff",
  2817. "stroke-dasharray": "",
  2818. "stroke-opacity": 0.1,
  2819. "arrow-start": "none",
  2820. "arrow-end": "classic-wide-long"
  2821. }
  2822. },
  2823. "typename": {
  2824. "type": "string",
  2825. "value": "IconContentsLink"
  2826. },
  2827. "position": {
  2828. "type": "list<double>",
  2829. "value": [
  2830. "516.1016948178733,50%",
  2831. "469.11186429966057,50%"
  2832. ]
  2833. },
  2834. "orientation": {
  2835. "type": "double",
  2836. "value": 0
  2837. },
  2838. "scale": {
  2839. "type": "list<double>",
  2840. "value": [
  2841. 1,
  2842. 1
  2843. ]
  2844. },
  2845. "mapper": {
  2846. "type": "code",
  2847. "value": ""
  2848. },
  2849. "parser": {
  2850. "type": "code",
  2851. "value": ""
  2852. },
  2853. "$contents": {
  2854. "type": "map<string,*>",
  2855. "value": {
  2856. "nodes": {},
  2857. "edges": []
  2858. }
  2859. },
  2860. "$asuri": {
  2861. "type": "string",
  2862. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/48.instance"
  2863. },
  2864. "$segments": {
  2865. "type": "map<string,list<string>>",
  2866. "value": {
  2867. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/2.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/48.instance": "M476,425L516.1016948178733,469.11186429966057",
  2868. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/48.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/42.instance": "M516.0507612633847,469.05583738972314L555.9998277331177,512.9998105064295"
  2869. }
  2870. },
  2871. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2872. }
  2873. },
  2874. "edges": [],
  2875. "metamodels": [
  2876. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons"
  2877. ]
  2878. },
  2879. "asm": {
  2880. "nodes": {
  2881. "0": {
  2882. "typename": {
  2883. "type": "string",
  2884. "value": "GeneratorIcon"
  2885. },
  2886. "position": {
  2887. "type": "list<double>",
  2888. "value": [
  2889. 76,
  2890. 100
  2891. ]
  2892. },
  2893. "orientation": {
  2894. "type": "double",
  2895. "value": 0
  2896. },
  2897. "scale": {
  2898. "type": "list<double>",
  2899. "value": [
  2900. 1,
  2901. 1
  2902. ]
  2903. },
  2904. "mapper": {
  2905. "type": "code",
  2906. "value": "({'position':getAttr('position')})"
  2907. },
  2908. "parser": {
  2909. "type": "code",
  2910. "value": "({'position':getAttr('position')})"
  2911. },
  2912. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  2913. },
  2914. "1": {
  2915. "typename": {
  2916. "type": "string",
  2917. "value": "RoadSegmentIcon"
  2918. },
  2919. "position": {
  2920. "type": "list<double>",
  2921. "value": [
  2922. 76,
  2923. 377
  2924. ]
  2925. },
  2926. "orientation": {
  2927. "type": "double",
  2928. "value": 0
  2929. },
  2930. "scale": {
  2931. "type": "list<double>",
  2932. "value": [
  2933. 1.7103,
  2934. 1.1576250000000001
  2935. ]
  2936. },
  2937. "mapper": {
  2938. "type": "code",
  2939. "value": "({'position':getAttr('position')})"
  2940. },
  2941. "parser": {
  2942. "type": "code",
  2943. "value": "({'position':getAttr('position')})"
  2944. },
  2945. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  2946. },
  2947. "2": {
  2948. "typename": {
  2949. "type": "string",
  2950. "value": "CarIcon"
  2951. },
  2952. "position": {
  2953. "type": "list<double>",
  2954. "value": [
  2955. 476,
  2956. 425
  2957. ]
  2958. },
  2959. "orientation": {
  2960. "type": "double",
  2961. "value": 0
  2962. },
  2963. "scale": {
  2964. "type": "list<double>",
  2965. "value": [
  2966. 1,
  2967. 1
  2968. ]
  2969. },
  2970. "mapper": {
  2971. "type": "code",
  2972. "value": "({'position':getAttr('position')})"
  2973. },
  2974. "parser": {
  2975. "type": "code",
  2976. "value": "({'position':getAttr('position')})"
  2977. },
  2978. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  2979. },
  2980. "3": {
  2981. "link-style": {
  2982. "type": "map<string,string>",
  2983. "value": {
  2984. "stroke": "#00ff00",
  2985. "stroke-dasharray": "",
  2986. "stroke-opacity": 0.2,
  2987. "stroke-width": 1,
  2988. "arrow-start": "none",
  2989. "arrow-end": "classic-wide-long"
  2990. }
  2991. },
  2992. "typename": {
  2993. "type": "string",
  2994. "value": "RS2GLink"
  2995. },
  2996. "position": {
  2997. "type": "list<double>",
  2998. "value": [
  2999. 1023,
  3000. 124
  3001. ]
  3002. },
  3003. "orientation": {
  3004. "type": "double",
  3005. "value": 0
  3006. },
  3007. "scale": {
  3008. "type": "list<double>",
  3009. "value": [
  3010. 1,
  3011. 1
  3012. ]
  3013. },
  3014. "mapper": {
  3015. "type": "code",
  3016. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3017. },
  3018. "parser": {
  3019. "type": "code",
  3020. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3021. },
  3022. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  3023. },
  3024. "4": {
  3025. "link-style": {
  3026. "type": "map<string,string>",
  3027. "value": {
  3028. "stroke": "#00ff00",
  3029. "stroke-dasharray": "",
  3030. "stroke-opacity": 0.2,
  3031. "stroke-width": 1,
  3032. "arrow-start": "none",
  3033. "arrow-end": "classic-wide-long"
  3034. }
  3035. },
  3036. "typename": {
  3037. "type": "string",
  3038. "value": "RS2RSLink"
  3039. },
  3040. "position": {
  3041. "type": "list<double>",
  3042. "value": [
  3043. 1026,
  3044. 300
  3045. ]
  3046. },
  3047. "orientation": {
  3048. "type": "double",
  3049. "value": 0
  3050. },
  3051. "scale": {
  3052. "type": "list<double>",
  3053. "value": [
  3054. 1,
  3055. 1
  3056. ]
  3057. },
  3058. "mapper": {
  3059. "type": "code",
  3060. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3061. },
  3062. "parser": {
  3063. "type": "code",
  3064. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3065. },
  3066. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  3067. },
  3068. "5": {
  3069. "link-style": {
  3070. "type": "map<string,string>",
  3071. "value": {
  3072. "stroke": "#00ff00",
  3073. "stroke-dasharray": "",
  3074. "stroke-opacity": 0.2,
  3075. "stroke-width": 1,
  3076. "arrow-start": "none",
  3077. "arrow-end": "classic-wide-long"
  3078. }
  3079. },
  3080. "typename": {
  3081. "type": "string",
  3082. "value": "S2RSLink"
  3083. },
  3084. "position": {
  3085. "type": "list<double>",
  3086. "value": [
  3087. 1025,
  3088. 474
  3089. ]
  3090. },
  3091. "orientation": {
  3092. "type": "double",
  3093. "value": 0
  3094. },
  3095. "scale": {
  3096. "type": "list<double>",
  3097. "value": [
  3098. 1,
  3099. 1
  3100. ]
  3101. },
  3102. "mapper": {
  3103. "type": "code",
  3104. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3105. },
  3106. "parser": {
  3107. "type": "code",
  3108. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3109. },
  3110. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  3111. },
  3112. "6": {
  3113. "link-style": {
  3114. "type": "map<string,string>",
  3115. "value": {
  3116. "stroke": "#ff00ff",
  3117. "stroke-dasharray": "",
  3118. "stroke-opacity": 0,
  3119. "stroke-width": 1,
  3120. "arrow-start": "none",
  3121. "arrow-end": "none"
  3122. }
  3123. },
  3124. "typename": {
  3125. "type": "string",
  3126. "value": "CarOnRoadSegmentLink"
  3127. },
  3128. "position": {
  3129. "type": "list<double>",
  3130. "value": [
  3131. 1026,
  3132. 649
  3133. ]
  3134. },
  3135. "orientation": {
  3136. "type": "double",
  3137. "value": 0
  3138. },
  3139. "scale": {
  3140. "type": "list<double>",
  3141. "value": [
  3142. 1,
  3143. 1
  3144. ]
  3145. },
  3146. "mapper": {
  3147. "type": "code",
  3148. "value": ""
  3149. },
  3150. "parser": {
  3151. "type": "code",
  3152. "value": ""
  3153. },
  3154. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  3155. },
  3156. "7": {
  3157. "typename": {
  3158. "type": "string",
  3159. "value": "SinkIcon"
  3160. },
  3161. "position": {
  3162. "type": "list<double>",
  3163. "value": [
  3164. 325,
  3165. 150
  3166. ]
  3167. },
  3168. "orientation": {
  3169. "type": "double",
  3170. "value": 0
  3171. },
  3172. "scale": {
  3173. "type": "list<double>",
  3174. "value": [
  3175. 1,
  3176. 1
  3177. ]
  3178. },
  3179. "mapper": {
  3180. "type": "code",
  3181. "value": "({'position':getAttr('position')})"
  3182. },
  3183. "parser": {
  3184. "type": "code",
  3185. "value": "({'position':getAttr('position')})"
  3186. },
  3187. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  3188. },
  3189. "12": {
  3190. "textContent": {
  3191. "type": "string",
  3192. "value": "<coded>"
  3193. },
  3194. "style": {
  3195. "type": "map<string,string>",
  3196. "value": {
  3197. "stroke": "#000000",
  3198. "stroke-dasharray": "",
  3199. "fill": "#ffffff",
  3200. "fill-opacity": 0.75,
  3201. "font-size": "20px",
  3202. "stroke-width": 1,
  3203. "arrow-start": "none",
  3204. "arrow-end": "none"
  3205. }
  3206. },
  3207. "mapper": {
  3208. "type": "code",
  3209. "value": "({'textContent':getAttr('producedCars')+ ' >>'})"
  3210. },
  3211. "parser": {
  3212. "type": "code",
  3213. "value": ""
  3214. },
  3215. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3216. },
  3217. "17": {
  3218. "textContent": {
  3219. "type": "string",
  3220. "value": "<coded>"
  3221. },
  3222. "style": {
  3223. "type": "map<string,string>",
  3224. "value": {
  3225. "stroke": "#000000",
  3226. "stroke-dasharray": "",
  3227. "fill": "#ffffff",
  3228. "fill-opacity": 0.75,
  3229. "font-size": "20px",
  3230. "stroke-width": 1,
  3231. "arrow-start": "none",
  3232. "arrow-end": "none"
  3233. }
  3234. },
  3235. "mapper": {
  3236. "type": "code",
  3237. "value": "({'textContent': '>> '+getAttr('consumedCars')})"
  3238. },
  3239. "parser": {
  3240. "type": "code",
  3241. "value": ""
  3242. },
  3243. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3244. },
  3245. "22": {
  3246. "segments": {
  3247. "type": "string",
  3248. "value": "m0,0l80,40,l-80,40z"
  3249. },
  3250. "style": {
  3251. "type": "map<string,string>",
  3252. "value": {
  3253. "stroke": "#aa00ff",
  3254. "fill": "#aa00ff",
  3255. "fill-opacity": 1,
  3256. "arrow-start": "none",
  3257. "arrow-end": "none"
  3258. }
  3259. },
  3260. "mapper": {
  3261. "type": "code",
  3262. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3263. },
  3264. "parser": {
  3265. "type": "code",
  3266. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3267. },
  3268. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  3269. },
  3270. "24": {
  3271. "segments": {
  3272. "type": "string",
  3273. "value": "m0,0l80,0l-40,80,z"
  3274. },
  3275. "style": {
  3276. "type": "map<string,string>",
  3277. "value": {
  3278. "stroke": "#ffff00",
  3279. "fill": "#ffff00",
  3280. "fill-opacity": 1,
  3281. "arrow-start": "none",
  3282. "arrow-end": "none"
  3283. }
  3284. },
  3285. "mapper": {
  3286. "type": "code",
  3287. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3288. },
  3289. "parser": {
  3290. "type": "code",
  3291. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3292. },
  3293. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  3294. },
  3295. "32": {
  3296. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3297. },
  3298. "33": {
  3299. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3300. },
  3301. "34": {
  3302. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3303. },
  3304. "35": {
  3305. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3306. },
  3307. "36": {
  3308. "width": {
  3309. "type": "double",
  3310. "value": 300
  3311. },
  3312. "height": {
  3313. "type": "double",
  3314. "value": 100
  3315. },
  3316. "cornerRadius": {
  3317. "type": "double",
  3318. "value": 0
  3319. },
  3320. "style": {
  3321. "type": "map<string,string>",
  3322. "value": {
  3323. "stroke": "#000000",
  3324. "stroke-dasharray": "",
  3325. "fill": "#bbbbbb",
  3326. "fill-opacity": 1,
  3327. "font-size": "20px",
  3328. "stroke-width": 1,
  3329. "arrow-start": "none",
  3330. "arrow-end": "none"
  3331. }
  3332. },
  3333. "mapper": {
  3334. "type": "code",
  3335. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3336. },
  3337. "parser": {
  3338. "type": "code",
  3339. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3340. },
  3341. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  3342. },
  3343. "37": {
  3344. "segments": {
  3345. "type": "string",
  3346. "value": "m0,0l300,0"
  3347. },
  3348. "style": {
  3349. "type": "map<string,string>",
  3350. "value": {
  3351. "stroke": "#ffff00",
  3352. "stroke-dasharray": "- ",
  3353. "fill": "#ffff00",
  3354. "fill-opacity": 0.75,
  3355. "stroke-width": 4,
  3356. "arrow-start": "none",
  3357. "arrow-end": "none"
  3358. }
  3359. },
  3360. "mapper": {
  3361. "type": "code",
  3362. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3363. },
  3364. "parser": {
  3365. "type": "code",
  3366. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3367. },
  3368. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  3369. },
  3370. "38": {
  3371. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3372. },
  3373. "39": {
  3374. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3375. },
  3376. "40": {
  3377. "r": {
  3378. "type": "double",
  3379. "value": 50
  3380. },
  3381. "sides": {
  3382. "type": "int",
  3383. "value": 5
  3384. },
  3385. "style": {
  3386. "type": "map<string,string>",
  3387. "value": {
  3388. "stroke": "#7FFF00",
  3389. "stroke-dasharray": "",
  3390. "fill": "#FFA500",
  3391. "fill-opacity": 0.75,
  3392. "font-size": "20px",
  3393. "stroke-width": 1,
  3394. "arrow-start": "none",
  3395. "arrow-end": "none"
  3396. }
  3397. },
  3398. "mapper": {
  3399. "type": "code",
  3400. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3401. },
  3402. "parser": {
  3403. "type": "code",
  3404. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3405. },
  3406. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Polygon"
  3407. },
  3408. "41": {
  3409. "r": {
  3410. "type": "double",
  3411. "value": 20
  3412. },
  3413. "style": {
  3414. "type": "map<string,string>",
  3415. "value": {
  3416. "stroke": "#000000",
  3417. "stroke-dasharray": "",
  3418. "fill": "#F5F5F5",
  3419. "fill-opacity": 0.5,
  3420. "font-size": "20px",
  3421. "stroke-width": 1,
  3422. "arrow-start": "none",
  3423. "arrow-end": "none"
  3424. }
  3425. },
  3426. "mapper": {
  3427. "type": "code",
  3428. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3429. },
  3430. "parser": {
  3431. "type": "code",
  3432. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3433. },
  3434. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  3435. },
  3436. "42": {
  3437. "r": {
  3438. "type": "double",
  3439. "value": 20
  3440. },
  3441. "style": {
  3442. "type": "map<string,string>",
  3443. "value": {
  3444. "stroke": "#000000",
  3445. "stroke-dasharray": "",
  3446. "fill": "#F5F5F5",
  3447. "fill-opacity": 0.5,
  3448. "font-size": "20px",
  3449. "stroke-width": 1,
  3450. "arrow-start": "none",
  3451. "arrow-end": "none"
  3452. }
  3453. },
  3454. "mapper": {
  3455. "type": "code",
  3456. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3457. },
  3458. "parser": {
  3459. "type": "code",
  3460. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3461. },
  3462. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  3463. },
  3464. "46": {
  3465. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3466. },
  3467. "47": {
  3468. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3469. },
  3470. "48": {
  3471. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  3472. }
  3473. },
  3474. "edges": [
  3475. {
  3476. "src": "0",
  3477. "dest": "32"
  3478. },
  3479. {
  3480. "src": "32",
  3481. "dest": "12"
  3482. },
  3483. {
  3484. "src": "0",
  3485. "dest": "33"
  3486. },
  3487. {
  3488. "src": "33",
  3489. "dest": "22"
  3490. },
  3491. {
  3492. "src": "7",
  3493. "dest": "34"
  3494. },
  3495. {
  3496. "src": "34",
  3497. "dest": "17"
  3498. },
  3499. {
  3500. "src": "7",
  3501. "dest": "35"
  3502. },
  3503. {
  3504. "src": "35",
  3505. "dest": "24"
  3506. },
  3507. {
  3508. "src": "1",
  3509. "dest": "38"
  3510. },
  3511. {
  3512. "src": "38",
  3513. "dest": "36"
  3514. },
  3515. {
  3516. "src": "1",
  3517. "dest": "39"
  3518. },
  3519. {
  3520. "src": "39",
  3521. "dest": "37"
  3522. },
  3523. {
  3524. "src": "2",
  3525. "dest": "46"
  3526. },
  3527. {
  3528. "src": "46",
  3529. "dest": "40"
  3530. },
  3531. {
  3532. "src": "2",
  3533. "dest": "47"
  3534. },
  3535. {
  3536. "src": "47",
  3537. "dest": "41"
  3538. },
  3539. {
  3540. "src": "2",
  3541. "dest": "48"
  3542. },
  3543. {
  3544. "src": "48",
  3545. "dest": "42"
  3546. }
  3547. ],
  3548. "metamodels": [
  3549. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax"
  3550. ]
  3551. }
  3552. }