ModifyAS.model 81 KB

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