R_AddDependParam.model 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760
  1. {
  2. "csm": {
  3. "nodes": {
  4. "108": {
  5. "typename": {
  6. "type": "string",
  7. "value": "LHSIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 499,
  13. 300
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": ""
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": ""
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "4": {
  40. "segments": {
  41. "type": "string",
  42. "value": "m0,0 l350,0 l100,250 l-100,250 l-350,0z"
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "stroke": "#000000",
  48. "stroke-dasharray": "",
  49. "fill": "#ffffff",
  50. "fill-opacity": 0.75,
  51. "stroke-width": 2,
  52. "arrow-start": "none",
  53. "arrow-end": "none"
  54. }
  55. },
  56. "mapper": {
  57. "type": "code",
  58. "value": ""
  59. },
  60. "parser": {
  61. "type": "code",
  62. "value": ""
  63. },
  64. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  65. "position": {
  66. "type": "list<double>",
  67. "value": [
  68. 1,
  69. 0
  70. ]
  71. },
  72. "orientation": {
  73. "type": "double",
  74. "value": 0
  75. },
  76. "scale": {
  77. "type": "list<double>",
  78. "value": [
  79. 1,
  80. 1
  81. ]
  82. }
  83. }
  84. },
  85. "edges": []
  86. }
  87. },
  88. "$asuri": {
  89. "type": "string",
  90. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS/107.instance"
  91. },
  92. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon"
  93. },
  94. "109": {
  95. "typename": {
  96. "type": "string",
  97. "value": "RHSIcon"
  98. },
  99. "position": {
  100. "type": "list<double>",
  101. "value": [
  102. 900,
  103. 300
  104. ]
  105. },
  106. "orientation": {
  107. "type": "double",
  108. "value": 0
  109. },
  110. "scale": {
  111. "type": "list<double>",
  112. "value": [
  113. 1,
  114. 1
  115. ]
  116. },
  117. "mapper": {
  118. "type": "code",
  119. "value": ""
  120. },
  121. "parser": {
  122. "type": "code",
  123. "value": ""
  124. },
  125. "$contents": {
  126. "type": "map<string,*>",
  127. "value": {
  128. "nodes": {
  129. "7": {
  130. "segments": {
  131. "type": "string",
  132. "value": "m0,0 l450,0 l0,500 l-450,0 l100,-250z"
  133. },
  134. "style": {
  135. "type": "map<string,string>",
  136. "value": {
  137. "stroke": "#000000",
  138. "stroke-dasharray": "",
  139. "fill": "#ffffff",
  140. "fill-opacity": 0.75,
  141. "stroke-width": 2,
  142. "arrow-start": "none",
  143. "arrow-end": "none"
  144. }
  145. },
  146. "mapper": {
  147. "type": "code",
  148. "value": ""
  149. },
  150. "parser": {
  151. "type": "code",
  152. "value": ""
  153. },
  154. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  155. "position": {
  156. "type": "list<double>",
  157. "value": [
  158. 0,
  159. 0
  160. ]
  161. },
  162. "orientation": {
  163. "type": "double",
  164. "value": 0
  165. },
  166. "scale": {
  167. "type": "list<double>",
  168. "value": [
  169. 1,
  170. 1
  171. ]
  172. }
  173. }
  174. },
  175. "edges": []
  176. }
  177. },
  178. "$asuri": {
  179. "type": "string",
  180. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS/108.instance"
  181. },
  182. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon"
  183. },
  184. "125": {
  185. "typename": {
  186. "type": "string",
  187. "value": "ParametersIcon"
  188. },
  189. "position": {
  190. "type": "list<double>",
  191. "value": [
  192. 606,
  193. 334
  194. ]
  195. },
  196. "orientation": {
  197. "type": "double",
  198. "value": 0
  199. },
  200. "scale": {
  201. "type": "list<double>",
  202. "value": [
  203. 1,
  204. 1
  205. ]
  206. },
  207. "mapper": {
  208. "type": "code",
  209. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  210. },
  211. "parser": {
  212. "type": "code",
  213. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  214. },
  215. "$contents": {
  216. "type": "map<string,*>",
  217. "value": {
  218. "nodes": {
  219. "93": {
  220. "width": {
  221. "type": "double",
  222. "value": 60
  223. },
  224. "height": {
  225. "type": "double",
  226. "value": 60
  227. },
  228. "cornerRadius": {
  229. "type": "double",
  230. "value": 0
  231. },
  232. "style": {
  233. "type": "map<string,string>",
  234. "value": {
  235. "stroke": "#000000",
  236. "stroke-dasharray": "",
  237. "fill": "#f9ec72",
  238. "fill-opacity": 0.75,
  239. "font-size": "20px",
  240. "stroke-width": 1,
  241. "arrow-start": "none",
  242. "arrow-end": "none"
  243. }
  244. },
  245. "mapper": {
  246. "type": "code",
  247. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  248. },
  249. "parser": {
  250. "type": "code",
  251. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  252. },
  253. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  254. "position": {
  255. "type": "list<double>",
  256. "value": [
  257. 23,
  258. 24
  259. ]
  260. },
  261. "orientation": {
  262. "type": "double",
  263. "value": 0
  264. },
  265. "scale": {
  266. "type": "list<double>",
  267. "value": [
  268. 1,
  269. 1
  270. ]
  271. }
  272. },
  273. "95": {
  274. "textContent": {
  275. "type": "string",
  276. "value": "Parameters"
  277. },
  278. "style": {
  279. "type": "map<string,string>",
  280. "value": {
  281. "stroke": "#000000",
  282. "stroke-dasharray": "",
  283. "fill": "#ffffff",
  284. "fill-opacity": 0.75,
  285. "font-size": "9px",
  286. "stroke-width": 1,
  287. "arrow-start": "none",
  288. "arrow-end": "none"
  289. }
  290. },
  291. "mapper": {
  292. "type": "code",
  293. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  294. },
  295. "parser": {
  296. "type": "code",
  297. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  298. },
  299. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  300. "position": {
  301. "type": "list<double>",
  302. "value": [
  303. 26,
  304. 92
  305. ]
  306. },
  307. "orientation": {
  308. "type": "double",
  309. "value": 0
  310. },
  311. "scale": {
  312. "type": "list<double>",
  313. "value": [
  314. 1,
  315. 1
  316. ]
  317. }
  318. },
  319. "157": {
  320. "src": {
  321. "type": "string",
  322. "value": "/Toolbars/Utilities/editprefs.icon.png"
  323. },
  324. "width": {
  325. "type": "double",
  326. "value": 48
  327. },
  328. "height": {
  329. "type": "double",
  330. "value": 48
  331. },
  332. "style": {
  333. "type": "map<string,string>",
  334. "value": {
  335. "stroke": "#000000",
  336. "stroke-dasharray": "",
  337. "fill": "#ffffff",
  338. "fill-opacity": 0.75,
  339. "font-size": "20px",
  340. "stroke-width": 1,
  341. "arrow-start": "none",
  342. "arrow-end": "none"
  343. }
  344. },
  345. "mapper": {
  346. "type": "code",
  347. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  348. },
  349. "parser": {
  350. "type": "code",
  351. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  352. },
  353. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  354. "position": {
  355. "type": "list<double>",
  356. "value": [
  357. 27,
  358. 28
  359. ]
  360. },
  361. "orientation": {
  362. "type": "double",
  363. "value": 0
  364. },
  365. "scale": {
  366. "type": "list<double>",
  367. "value": [
  368. 1,
  369. 1
  370. ]
  371. }
  372. },
  373. "158": {
  374. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  375. "position": {
  376. "type": "list<double>",
  377. "value": [
  378. 37.11052529523249,
  379. 38.60657796325995
  380. ]
  381. },
  382. "orientation": {
  383. "type": "double",
  384. "value": 0
  385. },
  386. "scale": {
  387. "type": "list<double>",
  388. "value": [
  389. 1,
  390. 1
  391. ]
  392. },
  393. "link-style": {
  394. "type": "map<string,string>",
  395. "value": {
  396. "stroke": "#00ffff",
  397. "stroke-dasharray": "",
  398. "stroke-opacity": 0.1,
  399. "stroke-width": 1
  400. }
  401. }
  402. },
  403. "__pLabelText": {
  404. "position": {
  405. "type": "list<double>",
  406. "value": [
  407. 0,
  408. 0
  409. ]
  410. },
  411. "orientation": {
  412. "type": "double",
  413. "value": 0
  414. },
  415. "scale": {
  416. "type": "list<double>",
  417. "value": [
  418. 1,
  419. 1
  420. ]
  421. },
  422. "textContent": {
  423. "type": "string",
  424. "value": "0"
  425. },
  426. "style": {
  427. "type": "map<string,string>",
  428. "value": {
  429. "stroke": "#6000ff",
  430. "fill": "#6000ff",
  431. "font-size": "15px",
  432. "opacity": "1"
  433. }
  434. },
  435. "mapper": {
  436. "type": "code",
  437. "value": "({'textContent':getAttr('__pLabel')})"
  438. },
  439. "parser": {
  440. "type": "code",
  441. "value": "({'__pLabel':getAttr('textContent')})"
  442. },
  443. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  444. }
  445. },
  446. "edges": [
  447. {
  448. "src": "93",
  449. "dest": "158"
  450. },
  451. {
  452. "src": "158",
  453. "dest": "157"
  454. }
  455. ]
  456. }
  457. },
  458. "$asuri": {
  459. "type": "string",
  460. "value": "/Formalisms/Workflows/Workflows.pattern/__pParameters/124.instance"
  461. },
  462. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pParametersIcon"
  463. },
  464. "126": {
  465. "typename": {
  466. "type": "string",
  467. "value": "ParametersIcon"
  468. },
  469. "position": {
  470. "type": "list<double>",
  471. "value": [
  472. 1050,
  473. 325
  474. ]
  475. },
  476. "orientation": {
  477. "type": "double",
  478. "value": 0
  479. },
  480. "scale": {
  481. "type": "list<double>",
  482. "value": [
  483. 1,
  484. 1
  485. ]
  486. },
  487. "mapper": {
  488. "type": "code",
  489. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  490. },
  491. "parser": {
  492. "type": "code",
  493. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  494. },
  495. "$contents": {
  496. "type": "map<string,*>",
  497. "value": {
  498. "nodes": {
  499. "93": {
  500. "width": {
  501. "type": "double",
  502. "value": 60
  503. },
  504. "height": {
  505. "type": "double",
  506. "value": 60
  507. },
  508. "cornerRadius": {
  509. "type": "double",
  510. "value": 0
  511. },
  512. "style": {
  513. "type": "map<string,string>",
  514. "value": {
  515. "stroke": "#000000",
  516. "stroke-dasharray": "",
  517. "fill": "#f9ec72",
  518. "fill-opacity": 0.75,
  519. "font-size": "20px",
  520. "stroke-width": 1,
  521. "arrow-start": "none",
  522. "arrow-end": "none"
  523. }
  524. },
  525. "mapper": {
  526. "type": "code",
  527. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  528. },
  529. "parser": {
  530. "type": "code",
  531. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  532. },
  533. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  534. "position": {
  535. "type": "list<double>",
  536. "value": [
  537. 23,
  538. 24
  539. ]
  540. },
  541. "orientation": {
  542. "type": "double",
  543. "value": 0
  544. },
  545. "scale": {
  546. "type": "list<double>",
  547. "value": [
  548. 1,
  549. 1
  550. ]
  551. }
  552. },
  553. "95": {
  554. "textContent": {
  555. "type": "string",
  556. "value": "Parameters"
  557. },
  558. "style": {
  559. "type": "map<string,string>",
  560. "value": {
  561. "stroke": "#000000",
  562. "stroke-dasharray": "",
  563. "fill": "#ffffff",
  564. "fill-opacity": 0.75,
  565. "font-size": "9px",
  566. "stroke-width": 1,
  567. "arrow-start": "none",
  568. "arrow-end": "none"
  569. }
  570. },
  571. "mapper": {
  572. "type": "code",
  573. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  574. },
  575. "parser": {
  576. "type": "code",
  577. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  578. },
  579. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  580. "position": {
  581. "type": "list<double>",
  582. "value": [
  583. 26,
  584. 92
  585. ]
  586. },
  587. "orientation": {
  588. "type": "double",
  589. "value": 0
  590. },
  591. "scale": {
  592. "type": "list<double>",
  593. "value": [
  594. 1,
  595. 1
  596. ]
  597. }
  598. },
  599. "157": {
  600. "src": {
  601. "type": "string",
  602. "value": "/Toolbars/Utilities/editprefs.icon.png"
  603. },
  604. "width": {
  605. "type": "double",
  606. "value": 48
  607. },
  608. "height": {
  609. "type": "double",
  610. "value": 48
  611. },
  612. "style": {
  613. "type": "map<string,string>",
  614. "value": {
  615. "stroke": "#000000",
  616. "stroke-dasharray": "",
  617. "fill": "#ffffff",
  618. "fill-opacity": 0.75,
  619. "font-size": "20px",
  620. "stroke-width": 1,
  621. "arrow-start": "none",
  622. "arrow-end": "none"
  623. }
  624. },
  625. "mapper": {
  626. "type": "code",
  627. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  628. },
  629. "parser": {
  630. "type": "code",
  631. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  632. },
  633. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  634. "position": {
  635. "type": "list<double>",
  636. "value": [
  637. 27,
  638. 28
  639. ]
  640. },
  641. "orientation": {
  642. "type": "double",
  643. "value": 0
  644. },
  645. "scale": {
  646. "type": "list<double>",
  647. "value": [
  648. 1,
  649. 1
  650. ]
  651. }
  652. },
  653. "158": {
  654. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  655. "position": {
  656. "type": "list<double>",
  657. "value": [
  658. 37.11052529523249,
  659. 38.60657796325995
  660. ]
  661. },
  662. "orientation": {
  663. "type": "double",
  664. "value": 0
  665. },
  666. "scale": {
  667. "type": "list<double>",
  668. "value": [
  669. 1,
  670. 1
  671. ]
  672. },
  673. "link-style": {
  674. "type": "map<string,string>",
  675. "value": {
  676. "stroke": "#00ffff",
  677. "stroke-dasharray": "",
  678. "stroke-opacity": 0.1,
  679. "stroke-width": 1
  680. }
  681. }
  682. },
  683. "__pLabelText": {
  684. "position": {
  685. "type": "list<double>",
  686. "value": [
  687. 0,
  688. 0
  689. ]
  690. },
  691. "orientation": {
  692. "type": "double",
  693. "value": 0
  694. },
  695. "scale": {
  696. "type": "list<double>",
  697. "value": [
  698. 1,
  699. 1
  700. ]
  701. },
  702. "textContent": {
  703. "type": "string",
  704. "value": "0"
  705. },
  706. "style": {
  707. "type": "map<string,string>",
  708. "value": {
  709. "stroke": "#6000ff",
  710. "fill": "#6000ff",
  711. "font-size": "15px",
  712. "opacity": "1"
  713. }
  714. },
  715. "mapper": {
  716. "type": "code",
  717. "value": "({'textContent':getAttr('__pLabel')})"
  718. },
  719. "parser": {
  720. "type": "code",
  721. "value": "({'__pLabel':getAttr('textContent')})"
  722. },
  723. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  724. }
  725. },
  726. "edges": [
  727. {
  728. "src": "93",
  729. "dest": "158"
  730. },
  731. {
  732. "src": "158",
  733. "dest": "157"
  734. }
  735. ]
  736. }
  737. },
  738. "$asuri": {
  739. "type": "string",
  740. "value": "/Formalisms/Workflows/Workflows.pattern/__pParameters/125.instance"
  741. },
  742. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pParametersIcon"
  743. },
  744. "127": {
  745. "link-style": {
  746. "type": "map<string,string>",
  747. "value": {
  748. "stroke": "#00ff00",
  749. "stroke-dasharray": "",
  750. "stroke-opacity": 0.2,
  751. "stroke-width": 1,
  752. "arrow-start": "none",
  753. "arrow-end": "classic-wide-long"
  754. }
  755. },
  756. "typename": {
  757. "type": "string",
  758. "value": "PatternContentsLink"
  759. },
  760. "position": {
  761. "type": "list<double>",
  762. "value": [
  763. 573.75,
  764. 342.5
  765. ]
  766. },
  767. "orientation": {
  768. "type": "double",
  769. "value": 0
  770. },
  771. "scale": {
  772. "type": "list<double>",
  773. "value": [
  774. 1,
  775. 1
  776. ]
  777. },
  778. "mapper": {
  779. "type": "code",
  780. "value": ""
  781. },
  782. "parser": {
  783. "type": "code",
  784. "value": ""
  785. },
  786. "$contents": {
  787. "type": "map<string,*>",
  788. "value": {
  789. "nodes": {},
  790. "edges": []
  791. }
  792. },
  793. "$asuri": {
  794. "type": "string",
  795. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/126.instance"
  796. },
  797. "$segments": {
  798. "type": "map<string,list<string>>",
  799. "value": {
  800. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/108.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/127.instance": "M500,300L573.75,342.5",
  801. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/127.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pParametersIcon/125.instance": "M573.879840770828,342.57482349505335L647.4993880236108,384.99964733564013"
  802. }
  803. },
  804. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  805. },
  806. "128": {
  807. "link-style": {
  808. "type": "map<string,string>",
  809. "value": {
  810. "stroke": "#00ff00",
  811. "stroke-dasharray": "",
  812. "stroke-opacity": 0.2,
  813. "stroke-width": 1,
  814. "arrow-start": "none",
  815. "arrow-end": "classic-wide-long"
  816. }
  817. },
  818. "typename": {
  819. "type": "string",
  820. "value": "PatternContentsLink"
  821. },
  822. "position": {
  823. "type": "list<double>",
  824. "value": [
  825. 990.886124954625,
  826. 342.56374997875
  827. ]
  828. },
  829. "orientation": {
  830. "type": "double",
  831. "value": 0
  832. },
  833. "scale": {
  834. "type": "list<double>",
  835. "value": [
  836. 1,
  837. 1
  838. ]
  839. },
  840. "mapper": {
  841. "type": "code",
  842. "value": ""
  843. },
  844. "parser": {
  845. "type": "code",
  846. "value": ""
  847. },
  848. "$contents": {
  849. "type": "map<string,*>",
  850. "value": {
  851. "nodes": {},
  852. "edges": []
  853. }
  854. },
  855. "$asuri": {
  856. "type": "string",
  857. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/127.instance"
  858. },
  859. "$segments": {
  860. "type": "map<string,list<string>>",
  861. "value": {
  862. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/109.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/128.instance": "M900,300L990.886124954625,342.56374997875",
  863. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/128.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pParametersIcon/126.instance": "M990.8858527048967,342.5636224788773L1091.499455863,375.99974517"
  864. }
  865. },
  866. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  867. },
  868. "129": {
  869. "typename": {
  870. "type": "string",
  871. "value": "__pTaskIcon"
  872. },
  873. "position": {
  874. "type": "list<double>",
  875. "value": [
  876. 618,
  877. 479
  878. ]
  879. },
  880. "orientation": {
  881. "type": "double",
  882. "value": 0
  883. },
  884. "scale": {
  885. "type": "list<double>",
  886. "value": [
  887. 1,
  888. 1
  889. ]
  890. },
  891. "mapper": {
  892. "type": "code",
  893. "value": ""
  894. },
  895. "parser": {
  896. "type": "code",
  897. "value": ""
  898. },
  899. "$contents": {
  900. "type": "map<string,*>",
  901. "value": {
  902. "nodes": {
  903. "text": {
  904. "textContent": {
  905. "type": "string",
  906. "value": "__pTaskIcon"
  907. },
  908. "style": {
  909. "type": "map<string,string>",
  910. "value": {
  911. "stroke": "#000000",
  912. "stroke-dasharray": "",
  913. "fill": "#000000",
  914. "fill-opacity": "1",
  915. "font-size": "13px"
  916. }
  917. },
  918. "mapper": {
  919. "type": "code",
  920. "value": ""
  921. },
  922. "parser": {
  923. "type": "code",
  924. "value": ""
  925. },
  926. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  927. "position": {
  928. "type": "list<double>",
  929. "value": [
  930. 10,
  931. 76
  932. ]
  933. },
  934. "orientation": {
  935. "type": "double",
  936. "value": 0
  937. },
  938. "scale": {
  939. "type": "list<double>",
  940. "value": [
  941. 1,
  942. 1
  943. ]
  944. }
  945. },
  946. "rect": {
  947. "width": {
  948. "type": "double",
  949. "value": 75
  950. },
  951. "height": {
  952. "type": "double",
  953. "value": 75
  954. },
  955. "cornerRadius": {
  956. "type": "double",
  957. "value": 15
  958. },
  959. "style": {
  960. "type": "map<string,string>",
  961. "value": {
  962. "stroke": "#000000",
  963. "fill": "#ffffff",
  964. "fill-opacity": 0.75
  965. }
  966. },
  967. "mapper": {
  968. "type": "code",
  969. "value": ""
  970. },
  971. "parser": {
  972. "type": "code",
  973. "value": ""
  974. },
  975. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  976. "position": {
  977. "type": "list<double>",
  978. "value": [
  979. 0,
  980. 0
  981. ]
  982. },
  983. "orientation": {
  984. "type": "double",
  985. "value": 0
  986. },
  987. "scale": {
  988. "type": "list<double>",
  989. "value": [
  990. 1,
  991. 1
  992. ]
  993. }
  994. },
  995. "textBelowRect": {
  996. "distance": {
  997. "type": "double",
  998. "value": 10
  999. },
  1000. "alignment": {
  1001. "type": "ENUM(\"right\",\"left\",\"center\")",
  1002. "value": "center"
  1003. },
  1004. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1005. "position": {
  1006. "type": "list<double>",
  1007. "value": [
  1008. 5,
  1009. 38
  1010. ]
  1011. },
  1012. "orientation": {
  1013. "type": "double",
  1014. "value": 0
  1015. },
  1016. "scale": {
  1017. "type": "list<double>",
  1018. "value": [
  1019. 1,
  1020. 1
  1021. ]
  1022. },
  1023. "link-style": {
  1024. "type": "map<string,string>",
  1025. "value": {
  1026. "stroke": "#00ff00",
  1027. "stroke-dasharray": "",
  1028. "stroke-opacity": 1,
  1029. "arrow-start": "none",
  1030. "arrow-end": "classic-wide-long"
  1031. }
  1032. }
  1033. },
  1034. "__pLabelText": {
  1035. "position": {
  1036. "type": "list<double>",
  1037. "value": [
  1038. 0,
  1039. 0
  1040. ]
  1041. },
  1042. "orientation": {
  1043. "type": "double",
  1044. "value": 0
  1045. },
  1046. "scale": {
  1047. "type": "list<double>",
  1048. "value": [
  1049. 1,
  1050. 1
  1051. ]
  1052. },
  1053. "textContent": {
  1054. "type": "string",
  1055. "value": "1"
  1056. },
  1057. "style": {
  1058. "type": "map<string,string>",
  1059. "value": {
  1060. "stroke": "#6000ff",
  1061. "fill": "#6000ff",
  1062. "font-size": "15px",
  1063. "opacity": "1"
  1064. }
  1065. },
  1066. "mapper": {
  1067. "type": "code",
  1068. "value": "({'textContent':getAttr('__pLabel')})"
  1069. },
  1070. "parser": {
  1071. "type": "code",
  1072. "value": "({'__pLabel':getAttr('textContent')})"
  1073. },
  1074. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1075. }
  1076. },
  1077. "edges": [
  1078. {
  1079. "src": "text",
  1080. "dest": "textBelowRect"
  1081. },
  1082. {
  1083. "src": "textBelowRect",
  1084. "dest": "rect"
  1085. }
  1086. ]
  1087. }
  1088. },
  1089. "$asuri": {
  1090. "type": "string",
  1091. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/128.instance"
  1092. },
  1093. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  1094. },
  1095. "130": {
  1096. "typename": {
  1097. "type": "string",
  1098. "value": "__pTaskIcon"
  1099. },
  1100. "position": {
  1101. "type": "list<double>",
  1102. "value": [
  1103. 1100,
  1104. 464
  1105. ]
  1106. },
  1107. "orientation": {
  1108. "type": "double",
  1109. "value": 0
  1110. },
  1111. "scale": {
  1112. "type": "list<double>",
  1113. "value": [
  1114. 1,
  1115. 1
  1116. ]
  1117. },
  1118. "mapper": {
  1119. "type": "code",
  1120. "value": ""
  1121. },
  1122. "parser": {
  1123. "type": "code",
  1124. "value": ""
  1125. },
  1126. "$contents": {
  1127. "type": "map<string,*>",
  1128. "value": {
  1129. "nodes": {
  1130. "text": {
  1131. "textContent": {
  1132. "type": "string",
  1133. "value": "__pTaskIcon"
  1134. },
  1135. "style": {
  1136. "type": "map<string,string>",
  1137. "value": {
  1138. "stroke": "#000000",
  1139. "stroke-dasharray": "",
  1140. "fill": "#000000",
  1141. "fill-opacity": "1",
  1142. "font-size": "13px"
  1143. }
  1144. },
  1145. "mapper": {
  1146. "type": "code",
  1147. "value": ""
  1148. },
  1149. "parser": {
  1150. "type": "code",
  1151. "value": ""
  1152. },
  1153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1154. "position": {
  1155. "type": "list<double>",
  1156. "value": [
  1157. 10,
  1158. 76
  1159. ]
  1160. },
  1161. "orientation": {
  1162. "type": "double",
  1163. "value": 0
  1164. },
  1165. "scale": {
  1166. "type": "list<double>",
  1167. "value": [
  1168. 1,
  1169. 1
  1170. ]
  1171. }
  1172. },
  1173. "rect": {
  1174. "width": {
  1175. "type": "double",
  1176. "value": 75
  1177. },
  1178. "height": {
  1179. "type": "double",
  1180. "value": 75
  1181. },
  1182. "cornerRadius": {
  1183. "type": "double",
  1184. "value": 15
  1185. },
  1186. "style": {
  1187. "type": "map<string,string>",
  1188. "value": {
  1189. "stroke": "#000000",
  1190. "fill": "#ffffff",
  1191. "fill-opacity": 0.75
  1192. }
  1193. },
  1194. "mapper": {
  1195. "type": "code",
  1196. "value": ""
  1197. },
  1198. "parser": {
  1199. "type": "code",
  1200. "value": ""
  1201. },
  1202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1203. "position": {
  1204. "type": "list<double>",
  1205. "value": [
  1206. 0,
  1207. 0
  1208. ]
  1209. },
  1210. "orientation": {
  1211. "type": "double",
  1212. "value": 0
  1213. },
  1214. "scale": {
  1215. "type": "list<double>",
  1216. "value": [
  1217. 1,
  1218. 1
  1219. ]
  1220. }
  1221. },
  1222. "textBelowRect": {
  1223. "distance": {
  1224. "type": "double",
  1225. "value": 10
  1226. },
  1227. "alignment": {
  1228. "type": "ENUM(\"right\",\"left\",\"center\")",
  1229. "value": "center"
  1230. },
  1231. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1232. "position": {
  1233. "type": "list<double>",
  1234. "value": [
  1235. 5,
  1236. 38
  1237. ]
  1238. },
  1239. "orientation": {
  1240. "type": "double",
  1241. "value": 0
  1242. },
  1243. "scale": {
  1244. "type": "list<double>",
  1245. "value": [
  1246. 1,
  1247. 1
  1248. ]
  1249. },
  1250. "link-style": {
  1251. "type": "map<string,string>",
  1252. "value": {
  1253. "stroke": "#00ff00",
  1254. "stroke-dasharray": "",
  1255. "stroke-opacity": 1,
  1256. "arrow-start": "none",
  1257. "arrow-end": "classic-wide-long"
  1258. }
  1259. }
  1260. },
  1261. "__pLabelText": {
  1262. "position": {
  1263. "type": "list<double>",
  1264. "value": [
  1265. 0,
  1266. 0
  1267. ]
  1268. },
  1269. "orientation": {
  1270. "type": "double",
  1271. "value": 0
  1272. },
  1273. "scale": {
  1274. "type": "list<double>",
  1275. "value": [
  1276. 1,
  1277. 1
  1278. ]
  1279. },
  1280. "textContent": {
  1281. "type": "string",
  1282. "value": "1"
  1283. },
  1284. "style": {
  1285. "type": "map<string,string>",
  1286. "value": {
  1287. "stroke": "#6000ff",
  1288. "fill": "#6000ff",
  1289. "font-size": "15px",
  1290. "opacity": "1"
  1291. }
  1292. },
  1293. "mapper": {
  1294. "type": "code",
  1295. "value": "({'textContent':getAttr('__pLabel')})"
  1296. },
  1297. "parser": {
  1298. "type": "code",
  1299. "value": "({'__pLabel':getAttr('textContent')})"
  1300. },
  1301. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1302. }
  1303. },
  1304. "edges": [
  1305. {
  1306. "src": "text",
  1307. "dest": "textBelowRect"
  1308. },
  1309. {
  1310. "src": "textBelowRect",
  1311. "dest": "rect"
  1312. }
  1313. ]
  1314. }
  1315. },
  1316. "$asuri": {
  1317. "type": "string",
  1318. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/129.instance"
  1319. },
  1320. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  1321. },
  1322. "134": {
  1323. "typename": {
  1324. "type": "string",
  1325. "value": "__pTaskIcon"
  1326. },
  1327. "position": {
  1328. "type": "list<double>",
  1329. "value": [
  1330. 622,
  1331. 639
  1332. ]
  1333. },
  1334. "orientation": {
  1335. "type": "double",
  1336. "value": 0
  1337. },
  1338. "scale": {
  1339. "type": "list<double>",
  1340. "value": [
  1341. 1,
  1342. 1
  1343. ]
  1344. },
  1345. "mapper": {
  1346. "type": "code",
  1347. "value": ""
  1348. },
  1349. "parser": {
  1350. "type": "code",
  1351. "value": ""
  1352. },
  1353. "$contents": {
  1354. "type": "map<string,*>",
  1355. "value": {
  1356. "nodes": {
  1357. "text": {
  1358. "textContent": {
  1359. "type": "string",
  1360. "value": "__pTaskIcon"
  1361. },
  1362. "style": {
  1363. "type": "map<string,string>",
  1364. "value": {
  1365. "stroke": "#000000",
  1366. "stroke-dasharray": "",
  1367. "fill": "#000000",
  1368. "fill-opacity": "1",
  1369. "font-size": "13px"
  1370. }
  1371. },
  1372. "mapper": {
  1373. "type": "code",
  1374. "value": ""
  1375. },
  1376. "parser": {
  1377. "type": "code",
  1378. "value": ""
  1379. },
  1380. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1381. "position": {
  1382. "type": "list<double>",
  1383. "value": [
  1384. 10,
  1385. 76
  1386. ]
  1387. },
  1388. "orientation": {
  1389. "type": "double",
  1390. "value": 0
  1391. },
  1392. "scale": {
  1393. "type": "list<double>",
  1394. "value": [
  1395. 1,
  1396. 1
  1397. ]
  1398. }
  1399. },
  1400. "rect": {
  1401. "width": {
  1402. "type": "double",
  1403. "value": 75
  1404. },
  1405. "height": {
  1406. "type": "double",
  1407. "value": 75
  1408. },
  1409. "cornerRadius": {
  1410. "type": "double",
  1411. "value": 15
  1412. },
  1413. "style": {
  1414. "type": "map<string,string>",
  1415. "value": {
  1416. "stroke": "#000000",
  1417. "fill": "#ffffff",
  1418. "fill-opacity": 0.75
  1419. }
  1420. },
  1421. "mapper": {
  1422. "type": "code",
  1423. "value": ""
  1424. },
  1425. "parser": {
  1426. "type": "code",
  1427. "value": ""
  1428. },
  1429. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1430. "position": {
  1431. "type": "list<double>",
  1432. "value": [
  1433. 0,
  1434. 0
  1435. ]
  1436. },
  1437. "orientation": {
  1438. "type": "double",
  1439. "value": 0
  1440. },
  1441. "scale": {
  1442. "type": "list<double>",
  1443. "value": [
  1444. 1,
  1445. 1
  1446. ]
  1447. }
  1448. },
  1449. "textBelowRect": {
  1450. "distance": {
  1451. "type": "double",
  1452. "value": 10
  1453. },
  1454. "alignment": {
  1455. "type": "ENUM(\"right\",\"left\",\"center\")",
  1456. "value": "center"
  1457. },
  1458. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1459. "position": {
  1460. "type": "list<double>",
  1461. "value": [
  1462. 5,
  1463. 38
  1464. ]
  1465. },
  1466. "orientation": {
  1467. "type": "double",
  1468. "value": 0
  1469. },
  1470. "scale": {
  1471. "type": "list<double>",
  1472. "value": [
  1473. 1,
  1474. 1
  1475. ]
  1476. },
  1477. "link-style": {
  1478. "type": "map<string,string>",
  1479. "value": {
  1480. "stroke": "#00ff00",
  1481. "stroke-dasharray": "",
  1482. "stroke-opacity": 1,
  1483. "arrow-start": "none",
  1484. "arrow-end": "classic-wide-long"
  1485. }
  1486. }
  1487. },
  1488. "__pLabelText": {
  1489. "position": {
  1490. "type": "list<double>",
  1491. "value": [
  1492. 0,
  1493. 0
  1494. ]
  1495. },
  1496. "orientation": {
  1497. "type": "double",
  1498. "value": 0
  1499. },
  1500. "scale": {
  1501. "type": "list<double>",
  1502. "value": [
  1503. 1,
  1504. 1
  1505. ]
  1506. },
  1507. "textContent": {
  1508. "type": "string",
  1509. "value": "2"
  1510. },
  1511. "style": {
  1512. "type": "map<string,string>",
  1513. "value": {
  1514. "stroke": "#6000ff",
  1515. "fill": "#6000ff",
  1516. "font-size": "15px",
  1517. "opacity": "1"
  1518. }
  1519. },
  1520. "mapper": {
  1521. "type": "code",
  1522. "value": "({'textContent':getAttr('__pLabel')})"
  1523. },
  1524. "parser": {
  1525. "type": "code",
  1526. "value": "({'__pLabel':getAttr('textContent')})"
  1527. },
  1528. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1529. }
  1530. },
  1531. "edges": [
  1532. {
  1533. "src": "text",
  1534. "dest": "textBelowRect"
  1535. },
  1536. {
  1537. "src": "textBelowRect",
  1538. "dest": "rect"
  1539. }
  1540. ]
  1541. }
  1542. },
  1543. "$asuri": {
  1544. "type": "string",
  1545. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/133.instance"
  1546. },
  1547. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  1548. },
  1549. "135": {
  1550. "link-style": {
  1551. "type": "map<string,string>",
  1552. "value": {
  1553. "stroke": "#009688",
  1554. "stroke-dasharray": "",
  1555. "stroke-opacity": 0.3,
  1556. "stroke-width": 2
  1557. }
  1558. },
  1559. "arrowHead": {
  1560. "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)",
  1561. "value": "custom"
  1562. },
  1563. "arrowTail": {
  1564. "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)",
  1565. "value": "arrow-black"
  1566. },
  1567. "typename": {
  1568. "type": "string",
  1569. "value": "DependencyLink"
  1570. },
  1571. "position": {
  1572. "type": "list<double>",
  1573. "value": [
  1574. 656,
  1575. 597.5
  1576. ]
  1577. },
  1578. "orientation": {
  1579. "type": "double",
  1580. "value": 0
  1581. },
  1582. "scale": {
  1583. "type": "list<double>",
  1584. "value": [
  1585. 1,
  1586. 1
  1587. ]
  1588. },
  1589. "mapper": {
  1590. "type": "code",
  1591. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1592. },
  1593. "parser": {
  1594. "type": "code",
  1595. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1596. },
  1597. "$contents": {
  1598. "type": "map<string,*>",
  1599. "value": {
  1600. "nodes": {
  1601. "272": {
  1602. "segments": {
  1603. "type": "string",
  1604. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1605. },
  1606. "style": {
  1607. "type": "map<string,string>",
  1608. "value": {
  1609. "stroke": "#000000",
  1610. "fill": "#000000",
  1611. "opacity": 1,
  1612. "stroke-width": 1
  1613. }
  1614. },
  1615. "mapper": {
  1616. "type": "code",
  1617. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1618. },
  1619. "parser": {
  1620. "type": "code",
  1621. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1622. },
  1623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1624. "position": {
  1625. "type": "list<double>",
  1626. "value": [
  1627. "0;5,6.123031769111886e-15%",
  1628. "0;47.499684432132995,100%"
  1629. ]
  1630. },
  1631. "orientation": {
  1632. "type": "double",
  1633. "value": "0;90"
  1634. },
  1635. "scale": {
  1636. "type": "list<double>",
  1637. "value": [
  1638. 1,
  1639. 1
  1640. ]
  1641. },
  1642. "$linkDecoratorInfo": {
  1643. "type": "map<string,double>",
  1644. "value": {
  1645. "xratio": 1,
  1646. "yoffset": -5
  1647. }
  1648. }
  1649. },
  1650. "290": {
  1651. "segments": {
  1652. "type": "string",
  1653. "value": "m0,0 l-20,10 l20,10 z"
  1654. },
  1655. "style": {
  1656. "type": "map<string,string>",
  1657. "value": {
  1658. "stroke": "#000000",
  1659. "fill": "#000000",
  1660. "opacity": 1,
  1661. "stroke-width": 1
  1662. }
  1663. },
  1664. "mapper": {
  1665. "type": "code",
  1666. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1667. },
  1668. "parser": {
  1669. "type": "code",
  1670. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1671. },
  1672. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1673. "position": {
  1674. "type": "list<double>",
  1675. "value": [
  1676. "0;10,0%",
  1677. "0;-25.5,0%"
  1678. ]
  1679. },
  1680. "orientation": {
  1681. "type": "double",
  1682. "value": "0;90"
  1683. },
  1684. "scale": {
  1685. "type": "list<double>",
  1686. "value": [
  1687. 1,
  1688. 1
  1689. ]
  1690. },
  1691. "$linkDecoratorInfo": {
  1692. "type": "map<string,double>",
  1693. "value": {
  1694. "xratio": -1,
  1695. "yoffset": -10
  1696. }
  1697. }
  1698. },
  1699. "__pLabelText": {
  1700. "position": {
  1701. "type": "list<double>",
  1702. "value": [
  1703. 0,
  1704. 0
  1705. ]
  1706. },
  1707. "orientation": {
  1708. "type": "double",
  1709. "value": 0
  1710. },
  1711. "scale": {
  1712. "type": "list<double>",
  1713. "value": [
  1714. 1,
  1715. 1
  1716. ]
  1717. },
  1718. "textContent": {
  1719. "type": "string",
  1720. "value": "3"
  1721. },
  1722. "style": {
  1723. "type": "map<string,string>",
  1724. "value": {
  1725. "stroke": "#6000ff",
  1726. "fill": "#6000ff",
  1727. "font-size": "15px",
  1728. "opacity": "1"
  1729. }
  1730. },
  1731. "mapper": {
  1732. "type": "code",
  1733. "value": "({'textContent':getAttr('__pLabel')})"
  1734. },
  1735. "parser": {
  1736. "type": "code",
  1737. "value": "({'__pLabel':getAttr('textContent')})"
  1738. },
  1739. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1740. }
  1741. },
  1742. "edges": []
  1743. }
  1744. },
  1745. "$asuri": {
  1746. "type": "string",
  1747. "value": "/Formalisms/Workflows/Workflows.pattern/__pDependency/134.instance"
  1748. },
  1749. "$segments": {
  1750. "type": "map<string,list<string>>",
  1751. "value": {
  1752. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/129.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pDependencyLink/135.instance": "M656,572L656,597.5",
  1753. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pDependencyLink/135.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/134.instance": "M656,597.57643614089L656,644.999684432133"
  1754. }
  1755. },
  1756. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pDependencyLink"
  1757. },
  1758. "136": {
  1759. "link-style": {
  1760. "type": "map<string,string>",
  1761. "value": {
  1762. "stroke": "#00ff00",
  1763. "stroke-dasharray": "",
  1764. "stroke-opacity": 0.2,
  1765. "stroke-width": 1,
  1766. "arrow-start": "none",
  1767. "arrow-end": "classic-wide-long"
  1768. }
  1769. },
  1770. "typename": {
  1771. "type": "string",
  1772. "value": "PatternContentsLink"
  1773. },
  1774. "position": {
  1775. "type": "list<double>",
  1776. "value": [
  1777. 579.88671875,
  1778. 412.25
  1779. ]
  1780. },
  1781. "orientation": {
  1782. "type": "double",
  1783. "value": 0
  1784. },
  1785. "scale": {
  1786. "type": "list<double>",
  1787. "value": [
  1788. 1,
  1789. 1
  1790. ]
  1791. },
  1792. "mapper": {
  1793. "type": "code",
  1794. "value": ""
  1795. },
  1796. "parser": {
  1797. "type": "code",
  1798. "value": ""
  1799. },
  1800. "$contents": {
  1801. "type": "map<string,*>",
  1802. "value": {
  1803. "nodes": {},
  1804. "edges": []
  1805. }
  1806. },
  1807. "$asuri": {
  1808. "type": "string",
  1809. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/135.instance"
  1810. },
  1811. "$segments": {
  1812. "type": "map<string,list<string>>",
  1813. "value": {
  1814. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/108.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/136.instance": "M500,300L579.88671875,412.25",
  1815. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/136.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/129.instance": "M579.930103178373,412.31096009651L659.7728674840736,524.499199062263"
  1816. }
  1817. },
  1818. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1819. },
  1820. "137": {
  1821. "link-style": {
  1822. "type": "map<string,string>",
  1823. "value": {
  1824. "stroke": "#00ff00",
  1825. "stroke-dasharray": "",
  1826. "stroke-opacity": 0.2,
  1827. "stroke-width": 1,
  1828. "arrow-start": "none",
  1829. "arrow-end": "classic-wide-long"
  1830. }
  1831. },
  1832. "typename": {
  1833. "type": "string",
  1834. "value": "PatternContentsLink"
  1835. },
  1836. "position": {
  1837. "type": "list<double>",
  1838. "value": [
  1839. 581.88671875,
  1840. 492.25
  1841. ]
  1842. },
  1843. "orientation": {
  1844. "type": "double",
  1845. "value": 0
  1846. },
  1847. "scale": {
  1848. "type": "list<double>",
  1849. "value": [
  1850. 1,
  1851. 1
  1852. ]
  1853. },
  1854. "mapper": {
  1855. "type": "code",
  1856. "value": ""
  1857. },
  1858. "parser": {
  1859. "type": "code",
  1860. "value": ""
  1861. },
  1862. "$contents": {
  1863. "type": "map<string,*>",
  1864. "value": {
  1865. "nodes": {},
  1866. "edges": []
  1867. }
  1868. },
  1869. "$asuri": {
  1870. "type": "string",
  1871. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/136.instance"
  1872. },
  1873. "$segments": {
  1874. "type": "map<string,list<string>>",
  1875. "value": {
  1876. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/108.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/137.instance": "M500,300L581.88671875,492.25",
  1877. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/137.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/134.instance": "M581.9160896391943,492.3189556686821L663.7731833285454,684.4994032675521"
  1878. }
  1879. },
  1880. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1881. },
  1882. "138": {
  1883. "typename": {
  1884. "type": "string",
  1885. "value": "__pTaskIcon"
  1886. },
  1887. "position": {
  1888. "type": "list<double>",
  1889. "value": [
  1890. 1100,
  1891. 656
  1892. ]
  1893. },
  1894. "orientation": {
  1895. "type": "double",
  1896. "value": 0
  1897. },
  1898. "scale": {
  1899. "type": "list<double>",
  1900. "value": [
  1901. 1,
  1902. 1
  1903. ]
  1904. },
  1905. "mapper": {
  1906. "type": "code",
  1907. "value": ""
  1908. },
  1909. "parser": {
  1910. "type": "code",
  1911. "value": ""
  1912. },
  1913. "$contents": {
  1914. "type": "map<string,*>",
  1915. "value": {
  1916. "nodes": {
  1917. "text": {
  1918. "textContent": {
  1919. "type": "string",
  1920. "value": "__pTaskIcon"
  1921. },
  1922. "style": {
  1923. "type": "map<string,string>",
  1924. "value": {
  1925. "stroke": "#000000",
  1926. "stroke-dasharray": "",
  1927. "fill": "#000000",
  1928. "fill-opacity": "1",
  1929. "font-size": "13px"
  1930. }
  1931. },
  1932. "mapper": {
  1933. "type": "code",
  1934. "value": ""
  1935. },
  1936. "parser": {
  1937. "type": "code",
  1938. "value": ""
  1939. },
  1940. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1941. "position": {
  1942. "type": "list<double>",
  1943. "value": [
  1944. 10,
  1945. 76
  1946. ]
  1947. },
  1948. "orientation": {
  1949. "type": "double",
  1950. "value": 0
  1951. },
  1952. "scale": {
  1953. "type": "list<double>",
  1954. "value": [
  1955. 1,
  1956. 1
  1957. ]
  1958. }
  1959. },
  1960. "rect": {
  1961. "width": {
  1962. "type": "double",
  1963. "value": 75
  1964. },
  1965. "height": {
  1966. "type": "double",
  1967. "value": 75
  1968. },
  1969. "cornerRadius": {
  1970. "type": "double",
  1971. "value": 15
  1972. },
  1973. "style": {
  1974. "type": "map<string,string>",
  1975. "value": {
  1976. "stroke": "#000000",
  1977. "fill": "#ffffff",
  1978. "fill-opacity": 0.75
  1979. }
  1980. },
  1981. "mapper": {
  1982. "type": "code",
  1983. "value": ""
  1984. },
  1985. "parser": {
  1986. "type": "code",
  1987. "value": ""
  1988. },
  1989. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1990. "position": {
  1991. "type": "list<double>",
  1992. "value": [
  1993. 0,
  1994. 0
  1995. ]
  1996. },
  1997. "orientation": {
  1998. "type": "double",
  1999. "value": 0
  2000. },
  2001. "scale": {
  2002. "type": "list<double>",
  2003. "value": [
  2004. 1,
  2005. 1
  2006. ]
  2007. }
  2008. },
  2009. "textBelowRect": {
  2010. "distance": {
  2011. "type": "double",
  2012. "value": 10
  2013. },
  2014. "alignment": {
  2015. "type": "ENUM(\"right\",\"left\",\"center\")",
  2016. "value": "center"
  2017. },
  2018. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  2019. "position": {
  2020. "type": "list<double>",
  2021. "value": [
  2022. 5,
  2023. 38
  2024. ]
  2025. },
  2026. "orientation": {
  2027. "type": "double",
  2028. "value": 0
  2029. },
  2030. "scale": {
  2031. "type": "list<double>",
  2032. "value": [
  2033. 1,
  2034. 1
  2035. ]
  2036. },
  2037. "link-style": {
  2038. "type": "map<string,string>",
  2039. "value": {
  2040. "stroke": "#00ff00",
  2041. "stroke-dasharray": "",
  2042. "stroke-opacity": 1,
  2043. "arrow-start": "none",
  2044. "arrow-end": "classic-wide-long"
  2045. }
  2046. }
  2047. },
  2048. "__pLabelText": {
  2049. "position": {
  2050. "type": "list<double>",
  2051. "value": [
  2052. 0,
  2053. 0
  2054. ]
  2055. },
  2056. "orientation": {
  2057. "type": "double",
  2058. "value": 0
  2059. },
  2060. "scale": {
  2061. "type": "list<double>",
  2062. "value": [
  2063. 1,
  2064. 1
  2065. ]
  2066. },
  2067. "textContent": {
  2068. "type": "string",
  2069. "value": "2"
  2070. },
  2071. "style": {
  2072. "type": "map<string,string>",
  2073. "value": {
  2074. "stroke": "#6000ff",
  2075. "fill": "#6000ff",
  2076. "font-size": "15px",
  2077. "opacity": "1"
  2078. }
  2079. },
  2080. "mapper": {
  2081. "type": "code",
  2082. "value": "({'textContent':getAttr('__pLabel')})"
  2083. },
  2084. "parser": {
  2085. "type": "code",
  2086. "value": "({'__pLabel':getAttr('textContent')})"
  2087. },
  2088. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2089. }
  2090. },
  2091. "edges": [
  2092. {
  2093. "src": "text",
  2094. "dest": "textBelowRect"
  2095. },
  2096. {
  2097. "src": "textBelowRect",
  2098. "dest": "rect"
  2099. }
  2100. ]
  2101. }
  2102. },
  2103. "$asuri": {
  2104. "type": "string",
  2105. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/137.instance"
  2106. },
  2107. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  2108. },
  2109. "139": {
  2110. "link-style": {
  2111. "type": "map<string,string>",
  2112. "value": {
  2113. "stroke": "#009688",
  2114. "stroke-dasharray": "",
  2115. "stroke-opacity": 0.3,
  2116. "stroke-width": 2
  2117. }
  2118. },
  2119. "arrowHead": {
  2120. "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)",
  2121. "value": "custom"
  2122. },
  2123. "arrowTail": {
  2124. "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)",
  2125. "value": "arrow-black"
  2126. },
  2127. "typename": {
  2128. "type": "string",
  2129. "value": "DependencyLink"
  2130. },
  2131. "position": {
  2132. "type": "list<double>",
  2133. "value": [
  2134. 1138,
  2135. 596.5
  2136. ]
  2137. },
  2138. "orientation": {
  2139. "type": "double",
  2140. "value": 0
  2141. },
  2142. "scale": {
  2143. "type": "list<double>",
  2144. "value": [
  2145. 1,
  2146. 1
  2147. ]
  2148. },
  2149. "mapper": {
  2150. "type": "code",
  2151. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2152. },
  2153. "parser": {
  2154. "type": "code",
  2155. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2156. },
  2157. "$contents": {
  2158. "type": "map<string,*>",
  2159. "value": {
  2160. "nodes": {
  2161. "272": {
  2162. "segments": {
  2163. "type": "string",
  2164. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2165. },
  2166. "style": {
  2167. "type": "map<string,string>",
  2168. "value": {
  2169. "stroke": "#000000",
  2170. "fill": "#000000",
  2171. "opacity": 1,
  2172. "stroke-width": 1
  2173. }
  2174. },
  2175. "mapper": {
  2176. "type": "code",
  2177. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2178. },
  2179. "parser": {
  2180. "type": "code",
  2181. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2182. },
  2183. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2184. "position": {
  2185. "type": "list<double>",
  2186. "value": [
  2187. "0;5,6.123031769111886e-15%",
  2188. "0;67.499111989026,100%"
  2189. ]
  2190. },
  2191. "orientation": {
  2192. "type": "double",
  2193. "value": "0;90"
  2194. },
  2195. "scale": {
  2196. "type": "list<double>",
  2197. "value": [
  2198. 1,
  2199. 1
  2200. ]
  2201. },
  2202. "$linkDecoratorInfo": {
  2203. "type": "map<string,double>",
  2204. "value": {
  2205. "xratio": 1,
  2206. "yoffset": -5
  2207. }
  2208. }
  2209. },
  2210. "290": {
  2211. "segments": {
  2212. "type": "string",
  2213. "value": "m0,0 l-20,10 l20,10 z"
  2214. },
  2215. "style": {
  2216. "type": "map<string,string>",
  2217. "value": {
  2218. "stroke": "#000000",
  2219. "fill": "#000000",
  2220. "opacity": 1,
  2221. "stroke-width": 1
  2222. }
  2223. },
  2224. "mapper": {
  2225. "type": "code",
  2226. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2227. },
  2228. "parser": {
  2229. "type": "code",
  2230. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2231. },
  2232. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2233. "position": {
  2234. "type": "list<double>",
  2235. "value": [
  2236. "0;8.996034892786156,0%",
  2237. "0;-35.78157844768407,0%"
  2238. ]
  2239. },
  2240. "orientation": {
  2241. "type": "double",
  2242. "value": "0;88.38646106711883"
  2243. },
  2244. "scale": {
  2245. "type": "list<double>",
  2246. "value": [
  2247. 1,
  2248. 1
  2249. ]
  2250. },
  2251. "$linkDecoratorInfo": {
  2252. "type": "map<string,double>",
  2253. "value": {
  2254. "xratio": -1,
  2255. "yoffset": -10
  2256. }
  2257. }
  2258. },
  2259. "__pLabelText": {
  2260. "position": {
  2261. "type": "list<double>",
  2262. "value": [
  2263. 0,
  2264. 0
  2265. ]
  2266. },
  2267. "orientation": {
  2268. "type": "double",
  2269. "value": 0
  2270. },
  2271. "scale": {
  2272. "type": "list<double>",
  2273. "value": [
  2274. 1,
  2275. 1
  2276. ]
  2277. },
  2278. "textContent": {
  2279. "type": "string",
  2280. "value": "3"
  2281. },
  2282. "style": {
  2283. "type": "map<string,string>",
  2284. "value": {
  2285. "stroke": "#6000ff",
  2286. "fill": "#6000ff",
  2287. "font-size": "15px",
  2288. "opacity": "1"
  2289. }
  2290. },
  2291. "mapper": {
  2292. "type": "code",
  2293. "value": "({'textContent':getAttr('__pLabel')})"
  2294. },
  2295. "parser": {
  2296. "type": "code",
  2297. "value": "({'__pLabel':getAttr('textContent')})"
  2298. },
  2299. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2300. }
  2301. },
  2302. "edges": []
  2303. }
  2304. },
  2305. "$asuri": {
  2306. "type": "string",
  2307. "value": "/Formalisms/Workflows/Workflows.pattern/__pDependency/138.instance"
  2308. },
  2309. "$segments": {
  2310. "type": "map<string,list<string>>",
  2311. "value": {
  2312. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/130.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pDependencyLink/139.instance": "M1137,561L1138,596.5",
  2313. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pDependencyLink/139.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/138.instance": "M1138,596.500895522388L1138,663.999111989026"
  2314. }
  2315. },
  2316. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pDependencyLink"
  2317. },
  2318. "140": {
  2319. "link-style": {
  2320. "type": "map<string,string>",
  2321. "value": {
  2322. "stroke": "#00ff00",
  2323. "stroke-dasharray": "",
  2324. "stroke-opacity": 0.2,
  2325. "stroke-width": 1,
  2326. "arrow-start": "none",
  2327. "arrow-end": "classic-wide-long"
  2328. }
  2329. },
  2330. "typename": {
  2331. "type": "string",
  2332. "value": "PatternContentsLink"
  2333. },
  2334. "position": {
  2335. "type": "list<double>",
  2336. "value": [
  2337. 1020.88671875,
  2338. 404.75
  2339. ]
  2340. },
  2341. "orientation": {
  2342. "type": "double",
  2343. "value": 0
  2344. },
  2345. "scale": {
  2346. "type": "list<double>",
  2347. "value": [
  2348. 1,
  2349. 1
  2350. ]
  2351. },
  2352. "mapper": {
  2353. "type": "code",
  2354. "value": ""
  2355. },
  2356. "parser": {
  2357. "type": "code",
  2358. "value": ""
  2359. },
  2360. "$contents": {
  2361. "type": "map<string,*>",
  2362. "value": {
  2363. "nodes": {},
  2364. "edges": []
  2365. }
  2366. },
  2367. "$asuri": {
  2368. "type": "string",
  2369. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/139.instance"
  2370. },
  2371. "$segments": {
  2372. "type": "map<string,list<string>>",
  2373. "value": {
  2374. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/109.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/140.instance": "M900,300L1020.88671875,404.75",
  2375. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/140.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/130.instance": "M1020.9433482022996,404.79907019720383L1141.7727964105752,509.4994444872196"
  2376. }
  2377. },
  2378. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2379. },
  2380. "141": {
  2381. "link-style": {
  2382. "type": "map<string,string>",
  2383. "value": {
  2384. "stroke": "#00ff00",
  2385. "stroke-dasharray": "",
  2386. "stroke-opacity": 0.2,
  2387. "stroke-width": 1,
  2388. "arrow-start": "none",
  2389. "arrow-end": "classic-wide-long"
  2390. }
  2391. },
  2392. "typename": {
  2393. "type": "string",
  2394. "value": "PatternContentsLink"
  2395. },
  2396. "position": {
  2397. "type": "list<double>",
  2398. "value": [
  2399. 1020.88671875,
  2400. 500.75
  2401. ]
  2402. },
  2403. "orientation": {
  2404. "type": "double",
  2405. "value": 0
  2406. },
  2407. "scale": {
  2408. "type": "list<double>",
  2409. "value": [
  2410. 1,
  2411. 1
  2412. ]
  2413. },
  2414. "mapper": {
  2415. "type": "code",
  2416. "value": ""
  2417. },
  2418. "parser": {
  2419. "type": "code",
  2420. "value": ""
  2421. },
  2422. "$contents": {
  2423. "type": "map<string,*>",
  2424. "value": {
  2425. "nodes": {},
  2426. "edges": []
  2427. }
  2428. },
  2429. "$asuri": {
  2430. "type": "string",
  2431. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/140.instance"
  2432. },
  2433. "$segments": {
  2434. "type": "map<string,list<string>>",
  2435. "value": {
  2436. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/109.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/141.instance": "M900,300L1020.88671875,500.75",
  2437. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/141.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/138.instance": "M1020.9253651445445,500.8141779658264L1141.7731395831909,701.4995052657558"
  2438. }
  2439. },
  2440. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2441. }
  2442. },
  2443. "edges": [],
  2444. "metamodels": [
  2445. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  2446. "/Formalisms/Workflows/Workflows.defaultIcons.pattern"
  2447. ]
  2448. },
  2449. "asm": {
  2450. "nodes": {
  2451. "107": {
  2452. "Condition": {
  2453. "type": "code",
  2454. "value": "result=True"
  2455. },
  2456. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  2457. },
  2458. "108": {
  2459. "Action": {
  2460. "type": "code",
  2461. "value": "gen = getAttr('parameterList', '0')\ngen = gen.rstrip('}')\ngen = gen.lstrip('{')\naid = getAttr('$atompmId', '2')\n\nextsrc = getAttr('extension', '1')\nexttar = getAttr('extension', '2')\n\next = extsrc\n\nif exttar is not None:\n ext = exttar\n\nif ext not in ['Icons.model', 'Icons.metamodel', 'Icons.pattern.metamodel']:\n ext = '.' + ext\n\nsetAttr(getAttr('srcParam', '3'), getAttr(getAttr('srcParam', '3'), '1'), '2')\ntarParam = getAttr(getAttr('srcParam', '3'), '2')\ngen = gen + ',' + aid + ':' + tarParam + ext\n# gen = gen.replace(id+':','?',1)\n# gen = gen.replace(','+id+':','.',1)\n# en = gen.replace('?',id+':',1)\ngen = '{' + gen\ngen += '}'\nsetAttr('parameterList', gen, '0')\n"
  2462. },
  2463. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  2464. },
  2465. "124": {
  2466. "__pLabel": {
  2467. "type": "string",
  2468. "value": "0"
  2469. },
  2470. "__pPivotIn": {
  2471. "type": "string",
  2472. "value": ""
  2473. },
  2474. "__pPivotOut": {
  2475. "type": "string",
  2476. "value": ""
  2477. },
  2478. "__pMatchSubtypes": {
  2479. "type": "boolean",
  2480. "value": false
  2481. },
  2482. "parameterList": {
  2483. "type": "code",
  2484. "value": "result = True"
  2485. },
  2486. "$type": "/Formalisms/Workflows/Workflows.pattern/__pParameters"
  2487. },
  2488. "125": {
  2489. "__pLabel": {
  2490. "type": "string",
  2491. "value": "0"
  2492. },
  2493. "__pPivotIn": {
  2494. "type": "string",
  2495. "value": ""
  2496. },
  2497. "__pPivotOut": {
  2498. "type": "string",
  2499. "value": ""
  2500. },
  2501. "__pMatchSubtypes": {
  2502. "type": "boolean"
  2503. },
  2504. "parameterList": {
  2505. "type": "code",
  2506. "value": "result = getAttr()"
  2507. },
  2508. "$type": "/Formalisms/Workflows/Workflows.pattern/__pParameters"
  2509. },
  2510. "126": {
  2511. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2512. },
  2513. "127": {
  2514. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2515. },
  2516. "128": {
  2517. "__pLabel": {
  2518. "type": "string",
  2519. "value": "1"
  2520. },
  2521. "__pPivotIn": {
  2522. "type": "string",
  2523. "value": ""
  2524. },
  2525. "__pPivotOut": {
  2526. "type": "string",
  2527. "value": ""
  2528. },
  2529. "__pMatchSubtypes": {
  2530. "type": "boolean",
  2531. "value": true
  2532. },
  2533. "current": {
  2534. "type": "code",
  2535. "value": "result = True"
  2536. },
  2537. "name": {
  2538. "type": "code",
  2539. "value": "result = True"
  2540. },
  2541. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  2542. },
  2543. "129": {
  2544. "__pLabel": {
  2545. "type": "string",
  2546. "value": "1"
  2547. },
  2548. "__pPivotIn": {
  2549. "type": "string",
  2550. "value": ""
  2551. },
  2552. "__pPivotOut": {
  2553. "type": "string",
  2554. "value": ""
  2555. },
  2556. "__pMatchSubtypes": {
  2557. "type": "boolean"
  2558. },
  2559. "current": {
  2560. "type": "code",
  2561. "value": "result = getAttr()"
  2562. },
  2563. "name": {
  2564. "type": "code",
  2565. "value": "result = getAttr()"
  2566. },
  2567. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  2568. },
  2569. "133": {
  2570. "__pLabel": {
  2571. "type": "string",
  2572. "value": "2"
  2573. },
  2574. "__pPivotIn": {
  2575. "type": "string",
  2576. "value": ""
  2577. },
  2578. "__pPivotOut": {
  2579. "type": "string",
  2580. "value": ""
  2581. },
  2582. "__pMatchSubtypes": {
  2583. "type": "boolean",
  2584. "value": true
  2585. },
  2586. "current": {
  2587. "type": "code",
  2588. "value": "result = True"
  2589. },
  2590. "name": {
  2591. "type": "code",
  2592. "value": "result = True"
  2593. },
  2594. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  2595. },
  2596. "134": {
  2597. "__pLabel": {
  2598. "type": "string",
  2599. "value": "3"
  2600. },
  2601. "__pPivotIn": {
  2602. "type": "string",
  2603. "value": ""
  2604. },
  2605. "__pPivotOut": {
  2606. "type": "string",
  2607. "value": ""
  2608. },
  2609. "__pMatchSubtypes": {
  2610. "type": "boolean",
  2611. "value": false
  2612. },
  2613. "srcParam": {
  2614. "type": "code",
  2615. "value": "result = True"
  2616. },
  2617. "tarParam": {
  2618. "type": "code",
  2619. "value": "result = True"
  2620. },
  2621. "$type": "/Formalisms/Workflows/Workflows.pattern/__pDependency"
  2622. },
  2623. "135": {
  2624. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2625. },
  2626. "136": {
  2627. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2628. },
  2629. "137": {
  2630. "__pLabel": {
  2631. "type": "string",
  2632. "value": "2"
  2633. },
  2634. "__pPivotIn": {
  2635. "type": "string",
  2636. "value": ""
  2637. },
  2638. "__pPivotOut": {
  2639. "type": "string",
  2640. "value": ""
  2641. },
  2642. "__pMatchSubtypes": {
  2643. "type": "boolean"
  2644. },
  2645. "current": {
  2646. "type": "code",
  2647. "value": "result = getAttr()"
  2648. },
  2649. "name": {
  2650. "type": "code",
  2651. "value": "result = getAttr()"
  2652. },
  2653. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  2654. },
  2655. "138": {
  2656. "__pLabel": {
  2657. "type": "string",
  2658. "value": "3"
  2659. },
  2660. "__pPivotIn": {
  2661. "type": "string",
  2662. "value": ""
  2663. },
  2664. "__pPivotOut": {
  2665. "type": "string",
  2666. "value": ""
  2667. },
  2668. "__pMatchSubtypes": {
  2669. "type": "boolean"
  2670. },
  2671. "srcParam": {
  2672. "type": "code",
  2673. "value": "result = getAttr()"
  2674. },
  2675. "tarParam": {
  2676. "type": "code",
  2677. "value": "result = getAttr()"
  2678. },
  2679. "$type": "/Formalisms/Workflows/Workflows.pattern/__pDependency"
  2680. },
  2681. "139": {
  2682. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2683. },
  2684. "140": {
  2685. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2686. }
  2687. },
  2688. "edges": [
  2689. {
  2690. "src": "107",
  2691. "dest": "126"
  2692. },
  2693. {
  2694. "src": "126",
  2695. "dest": "124"
  2696. },
  2697. {
  2698. "src": "108",
  2699. "dest": "127"
  2700. },
  2701. {
  2702. "src": "127",
  2703. "dest": "125"
  2704. },
  2705. {
  2706. "src": "128",
  2707. "dest": "134"
  2708. },
  2709. {
  2710. "src": "134",
  2711. "dest": "133"
  2712. },
  2713. {
  2714. "src": "107",
  2715. "dest": "135"
  2716. },
  2717. {
  2718. "src": "135",
  2719. "dest": "128"
  2720. },
  2721. {
  2722. "src": "107",
  2723. "dest": "136"
  2724. },
  2725. {
  2726. "src": "136",
  2727. "dest": "133"
  2728. },
  2729. {
  2730. "src": "129",
  2731. "dest": "138"
  2732. },
  2733. {
  2734. "src": "138",
  2735. "dest": "137"
  2736. },
  2737. {
  2738. "src": "108",
  2739. "dest": "139"
  2740. },
  2741. {
  2742. "src": "139",
  2743. "dest": "129"
  2744. },
  2745. {
  2746. "src": "108",
  2747. "dest": "140"
  2748. },
  2749. {
  2750. "src": "140",
  2751. "dest": "137"
  2752. }
  2753. ],
  2754. "metamodels": [
  2755. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  2756. "/Formalisms/Workflows/Workflows.pattern"
  2757. ]
  2758. }
  2759. }