LY_SC_UnitTest_OperatorAdd.scriptcanvas 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 680160932485166
  9. },
  10. "Name": "scriptcanvas/unittests/ly_sc_unittest_operatoradd.scriptcanvas",
  11. "Components": {
  12. "Component_[17409414499611697377]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 17409414499611697377,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{0343B7B4-EC1F-44A6-9A9C-BBEF72A7F036}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 8
  26. },
  27. "isNullPointer": false,
  28. "$type": "Vector3",
  29. "value": [
  30. 1.0,
  31. 1.0,
  32. 1.0
  33. ],
  34. "label": "Vector3"
  35. },
  36. "VariableId": {
  37. "m_id": "{0343B7B4-EC1F-44A6-9A9C-BBEF72A7F036}"
  38. },
  39. "VariableName": "Ones"
  40. }
  41. },
  42. {
  43. "Key": {
  44. "m_id": "{3AB32B2F-B18D-4374-85A8-7EEFB080C678}"
  45. },
  46. "Value": {
  47. "Datum": {
  48. "isOverloadedStorage": false,
  49. "scriptCanvasType": {
  50. "m_type": 3
  51. },
  52. "isNullPointer": false,
  53. "$type": "double",
  54. "value": 3.0,
  55. "label": "Three"
  56. },
  57. "VariableId": {
  58. "m_id": "{3AB32B2F-B18D-4374-85A8-7EEFB080C678}"
  59. },
  60. "VariableName": "Three"
  61. }
  62. },
  63. {
  64. "Key": {
  65. "m_id": "{7E876596-0804-4B12-8652-3B1C7D0387F5}"
  66. },
  67. "Value": {
  68. "Datum": {
  69. "isOverloadedStorage": false,
  70. "scriptCanvasType": {
  71. "m_type": 5
  72. },
  73. "isNullPointer": false,
  74. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  75. "value": "world!",
  76. "label": "String"
  77. },
  78. "VariableId": {
  79. "m_id": "{7E876596-0804-4B12-8652-3B1C7D0387F5}"
  80. },
  81. "VariableName": "world!"
  82. }
  83. },
  84. {
  85. "Key": {
  86. "m_id": "{A709EADF-A7F1-4703-BFDD-853FC5B0E924}"
  87. },
  88. "Value": {
  89. "Datum": {
  90. "isOverloadedStorage": false,
  91. "scriptCanvasType": {
  92. "m_type": 5
  93. },
  94. "isNullPointer": false,
  95. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  96. "value": "Hello, world!",
  97. "label": "Hello, world!"
  98. },
  99. "VariableId": {
  100. "m_id": "{A709EADF-A7F1-4703-BFDD-853FC5B0E924}"
  101. },
  102. "VariableName": "Hello, world!"
  103. }
  104. },
  105. {
  106. "Key": {
  107. "m_id": "{B73E8B7F-08AF-45BD-B4C2-A447DC9A5192}"
  108. },
  109. "Value": {
  110. "Datum": {
  111. "isOverloadedStorage": false,
  112. "scriptCanvasType": {
  113. "m_type": 5
  114. },
  115. "isNullPointer": false,
  116. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  117. "value": "Hello, ",
  118. "label": "String"
  119. },
  120. "VariableId": {
  121. "m_id": "{B73E8B7F-08AF-45BD-B4C2-A447DC9A5192}"
  122. },
  123. "VariableName": "Hello, "
  124. }
  125. },
  126. {
  127. "Key": {
  128. "m_id": "{B8EB2D8E-2292-42C3-9694-15D365B53949}"
  129. },
  130. "Value": {
  131. "Datum": {
  132. "isOverloadedStorage": false,
  133. "scriptCanvasType": {
  134. "m_type": 8
  135. },
  136. "isNullPointer": false,
  137. "$type": "Vector3",
  138. "value": [
  139. 2.0,
  140. 2.0,
  141. 2.0
  142. ],
  143. "label": "Vector3"
  144. },
  145. "VariableId": {
  146. "m_id": "{B8EB2D8E-2292-42C3-9694-15D365B53949}"
  147. },
  148. "VariableName": "Twos"
  149. }
  150. },
  151. {
  152. "Key": {
  153. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  154. },
  155. "Value": {
  156. "Datum": {
  157. "isOverloadedStorage": false,
  158. "scriptCanvasType": {
  159. "m_type": 3
  160. },
  161. "isNullPointer": false,
  162. "$type": "double",
  163. "value": 2.0,
  164. "label": "Two"
  165. },
  166. "VariableId": {
  167. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  168. },
  169. "VariableName": "Two"
  170. }
  171. },
  172. {
  173. "Key": {
  174. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  175. },
  176. "Value": {
  177. "Datum": {
  178. "isOverloadedStorage": false,
  179. "scriptCanvasType": {
  180. "m_type": 3
  181. },
  182. "isNullPointer": false,
  183. "$type": "double",
  184. "value": 1.0,
  185. "label": "One"
  186. },
  187. "VariableId": {
  188. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  189. },
  190. "VariableName": "One"
  191. }
  192. }
  193. ]
  194. }
  195. },
  196. "Component_[208813563851134691]": {
  197. "$type": "EditorGraph",
  198. "Id": 208813563851134691,
  199. "m_graphData": {
  200. "m_nodes": [
  201. {
  202. "Id": {
  203. "id": 680203882158126
  204. },
  205. "Name": "SC-Node(Expect Equal)",
  206. "Components": {
  207. "Component_[10493616357337119777]": {
  208. "$type": "MethodOverloaded",
  209. "Id": 10493616357337119777,
  210. "Slots": [
  211. {
  212. "id": {
  213. "m_id": "{A5734357-A3AE-40BE-92E1-247EA332A924}"
  214. },
  215. "contracts": [
  216. {
  217. "$type": "SlotTypeContract"
  218. },
  219. null
  220. ],
  221. "slotName": "EntityID: 0",
  222. "DisplayDataType": {
  223. "m_type": 1
  224. },
  225. "Descriptor": {
  226. "ConnectionType": 1,
  227. "SlotType": 2
  228. }
  229. },
  230. {
  231. "IsOverload": true,
  232. "id": {
  233. "m_id": "{DD0C4EC3-E741-495D-A2C5-0EA3339410FF}"
  234. },
  235. "DynamicTypeOverride": 3,
  236. "contracts": [
  237. {
  238. "$type": "SlotTypeContract"
  239. },
  240. null
  241. ],
  242. "slotName": "Candidate",
  243. "toolTip": "left of ==",
  244. "DisplayDataType": {
  245. "m_type": 5
  246. },
  247. "Descriptor": {
  248. "ConnectionType": 1,
  249. "SlotType": 2
  250. }
  251. },
  252. {
  253. "IsOverload": true,
  254. "id": {
  255. "m_id": "{E0A4F911-3527-4298-9701-E1D475112C72}"
  256. },
  257. "DynamicTypeOverride": 3,
  258. "contracts": [
  259. {
  260. "$type": "SlotTypeContract"
  261. },
  262. null
  263. ],
  264. "slotName": "Reference",
  265. "toolTip": "right of ==",
  266. "DisplayDataType": {
  267. "m_type": 5
  268. },
  269. "Descriptor": {
  270. "ConnectionType": 1,
  271. "SlotType": 2
  272. },
  273. "IsReference": true,
  274. "VariableReference": {
  275. "m_id": "{A709EADF-A7F1-4703-BFDD-853FC5B0E924}"
  276. }
  277. },
  278. {
  279. "id": {
  280. "m_id": "{353338E6-88F8-485B-AC83-0C563E1BC412}"
  281. },
  282. "contracts": [
  283. {
  284. "$type": "SlotTypeContract"
  285. },
  286. null
  287. ],
  288. "slotName": "Report",
  289. "toolTip": "additional notes for the test report",
  290. "DisplayDataType": {
  291. "m_type": 5
  292. },
  293. "Descriptor": {
  294. "ConnectionType": 1,
  295. "SlotType": 2
  296. }
  297. },
  298. {
  299. "id": {
  300. "m_id": "{4EF42EE9-2FDC-4F02-ACE9-1A7A024A59F8}"
  301. },
  302. "contracts": [
  303. {
  304. "$type": "SlotTypeContract"
  305. }
  306. ],
  307. "slotName": "In",
  308. "Descriptor": {
  309. "ConnectionType": 1,
  310. "SlotType": 1
  311. }
  312. },
  313. {
  314. "id": {
  315. "m_id": "{EB3C0247-375C-4173-BE41-A95F7990D493}"
  316. },
  317. "contracts": [
  318. {
  319. "$type": "SlotTypeContract"
  320. }
  321. ],
  322. "slotName": "Out",
  323. "Descriptor": {
  324. "ConnectionType": 2,
  325. "SlotType": 1
  326. }
  327. }
  328. ],
  329. "Datums": [
  330. {
  331. "isOverloadedStorage": false,
  332. "scriptCanvasType": {
  333. "m_type": 1
  334. },
  335. "isNullPointer": false,
  336. "$type": "EntityId",
  337. "value": {
  338. "id": 4276206253
  339. },
  340. "label": "EntityID: 0"
  341. },
  342. {
  343. "isOverloadedStorage": false,
  344. "scriptCanvasType": {
  345. "m_type": 5
  346. },
  347. "isNullPointer": false,
  348. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  349. "value": "",
  350. "label": "Candidate"
  351. },
  352. {},
  353. {
  354. "isOverloadedStorage": false,
  355. "scriptCanvasType": {
  356. "m_type": 5
  357. },
  358. "isNullPointer": false,
  359. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  360. "value": "",
  361. "label": "Report"
  362. }
  363. ],
  364. "methodType": 2,
  365. "methodName": "Expect Equal",
  366. "className": "Unit Testing",
  367. "resultSlotIDs": [
  368. {}
  369. ],
  370. "prettyClassName": "Unit Testing",
  371. "orderedInputSlotIds": [
  372. {
  373. "m_id": "{A5734357-A3AE-40BE-92E1-247EA332A924}"
  374. },
  375. {
  376. "m_id": "{DD0C4EC3-E741-495D-A2C5-0EA3339410FF}"
  377. },
  378. {
  379. "m_id": "{E0A4F911-3527-4298-9701-E1D475112C72}"
  380. },
  381. {
  382. "m_id": "{353338E6-88F8-485B-AC83-0C563E1BC412}"
  383. }
  384. ]
  385. }
  386. }
  387. },
  388. {
  389. "Id": {
  390. "id": 680195292223534
  391. },
  392. "Name": "SC-Node(OperatorAdd)",
  393. "Components": {
  394. "Component_[14491052330189504326]": {
  395. "$type": "OperatorAdd",
  396. "Id": 14491052330189504326,
  397. "Slots": [
  398. {
  399. "id": {
  400. "m_id": "{8339D83C-672F-482C-955B-2824CB3434F5}"
  401. },
  402. "contracts": [
  403. {
  404. "$type": "SlotTypeContract"
  405. }
  406. ],
  407. "slotName": "In",
  408. "Descriptor": {
  409. "ConnectionType": 1,
  410. "SlotType": 1
  411. }
  412. },
  413. {
  414. "id": {
  415. "m_id": "{160E5F56-36CA-4C3C-9944-A6BDC258AF6F}"
  416. },
  417. "contracts": [
  418. {
  419. "$type": "SlotTypeContract"
  420. }
  421. ],
  422. "slotName": "Out",
  423. "Descriptor": {
  424. "ConnectionType": 2,
  425. "SlotType": 1
  426. }
  427. },
  428. {
  429. "id": {
  430. "m_id": "{57563C08-949E-4C7F-860A-DEF97615909A}"
  431. },
  432. "DynamicTypeOverride": 3,
  433. "contracts": [
  434. {
  435. "$type": "SlotTypeContract"
  436. },
  437. null,
  438. {
  439. "$type": "MathOperatorContract",
  440. "NativeTypes": [
  441. {
  442. "m_type": 3
  443. },
  444. {
  445. "m_type": 6
  446. },
  447. {
  448. "m_type": 8
  449. },
  450. {
  451. "m_type": 9
  452. },
  453. {
  454. "m_type": 10
  455. },
  456. {
  457. "m_type": 11
  458. },
  459. {
  460. "m_type": 12
  461. },
  462. {
  463. "m_type": 14
  464. },
  465. {
  466. "m_type": 15
  467. }
  468. ]
  469. }
  470. ],
  471. "slotName": "String",
  472. "toolTip": "An operand to use in performing the specified Operation",
  473. "DisplayDataType": {
  474. "m_type": 5
  475. },
  476. "DisplayGroup": {
  477. "Value": 1114760223
  478. },
  479. "Descriptor": {
  480. "ConnectionType": 1,
  481. "SlotType": 2
  482. },
  483. "DynamicGroup": {
  484. "Value": 1114760223
  485. },
  486. "IsReference": true,
  487. "VariableReference": {
  488. "m_id": "{B73E8B7F-08AF-45BD-B4C2-A447DC9A5192}"
  489. }
  490. },
  491. {
  492. "id": {
  493. "m_id": "{96344B8C-BFFA-45EA-B57B-12EEE0EC1C78}"
  494. },
  495. "DynamicTypeOverride": 3,
  496. "contracts": [
  497. {
  498. "$type": "SlotTypeContract"
  499. },
  500. null,
  501. {
  502. "$type": "MathOperatorContract",
  503. "NativeTypes": [
  504. {
  505. "m_type": 3
  506. },
  507. {
  508. "m_type": 6
  509. },
  510. {
  511. "m_type": 8
  512. },
  513. {
  514. "m_type": 9
  515. },
  516. {
  517. "m_type": 10
  518. },
  519. {
  520. "m_type": 11
  521. },
  522. {
  523. "m_type": 12
  524. },
  525. {
  526. "m_type": 14
  527. },
  528. {
  529. "m_type": 15
  530. }
  531. ]
  532. }
  533. ],
  534. "slotName": "String",
  535. "toolTip": "An operand to use in performing the specified Operation",
  536. "DisplayDataType": {
  537. "m_type": 5
  538. },
  539. "DisplayGroup": {
  540. "Value": 1114760223
  541. },
  542. "Descriptor": {
  543. "ConnectionType": 1,
  544. "SlotType": 2
  545. },
  546. "DynamicGroup": {
  547. "Value": 1114760223
  548. },
  549. "IsReference": true,
  550. "VariableReference": {
  551. "m_id": "{7E876596-0804-4B12-8652-3B1C7D0387F5}"
  552. }
  553. },
  554. {
  555. "id": {
  556. "m_id": "{EE0F7201-04EA-4154-AEDC-9296DD40F3DD}"
  557. },
  558. "DynamicTypeOverride": 3,
  559. "contracts": [
  560. {
  561. "$type": "SlotTypeContract"
  562. },
  563. {
  564. "$type": "MathOperatorContract",
  565. "NativeTypes": [
  566. {
  567. "m_type": 3
  568. },
  569. {
  570. "m_type": 6
  571. },
  572. {
  573. "m_type": 8
  574. },
  575. {
  576. "m_type": 9
  577. },
  578. {
  579. "m_type": 10
  580. },
  581. {
  582. "m_type": 11
  583. },
  584. {
  585. "m_type": 12
  586. },
  587. {
  588. "m_type": 14
  589. },
  590. {
  591. "m_type": 15
  592. }
  593. ]
  594. }
  595. ],
  596. "slotName": "Result",
  597. "toolTip": "The result of the specified operation",
  598. "DisplayDataType": {
  599. "m_type": 5
  600. },
  601. "DisplayGroup": {
  602. "Value": 1114760223
  603. },
  604. "Descriptor": {
  605. "ConnectionType": 2,
  606. "SlotType": 2
  607. },
  608. "DynamicGroup": {
  609. "Value": 1114760223
  610. }
  611. }
  612. ],
  613. "Datums": [
  614. {},
  615. {}
  616. ]
  617. }
  618. }
  619. },
  620. {
  621. "Id": {
  622. "id": 680182407321646
  623. },
  624. "Name": "SC-Node(OperatorAdd)",
  625. "Components": {
  626. "Component_[15317758348520476872]": {
  627. "$type": "OperatorAdd",
  628. "Id": 15317758348520476872,
  629. "Slots": [
  630. {
  631. "id": {
  632. "m_id": "{6608C620-9096-4760-AB79-C4B84F3CF8F1}"
  633. },
  634. "contracts": [
  635. {
  636. "$type": "SlotTypeContract"
  637. }
  638. ],
  639. "slotName": "In",
  640. "Descriptor": {
  641. "ConnectionType": 1,
  642. "SlotType": 1
  643. }
  644. },
  645. {
  646. "id": {
  647. "m_id": "{7DF6FC56-5767-4338-924D-0651B95D7006}"
  648. },
  649. "contracts": [
  650. {
  651. "$type": "SlotTypeContract"
  652. }
  653. ],
  654. "slotName": "Out",
  655. "Descriptor": {
  656. "ConnectionType": 2,
  657. "SlotType": 1
  658. }
  659. },
  660. {
  661. "id": {
  662. "m_id": "{A8A7A045-29BF-4BD1-B244-B5FFA8A48A31}"
  663. },
  664. "DynamicTypeOverride": 3,
  665. "contracts": [
  666. {
  667. "$type": "SlotTypeContract"
  668. },
  669. null,
  670. {
  671. "$type": "MathOperatorContract",
  672. "NativeTypes": [
  673. {
  674. "m_type": 3
  675. },
  676. {
  677. "m_type": 6
  678. },
  679. {
  680. "m_type": 8
  681. },
  682. {
  683. "m_type": 9
  684. },
  685. {
  686. "m_type": 10
  687. },
  688. {
  689. "m_type": 11
  690. },
  691. {
  692. "m_type": 12
  693. },
  694. {
  695. "m_type": 14
  696. },
  697. {
  698. "m_type": 15
  699. }
  700. ]
  701. }
  702. ],
  703. "slotName": "Vector3",
  704. "toolTip": "An operand to use in performing the specified Operation",
  705. "DisplayDataType": {
  706. "m_type": 8
  707. },
  708. "DisplayGroup": {
  709. "Value": 1114760223
  710. },
  711. "Descriptor": {
  712. "ConnectionType": 1,
  713. "SlotType": 2
  714. },
  715. "DynamicGroup": {
  716. "Value": 1114760223
  717. },
  718. "IsReference": true,
  719. "VariableReference": {
  720. "m_id": "{0343B7B4-EC1F-44A6-9A9C-BBEF72A7F036}"
  721. }
  722. },
  723. {
  724. "id": {
  725. "m_id": "{785B41B0-A974-44D4-BFA9-14840AC00DF6}"
  726. },
  727. "DynamicTypeOverride": 3,
  728. "contracts": [
  729. {
  730. "$type": "SlotTypeContract"
  731. },
  732. null,
  733. {
  734. "$type": "MathOperatorContract",
  735. "NativeTypes": [
  736. {
  737. "m_type": 3
  738. },
  739. {
  740. "m_type": 6
  741. },
  742. {
  743. "m_type": 8
  744. },
  745. {
  746. "m_type": 9
  747. },
  748. {
  749. "m_type": 10
  750. },
  751. {
  752. "m_type": 11
  753. },
  754. {
  755. "m_type": 12
  756. },
  757. {
  758. "m_type": 14
  759. },
  760. {
  761. "m_type": 15
  762. }
  763. ]
  764. }
  765. ],
  766. "slotName": "Vector3",
  767. "toolTip": "An operand to use in performing the specified Operation",
  768. "DisplayDataType": {
  769. "m_type": 8
  770. },
  771. "DisplayGroup": {
  772. "Value": 1114760223
  773. },
  774. "Descriptor": {
  775. "ConnectionType": 1,
  776. "SlotType": 2
  777. },
  778. "DynamicGroup": {
  779. "Value": 1114760223
  780. },
  781. "IsReference": true,
  782. "VariableReference": {
  783. "m_id": "{0343B7B4-EC1F-44A6-9A9C-BBEF72A7F036}"
  784. }
  785. },
  786. {
  787. "id": {
  788. "m_id": "{4F82C50E-B1FE-4439-B7EE-E2503F34A07D}"
  789. },
  790. "DynamicTypeOverride": 3,
  791. "contracts": [
  792. {
  793. "$type": "SlotTypeContract"
  794. },
  795. {
  796. "$type": "MathOperatorContract",
  797. "NativeTypes": [
  798. {
  799. "m_type": 3
  800. },
  801. {
  802. "m_type": 6
  803. },
  804. {
  805. "m_type": 8
  806. },
  807. {
  808. "m_type": 9
  809. },
  810. {
  811. "m_type": 10
  812. },
  813. {
  814. "m_type": 11
  815. },
  816. {
  817. "m_type": 12
  818. },
  819. {
  820. "m_type": 14
  821. },
  822. {
  823. "m_type": 15
  824. }
  825. ]
  826. }
  827. ],
  828. "slotName": "Result",
  829. "toolTip": "The result of the specified operation",
  830. "DisplayDataType": {
  831. "m_type": 8
  832. },
  833. "DisplayGroup": {
  834. "Value": 1114760223
  835. },
  836. "Descriptor": {
  837. "ConnectionType": 2,
  838. "SlotType": 2
  839. },
  840. "DynamicGroup": {
  841. "Value": 1114760223
  842. }
  843. }
  844. ],
  845. "Datums": [
  846. {},
  847. {}
  848. ]
  849. }
  850. }
  851. },
  852. {
  853. "Id": {
  854. "id": 680178112354350
  855. },
  856. "Name": "SC-Node(Start)",
  857. "Components": {
  858. "Component_[16815389459213621466]": {
  859. "$type": "Start",
  860. "Id": 16815389459213621466,
  861. "Slots": [
  862. {
  863. "id": {
  864. "m_id": "{CC5808F3-2F02-47F1-AB85-15A91B5FE983}"
  865. },
  866. "contracts": [
  867. {
  868. "$type": "SlotTypeContract"
  869. }
  870. ],
  871. "slotName": "Out",
  872. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  873. "Descriptor": {
  874. "ConnectionType": 2,
  875. "SlotType": 1
  876. }
  877. }
  878. ]
  879. }
  880. }
  881. },
  882. {
  883. "Id": {
  884. "id": 680173817387054
  885. },
  886. "Name": "SC-Node(Expect Equal)",
  887. "Components": {
  888. "Component_[17364724952310731553]": {
  889. "$type": "MethodOverloaded",
  890. "Id": 17364724952310731553,
  891. "Slots": [
  892. {
  893. "id": {
  894. "m_id": "{F2EB58CA-D065-4A50-B745-4B12C6C49596}"
  895. },
  896. "contracts": [
  897. {
  898. "$type": "SlotTypeContract"
  899. },
  900. null
  901. ],
  902. "slotName": "EntityID: 0",
  903. "DisplayDataType": {
  904. "m_type": 1
  905. },
  906. "Descriptor": {
  907. "ConnectionType": 1,
  908. "SlotType": 2
  909. }
  910. },
  911. {
  912. "IsOverload": true,
  913. "id": {
  914. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  915. },
  916. "DynamicTypeOverride": 3,
  917. "contracts": [
  918. {
  919. "$type": "SlotTypeContract"
  920. },
  921. null
  922. ],
  923. "slotName": "Candidate",
  924. "toolTip": "left of ==",
  925. "DisplayDataType": {
  926. "m_type": 8
  927. },
  928. "Descriptor": {
  929. "ConnectionType": 1,
  930. "SlotType": 2
  931. }
  932. },
  933. {
  934. "IsOverload": true,
  935. "id": {
  936. "m_id": "{E8524D8D-D942-4A2D-9F08-0B25A7B40B2C}"
  937. },
  938. "DynamicTypeOverride": 3,
  939. "contracts": [
  940. {
  941. "$type": "SlotTypeContract"
  942. },
  943. null
  944. ],
  945. "slotName": "Reference",
  946. "toolTip": "right of ==",
  947. "DisplayDataType": {
  948. "m_type": 8
  949. },
  950. "Descriptor": {
  951. "ConnectionType": 1,
  952. "SlotType": 2
  953. },
  954. "IsReference": true,
  955. "VariableReference": {
  956. "m_id": "{B8EB2D8E-2292-42C3-9694-15D365B53949}"
  957. }
  958. },
  959. {
  960. "id": {
  961. "m_id": "{A472CE45-6192-4C25-BB96-E6E7F750F282}"
  962. },
  963. "contracts": [
  964. {
  965. "$type": "SlotTypeContract"
  966. },
  967. null
  968. ],
  969. "slotName": "Report",
  970. "toolTip": "additional notes for the test report",
  971. "DisplayDataType": {
  972. "m_type": 5
  973. },
  974. "Descriptor": {
  975. "ConnectionType": 1,
  976. "SlotType": 2
  977. }
  978. },
  979. {
  980. "id": {
  981. "m_id": "{B43BC4FB-F2A6-4D69-B8BF-63E311B9A81E}"
  982. },
  983. "contracts": [
  984. {
  985. "$type": "SlotTypeContract"
  986. }
  987. ],
  988. "slotName": "In",
  989. "Descriptor": {
  990. "ConnectionType": 1,
  991. "SlotType": 1
  992. }
  993. },
  994. {
  995. "id": {
  996. "m_id": "{D89CC575-5CC1-4847-91A2-2FD0EEA5D136}"
  997. },
  998. "contracts": [
  999. {
  1000. "$type": "SlotTypeContract"
  1001. }
  1002. ],
  1003. "slotName": "Out",
  1004. "Descriptor": {
  1005. "ConnectionType": 2,
  1006. "SlotType": 1
  1007. }
  1008. }
  1009. ],
  1010. "Datums": [
  1011. {
  1012. "isOverloadedStorage": false,
  1013. "scriptCanvasType": {
  1014. "m_type": 1
  1015. },
  1016. "isNullPointer": false,
  1017. "$type": "EntityId",
  1018. "value": {
  1019. "id": 4276206253
  1020. },
  1021. "label": "EntityID: 0"
  1022. },
  1023. {
  1024. "isOverloadedStorage": false,
  1025. "scriptCanvasType": {
  1026. "m_type": 8
  1027. },
  1028. "isNullPointer": false,
  1029. "$type": "Vector3",
  1030. "value": [
  1031. 0.0,
  1032. 0.0,
  1033. 0.0
  1034. ],
  1035. "label": "Candidate"
  1036. },
  1037. {},
  1038. {
  1039. "isOverloadedStorage": false,
  1040. "scriptCanvasType": {
  1041. "m_type": 5
  1042. },
  1043. "isNullPointer": false,
  1044. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1045. "value": "",
  1046. "label": "Report"
  1047. }
  1048. ],
  1049. "methodType": 2,
  1050. "methodName": "Expect Equal",
  1051. "className": "Unit Testing",
  1052. "resultSlotIDs": [
  1053. {}
  1054. ],
  1055. "prettyClassName": "Unit Testing",
  1056. "orderedInputSlotIds": [
  1057. {
  1058. "m_id": "{F2EB58CA-D065-4A50-B745-4B12C6C49596}"
  1059. },
  1060. {
  1061. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  1062. },
  1063. {
  1064. "m_id": "{E8524D8D-D942-4A2D-9F08-0B25A7B40B2C}"
  1065. },
  1066. {
  1067. "m_id": "{A472CE45-6192-4C25-BB96-E6E7F750F282}"
  1068. }
  1069. ]
  1070. }
  1071. }
  1072. },
  1073. {
  1074. "Id": {
  1075. "id": 680186702288942
  1076. },
  1077. "Name": "SC-Node(Expect Equal)",
  1078. "Components": {
  1079. "Component_[17364724952310731553]": {
  1080. "$type": "MethodOverloaded",
  1081. "Id": 17364724952310731553,
  1082. "Slots": [
  1083. {
  1084. "id": {
  1085. "m_id": "{F2EB58CA-D065-4A50-B745-4B12C6C49596}"
  1086. },
  1087. "contracts": [
  1088. {
  1089. "$type": "SlotTypeContract"
  1090. },
  1091. null
  1092. ],
  1093. "slotName": "EntityID: 0",
  1094. "DisplayDataType": {
  1095. "m_type": 1
  1096. },
  1097. "Descriptor": {
  1098. "ConnectionType": 1,
  1099. "SlotType": 2
  1100. }
  1101. },
  1102. {
  1103. "IsOverload": true,
  1104. "id": {
  1105. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  1106. },
  1107. "DynamicTypeOverride": 3,
  1108. "contracts": [
  1109. {
  1110. "$type": "SlotTypeContract"
  1111. },
  1112. null
  1113. ],
  1114. "slotName": "Candidate",
  1115. "toolTip": "left of ==",
  1116. "DisplayDataType": {
  1117. "m_type": 3
  1118. },
  1119. "Descriptor": {
  1120. "ConnectionType": 1,
  1121. "SlotType": 2
  1122. }
  1123. },
  1124. {
  1125. "IsOverload": true,
  1126. "id": {
  1127. "m_id": "{E8524D8D-D942-4A2D-9F08-0B25A7B40B2C}"
  1128. },
  1129. "DynamicTypeOverride": 3,
  1130. "contracts": [
  1131. {
  1132. "$type": "SlotTypeContract"
  1133. },
  1134. null
  1135. ],
  1136. "slotName": "Reference",
  1137. "toolTip": "right of ==",
  1138. "DisplayDataType": {
  1139. "m_type": 3
  1140. },
  1141. "Descriptor": {
  1142. "ConnectionType": 1,
  1143. "SlotType": 2
  1144. },
  1145. "IsReference": true,
  1146. "VariableReference": {
  1147. "m_id": "{3AB32B2F-B18D-4374-85A8-7EEFB080C678}"
  1148. }
  1149. },
  1150. {
  1151. "id": {
  1152. "m_id": "{A472CE45-6192-4C25-BB96-E6E7F750F282}"
  1153. },
  1154. "contracts": [
  1155. {
  1156. "$type": "SlotTypeContract"
  1157. },
  1158. null
  1159. ],
  1160. "slotName": "Report",
  1161. "toolTip": "additional notes for the test report",
  1162. "DisplayDataType": {
  1163. "m_type": 5
  1164. },
  1165. "Descriptor": {
  1166. "ConnectionType": 1,
  1167. "SlotType": 2
  1168. }
  1169. },
  1170. {
  1171. "id": {
  1172. "m_id": "{B43BC4FB-F2A6-4D69-B8BF-63E311B9A81E}"
  1173. },
  1174. "contracts": [
  1175. {
  1176. "$type": "SlotTypeContract"
  1177. }
  1178. ],
  1179. "slotName": "In",
  1180. "Descriptor": {
  1181. "ConnectionType": 1,
  1182. "SlotType": 1
  1183. }
  1184. },
  1185. {
  1186. "id": {
  1187. "m_id": "{D89CC575-5CC1-4847-91A2-2FD0EEA5D136}"
  1188. },
  1189. "contracts": [
  1190. {
  1191. "$type": "SlotTypeContract"
  1192. }
  1193. ],
  1194. "slotName": "Out",
  1195. "Descriptor": {
  1196. "ConnectionType": 2,
  1197. "SlotType": 1
  1198. }
  1199. }
  1200. ],
  1201. "Datums": [
  1202. {
  1203. "isOverloadedStorage": false,
  1204. "scriptCanvasType": {
  1205. "m_type": 1
  1206. },
  1207. "isNullPointer": false,
  1208. "$type": "EntityId",
  1209. "value": {
  1210. "id": 4276206253
  1211. },
  1212. "label": "EntityID: 0"
  1213. },
  1214. {
  1215. "isOverloadedStorage": false,
  1216. "scriptCanvasType": {
  1217. "m_type": 3
  1218. },
  1219. "isNullPointer": false,
  1220. "$type": "double",
  1221. "value": 0.0,
  1222. "label": "Candidate"
  1223. },
  1224. {},
  1225. {
  1226. "isOverloadedStorage": false,
  1227. "scriptCanvasType": {
  1228. "m_type": 5
  1229. },
  1230. "isNullPointer": false,
  1231. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1232. "value": "",
  1233. "label": "Report"
  1234. }
  1235. ],
  1236. "methodType": 2,
  1237. "methodName": "Expect Equal",
  1238. "className": "Unit Testing",
  1239. "resultSlotIDs": [
  1240. {}
  1241. ],
  1242. "prettyClassName": "Unit Testing",
  1243. "orderedInputSlotIds": [
  1244. {
  1245. "m_id": "{F2EB58CA-D065-4A50-B745-4B12C6C49596}"
  1246. },
  1247. {
  1248. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  1249. },
  1250. {
  1251. "m_id": "{E8524D8D-D942-4A2D-9F08-0B25A7B40B2C}"
  1252. },
  1253. {
  1254. "m_id": "{A472CE45-6192-4C25-BB96-E6E7F750F282}"
  1255. }
  1256. ]
  1257. }
  1258. }
  1259. },
  1260. {
  1261. "Id": {
  1262. "id": 680199587190830
  1263. },
  1264. "Name": "SC-Node(Expect Equal)",
  1265. "Components": {
  1266. "Component_[17364724952310731553]": {
  1267. "$type": "MethodOverloaded",
  1268. "Id": 17364724952310731553,
  1269. "Slots": [
  1270. {
  1271. "id": {
  1272. "m_id": "{F2EB58CA-D065-4A50-B745-4B12C6C49596}"
  1273. },
  1274. "contracts": [
  1275. {
  1276. "$type": "SlotTypeContract"
  1277. },
  1278. null
  1279. ],
  1280. "slotName": "EntityID: 0",
  1281. "DisplayDataType": {
  1282. "m_type": 1
  1283. },
  1284. "Descriptor": {
  1285. "ConnectionType": 1,
  1286. "SlotType": 2
  1287. }
  1288. },
  1289. {
  1290. "IsOverload": true,
  1291. "id": {
  1292. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  1293. },
  1294. "DynamicTypeOverride": 3,
  1295. "contracts": [
  1296. {
  1297. "$type": "SlotTypeContract"
  1298. },
  1299. null
  1300. ],
  1301. "slotName": "Candidate",
  1302. "toolTip": "left of ==",
  1303. "DisplayDataType": {
  1304. "m_type": 3
  1305. },
  1306. "Descriptor": {
  1307. "ConnectionType": 1,
  1308. "SlotType": 2
  1309. }
  1310. },
  1311. {
  1312. "IsOverload": true,
  1313. "id": {
  1314. "m_id": "{E8524D8D-D942-4A2D-9F08-0B25A7B40B2C}"
  1315. },
  1316. "DynamicTypeOverride": 3,
  1317. "contracts": [
  1318. {
  1319. "$type": "SlotTypeContract"
  1320. },
  1321. null
  1322. ],
  1323. "slotName": "Reference",
  1324. "toolTip": "right of ==",
  1325. "DisplayDataType": {
  1326. "m_type": 3
  1327. },
  1328. "Descriptor": {
  1329. "ConnectionType": 1,
  1330. "SlotType": 2
  1331. },
  1332. "IsReference": true,
  1333. "VariableReference": {
  1334. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  1335. }
  1336. },
  1337. {
  1338. "id": {
  1339. "m_id": "{A472CE45-6192-4C25-BB96-E6E7F750F282}"
  1340. },
  1341. "contracts": [
  1342. {
  1343. "$type": "SlotTypeContract"
  1344. },
  1345. null
  1346. ],
  1347. "slotName": "Report",
  1348. "toolTip": "additional notes for the test report",
  1349. "DisplayDataType": {
  1350. "m_type": 5
  1351. },
  1352. "Descriptor": {
  1353. "ConnectionType": 1,
  1354. "SlotType": 2
  1355. }
  1356. },
  1357. {
  1358. "id": {
  1359. "m_id": "{B43BC4FB-F2A6-4D69-B8BF-63E311B9A81E}"
  1360. },
  1361. "contracts": [
  1362. {
  1363. "$type": "SlotTypeContract"
  1364. }
  1365. ],
  1366. "slotName": "In",
  1367. "Descriptor": {
  1368. "ConnectionType": 1,
  1369. "SlotType": 1
  1370. }
  1371. },
  1372. {
  1373. "id": {
  1374. "m_id": "{D89CC575-5CC1-4847-91A2-2FD0EEA5D136}"
  1375. },
  1376. "contracts": [
  1377. {
  1378. "$type": "SlotTypeContract"
  1379. }
  1380. ],
  1381. "slotName": "Out",
  1382. "Descriptor": {
  1383. "ConnectionType": 2,
  1384. "SlotType": 1
  1385. }
  1386. }
  1387. ],
  1388. "Datums": [
  1389. {
  1390. "isOverloadedStorage": false,
  1391. "scriptCanvasType": {
  1392. "m_type": 1
  1393. },
  1394. "isNullPointer": false,
  1395. "$type": "EntityId",
  1396. "value": {
  1397. "id": 4276206253
  1398. },
  1399. "label": "EntityID: 0"
  1400. },
  1401. {
  1402. "isOverloadedStorage": false,
  1403. "scriptCanvasType": {
  1404. "m_type": 3
  1405. },
  1406. "isNullPointer": false,
  1407. "$type": "double",
  1408. "value": 0.0,
  1409. "label": "Candidate"
  1410. },
  1411. {},
  1412. {
  1413. "isOverloadedStorage": false,
  1414. "scriptCanvasType": {
  1415. "m_type": 5
  1416. },
  1417. "isNullPointer": false,
  1418. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1419. "value": "",
  1420. "label": "Report"
  1421. }
  1422. ],
  1423. "methodType": 2,
  1424. "methodName": "Expect Equal",
  1425. "className": "Unit Testing",
  1426. "resultSlotIDs": [
  1427. {}
  1428. ],
  1429. "prettyClassName": "Unit Testing",
  1430. "orderedInputSlotIds": [
  1431. {
  1432. "m_id": "{F2EB58CA-D065-4A50-B745-4B12C6C49596}"
  1433. },
  1434. {
  1435. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  1436. },
  1437. {
  1438. "m_id": "{E8524D8D-D942-4A2D-9F08-0B25A7B40B2C}"
  1439. },
  1440. {
  1441. "m_id": "{A472CE45-6192-4C25-BB96-E6E7F750F282}"
  1442. }
  1443. ]
  1444. }
  1445. }
  1446. },
  1447. {
  1448. "Id": {
  1449. "id": 680190997256238
  1450. },
  1451. "Name": "SC-Node(Mark Complete)",
  1452. "Components": {
  1453. "Component_[2334497669986108458]": {
  1454. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1455. "Id": 2334497669986108458,
  1456. "Slots": [
  1457. {
  1458. "isVisibile": false,
  1459. "id": {
  1460. "m_id": "{605C970E-E760-44C7-AE93-06CE1C92DE77}"
  1461. },
  1462. "contracts": [
  1463. {
  1464. "$type": "SlotTypeContract"
  1465. },
  1466. null
  1467. ],
  1468. "slotName": "EntityID: 0",
  1469. "Descriptor": {
  1470. "ConnectionType": 1,
  1471. "SlotType": 2
  1472. }
  1473. },
  1474. {
  1475. "id": {
  1476. "m_id": "{8433B8B2-E73B-488D-9758-FFE3F6519C8A}"
  1477. },
  1478. "contracts": [
  1479. {
  1480. "$type": "SlotTypeContract"
  1481. },
  1482. null
  1483. ],
  1484. "slotName": "Report",
  1485. "toolTip": "additional notes for the test report",
  1486. "Descriptor": {
  1487. "ConnectionType": 1,
  1488. "SlotType": 2
  1489. }
  1490. },
  1491. {
  1492. "id": {
  1493. "m_id": "{76D0BB2A-077E-4ED4-AC30-A58947DD542A}"
  1494. },
  1495. "contracts": [
  1496. {
  1497. "$type": "SlotTypeContract"
  1498. }
  1499. ],
  1500. "slotName": "In",
  1501. "Descriptor": {
  1502. "ConnectionType": 1,
  1503. "SlotType": 1
  1504. }
  1505. },
  1506. {
  1507. "id": {
  1508. "m_id": "{652315E2-83FD-4953-AC94-CA8DE02D0CBD}"
  1509. },
  1510. "contracts": [
  1511. {
  1512. "$type": "SlotTypeContract"
  1513. }
  1514. ],
  1515. "slotName": "Out",
  1516. "Descriptor": {
  1517. "ConnectionType": 2,
  1518. "SlotType": 1
  1519. }
  1520. }
  1521. ],
  1522. "Datums": [
  1523. {
  1524. "isOverloadedStorage": false,
  1525. "scriptCanvasType": {
  1526. "m_type": 1
  1527. },
  1528. "isNullPointer": false,
  1529. "$type": "EntityId",
  1530. "value": {
  1531. "id": 4276206253
  1532. }
  1533. },
  1534. {
  1535. "isOverloadedStorage": false,
  1536. "scriptCanvasType": {
  1537. "m_type": 5
  1538. },
  1539. "isNullPointer": false,
  1540. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1541. "value": "",
  1542. "label": "Report"
  1543. }
  1544. ],
  1545. "methodType": 2,
  1546. "methodName": "Mark Complete",
  1547. "className": "Unit Testing",
  1548. "resultSlotIDs": [
  1549. {}
  1550. ],
  1551. "prettyClassName": "Unit Testing"
  1552. }
  1553. }
  1554. },
  1555. {
  1556. "Id": {
  1557. "id": 680165227452462
  1558. },
  1559. "Name": "SC-Node(OperatorAdd)",
  1560. "Components": {
  1561. "Component_[5312172074770685432]": {
  1562. "$type": "OperatorAdd",
  1563. "Id": 5312172074770685432,
  1564. "Slots": [
  1565. {
  1566. "id": {
  1567. "m_id": "{FC5CA699-9027-4A70-BD52-8B52E577D35B}"
  1568. },
  1569. "contracts": [
  1570. {
  1571. "$type": "SlotTypeContract"
  1572. }
  1573. ],
  1574. "slotName": "In",
  1575. "Descriptor": {
  1576. "ConnectionType": 1,
  1577. "SlotType": 1
  1578. }
  1579. },
  1580. {
  1581. "id": {
  1582. "m_id": "{007CDE3E-6B7C-4B1C-9652-E3AA2DB8E646}"
  1583. },
  1584. "contracts": [
  1585. {
  1586. "$type": "SlotTypeContract"
  1587. }
  1588. ],
  1589. "slotName": "Out",
  1590. "Descriptor": {
  1591. "ConnectionType": 2,
  1592. "SlotType": 1
  1593. }
  1594. },
  1595. {
  1596. "id": {
  1597. "m_id": "{7E8C889C-62AD-45EE-A0F0-386702D1F6E7}"
  1598. },
  1599. "DynamicTypeOverride": 3,
  1600. "contracts": [
  1601. {
  1602. "$type": "SlotTypeContract"
  1603. },
  1604. null,
  1605. {
  1606. "$type": "MathOperatorContract",
  1607. "NativeTypes": [
  1608. {
  1609. "m_type": 3
  1610. },
  1611. {
  1612. "m_type": 6
  1613. },
  1614. {
  1615. "m_type": 8
  1616. },
  1617. {
  1618. "m_type": 9
  1619. },
  1620. {
  1621. "m_type": 10
  1622. },
  1623. {
  1624. "m_type": 11
  1625. },
  1626. {
  1627. "m_type": 12
  1628. },
  1629. {
  1630. "m_type": 14
  1631. },
  1632. {
  1633. "m_type": 15
  1634. }
  1635. ]
  1636. }
  1637. ],
  1638. "slotName": "Number",
  1639. "toolTip": "An operand to use in performing the specified Operation",
  1640. "DisplayDataType": {
  1641. "m_type": 3
  1642. },
  1643. "DisplayGroup": {
  1644. "Value": 1114760223
  1645. },
  1646. "Descriptor": {
  1647. "ConnectionType": 1,
  1648. "SlotType": 2
  1649. },
  1650. "DynamicGroup": {
  1651. "Value": 1114760223
  1652. },
  1653. "IsReference": true,
  1654. "VariableReference": {
  1655. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  1656. }
  1657. },
  1658. {
  1659. "id": {
  1660. "m_id": "{89CB9582-283C-490F-9ADD-AA589379D563}"
  1661. },
  1662. "DynamicTypeOverride": 3,
  1663. "contracts": [
  1664. {
  1665. "$type": "SlotTypeContract"
  1666. },
  1667. null,
  1668. {
  1669. "$type": "MathOperatorContract",
  1670. "NativeTypes": [
  1671. {
  1672. "m_type": 3
  1673. },
  1674. {
  1675. "m_type": 6
  1676. },
  1677. {
  1678. "m_type": 8
  1679. },
  1680. {
  1681. "m_type": 9
  1682. },
  1683. {
  1684. "m_type": 10
  1685. },
  1686. {
  1687. "m_type": 11
  1688. },
  1689. {
  1690. "m_type": 12
  1691. },
  1692. {
  1693. "m_type": 14
  1694. },
  1695. {
  1696. "m_type": 15
  1697. }
  1698. ]
  1699. }
  1700. ],
  1701. "slotName": "Number",
  1702. "toolTip": "An operand to use in performing the specified Operation",
  1703. "DisplayDataType": {
  1704. "m_type": 3
  1705. },
  1706. "DisplayGroup": {
  1707. "Value": 1114760223
  1708. },
  1709. "Descriptor": {
  1710. "ConnectionType": 1,
  1711. "SlotType": 2
  1712. },
  1713. "DynamicGroup": {
  1714. "Value": 1114760223
  1715. },
  1716. "IsReference": true,
  1717. "VariableReference": {
  1718. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  1719. }
  1720. },
  1721. {
  1722. "id": {
  1723. "m_id": "{DF84B15A-4882-439E-BD88-D56350AABE6F}"
  1724. },
  1725. "DynamicTypeOverride": 3,
  1726. "contracts": [
  1727. {
  1728. "$type": "SlotTypeContract"
  1729. },
  1730. {
  1731. "$type": "MathOperatorContract",
  1732. "NativeTypes": [
  1733. {
  1734. "m_type": 3
  1735. },
  1736. {
  1737. "m_type": 6
  1738. },
  1739. {
  1740. "m_type": 8
  1741. },
  1742. {
  1743. "m_type": 9
  1744. },
  1745. {
  1746. "m_type": 10
  1747. },
  1748. {
  1749. "m_type": 11
  1750. },
  1751. {
  1752. "m_type": 12
  1753. },
  1754. {
  1755. "m_type": 14
  1756. },
  1757. {
  1758. "m_type": 15
  1759. }
  1760. ]
  1761. }
  1762. ],
  1763. "slotName": "Result",
  1764. "toolTip": "The result of the specified operation",
  1765. "DisplayDataType": {
  1766. "m_type": 3
  1767. },
  1768. "DisplayGroup": {
  1769. "Value": 1114760223
  1770. },
  1771. "Descriptor": {
  1772. "ConnectionType": 2,
  1773. "SlotType": 2
  1774. },
  1775. "DynamicGroup": {
  1776. "Value": 1114760223
  1777. }
  1778. }
  1779. ],
  1780. "Datums": [
  1781. {},
  1782. {
  1783. "isOverloadedStorage": false,
  1784. "scriptCanvasType": {
  1785. "m_type": 3
  1786. },
  1787. "isNullPointer": false,
  1788. "$type": "double",
  1789. "value": 0.0
  1790. }
  1791. ]
  1792. }
  1793. }
  1794. },
  1795. {
  1796. "Id": {
  1797. "id": 680169522419758
  1798. },
  1799. "Name": "SC-Node(OperatorAdd)",
  1800. "Components": {
  1801. "Component_[5312172074770685432]": {
  1802. "$type": "OperatorAdd",
  1803. "Id": 5312172074770685432,
  1804. "Slots": [
  1805. {
  1806. "id": {
  1807. "m_id": "{FC5CA699-9027-4A70-BD52-8B52E577D35B}"
  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": "{007CDE3E-6B7C-4B1C-9652-E3AA2DB8E646}"
  1823. },
  1824. "contracts": [
  1825. {
  1826. "$type": "SlotTypeContract"
  1827. }
  1828. ],
  1829. "slotName": "Out",
  1830. "Descriptor": {
  1831. "ConnectionType": 2,
  1832. "SlotType": 1
  1833. }
  1834. },
  1835. {
  1836. "id": {
  1837. "m_id": "{7E8C889C-62AD-45EE-A0F0-386702D1F6E7}"
  1838. },
  1839. "DynamicTypeOverride": 3,
  1840. "contracts": [
  1841. {
  1842. "$type": "SlotTypeContract"
  1843. },
  1844. null,
  1845. {
  1846. "$type": "MathOperatorContract",
  1847. "NativeTypes": [
  1848. {
  1849. "m_type": 3
  1850. },
  1851. {
  1852. "m_type": 6
  1853. },
  1854. {
  1855. "m_type": 8
  1856. },
  1857. {
  1858. "m_type": 9
  1859. },
  1860. {
  1861. "m_type": 10
  1862. },
  1863. {
  1864. "m_type": 11
  1865. },
  1866. {
  1867. "m_type": 12
  1868. },
  1869. {
  1870. "m_type": 14
  1871. },
  1872. {
  1873. "m_type": 15
  1874. }
  1875. ]
  1876. }
  1877. ],
  1878. "slotName": "Number",
  1879. "toolTip": "An operand to use in performing the specified Operation",
  1880. "DisplayDataType": {
  1881. "m_type": 3
  1882. },
  1883. "DisplayGroup": {
  1884. "Value": 1114760223
  1885. },
  1886. "Descriptor": {
  1887. "ConnectionType": 1,
  1888. "SlotType": 2
  1889. },
  1890. "DynamicGroup": {
  1891. "Value": 1114760223
  1892. },
  1893. "IsReference": true,
  1894. "VariableReference": {
  1895. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  1896. }
  1897. },
  1898. {
  1899. "id": {
  1900. "m_id": "{89CB9582-283C-490F-9ADD-AA589379D563}"
  1901. },
  1902. "DynamicTypeOverride": 3,
  1903. "contracts": [
  1904. {
  1905. "$type": "SlotTypeContract"
  1906. },
  1907. null,
  1908. {
  1909. "$type": "MathOperatorContract",
  1910. "NativeTypes": [
  1911. {
  1912. "m_type": 3
  1913. },
  1914. {
  1915. "m_type": 6
  1916. },
  1917. {
  1918. "m_type": 8
  1919. },
  1920. {
  1921. "m_type": 9
  1922. },
  1923. {
  1924. "m_type": 10
  1925. },
  1926. {
  1927. "m_type": 11
  1928. },
  1929. {
  1930. "m_type": 12
  1931. },
  1932. {
  1933. "m_type": 14
  1934. },
  1935. {
  1936. "m_type": 15
  1937. }
  1938. ]
  1939. }
  1940. ],
  1941. "slotName": "Number",
  1942. "toolTip": "An operand to use in performing the specified Operation",
  1943. "DisplayDataType": {
  1944. "m_type": 3
  1945. },
  1946. "DisplayGroup": {
  1947. "Value": 1114760223
  1948. },
  1949. "Descriptor": {
  1950. "ConnectionType": 1,
  1951. "SlotType": 2
  1952. },
  1953. "DynamicGroup": {
  1954. "Value": 1114760223
  1955. },
  1956. "IsReference": true,
  1957. "VariableReference": {
  1958. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  1959. }
  1960. },
  1961. {
  1962. "id": {
  1963. "m_id": "{DF84B15A-4882-439E-BD88-D56350AABE6F}"
  1964. },
  1965. "DynamicTypeOverride": 3,
  1966. "contracts": [
  1967. {
  1968. "$type": "SlotTypeContract"
  1969. },
  1970. {
  1971. "$type": "MathOperatorContract",
  1972. "NativeTypes": [
  1973. {
  1974. "m_type": 3
  1975. },
  1976. {
  1977. "m_type": 6
  1978. },
  1979. {
  1980. "m_type": 8
  1981. },
  1982. {
  1983. "m_type": 9
  1984. },
  1985. {
  1986. "m_type": 10
  1987. },
  1988. {
  1989. "m_type": 11
  1990. },
  1991. {
  1992. "m_type": 12
  1993. },
  1994. {
  1995. "m_type": 14
  1996. },
  1997. {
  1998. "m_type": 15
  1999. }
  2000. ]
  2001. }
  2002. ],
  2003. "slotName": "Result",
  2004. "toolTip": "The result of the specified operation",
  2005. "DisplayDataType": {
  2006. "m_type": 3
  2007. },
  2008. "DisplayGroup": {
  2009. "Value": 1114760223
  2010. },
  2011. "Descriptor": {
  2012. "ConnectionType": 2,
  2013. "SlotType": 2
  2014. },
  2015. "DynamicGroup": {
  2016. "Value": 1114760223
  2017. }
  2018. },
  2019. {
  2020. "id": {
  2021. "m_id": "{205B59A9-6557-4567-9142-95513419DFDB}"
  2022. },
  2023. "DynamicTypeOverride": 3,
  2024. "contracts": [
  2025. {
  2026. "$type": "SlotTypeContract"
  2027. },
  2028. null,
  2029. {
  2030. "$type": "MathOperatorContract",
  2031. "NativeTypes": [
  2032. {
  2033. "m_type": 3
  2034. },
  2035. {
  2036. "m_type": 6
  2037. },
  2038. {
  2039. "m_type": 8
  2040. },
  2041. {
  2042. "m_type": 9
  2043. },
  2044. {
  2045. "m_type": 10
  2046. },
  2047. {
  2048. "m_type": 11
  2049. },
  2050. {
  2051. "m_type": 12
  2052. },
  2053. {
  2054. "m_type": 14
  2055. },
  2056. {
  2057. "m_type": 15
  2058. }
  2059. ]
  2060. }
  2061. ],
  2062. "slotName": "Number",
  2063. "toolTip": "An operand to use in performing the specified Operation",
  2064. "DisplayDataType": {
  2065. "m_type": 3
  2066. },
  2067. "DisplayGroup": {
  2068. "Value": 1114760223
  2069. },
  2070. "Descriptor": {
  2071. "ConnectionType": 1,
  2072. "SlotType": 2
  2073. },
  2074. "DynamicGroup": {
  2075. "Value": 1114760223
  2076. }
  2077. }
  2078. ],
  2079. "Datums": [
  2080. {},
  2081. {
  2082. "isOverloadedStorage": false,
  2083. "scriptCanvasType": {
  2084. "m_type": 3
  2085. },
  2086. "isNullPointer": false,
  2087. "$type": "double",
  2088. "value": 0.0
  2089. },
  2090. {
  2091. "isOverloadedStorage": false,
  2092. "scriptCanvasType": {
  2093. "m_type": 3
  2094. },
  2095. "isNullPointer": false,
  2096. "$type": "double",
  2097. "value": 1.0,
  2098. "label": "Number"
  2099. }
  2100. ]
  2101. }
  2102. }
  2103. }
  2104. ],
  2105. "m_connections": [
  2106. {
  2107. "Id": {
  2108. "id": 680208177125422
  2109. },
  2110. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Add (+): In)",
  2111. "Components": {
  2112. "Component_[11539387442250676826]": {
  2113. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2114. "Id": 11539387442250676826,
  2115. "sourceEndpoint": {
  2116. "nodeId": {
  2117. "id": 680178112354350
  2118. },
  2119. "slotId": {
  2120. "m_id": "{CC5808F3-2F02-47F1-AB85-15A91B5FE983}"
  2121. }
  2122. },
  2123. "targetEndpoint": {
  2124. "nodeId": {
  2125. "id": 680165227452462
  2126. },
  2127. "slotId": {
  2128. "m_id": "{FC5CA699-9027-4A70-BD52-8B52E577D35B}"
  2129. }
  2130. }
  2131. }
  2132. }
  2133. },
  2134. {
  2135. "Id": {
  2136. "id": 680212472092718
  2137. },
  2138. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Add (+): In)",
  2139. "Components": {
  2140. "Component_[11252210837656030788]": {
  2141. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2142. "Id": 11252210837656030788,
  2143. "sourceEndpoint": {
  2144. "nodeId": {
  2145. "id": 680165227452462
  2146. },
  2147. "slotId": {
  2148. "m_id": "{007CDE3E-6B7C-4B1C-9652-E3AA2DB8E646}"
  2149. }
  2150. },
  2151. "targetEndpoint": {
  2152. "nodeId": {
  2153. "id": 680182407321646
  2154. },
  2155. "slotId": {
  2156. "m_id": "{6608C620-9096-4760-AB79-C4B84F3CF8F1}"
  2157. }
  2158. }
  2159. }
  2160. }
  2161. },
  2162. {
  2163. "Id": {
  2164. "id": 680216767060014
  2165. },
  2166. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  2167. "Components": {
  2168. "Component_[10464405312008358426]": {
  2169. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2170. "Id": 10464405312008358426,
  2171. "sourceEndpoint": {
  2172. "nodeId": {
  2173. "id": 680199587190830
  2174. },
  2175. "slotId": {
  2176. "m_id": "{D89CC575-5CC1-4847-91A2-2FD0EEA5D136}"
  2177. }
  2178. },
  2179. "targetEndpoint": {
  2180. "nodeId": {
  2181. "id": 680173817387054
  2182. },
  2183. "slotId": {
  2184. "m_id": "{B43BC4FB-F2A6-4D69-B8BF-63E311B9A81E}"
  2185. }
  2186. }
  2187. }
  2188. }
  2189. },
  2190. {
  2191. "Id": {
  2192. "id": 680221062027310
  2193. },
  2194. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Expect Equal: Candidate :-()",
  2195. "Components": {
  2196. "Component_[12852062092123409937]": {
  2197. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2198. "Id": 12852062092123409937,
  2199. "sourceEndpoint": {
  2200. "nodeId": {
  2201. "id": 680182407321646
  2202. },
  2203. "slotId": {
  2204. "m_id": "{4F82C50E-B1FE-4439-B7EE-E2503F34A07D}"
  2205. }
  2206. },
  2207. "targetEndpoint": {
  2208. "nodeId": {
  2209. "id": 680173817387054
  2210. },
  2211. "slotId": {
  2212. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  2213. }
  2214. }
  2215. }
  2216. }
  2217. },
  2218. {
  2219. "Id": {
  2220. "id": 680225356994606
  2221. },
  2222. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Expect Equal: Candidate :-()",
  2223. "Components": {
  2224. "Component_[3489917578171825613]": {
  2225. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2226. "Id": 3489917578171825613,
  2227. "sourceEndpoint": {
  2228. "nodeId": {
  2229. "id": 680165227452462
  2230. },
  2231. "slotId": {
  2232. "m_id": "{DF84B15A-4882-439E-BD88-D56350AABE6F}"
  2233. }
  2234. },
  2235. "targetEndpoint": {
  2236. "nodeId": {
  2237. "id": 680199587190830
  2238. },
  2239. "slotId": {
  2240. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  2241. }
  2242. }
  2243. }
  2244. }
  2245. },
  2246. {
  2247. "Id": {
  2248. "id": 680229651961902
  2249. },
  2250. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Add (+): In)",
  2251. "Components": {
  2252. "Component_[10848005256212018436]": {
  2253. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2254. "Id": 10848005256212018436,
  2255. "sourceEndpoint": {
  2256. "nodeId": {
  2257. "id": 680182407321646
  2258. },
  2259. "slotId": {
  2260. "m_id": "{7DF6FC56-5767-4338-924D-0651B95D7006}"
  2261. }
  2262. },
  2263. "targetEndpoint": {
  2264. "nodeId": {
  2265. "id": 680169522419758
  2266. },
  2267. "slotId": {
  2268. "m_id": "{FC5CA699-9027-4A70-BD52-8B52E577D35B}"
  2269. }
  2270. }
  2271. }
  2272. }
  2273. },
  2274. {
  2275. "Id": {
  2276. "id": 680233946929198
  2277. },
  2278. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  2279. "Components": {
  2280. "Component_[1902603200338358630]": {
  2281. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2282. "Id": 1902603200338358630,
  2283. "sourceEndpoint": {
  2284. "nodeId": {
  2285. "id": 680173817387054
  2286. },
  2287. "slotId": {
  2288. "m_id": "{D89CC575-5CC1-4847-91A2-2FD0EEA5D136}"
  2289. }
  2290. },
  2291. "targetEndpoint": {
  2292. "nodeId": {
  2293. "id": 680186702288942
  2294. },
  2295. "slotId": {
  2296. "m_id": "{B43BC4FB-F2A6-4D69-B8BF-63E311B9A81E}"
  2297. }
  2298. }
  2299. }
  2300. }
  2301. },
  2302. {
  2303. "Id": {
  2304. "id": 680238241896494
  2305. },
  2306. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Add (+): In)",
  2307. "Components": {
  2308. "Component_[15152115390066329887]": {
  2309. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2310. "Id": 15152115390066329887,
  2311. "sourceEndpoint": {
  2312. "nodeId": {
  2313. "id": 680169522419758
  2314. },
  2315. "slotId": {
  2316. "m_id": "{007CDE3E-6B7C-4B1C-9652-E3AA2DB8E646}"
  2317. }
  2318. },
  2319. "targetEndpoint": {
  2320. "nodeId": {
  2321. "id": 680195292223534
  2322. },
  2323. "slotId": {
  2324. "m_id": "{8339D83C-672F-482C-955B-2824CB3434F5}"
  2325. }
  2326. }
  2327. }
  2328. }
  2329. },
  2330. {
  2331. "Id": {
  2332. "id": 680242536863790
  2333. },
  2334. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Expect Equal: Candidate :-()",
  2335. "Components": {
  2336. "Component_[9705461686931866057]": {
  2337. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2338. "Id": 9705461686931866057,
  2339. "sourceEndpoint": {
  2340. "nodeId": {
  2341. "id": 680169522419758
  2342. },
  2343. "slotId": {
  2344. "m_id": "{DF84B15A-4882-439E-BD88-D56350AABE6F}"
  2345. }
  2346. },
  2347. "targetEndpoint": {
  2348. "nodeId": {
  2349. "id": 680186702288942
  2350. },
  2351. "slotId": {
  2352. "m_id": "{32E369D2-90D7-48E6-BB9D-4743AA89F052}"
  2353. }
  2354. }
  2355. }
  2356. }
  2357. },
  2358. {
  2359. "Id": {
  2360. "id": 680246831831086
  2361. },
  2362. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  2363. "Components": {
  2364. "Component_[3357082660430040346]": {
  2365. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2366. "Id": 3357082660430040346,
  2367. "sourceEndpoint": {
  2368. "nodeId": {
  2369. "id": 680186702288942
  2370. },
  2371. "slotId": {
  2372. "m_id": "{D89CC575-5CC1-4847-91A2-2FD0EEA5D136}"
  2373. }
  2374. },
  2375. "targetEndpoint": {
  2376. "nodeId": {
  2377. "id": 680203882158126
  2378. },
  2379. "slotId": {
  2380. "m_id": "{4EF42EE9-2FDC-4F02-ACE9-1A7A024A59F8}"
  2381. }
  2382. }
  2383. }
  2384. }
  2385. },
  2386. {
  2387. "Id": {
  2388. "id": 680251126798382
  2389. },
  2390. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  2391. "Components": {
  2392. "Component_[303103367490304946]": {
  2393. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2394. "Id": 303103367490304946,
  2395. "sourceEndpoint": {
  2396. "nodeId": {
  2397. "id": 680203882158126
  2398. },
  2399. "slotId": {
  2400. "m_id": "{EB3C0247-375C-4173-BE41-A95F7990D493}"
  2401. }
  2402. },
  2403. "targetEndpoint": {
  2404. "nodeId": {
  2405. "id": 680190997256238
  2406. },
  2407. "slotId": {
  2408. "m_id": "{76D0BB2A-077E-4ED4-AC30-A58947DD542A}"
  2409. }
  2410. }
  2411. }
  2412. }
  2413. },
  2414. {
  2415. "Id": {
  2416. "id": 680255421765678
  2417. },
  2418. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Expect Equal: Candidate :-()",
  2419. "Components": {
  2420. "Component_[11886204315349076544]": {
  2421. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2422. "Id": 11886204315349076544,
  2423. "sourceEndpoint": {
  2424. "nodeId": {
  2425. "id": 680195292223534
  2426. },
  2427. "slotId": {
  2428. "m_id": "{EE0F7201-04EA-4154-AEDC-9296DD40F3DD}"
  2429. }
  2430. },
  2431. "targetEndpoint": {
  2432. "nodeId": {
  2433. "id": 680203882158126
  2434. },
  2435. "slotId": {
  2436. "m_id": "{DD0C4EC3-E741-495D-A2C5-0EA3339410FF}"
  2437. }
  2438. }
  2439. }
  2440. }
  2441. },
  2442. {
  2443. "Id": {
  2444. "id": 680259716732974
  2445. },
  2446. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Expect Equal: In)",
  2447. "Components": {
  2448. "Component_[8455650679693448885]": {
  2449. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2450. "Id": 8455650679693448885,
  2451. "sourceEndpoint": {
  2452. "nodeId": {
  2453. "id": 680195292223534
  2454. },
  2455. "slotId": {
  2456. "m_id": "{160E5F56-36CA-4C3C-9944-A6BDC258AF6F}"
  2457. }
  2458. },
  2459. "targetEndpoint": {
  2460. "nodeId": {
  2461. "id": 680199587190830
  2462. },
  2463. "slotId": {
  2464. "m_id": "{B43BC4FB-F2A6-4D69-B8BF-63E311B9A81E}"
  2465. }
  2466. }
  2467. }
  2468. }
  2469. }
  2470. ]
  2471. },
  2472. "m_assetType": "{B0C9DD95-3701-0000-7005-000000000000}",
  2473. "versionData": {
  2474. "_grammarVersion": 1,
  2475. "_runtimeVersion": 1,
  2476. "_fileVersion": 1
  2477. },
  2478. "m_variableCounter": 15,
  2479. "GraphCanvasData": [
  2480. {
  2481. "Key": {
  2482. "id": 680160932485166
  2483. },
  2484. "Value": {
  2485. "ComponentData": {
  2486. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2487. "$type": "SceneComponentSaveData",
  2488. "ViewParams": {
  2489. "Scale": 0.7207393,
  2490. "AnchorX": -140.13389587402344,
  2491. "AnchorY": -556.3731689453125
  2492. }
  2493. }
  2494. }
  2495. }
  2496. },
  2497. {
  2498. "Key": {
  2499. "id": 680165227452462
  2500. },
  2501. "Value": {
  2502. "ComponentData": {
  2503. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2504. "$type": "GeneralNodeTitleComponentSaveData",
  2505. "PaletteOverride": "MathNodeTitlePalette"
  2506. },
  2507. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2508. "$type": "GeometrySaveData",
  2509. "Position": [
  2510. 380.0,
  2511. -540.0
  2512. ]
  2513. },
  2514. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2515. "$type": "StylingComponentSaveData",
  2516. "SubStyle": ".math"
  2517. },
  2518. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2519. "$type": "PersistentIdComponentSaveData",
  2520. "PersistentId": "{38956171-EBEA-4024-9C85-49B9E41BF8F0}"
  2521. }
  2522. }
  2523. }
  2524. },
  2525. {
  2526. "Key": {
  2527. "id": 680169522419758
  2528. },
  2529. "Value": {
  2530. "ComponentData": {
  2531. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2532. "$type": "GeneralNodeTitleComponentSaveData",
  2533. "PaletteOverride": "MathNodeTitlePalette"
  2534. },
  2535. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2536. "$type": "GeometrySaveData",
  2537. "Position": [
  2538. 1040.0,
  2539. -540.0
  2540. ]
  2541. },
  2542. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2543. "$type": "StylingComponentSaveData",
  2544. "SubStyle": ".math"
  2545. },
  2546. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2547. "$type": "PersistentIdComponentSaveData",
  2548. "PersistentId": "{777888A0-D478-4631-9CF7-6B4C4A108926}"
  2549. }
  2550. }
  2551. }
  2552. },
  2553. {
  2554. "Key": {
  2555. "id": 680173817387054
  2556. },
  2557. "Value": {
  2558. "ComponentData": {
  2559. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2560. "$type": "GeneralNodeTitleComponentSaveData",
  2561. "PaletteOverride": "MethodNodeTitlePalette"
  2562. },
  2563. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2564. "$type": "GeometrySaveData",
  2565. "Position": [
  2566. 480.0,
  2567. -280.0
  2568. ]
  2569. },
  2570. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2571. "$type": "StylingComponentSaveData",
  2572. "SubStyle": ".method"
  2573. },
  2574. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2575. "$type": "PersistentIdComponentSaveData",
  2576. "PersistentId": "{58C79BF9-C85D-4FA7-9AAF-5F9640B94D25}"
  2577. }
  2578. }
  2579. }
  2580. },
  2581. {
  2582. "Key": {
  2583. "id": 680178112354350
  2584. },
  2585. "Value": {
  2586. "ComponentData": {
  2587. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2588. "$type": "GeneralNodeTitleComponentSaveData",
  2589. "PaletteOverride": "TimeNodeTitlePalette"
  2590. },
  2591. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2592. "$type": "GeometrySaveData",
  2593. "Position": [
  2594. 240.0,
  2595. -540.0
  2596. ]
  2597. },
  2598. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2599. "$type": "StylingComponentSaveData",
  2600. "SubStyle": ".time"
  2601. },
  2602. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2603. "$type": "PersistentIdComponentSaveData",
  2604. "PersistentId": "{9C20F353-185D-4DCB-9246-4EA8FFCE3976}"
  2605. }
  2606. }
  2607. }
  2608. },
  2609. {
  2610. "Key": {
  2611. "id": 680182407321646
  2612. },
  2613. "Value": {
  2614. "ComponentData": {
  2615. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2616. "$type": "GeneralNodeTitleComponentSaveData",
  2617. "PaletteOverride": "MathNodeTitlePalette"
  2618. },
  2619. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2620. "$type": "GeometrySaveData",
  2621. "Position": [
  2622. 720.0,
  2623. -540.0
  2624. ]
  2625. },
  2626. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2627. "$type": "StylingComponentSaveData",
  2628. "SubStyle": ".math"
  2629. },
  2630. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2631. "$type": "PersistentIdComponentSaveData",
  2632. "PersistentId": "{DFCF7EA1-1735-46B1-B1C4-000340D778B8}"
  2633. }
  2634. }
  2635. }
  2636. },
  2637. {
  2638. "Key": {
  2639. "id": 680186702288942
  2640. },
  2641. "Value": {
  2642. "ComponentData": {
  2643. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2644. "$type": "GeneralNodeTitleComponentSaveData",
  2645. "PaletteOverride": "MethodNodeTitlePalette"
  2646. },
  2647. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2648. "$type": "GeometrySaveData",
  2649. "Position": [
  2650. 820.0,
  2651. -280.0
  2652. ]
  2653. },
  2654. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2655. "$type": "StylingComponentSaveData",
  2656. "SubStyle": ".method"
  2657. },
  2658. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2659. "$type": "PersistentIdComponentSaveData",
  2660. "PersistentId": "{1AAC6C25-C076-42F9-BC61-927504E8E1D7}"
  2661. }
  2662. }
  2663. }
  2664. },
  2665. {
  2666. "Key": {
  2667. "id": 680190997256238
  2668. },
  2669. "Value": {
  2670. "ComponentData": {
  2671. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2672. "$type": "GeneralNodeTitleComponentSaveData",
  2673. "PaletteOverride": "MethodNodeTitlePalette"
  2674. },
  2675. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2676. "$type": "GeometrySaveData",
  2677. "Position": [
  2678. 1380.0,
  2679. -280.0
  2680. ]
  2681. },
  2682. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2683. "$type": "StylingComponentSaveData",
  2684. "SubStyle": ".method"
  2685. },
  2686. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2687. "$type": "PersistentIdComponentSaveData",
  2688. "PersistentId": "{DC7D5E88-8919-4CD0-921F-27B4AEF0A1E0}"
  2689. }
  2690. }
  2691. }
  2692. },
  2693. {
  2694. "Key": {
  2695. "id": 680195292223534
  2696. },
  2697. "Value": {
  2698. "ComponentData": {
  2699. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2700. "$type": "GeneralNodeTitleComponentSaveData",
  2701. "PaletteOverride": "MathNodeTitlePalette"
  2702. },
  2703. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2704. "$type": "GeometrySaveData",
  2705. "Position": [
  2706. 1360.0,
  2707. -540.0
  2708. ]
  2709. },
  2710. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2711. "$type": "StylingComponentSaveData",
  2712. "SubStyle": ".math"
  2713. },
  2714. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2715. "$type": "PersistentIdComponentSaveData",
  2716. "PersistentId": "{98964C27-5F36-4050-96CA-69F205AD9437}"
  2717. }
  2718. }
  2719. }
  2720. },
  2721. {
  2722. "Key": {
  2723. "id": 680199587190830
  2724. },
  2725. "Value": {
  2726. "ComponentData": {
  2727. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2728. "$type": "GeneralNodeTitleComponentSaveData",
  2729. "PaletteOverride": "MethodNodeTitlePalette"
  2730. },
  2731. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2732. "$type": "GeometrySaveData",
  2733. "Position": [
  2734. 200.0,
  2735. -280.0
  2736. ]
  2737. },
  2738. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2739. "$type": "StylingComponentSaveData",
  2740. "SubStyle": ".method"
  2741. },
  2742. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2743. "$type": "PersistentIdComponentSaveData",
  2744. "PersistentId": "{DA84A975-08E1-438A-A591-EC67888144FB}"
  2745. }
  2746. }
  2747. }
  2748. },
  2749. {
  2750. "Key": {
  2751. "id": 680203882158126
  2752. },
  2753. "Value": {
  2754. "ComponentData": {
  2755. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2756. "$type": "GeneralNodeTitleComponentSaveData",
  2757. "PaletteOverride": "MethodNodeTitlePalette"
  2758. },
  2759. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2760. "$type": "GeometrySaveData",
  2761. "Position": [
  2762. 1100.0,
  2763. -280.0
  2764. ]
  2765. },
  2766. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2767. "$type": "StylingComponentSaveData",
  2768. "SubStyle": ".method"
  2769. },
  2770. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2771. "$type": "PersistentIdComponentSaveData",
  2772. "PersistentId": "{31C29156-A544-4B4F-94D4-6275B10811B7}"
  2773. }
  2774. }
  2775. }
  2776. }
  2777. ],
  2778. "StatisticsHelper": {
  2779. "InstanceCounter": [
  2780. {
  2781. "Key": 524494764786010043,
  2782. "Value": 4
  2783. },
  2784. {
  2785. "Key": 1244476766431948410,
  2786. "Value": 4
  2787. },
  2788. {
  2789. "Key": 4199610336680704683,
  2790. "Value": 1
  2791. },
  2792. {
  2793. "Key": 6840657073857873079,
  2794. "Value": 1
  2795. }
  2796. ]
  2797. }
  2798. }
  2799. }
  2800. }
  2801. }
  2802. }