R_GetNextTask.model 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "LHSIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 365,
  13. 238
  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/0.instance"
  91. },
  92. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon"
  93. },
  94. "1": {
  95. "typename": {
  96. "type": "string",
  97. "value": "RHSIcon"
  98. },
  99. "position": {
  100. "type": "list<double>",
  101. "value": [
  102. 815,
  103. 235
  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/1.instance"
  181. },
  182. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon"
  183. },
  184. "165": {
  185. "typename": {
  186. "type": "string",
  187. "value": "__pElementIcon"
  188. },
  189. "position": {
  190. "type": "list<double>",
  191. "value": [
  192. 462,
  193. 306
  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": ""
  210. },
  211. "parser": {
  212. "type": "code",
  213. "value": ""
  214. },
  215. "$contents": {
  216. "type": "map<string,*>",
  217. "value": {
  218. "nodes": {
  219. "text": {
  220. "textContent": {
  221. "type": "string",
  222. "value": "__pElementIcon"
  223. },
  224. "style": {
  225. "type": "map<string,string>",
  226. "value": {
  227. "stroke": "#000000",
  228. "stroke-dasharray": "",
  229. "fill": "#000000",
  230. "fill-opacity": "1",
  231. "font-size": "13px"
  232. }
  233. },
  234. "mapper": {
  235. "type": "code",
  236. "value": ""
  237. },
  238. "parser": {
  239. "type": "code",
  240. "value": ""
  241. },
  242. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  243. "position": {
  244. "type": "list<double>",
  245. "value": [
  246. 10,
  247. 76
  248. ]
  249. },
  250. "orientation": {
  251. "type": "double",
  252. "value": 0
  253. },
  254. "scale": {
  255. "type": "list<double>",
  256. "value": [
  257. 1,
  258. 1
  259. ]
  260. }
  261. },
  262. "rect": {
  263. "width": {
  264. "type": "double",
  265. "value": 75
  266. },
  267. "height": {
  268. "type": "double",
  269. "value": 75
  270. },
  271. "cornerRadius": {
  272. "type": "double",
  273. "value": 15
  274. },
  275. "style": {
  276. "type": "map<string,string>",
  277. "value": {
  278. "stroke": "#000000",
  279. "fill": "#ffffff",
  280. "fill-opacity": 0.75
  281. }
  282. },
  283. "mapper": {
  284. "type": "code",
  285. "value": ""
  286. },
  287. "parser": {
  288. "type": "code",
  289. "value": ""
  290. },
  291. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  292. "position": {
  293. "type": "list<double>",
  294. "value": [
  295. 0,
  296. 0
  297. ]
  298. },
  299. "orientation": {
  300. "type": "double",
  301. "value": 0
  302. },
  303. "scale": {
  304. "type": "list<double>",
  305. "value": [
  306. 1,
  307. 1
  308. ]
  309. }
  310. },
  311. "textBelowRect": {
  312. "distance": {
  313. "type": "double",
  314. "value": 10
  315. },
  316. "alignment": {
  317. "type": "ENUM(\"right\",\"left\",\"center\")",
  318. "value": "center"
  319. },
  320. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  321. "position": {
  322. "type": "list<double>",
  323. "value": [
  324. 5,
  325. 38
  326. ]
  327. },
  328. "orientation": {
  329. "type": "double",
  330. "value": 0
  331. },
  332. "scale": {
  333. "type": "list<double>",
  334. "value": [
  335. 1,
  336. 1
  337. ]
  338. },
  339. "link-style": {
  340. "type": "map<string,string>",
  341. "value": {
  342. "stroke": "#00ff00",
  343. "stroke-dasharray": "",
  344. "stroke-opacity": 1,
  345. "arrow-start": "none",
  346. "arrow-end": "classic-wide-long"
  347. }
  348. }
  349. },
  350. "__pLabelText": {
  351. "position": {
  352. "type": "list<double>",
  353. "value": [
  354. 0,
  355. 0
  356. ]
  357. },
  358. "orientation": {
  359. "type": "double",
  360. "value": 0
  361. },
  362. "scale": {
  363. "type": "list<double>",
  364. "value": [
  365. 1,
  366. 1
  367. ]
  368. },
  369. "textContent": {
  370. "type": "string",
  371. "value": "0"
  372. },
  373. "style": {
  374. "type": "map<string,string>",
  375. "value": {
  376. "stroke": "#6000ff",
  377. "fill": "#6000ff",
  378. "font-size": "15px",
  379. "opacity": "1"
  380. }
  381. },
  382. "mapper": {
  383. "type": "code",
  384. "value": "({'textContent':getAttr('__pLabel')})"
  385. },
  386. "parser": {
  387. "type": "code",
  388. "value": "({'__pLabel':getAttr('textContent')})"
  389. },
  390. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  391. }
  392. },
  393. "edges": [
  394. {
  395. "src": "text",
  396. "dest": "textBelowRect"
  397. },
  398. {
  399. "src": "textBelowRect",
  400. "dest": "rect"
  401. }
  402. ]
  403. }
  404. },
  405. "$asuri": {
  406. "type": "string",
  407. "value": "/Formalisms/Workflows/Workflows.pattern/__pElement/164.instance"
  408. },
  409. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon"
  410. },
  411. "166": {
  412. "typename": {
  413. "type": "string",
  414. "value": "__pElementIcon"
  415. },
  416. "position": {
  417. "type": "list<double>",
  418. "value": [
  419. 539,
  420. 516
  421. ]
  422. },
  423. "orientation": {
  424. "type": "double",
  425. "value": 0
  426. },
  427. "scale": {
  428. "type": "list<double>",
  429. "value": [
  430. 1,
  431. 1
  432. ]
  433. },
  434. "mapper": {
  435. "type": "code",
  436. "value": ""
  437. },
  438. "parser": {
  439. "type": "code",
  440. "value": ""
  441. },
  442. "$contents": {
  443. "type": "map<string,*>",
  444. "value": {
  445. "nodes": {
  446. "text": {
  447. "textContent": {
  448. "type": "string",
  449. "value": "__pElementIcon"
  450. },
  451. "style": {
  452. "type": "map<string,string>",
  453. "value": {
  454. "stroke": "#000000",
  455. "stroke-dasharray": "",
  456. "fill": "#000000",
  457. "fill-opacity": "1",
  458. "font-size": "13px"
  459. }
  460. },
  461. "mapper": {
  462. "type": "code",
  463. "value": ""
  464. },
  465. "parser": {
  466. "type": "code",
  467. "value": ""
  468. },
  469. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  470. "position": {
  471. "type": "list<double>",
  472. "value": [
  473. 10,
  474. 76
  475. ]
  476. },
  477. "orientation": {
  478. "type": "double",
  479. "value": 0
  480. },
  481. "scale": {
  482. "type": "list<double>",
  483. "value": [
  484. 1,
  485. 1
  486. ]
  487. }
  488. },
  489. "rect": {
  490. "width": {
  491. "type": "double",
  492. "value": 75
  493. },
  494. "height": {
  495. "type": "double",
  496. "value": 75
  497. },
  498. "cornerRadius": {
  499. "type": "double",
  500. "value": 15
  501. },
  502. "style": {
  503. "type": "map<string,string>",
  504. "value": {
  505. "stroke": "#000000",
  506. "fill": "#ffffff",
  507. "fill-opacity": 0.75
  508. }
  509. },
  510. "mapper": {
  511. "type": "code",
  512. "value": ""
  513. },
  514. "parser": {
  515. "type": "code",
  516. "value": ""
  517. },
  518. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  519. "position": {
  520. "type": "list<double>",
  521. "value": [
  522. 0,
  523. 0
  524. ]
  525. },
  526. "orientation": {
  527. "type": "double",
  528. "value": 0
  529. },
  530. "scale": {
  531. "type": "list<double>",
  532. "value": [
  533. 1,
  534. 1
  535. ]
  536. }
  537. },
  538. "textBelowRect": {
  539. "distance": {
  540. "type": "double",
  541. "value": 10
  542. },
  543. "alignment": {
  544. "type": "ENUM(\"right\",\"left\",\"center\")",
  545. "value": "center"
  546. },
  547. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  548. "position": {
  549. "type": "list<double>",
  550. "value": [
  551. 5,
  552. 38
  553. ]
  554. },
  555. "orientation": {
  556. "type": "double",
  557. "value": 0
  558. },
  559. "scale": {
  560. "type": "list<double>",
  561. "value": [
  562. 1,
  563. 1
  564. ]
  565. },
  566. "link-style": {
  567. "type": "map<string,string>",
  568. "value": {
  569. "stroke": "#00ff00",
  570. "stroke-dasharray": "",
  571. "stroke-opacity": 1,
  572. "arrow-start": "none",
  573. "arrow-end": "classic-wide-long"
  574. }
  575. }
  576. },
  577. "__pLabelText": {
  578. "position": {
  579. "type": "list<double>",
  580. "value": [
  581. 0,
  582. 0
  583. ]
  584. },
  585. "orientation": {
  586. "type": "double",
  587. "value": 0
  588. },
  589. "scale": {
  590. "type": "list<double>",
  591. "value": [
  592. 1,
  593. 1
  594. ]
  595. },
  596. "textContent": {
  597. "type": "string",
  598. "value": "1"
  599. },
  600. "style": {
  601. "type": "map<string,string>",
  602. "value": {
  603. "stroke": "#6000ff",
  604. "fill": "#6000ff",
  605. "font-size": "15px",
  606. "opacity": "1"
  607. }
  608. },
  609. "mapper": {
  610. "type": "code",
  611. "value": "({'textContent':getAttr('__pLabel')})"
  612. },
  613. "parser": {
  614. "type": "code",
  615. "value": "({'__pLabel':getAttr('textContent')})"
  616. },
  617. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  618. }
  619. },
  620. "edges": [
  621. {
  622. "src": "text",
  623. "dest": "textBelowRect"
  624. },
  625. {
  626. "src": "textBelowRect",
  627. "dest": "rect"
  628. }
  629. ]
  630. }
  631. },
  632. "$asuri": {
  633. "type": "string",
  634. "value": "/Formalisms/Workflows/Workflows.pattern/__pElement/165.instance"
  635. },
  636. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon"
  637. },
  638. "167": {
  639. "link-style": {
  640. "type": "map<string,string>",
  641. "value": {
  642. "stroke": "#000000",
  643. "stroke-dasharray": "",
  644. "stroke-opacity": 1,
  645. "stroke-width": 2
  646. }
  647. },
  648. "arrowHead": {
  649. "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)",
  650. "value": "custom"
  651. },
  652. "arrowTail": {
  653. "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)",
  654. "value": "arrow-black"
  655. },
  656. "typename": {
  657. "type": "string",
  658. "value": "LinkLink"
  659. },
  660. "position": {
  661. "type": "list<double>",
  662. "value": [
  663. 538.5509999697778,
  664. 450.1419999158519
  665. ]
  666. },
  667. "orientation": {
  668. "type": "double",
  669. "value": 0
  670. },
  671. "scale": {
  672. "type": "list<double>",
  673. "value": [
  674. 1,
  675. 1
  676. ]
  677. },
  678. "mapper": {
  679. "type": "code",
  680. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  681. },
  682. "parser": {
  683. "type": "code",
  684. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  685. },
  686. "$contents": {
  687. "type": "map<string,*>",
  688. "value": {
  689. "nodes": {
  690. "275": {
  691. "segments": {
  692. "type": "string",
  693. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  694. },
  695. "style": {
  696. "type": "map<string,string>",
  697. "value": {
  698. "stroke": "#000000",
  699. "fill": "#000000",
  700. "opacity": 1,
  701. "stroke-width": 1
  702. }
  703. },
  704. "mapper": {
  705. "type": "code",
  706. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  707. },
  708. "parser": {
  709. "type": "code",
  710. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  711. },
  712. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  713. "position": {
  714. "type": "list<double>",
  715. "value": [
  716. "0;32.977853213243066,33.80152922565095%",
  717. "0;68.15312108594793,94.1140617655378%"
  718. ]
  719. },
  720. "orientation": {
  721. "type": "double",
  722. "value": "0;70.24399900253539"
  723. },
  724. "scale": {
  725. "type": "list<double>",
  726. "value": [
  727. 1,
  728. 1
  729. ]
  730. },
  731. "$linkDecoratorInfo": {
  732. "type": "map<string,double>",
  733. "value": {
  734. "xratio": 1,
  735. "yoffset": -8
  736. }
  737. }
  738. },
  739. "__pLabelText": {
  740. "position": {
  741. "type": "list<double>",
  742. "value": [
  743. 0,
  744. 0
  745. ]
  746. },
  747. "orientation": {
  748. "type": "double",
  749. "value": 0
  750. },
  751. "scale": {
  752. "type": "list<double>",
  753. "value": [
  754. 1,
  755. 1
  756. ]
  757. },
  758. "textContent": {
  759. "type": "string",
  760. "value": "2"
  761. },
  762. "style": {
  763. "type": "map<string,string>",
  764. "value": {
  765. "stroke": "#6000ff",
  766. "fill": "#6000ff",
  767. "font-size": "15px",
  768. "opacity": "1"
  769. }
  770. },
  771. "mapper": {
  772. "type": "code",
  773. "value": "({'textContent':getAttr('__pLabel')})"
  774. },
  775. "parser": {
  776. "type": "code",
  777. "value": "({'__pLabel':getAttr('textContent')})"
  778. },
  779. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  780. }
  781. },
  782. "edges": []
  783. }
  784. },
  785. "$asuri": {
  786. "type": "string",
  787. "value": "/Formalisms/Workflows/Workflows.pattern/__pLink/166.instance"
  788. },
  789. "$segments": {
  790. "type": "map<string,list<string>>",
  791. "value": {
  792. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/165.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/167.instance": "M513,379L538.5509999697778,450.1419999158519",
  793. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/167.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/166.instance": "M538.5508639700189,450.1416212498565L563.9997282417778,520.9992433398519"
  794. }
  795. },
  796. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink"
  797. },
  798. "168": {
  799. "typename": {
  800. "type": "string",
  801. "value": "__pElementIcon"
  802. },
  803. "position": {
  804. "type": "list<double>",
  805. "value": [
  806. 973,
  807. 305
  808. ]
  809. },
  810. "orientation": {
  811. "type": "double",
  812. "value": 0
  813. },
  814. "scale": {
  815. "type": "list<double>",
  816. "value": [
  817. 1,
  818. 1
  819. ]
  820. },
  821. "mapper": {
  822. "type": "code",
  823. "value": ""
  824. },
  825. "parser": {
  826. "type": "code",
  827. "value": ""
  828. },
  829. "$contents": {
  830. "type": "map<string,*>",
  831. "value": {
  832. "nodes": {
  833. "text": {
  834. "textContent": {
  835. "type": "string",
  836. "value": "__pElementIcon"
  837. },
  838. "style": {
  839. "type": "map<string,string>",
  840. "value": {
  841. "stroke": "#000000",
  842. "stroke-dasharray": "",
  843. "fill": "#000000",
  844. "fill-opacity": "1",
  845. "font-size": "13px"
  846. }
  847. },
  848. "mapper": {
  849. "type": "code",
  850. "value": ""
  851. },
  852. "parser": {
  853. "type": "code",
  854. "value": ""
  855. },
  856. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  857. "position": {
  858. "type": "list<double>",
  859. "value": [
  860. 10,
  861. 76
  862. ]
  863. },
  864. "orientation": {
  865. "type": "double",
  866. "value": 0
  867. },
  868. "scale": {
  869. "type": "list<double>",
  870. "value": [
  871. 1,
  872. 1
  873. ]
  874. }
  875. },
  876. "rect": {
  877. "width": {
  878. "type": "double",
  879. "value": 75
  880. },
  881. "height": {
  882. "type": "double",
  883. "value": 75
  884. },
  885. "cornerRadius": {
  886. "type": "double",
  887. "value": 15
  888. },
  889. "style": {
  890. "type": "map<string,string>",
  891. "value": {
  892. "stroke": "#000000",
  893. "fill": "#ffffff",
  894. "fill-opacity": 0.75
  895. }
  896. },
  897. "mapper": {
  898. "type": "code",
  899. "value": ""
  900. },
  901. "parser": {
  902. "type": "code",
  903. "value": ""
  904. },
  905. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  906. "position": {
  907. "type": "list<double>",
  908. "value": [
  909. 0,
  910. 0
  911. ]
  912. },
  913. "orientation": {
  914. "type": "double",
  915. "value": 0
  916. },
  917. "scale": {
  918. "type": "list<double>",
  919. "value": [
  920. 1,
  921. 1
  922. ]
  923. }
  924. },
  925. "textBelowRect": {
  926. "distance": {
  927. "type": "double",
  928. "value": 10
  929. },
  930. "alignment": {
  931. "type": "ENUM(\"right\",\"left\",\"center\")",
  932. "value": "center"
  933. },
  934. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  935. "position": {
  936. "type": "list<double>",
  937. "value": [
  938. 5,
  939. 38
  940. ]
  941. },
  942. "orientation": {
  943. "type": "double",
  944. "value": 0
  945. },
  946. "scale": {
  947. "type": "list<double>",
  948. "value": [
  949. 1,
  950. 1
  951. ]
  952. },
  953. "link-style": {
  954. "type": "map<string,string>",
  955. "value": {
  956. "stroke": "#00ff00",
  957. "stroke-dasharray": "",
  958. "stroke-opacity": 1,
  959. "arrow-start": "none",
  960. "arrow-end": "classic-wide-long"
  961. }
  962. }
  963. },
  964. "__pLabelText": {
  965. "position": {
  966. "type": "list<double>",
  967. "value": [
  968. 0,
  969. 0
  970. ]
  971. },
  972. "orientation": {
  973. "type": "double",
  974. "value": 0
  975. },
  976. "scale": {
  977. "type": "list<double>",
  978. "value": [
  979. 1,
  980. 1
  981. ]
  982. },
  983. "textContent": {
  984. "type": "string",
  985. "value": "0"
  986. },
  987. "style": {
  988. "type": "map<string,string>",
  989. "value": {
  990. "stroke": "#6000ff",
  991. "fill": "#6000ff",
  992. "font-size": "15px",
  993. "opacity": "1"
  994. }
  995. },
  996. "mapper": {
  997. "type": "code",
  998. "value": "({'textContent':getAttr('__pLabel')})"
  999. },
  1000. "parser": {
  1001. "type": "code",
  1002. "value": "({'__pLabel':getAttr('textContent')})"
  1003. },
  1004. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1005. }
  1006. },
  1007. "edges": [
  1008. {
  1009. "src": "text",
  1010. "dest": "textBelowRect"
  1011. },
  1012. {
  1013. "src": "textBelowRect",
  1014. "dest": "rect"
  1015. }
  1016. ]
  1017. }
  1018. },
  1019. "$asuri": {
  1020. "type": "string",
  1021. "value": "/Formalisms/Workflows/Workflows.pattern/__pElement/167.instance"
  1022. },
  1023. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon"
  1024. },
  1025. "169": {
  1026. "typename": {
  1027. "type": "string",
  1028. "value": "__pElementIcon"
  1029. },
  1030. "position": {
  1031. "type": "list<double>",
  1032. "value": [
  1033. 1050,
  1034. 515
  1035. ]
  1036. },
  1037. "orientation": {
  1038. "type": "double",
  1039. "value": 0
  1040. },
  1041. "scale": {
  1042. "type": "list<double>",
  1043. "value": [
  1044. 1,
  1045. 1
  1046. ]
  1047. },
  1048. "mapper": {
  1049. "type": "code",
  1050. "value": ""
  1051. },
  1052. "parser": {
  1053. "type": "code",
  1054. "value": ""
  1055. },
  1056. "$contents": {
  1057. "type": "map<string,*>",
  1058. "value": {
  1059. "nodes": {
  1060. "text": {
  1061. "textContent": {
  1062. "type": "string",
  1063. "value": "__pElementIcon"
  1064. },
  1065. "style": {
  1066. "type": "map<string,string>",
  1067. "value": {
  1068. "stroke": "#000000",
  1069. "stroke-dasharray": "",
  1070. "fill": "#000000",
  1071. "fill-opacity": "1",
  1072. "font-size": "13px"
  1073. }
  1074. },
  1075. "mapper": {
  1076. "type": "code",
  1077. "value": ""
  1078. },
  1079. "parser": {
  1080. "type": "code",
  1081. "value": ""
  1082. },
  1083. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1084. "position": {
  1085. "type": "list<double>",
  1086. "value": [
  1087. 10,
  1088. 76
  1089. ]
  1090. },
  1091. "orientation": {
  1092. "type": "double",
  1093. "value": 0
  1094. },
  1095. "scale": {
  1096. "type": "list<double>",
  1097. "value": [
  1098. 1,
  1099. 1
  1100. ]
  1101. }
  1102. },
  1103. "rect": {
  1104. "width": {
  1105. "type": "double",
  1106. "value": 75
  1107. },
  1108. "height": {
  1109. "type": "double",
  1110. "value": 75
  1111. },
  1112. "cornerRadius": {
  1113. "type": "double",
  1114. "value": 15
  1115. },
  1116. "style": {
  1117. "type": "map<string,string>",
  1118. "value": {
  1119. "stroke": "#000000",
  1120. "fill": "#ffffff",
  1121. "fill-opacity": 0.75
  1122. }
  1123. },
  1124. "mapper": {
  1125. "type": "code",
  1126. "value": ""
  1127. },
  1128. "parser": {
  1129. "type": "code",
  1130. "value": ""
  1131. },
  1132. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1133. "position": {
  1134. "type": "list<double>",
  1135. "value": [
  1136. 0,
  1137. 0
  1138. ]
  1139. },
  1140. "orientation": {
  1141. "type": "double",
  1142. "value": 0
  1143. },
  1144. "scale": {
  1145. "type": "list<double>",
  1146. "value": [
  1147. 1,
  1148. 1
  1149. ]
  1150. }
  1151. },
  1152. "textBelowRect": {
  1153. "distance": {
  1154. "type": "double",
  1155. "value": 10
  1156. },
  1157. "alignment": {
  1158. "type": "ENUM(\"right\",\"left\",\"center\")",
  1159. "value": "center"
  1160. },
  1161. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1162. "position": {
  1163. "type": "list<double>",
  1164. "value": [
  1165. 5,
  1166. 38
  1167. ]
  1168. },
  1169. "orientation": {
  1170. "type": "double",
  1171. "value": 0
  1172. },
  1173. "scale": {
  1174. "type": "list<double>",
  1175. "value": [
  1176. 1,
  1177. 1
  1178. ]
  1179. },
  1180. "link-style": {
  1181. "type": "map<string,string>",
  1182. "value": {
  1183. "stroke": "#00ff00",
  1184. "stroke-dasharray": "",
  1185. "stroke-opacity": 1,
  1186. "arrow-start": "none",
  1187. "arrow-end": "classic-wide-long"
  1188. }
  1189. }
  1190. },
  1191. "__pLabelText": {
  1192. "position": {
  1193. "type": "list<double>",
  1194. "value": [
  1195. 0,
  1196. 0
  1197. ]
  1198. },
  1199. "orientation": {
  1200. "type": "double",
  1201. "value": 0
  1202. },
  1203. "scale": {
  1204. "type": "list<double>",
  1205. "value": [
  1206. 1,
  1207. 1
  1208. ]
  1209. },
  1210. "textContent": {
  1211. "type": "string",
  1212. "value": "1"
  1213. },
  1214. "style": {
  1215. "type": "map<string,string>",
  1216. "value": {
  1217. "stroke": "#6000ff",
  1218. "fill": "#6000ff",
  1219. "font-size": "15px",
  1220. "opacity": "1"
  1221. }
  1222. },
  1223. "mapper": {
  1224. "type": "code",
  1225. "value": "({'textContent':getAttr('__pLabel')})"
  1226. },
  1227. "parser": {
  1228. "type": "code",
  1229. "value": "({'__pLabel':getAttr('textContent')})"
  1230. },
  1231. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1232. }
  1233. },
  1234. "edges": [
  1235. {
  1236. "src": "text",
  1237. "dest": "textBelowRect"
  1238. },
  1239. {
  1240. "src": "textBelowRect",
  1241. "dest": "rect"
  1242. }
  1243. ]
  1244. }
  1245. },
  1246. "$asuri": {
  1247. "type": "string",
  1248. "value": "/Formalisms/Workflows/Workflows.pattern/__pElement/168.instance"
  1249. },
  1250. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon"
  1251. },
  1252. "170": {
  1253. "link-style": {
  1254. "type": "map<string,string>",
  1255. "value": {
  1256. "stroke": "#000000",
  1257. "stroke-dasharray": "",
  1258. "stroke-opacity": 1,
  1259. "stroke-width": 2
  1260. }
  1261. },
  1262. "arrowHead": {
  1263. "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)",
  1264. "value": "custom"
  1265. },
  1266. "arrowTail": {
  1267. "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)",
  1268. "value": "arrow-black"
  1269. },
  1270. "typename": {
  1271. "type": "string",
  1272. "value": "LinkLink"
  1273. },
  1274. "position": {
  1275. "type": "list<double>",
  1276. "value": [
  1277. 1049.5509999697779,
  1278. 449.1419999158519
  1279. ]
  1280. },
  1281. "orientation": {
  1282. "type": "double",
  1283. "value": 0
  1284. },
  1285. "scale": {
  1286. "type": "list<double>",
  1287. "value": [
  1288. 1,
  1289. 1
  1290. ]
  1291. },
  1292. "mapper": {
  1293. "type": "code",
  1294. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1295. },
  1296. "parser": {
  1297. "type": "code",
  1298. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1299. },
  1300. "$contents": {
  1301. "type": "map<string,*>",
  1302. "value": {
  1303. "nodes": {
  1304. "275": {
  1305. "segments": {
  1306. "type": "string",
  1307. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  1308. },
  1309. "style": {
  1310. "type": "map<string,string>",
  1311. "value": {
  1312. "stroke": "#000000",
  1313. "fill": "#000000",
  1314. "opacity": 1,
  1315. "stroke-width": 1
  1316. }
  1317. },
  1318. "mapper": {
  1319. "type": "code",
  1320. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1321. },
  1322. "parser": {
  1323. "type": "code",
  1324. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1325. },
  1326. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1327. "position": {
  1328. "type": "list<double>",
  1329. "value": [
  1330. "0;32.97785321324318,33.80152922565101%",
  1331. "0;68.15312108594804,94.11406176553778%"
  1332. ]
  1333. },
  1334. "orientation": {
  1335. "type": "double",
  1336. "value": "0;70.24399900253535"
  1337. },
  1338. "scale": {
  1339. "type": "list<double>",
  1340. "value": [
  1341. 1,
  1342. 1
  1343. ]
  1344. },
  1345. "$linkDecoratorInfo": {
  1346. "type": "map<string,double>",
  1347. "value": {
  1348. "xratio": 1,
  1349. "yoffset": -8
  1350. }
  1351. }
  1352. },
  1353. "__pLabelText": {
  1354. "position": {
  1355. "type": "list<double>",
  1356. "value": [
  1357. 0,
  1358. 0
  1359. ]
  1360. },
  1361. "orientation": {
  1362. "type": "double",
  1363. "value": 0
  1364. },
  1365. "scale": {
  1366. "type": "list<double>",
  1367. "value": [
  1368. 1,
  1369. 1
  1370. ]
  1371. },
  1372. "textContent": {
  1373. "type": "string",
  1374. "value": "2"
  1375. },
  1376. "style": {
  1377. "type": "map<string,string>",
  1378. "value": {
  1379. "stroke": "#6000ff",
  1380. "fill": "#6000ff",
  1381. "font-size": "15px",
  1382. "opacity": "1"
  1383. }
  1384. },
  1385. "mapper": {
  1386. "type": "code",
  1387. "value": "({'textContent':getAttr('__pLabel')})"
  1388. },
  1389. "parser": {
  1390. "type": "code",
  1391. "value": "({'__pLabel':getAttr('textContent')})"
  1392. },
  1393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1394. }
  1395. },
  1396. "edges": []
  1397. }
  1398. },
  1399. "$asuri": {
  1400. "type": "string",
  1401. "value": "/Formalisms/Workflows/Workflows.pattern/__pLink/169.instance"
  1402. },
  1403. "$segments": {
  1404. "type": "map<string,list<string>>",
  1405. "value": {
  1406. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/168.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/170.instance": "M1024,378L1049.5509999697779,449.1419999158519",
  1407. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/170.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/169.instance": "M1049.5508639700188,449.1416212498565L1074.999728241778,519.999243339852"
  1408. }
  1409. },
  1410. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink"
  1411. },
  1412. "171": {
  1413. "link-style": {
  1414. "type": "map<string,string>",
  1415. "value": {
  1416. "stroke": "#00ff00",
  1417. "stroke-dasharray": "",
  1418. "stroke-opacity": 0.2,
  1419. "stroke-width": 1,
  1420. "arrow-start": "none",
  1421. "arrow-end": "classic-wide-long"
  1422. }
  1423. },
  1424. "typename": {
  1425. "type": "string",
  1426. "value": "PatternContentsLink"
  1427. },
  1428. "position": {
  1429. "type": "list<double>",
  1430. "value": [
  1431. 440.11935479271017,
  1432. 294.84153222278786
  1433. ]
  1434. },
  1435. "orientation": {
  1436. "type": "double",
  1437. "value": 0
  1438. },
  1439. "scale": {
  1440. "type": "list<double>",
  1441. "value": [
  1442. 1,
  1443. 1
  1444. ]
  1445. },
  1446. "mapper": {
  1447. "type": "code",
  1448. "value": ""
  1449. },
  1450. "parser": {
  1451. "type": "code",
  1452. "value": ""
  1453. },
  1454. "$contents": {
  1455. "type": "map<string,*>",
  1456. "value": {
  1457. "nodes": {},
  1458. "edges": []
  1459. }
  1460. },
  1461. "$asuri": {
  1462. "type": "string",
  1463. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/170.instance"
  1464. },
  1465. "$segments": {
  1466. "type": "map<string,list<string>>",
  1467. "value": {
  1468. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/0.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/171.instance": "M366,238L440.11935479271017,294.84153222278786",
  1469. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/171.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/165.instance": "M440.1190981159338,294.8413353794493L513.9994870138509,351.49960659508156"
  1470. }
  1471. },
  1472. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1473. },
  1474. "172": {
  1475. "link-style": {
  1476. "type": "map<string,string>",
  1477. "value": {
  1478. "stroke": "#00ff00",
  1479. "stroke-dasharray": "",
  1480. "stroke-opacity": 0.2,
  1481. "stroke-width": 1,
  1482. "arrow-start": "none",
  1483. "arrow-end": "classic-wide-long"
  1484. }
  1485. },
  1486. "typename": {
  1487. "type": "string",
  1488. "value": "PatternContentsLink"
  1489. },
  1490. "position": {
  1491. "type": "list<double>",
  1492. "value": [
  1493. 478.5,
  1494. 399.75
  1495. ]
  1496. },
  1497. "orientation": {
  1498. "type": "double",
  1499. "value": 0
  1500. },
  1501. "scale": {
  1502. "type": "list<double>",
  1503. "value": [
  1504. 1,
  1505. 1
  1506. ]
  1507. },
  1508. "mapper": {
  1509. "type": "code",
  1510. "value": ""
  1511. },
  1512. "parser": {
  1513. "type": "code",
  1514. "value": ""
  1515. },
  1516. "$contents": {
  1517. "type": "map<string,*>",
  1518. "value": {
  1519. "nodes": {},
  1520. "edges": []
  1521. }
  1522. },
  1523. "$asuri": {
  1524. "type": "string",
  1525. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/171.instance"
  1526. },
  1527. "$segments": {
  1528. "type": "map<string,list<string>>",
  1529. "value": {
  1530. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/0.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/172.instance": "M366,238L478.5,399.75",
  1531. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/172.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/166.instance": "M478.5426995017814,399.81139239478347L590.9996088590119,561.4994376261793"
  1532. }
  1533. },
  1534. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1535. },
  1536. "173": {
  1537. "link-style": {
  1538. "type": "map<string,string>",
  1539. "value": {
  1540. "stroke": "#00ff00",
  1541. "stroke-dasharray": "",
  1542. "stroke-opacity": 0.2,
  1543. "stroke-width": 1,
  1544. "arrow-start": "none",
  1545. "arrow-end": "classic-wide-long"
  1546. }
  1547. },
  1548. "typename": {
  1549. "type": "string",
  1550. "value": "PatternContentsLink"
  1551. },
  1552. "position": {
  1553. "type": "list<double>",
  1554. "value": [
  1555. 920.1317991324149,
  1556. 292.8224895228282
  1557. ]
  1558. },
  1559. "orientation": {
  1560. "type": "double",
  1561. "value": 0
  1562. },
  1563. "scale": {
  1564. "type": "list<double>",
  1565. "value": [
  1566. 1,
  1567. 1
  1568. ]
  1569. },
  1570. "mapper": {
  1571. "type": "code",
  1572. "value": ""
  1573. },
  1574. "parser": {
  1575. "type": "code",
  1576. "value": ""
  1577. },
  1578. "$contents": {
  1579. "type": "map<string,*>",
  1580. "value": {
  1581. "nodes": {},
  1582. "edges": []
  1583. }
  1584. },
  1585. "$asuri": {
  1586. "type": "string",
  1587. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/172.instance"
  1588. },
  1589. "$segments": {
  1590. "type": "map<string,list<string>>",
  1591. "value": {
  1592. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/173.instance": "M815,235L920.1317991324149,292.8224895228282",
  1593. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/173.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/168.instance": "M920.1315785481956,292.82236820150763L1024.9995590773722,350.49975749255475"
  1594. }
  1595. },
  1596. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1597. },
  1598. "174": {
  1599. "link-style": {
  1600. "type": "map<string,string>",
  1601. "value": {
  1602. "stroke": "#00ff00",
  1603. "stroke-dasharray": "",
  1604. "stroke-opacity": 0.2,
  1605. "stroke-width": 1,
  1606. "arrow-start": "none",
  1607. "arrow-end": "classic-wide-long"
  1608. }
  1609. },
  1610. "typename": {
  1611. "type": "string",
  1612. "value": "PatternContentsLink"
  1613. },
  1614. "position": {
  1615. "type": "list<double>",
  1616. "value": [
  1617. 958.5994226257241,
  1618. 397.8627598072236
  1619. ]
  1620. },
  1621. "orientation": {
  1622. "type": "double",
  1623. "value": 0
  1624. },
  1625. "scale": {
  1626. "type": "list<double>",
  1627. "value": [
  1628. 1,
  1629. 1
  1630. ]
  1631. },
  1632. "mapper": {
  1633. "type": "code",
  1634. "value": ""
  1635. },
  1636. "parser": {
  1637. "type": "code",
  1638. "value": ""
  1639. },
  1640. "$contents": {
  1641. "type": "map<string,*>",
  1642. "value": {
  1643. "nodes": {},
  1644. "edges": []
  1645. }
  1646. },
  1647. "$asuri": {
  1648. "type": "string",
  1649. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/173.instance"
  1650. },
  1651. "$segments": {
  1652. "type": "map<string,list<string>>",
  1653. "value": {
  1654. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/174.instance": "M815,235L958.5994226257241,397.8627598072236",
  1655. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/174.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pElementIcon/169.instance": "M958.5495735474383,397.8062236574605L1101.9995868866556,560.4995314690117"
  1656. }
  1657. },
  1658. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1659. }
  1660. },
  1661. "edges": [],
  1662. "metamodels": [
  1663. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  1664. "/Formalisms/Workflows/Workflows.defaultIcons.pattern"
  1665. ]
  1666. },
  1667. "asm": {
  1668. "nodes": {
  1669. "0": {
  1670. "Condition": {
  1671. "type": "code",
  1672. "value": "result = True"
  1673. },
  1674. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  1675. },
  1676. "1": {
  1677. "Action": {
  1678. "type": "code",
  1679. "value": "gen = getAttr('$atompmId','1')\nhttpReq(\n 'PUT',\n None,\n '/GET/console',\n {'text':'CLIENT_BDAPI :: {\"func\":\"_highlight\"}'})\nhttpReq(\n 'PUT',\n None,\n '/GET/console',\n {'text':'CLIENT_BDAPI :: {\"func\":\"_highlight\",\"args\":{\"asid\":'+gen+',\"timeout\":100000}}'})"
  1680. },
  1681. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  1682. },
  1683. "164": {
  1684. "__pLabel": {
  1685. "type": "string",
  1686. "value": "0"
  1687. },
  1688. "__pPivotIn": {
  1689. "type": "string",
  1690. "value": ""
  1691. },
  1692. "__pPivotOut": {
  1693. "type": "string",
  1694. "value": ""
  1695. },
  1696. "__pMatchSubtypes": {
  1697. "type": "boolean",
  1698. "value": true
  1699. },
  1700. "current": {
  1701. "type": "code",
  1702. "value": "result = getAttr() == True"
  1703. },
  1704. "$type": "/Formalisms/Workflows/Workflows.pattern/__pElement"
  1705. },
  1706. "165": {
  1707. "__pLabel": {
  1708. "type": "string",
  1709. "value": "1"
  1710. },
  1711. "__pPivotIn": {
  1712. "type": "string",
  1713. "value": ""
  1714. },
  1715. "__pPivotOut": {
  1716. "type": "string",
  1717. "value": ""
  1718. },
  1719. "__pMatchSubtypes": {
  1720. "type": "boolean",
  1721. "value": true
  1722. },
  1723. "current": {
  1724. "type": "code",
  1725. "value": "result = True"
  1726. },
  1727. "$type": "/Formalisms/Workflows/Workflows.pattern/__pElement"
  1728. },
  1729. "166": {
  1730. "__pLabel": {
  1731. "type": "string",
  1732. "value": "2"
  1733. },
  1734. "__pPivotIn": {
  1735. "type": "string",
  1736. "value": ""
  1737. },
  1738. "__pPivotOut": {
  1739. "type": "string",
  1740. "value": ""
  1741. },
  1742. "__pMatchSubtypes": {
  1743. "type": "boolean",
  1744. "value": false
  1745. },
  1746. "$type": "/Formalisms/Workflows/Workflows.pattern/__pLink"
  1747. },
  1748. "167": {
  1749. "__pLabel": {
  1750. "type": "string",
  1751. "value": "0"
  1752. },
  1753. "__pPivotIn": {
  1754. "type": "string",
  1755. "value": ""
  1756. },
  1757. "__pPivotOut": {
  1758. "type": "string",
  1759. "value": ""
  1760. },
  1761. "__pMatchSubtypes": {
  1762. "type": "boolean"
  1763. },
  1764. "current": {
  1765. "type": "code",
  1766. "value": "result = False"
  1767. },
  1768. "$type": "/Formalisms/Workflows/Workflows.pattern/__pElement"
  1769. },
  1770. "168": {
  1771. "__pLabel": {
  1772. "type": "string",
  1773. "value": "1"
  1774. },
  1775. "__pPivotIn": {
  1776. "type": "string",
  1777. "value": ""
  1778. },
  1779. "__pPivotOut": {
  1780. "type": "string",
  1781. "value": ""
  1782. },
  1783. "__pMatchSubtypes": {
  1784. "type": "boolean"
  1785. },
  1786. "current": {
  1787. "type": "code",
  1788. "value": "result = True"
  1789. },
  1790. "$type": "/Formalisms/Workflows/Workflows.pattern/__pElement"
  1791. },
  1792. "169": {
  1793. "__pLabel": {
  1794. "type": "string",
  1795. "value": "2"
  1796. },
  1797. "__pPivotIn": {
  1798. "type": "string",
  1799. "value": ""
  1800. },
  1801. "__pPivotOut": {
  1802. "type": "string",
  1803. "value": ""
  1804. },
  1805. "__pMatchSubtypes": {
  1806. "type": "boolean"
  1807. },
  1808. "$type": "/Formalisms/Workflows/Workflows.pattern/__pLink"
  1809. },
  1810. "170": {
  1811. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  1812. },
  1813. "171": {
  1814. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  1815. },
  1816. "172": {
  1817. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  1818. },
  1819. "173": {
  1820. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  1821. }
  1822. },
  1823. "edges": [
  1824. {
  1825. "src": "164",
  1826. "dest": "166"
  1827. },
  1828. {
  1829. "src": "166",
  1830. "dest": "165"
  1831. },
  1832. {
  1833. "src": "167",
  1834. "dest": "169"
  1835. },
  1836. {
  1837. "src": "169",
  1838. "dest": "168"
  1839. },
  1840. {
  1841. "src": "0",
  1842. "dest": "170"
  1843. },
  1844. {
  1845. "src": "170",
  1846. "dest": "164"
  1847. },
  1848. {
  1849. "src": "0",
  1850. "dest": "171"
  1851. },
  1852. {
  1853. "src": "171",
  1854. "dest": "165"
  1855. },
  1856. {
  1857. "src": "1",
  1858. "dest": "172"
  1859. },
  1860. {
  1861. "src": "172",
  1862. "dest": "167"
  1863. },
  1864. {
  1865. "src": "1",
  1866. "dest": "173"
  1867. },
  1868. {
  1869. "src": "173",
  1870. "dest": "168"
  1871. }
  1872. ],
  1873. "metamodels": [
  1874. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  1875. "/Formalisms/Workflows/Workflows.pattern"
  1876. ]
  1877. }
  1878. }