Test_Reference_SimpleReference_Get.scriptcanvas 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 729550774568103
  9. },
  10. "Name": "scriptcanvas/tests/variablereferences/test_reference_simplereference_get.scriptcanvas",
  11. "Components": {
  12. "Component_[10879684476097147935]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 10879684476097147935,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{8510A95C-AE60-41CD-986B-A7773098E233}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 3
  26. },
  27. "isNullPointer": false,
  28. "$type": "double",
  29. "value": 2.0,
  30. "label": "Number"
  31. },
  32. "VariableId": {
  33. "m_id": "{8510A95C-AE60-41CD-986B-A7773098E233}"
  34. },
  35. "VariableName": "Candidate"
  36. }
  37. },
  38. {
  39. "Key": {
  40. "m_id": "{EB109F98-738C-4B20-97C0-3A78936D1744}"
  41. },
  42. "Value": {
  43. "Datum": {
  44. "isOverloadedStorage": false,
  45. "scriptCanvasType": {
  46. "m_type": 3
  47. },
  48. "isNullPointer": false,
  49. "$type": "double",
  50. "value": 2.0,
  51. "label": "Number"
  52. },
  53. "VariableId": {
  54. "m_id": "{EB109F98-738C-4B20-97C0-3A78936D1744}"
  55. },
  56. "VariableName": "Reference"
  57. }
  58. }
  59. ]
  60. }
  61. },
  62. "Component_[6305481533370958641]": {
  63. "$type": "EditorGraph",
  64. "Id": 6305481533370958641,
  65. "m_graphData": {
  66. "m_nodes": [
  67. {
  68. "Id": {
  69. "id": 729606609142951
  70. },
  71. "Name": "SC-Node(ExpectEqual)",
  72. "Components": {
  73. "Component_[1114946092989722283]": {
  74. "$type": "MethodOverloaded",
  75. "Id": 1114946092989722283,
  76. "Slots": [
  77. {
  78. "isVisibile": false,
  79. "id": {
  80. "m_id": "{F6712E89-2F37-4BD6-92EC-E278EB3B3E18}"
  81. },
  82. "contracts": [
  83. {
  84. "$type": "SlotTypeContract"
  85. },
  86. null
  87. ],
  88. "slotName": "EntityID: 0",
  89. "Descriptor": {
  90. "ConnectionType": 1,
  91. "SlotType": 2
  92. },
  93. "DataType": 1
  94. },
  95. {
  96. "id": {
  97. "m_id": "{773AF7B8-27D7-4835-A2FD-2A41D3F0B676}"
  98. },
  99. "DynamicTypeOverride": 1,
  100. "contracts": [
  101. {
  102. "$type": "SlotTypeContract"
  103. },
  104. null,
  105. {
  106. "$type": "OverloadContract"
  107. }
  108. ],
  109. "slotName": "Candidate",
  110. "toolTip": "left of ==",
  111. "DisplayDataType": {
  112. "m_type": 3
  113. },
  114. "Descriptor": {
  115. "ConnectionType": 1,
  116. "SlotType": 2
  117. },
  118. "DataType": 1,
  119. "IsReference": true,
  120. "VariableReference": {
  121. "m_id": "{8510A95C-AE60-41CD-986B-A7773098E233}"
  122. }
  123. },
  124. {
  125. "id": {
  126. "m_id": "{0269B134-D0D2-43F9-A244-959B313CAD22}"
  127. },
  128. "DynamicTypeOverride": 1,
  129. "contracts": [
  130. {
  131. "$type": "SlotTypeContract"
  132. },
  133. null,
  134. {
  135. "$type": "OverloadContract"
  136. }
  137. ],
  138. "slotName": "Reference",
  139. "toolTip": "right of ==",
  140. "DisplayDataType": {
  141. "m_type": 3
  142. },
  143. "Descriptor": {
  144. "ConnectionType": 1,
  145. "SlotType": 2
  146. },
  147. "DataType": 1
  148. },
  149. {
  150. "id": {
  151. "m_id": "{72819D77-093A-4AF2-9441-243B1749562A}"
  152. },
  153. "contracts": [
  154. {
  155. "$type": "SlotTypeContract"
  156. },
  157. null
  158. ],
  159. "slotName": "Report",
  160. "toolTip": "additional notes for the test report",
  161. "DisplayDataType": {
  162. "m_type": 5
  163. },
  164. "Descriptor": {
  165. "ConnectionType": 1,
  166. "SlotType": 2
  167. },
  168. "DataType": 1
  169. },
  170. {
  171. "id": {
  172. "m_id": "{FD1996E6-E301-4A20-981D-A606E24377D0}"
  173. },
  174. "contracts": [
  175. {
  176. "$type": "SlotTypeContract"
  177. }
  178. ],
  179. "slotName": "In",
  180. "Descriptor": {
  181. "ConnectionType": 1,
  182. "SlotType": 1
  183. }
  184. },
  185. {
  186. "id": {
  187. "m_id": "{82402EB3-F6B8-4E10-B770-D4BBD106E6DD}"
  188. },
  189. "contracts": [
  190. {
  191. "$type": "SlotTypeContract"
  192. }
  193. ],
  194. "slotName": "Out",
  195. "Descriptor": {
  196. "ConnectionType": 2,
  197. "SlotType": 1
  198. }
  199. }
  200. ],
  201. "Datums": [
  202. {
  203. "isOverloadedStorage": false,
  204. "scriptCanvasType": {
  205. "m_type": 1
  206. },
  207. "isNullPointer": false,
  208. "$type": "EntityId",
  209. "value": {
  210. "id": 4276206253
  211. }
  212. },
  213. {
  214. "isOverloadedStorage": false,
  215. "scriptCanvasType": {
  216. "m_type": 3
  217. },
  218. "isNullPointer": false,
  219. "$type": "double",
  220. "value": 0.0,
  221. "label": "Candidate"
  222. },
  223. {
  224. "isOverloadedStorage": false,
  225. "scriptCanvasType": {
  226. "m_type": 3
  227. },
  228. "isNullPointer": false,
  229. "$type": "double",
  230. "value": 2.0,
  231. "label": "Reference"
  232. },
  233. {
  234. "isOverloadedStorage": false,
  235. "scriptCanvasType": {
  236. "m_type": 5
  237. },
  238. "isNullPointer": false,
  239. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  240. "value": "",
  241. "label": "Report"
  242. }
  243. ],
  244. "methodType": 2,
  245. "methodName": "Expect Equal",
  246. "className": "Unit Testing",
  247. "prettyClassName": "Unit Testing",
  248. "orderedInputSlotIds": [
  249. {
  250. "m_id": "{F6712E89-2F37-4BD6-92EC-E278EB3B3E18}"
  251. },
  252. {
  253. "m_id": "{773AF7B8-27D7-4835-A2FD-2A41D3F0B676}"
  254. },
  255. {
  256. "m_id": "{0269B134-D0D2-43F9-A244-959B313CAD22}"
  257. },
  258. {
  259. "m_id": "{72819D77-093A-4AF2-9441-243B1749562A}"
  260. }
  261. ],
  262. "outputSlotIds": [
  263. {}
  264. ]
  265. }
  266. }
  267. },
  268. {
  269. "Id": {
  270. "id": 729598019208359
  271. },
  272. "Name": "SC-Node(Checkpoint)",
  273. "Components": {
  274. "Component_[11665050757890146841]": {
  275. "$type": "MethodOverloaded",
  276. "Id": 11665050757890146841,
  277. "Slots": [
  278. {
  279. "isVisibile": false,
  280. "id": {
  281. "m_id": "{7FA2EBA0-D1F3-4B00-A9C8-A3F6E17CCC01}"
  282. },
  283. "contracts": [
  284. {
  285. "$type": "SlotTypeContract"
  286. },
  287. null
  288. ],
  289. "slotName": "EntityID: 0",
  290. "Descriptor": {
  291. "ConnectionType": 1,
  292. "SlotType": 2
  293. },
  294. "DataType": 1
  295. },
  296. {
  297. "id": {
  298. "m_id": "{C7408B9A-FB85-4776-900A-37DC92354484}"
  299. },
  300. "contracts": [
  301. {
  302. "$type": "SlotTypeContract"
  303. },
  304. null
  305. ],
  306. "slotName": "Report",
  307. "toolTip": "additional notes for the test report",
  308. "DisplayDataType": {
  309. "m_type": 5
  310. },
  311. "Descriptor": {
  312. "ConnectionType": 1,
  313. "SlotType": 2
  314. },
  315. "DataType": 1
  316. },
  317. {
  318. "id": {
  319. "m_id": "{1C993620-778D-4B7C-8DEF-36FB5D4AE6D5}"
  320. },
  321. "contracts": [
  322. {
  323. "$type": "SlotTypeContract"
  324. }
  325. ],
  326. "slotName": "In",
  327. "Descriptor": {
  328. "ConnectionType": 1,
  329. "SlotType": 1
  330. }
  331. },
  332. {
  333. "id": {
  334. "m_id": "{90C8036E-1603-4DF7-8A6B-87C87DBE08EC}"
  335. },
  336. "contracts": [
  337. {
  338. "$type": "SlotTypeContract"
  339. }
  340. ],
  341. "slotName": "Out",
  342. "Descriptor": {
  343. "ConnectionType": 2,
  344. "SlotType": 1
  345. }
  346. }
  347. ],
  348. "Datums": [
  349. {
  350. "isOverloadedStorage": false,
  351. "scriptCanvasType": {
  352. "m_type": 1
  353. },
  354. "isNullPointer": false,
  355. "$type": "EntityId",
  356. "value": {
  357. "id": 4276206253
  358. }
  359. },
  360. {
  361. "isOverloadedStorage": false,
  362. "scriptCanvasType": {
  363. "m_type": 5
  364. },
  365. "isNullPointer": false,
  366. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  367. "value": "Value vs Reference 2",
  368. "label": "Report"
  369. }
  370. ],
  371. "methodType": 2,
  372. "methodName": "Checkpoint",
  373. "className": "Unit Testing",
  374. "prettyClassName": "Unit Testing",
  375. "orderedInputSlotIds": [
  376. {
  377. "m_id": "{7FA2EBA0-D1F3-4B00-A9C8-A3F6E17CCC01}"
  378. },
  379. {
  380. "m_id": "{C7408B9A-FB85-4776-900A-37DC92354484}"
  381. }
  382. ],
  383. "outputSlotIds": [
  384. {}
  385. ]
  386. }
  387. }
  388. },
  389. {
  390. "Id": {
  391. "id": 729585134306471
  392. },
  393. "Name": "SC Node(GetVariable)",
  394. "Components": {
  395. "Component_[13223355677571615290]": {
  396. "$type": "GetVariableNode",
  397. "Id": 13223355677571615290,
  398. "Slots": [
  399. {
  400. "id": {
  401. "m_id": "{FFC708A5-BF75-4E5F-B1FC-B4F2B37877DE}"
  402. },
  403. "contracts": [
  404. {
  405. "$type": "SlotTypeContract"
  406. }
  407. ],
  408. "slotName": "In",
  409. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  410. "Descriptor": {
  411. "ConnectionType": 1,
  412. "SlotType": 1
  413. }
  414. },
  415. {
  416. "id": {
  417. "m_id": "{DF4E3C9C-AF76-415B-B955-4601E683CB06}"
  418. },
  419. "contracts": [
  420. {
  421. "$type": "SlotTypeContract"
  422. }
  423. ],
  424. "slotName": "Out",
  425. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  426. "Descriptor": {
  427. "ConnectionType": 2,
  428. "SlotType": 1
  429. }
  430. },
  431. {
  432. "id": {
  433. "m_id": "{BCA92D5B-39EB-4181-A91F-A238B1C66E88}"
  434. },
  435. "contracts": [
  436. {
  437. "$type": "SlotTypeContract"
  438. }
  439. ],
  440. "slotName": "Number",
  441. "DisplayDataType": {
  442. "m_type": 3
  443. },
  444. "Descriptor": {
  445. "ConnectionType": 2,
  446. "SlotType": 2
  447. },
  448. "DataType": 1
  449. }
  450. ],
  451. "m_variableId": {
  452. "m_id": "{EB109F98-738C-4B20-97C0-3A78936D1744}"
  453. },
  454. "m_variableDataOutSlotId": {
  455. "m_id": "{BCA92D5B-39EB-4181-A91F-A238B1C66E88}"
  456. }
  457. }
  458. }
  459. },
  460. {
  461. "Id": {
  462. "id": 729576544371879
  463. },
  464. "Name": "SC-Node(OrderedSequencer)",
  465. "Components": {
  466. "Component_[13234625946556595138]": {
  467. "$type": "OrderedSequencer",
  468. "Id": 13234625946556595138,
  469. "Slots": [
  470. {
  471. "id": {
  472. "m_id": "{E51532B1-9E76-4E7E-9A05-F30D65C9F261}"
  473. },
  474. "contracts": [
  475. {
  476. "$type": "SlotTypeContract"
  477. }
  478. ],
  479. "slotName": "In",
  480. "Descriptor": {
  481. "ConnectionType": 1,
  482. "SlotType": 1
  483. }
  484. },
  485. {
  486. "id": {
  487. "m_id": "{B0DFD567-16B6-4E10-8BC0-803AD6742DCB}"
  488. },
  489. "contracts": [
  490. {
  491. "$type": "SlotTypeContract"
  492. }
  493. ],
  494. "slotName": "Out 0",
  495. "toolTip": "Output 0",
  496. "DisplayGroup": {
  497. "Value": 1020632324
  498. },
  499. "Descriptor": {
  500. "ConnectionType": 2,
  501. "SlotType": 1
  502. }
  503. },
  504. {
  505. "id": {
  506. "m_id": "{5BD5D42B-AF62-4681-9D36-8160D9866EA4}"
  507. },
  508. "contracts": [
  509. {
  510. "$type": "SlotTypeContract"
  511. }
  512. ],
  513. "slotName": "Out 1",
  514. "DisplayGroup": {
  515. "Value": 1020632324
  516. },
  517. "Descriptor": {
  518. "ConnectionType": 2,
  519. "SlotType": 1
  520. }
  521. },
  522. {
  523. "id": {
  524. "m_id": "{FF0427E4-B093-43EB-A2E6-33E2F1A9EDD7}"
  525. },
  526. "contracts": [
  527. {
  528. "$type": "SlotTypeContract"
  529. }
  530. ],
  531. "slotName": "Out 2",
  532. "DisplayGroup": {
  533. "Value": 1020632324
  534. },
  535. "Descriptor": {
  536. "ConnectionType": 2,
  537. "SlotType": 1
  538. }
  539. },
  540. {
  541. "id": {
  542. "m_id": "{7DFA4099-7D16-43B9-8B79-00C569798635}"
  543. },
  544. "contracts": [
  545. {
  546. "$type": "SlotTypeContract"
  547. }
  548. ],
  549. "slotName": "Out 3",
  550. "DisplayGroup": {
  551. "Value": 1020632324
  552. },
  553. "Descriptor": {
  554. "ConnectionType": 2,
  555. "SlotType": 1
  556. }
  557. },
  558. {
  559. "id": {
  560. "m_id": "{22AFF127-3D95-40F3-904B-94D3AB6A9E30}"
  561. },
  562. "contracts": [
  563. {
  564. "$type": "SlotTypeContract"
  565. }
  566. ],
  567. "slotName": "Out 4",
  568. "DisplayGroup": {
  569. "Value": 1020632324
  570. },
  571. "Descriptor": {
  572. "ConnectionType": 2,
  573. "SlotType": 1
  574. }
  575. },
  576. {
  577. "id": {
  578. "m_id": "{521F3362-3B5F-4F7F-B3C8-A221FDD10D03}"
  579. },
  580. "contracts": [
  581. {
  582. "$type": "SlotTypeContract"
  583. }
  584. ],
  585. "slotName": "Out 5",
  586. "DisplayGroup": {
  587. "Value": 1020632324
  588. },
  589. "Descriptor": {
  590. "ConnectionType": 2,
  591. "SlotType": 1
  592. }
  593. }
  594. ]
  595. }
  596. }
  597. },
  598. {
  599. "Id": {
  600. "id": 729589429273767
  601. },
  602. "Name": "SC-Node(ExpectEqual)",
  603. "Components": {
  604. "Component_[13556542677641064248]": {
  605. "$type": "MethodOverloaded",
  606. "Id": 13556542677641064248,
  607. "Slots": [
  608. {
  609. "isVisibile": false,
  610. "id": {
  611. "m_id": "{20A604FB-D5E9-4A14-9520-23587E50152E}"
  612. },
  613. "contracts": [
  614. {
  615. "$type": "SlotTypeContract"
  616. },
  617. null
  618. ],
  619. "slotName": "EntityID: 0",
  620. "Descriptor": {
  621. "ConnectionType": 1,
  622. "SlotType": 2
  623. },
  624. "DataType": 1
  625. },
  626. {
  627. "id": {
  628. "m_id": "{114FE25D-2778-4783-8843-57F4BB55D8F7}"
  629. },
  630. "DynamicTypeOverride": 1,
  631. "contracts": [
  632. {
  633. "$type": "SlotTypeContract"
  634. },
  635. null,
  636. {
  637. "$type": "OverloadContract"
  638. }
  639. ],
  640. "slotName": "Candidate",
  641. "toolTip": "left of ==",
  642. "DisplayDataType": {
  643. "m_type": 3
  644. },
  645. "Descriptor": {
  646. "ConnectionType": 1,
  647. "SlotType": 2
  648. },
  649. "DataType": 1,
  650. "IsReference": true,
  651. "VariableReference": {
  652. "m_id": "{8510A95C-AE60-41CD-986B-A7773098E233}"
  653. }
  654. },
  655. {
  656. "id": {
  657. "m_id": "{9D91A405-58D1-4470-9449-3F5939485230}"
  658. },
  659. "DynamicTypeOverride": 1,
  660. "contracts": [
  661. {
  662. "$type": "SlotTypeContract"
  663. },
  664. null,
  665. {
  666. "$type": "OverloadContract"
  667. }
  668. ],
  669. "slotName": "Reference",
  670. "toolTip": "right of ==",
  671. "DisplayDataType": {
  672. "m_type": 3
  673. },
  674. "Descriptor": {
  675. "ConnectionType": 1,
  676. "SlotType": 2
  677. },
  678. "DataType": 1,
  679. "IsReference": true,
  680. "VariableReference": {
  681. "m_id": "{EB109F98-738C-4B20-97C0-3A78936D1744}"
  682. }
  683. },
  684. {
  685. "id": {
  686. "m_id": "{ACBFBBF5-541F-46A9-A5A1-F9EB2AC0AB93}"
  687. },
  688. "contracts": [
  689. {
  690. "$type": "SlotTypeContract"
  691. },
  692. null
  693. ],
  694. "slotName": "Report",
  695. "toolTip": "additional notes for the test report",
  696. "DisplayDataType": {
  697. "m_type": 5
  698. },
  699. "Descriptor": {
  700. "ConnectionType": 1,
  701. "SlotType": 2
  702. },
  703. "DataType": 1
  704. },
  705. {
  706. "id": {
  707. "m_id": "{FCAA5C9A-0525-4C59-AEA6-93DE6E35A4C5}"
  708. },
  709. "contracts": [
  710. {
  711. "$type": "SlotTypeContract"
  712. }
  713. ],
  714. "slotName": "In",
  715. "Descriptor": {
  716. "ConnectionType": 1,
  717. "SlotType": 1
  718. }
  719. },
  720. {
  721. "id": {
  722. "m_id": "{EC937E60-4592-4731-80E8-AB16CC1A1FEF}"
  723. },
  724. "contracts": [
  725. {
  726. "$type": "SlotTypeContract"
  727. }
  728. ],
  729. "slotName": "Out",
  730. "Descriptor": {
  731. "ConnectionType": 2,
  732. "SlotType": 1
  733. }
  734. }
  735. ],
  736. "Datums": [
  737. {
  738. "isOverloadedStorage": false,
  739. "scriptCanvasType": {
  740. "m_type": 1
  741. },
  742. "isNullPointer": false,
  743. "$type": "EntityId",
  744. "value": {
  745. "id": 4276206253
  746. }
  747. },
  748. {
  749. "isOverloadedStorage": false,
  750. "scriptCanvasType": {
  751. "m_type": 3
  752. },
  753. "isNullPointer": false,
  754. "$type": "double",
  755. "value": 0.0,
  756. "label": "Candidate"
  757. },
  758. {
  759. "isOverloadedStorage": false,
  760. "scriptCanvasType": {
  761. "m_type": 3
  762. },
  763. "isNullPointer": false,
  764. "$type": "double",
  765. "value": 0.0,
  766. "label": "Reference"
  767. },
  768. {
  769. "isOverloadedStorage": false,
  770. "scriptCanvasType": {
  771. "m_type": 5
  772. },
  773. "isNullPointer": false,
  774. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  775. "value": "",
  776. "label": "Report"
  777. }
  778. ],
  779. "methodType": 2,
  780. "methodName": "Expect Equal",
  781. "className": "Unit Testing",
  782. "prettyClassName": "Unit Testing",
  783. "orderedInputSlotIds": [
  784. {
  785. "m_id": "{20A604FB-D5E9-4A14-9520-23587E50152E}"
  786. },
  787. {
  788. "m_id": "{114FE25D-2778-4783-8843-57F4BB55D8F7}"
  789. },
  790. {
  791. "m_id": "{9D91A405-58D1-4470-9449-3F5939485230}"
  792. },
  793. {
  794. "m_id": "{ACBFBBF5-541F-46A9-A5A1-F9EB2AC0AB93}"
  795. }
  796. ],
  797. "outputSlotIds": [
  798. {}
  799. ]
  800. }
  801. }
  802. },
  803. {
  804. "Id": {
  805. "id": 729567954437287
  806. },
  807. "Name": "SC-Node(MarkComplete)",
  808. "Components": {
  809. "Component_[14350473404833565997]": {
  810. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  811. "Id": 14350473404833565997,
  812. "Slots": [
  813. {
  814. "isVisibile": false,
  815. "id": {
  816. "m_id": "{776F6EA6-9A9B-4EF4-9ABD-82229B598D47}"
  817. },
  818. "contracts": [
  819. {
  820. "$type": "SlotTypeContract"
  821. },
  822. null
  823. ],
  824. "slotName": "EntityID: 0",
  825. "Descriptor": {
  826. "ConnectionType": 1,
  827. "SlotType": 2
  828. },
  829. "DataType": 1
  830. },
  831. {
  832. "id": {
  833. "m_id": "{06F8CE28-F754-4597-9DA2-0043DDF612FC}"
  834. },
  835. "contracts": [
  836. {
  837. "$type": "SlotTypeContract"
  838. },
  839. null
  840. ],
  841. "slotName": "Report",
  842. "toolTip": "additional notes for the test report",
  843. "DisplayDataType": {
  844. "m_type": 5
  845. },
  846. "Descriptor": {
  847. "ConnectionType": 1,
  848. "SlotType": 2
  849. },
  850. "DataType": 1
  851. },
  852. {
  853. "id": {
  854. "m_id": "{CAA1002A-6AE5-482F-9884-002822E913A3}"
  855. },
  856. "contracts": [
  857. {
  858. "$type": "SlotTypeContract"
  859. }
  860. ],
  861. "slotName": "In",
  862. "Descriptor": {
  863. "ConnectionType": 1,
  864. "SlotType": 1
  865. }
  866. },
  867. {
  868. "id": {
  869. "m_id": "{CCC31C5B-EEEE-4E30-AD40-9C6691964915}"
  870. },
  871. "contracts": [
  872. {
  873. "$type": "SlotTypeContract"
  874. }
  875. ],
  876. "slotName": "Out",
  877. "Descriptor": {
  878. "ConnectionType": 2,
  879. "SlotType": 1
  880. }
  881. }
  882. ],
  883. "Datums": [
  884. {
  885. "isOverloadedStorage": false,
  886. "scriptCanvasType": {
  887. "m_type": 1
  888. },
  889. "isNullPointer": false,
  890. "$type": "EntityId",
  891. "value": {
  892. "id": 4276206253
  893. }
  894. },
  895. {
  896. "isOverloadedStorage": false,
  897. "scriptCanvasType": {
  898. "m_type": 5
  899. },
  900. "isNullPointer": false,
  901. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  902. "value": "",
  903. "label": "Report"
  904. }
  905. ],
  906. "methodType": 2,
  907. "methodName": "Mark Complete",
  908. "className": "Unit Testing",
  909. "resultSlotIDs": [
  910. {}
  911. ],
  912. "prettyClassName": "Unit Testing"
  913. }
  914. }
  915. },
  916. {
  917. "Id": {
  918. "id": 729555069535399
  919. },
  920. "Name": "SC Node(GetVariable)",
  921. "Components": {
  922. "Component_[15927570805029372178]": {
  923. "$type": "GetVariableNode",
  924. "Id": 15927570805029372178,
  925. "Slots": [
  926. {
  927. "id": {
  928. "m_id": "{474B9E76-1370-4CEE-80A0-6AD5A98FDF06}"
  929. },
  930. "contracts": [
  931. {
  932. "$type": "SlotTypeContract"
  933. }
  934. ],
  935. "slotName": "In",
  936. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  937. "Descriptor": {
  938. "ConnectionType": 1,
  939. "SlotType": 1
  940. }
  941. },
  942. {
  943. "id": {
  944. "m_id": "{86FCA1B6-17F1-499A-BF7C-0B9F0678357C}"
  945. },
  946. "contracts": [
  947. {
  948. "$type": "SlotTypeContract"
  949. }
  950. ],
  951. "slotName": "Out",
  952. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  953. "Descriptor": {
  954. "ConnectionType": 2,
  955. "SlotType": 1
  956. }
  957. },
  958. {
  959. "id": {
  960. "m_id": "{888FA23D-5BBE-4B67-848C-10089B6CE727}"
  961. },
  962. "contracts": [
  963. {
  964. "$type": "SlotTypeContract"
  965. }
  966. ],
  967. "slotName": "Number",
  968. "DisplayDataType": {
  969. "m_type": 3
  970. },
  971. "Descriptor": {
  972. "ConnectionType": 2,
  973. "SlotType": 2
  974. },
  975. "DataType": 1
  976. }
  977. ],
  978. "m_variableId": {
  979. "m_id": "{8510A95C-AE60-41CD-986B-A7773098E233}"
  980. },
  981. "m_variableDataOutSlotId": {
  982. "m_id": "{888FA23D-5BBE-4B67-848C-10089B6CE727}"
  983. }
  984. }
  985. }
  986. },
  987. {
  988. "Id": {
  989. "id": 729572249404583
  990. },
  991. "Name": "SC-Node(ExpectEqual)",
  992. "Components": {
  993. "Component_[1722979066853489209]": {
  994. "$type": "MethodOverloaded",
  995. "Id": 1722979066853489209,
  996. "Slots": [
  997. {
  998. "isVisibile": false,
  999. "id": {
  1000. "m_id": "{783CCEE0-AB51-4E09-95DF-60B2B97CA6E4}"
  1001. },
  1002. "contracts": [
  1003. {
  1004. "$type": "SlotTypeContract"
  1005. },
  1006. null
  1007. ],
  1008. "slotName": "EntityID: 0",
  1009. "Descriptor": {
  1010. "ConnectionType": 1,
  1011. "SlotType": 2
  1012. },
  1013. "DataType": 1
  1014. },
  1015. {
  1016. "id": {
  1017. "m_id": "{195B5B7A-C27F-4826-9552-8B4DE17C2F11}"
  1018. },
  1019. "DynamicTypeOverride": 1,
  1020. "contracts": [
  1021. {
  1022. "$type": "SlotTypeContract"
  1023. },
  1024. null,
  1025. {
  1026. "$type": "OverloadContract"
  1027. }
  1028. ],
  1029. "slotName": "Candidate",
  1030. "toolTip": "left of ==",
  1031. "DisplayDataType": {
  1032. "m_type": 3
  1033. },
  1034. "Descriptor": {
  1035. "ConnectionType": 1,
  1036. "SlotType": 2
  1037. },
  1038. "DataType": 1,
  1039. "IsReference": true,
  1040. "VariableReference": {
  1041. "m_id": "{8510A95C-AE60-41CD-986B-A7773098E233}"
  1042. }
  1043. },
  1044. {
  1045. "id": {
  1046. "m_id": "{BFAF2E3D-B50E-4249-9CD2-3A88F401603C}"
  1047. },
  1048. "DynamicTypeOverride": 1,
  1049. "contracts": [
  1050. {
  1051. "$type": "SlotTypeContract"
  1052. },
  1053. null,
  1054. {
  1055. "$type": "OverloadContract"
  1056. }
  1057. ],
  1058. "slotName": "Reference",
  1059. "toolTip": "right of ==",
  1060. "DisplayDataType": {
  1061. "m_type": 3
  1062. },
  1063. "Descriptor": {
  1064. "ConnectionType": 1,
  1065. "SlotType": 2
  1066. },
  1067. "DataType": 1
  1068. },
  1069. {
  1070. "id": {
  1071. "m_id": "{015F24DF-C033-4885-B96D-98527804274E}"
  1072. },
  1073. "contracts": [
  1074. {
  1075. "$type": "SlotTypeContract"
  1076. },
  1077. null
  1078. ],
  1079. "slotName": "Report",
  1080. "toolTip": "additional notes for the test report",
  1081. "DisplayDataType": {
  1082. "m_type": 5
  1083. },
  1084. "Descriptor": {
  1085. "ConnectionType": 1,
  1086. "SlotType": 2
  1087. },
  1088. "DataType": 1
  1089. },
  1090. {
  1091. "id": {
  1092. "m_id": "{74171A56-4200-4DAE-AB3E-75514DBFE037}"
  1093. },
  1094. "contracts": [
  1095. {
  1096. "$type": "SlotTypeContract"
  1097. }
  1098. ],
  1099. "slotName": "In",
  1100. "Descriptor": {
  1101. "ConnectionType": 1,
  1102. "SlotType": 1
  1103. }
  1104. },
  1105. {
  1106. "id": {
  1107. "m_id": "{05FA082A-0A30-4E2B-9754-4969A4D36227}"
  1108. },
  1109. "contracts": [
  1110. {
  1111. "$type": "SlotTypeContract"
  1112. }
  1113. ],
  1114. "slotName": "Out",
  1115. "Descriptor": {
  1116. "ConnectionType": 2,
  1117. "SlotType": 1
  1118. }
  1119. }
  1120. ],
  1121. "Datums": [
  1122. {
  1123. "isOverloadedStorage": false,
  1124. "scriptCanvasType": {
  1125. "m_type": 1
  1126. },
  1127. "isNullPointer": false,
  1128. "$type": "EntityId",
  1129. "value": {
  1130. "id": 4276206253
  1131. }
  1132. },
  1133. {
  1134. "isOverloadedStorage": false,
  1135. "scriptCanvasType": {
  1136. "m_type": 3
  1137. },
  1138. "isNullPointer": false,
  1139. "$type": "double",
  1140. "value": 0.0,
  1141. "label": "Candidate"
  1142. },
  1143. {
  1144. "isOverloadedStorage": false,
  1145. "scriptCanvasType": {
  1146. "m_type": 3
  1147. },
  1148. "isNullPointer": false,
  1149. "$type": "double",
  1150. "value": 0.0,
  1151. "label": "Reference"
  1152. },
  1153. {
  1154. "isOverloadedStorage": false,
  1155. "scriptCanvasType": {
  1156. "m_type": 5
  1157. },
  1158. "isNullPointer": false,
  1159. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1160. "value": "",
  1161. "label": "Report"
  1162. }
  1163. ],
  1164. "methodType": 2,
  1165. "methodName": "Expect Equal",
  1166. "className": "Unit Testing",
  1167. "prettyClassName": "Unit Testing",
  1168. "orderedInputSlotIds": [
  1169. {
  1170. "m_id": "{783CCEE0-AB51-4E09-95DF-60B2B97CA6E4}"
  1171. },
  1172. {
  1173. "m_id": "{195B5B7A-C27F-4826-9552-8B4DE17C2F11}"
  1174. },
  1175. {
  1176. "m_id": "{BFAF2E3D-B50E-4249-9CD2-3A88F401603C}"
  1177. },
  1178. {
  1179. "m_id": "{015F24DF-C033-4885-B96D-98527804274E}"
  1180. }
  1181. ],
  1182. "outputSlotIds": [
  1183. {}
  1184. ]
  1185. }
  1186. }
  1187. },
  1188. {
  1189. "Id": {
  1190. "id": 729559364502695
  1191. },
  1192. "Name": "SC-Node(Checkpoint)",
  1193. "Components": {
  1194. "Component_[18412791384608646144]": {
  1195. "$type": "MethodOverloaded",
  1196. "Id": 18412791384608646144,
  1197. "Slots": [
  1198. {
  1199. "isVisibile": false,
  1200. "id": {
  1201. "m_id": "{D517C2D3-5FFE-452F-BB7A-0DC827C793BD}"
  1202. },
  1203. "contracts": [
  1204. {
  1205. "$type": "SlotTypeContract"
  1206. },
  1207. null
  1208. ],
  1209. "slotName": "EntityID: 0",
  1210. "Descriptor": {
  1211. "ConnectionType": 1,
  1212. "SlotType": 2
  1213. },
  1214. "DataType": 1
  1215. },
  1216. {
  1217. "id": {
  1218. "m_id": "{9C59E4B9-385A-4E64-9300-B8A05A8CCE1E}"
  1219. },
  1220. "contracts": [
  1221. {
  1222. "$type": "SlotTypeContract"
  1223. },
  1224. null
  1225. ],
  1226. "slotName": "Report",
  1227. "toolTip": "additional notes for the test report",
  1228. "DisplayDataType": {
  1229. "m_type": 5
  1230. },
  1231. "Descriptor": {
  1232. "ConnectionType": 1,
  1233. "SlotType": 2
  1234. },
  1235. "DataType": 1
  1236. },
  1237. {
  1238. "id": {
  1239. "m_id": "{461F762F-3459-4E97-94F0-33BE3E728A7F}"
  1240. },
  1241. "contracts": [
  1242. {
  1243. "$type": "SlotTypeContract"
  1244. }
  1245. ],
  1246. "slotName": "In",
  1247. "Descriptor": {
  1248. "ConnectionType": 1,
  1249. "SlotType": 1
  1250. }
  1251. },
  1252. {
  1253. "id": {
  1254. "m_id": "{5616E3B0-D8C1-47CB-BD44-929D9D88A21A}"
  1255. },
  1256. "contracts": [
  1257. {
  1258. "$type": "SlotTypeContract"
  1259. }
  1260. ],
  1261. "slotName": "Out",
  1262. "Descriptor": {
  1263. "ConnectionType": 2,
  1264. "SlotType": 1
  1265. }
  1266. }
  1267. ],
  1268. "Datums": [
  1269. {
  1270. "isOverloadedStorage": false,
  1271. "scriptCanvasType": {
  1272. "m_type": 1
  1273. },
  1274. "isNullPointer": false,
  1275. "$type": "EntityId",
  1276. "value": {
  1277. "id": 4276206253
  1278. }
  1279. },
  1280. {
  1281. "isOverloadedStorage": false,
  1282. "scriptCanvasType": {
  1283. "m_type": 5
  1284. },
  1285. "isNullPointer": false,
  1286. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1287. "value": "Value vs Reference 1",
  1288. "label": "Report"
  1289. }
  1290. ],
  1291. "methodType": 2,
  1292. "methodName": "Checkpoint",
  1293. "className": "Unit Testing",
  1294. "prettyClassName": "Unit Testing",
  1295. "orderedInputSlotIds": [
  1296. {
  1297. "m_id": "{D517C2D3-5FFE-452F-BB7A-0DC827C793BD}"
  1298. },
  1299. {
  1300. "m_id": "{9C59E4B9-385A-4E64-9300-B8A05A8CCE1E}"
  1301. }
  1302. ],
  1303. "outputSlotIds": [
  1304. {}
  1305. ]
  1306. }
  1307. }
  1308. },
  1309. {
  1310. "Id": {
  1311. "id": 729593724241063
  1312. },
  1313. "Name": "SC-Node(ExpectEqual)",
  1314. "Components": {
  1315. "Component_[2660282232535433814]": {
  1316. "$type": "MethodOverloaded",
  1317. "Id": 2660282232535433814,
  1318. "Slots": [
  1319. {
  1320. "isVisibile": false,
  1321. "id": {
  1322. "m_id": "{9ED6829B-4358-4210-A9DD-1D0C5C6A22D2}"
  1323. },
  1324. "contracts": [
  1325. {
  1326. "$type": "SlotTypeContract"
  1327. },
  1328. null
  1329. ],
  1330. "slotName": "EntityID: 0",
  1331. "Descriptor": {
  1332. "ConnectionType": 1,
  1333. "SlotType": 2
  1334. },
  1335. "DataType": 1
  1336. },
  1337. {
  1338. "id": {
  1339. "m_id": "{AE62D0DE-92B2-4699-BFB9-DC60884D8F53}"
  1340. },
  1341. "DynamicTypeOverride": 1,
  1342. "contracts": [
  1343. {
  1344. "$type": "SlotTypeContract"
  1345. },
  1346. null,
  1347. {
  1348. "$type": "OverloadContract"
  1349. }
  1350. ],
  1351. "slotName": "Candidate",
  1352. "toolTip": "left of ==",
  1353. "DisplayDataType": {
  1354. "m_type": 3
  1355. },
  1356. "Descriptor": {
  1357. "ConnectionType": 1,
  1358. "SlotType": 2
  1359. },
  1360. "DataType": 1,
  1361. "IsReference": true,
  1362. "VariableReference": {
  1363. "m_id": "{8510A95C-AE60-41CD-986B-A7773098E233}"
  1364. }
  1365. },
  1366. {
  1367. "id": {
  1368. "m_id": "{18538F9F-0E77-400C-B7C7-67B115D06491}"
  1369. },
  1370. "DynamicTypeOverride": 1,
  1371. "contracts": [
  1372. {
  1373. "$type": "SlotTypeContract"
  1374. },
  1375. null,
  1376. {
  1377. "$type": "OverloadContract"
  1378. }
  1379. ],
  1380. "slotName": "Reference",
  1381. "toolTip": "right of ==",
  1382. "DisplayDataType": {
  1383. "m_type": 3
  1384. },
  1385. "Descriptor": {
  1386. "ConnectionType": 1,
  1387. "SlotType": 2
  1388. },
  1389. "DataType": 1,
  1390. "IsReference": true,
  1391. "VariableReference": {
  1392. "m_id": "{EB109F98-738C-4B20-97C0-3A78936D1744}"
  1393. }
  1394. },
  1395. {
  1396. "id": {
  1397. "m_id": "{33FE8617-4792-46C7-A194-C1F045243F58}"
  1398. },
  1399. "contracts": [
  1400. {
  1401. "$type": "SlotTypeContract"
  1402. },
  1403. null
  1404. ],
  1405. "slotName": "Report",
  1406. "toolTip": "additional notes for the test report",
  1407. "DisplayDataType": {
  1408. "m_type": 5
  1409. },
  1410. "Descriptor": {
  1411. "ConnectionType": 1,
  1412. "SlotType": 2
  1413. },
  1414. "DataType": 1
  1415. },
  1416. {
  1417. "id": {
  1418. "m_id": "{31B0A2F0-FFE3-46B3-8FB0-BB7262097737}"
  1419. },
  1420. "contracts": [
  1421. {
  1422. "$type": "SlotTypeContract"
  1423. }
  1424. ],
  1425. "slotName": "In",
  1426. "Descriptor": {
  1427. "ConnectionType": 1,
  1428. "SlotType": 1
  1429. }
  1430. },
  1431. {
  1432. "id": {
  1433. "m_id": "{445A03D0-C3C8-4B5A-9B27-B3F3CAE21BA3}"
  1434. },
  1435. "contracts": [
  1436. {
  1437. "$type": "SlotTypeContract"
  1438. }
  1439. ],
  1440. "slotName": "Out",
  1441. "Descriptor": {
  1442. "ConnectionType": 2,
  1443. "SlotType": 1
  1444. }
  1445. }
  1446. ],
  1447. "Datums": [
  1448. {
  1449. "isOverloadedStorage": false,
  1450. "scriptCanvasType": {
  1451. "m_type": 1
  1452. },
  1453. "isNullPointer": false,
  1454. "$type": "EntityId",
  1455. "value": {
  1456. "id": 4276206253
  1457. }
  1458. },
  1459. {
  1460. "isOverloadedStorage": false,
  1461. "scriptCanvasType": {
  1462. "m_type": 3
  1463. },
  1464. "isNullPointer": false,
  1465. "$type": "double",
  1466. "value": 0.0,
  1467. "label": "Candidate"
  1468. },
  1469. {
  1470. "isOverloadedStorage": false,
  1471. "scriptCanvasType": {
  1472. "m_type": 3
  1473. },
  1474. "isNullPointer": false,
  1475. "$type": "double",
  1476. "value": 0.0,
  1477. "label": "Reference"
  1478. },
  1479. {
  1480. "isOverloadedStorage": false,
  1481. "scriptCanvasType": {
  1482. "m_type": 5
  1483. },
  1484. "isNullPointer": false,
  1485. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1486. "value": "",
  1487. "label": "Report"
  1488. }
  1489. ],
  1490. "methodType": 2,
  1491. "methodName": "Expect Equal",
  1492. "className": "Unit Testing",
  1493. "prettyClassName": "Unit Testing",
  1494. "orderedInputSlotIds": [
  1495. {
  1496. "m_id": "{9ED6829B-4358-4210-A9DD-1D0C5C6A22D2}"
  1497. },
  1498. {
  1499. "m_id": "{AE62D0DE-92B2-4699-BFB9-DC60884D8F53}"
  1500. },
  1501. {
  1502. "m_id": "{18538F9F-0E77-400C-B7C7-67B115D06491}"
  1503. },
  1504. {
  1505. "m_id": "{33FE8617-4792-46C7-A194-C1F045243F58}"
  1506. }
  1507. ],
  1508. "outputSlotIds": [
  1509. {}
  1510. ]
  1511. }
  1512. }
  1513. },
  1514. {
  1515. "Id": {
  1516. "id": 729602314175655
  1517. },
  1518. "Name": "SC-Node(Checkpoint)",
  1519. "Components": {
  1520. "Component_[5806946792321935945]": {
  1521. "$type": "MethodOverloaded",
  1522. "Id": 5806946792321935945,
  1523. "Slots": [
  1524. {
  1525. "isVisibile": false,
  1526. "id": {
  1527. "m_id": "{598FEA27-3C09-4BC2-B7A4-FBAD42EC7A8E}"
  1528. },
  1529. "contracts": [
  1530. {
  1531. "$type": "SlotTypeContract"
  1532. },
  1533. null
  1534. ],
  1535. "slotName": "EntityID: 0",
  1536. "Descriptor": {
  1537. "ConnectionType": 1,
  1538. "SlotType": 2
  1539. },
  1540. "DataType": 1
  1541. },
  1542. {
  1543. "id": {
  1544. "m_id": "{030E5284-6151-40C2-89E7-3DA005C2181C}"
  1545. },
  1546. "contracts": [
  1547. {
  1548. "$type": "SlotTypeContract"
  1549. },
  1550. null
  1551. ],
  1552. "slotName": "Report",
  1553. "toolTip": "additional notes for the test report",
  1554. "DisplayDataType": {
  1555. "m_type": 5
  1556. },
  1557. "Descriptor": {
  1558. "ConnectionType": 1,
  1559. "SlotType": 2
  1560. },
  1561. "DataType": 1
  1562. },
  1563. {
  1564. "id": {
  1565. "m_id": "{03A90E80-6276-41D1-861E-BF78465AEF98}"
  1566. },
  1567. "contracts": [
  1568. {
  1569. "$type": "SlotTypeContract"
  1570. }
  1571. ],
  1572. "slotName": "In",
  1573. "Descriptor": {
  1574. "ConnectionType": 1,
  1575. "SlotType": 1
  1576. }
  1577. },
  1578. {
  1579. "id": {
  1580. "m_id": "{043D12DF-F207-40A3-9EE3-3F9B1CE035F7}"
  1581. },
  1582. "contracts": [
  1583. {
  1584. "$type": "SlotTypeContract"
  1585. }
  1586. ],
  1587. "slotName": "Out",
  1588. "Descriptor": {
  1589. "ConnectionType": 2,
  1590. "SlotType": 1
  1591. }
  1592. }
  1593. ],
  1594. "Datums": [
  1595. {
  1596. "isOverloadedStorage": false,
  1597. "scriptCanvasType": {
  1598. "m_type": 1
  1599. },
  1600. "isNullPointer": false,
  1601. "$type": "EntityId",
  1602. "value": {
  1603. "id": 4276206253
  1604. }
  1605. },
  1606. {
  1607. "isOverloadedStorage": false,
  1608. "scriptCanvasType": {
  1609. "m_type": 5
  1610. },
  1611. "isNullPointer": false,
  1612. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1613. "value": "Get vs Reference 2",
  1614. "label": "Report"
  1615. }
  1616. ],
  1617. "methodType": 2,
  1618. "methodName": "Checkpoint",
  1619. "className": "Unit Testing",
  1620. "prettyClassName": "Unit Testing",
  1621. "orderedInputSlotIds": [
  1622. {
  1623. "m_id": "{598FEA27-3C09-4BC2-B7A4-FBAD42EC7A8E}"
  1624. },
  1625. {
  1626. "m_id": "{030E5284-6151-40C2-89E7-3DA005C2181C}"
  1627. }
  1628. ],
  1629. "outputSlotIds": [
  1630. {}
  1631. ]
  1632. }
  1633. }
  1634. },
  1635. {
  1636. "Id": {
  1637. "id": 729563659469991
  1638. },
  1639. "Name": "SC-Node(Checkpoint)",
  1640. "Components": {
  1641. "Component_[7486200215138360120]": {
  1642. "$type": "MethodOverloaded",
  1643. "Id": 7486200215138360120,
  1644. "Slots": [
  1645. {
  1646. "isVisibile": false,
  1647. "id": {
  1648. "m_id": "{B9CA8A9B-A61B-4EE2-B837-A3A0A51FEE9C}"
  1649. },
  1650. "contracts": [
  1651. {
  1652. "$type": "SlotTypeContract"
  1653. },
  1654. null
  1655. ],
  1656. "slotName": "EntityID: 0",
  1657. "Descriptor": {
  1658. "ConnectionType": 1,
  1659. "SlotType": 2
  1660. },
  1661. "DataType": 1
  1662. },
  1663. {
  1664. "id": {
  1665. "m_id": "{02CF1FC7-9B63-4127-8C03-6C9CDB61CB12}"
  1666. },
  1667. "contracts": [
  1668. {
  1669. "$type": "SlotTypeContract"
  1670. },
  1671. null
  1672. ],
  1673. "slotName": "Report",
  1674. "toolTip": "additional notes for the test report",
  1675. "DisplayDataType": {
  1676. "m_type": 5
  1677. },
  1678. "Descriptor": {
  1679. "ConnectionType": 1,
  1680. "SlotType": 2
  1681. },
  1682. "DataType": 1
  1683. },
  1684. {
  1685. "id": {
  1686. "m_id": "{B5F5F408-D323-42C1-A844-53DBF3B1433E}"
  1687. },
  1688. "contracts": [
  1689. {
  1690. "$type": "SlotTypeContract"
  1691. }
  1692. ],
  1693. "slotName": "In",
  1694. "Descriptor": {
  1695. "ConnectionType": 1,
  1696. "SlotType": 1
  1697. }
  1698. },
  1699. {
  1700. "id": {
  1701. "m_id": "{1535508B-3280-480B-AA11-A97FB6961BB3}"
  1702. },
  1703. "contracts": [
  1704. {
  1705. "$type": "SlotTypeContract"
  1706. }
  1707. ],
  1708. "slotName": "Out",
  1709. "Descriptor": {
  1710. "ConnectionType": 2,
  1711. "SlotType": 1
  1712. }
  1713. }
  1714. ],
  1715. "Datums": [
  1716. {
  1717. "isOverloadedStorage": false,
  1718. "scriptCanvasType": {
  1719. "m_type": 1
  1720. },
  1721. "isNullPointer": false,
  1722. "$type": "EntityId",
  1723. "value": {
  1724. "id": 4276206253
  1725. }
  1726. },
  1727. {
  1728. "isOverloadedStorage": false,
  1729. "scriptCanvasType": {
  1730. "m_type": 5
  1731. },
  1732. "isNullPointer": false,
  1733. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1734. "value": "Get vs Reference 1",
  1735. "label": "Report"
  1736. }
  1737. ],
  1738. "methodType": 2,
  1739. "methodName": "Checkpoint",
  1740. "className": "Unit Testing",
  1741. "prettyClassName": "Unit Testing",
  1742. "orderedInputSlotIds": [
  1743. {
  1744. "m_id": "{B9CA8A9B-A61B-4EE2-B837-A3A0A51FEE9C}"
  1745. },
  1746. {
  1747. "m_id": "{02CF1FC7-9B63-4127-8C03-6C9CDB61CB12}"
  1748. }
  1749. ],
  1750. "outputSlotIds": [
  1751. {}
  1752. ]
  1753. }
  1754. }
  1755. },
  1756. {
  1757. "Id": {
  1758. "id": 729610904110247
  1759. },
  1760. "Name": "SC-Node(Checkpoint)",
  1761. "Components": {
  1762. "Component_[7508451025255979016]": {
  1763. "$type": "MethodOverloaded",
  1764. "Id": 7508451025255979016,
  1765. "Slots": [
  1766. {
  1767. "isVisibile": false,
  1768. "id": {
  1769. "m_id": "{2998A8B8-0DE1-4915-B41F-A962A4A3FBA6}"
  1770. },
  1771. "contracts": [
  1772. {
  1773. "$type": "SlotTypeContract"
  1774. },
  1775. null
  1776. ],
  1777. "slotName": "EntityID: 0",
  1778. "Descriptor": {
  1779. "ConnectionType": 1,
  1780. "SlotType": 2
  1781. },
  1782. "DataType": 1
  1783. },
  1784. {
  1785. "id": {
  1786. "m_id": "{9D2FE7F0-F1DD-4A56-9E27-63ED53838CBF}"
  1787. },
  1788. "contracts": [
  1789. {
  1790. "$type": "SlotTypeContract"
  1791. },
  1792. null
  1793. ],
  1794. "slotName": "Report",
  1795. "toolTip": "additional notes for the test report",
  1796. "DisplayDataType": {
  1797. "m_type": 5
  1798. },
  1799. "Descriptor": {
  1800. "ConnectionType": 1,
  1801. "SlotType": 2
  1802. },
  1803. "DataType": 1
  1804. },
  1805. {
  1806. "id": {
  1807. "m_id": "{7B8B4E44-CF98-46E4-BA3C-2802E5DCD026}"
  1808. },
  1809. "contracts": [
  1810. {
  1811. "$type": "SlotTypeContract"
  1812. }
  1813. ],
  1814. "slotName": "In",
  1815. "Descriptor": {
  1816. "ConnectionType": 1,
  1817. "SlotType": 1
  1818. }
  1819. },
  1820. {
  1821. "id": {
  1822. "m_id": "{8E5964EB-EA95-41D7-AD9C-DDAF52305688}"
  1823. },
  1824. "contracts": [
  1825. {
  1826. "$type": "SlotTypeContract"
  1827. }
  1828. ],
  1829. "slotName": "Out",
  1830. "Descriptor": {
  1831. "ConnectionType": 2,
  1832. "SlotType": 1
  1833. }
  1834. }
  1835. ],
  1836. "Datums": [
  1837. {
  1838. "isOverloadedStorage": false,
  1839. "scriptCanvasType": {
  1840. "m_type": 1
  1841. },
  1842. "isNullPointer": false,
  1843. "$type": "EntityId",
  1844. "value": {
  1845. "id": 4276206253
  1846. }
  1847. },
  1848. {
  1849. "isOverloadedStorage": false,
  1850. "scriptCanvasType": {
  1851. "m_type": 5
  1852. },
  1853. "isNullPointer": false,
  1854. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1855. "value": "Reference vs Reference",
  1856. "label": "Report"
  1857. }
  1858. ],
  1859. "methodType": 2,
  1860. "methodName": "Checkpoint",
  1861. "className": "Unit Testing",
  1862. "prettyClassName": "Unit Testing",
  1863. "orderedInputSlotIds": [
  1864. {
  1865. "m_id": "{2998A8B8-0DE1-4915-B41F-A962A4A3FBA6}"
  1866. },
  1867. {
  1868. "m_id": "{9D2FE7F0-F1DD-4A56-9E27-63ED53838CBF}"
  1869. }
  1870. ],
  1871. "outputSlotIds": [
  1872. {}
  1873. ]
  1874. }
  1875. }
  1876. },
  1877. {
  1878. "Id": {
  1879. "id": 729615199077543
  1880. },
  1881. "Name": "SC-Node(Start)",
  1882. "Components": {
  1883. "Component_[7822005646131496626]": {
  1884. "$type": "Start",
  1885. "Id": 7822005646131496626,
  1886. "Slots": [
  1887. {
  1888. "id": {
  1889. "m_id": "{A7A0922D-8952-43F5-8CDB-7AF7929E91D3}"
  1890. },
  1891. "contracts": [
  1892. {
  1893. "$type": "SlotTypeContract"
  1894. }
  1895. ],
  1896. "slotName": "Out",
  1897. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1898. "Descriptor": {
  1899. "ConnectionType": 2,
  1900. "SlotType": 1
  1901. }
  1902. }
  1903. ]
  1904. }
  1905. }
  1906. },
  1907. {
  1908. "Id": {
  1909. "id": 729580839339175
  1910. },
  1911. "Name": "SC-Node(ExpectEqual)",
  1912. "Components": {
  1913. "Component_[8760781264621491965]": {
  1914. "$type": "MethodOverloaded",
  1915. "Id": 8760781264621491965,
  1916. "Slots": [
  1917. {
  1918. "isVisibile": false,
  1919. "id": {
  1920. "m_id": "{A477373D-62D5-4C11-84D7-A14FE2E12C2D}"
  1921. },
  1922. "contracts": [
  1923. {
  1924. "$type": "SlotTypeContract"
  1925. },
  1926. null
  1927. ],
  1928. "slotName": "EntityID: 0",
  1929. "Descriptor": {
  1930. "ConnectionType": 1,
  1931. "SlotType": 2
  1932. },
  1933. "DataType": 1
  1934. },
  1935. {
  1936. "id": {
  1937. "m_id": "{99CE42BF-496A-4906-BFA5-32AD3CF6573A}"
  1938. },
  1939. "DynamicTypeOverride": 1,
  1940. "contracts": [
  1941. {
  1942. "$type": "SlotTypeContract"
  1943. },
  1944. null,
  1945. {
  1946. "$type": "OverloadContract"
  1947. }
  1948. ],
  1949. "slotName": "Candidate",
  1950. "toolTip": "left of ==",
  1951. "DisplayDataType": {
  1952. "m_type": 3
  1953. },
  1954. "Descriptor": {
  1955. "ConnectionType": 1,
  1956. "SlotType": 2
  1957. },
  1958. "DataType": 1
  1959. },
  1960. {
  1961. "id": {
  1962. "m_id": "{524F91A7-91D4-4520-9C25-746EC4569090}"
  1963. },
  1964. "DynamicTypeOverride": 1,
  1965. "contracts": [
  1966. {
  1967. "$type": "SlotTypeContract"
  1968. },
  1969. null,
  1970. {
  1971. "$type": "OverloadContract"
  1972. }
  1973. ],
  1974. "slotName": "Reference",
  1975. "toolTip": "right of ==",
  1976. "DisplayDataType": {
  1977. "m_type": 3
  1978. },
  1979. "Descriptor": {
  1980. "ConnectionType": 1,
  1981. "SlotType": 2
  1982. },
  1983. "DataType": 1,
  1984. "IsReference": true,
  1985. "VariableReference": {
  1986. "m_id": "{EB109F98-738C-4B20-97C0-3A78936D1744}"
  1987. }
  1988. },
  1989. {
  1990. "id": {
  1991. "m_id": "{127D8BFB-0AA0-417E-BF77-FF2FCEA9F45F}"
  1992. },
  1993. "contracts": [
  1994. {
  1995. "$type": "SlotTypeContract"
  1996. },
  1997. null
  1998. ],
  1999. "slotName": "Report",
  2000. "toolTip": "additional notes for the test report",
  2001. "DisplayDataType": {
  2002. "m_type": 5
  2003. },
  2004. "Descriptor": {
  2005. "ConnectionType": 1,
  2006. "SlotType": 2
  2007. },
  2008. "DataType": 1
  2009. },
  2010. {
  2011. "id": {
  2012. "m_id": "{82F9FCA3-E2A6-4D32-AC74-794F42C07E8C}"
  2013. },
  2014. "contracts": [
  2015. {
  2016. "$type": "SlotTypeContract"
  2017. }
  2018. ],
  2019. "slotName": "In",
  2020. "Descriptor": {
  2021. "ConnectionType": 1,
  2022. "SlotType": 1
  2023. }
  2024. },
  2025. {
  2026. "id": {
  2027. "m_id": "{491AD4E1-995C-4FA9-B7B3-6743D8207B66}"
  2028. },
  2029. "contracts": [
  2030. {
  2031. "$type": "SlotTypeContract"
  2032. }
  2033. ],
  2034. "slotName": "Out",
  2035. "Descriptor": {
  2036. "ConnectionType": 2,
  2037. "SlotType": 1
  2038. }
  2039. }
  2040. ],
  2041. "Datums": [
  2042. {
  2043. "isOverloadedStorage": false,
  2044. "scriptCanvasType": {
  2045. "m_type": 1
  2046. },
  2047. "isNullPointer": false,
  2048. "$type": "EntityId",
  2049. "value": {
  2050. "id": 4276206253
  2051. }
  2052. },
  2053. {
  2054. "isOverloadedStorage": false,
  2055. "scriptCanvasType": {
  2056. "m_type": 3
  2057. },
  2058. "isNullPointer": false,
  2059. "$type": "double",
  2060. "value": 2.0,
  2061. "label": "Candidate"
  2062. },
  2063. {
  2064. "isOverloadedStorage": false,
  2065. "scriptCanvasType": {
  2066. "m_type": 3
  2067. },
  2068. "isNullPointer": false,
  2069. "$type": "double",
  2070. "value": 0.0,
  2071. "label": "Reference"
  2072. },
  2073. {
  2074. "isOverloadedStorage": false,
  2075. "scriptCanvasType": {
  2076. "m_type": 5
  2077. },
  2078. "isNullPointer": false,
  2079. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2080. "value": "",
  2081. "label": "Report"
  2082. }
  2083. ],
  2084. "methodType": 2,
  2085. "methodName": "Expect Equal",
  2086. "className": "Unit Testing",
  2087. "prettyClassName": "Unit Testing",
  2088. "orderedInputSlotIds": [
  2089. {
  2090. "m_id": "{A477373D-62D5-4C11-84D7-A14FE2E12C2D}"
  2091. },
  2092. {
  2093. "m_id": "{99CE42BF-496A-4906-BFA5-32AD3CF6573A}"
  2094. },
  2095. {
  2096. "m_id": "{524F91A7-91D4-4520-9C25-746EC4569090}"
  2097. },
  2098. {
  2099. "m_id": "{127D8BFB-0AA0-417E-BF77-FF2FCEA9F45F}"
  2100. }
  2101. ],
  2102. "outputSlotIds": [
  2103. {}
  2104. ]
  2105. }
  2106. }
  2107. }
  2108. ],
  2109. "m_connections": [
  2110. {
  2111. "Id": {
  2112. "id": 729619494044839
  2113. },
  2114. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Ordered Sequencer: In)",
  2115. "Components": {
  2116. "Component_[7388237321554244441]": {
  2117. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2118. "Id": 7388237321554244441,
  2119. "sourceEndpoint": {
  2120. "nodeId": {
  2121. "id": 729615199077543
  2122. },
  2123. "slotId": {
  2124. "m_id": "{A7A0922D-8952-43F5-8CDB-7AF7929E91D3}"
  2125. }
  2126. },
  2127. "targetEndpoint": {
  2128. "nodeId": {
  2129. "id": 729576544371879
  2130. },
  2131. "slotId": {
  2132. "m_id": "{E51532B1-9E76-4E7E-9A05-F30D65C9F261}"
  2133. }
  2134. }
  2135. }
  2136. }
  2137. },
  2138. {
  2139. "Id": {
  2140. "id": 729623789012135
  2141. },
  2142. "Name": "srcEndpoint=(Ordered Sequencer: Out 3), destEndpoint=(Get Variable: In)",
  2143. "Components": {
  2144. "Component_[8938013941999423496]": {
  2145. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2146. "Id": 8938013941999423496,
  2147. "sourceEndpoint": {
  2148. "nodeId": {
  2149. "id": 729576544371879
  2150. },
  2151. "slotId": {
  2152. "m_id": "{7DFA4099-7D16-43B9-8B79-00C569798635}"
  2153. }
  2154. },
  2155. "targetEndpoint": {
  2156. "nodeId": {
  2157. "id": 729555069535399
  2158. },
  2159. "slotId": {
  2160. "m_id": "{474B9E76-1370-4CEE-80A0-6AD5A98FDF06}"
  2161. }
  2162. }
  2163. }
  2164. }
  2165. },
  2166. {
  2167. "Id": {
  2168. "id": 729628083979431
  2169. },
  2170. "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(Get Variable: In)",
  2171. "Components": {
  2172. "Component_[3459373815230870664]": {
  2173. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2174. "Id": 3459373815230870664,
  2175. "sourceEndpoint": {
  2176. "nodeId": {
  2177. "id": 729576544371879
  2178. },
  2179. "slotId": {
  2180. "m_id": "{FF0427E4-B093-43EB-A2E6-33E2F1A9EDD7}"
  2181. }
  2182. },
  2183. "targetEndpoint": {
  2184. "nodeId": {
  2185. "id": 729585134306471
  2186. },
  2187. "slotId": {
  2188. "m_id": "{FFC708A5-BF75-4E5F-B1FC-B4F2B37877DE}"
  2189. }
  2190. }
  2191. }
  2192. }
  2193. },
  2194. {
  2195. "Id": {
  2196. "id": 729632378946727
  2197. },
  2198. "Name": "srcEndpoint=(Ordered Sequencer: Out 4), destEndpoint=(Expect Equal: In)",
  2199. "Components": {
  2200. "Component_[621141545621809106]": {
  2201. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2202. "Id": 621141545621809106,
  2203. "sourceEndpoint": {
  2204. "nodeId": {
  2205. "id": 729576544371879
  2206. },
  2207. "slotId": {
  2208. "m_id": "{22AFF127-3D95-40F3-904B-94D3AB6A9E30}"
  2209. }
  2210. },
  2211. "targetEndpoint": {
  2212. "nodeId": {
  2213. "id": 729589429273767
  2214. },
  2215. "slotId": {
  2216. "m_id": "{FCAA5C9A-0525-4C59-AEA6-93DE6E35A4C5}"
  2217. }
  2218. }
  2219. }
  2220. }
  2221. },
  2222. {
  2223. "Id": {
  2224. "id": 729636673914023
  2225. },
  2226. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  2227. "Components": {
  2228. "Component_[210672501494852642]": {
  2229. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2230. "Id": 210672501494852642,
  2231. "sourceEndpoint": {
  2232. "nodeId": {
  2233. "id": 729585134306471
  2234. },
  2235. "slotId": {
  2236. "m_id": "{DF4E3C9C-AF76-415B-B955-4601E683CB06}"
  2237. }
  2238. },
  2239. "targetEndpoint": {
  2240. "nodeId": {
  2241. "id": 729572249404583
  2242. },
  2243. "slotId": {
  2244. "m_id": "{74171A56-4200-4DAE-AB3E-75514DBFE037}"
  2245. }
  2246. }
  2247. }
  2248. }
  2249. },
  2250. {
  2251. "Id": {
  2252. "id": 729640968881319
  2253. },
  2254. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  2255. "Components": {
  2256. "Component_[2709038079007543149]": {
  2257. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2258. "Id": 2709038079007543149,
  2259. "sourceEndpoint": {
  2260. "nodeId": {
  2261. "id": 729555069535399
  2262. },
  2263. "slotId": {
  2264. "m_id": "{86FCA1B6-17F1-499A-BF7C-0B9F0678357C}"
  2265. }
  2266. },
  2267. "targetEndpoint": {
  2268. "nodeId": {
  2269. "id": 729593724241063
  2270. },
  2271. "slotId": {
  2272. "m_id": "{31B0A2F0-FFE3-46B3-8FB0-BB7262097737}"
  2273. }
  2274. }
  2275. }
  2276. }
  2277. },
  2278. {
  2279. "Id": {
  2280. "id": 729645263848615
  2281. },
  2282. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Reference)",
  2283. "Components": {
  2284. "Component_[12743628919082723370]": {
  2285. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2286. "Id": 12743628919082723370,
  2287. "sourceEndpoint": {
  2288. "nodeId": {
  2289. "id": 729585134306471
  2290. },
  2291. "slotId": {
  2292. "m_id": "{BCA92D5B-39EB-4181-A91F-A238B1C66E88}"
  2293. }
  2294. },
  2295. "targetEndpoint": {
  2296. "nodeId": {
  2297. "id": 729572249404583
  2298. },
  2299. "slotId": {
  2300. "m_id": "{BFAF2E3D-B50E-4249-9CD2-3A88F401603C}"
  2301. }
  2302. }
  2303. }
  2304. }
  2305. },
  2306. {
  2307. "Id": {
  2308. "id": 729649558815911
  2309. },
  2310. "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(Expect Equal: In)",
  2311. "Components": {
  2312. "Component_[11277814095111867350]": {
  2313. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2314. "Id": 11277814095111867350,
  2315. "sourceEndpoint": {
  2316. "nodeId": {
  2317. "id": 729576544371879
  2318. },
  2319. "slotId": {
  2320. "m_id": "{5BD5D42B-AF62-4681-9D36-8160D9866EA4}"
  2321. }
  2322. },
  2323. "targetEndpoint": {
  2324. "nodeId": {
  2325. "id": 729580839339175
  2326. },
  2327. "slotId": {
  2328. "m_id": "{82F9FCA3-E2A6-4D32-AC74-794F42C07E8C}"
  2329. }
  2330. }
  2331. }
  2332. }
  2333. },
  2334. {
  2335. "Id": {
  2336. "id": 729653853783207
  2337. },
  2338. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Candidate)",
  2339. "Components": {
  2340. "Component_[11409695949371837607]": {
  2341. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2342. "Id": 11409695949371837607,
  2343. "sourceEndpoint": {
  2344. "nodeId": {
  2345. "id": 729555069535399
  2346. },
  2347. "slotId": {
  2348. "m_id": "{888FA23D-5BBE-4B67-848C-10089B6CE727}"
  2349. }
  2350. },
  2351. "targetEndpoint": {
  2352. "nodeId": {
  2353. "id": 729593724241063
  2354. },
  2355. "slotId": {
  2356. "m_id": "{AE62D0DE-92B2-4699-BFB9-DC60884D8F53}"
  2357. }
  2358. }
  2359. }
  2360. }
  2361. },
  2362. {
  2363. "Id": {
  2364. "id": 729658148750503
  2365. },
  2366. "Name": "srcEndpoint=(Ordered Sequencer: Out 5), destEndpoint=(Mark Complete: In)",
  2367. "Components": {
  2368. "Component_[5885923725661887034]": {
  2369. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2370. "Id": 5885923725661887034,
  2371. "sourceEndpoint": {
  2372. "nodeId": {
  2373. "id": 729576544371879
  2374. },
  2375. "slotId": {
  2376. "m_id": "{521F3362-3B5F-4F7F-B3C8-A221FDD10D03}"
  2377. }
  2378. },
  2379. "targetEndpoint": {
  2380. "nodeId": {
  2381. "id": 729567954437287
  2382. },
  2383. "slotId": {
  2384. "m_id": "{CAA1002A-6AE5-482F-9884-002822E913A3}"
  2385. }
  2386. }
  2387. }
  2388. }
  2389. },
  2390. {
  2391. "Id": {
  2392. "id": 729662443717799
  2393. },
  2394. "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(Expect Equal: In)",
  2395. "Components": {
  2396. "Component_[13332931758069519384]": {
  2397. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2398. "Id": 13332931758069519384,
  2399. "sourceEndpoint": {
  2400. "nodeId": {
  2401. "id": 729576544371879
  2402. },
  2403. "slotId": {
  2404. "m_id": "{B0DFD567-16B6-4E10-8BC0-803AD6742DCB}"
  2405. }
  2406. },
  2407. "targetEndpoint": {
  2408. "nodeId": {
  2409. "id": 729606609142951
  2410. },
  2411. "slotId": {
  2412. "m_id": "{FD1996E6-E301-4A20-981D-A606E24377D0}"
  2413. }
  2414. }
  2415. }
  2416. }
  2417. },
  2418. {
  2419. "Id": {
  2420. "id": 729666738685095
  2421. },
  2422. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Checkpoint: In)",
  2423. "Components": {
  2424. "Component_[13570985760037258756]": {
  2425. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2426. "Id": 13570985760037258756,
  2427. "sourceEndpoint": {
  2428. "nodeId": {
  2429. "id": 729572249404583
  2430. },
  2431. "slotId": {
  2432. "m_id": "{05FA082A-0A30-4E2B-9754-4969A4D36227}"
  2433. }
  2434. },
  2435. "targetEndpoint": {
  2436. "nodeId": {
  2437. "id": 729563659469991
  2438. },
  2439. "slotId": {
  2440. "m_id": "{B5F5F408-D323-42C1-A844-53DBF3B1433E}"
  2441. }
  2442. }
  2443. }
  2444. }
  2445. },
  2446. {
  2447. "Id": {
  2448. "id": 729671033652391
  2449. },
  2450. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Checkpoint: In)",
  2451. "Components": {
  2452. "Component_[9107956918508050616]": {
  2453. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2454. "Id": 9107956918508050616,
  2455. "sourceEndpoint": {
  2456. "nodeId": {
  2457. "id": 729593724241063
  2458. },
  2459. "slotId": {
  2460. "m_id": "{445A03D0-C3C8-4B5A-9B27-B3F3CAE21BA3}"
  2461. }
  2462. },
  2463. "targetEndpoint": {
  2464. "nodeId": {
  2465. "id": 729602314175655
  2466. },
  2467. "slotId": {
  2468. "m_id": "{03A90E80-6276-41D1-861E-BF78465AEF98}"
  2469. }
  2470. }
  2471. }
  2472. }
  2473. },
  2474. {
  2475. "Id": {
  2476. "id": 729675328619687
  2477. },
  2478. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Checkpoint: In)",
  2479. "Components": {
  2480. "Component_[4817923761216249433]": {
  2481. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2482. "Id": 4817923761216249433,
  2483. "sourceEndpoint": {
  2484. "nodeId": {
  2485. "id": 729580839339175
  2486. },
  2487. "slotId": {
  2488. "m_id": "{491AD4E1-995C-4FA9-B7B3-6743D8207B66}"
  2489. }
  2490. },
  2491. "targetEndpoint": {
  2492. "nodeId": {
  2493. "id": 729598019208359
  2494. },
  2495. "slotId": {
  2496. "m_id": "{1C993620-778D-4B7C-8DEF-36FB5D4AE6D5}"
  2497. }
  2498. }
  2499. }
  2500. }
  2501. },
  2502. {
  2503. "Id": {
  2504. "id": 729679623586983
  2505. },
  2506. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Checkpoint: In)",
  2507. "Components": {
  2508. "Component_[14268414382396029449]": {
  2509. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2510. "Id": 14268414382396029449,
  2511. "sourceEndpoint": {
  2512. "nodeId": {
  2513. "id": 729606609142951
  2514. },
  2515. "slotId": {
  2516. "m_id": "{82402EB3-F6B8-4E10-B770-D4BBD106E6DD}"
  2517. }
  2518. },
  2519. "targetEndpoint": {
  2520. "nodeId": {
  2521. "id": 729559364502695
  2522. },
  2523. "slotId": {
  2524. "m_id": "{461F762F-3459-4E97-94F0-33BE3E728A7F}"
  2525. }
  2526. }
  2527. }
  2528. }
  2529. },
  2530. {
  2531. "Id": {
  2532. "id": 729683918554279
  2533. },
  2534. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Checkpoint: In)",
  2535. "Components": {
  2536. "Component_[12270291839259064324]": {
  2537. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2538. "Id": 12270291839259064324,
  2539. "sourceEndpoint": {
  2540. "nodeId": {
  2541. "id": 729589429273767
  2542. },
  2543. "slotId": {
  2544. "m_id": "{EC937E60-4592-4731-80E8-AB16CC1A1FEF}"
  2545. }
  2546. },
  2547. "targetEndpoint": {
  2548. "nodeId": {
  2549. "id": 729610904110247
  2550. },
  2551. "slotId": {
  2552. "m_id": "{7B8B4E44-CF98-46E4-BA3C-2802E5DCD026}"
  2553. }
  2554. }
  2555. }
  2556. }
  2557. }
  2558. ]
  2559. },
  2560. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2561. "versionData": {
  2562. "_grammarVersion": 1,
  2563. "_runtimeVersion": 1,
  2564. "_fileVersion": 1
  2565. },
  2566. "m_variableCounter": 3,
  2567. "GraphCanvasData": [
  2568. {
  2569. "Key": {
  2570. "id": 729550774568103
  2571. },
  2572. "Value": {
  2573. "ComponentData": {
  2574. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2575. "$type": "SceneComponentSaveData",
  2576. "ViewParams": {
  2577. "Scale": 0.7518248,
  2578. "AnchorX": -300.6019287109375,
  2579. "AnchorY": -554.6505126953125
  2580. }
  2581. }
  2582. }
  2583. }
  2584. },
  2585. {
  2586. "Key": {
  2587. "id": 729555069535399
  2588. },
  2589. "Value": {
  2590. "ComponentData": {
  2591. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2592. "$type": "GeneralNodeTitleComponentSaveData",
  2593. "PaletteOverride": "GetVariableNodeTitlePalette"
  2594. },
  2595. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2596. "$type": "GeometrySaveData",
  2597. "Position": [
  2598. 460.0,
  2599. 200.0
  2600. ]
  2601. },
  2602. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2603. "$type": "StylingComponentSaveData",
  2604. "SubStyle": ".getVariable"
  2605. },
  2606. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2607. "$type": "PersistentIdComponentSaveData",
  2608. "PersistentId": "{1CEA5DAE-830B-4005-9DA5-EA9CE0911F9B}"
  2609. }
  2610. }
  2611. }
  2612. },
  2613. {
  2614. "Key": {
  2615. "id": 729559364502695
  2616. },
  2617. "Value": {
  2618. "ComponentData": {
  2619. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2620. "$type": "GeneralNodeTitleComponentSaveData",
  2621. "PaletteOverride": "TestingNodeTitlePalette"
  2622. },
  2623. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2624. "$type": "GeometrySaveData",
  2625. "Position": [
  2626. 800.0,
  2627. -600.0
  2628. ]
  2629. },
  2630. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2631. "$type": "StylingComponentSaveData",
  2632. "SubStyle": ".method"
  2633. },
  2634. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2635. "$type": "PersistentIdComponentSaveData",
  2636. "PersistentId": "{2D54A719-519F-479F-965A-F2CD44B69E4D}"
  2637. }
  2638. }
  2639. }
  2640. },
  2641. {
  2642. "Key": {
  2643. "id": 729563659469991
  2644. },
  2645. "Value": {
  2646. "ComponentData": {
  2647. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2648. "$type": "GeneralNodeTitleComponentSaveData",
  2649. "PaletteOverride": "TestingNodeTitlePalette"
  2650. },
  2651. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2652. "$type": "GeometrySaveData",
  2653. "Position": [
  2654. 900.0,
  2655. -40.0
  2656. ]
  2657. },
  2658. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2659. "$type": "StylingComponentSaveData",
  2660. "SubStyle": ".method"
  2661. },
  2662. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2663. "$type": "PersistentIdComponentSaveData",
  2664. "PersistentId": "{4983C10C-B5BE-4C6A-9599-88175B3BB07A}"
  2665. }
  2666. }
  2667. }
  2668. },
  2669. {
  2670. "Key": {
  2671. "id": 729567954437287
  2672. },
  2673. "Value": {
  2674. "ComponentData": {
  2675. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2676. "$type": "GeneralNodeTitleComponentSaveData",
  2677. "PaletteOverride": "TestingNodeTitlePalette"
  2678. },
  2679. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2680. "$type": "GeometrySaveData",
  2681. "Position": [
  2682. 480.0,
  2683. 700.0
  2684. ]
  2685. },
  2686. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2687. "$type": "StylingComponentSaveData",
  2688. "SubStyle": ".method"
  2689. },
  2690. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2691. "$type": "PersistentIdComponentSaveData",
  2692. "PersistentId": "{FA07CA3E-92E3-4AFF-9CAC-D42E10A229FF}"
  2693. }
  2694. }
  2695. }
  2696. },
  2697. {
  2698. "Key": {
  2699. "id": 729572249404583
  2700. },
  2701. "Value": {
  2702. "ComponentData": {
  2703. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2704. "$type": "GeneralNodeTitleComponentSaveData",
  2705. "PaletteOverride": "TestingNodeTitlePalette"
  2706. },
  2707. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2708. "$type": "GeometrySaveData",
  2709. "Position": [
  2710. 620.0,
  2711. -40.0
  2712. ]
  2713. },
  2714. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2715. "$type": "StylingComponentSaveData",
  2716. "SubStyle": ".method"
  2717. },
  2718. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2719. "$type": "PersistentIdComponentSaveData",
  2720. "PersistentId": "{A42ECD46-6AEE-49D1-B73F-16DAF384D500}"
  2721. }
  2722. }
  2723. }
  2724. },
  2725. {
  2726. "Key": {
  2727. "id": 729576544371879
  2728. },
  2729. "Value": {
  2730. "ComponentData": {
  2731. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2732. "$type": "GeneralNodeTitleComponentSaveData",
  2733. "PaletteOverride": "LogicNodeTitlePalette"
  2734. },
  2735. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2736. "$type": "GeometrySaveData",
  2737. "Position": [
  2738. -80.0,
  2739. -100.0
  2740. ]
  2741. },
  2742. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2743. "$type": "StylingComponentSaveData",
  2744. "SubStyle": ".logic"
  2745. },
  2746. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2747. "$type": "PersistentIdComponentSaveData",
  2748. "PersistentId": "{8DDED51B-F812-4359-8527-CB3ED7DFF51B}"
  2749. }
  2750. }
  2751. }
  2752. },
  2753. {
  2754. "Key": {
  2755. "id": 729580839339175
  2756. },
  2757. "Value": {
  2758. "ComponentData": {
  2759. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2760. "$type": "GeneralNodeTitleComponentSaveData",
  2761. "PaletteOverride": "TestingNodeTitlePalette"
  2762. },
  2763. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2764. "$type": "GeometrySaveData",
  2765. "Position": [
  2766. 580.0,
  2767. -300.0
  2768. ]
  2769. },
  2770. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2771. "$type": "StylingComponentSaveData",
  2772. "SubStyle": ".method"
  2773. },
  2774. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2775. "$type": "PersistentIdComponentSaveData",
  2776. "PersistentId": "{BF5B1C45-43BE-4E64-B304-D2DD6E94FA64}"
  2777. }
  2778. }
  2779. }
  2780. },
  2781. {
  2782. "Key": {
  2783. "id": 729585134306471
  2784. },
  2785. "Value": {
  2786. "ComponentData": {
  2787. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2788. "$type": "GeneralNodeTitleComponentSaveData",
  2789. "PaletteOverride": "GetVariableNodeTitlePalette"
  2790. },
  2791. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2792. "$type": "GeometrySaveData",
  2793. "Position": [
  2794. 460.0,
  2795. -20.0
  2796. ]
  2797. },
  2798. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2799. "$type": "StylingComponentSaveData",
  2800. "SubStyle": ".getVariable"
  2801. },
  2802. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2803. "$type": "PersistentIdComponentSaveData",
  2804. "PersistentId": "{C67E998C-67FC-452E-9C5A-62B0381C6433}"
  2805. }
  2806. }
  2807. }
  2808. },
  2809. {
  2810. "Key": {
  2811. "id": 729589429273767
  2812. },
  2813. "Value": {
  2814. "ComponentData": {
  2815. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2816. "$type": "GeneralNodeTitleComponentSaveData",
  2817. "PaletteOverride": "TestingNodeTitlePalette"
  2818. },
  2819. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2820. "$type": "GeometrySaveData",
  2821. "Position": [
  2822. 500.0,
  2823. 440.0
  2824. ]
  2825. },
  2826. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2827. "$type": "StylingComponentSaveData",
  2828. "SubStyle": ".method"
  2829. },
  2830. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2831. "$type": "PersistentIdComponentSaveData",
  2832. "PersistentId": "{22116F99-FF29-43A2-BDE2-9ABE37A7F8A9}"
  2833. }
  2834. }
  2835. }
  2836. },
  2837. {
  2838. "Key": {
  2839. "id": 729593724241063
  2840. },
  2841. "Value": {
  2842. "ComponentData": {
  2843. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2844. "$type": "GeneralNodeTitleComponentSaveData",
  2845. "PaletteOverride": "TestingNodeTitlePalette"
  2846. },
  2847. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2848. "$type": "GeometrySaveData",
  2849. "Position": [
  2850. 680.0,
  2851. 200.0
  2852. ]
  2853. },
  2854. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2855. "$type": "StylingComponentSaveData",
  2856. "SubStyle": ".method"
  2857. },
  2858. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2859. "$type": "PersistentIdComponentSaveData",
  2860. "PersistentId": "{7479CA3D-7138-4B7D-A4EB-4185F1ECD371}"
  2861. }
  2862. }
  2863. }
  2864. },
  2865. {
  2866. "Key": {
  2867. "id": 729598019208359
  2868. },
  2869. "Value": {
  2870. "ComponentData": {
  2871. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2872. "$type": "GeneralNodeTitleComponentSaveData",
  2873. "PaletteOverride": "TestingNodeTitlePalette"
  2874. },
  2875. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2876. "$type": "GeometrySaveData",
  2877. "Position": [
  2878. 840.0,
  2879. -300.0
  2880. ]
  2881. },
  2882. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2883. "$type": "StylingComponentSaveData",
  2884. "SubStyle": ".method"
  2885. },
  2886. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2887. "$type": "PersistentIdComponentSaveData",
  2888. "PersistentId": "{CD120265-F292-431F-A42D-DBDB26EB18AB}"
  2889. }
  2890. }
  2891. }
  2892. },
  2893. {
  2894. "Key": {
  2895. "id": 729602314175655
  2896. },
  2897. "Value": {
  2898. "ComponentData": {
  2899. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2900. "$type": "GeneralNodeTitleComponentSaveData",
  2901. "PaletteOverride": "TestingNodeTitlePalette"
  2902. },
  2903. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2904. "$type": "GeometrySaveData",
  2905. "Position": [
  2906. 940.0,
  2907. 200.0
  2908. ]
  2909. },
  2910. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2911. "$type": "StylingComponentSaveData",
  2912. "SubStyle": ".method"
  2913. },
  2914. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2915. "$type": "PersistentIdComponentSaveData",
  2916. "PersistentId": "{F1CB7BF7-D006-486F-A4EA-F1E9FB675B5B}"
  2917. }
  2918. }
  2919. }
  2920. },
  2921. {
  2922. "Key": {
  2923. "id": 729606609142951
  2924. },
  2925. "Value": {
  2926. "ComponentData": {
  2927. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2928. "$type": "GeneralNodeTitleComponentSaveData",
  2929. "PaletteOverride": "TestingNodeTitlePalette"
  2930. },
  2931. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2932. "$type": "GeometrySaveData",
  2933. "Position": [
  2934. 540.0,
  2935. -600.0
  2936. ]
  2937. },
  2938. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2939. "$type": "StylingComponentSaveData",
  2940. "SubStyle": ".method"
  2941. },
  2942. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2943. "$type": "PersistentIdComponentSaveData",
  2944. "PersistentId": "{26B86AA2-722F-4977-8738-BF7410EEDBA2}"
  2945. }
  2946. }
  2947. }
  2948. },
  2949. {
  2950. "Key": {
  2951. "id": 729610904110247
  2952. },
  2953. "Value": {
  2954. "ComponentData": {
  2955. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2956. "$type": "GeneralNodeTitleComponentSaveData",
  2957. "PaletteOverride": "TestingNodeTitlePalette"
  2958. },
  2959. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2960. "$type": "GeometrySaveData",
  2961. "Position": [
  2962. 760.0,
  2963. 440.0
  2964. ]
  2965. },
  2966. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2967. "$type": "StylingComponentSaveData",
  2968. "SubStyle": ".method"
  2969. },
  2970. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2971. "$type": "PersistentIdComponentSaveData",
  2972. "PersistentId": "{35D26D35-0168-492E-A93A-A1C1C5BE3179}"
  2973. }
  2974. }
  2975. }
  2976. },
  2977. {
  2978. "Key": {
  2979. "id": 729615199077543
  2980. },
  2981. "Value": {
  2982. "ComponentData": {
  2983. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2984. "$type": "GeneralNodeTitleComponentSaveData",
  2985. "PaletteOverride": "TimeNodeTitlePalette"
  2986. },
  2987. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2988. "$type": "GeometrySaveData",
  2989. "Position": [
  2990. -220.0,
  2991. -100.0
  2992. ]
  2993. },
  2994. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2995. "$type": "StylingComponentSaveData",
  2996. "SubStyle": ".time"
  2997. },
  2998. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2999. "$type": "PersistentIdComponentSaveData",
  3000. "PersistentId": "{1E82E5E0-F387-467E-BCE2-1116C54E606C}"
  3001. }
  3002. }
  3003. }
  3004. }
  3005. ],
  3006. "StatisticsHelper": {
  3007. "InstanceCounter": [
  3008. {
  3009. "Key": 4053150093067829293,
  3010. "Value": 5
  3011. },
  3012. {
  3013. "Key": 4199610336680704683,
  3014. "Value": 1
  3015. },
  3016. {
  3017. "Key": 4271004856738215795,
  3018. "Value": 1
  3019. },
  3020. {
  3021. "Key": 6786643696024575991,
  3022. "Value": 1
  3023. },
  3024. {
  3025. "Key": 10170594366650736137,
  3026. "Value": 1
  3027. },
  3028. {
  3029. "Key": 10204019744198319120,
  3030. "Value": 1
  3031. },
  3032. {
  3033. "Key": 14510727249773474412,
  3034. "Value": 5
  3035. }
  3036. ]
  3037. }
  3038. }
  3039. }
  3040. }
  3041. }
  3042. }