Test_RandomSignalNode.scriptcanvas 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 120485757289639
  9. },
  10. "Name": "Test_RandomSignalNode",
  11. "Components": {
  12. "Component_[15634541740340926508]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 15634541740340926508,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{045B671C-27E5-45C2-B225-4DCA3D7D3EA0}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 3
  26. },
  27. "isNullPointer": false,
  28. "$type": "double",
  29. "value": 0.0,
  30. "label": "Number"
  31. },
  32. "VariableId": {
  33. "m_id": "{045B671C-27E5-45C2-B225-4DCA3D7D3EA0}"
  34. },
  35. "VariableName": "FirstPath"
  36. }
  37. },
  38. {
  39. "Key": {
  40. "m_id": "{2E2FA0EA-FB95-40E9-BDDF-3A3BF58CC394}"
  41. },
  42. "Value": {
  43. "Datum": {
  44. "isOverloadedStorage": false,
  45. "scriptCanvasType": {
  46. "m_type": 3
  47. },
  48. "isNullPointer": false,
  49. "$type": "double",
  50. "value": 0.0,
  51. "label": "Number"
  52. },
  53. "VariableId": {
  54. "m_id": "{2E2FA0EA-FB95-40E9-BDDF-3A3BF58CC394}"
  55. },
  56. "VariableName": "SecondPath"
  57. }
  58. },
  59. {
  60. "Key": {
  61. "m_id": "{8B1B2165-960F-4BE6-9FB7-7BC97178B143}"
  62. },
  63. "Value": {
  64. "Datum": {
  65. "isOverloadedStorage": false,
  66. "scriptCanvasType": {
  67. "m_type": 3
  68. },
  69. "isNullPointer": false,
  70. "$type": "double",
  71. "value": 3.0,
  72. "label": "Number"
  73. },
  74. "VariableId": {
  75. "m_id": "{8B1B2165-960F-4BE6-9FB7-7BC97178B143}"
  76. },
  77. "VariableName": "Variable 1"
  78. }
  79. },
  80. {
  81. "Key": {
  82. "m_id": "{E55CE03E-C179-4AC0-B01F-99213726262B}"
  83. },
  84. "Value": {
  85. "Datum": {
  86. "isOverloadedStorage": false,
  87. "scriptCanvasType": {
  88. "m_type": 3
  89. },
  90. "isNullPointer": false,
  91. "$type": "double",
  92. "value": 1.0,
  93. "label": "Number"
  94. },
  95. "VariableId": {
  96. "m_id": "{E55CE03E-C179-4AC0-B01F-99213726262B}"
  97. },
  98. "VariableName": "Variable 1 Copy"
  99. }
  100. }
  101. ]
  102. }
  103. },
  104. "Component_[9507385607363708225]": {
  105. "$type": "EditorGraph",
  106. "Id": 9507385607363708225,
  107. "m_graphData": {
  108. "m_nodes": [
  109. {
  110. "Id": {
  111. "id": 120537296897191
  112. },
  113. "Name": "SC-Node(Repeater)",
  114. "Components": {
  115. "Component_[12039757613251836074]": {
  116. "$type": "RepeaterNodeableNode",
  117. "Id": 12039757613251836074,
  118. "Slots": [
  119. {
  120. "id": {
  121. "m_id": "{2DC15911-FC9B-4593-8F7B-831C7F409089}"
  122. },
  123. "contracts": [
  124. {
  125. "$type": "SlotTypeContract"
  126. }
  127. ],
  128. "slotName": "Start",
  129. "DisplayGroup": {
  130. "Value": 2675529103
  131. },
  132. "Descriptor": {
  133. "ConnectionType": 1,
  134. "SlotType": 1
  135. }
  136. },
  137. {
  138. "id": {
  139. "m_id": "{C1F18E50-CB84-4827-B5D6-E397F22A4D78}"
  140. },
  141. "contracts": [
  142. {
  143. "$type": "SlotTypeContract"
  144. },
  145. null
  146. ],
  147. "slotName": "Repetitions",
  148. "DisplayDataType": {
  149. "m_type": 3
  150. },
  151. "DisplayGroup": {
  152. "Value": 2675529103
  153. },
  154. "Descriptor": {
  155. "ConnectionType": 1,
  156. "SlotType": 2
  157. },
  158. "DataType": 1
  159. },
  160. {
  161. "id": {
  162. "m_id": "{6CDB827D-5220-440F-B528-E4D612E3DC03}"
  163. },
  164. "contracts": [
  165. {
  166. "$type": "SlotTypeContract"
  167. },
  168. null
  169. ],
  170. "slotName": "Interval",
  171. "toolTip": "The Interval between repetitions.",
  172. "DisplayDataType": {
  173. "m_type": 3
  174. },
  175. "DisplayGroup": {
  176. "Value": 2675529103
  177. },
  178. "Descriptor": {
  179. "ConnectionType": 1,
  180. "SlotType": 2
  181. },
  182. "DataType": 1
  183. },
  184. {
  185. "id": {
  186. "m_id": "{D622FDC3-F036-4404-9BDF-02154138B633}"
  187. },
  188. "contracts": [
  189. {
  190. "$type": "SlotTypeContract"
  191. }
  192. ],
  193. "slotName": "On Start",
  194. "DisplayGroup": {
  195. "Value": 2675529103
  196. },
  197. "Descriptor": {
  198. "ConnectionType": 2,
  199. "SlotType": 1
  200. }
  201. },
  202. {
  203. "id": {
  204. "m_id": "{B23ACD15-1C00-424B-B824-DAD1707B597A}"
  205. },
  206. "contracts": [
  207. {
  208. "$type": "SlotTypeContract"
  209. }
  210. ],
  211. "slotName": "Complete",
  212. "toolTip": "Signaled upon node exit",
  213. "DisplayGroup": {
  214. "Value": 1114099747
  215. },
  216. "Descriptor": {
  217. "ConnectionType": 2,
  218. "SlotType": 1
  219. },
  220. "IsLatent": true
  221. },
  222. {
  223. "id": {
  224. "m_id": "{C650AA8B-F81E-4099-A5F1-AD8FC4ED21A2}"
  225. },
  226. "contracts": [
  227. {
  228. "$type": "SlotTypeContract"
  229. }
  230. ],
  231. "slotName": "Action",
  232. "toolTip": "The signal that will be repeated",
  233. "DisplayGroup": {
  234. "Value": 1204587666
  235. },
  236. "Descriptor": {
  237. "ConnectionType": 2,
  238. "SlotType": 1
  239. },
  240. "IsLatent": true
  241. }
  242. ],
  243. "Datums": [
  244. {
  245. "isOverloadedStorage": false,
  246. "scriptCanvasType": {
  247. "m_type": 3
  248. },
  249. "isNullPointer": false,
  250. "$type": "double",
  251. "value": 100.0,
  252. "label": "Repetitions"
  253. },
  254. {
  255. "isOverloadedStorage": false,
  256. "scriptCanvasType": {
  257. "m_type": 3
  258. },
  259. "isNullPointer": false,
  260. "$type": "double",
  261. "value": 0.0,
  262. "label": "Interval"
  263. }
  264. ],
  265. "slotExecutionMap": {
  266. "ins": [
  267. {
  268. "_slotId": {
  269. "m_id": "{2DC15911-FC9B-4593-8F7B-831C7F409089}"
  270. },
  271. "_inputs": [
  272. {
  273. "_slotId": {
  274. "m_id": "{C1F18E50-CB84-4827-B5D6-E397F22A4D78}"
  275. }
  276. },
  277. {
  278. "_slotId": {
  279. "m_id": "{6CDB827D-5220-440F-B528-E4D612E3DC03}"
  280. }
  281. }
  282. ],
  283. "_outs": [
  284. {
  285. "_slotId": {
  286. "m_id": "{D622FDC3-F036-4404-9BDF-02154138B633}"
  287. },
  288. "_name": "On Start",
  289. "_interfaceSourceId": "{00000000-1600-0000-0100-000038010000}"
  290. }
  291. ],
  292. "_interfaceSourceId": "{01000000-0000-0000-B09C-F4A2FD7F0000}"
  293. }
  294. ],
  295. "latents": [
  296. {
  297. "_slotId": {
  298. "m_id": "{B23ACD15-1C00-424B-B824-DAD1707B597A}"
  299. },
  300. "_name": "Complete",
  301. "_interfaceSourceId": "{01000000-0000-0000-B09C-F4A2FD7F0000}"
  302. },
  303. {
  304. "_slotId": {
  305. "m_id": "{C650AA8B-F81E-4099-A5F1-AD8FC4ED21A2}"
  306. },
  307. "_name": "Action",
  308. "_interfaceSourceId": "{01000000-0000-0000-B09C-F4A2FD7F0000}"
  309. }
  310. ]
  311. }
  312. }
  313. }
  314. },
  315. {
  316. "Id": {
  317. "id": 120528706962599
  318. },
  319. "Name": "SC-Node(OperatorAdd)",
  320. "Components": {
  321. "Component_[12699194824785031856]": {
  322. "$type": "OperatorAdd",
  323. "Id": 12699194824785031856,
  324. "Slots": [
  325. {
  326. "id": {
  327. "m_id": "{F6D6B80E-0B76-4C7C-82D4-A36827DEFBE4}"
  328. },
  329. "contracts": [
  330. {
  331. "$type": "SlotTypeContract"
  332. }
  333. ],
  334. "slotName": "In",
  335. "Descriptor": {
  336. "ConnectionType": 1,
  337. "SlotType": 1
  338. }
  339. },
  340. {
  341. "id": {
  342. "m_id": "{3F3B2694-8B90-47A8-90B3-A36A0B05AA48}"
  343. },
  344. "contracts": [
  345. {
  346. "$type": "SlotTypeContract"
  347. }
  348. ],
  349. "slotName": "Out",
  350. "Descriptor": {
  351. "ConnectionType": 2,
  352. "SlotType": 1
  353. }
  354. },
  355. {
  356. "id": {
  357. "m_id": "{47C1DDF8-5BC6-4257-A0EA-9C863BAD4046}"
  358. },
  359. "DynamicTypeOverride": 3,
  360. "contracts": [
  361. {
  362. "$type": "SlotTypeContract"
  363. },
  364. null,
  365. {
  366. "$type": "MathOperatorContract",
  367. "NativeTypes": [
  368. {
  369. "m_type": 3
  370. },
  371. {
  372. "m_type": 6
  373. },
  374. {
  375. "m_type": 8
  376. },
  377. {
  378. "m_type": 9
  379. },
  380. {
  381. "m_type": 10
  382. },
  383. {
  384. "m_type": 11
  385. },
  386. {
  387. "m_type": 12
  388. },
  389. {
  390. "m_type": 14
  391. },
  392. {
  393. "m_type": 15
  394. }
  395. ]
  396. }
  397. ],
  398. "slotName": "Number",
  399. "toolTip": "An operand to use in performing the specified Operation",
  400. "DisplayDataType": {
  401. "m_type": 3
  402. },
  403. "DisplayGroup": {
  404. "Value": 1114760223
  405. },
  406. "Descriptor": {
  407. "ConnectionType": 1,
  408. "SlotType": 2
  409. },
  410. "DynamicGroup": {
  411. "Value": 1114760223
  412. },
  413. "DataType": 1,
  414. "IsReference": true,
  415. "VariableReference": {
  416. "m_id": "{045B671C-27E5-45C2-B225-4DCA3D7D3EA0}"
  417. }
  418. },
  419. {
  420. "id": {
  421. "m_id": "{EB482D9E-25DE-4BFA-9C63-E5872A670650}"
  422. },
  423. "DynamicTypeOverride": 3,
  424. "contracts": [
  425. {
  426. "$type": "SlotTypeContract"
  427. },
  428. null,
  429. {
  430. "$type": "MathOperatorContract",
  431. "NativeTypes": [
  432. {
  433. "m_type": 3
  434. },
  435. {
  436. "m_type": 6
  437. },
  438. {
  439. "m_type": 8
  440. },
  441. {
  442. "m_type": 9
  443. },
  444. {
  445. "m_type": 10
  446. },
  447. {
  448. "m_type": 11
  449. },
  450. {
  451. "m_type": 12
  452. },
  453. {
  454. "m_type": 14
  455. },
  456. {
  457. "m_type": 15
  458. }
  459. ]
  460. }
  461. ],
  462. "slotName": "Number",
  463. "toolTip": "An operand to use in performing the specified Operation",
  464. "DisplayDataType": {
  465. "m_type": 3
  466. },
  467. "DisplayGroup": {
  468. "Value": 1114760223
  469. },
  470. "Descriptor": {
  471. "ConnectionType": 1,
  472. "SlotType": 2
  473. },
  474. "DynamicGroup": {
  475. "Value": 1114760223
  476. },
  477. "DataType": 1
  478. },
  479. {
  480. "id": {
  481. "m_id": "{F660623F-7275-4773-9771-A8C8A4F42103}"
  482. },
  483. "DynamicTypeOverride": 3,
  484. "contracts": [
  485. {
  486. "$type": "SlotTypeContract"
  487. },
  488. {
  489. "$type": "MathOperatorContract",
  490. "NativeTypes": [
  491. {
  492. "m_type": 3
  493. },
  494. {
  495. "m_type": 6
  496. },
  497. {
  498. "m_type": 8
  499. },
  500. {
  501. "m_type": 9
  502. },
  503. {
  504. "m_type": 10
  505. },
  506. {
  507. "m_type": 11
  508. },
  509. {
  510. "m_type": 12
  511. },
  512. {
  513. "m_type": 14
  514. },
  515. {
  516. "m_type": 15
  517. }
  518. ]
  519. }
  520. ],
  521. "slotName": "Result",
  522. "toolTip": "The result of the specified operation",
  523. "DisplayDataType": {
  524. "m_type": 3
  525. },
  526. "DisplayGroup": {
  527. "Value": 1114760223
  528. },
  529. "Descriptor": {
  530. "ConnectionType": 2,
  531. "SlotType": 2
  532. },
  533. "DynamicGroup": {
  534. "Value": 1114760223
  535. },
  536. "DataType": 1,
  537. "IsReference": true,
  538. "VariableReference": {
  539. "m_id": "{045B671C-27E5-45C2-B225-4DCA3D7D3EA0}"
  540. }
  541. }
  542. ],
  543. "Datums": [
  544. {
  545. "isOverloadedStorage": false,
  546. "scriptCanvasType": {
  547. "m_type": 3
  548. },
  549. "isNullPointer": false,
  550. "$type": "double",
  551. "value": 0.0,
  552. "label": "Value"
  553. },
  554. {
  555. "isOverloadedStorage": false,
  556. "scriptCanvasType": {
  557. "m_type": 3
  558. },
  559. "isNullPointer": false,
  560. "$type": "double",
  561. "value": 1.0,
  562. "label": "Number"
  563. }
  564. ]
  565. }
  566. }
  567. },
  568. {
  569. "Id": {
  570. "id": 120520117028007
  571. },
  572. "Name": "SC-Node(OperatorAdd)",
  573. "Components": {
  574. "Component_[12699194824785031856]": {
  575. "$type": "OperatorAdd",
  576. "Id": 12699194824785031856,
  577. "Slots": [
  578. {
  579. "id": {
  580. "m_id": "{F6D6B80E-0B76-4C7C-82D4-A36827DEFBE4}"
  581. },
  582. "contracts": [
  583. {
  584. "$type": "SlotTypeContract"
  585. }
  586. ],
  587. "slotName": "In",
  588. "Descriptor": {
  589. "ConnectionType": 1,
  590. "SlotType": 1
  591. }
  592. },
  593. {
  594. "id": {
  595. "m_id": "{3F3B2694-8B90-47A8-90B3-A36A0B05AA48}"
  596. },
  597. "contracts": [
  598. {
  599. "$type": "SlotTypeContract"
  600. }
  601. ],
  602. "slotName": "Out",
  603. "Descriptor": {
  604. "ConnectionType": 2,
  605. "SlotType": 1
  606. }
  607. },
  608. {
  609. "id": {
  610. "m_id": "{47C1DDF8-5BC6-4257-A0EA-9C863BAD4046}"
  611. },
  612. "DynamicTypeOverride": 3,
  613. "contracts": [
  614. {
  615. "$type": "SlotTypeContract"
  616. },
  617. null,
  618. {
  619. "$type": "MathOperatorContract",
  620. "NativeTypes": [
  621. {
  622. "m_type": 3
  623. },
  624. {
  625. "m_type": 6
  626. },
  627. {
  628. "m_type": 8
  629. },
  630. {
  631. "m_type": 9
  632. },
  633. {
  634. "m_type": 10
  635. },
  636. {
  637. "m_type": 11
  638. },
  639. {
  640. "m_type": 12
  641. },
  642. {
  643. "m_type": 14
  644. },
  645. {
  646. "m_type": 15
  647. }
  648. ]
  649. }
  650. ],
  651. "slotName": "Number",
  652. "toolTip": "An operand to use in performing the specified Operation",
  653. "DisplayDataType": {
  654. "m_type": 3
  655. },
  656. "DisplayGroup": {
  657. "Value": 1114760223
  658. },
  659. "Descriptor": {
  660. "ConnectionType": 1,
  661. "SlotType": 2
  662. },
  663. "DynamicGroup": {
  664. "Value": 1114760223
  665. },
  666. "DataType": 1,
  667. "IsReference": true,
  668. "VariableReference": {
  669. "m_id": "{2E2FA0EA-FB95-40E9-BDDF-3A3BF58CC394}"
  670. }
  671. },
  672. {
  673. "id": {
  674. "m_id": "{EB482D9E-25DE-4BFA-9C63-E5872A670650}"
  675. },
  676. "DynamicTypeOverride": 3,
  677. "contracts": [
  678. {
  679. "$type": "SlotTypeContract"
  680. },
  681. null,
  682. {
  683. "$type": "MathOperatorContract",
  684. "NativeTypes": [
  685. {
  686. "m_type": 3
  687. },
  688. {
  689. "m_type": 6
  690. },
  691. {
  692. "m_type": 8
  693. },
  694. {
  695. "m_type": 9
  696. },
  697. {
  698. "m_type": 10
  699. },
  700. {
  701. "m_type": 11
  702. },
  703. {
  704. "m_type": 12
  705. },
  706. {
  707. "m_type": 14
  708. },
  709. {
  710. "m_type": 15
  711. }
  712. ]
  713. }
  714. ],
  715. "slotName": "Number",
  716. "toolTip": "An operand to use in performing the specified Operation",
  717. "DisplayDataType": {
  718. "m_type": 3
  719. },
  720. "DisplayGroup": {
  721. "Value": 1114760223
  722. },
  723. "Descriptor": {
  724. "ConnectionType": 1,
  725. "SlotType": 2
  726. },
  727. "DynamicGroup": {
  728. "Value": 1114760223
  729. },
  730. "DataType": 1
  731. },
  732. {
  733. "id": {
  734. "m_id": "{F660623F-7275-4773-9771-A8C8A4F42103}"
  735. },
  736. "DynamicTypeOverride": 3,
  737. "contracts": [
  738. {
  739. "$type": "SlotTypeContract"
  740. },
  741. {
  742. "$type": "MathOperatorContract",
  743. "NativeTypes": [
  744. {
  745. "m_type": 3
  746. },
  747. {
  748. "m_type": 6
  749. },
  750. {
  751. "m_type": 8
  752. },
  753. {
  754. "m_type": 9
  755. },
  756. {
  757. "m_type": 10
  758. },
  759. {
  760. "m_type": 11
  761. },
  762. {
  763. "m_type": 12
  764. },
  765. {
  766. "m_type": 14
  767. },
  768. {
  769. "m_type": 15
  770. }
  771. ]
  772. }
  773. ],
  774. "slotName": "Result",
  775. "toolTip": "The result of the specified operation",
  776. "DisplayDataType": {
  777. "m_type": 3
  778. },
  779. "DisplayGroup": {
  780. "Value": 1114760223
  781. },
  782. "Descriptor": {
  783. "ConnectionType": 2,
  784. "SlotType": 2
  785. },
  786. "DynamicGroup": {
  787. "Value": 1114760223
  788. },
  789. "DataType": 1,
  790. "IsReference": true,
  791. "VariableReference": {
  792. "m_id": "{2E2FA0EA-FB95-40E9-BDDF-3A3BF58CC394}"
  793. }
  794. }
  795. ],
  796. "Datums": [
  797. {
  798. "isOverloadedStorage": false,
  799. "scriptCanvasType": {
  800. "m_type": 3
  801. },
  802. "isNullPointer": false,
  803. "$type": "double",
  804. "value": 0.0,
  805. "label": "Value"
  806. },
  807. {
  808. "isOverloadedStorage": false,
  809. "scriptCanvasType": {
  810. "m_type": 3
  811. },
  812. "isNullPointer": false,
  813. "$type": "double",
  814. "value": 1.0,
  815. "label": "Number"
  816. }
  817. ]
  818. }
  819. }
  820. },
  821. {
  822. "Id": {
  823. "id": 120511527093415
  824. },
  825. "Name": "SC-Node(AddSuccess)",
  826. "Components": {
  827. "Component_[14012941769737599286]": {
  828. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  829. "Id": 14012941769737599286,
  830. "Slots": [
  831. {
  832. "isVisibile": false,
  833. "id": {
  834. "m_id": "{CF6A5FAC-F01B-4317-9354-AA1F9CC58C74}"
  835. },
  836. "contracts": [
  837. {
  838. "$type": "SlotTypeContract"
  839. },
  840. null
  841. ],
  842. "slotName": "EntityID: 0",
  843. "Descriptor": {
  844. "ConnectionType": 1,
  845. "SlotType": 2
  846. },
  847. "DataType": 1
  848. },
  849. {
  850. "id": {
  851. "m_id": "{EEC563D7-BFF9-4C1C-9670-44CA3C0D0D0A}"
  852. },
  853. "contracts": [
  854. {
  855. "$type": "SlotTypeContract"
  856. },
  857. null
  858. ],
  859. "slotName": "Report",
  860. "toolTip": "additional notes for the test report",
  861. "DisplayDataType": {
  862. "m_type": 5
  863. },
  864. "Descriptor": {
  865. "ConnectionType": 1,
  866. "SlotType": 2
  867. },
  868. "DataType": 1
  869. },
  870. {
  871. "id": {
  872. "m_id": "{6ED83758-84C0-4ECF-B7E7-811521503463}"
  873. },
  874. "contracts": [
  875. {
  876. "$type": "SlotTypeContract"
  877. }
  878. ],
  879. "slotName": "In",
  880. "Descriptor": {
  881. "ConnectionType": 1,
  882. "SlotType": 1
  883. }
  884. },
  885. {
  886. "id": {
  887. "m_id": "{2E2E80F5-CA79-4D16-BF49-37301E757775}"
  888. },
  889. "contracts": [
  890. {
  891. "$type": "SlotTypeContract"
  892. }
  893. ],
  894. "slotName": "Out",
  895. "Descriptor": {
  896. "ConnectionType": 2,
  897. "SlotType": 1
  898. }
  899. }
  900. ],
  901. "Datums": [
  902. {
  903. "isOverloadedStorage": false,
  904. "scriptCanvasType": {
  905. "m_type": 1
  906. },
  907. "isNullPointer": false,
  908. "$type": "EntityId",
  909. "value": {
  910. "id": 4276206253
  911. }
  912. },
  913. {
  914. "isOverloadedStorage": false,
  915. "scriptCanvasType": {
  916. "m_type": 5
  917. },
  918. "isNullPointer": false,
  919. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  920. "value": "",
  921. "label": "Report"
  922. }
  923. ],
  924. "methodType": 2,
  925. "methodName": "Add Success",
  926. "className": "Unit Testing",
  927. "resultSlotIDs": [
  928. {}
  929. ],
  930. "prettyClassName": "Unit Testing"
  931. }
  932. }
  933. },
  934. {
  935. "Id": {
  936. "id": 120502937158823
  937. },
  938. "Name": "SC-Node(Start)",
  939. "Components": {
  940. "Component_[14272081923453159807]": {
  941. "$type": "Start",
  942. "Id": 14272081923453159807,
  943. "Slots": [
  944. {
  945. "id": {
  946. "m_id": "{8D920E89-5A48-41B8-8D0E-B5DD3D787E75}"
  947. },
  948. "contracts": [
  949. {
  950. "$type": "SlotTypeContract"
  951. }
  952. ],
  953. "slotName": "Out",
  954. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  955. "Descriptor": {
  956. "ConnectionType": 2,
  957. "SlotType": 1
  958. }
  959. }
  960. ]
  961. }
  962. }
  963. },
  964. {
  965. "Id": {
  966. "id": 120494347224231
  967. },
  968. "Name": "SC-Node(Format)",
  969. "Components": {
  970. "Component_[14406761714383243700]": {
  971. "$type": "Format",
  972. "Id": 14406761714383243700,
  973. "Slots": [
  974. {
  975. "id": {
  976. "m_id": "{851A9E78-EC37-4D7D-AC83-04282A9D60E1}"
  977. },
  978. "contracts": [
  979. {
  980. "$type": "SlotTypeContract"
  981. }
  982. ],
  983. "slotName": "In",
  984. "toolTip": "Input signal",
  985. "Descriptor": {
  986. "ConnectionType": 1,
  987. "SlotType": 1
  988. }
  989. },
  990. {
  991. "id": {
  992. "m_id": "{818605E0-6F0F-441E-8D44-DDD3F9045765}"
  993. },
  994. "contracts": [
  995. {
  996. "$type": "SlotTypeContract"
  997. }
  998. ],
  999. "slotName": "Out",
  1000. "Descriptor": {
  1001. "ConnectionType": 2,
  1002. "SlotType": 1
  1003. }
  1004. },
  1005. {
  1006. "id": {
  1007. "m_id": "{579DAC7D-7DC3-40FA-9BE5-50D4FE74A490}"
  1008. },
  1009. "DynamicTypeOverride": 3,
  1010. "contracts": [
  1011. {
  1012. "$type": "SlotTypeContract"
  1013. },
  1014. null
  1015. ],
  1016. "slotName": "Value",
  1017. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  1018. "DisplayDataType": {
  1019. "m_type": 3
  1020. },
  1021. "DisplayGroup": {
  1022. "Value": 1015031923
  1023. },
  1024. "Descriptor": {
  1025. "ConnectionType": 1,
  1026. "SlotType": 2
  1027. },
  1028. "DataType": 1,
  1029. "IsReference": true,
  1030. "VariableReference": {
  1031. "m_id": "{2E2FA0EA-FB95-40E9-BDDF-3A3BF58CC394}"
  1032. }
  1033. },
  1034. {
  1035. "id": {
  1036. "m_id": "{AD6F4323-445B-406D-AF8C-6E90DE3906A3}"
  1037. },
  1038. "contracts": [
  1039. {
  1040. "$type": "SlotTypeContract"
  1041. }
  1042. ],
  1043. "slotName": "String",
  1044. "toolTip": "The resulting string.",
  1045. "DisplayDataType": {
  1046. "m_type": 5
  1047. },
  1048. "DisplayGroup": {
  1049. "Value": 1015031923
  1050. },
  1051. "Descriptor": {
  1052. "ConnectionType": 2,
  1053. "SlotType": 2
  1054. },
  1055. "DataType": 1
  1056. }
  1057. ],
  1058. "Datums": [
  1059. {
  1060. "isOverloadedStorage": false,
  1061. "scriptCanvasType": {
  1062. "m_type": 3
  1063. },
  1064. "isNullPointer": false,
  1065. "$type": "double",
  1066. "value": 0.0,
  1067. "label": "Value"
  1068. }
  1069. ],
  1070. "m_format": "25% Probability Path Hit {Value} times.",
  1071. "m_numericPrecision": 0,
  1072. "m_arrayBindingMap": [
  1073. {
  1074. "Key": 1,
  1075. "Value": {
  1076. "m_id": "{579DAC7D-7DC3-40FA-9BE5-50D4FE74A490}"
  1077. }
  1078. }
  1079. ],
  1080. "m_unresolvedString": [
  1081. "25% Probability Path Hit ",
  1082. {},
  1083. " times."
  1084. ],
  1085. "m_formatSlotMap": {
  1086. "Value": {
  1087. "m_id": "{579DAC7D-7DC3-40FA-9BE5-50D4FE74A490}"
  1088. }
  1089. }
  1090. }
  1091. }
  1092. },
  1093. {
  1094. "Id": {
  1095. "id": 120490052256935
  1096. },
  1097. "Name": "SC-Node(AddFailure)",
  1098. "Components": {
  1099. "Component_[16335002030681109412]": {
  1100. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1101. "Id": 16335002030681109412,
  1102. "Slots": [
  1103. {
  1104. "isVisibile": false,
  1105. "id": {
  1106. "m_id": "{FFB8EBCC-3A59-4EDE-A5CA-FA41A9CEF942}"
  1107. },
  1108. "contracts": [
  1109. {
  1110. "$type": "SlotTypeContract"
  1111. },
  1112. null
  1113. ],
  1114. "slotName": "EntityID: 0",
  1115. "Descriptor": {
  1116. "ConnectionType": 1,
  1117. "SlotType": 2
  1118. },
  1119. "DataType": 1
  1120. },
  1121. {
  1122. "id": {
  1123. "m_id": "{4C23F79B-D8E4-4470-85B4-9126C85A8C35}"
  1124. },
  1125. "contracts": [
  1126. {
  1127. "$type": "SlotTypeContract"
  1128. },
  1129. null
  1130. ],
  1131. "slotName": "Report",
  1132. "toolTip": "additional notes for the test report",
  1133. "DisplayDataType": {
  1134. "m_type": 5
  1135. },
  1136. "Descriptor": {
  1137. "ConnectionType": 1,
  1138. "SlotType": 2
  1139. },
  1140. "DataType": 1
  1141. },
  1142. {
  1143. "id": {
  1144. "m_id": "{07FFE9A1-0811-4C41-A686-3983D54576FC}"
  1145. },
  1146. "contracts": [
  1147. {
  1148. "$type": "SlotTypeContract"
  1149. }
  1150. ],
  1151. "slotName": "In",
  1152. "Descriptor": {
  1153. "ConnectionType": 1,
  1154. "SlotType": 1
  1155. }
  1156. },
  1157. {
  1158. "id": {
  1159. "m_id": "{DF607B0F-EC3F-4864-8E34-72FC3C7E32C9}"
  1160. },
  1161. "contracts": [
  1162. {
  1163. "$type": "SlotTypeContract"
  1164. }
  1165. ],
  1166. "slotName": "Out",
  1167. "Descriptor": {
  1168. "ConnectionType": 2,
  1169. "SlotType": 1
  1170. }
  1171. }
  1172. ],
  1173. "Datums": [
  1174. {
  1175. "isOverloadedStorage": false,
  1176. "scriptCanvasType": {
  1177. "m_type": 1
  1178. },
  1179. "isNullPointer": false,
  1180. "$type": "EntityId",
  1181. "value": {
  1182. "id": 4276206253
  1183. }
  1184. },
  1185. {
  1186. "isOverloadedStorage": false,
  1187. "scriptCanvasType": {
  1188. "m_type": 5
  1189. },
  1190. "isNullPointer": false,
  1191. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1192. "value": "path with 0% probability hit, should be impossible",
  1193. "label": "Report"
  1194. }
  1195. ],
  1196. "methodType": 2,
  1197. "methodName": "Add Failure",
  1198. "className": "Unit Testing",
  1199. "resultSlotIDs": [
  1200. {}
  1201. ],
  1202. "prettyClassName": "Unit Testing"
  1203. }
  1204. }
  1205. },
  1206. {
  1207. "Id": {
  1208. "id": 120541591864487
  1209. },
  1210. "Name": "SC Node(GetVariable)",
  1211. "Components": {
  1212. "Component_[2197863957572367836]": {
  1213. "$type": "GetVariableNode",
  1214. "Id": 2197863957572367836,
  1215. "Slots": [
  1216. {
  1217. "id": {
  1218. "m_id": "{C74C6158-20B5-44A4-81DD-E91491215BDC}"
  1219. },
  1220. "contracts": [
  1221. {
  1222. "$type": "SlotTypeContract"
  1223. }
  1224. ],
  1225. "slotName": "In",
  1226. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1227. "Descriptor": {
  1228. "ConnectionType": 1,
  1229. "SlotType": 1
  1230. }
  1231. },
  1232. {
  1233. "id": {
  1234. "m_id": "{4AD1447B-EDD4-4C45-83E5-7B68F7601E7C}"
  1235. },
  1236. "contracts": [
  1237. {
  1238. "$type": "SlotTypeContract"
  1239. }
  1240. ],
  1241. "slotName": "Out",
  1242. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1243. "Descriptor": {
  1244. "ConnectionType": 2,
  1245. "SlotType": 1
  1246. }
  1247. },
  1248. {
  1249. "id": {
  1250. "m_id": "{74465AA3-2786-4BC5-9249-77D2DC79B4A8}"
  1251. },
  1252. "contracts": [
  1253. {
  1254. "$type": "SlotTypeContract"
  1255. }
  1256. ],
  1257. "slotName": "Number",
  1258. "DisplayDataType": {
  1259. "m_type": 3
  1260. },
  1261. "Descriptor": {
  1262. "ConnectionType": 2,
  1263. "SlotType": 2
  1264. },
  1265. "DataType": 1
  1266. }
  1267. ],
  1268. "m_variableId": {
  1269. "m_id": "{E55CE03E-C179-4AC0-B01F-99213726262B}"
  1270. },
  1271. "m_variableDataOutSlotId": {
  1272. "m_id": "{74465AA3-2786-4BC5-9249-77D2DC79B4A8}"
  1273. }
  1274. }
  1275. }
  1276. },
  1277. {
  1278. "Id": {
  1279. "id": 120533001929895
  1280. },
  1281. "Name": "SC-Node(AddSuccess)",
  1282. "Components": {
  1283. "Component_[5480630145482063567]": {
  1284. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1285. "Id": 5480630145482063567,
  1286. "Slots": [
  1287. {
  1288. "isVisibile": false,
  1289. "id": {
  1290. "m_id": "{73629A23-C676-4690-82D3-0EC45D49C30A}"
  1291. },
  1292. "contracts": [
  1293. {
  1294. "$type": "SlotTypeContract"
  1295. },
  1296. null
  1297. ],
  1298. "slotName": "EntityID: 0",
  1299. "Descriptor": {
  1300. "ConnectionType": 1,
  1301. "SlotType": 2
  1302. },
  1303. "DataType": 1
  1304. },
  1305. {
  1306. "id": {
  1307. "m_id": "{8147E43C-226E-4BA6-9FEF-3BDCC79E8381}"
  1308. },
  1309. "contracts": [
  1310. {
  1311. "$type": "SlotTypeContract"
  1312. },
  1313. null
  1314. ],
  1315. "slotName": "Report",
  1316. "toolTip": "additional notes for the test report",
  1317. "DisplayDataType": {
  1318. "m_type": 5
  1319. },
  1320. "Descriptor": {
  1321. "ConnectionType": 1,
  1322. "SlotType": 2
  1323. },
  1324. "DataType": 1
  1325. },
  1326. {
  1327. "id": {
  1328. "m_id": "{B2F453BF-1C77-4E2D-98C5-D59A4EBA5DD3}"
  1329. },
  1330. "contracts": [
  1331. {
  1332. "$type": "SlotTypeContract"
  1333. }
  1334. ],
  1335. "slotName": "In",
  1336. "Descriptor": {
  1337. "ConnectionType": 1,
  1338. "SlotType": 1
  1339. }
  1340. },
  1341. {
  1342. "id": {
  1343. "m_id": "{B500AFBA-9BDC-4484-8C11-D0B484D82149}"
  1344. },
  1345. "contracts": [
  1346. {
  1347. "$type": "SlotTypeContract"
  1348. }
  1349. ],
  1350. "slotName": "Out",
  1351. "Descriptor": {
  1352. "ConnectionType": 2,
  1353. "SlotType": 1
  1354. }
  1355. }
  1356. ],
  1357. "Datums": [
  1358. {
  1359. "isOverloadedStorage": false,
  1360. "scriptCanvasType": {
  1361. "m_type": 1
  1362. },
  1363. "isNullPointer": false,
  1364. "$type": "EntityId",
  1365. "value": {
  1366. "id": 4276206253
  1367. }
  1368. },
  1369. {
  1370. "isOverloadedStorage": false,
  1371. "scriptCanvasType": {
  1372. "m_type": 5
  1373. },
  1374. "isNullPointer": false,
  1375. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1376. "value": "",
  1377. "label": "Report"
  1378. }
  1379. ],
  1380. "methodType": 2,
  1381. "methodName": "Add Success",
  1382. "className": "Unit Testing",
  1383. "resultSlotIDs": [
  1384. {}
  1385. ],
  1386. "prettyClassName": "Unit Testing"
  1387. }
  1388. }
  1389. },
  1390. {
  1391. "Id": {
  1392. "id": 120524411995303
  1393. },
  1394. "Name": "SC-Node(Format)",
  1395. "Components": {
  1396. "Component_[5904229180719073076]": {
  1397. "$type": "Format",
  1398. "Id": 5904229180719073076,
  1399. "Slots": [
  1400. {
  1401. "id": {
  1402. "m_id": "{CE78EA72-82B4-4BF3-B64B-4C0D0C9EF52E}"
  1403. },
  1404. "contracts": [
  1405. {
  1406. "$type": "SlotTypeContract"
  1407. }
  1408. ],
  1409. "slotName": "In",
  1410. "toolTip": "Input signal",
  1411. "Descriptor": {
  1412. "ConnectionType": 1,
  1413. "SlotType": 1
  1414. }
  1415. },
  1416. {
  1417. "id": {
  1418. "m_id": "{4F5A4BEF-B5CD-4880-A5DD-E8B6E70F20C0}"
  1419. },
  1420. "contracts": [
  1421. {
  1422. "$type": "SlotTypeContract"
  1423. }
  1424. ],
  1425. "slotName": "Out",
  1426. "Descriptor": {
  1427. "ConnectionType": 2,
  1428. "SlotType": 1
  1429. }
  1430. },
  1431. {
  1432. "id": {
  1433. "m_id": "{7A7087F7-3838-40EE-900F-BE2480E7F15E}"
  1434. },
  1435. "DynamicTypeOverride": 3,
  1436. "contracts": [
  1437. {
  1438. "$type": "SlotTypeContract"
  1439. },
  1440. null
  1441. ],
  1442. "slotName": "Value",
  1443. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  1444. "DisplayDataType": {
  1445. "m_type": 3
  1446. },
  1447. "DisplayGroup": {
  1448. "Value": 1015031923
  1449. },
  1450. "Descriptor": {
  1451. "ConnectionType": 1,
  1452. "SlotType": 2
  1453. },
  1454. "DataType": 1,
  1455. "IsReference": true,
  1456. "VariableReference": {
  1457. "m_id": "{045B671C-27E5-45C2-B225-4DCA3D7D3EA0}"
  1458. }
  1459. },
  1460. {
  1461. "id": {
  1462. "m_id": "{B4D78DEF-F26E-4AE3-B87A-00BA9BF60330}"
  1463. },
  1464. "contracts": [
  1465. {
  1466. "$type": "SlotTypeContract"
  1467. }
  1468. ],
  1469. "slotName": "String",
  1470. "toolTip": "The resulting string.",
  1471. "DisplayDataType": {
  1472. "m_type": 5
  1473. },
  1474. "DisplayGroup": {
  1475. "Value": 1015031923
  1476. },
  1477. "Descriptor": {
  1478. "ConnectionType": 2,
  1479. "SlotType": 2
  1480. },
  1481. "DataType": 1
  1482. }
  1483. ],
  1484. "Datums": [
  1485. {
  1486. "isOverloadedStorage": false,
  1487. "scriptCanvasType": {
  1488. "m_type": 3
  1489. },
  1490. "isNullPointer": false,
  1491. "$type": "double",
  1492. "value": 0.0,
  1493. "label": "Value"
  1494. }
  1495. ],
  1496. "m_format": "75% Probability Path Hit {Value} times.",
  1497. "m_numericPrecision": 0,
  1498. "m_arrayBindingMap": [
  1499. {
  1500. "Key": 1,
  1501. "Value": {
  1502. "m_id": "{7A7087F7-3838-40EE-900F-BE2480E7F15E}"
  1503. }
  1504. }
  1505. ],
  1506. "m_unresolvedString": [
  1507. "75% Probability Path Hit ",
  1508. {},
  1509. " times."
  1510. ],
  1511. "m_formatSlotMap": {
  1512. "Value": {
  1513. "m_id": "{7A7087F7-3838-40EE-900F-BE2480E7F15E}"
  1514. }
  1515. }
  1516. }
  1517. }
  1518. },
  1519. {
  1520. "Id": {
  1521. "id": 120515822060711
  1522. },
  1523. "Name": "SC-Node(MarkComplete)",
  1524. "Components": {
  1525. "Component_[5951434173844268356]": {
  1526. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1527. "Id": 5951434173844268356,
  1528. "Slots": [
  1529. {
  1530. "isVisibile": false,
  1531. "id": {
  1532. "m_id": "{D79D7CAF-D0C0-4F87-B74A-4F7052E5969C}"
  1533. },
  1534. "contracts": [
  1535. {
  1536. "$type": "SlotTypeContract"
  1537. },
  1538. null
  1539. ],
  1540. "slotName": "EntityID: 0",
  1541. "Descriptor": {
  1542. "ConnectionType": 1,
  1543. "SlotType": 2
  1544. },
  1545. "DataType": 1
  1546. },
  1547. {
  1548. "id": {
  1549. "m_id": "{4B42F59F-9815-48B0-9D78-55EBA791432D}"
  1550. },
  1551. "contracts": [
  1552. {
  1553. "$type": "SlotTypeContract"
  1554. },
  1555. null
  1556. ],
  1557. "slotName": "Report",
  1558. "toolTip": "additional notes for the test report",
  1559. "DisplayDataType": {
  1560. "m_type": 5
  1561. },
  1562. "Descriptor": {
  1563. "ConnectionType": 1,
  1564. "SlotType": 2
  1565. },
  1566. "DataType": 1
  1567. },
  1568. {
  1569. "id": {
  1570. "m_id": "{5545D1AE-860C-4A6F-B443-F63540F4A919}"
  1571. },
  1572. "contracts": [
  1573. {
  1574. "$type": "SlotTypeContract"
  1575. }
  1576. ],
  1577. "slotName": "In",
  1578. "Descriptor": {
  1579. "ConnectionType": 1,
  1580. "SlotType": 1
  1581. }
  1582. },
  1583. {
  1584. "id": {
  1585. "m_id": "{C1AC94A7-A187-4AC7-AB4C-163617ACE7EE}"
  1586. },
  1587. "contracts": [
  1588. {
  1589. "$type": "SlotTypeContract"
  1590. }
  1591. ],
  1592. "slotName": "Out",
  1593. "Descriptor": {
  1594. "ConnectionType": 2,
  1595. "SlotType": 1
  1596. }
  1597. }
  1598. ],
  1599. "Datums": [
  1600. {
  1601. "isOverloadedStorage": false,
  1602. "scriptCanvasType": {
  1603. "m_type": 1
  1604. },
  1605. "isNullPointer": false,
  1606. "$type": "EntityId",
  1607. "value": {
  1608. "id": 4276206253
  1609. }
  1610. },
  1611. {
  1612. "isOverloadedStorage": false,
  1613. "scriptCanvasType": {
  1614. "m_type": 5
  1615. },
  1616. "isNullPointer": false,
  1617. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1618. "value": "",
  1619. "label": "Report"
  1620. }
  1621. ],
  1622. "methodType": 2,
  1623. "methodName": "Mark Complete",
  1624. "className": "Unit Testing",
  1625. "resultSlotIDs": [
  1626. {}
  1627. ],
  1628. "prettyClassName": "Unit Testing"
  1629. }
  1630. }
  1631. },
  1632. {
  1633. "Id": {
  1634. "id": 120507232126119
  1635. },
  1636. "Name": "SC Node(GetVariable)",
  1637. "Components": {
  1638. "Component_[7439413912080940436]": {
  1639. "$type": "GetVariableNode",
  1640. "Id": 7439413912080940436,
  1641. "Slots": [
  1642. {
  1643. "id": {
  1644. "m_id": "{F85527A2-4489-4C7C-9E09-35BD033F4420}"
  1645. },
  1646. "contracts": [
  1647. {
  1648. "$type": "SlotTypeContract"
  1649. }
  1650. ],
  1651. "slotName": "In",
  1652. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1653. "Descriptor": {
  1654. "ConnectionType": 1,
  1655. "SlotType": 1
  1656. }
  1657. },
  1658. {
  1659. "id": {
  1660. "m_id": "{A9B7DD94-EC3D-4D8E-8F6D-631A57782354}"
  1661. },
  1662. "contracts": [
  1663. {
  1664. "$type": "SlotTypeContract"
  1665. }
  1666. ],
  1667. "slotName": "Out",
  1668. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1669. "Descriptor": {
  1670. "ConnectionType": 2,
  1671. "SlotType": 1
  1672. }
  1673. },
  1674. {
  1675. "id": {
  1676. "m_id": "{22BF2807-B25C-47C2-B505-E1D3F21FEB06}"
  1677. },
  1678. "contracts": [
  1679. {
  1680. "$type": "SlotTypeContract"
  1681. }
  1682. ],
  1683. "slotName": "Number",
  1684. "DisplayDataType": {
  1685. "m_type": 3
  1686. },
  1687. "Descriptor": {
  1688. "ConnectionType": 2,
  1689. "SlotType": 2
  1690. },
  1691. "DataType": 1
  1692. }
  1693. ],
  1694. "m_variableId": {
  1695. "m_id": "{8B1B2165-960F-4BE6-9FB7-7BC97178B143}"
  1696. },
  1697. "m_variableDataOutSlotId": {
  1698. "m_id": "{22BF2807-B25C-47C2-B505-E1D3F21FEB06}"
  1699. }
  1700. }
  1701. }
  1702. },
  1703. {
  1704. "Id": {
  1705. "id": 120498642191527
  1706. },
  1707. "Name": "SC-Node(WeightedRandomSequencer)",
  1708. "Components": {
  1709. "Component_[8512164989739381702]": {
  1710. "$type": "WeightedRandomSequencer",
  1711. "Id": 8512164989739381702,
  1712. "Slots": [
  1713. {
  1714. "id": {
  1715. "m_id": "{5FB6AC6B-E1F0-4320-B376-F2EB934C8494}"
  1716. },
  1717. "contracts": [
  1718. {
  1719. "$type": "SlotTypeContract"
  1720. },
  1721. null
  1722. ],
  1723. "slotName": "Weight 1",
  1724. "toolTip": "The weight associated with the execution state.",
  1725. "DisplayGroup": {
  1726. "Value": 1435323233
  1727. },
  1728. "Descriptor": {
  1729. "ConnectionType": 1,
  1730. "SlotType": 2
  1731. },
  1732. "DataType": 1
  1733. },
  1734. {
  1735. "id": {
  1736. "m_id": "{688C7D88-48C7-4928-86D1-5063020914B6}"
  1737. },
  1738. "contracts": [
  1739. {
  1740. "$type": "SlotTypeContract"
  1741. }
  1742. ],
  1743. "slotName": "Out 1",
  1744. "DisplayGroup": {
  1745. "Value": 1435323233
  1746. },
  1747. "Descriptor": {
  1748. "ConnectionType": 2,
  1749. "SlotType": 1
  1750. }
  1751. },
  1752. {
  1753. "id": {
  1754. "m_id": "{E260435A-379F-4D2A-86CC-C3397E0F4CEA}"
  1755. },
  1756. "contracts": [
  1757. {
  1758. "$type": "SlotTypeContract"
  1759. }
  1760. ],
  1761. "slotName": "In",
  1762. "toolTip": "Input signal",
  1763. "Descriptor": {
  1764. "ConnectionType": 1,
  1765. "SlotType": 1
  1766. }
  1767. },
  1768. {
  1769. "id": {
  1770. "m_id": "{96CF7682-BF93-4AB9-AC7E-2D739230FF97}"
  1771. },
  1772. "contracts": [
  1773. {
  1774. "$type": "SlotTypeContract"
  1775. },
  1776. null
  1777. ],
  1778. "slotName": "Weight 2",
  1779. "toolTip": "The weight associated with the execution state.",
  1780. "DisplayGroup": {
  1781. "Value": 1435323233
  1782. },
  1783. "Descriptor": {
  1784. "ConnectionType": 1,
  1785. "SlotType": 2
  1786. },
  1787. "DataType": 1
  1788. },
  1789. {
  1790. "id": {
  1791. "m_id": "{A19C2774-2BF6-49E0-A1A2-4588B4256993}"
  1792. },
  1793. "contracts": [
  1794. {
  1795. "$type": "SlotTypeContract"
  1796. }
  1797. ],
  1798. "slotName": "Out 2",
  1799. "DisplayGroup": {
  1800. "Value": 1435323233
  1801. },
  1802. "Descriptor": {
  1803. "ConnectionType": 2,
  1804. "SlotType": 1
  1805. }
  1806. },
  1807. {
  1808. "id": {
  1809. "m_id": "{ACD9E1E2-C0E7-4DF6-BC43-09A9A9C6BFBC}"
  1810. },
  1811. "contracts": [
  1812. {
  1813. "$type": "SlotTypeContract"
  1814. },
  1815. null
  1816. ],
  1817. "slotName": "Weight 3",
  1818. "toolTip": "The weight associated with the execution state.",
  1819. "DisplayGroup": {
  1820. "Value": 1435323233
  1821. },
  1822. "Descriptor": {
  1823. "ConnectionType": 1,
  1824. "SlotType": 2
  1825. },
  1826. "DataType": 1
  1827. },
  1828. {
  1829. "id": {
  1830. "m_id": "{483219CF-387C-473C-A283-28C459B79D73}"
  1831. },
  1832. "contracts": [
  1833. {
  1834. "$type": "SlotTypeContract"
  1835. }
  1836. ],
  1837. "slotName": "Out 3",
  1838. "DisplayGroup": {
  1839. "Value": 1435323233
  1840. },
  1841. "Descriptor": {
  1842. "ConnectionType": 2,
  1843. "SlotType": 1
  1844. }
  1845. },
  1846. {
  1847. "id": {
  1848. "m_id": "{FB975AD0-490D-4247-AD54-223AB7A180C8}"
  1849. },
  1850. "contracts": [
  1851. {
  1852. "$type": "SlotTypeContract"
  1853. },
  1854. null
  1855. ],
  1856. "slotName": "Weight 4",
  1857. "toolTip": "The weight associated with the execution state.",
  1858. "DisplayGroup": {
  1859. "Value": 1435323233
  1860. },
  1861. "Descriptor": {
  1862. "ConnectionType": 1,
  1863. "SlotType": 2
  1864. },
  1865. "DataType": 1
  1866. },
  1867. {
  1868. "id": {
  1869. "m_id": "{136795BF-754E-457B-BABB-9DADB260445C}"
  1870. },
  1871. "contracts": [
  1872. {
  1873. "$type": "SlotTypeContract"
  1874. }
  1875. ],
  1876. "slotName": "Out 4",
  1877. "DisplayGroup": {
  1878. "Value": 1435323233
  1879. },
  1880. "Descriptor": {
  1881. "ConnectionType": 2,
  1882. "SlotType": 1
  1883. }
  1884. },
  1885. {
  1886. "id": {
  1887. "m_id": "{099B89E4-F602-4451-B5E0-B13469544900}"
  1888. },
  1889. "contracts": [
  1890. {
  1891. "$type": "SlotTypeContract"
  1892. },
  1893. null
  1894. ],
  1895. "slotName": "Weight 5",
  1896. "toolTip": "The weight associated with the execution state.",
  1897. "DisplayGroup": {
  1898. "Value": 1435323233
  1899. },
  1900. "Descriptor": {
  1901. "ConnectionType": 1,
  1902. "SlotType": 2
  1903. },
  1904. "DataType": 1
  1905. },
  1906. {
  1907. "id": {
  1908. "m_id": "{CBDEBCEE-2C18-4576-AD5E-ED9BE24CD1BF}"
  1909. },
  1910. "contracts": [
  1911. {
  1912. "$type": "SlotTypeContract"
  1913. }
  1914. ],
  1915. "slotName": "Out 5",
  1916. "DisplayGroup": {
  1917. "Value": 1435323233
  1918. },
  1919. "Descriptor": {
  1920. "ConnectionType": 2,
  1921. "SlotType": 1
  1922. }
  1923. }
  1924. ],
  1925. "Datums": [
  1926. {
  1927. "isOverloadedStorage": false,
  1928. "scriptCanvasType": {
  1929. "m_type": 3
  1930. },
  1931. "isNullPointer": false,
  1932. "$type": "double",
  1933. "value": 0.0,
  1934. "label": "Weight 1"
  1935. },
  1936. {
  1937. "isOverloadedStorage": false,
  1938. "scriptCanvasType": {
  1939. "m_type": 3
  1940. },
  1941. "isNullPointer": false,
  1942. "$type": "double",
  1943. "value": 0.0,
  1944. "label": "Weight 2"
  1945. },
  1946. {
  1947. "isOverloadedStorage": false,
  1948. "scriptCanvasType": {
  1949. "m_type": 3
  1950. },
  1951. "isNullPointer": false,
  1952. "$type": "double",
  1953. "value": 0.0,
  1954. "label": "Weight 3"
  1955. },
  1956. {
  1957. "isOverloadedStorage": false,
  1958. "scriptCanvasType": {
  1959. "m_type": 3
  1960. },
  1961. "isNullPointer": false,
  1962. "$type": "double",
  1963. "value": 1.0,
  1964. "label": "Weight 4"
  1965. },
  1966. {
  1967. "isOverloadedStorage": false,
  1968. "scriptCanvasType": {
  1969. "m_type": 3
  1970. },
  1971. "isNullPointer": false,
  1972. "$type": "double",
  1973. "value": 0.0,
  1974. "label": "Weight 5"
  1975. }
  1976. ],
  1977. "m_weightedPairings": [
  1978. {
  1979. "WeightSlotId": {
  1980. "m_id": "{5FB6AC6B-E1F0-4320-B376-F2EB934C8494}"
  1981. },
  1982. "ExecutionSlotId": {
  1983. "m_id": "{688C7D88-48C7-4928-86D1-5063020914B6}"
  1984. }
  1985. },
  1986. {
  1987. "WeightSlotId": {
  1988. "m_id": "{96CF7682-BF93-4AB9-AC7E-2D739230FF97}"
  1989. },
  1990. "ExecutionSlotId": {
  1991. "m_id": "{A19C2774-2BF6-49E0-A1A2-4588B4256993}"
  1992. }
  1993. },
  1994. {
  1995. "WeightSlotId": {
  1996. "m_id": "{ACD9E1E2-C0E7-4DF6-BC43-09A9A9C6BFBC}"
  1997. },
  1998. "ExecutionSlotId": {
  1999. "m_id": "{483219CF-387C-473C-A283-28C459B79D73}"
  2000. }
  2001. },
  2002. {
  2003. "WeightSlotId": {
  2004. "m_id": "{FB975AD0-490D-4247-AD54-223AB7A180C8}"
  2005. },
  2006. "ExecutionSlotId": {
  2007. "m_id": "{136795BF-754E-457B-BABB-9DADB260445C}"
  2008. }
  2009. },
  2010. {
  2011. "WeightSlotId": {
  2012. "m_id": "{099B89E4-F602-4451-B5E0-B13469544900}"
  2013. },
  2014. "ExecutionSlotId": {
  2015. "m_id": "{CBDEBCEE-2C18-4576-AD5E-ED9BE24CD1BF}"
  2016. }
  2017. }
  2018. ]
  2019. }
  2020. }
  2021. }
  2022. ],
  2023. "m_connections": [
  2024. {
  2025. "Id": {
  2026. "id": 120545886831783
  2027. },
  2028. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  2029. "Components": {
  2030. "Component_[16836800167084518902]": {
  2031. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2032. "Id": 16836800167084518902,
  2033. "sourceEndpoint": {
  2034. "nodeId": {
  2035. "id": 120507232126119
  2036. },
  2037. "slotId": {
  2038. "m_id": "{A9B7DD94-EC3D-4D8E-8F6D-631A57782354}"
  2039. }
  2040. },
  2041. "targetEndpoint": {
  2042. "nodeId": {
  2043. "id": 120541591864487
  2044. },
  2045. "slotId": {
  2046. "m_id": "{C74C6158-20B5-44A4-81DD-E91491215BDC}"
  2047. }
  2048. }
  2049. }
  2050. }
  2051. },
  2052. {
  2053. "Id": {
  2054. "id": 120550181799079
  2055. },
  2056. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Random Signal: In)",
  2057. "Components": {
  2058. "Component_[5629534857894478500]": {
  2059. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2060. "Id": 5629534857894478500,
  2061. "sourceEndpoint": {
  2062. "nodeId": {
  2063. "id": 120541591864487
  2064. },
  2065. "slotId": {
  2066. "m_id": "{4AD1447B-EDD4-4C45-83E5-7B68F7601E7C}"
  2067. }
  2068. },
  2069. "targetEndpoint": {
  2070. "nodeId": {
  2071. "id": 120498642191527
  2072. },
  2073. "slotId": {
  2074. "m_id": "{E260435A-379F-4D2A-86CC-C3397E0F4CEA}"
  2075. }
  2076. }
  2077. }
  2078. }
  2079. },
  2080. {
  2081. "Id": {
  2082. "id": 120554476766375
  2083. },
  2084. "Name": "srcEndpoint=(Random Signal: Out 2), destEndpoint=(Add (+): In)",
  2085. "Components": {
  2086. "Component_[2394094284983278702]": {
  2087. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2088. "Id": 2394094284983278702,
  2089. "sourceEndpoint": {
  2090. "nodeId": {
  2091. "id": 120498642191527
  2092. },
  2093. "slotId": {
  2094. "m_id": "{A19C2774-2BF6-49E0-A1A2-4588B4256993}"
  2095. }
  2096. },
  2097. "targetEndpoint": {
  2098. "nodeId": {
  2099. "id": 120528706962599
  2100. },
  2101. "slotId": {
  2102. "m_id": "{F6D6B80E-0B76-4C7C-82D4-A36827DEFBE4}"
  2103. }
  2104. }
  2105. }
  2106. }
  2107. },
  2108. {
  2109. "Id": {
  2110. "id": 120558771733671
  2111. },
  2112. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Random Signal: Weight 2)",
  2113. "Components": {
  2114. "Component_[14212000188201865798]": {
  2115. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2116. "Id": 14212000188201865798,
  2117. "sourceEndpoint": {
  2118. "nodeId": {
  2119. "id": 120507232126119
  2120. },
  2121. "slotId": {
  2122. "m_id": "{22BF2807-B25C-47C2-B505-E1D3F21FEB06}"
  2123. }
  2124. },
  2125. "targetEndpoint": {
  2126. "nodeId": {
  2127. "id": 120498642191527
  2128. },
  2129. "slotId": {
  2130. "m_id": "{96CF7682-BF93-4AB9-AC7E-2D739230FF97}"
  2131. }
  2132. }
  2133. }
  2134. }
  2135. },
  2136. {
  2137. "Id": {
  2138. "id": 120563066700967
  2139. },
  2140. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Random Signal: Weight 4)",
  2141. "Components": {
  2142. "Component_[3877706452101951448]": {
  2143. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2144. "Id": 3877706452101951448,
  2145. "sourceEndpoint": {
  2146. "nodeId": {
  2147. "id": 120541591864487
  2148. },
  2149. "slotId": {
  2150. "m_id": "{74465AA3-2786-4BC5-9249-77D2DC79B4A8}"
  2151. }
  2152. },
  2153. "targetEndpoint": {
  2154. "nodeId": {
  2155. "id": 120498642191527
  2156. },
  2157. "slotId": {
  2158. "m_id": "{FB975AD0-490D-4247-AD54-223AB7A180C8}"
  2159. }
  2160. }
  2161. }
  2162. }
  2163. },
  2164. {
  2165. "Id": {
  2166. "id": 120567361668263
  2167. },
  2168. "Name": "srcEndpoint=(Random Signal: Out 4), destEndpoint=(Add (+): In)",
  2169. "Components": {
  2170. "Component_[9701514189150624357]": {
  2171. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2172. "Id": 9701514189150624357,
  2173. "sourceEndpoint": {
  2174. "nodeId": {
  2175. "id": 120498642191527
  2176. },
  2177. "slotId": {
  2178. "m_id": "{136795BF-754E-457B-BABB-9DADB260445C}"
  2179. }
  2180. },
  2181. "targetEndpoint": {
  2182. "nodeId": {
  2183. "id": 120520117028007
  2184. },
  2185. "slotId": {
  2186. "m_id": "{F6D6B80E-0B76-4C7C-82D4-A36827DEFBE4}"
  2187. }
  2188. }
  2189. }
  2190. }
  2191. },
  2192. {
  2193. "Id": {
  2194. "id": 120571656635559
  2195. },
  2196. "Name": "srcEndpoint=(Repeater: Complete), destEndpoint=(Build String: In)",
  2197. "Components": {
  2198. "Component_[593559957498411535]": {
  2199. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2200. "Id": 593559957498411535,
  2201. "sourceEndpoint": {
  2202. "nodeId": {
  2203. "id": 120537296897191
  2204. },
  2205. "slotId": {
  2206. "m_id": "{B23ACD15-1C00-424B-B824-DAD1707B597A}"
  2207. }
  2208. },
  2209. "targetEndpoint": {
  2210. "nodeId": {
  2211. "id": 120524411995303
  2212. },
  2213. "slotId": {
  2214. "m_id": "{CE78EA72-82B4-4BF3-B64B-4C0D0C9EF52E}"
  2215. }
  2216. }
  2217. }
  2218. }
  2219. },
  2220. {
  2221. "Id": {
  2222. "id": 120575951602855
  2223. },
  2224. "Name": "srcEndpoint=(Build String: String), destEndpoint=(Add Success: Report)",
  2225. "Components": {
  2226. "Component_[4984906754181284056]": {
  2227. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2228. "Id": 4984906754181284056,
  2229. "sourceEndpoint": {
  2230. "nodeId": {
  2231. "id": 120494347224231
  2232. },
  2233. "slotId": {
  2234. "m_id": "{AD6F4323-445B-406D-AF8C-6E90DE3906A3}"
  2235. }
  2236. },
  2237. "targetEndpoint": {
  2238. "nodeId": {
  2239. "id": 120533001929895
  2240. },
  2241. "slotId": {
  2242. "m_id": "{8147E43C-226E-4BA6-9FEF-3BDCC79E8381}"
  2243. }
  2244. }
  2245. }
  2246. }
  2247. },
  2248. {
  2249. "Id": {
  2250. "id": 120580246570151
  2251. },
  2252. "Name": "srcEndpoint=(Repeater: Action), destEndpoint=(Get Variable: In)",
  2253. "Components": {
  2254. "Component_[437913356460319809]": {
  2255. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2256. "Id": 437913356460319809,
  2257. "sourceEndpoint": {
  2258. "nodeId": {
  2259. "id": 120537296897191
  2260. },
  2261. "slotId": {
  2262. "m_id": "{C650AA8B-F81E-4099-A5F1-AD8FC4ED21A2}"
  2263. }
  2264. },
  2265. "targetEndpoint": {
  2266. "nodeId": {
  2267. "id": 120507232126119
  2268. },
  2269. "slotId": {
  2270. "m_id": "{F85527A2-4489-4C7C-9E09-35BD033F4420}"
  2271. }
  2272. }
  2273. }
  2274. }
  2275. },
  2276. {
  2277. "Id": {
  2278. "id": 120584541537447
  2279. },
  2280. "Name": "srcEndpoint=(Add Success: Out), destEndpoint=(Mark Complete: In)",
  2281. "Components": {
  2282. "Component_[4640927830009990215]": {
  2283. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2284. "Id": 4640927830009990215,
  2285. "sourceEndpoint": {
  2286. "nodeId": {
  2287. "id": 120533001929895
  2288. },
  2289. "slotId": {
  2290. "m_id": "{B500AFBA-9BDC-4484-8C11-D0B484D82149}"
  2291. }
  2292. },
  2293. "targetEndpoint": {
  2294. "nodeId": {
  2295. "id": 120515822060711
  2296. },
  2297. "slotId": {
  2298. "m_id": "{5545D1AE-860C-4A6F-B443-F63540F4A919}"
  2299. }
  2300. }
  2301. }
  2302. }
  2303. },
  2304. {
  2305. "Id": {
  2306. "id": 120588836504743
  2307. },
  2308. "Name": "srcEndpoint=(Build String: Out), destEndpoint=(Add Success: In)",
  2309. "Components": {
  2310. "Component_[17744992352179430132]": {
  2311. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2312. "Id": 17744992352179430132,
  2313. "sourceEndpoint": {
  2314. "nodeId": {
  2315. "id": 120494347224231
  2316. },
  2317. "slotId": {
  2318. "m_id": "{818605E0-6F0F-441E-8D44-DDD3F9045765}"
  2319. }
  2320. },
  2321. "targetEndpoint": {
  2322. "nodeId": {
  2323. "id": 120533001929895
  2324. },
  2325. "slotId": {
  2326. "m_id": "{B2F453BF-1C77-4E2D-98C5-D59A4EBA5DD3}"
  2327. }
  2328. }
  2329. }
  2330. }
  2331. },
  2332. {
  2333. "Id": {
  2334. "id": 120593131472039
  2335. },
  2336. "Name": "srcEndpoint=(Build String: String), destEndpoint=(Add Success: Report)",
  2337. "Components": {
  2338. "Component_[1015295950314524749]": {
  2339. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2340. "Id": 1015295950314524749,
  2341. "sourceEndpoint": {
  2342. "nodeId": {
  2343. "id": 120524411995303
  2344. },
  2345. "slotId": {
  2346. "m_id": "{B4D78DEF-F26E-4AE3-B87A-00BA9BF60330}"
  2347. }
  2348. },
  2349. "targetEndpoint": {
  2350. "nodeId": {
  2351. "id": 120511527093415
  2352. },
  2353. "slotId": {
  2354. "m_id": "{EEC563D7-BFF9-4C1C-9670-44CA3C0D0D0A}"
  2355. }
  2356. }
  2357. }
  2358. }
  2359. },
  2360. {
  2361. "Id": {
  2362. "id": 120597426439335
  2363. },
  2364. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Repeater: Start)",
  2365. "Components": {
  2366. "Component_[13369018079952427653]": {
  2367. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2368. "Id": 13369018079952427653,
  2369. "sourceEndpoint": {
  2370. "nodeId": {
  2371. "id": 120502937158823
  2372. },
  2373. "slotId": {
  2374. "m_id": "{8D920E89-5A48-41B8-8D0E-B5DD3D787E75}"
  2375. }
  2376. },
  2377. "targetEndpoint": {
  2378. "nodeId": {
  2379. "id": 120537296897191
  2380. },
  2381. "slotId": {
  2382. "m_id": "{2DC15911-FC9B-4593-8F7B-831C7F409089}"
  2383. }
  2384. }
  2385. }
  2386. }
  2387. },
  2388. {
  2389. "Id": {
  2390. "id": 120601721406631
  2391. },
  2392. "Name": "srcEndpoint=(Build String: Out), destEndpoint=(Add Success: In)",
  2393. "Components": {
  2394. "Component_[13447976228958349564]": {
  2395. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2396. "Id": 13447976228958349564,
  2397. "sourceEndpoint": {
  2398. "nodeId": {
  2399. "id": 120524411995303
  2400. },
  2401. "slotId": {
  2402. "m_id": "{4F5A4BEF-B5CD-4880-A5DD-E8B6E70F20C0}"
  2403. }
  2404. },
  2405. "targetEndpoint": {
  2406. "nodeId": {
  2407. "id": 120511527093415
  2408. },
  2409. "slotId": {
  2410. "m_id": "{6ED83758-84C0-4ECF-B7E7-811521503463}"
  2411. }
  2412. }
  2413. }
  2414. }
  2415. },
  2416. {
  2417. "Id": {
  2418. "id": 120606016373927
  2419. },
  2420. "Name": "srcEndpoint=(Random Signal: Out 1), destEndpoint=(Add Failure: In)",
  2421. "Components": {
  2422. "Component_[7950726764932198538]": {
  2423. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2424. "Id": 7950726764932198538,
  2425. "sourceEndpoint": {
  2426. "nodeId": {
  2427. "id": 120498642191527
  2428. },
  2429. "slotId": {
  2430. "m_id": "{688C7D88-48C7-4928-86D1-5063020914B6}"
  2431. }
  2432. },
  2433. "targetEndpoint": {
  2434. "nodeId": {
  2435. "id": 120490052256935
  2436. },
  2437. "slotId": {
  2438. "m_id": "{07FFE9A1-0811-4C41-A686-3983D54576FC}"
  2439. }
  2440. }
  2441. }
  2442. }
  2443. },
  2444. {
  2445. "Id": {
  2446. "id": 120610311341223
  2447. },
  2448. "Name": "srcEndpoint=(Random Signal: Out 5), destEndpoint=(Add Failure: In)",
  2449. "Components": {
  2450. "Component_[16938458057631833433]": {
  2451. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2452. "Id": 16938458057631833433,
  2453. "sourceEndpoint": {
  2454. "nodeId": {
  2455. "id": 120498642191527
  2456. },
  2457. "slotId": {
  2458. "m_id": "{CBDEBCEE-2C18-4576-AD5E-ED9BE24CD1BF}"
  2459. }
  2460. },
  2461. "targetEndpoint": {
  2462. "nodeId": {
  2463. "id": 120490052256935
  2464. },
  2465. "slotId": {
  2466. "m_id": "{07FFE9A1-0811-4C41-A686-3983D54576FC}"
  2467. }
  2468. }
  2469. }
  2470. }
  2471. },
  2472. {
  2473. "Id": {
  2474. "id": 120614606308519
  2475. },
  2476. "Name": "srcEndpoint=(Random Signal: Out 3), destEndpoint=(Add Failure: In)",
  2477. "Components": {
  2478. "Component_[15969697275781269328]": {
  2479. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2480. "Id": 15969697275781269328,
  2481. "sourceEndpoint": {
  2482. "nodeId": {
  2483. "id": 120498642191527
  2484. },
  2485. "slotId": {
  2486. "m_id": "{483219CF-387C-473C-A283-28C459B79D73}"
  2487. }
  2488. },
  2489. "targetEndpoint": {
  2490. "nodeId": {
  2491. "id": 120490052256935
  2492. },
  2493. "slotId": {
  2494. "m_id": "{07FFE9A1-0811-4C41-A686-3983D54576FC}"
  2495. }
  2496. }
  2497. }
  2498. }
  2499. },
  2500. {
  2501. "Id": {
  2502. "id": 120618901275815
  2503. },
  2504. "Name": "srcEndpoint=(Add Success: Out), destEndpoint=(Build String: In)",
  2505. "Components": {
  2506. "Component_[10194214060548021339]": {
  2507. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2508. "Id": 10194214060548021339,
  2509. "sourceEndpoint": {
  2510. "nodeId": {
  2511. "id": 120511527093415
  2512. },
  2513. "slotId": {
  2514. "m_id": "{2E2E80F5-CA79-4D16-BF49-37301E757775}"
  2515. }
  2516. },
  2517. "targetEndpoint": {
  2518. "nodeId": {
  2519. "id": 120494347224231
  2520. },
  2521. "slotId": {
  2522. "m_id": "{851A9E78-EC37-4D7D-AC83-04282A9D60E1}"
  2523. }
  2524. }
  2525. }
  2526. }
  2527. }
  2528. ]
  2529. },
  2530. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2531. "versionData": {
  2532. "_grammarVersion": 1,
  2533. "_runtimeVersion": 1,
  2534. "_fileVersion": 1
  2535. },
  2536. "m_variableCounter": 5,
  2537. "GraphCanvasData": [
  2538. {
  2539. "Key": {
  2540. "id": 120485757289639
  2541. },
  2542. "Value": {
  2543. "ComponentData": {
  2544. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2545. "$type": "SceneComponentSaveData",
  2546. "ViewParams": {
  2547. "Scale": 1.1084944,
  2548. "AnchorX": 121.78681182861328,
  2549. "AnchorY": 28.867984771728516
  2550. }
  2551. }
  2552. }
  2553. }
  2554. },
  2555. {
  2556. "Key": {
  2557. "id": 120490052256935
  2558. },
  2559. "Value": {
  2560. "ComponentData": {
  2561. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2562. "$type": "NodeSaveData"
  2563. },
  2564. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2565. "$type": "GeneralNodeTitleComponentSaveData",
  2566. "PaletteOverride": "TestingNodeTitlePalette"
  2567. },
  2568. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2569. "$type": "GeometrySaveData",
  2570. "Position": [
  2571. 1180.0,
  2572. 0.0
  2573. ]
  2574. },
  2575. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2576. "$type": "StylingComponentSaveData",
  2577. "SubStyle": ".method"
  2578. },
  2579. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2580. "$type": "PersistentIdComponentSaveData",
  2581. "PersistentId": "{E4091D00-42F1-4C3F-B667-2AA13C7881CD}"
  2582. }
  2583. }
  2584. }
  2585. },
  2586. {
  2587. "Key": {
  2588. "id": 120494347224231
  2589. },
  2590. "Value": {
  2591. "ComponentData": {
  2592. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2593. "$type": "NodeSaveData"
  2594. },
  2595. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2596. "$type": "GeneralNodeTitleComponentSaveData",
  2597. "PaletteOverride": "StringNodeTitlePalette"
  2598. },
  2599. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2600. "$type": "GeometrySaveData",
  2601. "Position": [
  2602. 860.0,
  2603. -460.0
  2604. ]
  2605. },
  2606. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2607. "$type": "StylingComponentSaveData"
  2608. },
  2609. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2610. "$type": "PersistentIdComponentSaveData",
  2611. "PersistentId": "{8B9698E5-C58D-49C2-BC9F-F4F978DA9597}"
  2612. }
  2613. }
  2614. }
  2615. },
  2616. {
  2617. "Key": {
  2618. "id": 120498642191527
  2619. },
  2620. "Value": {
  2621. "ComponentData": {
  2622. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2623. "$type": "NodeSaveData"
  2624. },
  2625. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2626. "$type": "GeneralNodeTitleComponentSaveData",
  2627. "PaletteOverride": "LogicNodeTitlePalette"
  2628. },
  2629. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2630. "$type": "GeometrySaveData",
  2631. "Position": [
  2632. 760.0,
  2633. 140.0
  2634. ]
  2635. },
  2636. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2637. "$type": "StylingComponentSaveData",
  2638. "SubStyle": ".logic"
  2639. },
  2640. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2641. "$type": "PersistentIdComponentSaveData",
  2642. "PersistentId": "{5BC752EE-0DCE-409C-A6B6-E0F21645FE25}"
  2643. }
  2644. }
  2645. }
  2646. },
  2647. {
  2648. "Key": {
  2649. "id": 120502937158823
  2650. },
  2651. "Value": {
  2652. "ComponentData": {
  2653. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2654. "$type": "NodeSaveData"
  2655. },
  2656. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2657. "$type": "GeneralNodeTitleComponentSaveData",
  2658. "PaletteOverride": "TimeNodeTitlePalette"
  2659. },
  2660. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2661. "$type": "GeometrySaveData",
  2662. "Position": [
  2663. -440.0,
  2664. 140.0
  2665. ]
  2666. },
  2667. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2668. "$type": "StylingComponentSaveData",
  2669. "SubStyle": ".time"
  2670. },
  2671. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2672. "$type": "PersistentIdComponentSaveData",
  2673. "PersistentId": "{90507920-C45C-428B-951F-4A55748D020D}"
  2674. }
  2675. }
  2676. }
  2677. },
  2678. {
  2679. "Key": {
  2680. "id": 120507232126119
  2681. },
  2682. "Value": {
  2683. "ComponentData": {
  2684. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2685. "$type": "NodeSaveData"
  2686. },
  2687. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2688. "$type": "GeneralNodeTitleComponentSaveData",
  2689. "PaletteOverride": "GetVariableNodeTitlePalette"
  2690. },
  2691. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2692. "$type": "GeometrySaveData",
  2693. "Position": [
  2694. 240.0,
  2695. 140.0
  2696. ]
  2697. },
  2698. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2699. "$type": "StylingComponentSaveData",
  2700. "SubStyle": ".getVariable"
  2701. },
  2702. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2703. "$type": "PersistentIdComponentSaveData",
  2704. "PersistentId": "{6F0A9B4E-68F0-45BD-897F-0F0A557E4058}"
  2705. }
  2706. }
  2707. }
  2708. },
  2709. {
  2710. "Key": {
  2711. "id": 120511527093415
  2712. },
  2713. "Value": {
  2714. "ComponentData": {
  2715. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2716. "$type": "NodeSaveData"
  2717. },
  2718. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2719. "$type": "GeneralNodeTitleComponentSaveData",
  2720. "PaletteOverride": "TestingNodeTitlePalette"
  2721. },
  2722. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2723. "$type": "GeometrySaveData",
  2724. "Position": [
  2725. 480.0,
  2726. -440.0
  2727. ]
  2728. },
  2729. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2730. "$type": "StylingComponentSaveData"
  2731. },
  2732. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2733. "$type": "PersistentIdComponentSaveData",
  2734. "PersistentId": "{B1943309-8128-46DF-A43D-C8E3D65F53E3}"
  2735. }
  2736. }
  2737. }
  2738. },
  2739. {
  2740. "Key": {
  2741. "id": 120515822060711
  2742. },
  2743. "Value": {
  2744. "ComponentData": {
  2745. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2746. "$type": "NodeSaveData"
  2747. },
  2748. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2749. "$type": "GeneralNodeTitleComponentSaveData",
  2750. "PaletteOverride": "TestingNodeTitlePalette"
  2751. },
  2752. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2753. "$type": "GeometrySaveData",
  2754. "Position": [
  2755. 1600.0,
  2756. -440.0
  2757. ]
  2758. },
  2759. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2760. "$type": "StylingComponentSaveData",
  2761. "SubStyle": ".method"
  2762. },
  2763. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2764. "$type": "PersistentIdComponentSaveData",
  2765. "PersistentId": "{95E8652A-DF60-40D2-AE07-CC3724099673}"
  2766. }
  2767. }
  2768. }
  2769. },
  2770. {
  2771. "Key": {
  2772. "id": 120520117028007
  2773. },
  2774. "Value": {
  2775. "ComponentData": {
  2776. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2777. "$type": "NodeSaveData"
  2778. },
  2779. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2780. "$type": "GeneralNodeTitleComponentSaveData",
  2781. "PaletteOverride": "MathNodeTitlePalette"
  2782. },
  2783. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2784. "$type": "GeometrySaveData",
  2785. "Position": [
  2786. 1180.0,
  2787. 500.0
  2788. ]
  2789. },
  2790. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2791. "$type": "StylingComponentSaveData"
  2792. },
  2793. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2794. "$type": "PersistentIdComponentSaveData",
  2795. "PersistentId": "{9266E270-DCE0-41F1-9DC1-2834FA09082D}"
  2796. }
  2797. }
  2798. }
  2799. },
  2800. {
  2801. "Key": {
  2802. "id": 120524411995303
  2803. },
  2804. "Value": {
  2805. "ComponentData": {
  2806. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2807. "$type": "NodeSaveData"
  2808. },
  2809. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2810. "$type": "GeneralNodeTitleComponentSaveData",
  2811. "PaletteOverride": "StringNodeTitlePalette"
  2812. },
  2813. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2814. "$type": "GeometrySaveData",
  2815. "Position": [
  2816. 40.0,
  2817. -460.0
  2818. ]
  2819. },
  2820. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2821. "$type": "StylingComponentSaveData"
  2822. },
  2823. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2824. "$type": "PersistentIdComponentSaveData",
  2825. "PersistentId": "{91FEBD51-E263-4E33-8A91-5E91CFE18D95}"
  2826. }
  2827. }
  2828. }
  2829. },
  2830. {
  2831. "Key": {
  2832. "id": 120528706962599
  2833. },
  2834. "Value": {
  2835. "ComponentData": {
  2836. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2837. "$type": "NodeSaveData"
  2838. },
  2839. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2840. "$type": "GeneralNodeTitleComponentSaveData",
  2841. "PaletteOverride": "MathNodeTitlePalette"
  2842. },
  2843. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2844. "$type": "GeometrySaveData",
  2845. "Position": [
  2846. 1180.0,
  2847. 220.0
  2848. ]
  2849. },
  2850. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2851. "$type": "StylingComponentSaveData"
  2852. },
  2853. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2854. "$type": "PersistentIdComponentSaveData",
  2855. "PersistentId": "{C050884E-6F85-45D6-A727-12B33FD7E4DE}"
  2856. }
  2857. }
  2858. }
  2859. },
  2860. {
  2861. "Key": {
  2862. "id": 120533001929895
  2863. },
  2864. "Value": {
  2865. "ComponentData": {
  2866. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2867. "$type": "NodeSaveData"
  2868. },
  2869. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2870. "$type": "GeneralNodeTitleComponentSaveData",
  2871. "PaletteOverride": "TestingNodeTitlePalette"
  2872. },
  2873. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2874. "$type": "GeometrySaveData",
  2875. "Position": [
  2876. 1300.0,
  2877. -440.0
  2878. ]
  2879. },
  2880. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2881. "$type": "StylingComponentSaveData"
  2882. },
  2883. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2884. "$type": "PersistentIdComponentSaveData",
  2885. "PersistentId": "{6B3C5047-67E6-4290-8723-0C8AFC6EBE53}"
  2886. }
  2887. }
  2888. }
  2889. },
  2890. {
  2891. "Key": {
  2892. "id": 120537296897191
  2893. },
  2894. "Value": {
  2895. "ComponentData": {
  2896. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2897. "$type": "NodeSaveData"
  2898. },
  2899. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2900. "$type": "GeneralNodeTitleComponentSaveData",
  2901. "PaletteOverride": "DefaultNodeTitlePalette"
  2902. },
  2903. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2904. "$type": "GeometrySaveData",
  2905. "Position": [
  2906. -260.0,
  2907. 100.0
  2908. ]
  2909. },
  2910. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2911. "$type": "StylingComponentSaveData"
  2912. },
  2913. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2914. "$type": "PersistentIdComponentSaveData",
  2915. "PersistentId": "{705A1A89-E9AF-4ACA-B9BE-6A8927E6887B}"
  2916. }
  2917. }
  2918. }
  2919. },
  2920. {
  2921. "Key": {
  2922. "id": 120541591864487
  2923. },
  2924. "Value": {
  2925. "ComponentData": {
  2926. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2927. "$type": "NodeSaveData"
  2928. },
  2929. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2930. "$type": "GeneralNodeTitleComponentSaveData",
  2931. "PaletteOverride": "GetVariableNodeTitlePalette"
  2932. },
  2933. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2934. "$type": "GeometrySaveData",
  2935. "Position": [
  2936. 400.0,
  2937. 60.0
  2938. ]
  2939. },
  2940. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2941. "$type": "StylingComponentSaveData",
  2942. "SubStyle": ".getVariable"
  2943. },
  2944. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2945. "$type": "PersistentIdComponentSaveData",
  2946. "PersistentId": "{B4B0A33E-1843-4203-A14C-8821509817AD}"
  2947. }
  2948. }
  2949. }
  2950. }
  2951. ],
  2952. "StatisticsHelper": {
  2953. "InstanceCounter": [
  2954. {
  2955. "Key": 1244476766431948410,
  2956. "Value": 2
  2957. },
  2958. {
  2959. "Key": 4199610336680704683,
  2960. "Value": 1
  2961. },
  2962. {
  2963. "Key": 4846425829683551338,
  2964. "Value": 2
  2965. },
  2966. {
  2967. "Key": 5784507996242717592,
  2968. "Value": 1
  2969. },
  2970. {
  2971. "Key": 6051304699885302849,
  2972. "Value": 1
  2973. },
  2974. {
  2975. "Key": 7864440565579420183,
  2976. "Value": 1
  2977. },
  2978. {
  2979. "Key": 10204019744198319120,
  2980. "Value": 1
  2981. },
  2982. {
  2983. "Key": 11983076003173356132,
  2984. "Value": 1
  2985. },
  2986. {
  2987. "Key": 13196867782006297833,
  2988. "Value": 1
  2989. },
  2990. {
  2991. "Key": 13270953412151678216,
  2992. "Value": 2
  2993. }
  2994. ]
  2995. }
  2996. }
  2997. }
  2998. }
  2999. }
  3000. }