Test_EBusStringResultCStyle2StringView.scriptcanvas 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 524088129062055
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[11084390970734573399]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 11084390970734573399,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{05800989-F40E-44BC-B1E0-E40B0C6D0830}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 5
  26. },
  27. "isNullPointer": false,
  28. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  29. "value": "sending c style",
  30. "label": "reference 1"
  31. },
  32. "VariableId": {
  33. "m_id": "{05800989-F40E-44BC-B1E0-E40B0C6D0830}"
  34. },
  35. "VariableName": "reference 1"
  36. }
  37. },
  38. {
  39. "Key": {
  40. "m_id": "{0BFB4118-D867-4AF8-B760-F9138D2DCDCE}"
  41. },
  42. "Value": {
  43. "Datum": {
  44. "isOverloadedStorage": false,
  45. "scriptCanvasType": {
  46. "m_type": 5
  47. },
  48. "isNullPointer": false,
  49. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  50. "value": "receive c style",
  51. "label": "reference 2"
  52. },
  53. "VariableId": {
  54. "m_id": "{0BFB4118-D867-4AF8-B760-F9138D2DCDCE}"
  55. },
  56. "VariableName": "reference 2"
  57. }
  58. },
  59. {
  60. "Key": {
  61. "m_id": "{BA161989-D2C8-4AEE-B136-4060B1F8C15B}"
  62. },
  63. "Value": {
  64. "Datum": {
  65. "isOverloadedStorage": false,
  66. "scriptCanvasType": {
  67. "m_type": 13
  68. },
  69. "isNullPointer": false,
  70. "$type": "Crc32",
  71. "label": "Variable 3"
  72. },
  73. "VariableId": {
  74. "m_id": "{BA161989-D2C8-4AEE-B136-4060B1F8C15B}"
  75. },
  76. "VariableName": "Variable 3"
  77. }
  78. }
  79. ]
  80. }
  81. },
  82. "Component_[14126136094189464305]": {
  83. "$type": "EditorGraph",
  84. "Id": 14126136094189464305,
  85. "m_graphData": {
  86. "m_nodes": [
  87. {
  88. "Id": {
  89. "id": 524126783767719
  90. },
  91. "Name": "SC-Node(CStyleToStringView)",
  92. "Components": {
  93. "Component_[11584736973033800866]": {
  94. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  95. "Id": 11584736973033800866,
  96. "Slots": [
  97. {
  98. "id": {
  99. "m_id": "{EAA3E717-4D8F-43A2-8516-D5D5827274BC}"
  100. },
  101. "contracts": [
  102. {
  103. "$type": "SlotTypeContract"
  104. }
  105. ],
  106. "slotName": "Result: String",
  107. "DisplayDataType": {
  108. "m_type": 5
  109. },
  110. "Descriptor": {
  111. "ConnectionType": 2,
  112. "SlotType": 2
  113. },
  114. "DataType": 1
  115. },
  116. {
  117. "id": {
  118. "m_id": "{FDD1E2E0-C6F5-4716-9209-66BE95B2EF54}"
  119. },
  120. "contracts": [
  121. {
  122. "$type": "SlotTypeContract"
  123. },
  124. {
  125. "$type": "RestrictedTypeContract"
  126. },
  127. null
  128. ],
  129. "slotName": "String: 0",
  130. "Descriptor": {
  131. "ConnectionType": 1,
  132. "SlotType": 2
  133. },
  134. "DataType": 1
  135. },
  136. {
  137. "id": {
  138. "m_id": "{B5AB5F48-A1FC-4210-AA33-41846B1B4E1B}"
  139. },
  140. "contracts": [
  141. {
  142. "$type": "SlotTypeContract"
  143. }
  144. ],
  145. "slotName": "In",
  146. "Descriptor": {
  147. "ConnectionType": 1,
  148. "SlotType": 1
  149. }
  150. },
  151. {
  152. "id": {
  153. "m_id": "{2A4AD545-8BAE-4EE8-A4D7-F83E5B703EFC}"
  154. },
  155. "contracts": [
  156. {
  157. "$type": "SlotTypeContract"
  158. }
  159. ],
  160. "slotName": "Out",
  161. "Descriptor": {
  162. "ConnectionType": 2,
  163. "SlotType": 1
  164. }
  165. }
  166. ],
  167. "Datums": [
  168. {
  169. "isOverloadedStorage": false,
  170. "scriptCanvasType": {
  171. "m_type": 5
  172. },
  173. "isNullPointer": false,
  174. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  175. "value": "",
  176. "label": "String: 0"
  177. }
  178. ],
  179. "methodType": 0,
  180. "methodName": "CStyleToStringView",
  181. "className": "EBus",
  182. "resultSlotIDs": [
  183. {
  184. "m_id": "{EAA3E717-4D8F-43A2-8516-D5D5827274BC}"
  185. }
  186. ],
  187. "prettyClassName": "EBus"
  188. }
  189. }
  190. },
  191. {
  192. "Id": {
  193. "id": 524122488800423
  194. },
  195. "Name": "SC Node(GetVariable)",
  196. "Components": {
  197. "Component_[13389693943843674634]": {
  198. "$type": "GetVariableNode",
  199. "Id": 13389693943843674634,
  200. "Slots": [
  201. {
  202. "id": {
  203. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  204. },
  205. "contracts": [
  206. {
  207. "$type": "SlotTypeContract"
  208. }
  209. ],
  210. "slotName": "In",
  211. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  212. "Descriptor": {
  213. "ConnectionType": 1,
  214. "SlotType": 1
  215. }
  216. },
  217. {
  218. "id": {
  219. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  220. },
  221. "contracts": [
  222. {
  223. "$type": "SlotTypeContract"
  224. }
  225. ],
  226. "slotName": "Out",
  227. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  228. "Descriptor": {
  229. "ConnectionType": 2,
  230. "SlotType": 1
  231. }
  232. },
  233. {
  234. "id": {
  235. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  236. },
  237. "contracts": [
  238. {
  239. "$type": "SlotTypeContract"
  240. }
  241. ],
  242. "slotName": "String",
  243. "DisplayDataType": {
  244. "m_type": 5
  245. },
  246. "Descriptor": {
  247. "ConnectionType": 2,
  248. "SlotType": 2
  249. },
  250. "DataType": 1
  251. }
  252. ],
  253. "m_variableId": {
  254. "m_id": "{05800989-F40E-44BC-B1E0-E40B0C6D0830}"
  255. },
  256. "m_variableDataOutSlotId": {
  257. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  258. }
  259. }
  260. }
  261. },
  262. {
  263. "Id": {
  264. "id": 524131078735015
  265. },
  266. "Name": "SC Node(GetVariable)",
  267. "Components": {
  268. "Component_[13389693943843674634]": {
  269. "$type": "GetVariableNode",
  270. "Id": 13389693943843674634,
  271. "Slots": [
  272. {
  273. "id": {
  274. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  275. },
  276. "contracts": [
  277. {
  278. "$type": "SlotTypeContract"
  279. }
  280. ],
  281. "slotName": "In",
  282. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  283. "Descriptor": {
  284. "ConnectionType": 1,
  285. "SlotType": 1
  286. }
  287. },
  288. {
  289. "id": {
  290. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  291. },
  292. "contracts": [
  293. {
  294. "$type": "SlotTypeContract"
  295. }
  296. ],
  297. "slotName": "Out",
  298. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  299. "Descriptor": {
  300. "ConnectionType": 2,
  301. "SlotType": 1
  302. }
  303. },
  304. {
  305. "id": {
  306. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  307. },
  308. "contracts": [
  309. {
  310. "$type": "SlotTypeContract"
  311. }
  312. ],
  313. "slotName": "String",
  314. "DisplayDataType": {
  315. "m_type": 5
  316. },
  317. "Descriptor": {
  318. "ConnectionType": 2,
  319. "SlotType": 2
  320. },
  321. "DataType": 1
  322. }
  323. ],
  324. "m_variableId": {
  325. "m_id": "{05800989-F40E-44BC-B1E0-E40B0C6D0830}"
  326. },
  327. "m_variableDataOutSlotId": {
  328. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  329. }
  330. }
  331. }
  332. },
  333. {
  334. "Id": {
  335. "id": 524113898865831
  336. },
  337. "Name": "1592806085095",
  338. "Components": {
  339. "Component_[14838170308236977533]": {
  340. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  341. "Id": 14838170308236977533,
  342. "Slots": [
  343. {
  344. "isVisibile": false,
  345. "id": {
  346. "m_id": "{61276CCD-CD15-4024-A537-90F85FB57569}"
  347. },
  348. "contracts": [
  349. {
  350. "$type": "SlotTypeContract"
  351. },
  352. null
  353. ],
  354. "slotName": "EntityID: 0",
  355. "Descriptor": {
  356. "ConnectionType": 1,
  357. "SlotType": 2
  358. },
  359. "DataType": 1
  360. },
  361. {
  362. "id": {
  363. "m_id": "{0F20CF51-7DEB-44DD-9E4E-F6F41B24E4AA}"
  364. },
  365. "contracts": [
  366. {
  367. "$type": "SlotTypeContract"
  368. },
  369. null
  370. ],
  371. "slotName": "Report",
  372. "toolTip": "additional notes for the test report",
  373. "DisplayDataType": {
  374. "m_type": 5
  375. },
  376. "Descriptor": {
  377. "ConnectionType": 1,
  378. "SlotType": 2
  379. },
  380. "DataType": 1
  381. },
  382. {
  383. "id": {
  384. "m_id": "{27DC5831-C1A4-43CF-B2E3-990D455C3836}"
  385. },
  386. "contracts": [
  387. {
  388. "$type": "SlotTypeContract"
  389. }
  390. ],
  391. "slotName": "In",
  392. "Descriptor": {
  393. "ConnectionType": 1,
  394. "SlotType": 1
  395. }
  396. },
  397. {
  398. "id": {
  399. "m_id": "{7EA3DD76-4DF8-48F1-9F0F-C8038B6CE38F}"
  400. },
  401. "contracts": [
  402. {
  403. "$type": "SlotTypeContract"
  404. }
  405. ],
  406. "slotName": "Out",
  407. "Descriptor": {
  408. "ConnectionType": 2,
  409. "SlotType": 1
  410. }
  411. }
  412. ],
  413. "Datums": [
  414. {
  415. "isOverloadedStorage": false,
  416. "scriptCanvasType": {
  417. "m_type": 1
  418. },
  419. "isNullPointer": false,
  420. "$type": "EntityId",
  421. "value": {
  422. "id": 4276206253
  423. }
  424. },
  425. {
  426. "isOverloadedStorage": false,
  427. "scriptCanvasType": {
  428. "m_type": 5
  429. },
  430. "isNullPointer": false,
  431. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  432. "value": "",
  433. "label": "Report"
  434. }
  435. ],
  436. "methodType": 2,
  437. "methodName": "Mark Complete",
  438. "className": "Unit Testing",
  439. "resultSlotIDs": [
  440. {}
  441. ],
  442. "prettyClassName": "Unit Testing"
  443. }
  444. }
  445. },
  446. {
  447. "Id": {
  448. "id": 524109603898535
  449. },
  450. "Name": "18595648880340",
  451. "Components": {
  452. "Component_[17718918180501657951]": {
  453. "$type": "MethodOverloaded",
  454. "Id": 17718918180501657951,
  455. "Slots": [
  456. {
  457. "isVisibile": false,
  458. "id": {
  459. "m_id": "{AFC093B8-5756-468D-A1A1-8667CFB54A36}"
  460. },
  461. "contracts": [
  462. {
  463. "$type": "SlotTypeContract"
  464. },
  465. null
  466. ],
  467. "slotName": "EntityID: 0",
  468. "DisplayDataType": {
  469. "m_type": 1
  470. },
  471. "Descriptor": {
  472. "ConnectionType": 1,
  473. "SlotType": 2
  474. },
  475. "DataType": 1
  476. },
  477. {
  478. "id": {
  479. "m_id": "{3222CE85-FBB9-4584-9B5D-A615F6B1A78D}"
  480. },
  481. "DynamicTypeOverride": 1,
  482. "contracts": [
  483. {
  484. "$type": "SlotTypeContract"
  485. },
  486. null,
  487. {
  488. "$type": "OverloadContract"
  489. }
  490. ],
  491. "slotName": "Candidate",
  492. "toolTip": "left of ==",
  493. "DisplayDataType": {
  494. "m_type": 5
  495. },
  496. "Descriptor": {
  497. "ConnectionType": 1,
  498. "SlotType": 2
  499. },
  500. "DataType": 1
  501. },
  502. {
  503. "id": {
  504. "m_id": "{FB980411-2988-4AD9-9DCD-202812BA7FEC}"
  505. },
  506. "DynamicTypeOverride": 1,
  507. "contracts": [
  508. {
  509. "$type": "SlotTypeContract"
  510. },
  511. null,
  512. {
  513. "$type": "OverloadContract"
  514. }
  515. ],
  516. "slotName": "Reference",
  517. "toolTip": "right of ==",
  518. "DisplayDataType": {
  519. "m_type": 5
  520. },
  521. "Descriptor": {
  522. "ConnectionType": 1,
  523. "SlotType": 2
  524. },
  525. "DataType": 1
  526. },
  527. {
  528. "id": {
  529. "m_id": "{D0F46185-CC2D-4371-B552-BF422C6DB098}"
  530. },
  531. "contracts": [
  532. {
  533. "$type": "SlotTypeContract"
  534. },
  535. null
  536. ],
  537. "slotName": "Report",
  538. "toolTip": "additional notes for the test report",
  539. "DisplayDataType": {
  540. "m_type": 5
  541. },
  542. "Descriptor": {
  543. "ConnectionType": 1,
  544. "SlotType": 2
  545. },
  546. "DataType": 1
  547. },
  548. {
  549. "id": {
  550. "m_id": "{E0959F3A-EE5D-4A9A-ABF8-EDCE1A1AC6B8}"
  551. },
  552. "contracts": [
  553. {
  554. "$type": "SlotTypeContract"
  555. }
  556. ],
  557. "slotName": "In",
  558. "Descriptor": {
  559. "ConnectionType": 1,
  560. "SlotType": 1
  561. }
  562. },
  563. {
  564. "id": {
  565. "m_id": "{53E09E10-3FD8-4C5D-A673-64A12FFC9436}"
  566. },
  567. "contracts": [
  568. {
  569. "$type": "SlotTypeContract"
  570. }
  571. ],
  572. "slotName": "Out",
  573. "Descriptor": {
  574. "ConnectionType": 2,
  575. "SlotType": 1
  576. }
  577. }
  578. ],
  579. "Datums": [
  580. {
  581. "isOverloadedStorage": false,
  582. "scriptCanvasType": {
  583. "m_type": 1
  584. },
  585. "isNullPointer": false,
  586. "$type": "EntityId",
  587. "value": {
  588. "id": 4276206253
  589. }
  590. },
  591. {
  592. "isOverloadedStorage": false,
  593. "scriptCanvasType": {
  594. "m_type": 5
  595. },
  596. "isNullPointer": false,
  597. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  598. "value": "",
  599. "label": "Candidate"
  600. },
  601. {
  602. "isOverloadedStorage": false,
  603. "scriptCanvasType": {
  604. "m_type": 5
  605. },
  606. "isNullPointer": false,
  607. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  608. "value": "",
  609. "label": "Reference"
  610. },
  611. {
  612. "isOverloadedStorage": false,
  613. "scriptCanvasType": {
  614. "m_type": 5
  615. },
  616. "isNullPointer": false,
  617. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  618. "value": "event argument",
  619. "label": "Report"
  620. }
  621. ],
  622. "methodType": 2,
  623. "methodName": "Expect Equal",
  624. "className": "Unit Testing",
  625. "prettyClassName": "Unit Testing",
  626. "orderedInputSlotIds": [
  627. {
  628. "m_id": "{AFC093B8-5756-468D-A1A1-8667CFB54A36}"
  629. },
  630. {
  631. "m_id": "{3222CE85-FBB9-4584-9B5D-A615F6B1A78D}"
  632. },
  633. {
  634. "m_id": "{FB980411-2988-4AD9-9DCD-202812BA7FEC}"
  635. },
  636. {
  637. "m_id": "{D0F46185-CC2D-4371-B552-BF422C6DB098}"
  638. }
  639. ],
  640. "outputSlotIds": [
  641. {}
  642. ]
  643. }
  644. }
  645. },
  646. {
  647. "Id": {
  648. "id": 524096718996647
  649. },
  650. "Name": "SC Node(GetVariable)",
  651. "Components": {
  652. "Component_[3402028962700214620]": {
  653. "$type": "GetVariableNode",
  654. "Id": 3402028962700214620,
  655. "Slots": [
  656. {
  657. "id": {
  658. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  659. },
  660. "contracts": [
  661. {
  662. "$type": "SlotTypeContract"
  663. }
  664. ],
  665. "slotName": "In",
  666. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  667. "Descriptor": {
  668. "ConnectionType": 1,
  669. "SlotType": 1
  670. }
  671. },
  672. {
  673. "id": {
  674. "m_id": "{803833F9-A3D1-43FA-8607-DD2AFE0F8BB5}"
  675. },
  676. "contracts": [
  677. {
  678. "$type": "SlotTypeContract"
  679. }
  680. ],
  681. "slotName": "Out",
  682. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  683. "Descriptor": {
  684. "ConnectionType": 2,
  685. "SlotType": 1
  686. }
  687. },
  688. {
  689. "id": {
  690. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  691. },
  692. "contracts": [
  693. {
  694. "$type": "SlotTypeContract"
  695. }
  696. ],
  697. "slotName": "String",
  698. "DisplayDataType": {
  699. "m_type": 5
  700. },
  701. "Descriptor": {
  702. "ConnectionType": 2,
  703. "SlotType": 2
  704. },
  705. "DataType": 1
  706. }
  707. ],
  708. "m_variableId": {
  709. "m_id": "{0BFB4118-D867-4AF8-B760-F9138D2DCDCE}"
  710. },
  711. "m_variableDataOutSlotId": {
  712. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  713. }
  714. }
  715. }
  716. },
  717. {
  718. "Id": {
  719. "id": 524105308931239
  720. },
  721. "Name": "SC Node(GetVariable)",
  722. "Components": {
  723. "Component_[3402028962700214620]": {
  724. "$type": "GetVariableNode",
  725. "Id": 3402028962700214620,
  726. "Slots": [
  727. {
  728. "id": {
  729. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  730. },
  731. "contracts": [
  732. {
  733. "$type": "SlotTypeContract"
  734. }
  735. ],
  736. "slotName": "In",
  737. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  738. "Descriptor": {
  739. "ConnectionType": 1,
  740. "SlotType": 1
  741. }
  742. },
  743. {
  744. "id": {
  745. "m_id": "{803833F9-A3D1-43FA-8607-DD2AFE0F8BB5}"
  746. },
  747. "contracts": [
  748. {
  749. "$type": "SlotTypeContract"
  750. }
  751. ],
  752. "slotName": "Out",
  753. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  754. "Descriptor": {
  755. "ConnectionType": 2,
  756. "SlotType": 1
  757. }
  758. },
  759. {
  760. "id": {
  761. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  762. },
  763. "contracts": [
  764. {
  765. "$type": "SlotTypeContract"
  766. }
  767. ],
  768. "slotName": "String",
  769. "DisplayDataType": {
  770. "m_type": 5
  771. },
  772. "Descriptor": {
  773. "ConnectionType": 2,
  774. "SlotType": 2
  775. },
  776. "DataType": 1
  777. }
  778. ],
  779. "m_variableId": {
  780. "m_id": "{0BFB4118-D867-4AF8-B760-F9138D2DCDCE}"
  781. },
  782. "m_variableDataOutSlotId": {
  783. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  784. }
  785. }
  786. }
  787. },
  788. {
  789. "Id": {
  790. "id": 524092424029351
  791. },
  792. "Name": "948560990695",
  793. "Components": {
  794. "Component_[4976643160137254202]": {
  795. "$type": "Start",
  796. "Id": 4976643160137254202,
  797. "Slots": [
  798. {
  799. "id": {
  800. "m_id": "{82281162-E993-4CC5-BF15-11B4F14B08DD}"
  801. },
  802. "contracts": [
  803. {
  804. "$type": "SlotTypeContract"
  805. }
  806. ],
  807. "slotName": "Out",
  808. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  809. "Descriptor": {
  810. "ConnectionType": 2,
  811. "SlotType": 1
  812. }
  813. }
  814. ]
  815. }
  816. }
  817. },
  818. {
  819. "Id": {
  820. "id": 524101013963943
  821. },
  822. "Name": "SC-Node(EBus)",
  823. "Components": {
  824. "Component_[7201418660602530649]": {
  825. "$type": "EBusEventHandler",
  826. "Id": 7201418660602530649,
  827. "Slots": [
  828. {
  829. "id": {
  830. "m_id": "{5234C57A-3DCF-4F5D-A6AA-23CC7A3E2D51}"
  831. },
  832. "contracts": [
  833. {
  834. "$type": "SlotTypeContract"
  835. }
  836. ],
  837. "slotName": "Connect",
  838. "toolTip": "Connect this event handler to the specified entity.",
  839. "Descriptor": {
  840. "ConnectionType": 1,
  841. "SlotType": 1
  842. }
  843. },
  844. {
  845. "id": {
  846. "m_id": "{E7CBAA4E-FA74-424A-8A75-39AEAAAF78C7}"
  847. },
  848. "contracts": [
  849. {
  850. "$type": "SlotTypeContract"
  851. }
  852. ],
  853. "slotName": "Disconnect",
  854. "toolTip": "Disconnect this event handler.",
  855. "Descriptor": {
  856. "ConnectionType": 1,
  857. "SlotType": 1
  858. }
  859. },
  860. {
  861. "id": {
  862. "m_id": "{A6DF4415-0C42-4192-BB3F-BEEB3A436601}"
  863. },
  864. "contracts": [
  865. {
  866. "$type": "SlotTypeContract"
  867. }
  868. ],
  869. "slotName": "OnConnected",
  870. "toolTip": "Signaled when a connection has taken place.",
  871. "Descriptor": {
  872. "ConnectionType": 2,
  873. "SlotType": 1
  874. }
  875. },
  876. {
  877. "id": {
  878. "m_id": "{0AD14478-2ACC-4133-B8F1-CD422A3D1E4D}"
  879. },
  880. "contracts": [
  881. {
  882. "$type": "SlotTypeContract"
  883. }
  884. ],
  885. "slotName": "OnDisconnected",
  886. "toolTip": "Signaled when this event handler is disconnected.",
  887. "Descriptor": {
  888. "ConnectionType": 2,
  889. "SlotType": 1
  890. }
  891. },
  892. {
  893. "id": {
  894. "m_id": "{345E01B5-CA6A-4CB1-9EBE-8F8C3E75ECE9}"
  895. },
  896. "contracts": [
  897. {
  898. "$type": "SlotTypeContract"
  899. }
  900. ],
  901. "slotName": "OnFailure",
  902. "toolTip": "Signaled when it is not possible to connect this handler.",
  903. "Descriptor": {
  904. "ConnectionType": 2,
  905. "SlotType": 1
  906. }
  907. },
  908. {
  909. "id": {
  910. "m_id": "{B98609BF-030B-41B6-8712-E1ADDE3D6156}"
  911. },
  912. "contracts": [
  913. {
  914. "$type": "SlotTypeContract"
  915. },
  916. {
  917. "$type": "RestrictedTypeContract"
  918. },
  919. null
  920. ],
  921. "slotName": "Result: String",
  922. "Descriptor": {
  923. "ConnectionType": 1,
  924. "SlotType": 2
  925. },
  926. "DataType": 1
  927. },
  928. {
  929. "id": {
  930. "m_id": "{19CB7DF6-0032-4F40-B924-99BC0217CB51}"
  931. },
  932. "contracts": [
  933. {
  934. "$type": "SlotTypeContract"
  935. }
  936. ],
  937. "slotName": "String",
  938. "DisplayDataType": {
  939. "m_type": 5
  940. },
  941. "Descriptor": {
  942. "ConnectionType": 2,
  943. "SlotType": 2
  944. },
  945. "DataType": 1
  946. },
  947. {
  948. "id": {
  949. "m_id": "{03816503-472D-447B-BCFD-323F1C73CA76}"
  950. },
  951. "contracts": [
  952. {
  953. "$type": "SlotTypeContract"
  954. }
  955. ],
  956. "slotName": "ExecutionSlot:CStyleToCStyle",
  957. "Descriptor": {
  958. "ConnectionType": 2,
  959. "SlotType": 1
  960. },
  961. "IsLatent": true
  962. },
  963. {
  964. "id": {
  965. "m_id": "{9AD02BC8-C7EC-4AFE-9A5F-760A4F8A3046}"
  966. },
  967. "contracts": [
  968. {
  969. "$type": "SlotTypeContract"
  970. },
  971. {
  972. "$type": "RestrictedTypeContract"
  973. },
  974. null
  975. ],
  976. "slotName": "Result: String",
  977. "Descriptor": {
  978. "ConnectionType": 1,
  979. "SlotType": 2
  980. },
  981. "DataType": 1
  982. },
  983. {
  984. "id": {
  985. "m_id": "{FBBCBA5C-2C20-46AD-B292-44CEAB4AC9A6}"
  986. },
  987. "contracts": [
  988. {
  989. "$type": "SlotTypeContract"
  990. }
  991. ],
  992. "slotName": "String",
  993. "DisplayDataType": {
  994. "m_type": 5
  995. },
  996. "Descriptor": {
  997. "ConnectionType": 2,
  998. "SlotType": 2
  999. },
  1000. "DataType": 1
  1001. },
  1002. {
  1003. "id": {
  1004. "m_id": "{FE108B73-E3B7-418A-9DAC-EF4229228FB1}"
  1005. },
  1006. "contracts": [
  1007. {
  1008. "$type": "SlotTypeContract"
  1009. }
  1010. ],
  1011. "slotName": "ExecutionSlot:CStyleToStringView",
  1012. "Descriptor": {
  1013. "ConnectionType": 2,
  1014. "SlotType": 1
  1015. },
  1016. "IsLatent": true
  1017. },
  1018. {
  1019. "id": {
  1020. "m_id": "{D3701E35-9F0A-40A4-B8A3-EFA7148CBFB5}"
  1021. },
  1022. "contracts": [
  1023. {
  1024. "$type": "SlotTypeContract"
  1025. },
  1026. {
  1027. "$type": "RestrictedTypeContract"
  1028. },
  1029. null
  1030. ],
  1031. "slotName": "Result: String",
  1032. "Descriptor": {
  1033. "ConnectionType": 1,
  1034. "SlotType": 2
  1035. },
  1036. "DataType": 1
  1037. },
  1038. {
  1039. "id": {
  1040. "m_id": "{CFA1DE2B-F87F-44D3-88AD-F7DEF15DE786}"
  1041. },
  1042. "contracts": [
  1043. {
  1044. "$type": "SlotTypeContract"
  1045. }
  1046. ],
  1047. "slotName": "String",
  1048. "DisplayDataType": {
  1049. "m_type": 5
  1050. },
  1051. "Descriptor": {
  1052. "ConnectionType": 2,
  1053. "SlotType": 2
  1054. },
  1055. "DataType": 1
  1056. },
  1057. {
  1058. "id": {
  1059. "m_id": "{D24F0CA4-E2DE-4E4F-9DCA-BA562130C6B0}"
  1060. },
  1061. "contracts": [
  1062. {
  1063. "$type": "SlotTypeContract"
  1064. }
  1065. ],
  1066. "slotName": "ExecutionSlot:CStyleToString",
  1067. "Descriptor": {
  1068. "ConnectionType": 2,
  1069. "SlotType": 1
  1070. },
  1071. "IsLatent": true
  1072. },
  1073. {
  1074. "id": {
  1075. "m_id": "{690433B0-B425-4B6C-987E-43BB406A3B39}"
  1076. },
  1077. "contracts": [
  1078. {
  1079. "$type": "SlotTypeContract"
  1080. },
  1081. null
  1082. ],
  1083. "slotName": "Result: Number",
  1084. "Descriptor": {
  1085. "ConnectionType": 1,
  1086. "SlotType": 2
  1087. },
  1088. "DataType": 1
  1089. },
  1090. {
  1091. "id": {
  1092. "m_id": "{3BD85B17-A1F3-4520-B091-C0401295F2B3}"
  1093. },
  1094. "contracts": [
  1095. {
  1096. "$type": "SlotTypeContract"
  1097. }
  1098. ],
  1099. "slotName": "Number",
  1100. "DisplayDataType": {
  1101. "m_type": 3
  1102. },
  1103. "Descriptor": {
  1104. "ConnectionType": 2,
  1105. "SlotType": 2
  1106. },
  1107. "DataType": 1
  1108. },
  1109. {
  1110. "id": {
  1111. "m_id": "{2BCDCD1E-1331-4419-B94E-5E88BE2CFE0D}"
  1112. },
  1113. "contracts": [
  1114. {
  1115. "$type": "SlotTypeContract"
  1116. }
  1117. ],
  1118. "slotName": "ExecutionSlot:IntOne",
  1119. "Descriptor": {
  1120. "ConnectionType": 2,
  1121. "SlotType": 1
  1122. },
  1123. "IsLatent": true
  1124. },
  1125. {
  1126. "id": {
  1127. "m_id": "{059062A1-D31A-48AC-8129-8F8ADD5FEFE2}"
  1128. },
  1129. "contracts": [
  1130. {
  1131. "$type": "SlotTypeContract"
  1132. },
  1133. null
  1134. ],
  1135. "slotName": "Result: Number",
  1136. "Descriptor": {
  1137. "ConnectionType": 1,
  1138. "SlotType": 2
  1139. },
  1140. "DataType": 1
  1141. },
  1142. {
  1143. "id": {
  1144. "m_id": "{A3BE4F86-DC01-4279-80B3-FC06021FA219}"
  1145. },
  1146. "contracts": [
  1147. {
  1148. "$type": "SlotTypeContract"
  1149. }
  1150. ],
  1151. "slotName": "Number",
  1152. "DisplayDataType": {
  1153. "m_type": 3
  1154. },
  1155. "Descriptor": {
  1156. "ConnectionType": 2,
  1157. "SlotType": 2
  1158. },
  1159. "DataType": 1
  1160. },
  1161. {
  1162. "id": {
  1163. "m_id": "{716659D9-C9EE-44EF-AE38-EADE0F701536}"
  1164. },
  1165. "contracts": [
  1166. {
  1167. "$type": "SlotTypeContract"
  1168. }
  1169. ],
  1170. "slotName": "ExecutionSlot:IntTwo",
  1171. "Descriptor": {
  1172. "ConnectionType": 2,
  1173. "SlotType": 1
  1174. },
  1175. "IsLatent": true
  1176. },
  1177. {
  1178. "id": {
  1179. "m_id": "{D96EA448-9AD6-411E-B30D-5DCD38264B4D}"
  1180. },
  1181. "contracts": [
  1182. {
  1183. "$type": "SlotTypeContract"
  1184. },
  1185. null
  1186. ],
  1187. "slotName": "Result: Number",
  1188. "Descriptor": {
  1189. "ConnectionType": 1,
  1190. "SlotType": 2
  1191. },
  1192. "DataType": 1
  1193. },
  1194. {
  1195. "id": {
  1196. "m_id": "{492B1A0B-72EF-4F61-B0E7-A1653ABFBF52}"
  1197. },
  1198. "contracts": [
  1199. {
  1200. "$type": "SlotTypeContract"
  1201. }
  1202. ],
  1203. "slotName": "Number",
  1204. "DisplayDataType": {
  1205. "m_type": 3
  1206. },
  1207. "Descriptor": {
  1208. "ConnectionType": 2,
  1209. "SlotType": 2
  1210. },
  1211. "DataType": 1
  1212. },
  1213. {
  1214. "id": {
  1215. "m_id": "{C587BF87-1062-4FED-8194-92A490E23728}"
  1216. },
  1217. "contracts": [
  1218. {
  1219. "$type": "SlotTypeContract"
  1220. }
  1221. ],
  1222. "slotName": "ExecutionSlot:IntThree",
  1223. "Descriptor": {
  1224. "ConnectionType": 2,
  1225. "SlotType": 1
  1226. },
  1227. "IsLatent": true
  1228. }
  1229. ],
  1230. "Datums": [
  1231. {
  1232. "isOverloadedStorage": false,
  1233. "scriptCanvasType": {
  1234. "m_type": 5
  1235. },
  1236. "isNullPointer": false,
  1237. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1238. "value": "",
  1239. "label": "Result: String"
  1240. },
  1241. {
  1242. "isOverloadedStorage": false,
  1243. "scriptCanvasType": {
  1244. "m_type": 5
  1245. },
  1246. "isNullPointer": false,
  1247. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1248. "value": "",
  1249. "label": "Result: String"
  1250. },
  1251. {
  1252. "isOverloadedStorage": false,
  1253. "scriptCanvasType": {
  1254. "m_type": 5
  1255. },
  1256. "isNullPointer": false,
  1257. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1258. "value": "",
  1259. "label": "Result: String"
  1260. },
  1261. {
  1262. "isOverloadedStorage": false,
  1263. "scriptCanvasType": {
  1264. "m_type": 3
  1265. },
  1266. "isNullPointer": false,
  1267. "$type": "double",
  1268. "value": 0.0,
  1269. "label": "Result: Number"
  1270. },
  1271. {
  1272. "isOverloadedStorage": false,
  1273. "scriptCanvasType": {
  1274. "m_type": 3
  1275. },
  1276. "isNullPointer": false,
  1277. "$type": "double",
  1278. "value": 0.0,
  1279. "label": "Result: Number"
  1280. },
  1281. {
  1282. "isOverloadedStorage": false,
  1283. "scriptCanvasType": {
  1284. "m_type": 3
  1285. },
  1286. "isNullPointer": false,
  1287. "$type": "double",
  1288. "value": 0.0,
  1289. "label": "Result: Number"
  1290. }
  1291. ],
  1292. "m_eventMap": [
  1293. {
  1294. "Key": {
  1295. "Value": 598574587
  1296. },
  1297. "Value": {
  1298. "m_eventName": "CStyleToString",
  1299. "m_eventId": {
  1300. "Value": 598574587
  1301. },
  1302. "m_eventSlotId": {
  1303. "m_id": "{D24F0CA4-E2DE-4E4F-9DCA-BA562130C6B0}"
  1304. },
  1305. "m_resultSlotId": {
  1306. "m_id": "{D3701E35-9F0A-40A4-B8A3-EFA7148CBFB5}"
  1307. },
  1308. "m_parameterSlotIds": [
  1309. {
  1310. "m_id": "{CFA1DE2B-F87F-44D3-88AD-F7DEF15DE786}"
  1311. }
  1312. ],
  1313. "m_numExpectedArguments": 1
  1314. }
  1315. },
  1316. {
  1317. "Key": {
  1318. "Value": 1633366910
  1319. },
  1320. "Value": {
  1321. "m_eventName": "IntThree",
  1322. "m_eventId": {
  1323. "Value": 1633366910
  1324. },
  1325. "m_eventSlotId": {
  1326. "m_id": "{C587BF87-1062-4FED-8194-92A490E23728}"
  1327. },
  1328. "m_resultSlotId": {
  1329. "m_id": "{D96EA448-9AD6-411E-B30D-5DCD38264B4D}"
  1330. },
  1331. "m_parameterSlotIds": [
  1332. {
  1333. "m_id": "{492B1A0B-72EF-4F61-B0E7-A1653ABFBF52}"
  1334. }
  1335. ],
  1336. "m_numExpectedArguments": 1
  1337. }
  1338. },
  1339. {
  1340. "Key": {
  1341. "Value": 1999545458
  1342. },
  1343. "Value": {
  1344. "m_eventName": "CStyleToCStyle",
  1345. "m_eventId": {
  1346. "Value": 1999545458
  1347. },
  1348. "m_eventSlotId": {
  1349. "m_id": "{03816503-472D-447B-BCFD-323F1C73CA76}"
  1350. },
  1351. "m_resultSlotId": {
  1352. "m_id": "{B98609BF-030B-41B6-8712-E1ADDE3D6156}"
  1353. },
  1354. "m_parameterSlotIds": [
  1355. {
  1356. "m_id": "{19CB7DF6-0032-4F40-B924-99BC0217CB51}"
  1357. }
  1358. ],
  1359. "m_numExpectedArguments": 1
  1360. }
  1361. },
  1362. {
  1363. "Key": {
  1364. "Value": 3001897634
  1365. },
  1366. "Value": {
  1367. "m_eventName": "IntTwo",
  1368. "m_eventId": {
  1369. "Value": 3001897634
  1370. },
  1371. "m_eventSlotId": {
  1372. "m_id": "{716659D9-C9EE-44EF-AE38-EADE0F701536}"
  1373. },
  1374. "m_resultSlotId": {
  1375. "m_id": "{059062A1-D31A-48AC-8129-8F8ADD5FEFE2}"
  1376. },
  1377. "m_parameterSlotIds": [
  1378. {
  1379. "m_id": "{A3BE4F86-DC01-4279-80B3-FC06021FA219}"
  1380. }
  1381. ],
  1382. "m_numExpectedArguments": 1
  1383. }
  1384. },
  1385. {
  1386. "Key": {
  1387. "Value": 3645595189
  1388. },
  1389. "Value": {
  1390. "m_eventName": "IntOne",
  1391. "m_eventId": {
  1392. "Value": 3645595189
  1393. },
  1394. "m_eventSlotId": {
  1395. "m_id": "{2BCDCD1E-1331-4419-B94E-5E88BE2CFE0D}"
  1396. },
  1397. "m_resultSlotId": {
  1398. "m_id": "{690433B0-B425-4B6C-987E-43BB406A3B39}"
  1399. },
  1400. "m_parameterSlotIds": [
  1401. {
  1402. "m_id": "{3BD85B17-A1F3-4520-B091-C0401295F2B3}"
  1403. }
  1404. ],
  1405. "m_numExpectedArguments": 1
  1406. }
  1407. },
  1408. {
  1409. "Key": {
  1410. "Value": 4054470805
  1411. },
  1412. "Value": {
  1413. "m_eventName": "CStyleToStringView",
  1414. "m_eventId": {
  1415. "Value": 4054470805
  1416. },
  1417. "m_eventSlotId": {
  1418. "m_id": "{FE108B73-E3B7-418A-9DAC-EF4229228FB1}"
  1419. },
  1420. "m_resultSlotId": {
  1421. "m_id": "{9AD02BC8-C7EC-4AFE-9A5F-760A4F8A3046}"
  1422. },
  1423. "m_parameterSlotIds": [
  1424. {
  1425. "m_id": "{FBBCBA5C-2C20-46AD-B292-44CEAB4AC9A6}"
  1426. }
  1427. ],
  1428. "m_numExpectedArguments": 1
  1429. }
  1430. }
  1431. ],
  1432. "m_ebusName": "EBus",
  1433. "m_busId": {
  1434. "Value": 4255869526
  1435. }
  1436. }
  1437. }
  1438. },
  1439. {
  1440. "Id": {
  1441. "id": 524118193833127
  1442. },
  1443. "Name": "18595648880340",
  1444. "Components": {
  1445. "Component_[8125688197711781941]": {
  1446. "$type": "MethodOverloaded",
  1447. "Id": 8125688197711781941,
  1448. "Slots": [
  1449. {
  1450. "isVisibile": false,
  1451. "id": {
  1452. "m_id": "{45D0B62E-D11D-467B-893D-7EFFC5200D0D}"
  1453. },
  1454. "contracts": [
  1455. {
  1456. "$type": "SlotTypeContract"
  1457. },
  1458. null
  1459. ],
  1460. "slotName": "EntityID: 0",
  1461. "DisplayDataType": {
  1462. "m_type": 1
  1463. },
  1464. "Descriptor": {
  1465. "ConnectionType": 1,
  1466. "SlotType": 2
  1467. },
  1468. "DataType": 1
  1469. },
  1470. {
  1471. "id": {
  1472. "m_id": "{6E90627E-B03F-4E48-A346-65175083696C}"
  1473. },
  1474. "DynamicTypeOverride": 1,
  1475. "contracts": [
  1476. {
  1477. "$type": "SlotTypeContract"
  1478. },
  1479. null,
  1480. {
  1481. "$type": "OverloadContract"
  1482. }
  1483. ],
  1484. "slotName": "Candidate",
  1485. "toolTip": "left of ==",
  1486. "DisplayDataType": {
  1487. "m_type": 5
  1488. },
  1489. "Descriptor": {
  1490. "ConnectionType": 1,
  1491. "SlotType": 2
  1492. },
  1493. "DataType": 1
  1494. },
  1495. {
  1496. "id": {
  1497. "m_id": "{063AB82F-393C-4C38-9A41-0450018E89E9}"
  1498. },
  1499. "DynamicTypeOverride": 1,
  1500. "contracts": [
  1501. {
  1502. "$type": "SlotTypeContract"
  1503. },
  1504. null,
  1505. {
  1506. "$type": "OverloadContract"
  1507. }
  1508. ],
  1509. "slotName": "Reference",
  1510. "toolTip": "right of ==",
  1511. "DisplayDataType": {
  1512. "m_type": 5
  1513. },
  1514. "Descriptor": {
  1515. "ConnectionType": 1,
  1516. "SlotType": 2
  1517. },
  1518. "DataType": 1
  1519. },
  1520. {
  1521. "id": {
  1522. "m_id": "{035783B6-9950-4D5A-B49E-EFC7511423C6}"
  1523. },
  1524. "contracts": [
  1525. {
  1526. "$type": "SlotTypeContract"
  1527. },
  1528. null
  1529. ],
  1530. "slotName": "Report",
  1531. "toolTip": "additional notes for the test report",
  1532. "DisplayDataType": {
  1533. "m_type": 5
  1534. },
  1535. "Descriptor": {
  1536. "ConnectionType": 1,
  1537. "SlotType": 2
  1538. },
  1539. "DataType": 1
  1540. },
  1541. {
  1542. "id": {
  1543. "m_id": "{F4264870-B582-4C4A-92BD-8F2CC3DBB387}"
  1544. },
  1545. "contracts": [
  1546. {
  1547. "$type": "SlotTypeContract"
  1548. }
  1549. ],
  1550. "slotName": "In",
  1551. "Descriptor": {
  1552. "ConnectionType": 1,
  1553. "SlotType": 1
  1554. }
  1555. },
  1556. {
  1557. "id": {
  1558. "m_id": "{480CC8C7-E8C1-4436-AE53-966C07B2AD9B}"
  1559. },
  1560. "contracts": [
  1561. {
  1562. "$type": "SlotTypeContract"
  1563. }
  1564. ],
  1565. "slotName": "Out",
  1566. "Descriptor": {
  1567. "ConnectionType": 2,
  1568. "SlotType": 1
  1569. }
  1570. }
  1571. ],
  1572. "Datums": [
  1573. {
  1574. "isOverloadedStorage": false,
  1575. "scriptCanvasType": {
  1576. "m_type": 1
  1577. },
  1578. "isNullPointer": false,
  1579. "$type": "EntityId",
  1580. "value": {
  1581. "id": 4276206253
  1582. }
  1583. },
  1584. {
  1585. "isOverloadedStorage": false,
  1586. "scriptCanvasType": {
  1587. "m_type": 5
  1588. },
  1589. "isNullPointer": false,
  1590. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1591. "value": "",
  1592. "label": "Candidate"
  1593. },
  1594. {
  1595. "isOverloadedStorage": false,
  1596. "scriptCanvasType": {
  1597. "m_type": 5
  1598. },
  1599. "isNullPointer": false,
  1600. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1601. "value": "",
  1602. "label": "Reference"
  1603. },
  1604. {
  1605. "isOverloadedStorage": false,
  1606. "scriptCanvasType": {
  1607. "m_type": 5
  1608. },
  1609. "isNullPointer": false,
  1610. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1611. "value": "event result",
  1612. "label": "Report"
  1613. }
  1614. ],
  1615. "methodType": 2,
  1616. "methodName": "Expect Equal",
  1617. "className": "Unit Testing",
  1618. "prettyClassName": "Unit Testing",
  1619. "orderedInputSlotIds": [
  1620. {
  1621. "m_id": "{45D0B62E-D11D-467B-893D-7EFFC5200D0D}"
  1622. },
  1623. {
  1624. "m_id": "{6E90627E-B03F-4E48-A346-65175083696C}"
  1625. },
  1626. {
  1627. "m_id": "{063AB82F-393C-4C38-9A41-0450018E89E9}"
  1628. },
  1629. {
  1630. "m_id": "{035783B6-9950-4D5A-B49E-EFC7511423C6}"
  1631. }
  1632. ],
  1633. "outputSlotIds": [
  1634. {}
  1635. ]
  1636. }
  1637. }
  1638. }
  1639. ],
  1640. "m_connections": [
  1641. {
  1642. "Id": {
  1643. "id": 524135373702311
  1644. },
  1645. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  1646. "Components": {
  1647. "Component_[15221065504944044496]": {
  1648. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1649. "Id": 15221065504944044496,
  1650. "sourceEndpoint": {
  1651. "nodeId": {
  1652. "id": 524092424029351
  1653. },
  1654. "slotId": {
  1655. "m_id": "{82281162-E993-4CC5-BF15-11B4F14B08DD}"
  1656. }
  1657. },
  1658. "targetEndpoint": {
  1659. "nodeId": {
  1660. "id": 524122488800423
  1661. },
  1662. "slotId": {
  1663. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  1664. }
  1665. }
  1666. }
  1667. }
  1668. },
  1669. {
  1670. "Id": {
  1671. "id": 524139668669607
  1672. },
  1673. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Method: In)",
  1674. "Components": {
  1675. "Component_[10565570436715231517]": {
  1676. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1677. "Id": 10565570436715231517,
  1678. "sourceEndpoint": {
  1679. "nodeId": {
  1680. "id": 524122488800423
  1681. },
  1682. "slotId": {
  1683. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  1684. }
  1685. },
  1686. "targetEndpoint": {
  1687. "nodeId": {
  1688. "id": 524126783767719
  1689. },
  1690. "slotId": {
  1691. "m_id": "{B5AB5F48-A1FC-4210-AA33-41846B1B4E1B}"
  1692. }
  1693. }
  1694. }
  1695. }
  1696. },
  1697. {
  1698. "Id": {
  1699. "id": 524143963636903
  1700. },
  1701. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Method: String: 0)",
  1702. "Components": {
  1703. "Component_[4753113103426317538]": {
  1704. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1705. "Id": 4753113103426317538,
  1706. "sourceEndpoint": {
  1707. "nodeId": {
  1708. "id": 524122488800423
  1709. },
  1710. "slotId": {
  1711. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  1712. }
  1713. },
  1714. "targetEndpoint": {
  1715. "nodeId": {
  1716. "id": 524126783767719
  1717. },
  1718. "slotId": {
  1719. "m_id": "{FDD1E2E0-C6F5-4716-9209-66BE95B2EF54}"
  1720. }
  1721. }
  1722. }
  1723. }
  1724. },
  1725. {
  1726. "Id": {
  1727. "id": 524148258604199
  1728. },
  1729. "Name": "srcEndpoint=(Method: Out), destEndpoint=(Get Variable: In)",
  1730. "Components": {
  1731. "Component_[12722488527227191971]": {
  1732. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1733. "Id": 12722488527227191971,
  1734. "sourceEndpoint": {
  1735. "nodeId": {
  1736. "id": 524126783767719
  1737. },
  1738. "slotId": {
  1739. "m_id": "{2A4AD545-8BAE-4EE8-A4D7-F83E5B703EFC}"
  1740. }
  1741. },
  1742. "targetEndpoint": {
  1743. "nodeId": {
  1744. "id": 524096718996647
  1745. },
  1746. "slotId": {
  1747. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  1748. }
  1749. }
  1750. }
  1751. }
  1752. },
  1753. {
  1754. "Id": {
  1755. "id": 524152553571495
  1756. },
  1757. "Name": "srcEndpoint=(Event Handler: ExecutionSlot:CStyleToStringView), destEndpoint=(Get Variable: In)",
  1758. "Components": {
  1759. "Component_[10271021427221814847]": {
  1760. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1761. "Id": 10271021427221814847,
  1762. "sourceEndpoint": {
  1763. "nodeId": {
  1764. "id": 524101013963943
  1765. },
  1766. "slotId": {
  1767. "m_id": "{FE108B73-E3B7-418A-9DAC-EF4229228FB1}"
  1768. }
  1769. },
  1770. "targetEndpoint": {
  1771. "nodeId": {
  1772. "id": 524131078735015
  1773. },
  1774. "slotId": {
  1775. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  1776. }
  1777. }
  1778. }
  1779. }
  1780. },
  1781. {
  1782. "Id": {
  1783. "id": 524156848538791
  1784. },
  1785. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Event Handler: Result: String)",
  1786. "Components": {
  1787. "Component_[1262315930054481577]": {
  1788. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1789. "Id": 1262315930054481577,
  1790. "sourceEndpoint": {
  1791. "nodeId": {
  1792. "id": 524105308931239
  1793. },
  1794. "slotId": {
  1795. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1796. }
  1797. },
  1798. "targetEndpoint": {
  1799. "nodeId": {
  1800. "id": 524101013963943
  1801. },
  1802. "slotId": {
  1803. "m_id": "{9AD02BC8-C7EC-4AFE-9A5F-760A4F8A3046}"
  1804. }
  1805. }
  1806. }
  1807. }
  1808. },
  1809. {
  1810. "Id": {
  1811. "id": 524161143506087
  1812. },
  1813. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Expect Equal: Reference)",
  1814. "Components": {
  1815. "Component_[16131524848509328915]": {
  1816. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1817. "Id": 16131524848509328915,
  1818. "sourceEndpoint": {
  1819. "nodeId": {
  1820. "id": 524096718996647
  1821. },
  1822. "slotId": {
  1823. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1824. }
  1825. },
  1826. "targetEndpoint": {
  1827. "nodeId": {
  1828. "id": 524118193833127
  1829. },
  1830. "slotId": {
  1831. "m_id": "{063AB82F-393C-4C38-9A41-0450018E89E9}"
  1832. }
  1833. }
  1834. }
  1835. }
  1836. },
  1837. {
  1838. "Id": {
  1839. "id": 524165438473383
  1840. },
  1841. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  1842. "Components": {
  1843. "Component_[14771885123413530048]": {
  1844. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1845. "Id": 14771885123413530048,
  1846. "sourceEndpoint": {
  1847. "nodeId": {
  1848. "id": 524096718996647
  1849. },
  1850. "slotId": {
  1851. "m_id": "{803833F9-A3D1-43FA-8607-DD2AFE0F8BB5}"
  1852. }
  1853. },
  1854. "targetEndpoint": {
  1855. "nodeId": {
  1856. "id": 524118193833127
  1857. },
  1858. "slotId": {
  1859. "m_id": "{F4264870-B582-4C4A-92BD-8F2CC3DBB387}"
  1860. }
  1861. }
  1862. }
  1863. }
  1864. },
  1865. {
  1866. "Id": {
  1867. "id": 524169733440679
  1868. },
  1869. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  1870. "Components": {
  1871. "Component_[15776295571768476767]": {
  1872. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1873. "Id": 15776295571768476767,
  1874. "sourceEndpoint": {
  1875. "nodeId": {
  1876. "id": 524118193833127
  1877. },
  1878. "slotId": {
  1879. "m_id": "{480CC8C7-E8C1-4436-AE53-966C07B2AD9B}"
  1880. }
  1881. },
  1882. "targetEndpoint": {
  1883. "nodeId": {
  1884. "id": 524113898865831
  1885. },
  1886. "slotId": {
  1887. "m_id": "{27DC5831-C1A4-43CF-B2E3-990D455C3836}"
  1888. }
  1889. }
  1890. }
  1891. }
  1892. },
  1893. {
  1894. "Id": {
  1895. "id": 524174028407975
  1896. },
  1897. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  1898. "Components": {
  1899. "Component_[5595932828496904521]": {
  1900. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1901. "Id": 5595932828496904521,
  1902. "sourceEndpoint": {
  1903. "nodeId": {
  1904. "id": 524131078735015
  1905. },
  1906. "slotId": {
  1907. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  1908. }
  1909. },
  1910. "targetEndpoint": {
  1911. "nodeId": {
  1912. "id": 524109603898535
  1913. },
  1914. "slotId": {
  1915. "m_id": "{E0959F3A-EE5D-4A9A-ABF8-EDCE1A1AC6B8}"
  1916. }
  1917. }
  1918. }
  1919. }
  1920. },
  1921. {
  1922. "Id": {
  1923. "id": 524178323375271
  1924. },
  1925. "Name": "srcEndpoint=(CStyleToStringView: Result: String), destEndpoint=(Expect Equal: Candidate)",
  1926. "Components": {
  1927. "Component_[12838044011396473282]": {
  1928. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1929. "Id": 12838044011396473282,
  1930. "sourceEndpoint": {
  1931. "nodeId": {
  1932. "id": 524126783767719
  1933. },
  1934. "slotId": {
  1935. "m_id": "{EAA3E717-4D8F-43A2-8516-D5D5827274BC}"
  1936. }
  1937. },
  1938. "targetEndpoint": {
  1939. "nodeId": {
  1940. "id": 524118193833127
  1941. },
  1942. "slotId": {
  1943. "m_id": "{6E90627E-B03F-4E48-A346-65175083696C}"
  1944. }
  1945. }
  1946. }
  1947. }
  1948. },
  1949. {
  1950. "Id": {
  1951. "id": 524182618342567
  1952. },
  1953. "Name": "srcEndpoint=(EBus Handler: String), destEndpoint=(Expect Equal: Candidate)",
  1954. "Components": {
  1955. "Component_[7410577596777650099]": {
  1956. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1957. "Id": 7410577596777650099,
  1958. "sourceEndpoint": {
  1959. "nodeId": {
  1960. "id": 524101013963943
  1961. },
  1962. "slotId": {
  1963. "m_id": "{FBBCBA5C-2C20-46AD-B292-44CEAB4AC9A6}"
  1964. }
  1965. },
  1966. "targetEndpoint": {
  1967. "nodeId": {
  1968. "id": 524109603898535
  1969. },
  1970. "slotId": {
  1971. "m_id": "{3222CE85-FBB9-4584-9B5D-A615F6B1A78D}"
  1972. }
  1973. }
  1974. }
  1975. }
  1976. },
  1977. {
  1978. "Id": {
  1979. "id": 524186913309863
  1980. },
  1981. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
  1982. "Components": {
  1983. "Component_[10007770594843904961]": {
  1984. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1985. "Id": 10007770594843904961,
  1986. "sourceEndpoint": {
  1987. "nodeId": {
  1988. "id": 524109603898535
  1989. },
  1990. "slotId": {
  1991. "m_id": "{53E09E10-3FD8-4C5D-A673-64A12FFC9436}"
  1992. }
  1993. },
  1994. "targetEndpoint": {
  1995. "nodeId": {
  1996. "id": 524105308931239
  1997. },
  1998. "slotId": {
  1999. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  2000. }
  2001. }
  2002. }
  2003. }
  2004. },
  2005. {
  2006. "Id": {
  2007. "id": 524191208277159
  2008. },
  2009. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Expect Equal: Reference)",
  2010. "Components": {
  2011. "Component_[4566601046058728153]": {
  2012. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2013. "Id": 4566601046058728153,
  2014. "sourceEndpoint": {
  2015. "nodeId": {
  2016. "id": 524131078735015
  2017. },
  2018. "slotId": {
  2019. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  2020. }
  2021. },
  2022. "targetEndpoint": {
  2023. "nodeId": {
  2024. "id": 524109603898535
  2025. },
  2026. "slotId": {
  2027. "m_id": "{FB980411-2988-4AD9-9DCD-202812BA7FEC}"
  2028. }
  2029. }
  2030. }
  2031. }
  2032. }
  2033. ]
  2034. },
  2035. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2036. "versionData": {
  2037. "_grammarVersion": 1,
  2038. "_runtimeVersion": 1,
  2039. "_fileVersion": 1
  2040. },
  2041. "m_variableCounter": 3,
  2042. "GraphCanvasData": [
  2043. {
  2044. "Key": {
  2045. "id": 524088129062055
  2046. },
  2047. "Value": {
  2048. "ComponentData": {
  2049. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2050. "$type": "SceneComponentSaveData",
  2051. "ViewParams": {
  2052. "Scale": 0.7812796,
  2053. "AnchorX": -305.90838623046875,
  2054. "AnchorY": 194.5526123046875
  2055. }
  2056. }
  2057. }
  2058. }
  2059. },
  2060. {
  2061. "Key": {
  2062. "id": 524092424029351
  2063. },
  2064. "Value": {
  2065. "ComponentData": {
  2066. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2067. "$type": "NodeSaveData"
  2068. },
  2069. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2070. "$type": "GeneralNodeTitleComponentSaveData",
  2071. "PaletteOverride": "DefaultNodeTitlePalette"
  2072. },
  2073. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2074. "$type": "GeometrySaveData",
  2075. "Position": [
  2076. -20.0,
  2077. 180.0
  2078. ]
  2079. },
  2080. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2081. "$type": "StylingComponentSaveData"
  2082. },
  2083. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2084. "$type": "PersistentIdComponentSaveData",
  2085. "PersistentId": "{BB591465-2DE5-4947-99F2-CA02E66DA120}"
  2086. }
  2087. }
  2088. }
  2089. },
  2090. {
  2091. "Key": {
  2092. "id": 524096718996647
  2093. },
  2094. "Value": {
  2095. "ComponentData": {
  2096. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2097. "$type": "NodeSaveData"
  2098. },
  2099. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2100. "$type": "GeneralNodeTitleComponentSaveData",
  2101. "PaletteOverride": "GetVariableNodeTitlePalette"
  2102. },
  2103. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2104. "$type": "GeometrySaveData",
  2105. "Position": [
  2106. 680.0,
  2107. 220.0
  2108. ]
  2109. },
  2110. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2111. "$type": "StylingComponentSaveData",
  2112. "SubStyle": ".getVariable"
  2113. },
  2114. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2115. "$type": "PersistentIdComponentSaveData",
  2116. "PersistentId": "{2966ECE5-960C-4D78-B622-B4A32D7C65D5}"
  2117. }
  2118. }
  2119. }
  2120. },
  2121. {
  2122. "Key": {
  2123. "id": 524101013963943
  2124. },
  2125. "Value": {
  2126. "ComponentData": {
  2127. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2128. "$type": "NodeSaveData"
  2129. },
  2130. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2131. "$type": "GeometrySaveData",
  2132. "Position": [
  2133. 220.0,
  2134. 500.0
  2135. ]
  2136. },
  2137. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  2138. "$type": "EBusHandlerNodeDescriptorSaveData",
  2139. "EventIds": [
  2140. {
  2141. "Value": 4054470805
  2142. }
  2143. ]
  2144. },
  2145. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2146. "$type": "StylingComponentSaveData"
  2147. },
  2148. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2149. "$type": "PersistentIdComponentSaveData",
  2150. "PersistentId": "{0B59A8DA-9638-4BE9-A511-3A2A9C6434EC}"
  2151. }
  2152. }
  2153. }
  2154. },
  2155. {
  2156. "Key": {
  2157. "id": 524105308931239
  2158. },
  2159. "Value": {
  2160. "ComponentData": {
  2161. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2162. "$type": "NodeSaveData"
  2163. },
  2164. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2165. "$type": "GeneralNodeTitleComponentSaveData",
  2166. "PaletteOverride": "GetVariableNodeTitlePalette"
  2167. },
  2168. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2169. "$type": "GeometrySaveData",
  2170. "Position": [
  2171. 60.0,
  2172. 740.0
  2173. ]
  2174. },
  2175. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2176. "$type": "StylingComponentSaveData",
  2177. "SubStyle": ".getVariable"
  2178. },
  2179. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2180. "$type": "PersistentIdComponentSaveData",
  2181. "PersistentId": "{D454636F-C377-4A4A-B7C5-60C14F137340}"
  2182. }
  2183. }
  2184. }
  2185. },
  2186. {
  2187. "Key": {
  2188. "id": 524109603898535
  2189. },
  2190. "Value": {
  2191. "ComponentData": {
  2192. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2193. "$type": "NodeSaveData"
  2194. },
  2195. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2196. "$type": "GeneralNodeTitleComponentSaveData",
  2197. "PaletteOverride": "TestingNodeTitlePalette"
  2198. },
  2199. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2200. "$type": "GeometrySaveData",
  2201. "Position": [
  2202. 820.0,
  2203. 520.0
  2204. ]
  2205. },
  2206. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2207. "$type": "StylingComponentSaveData"
  2208. },
  2209. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2210. "$type": "PersistentIdComponentSaveData",
  2211. "PersistentId": "{5B467E19-CD3E-4694-912F-971F3CAF0FA4}"
  2212. }
  2213. }
  2214. }
  2215. },
  2216. {
  2217. "Key": {
  2218. "id": 524113898865831
  2219. },
  2220. "Value": {
  2221. "ComponentData": {
  2222. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2223. "$type": "NodeSaveData"
  2224. },
  2225. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2226. "$type": "GeneralNodeTitleComponentSaveData",
  2227. "PaletteOverride": "TestingNodeTitlePalette"
  2228. },
  2229. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2230. "$type": "GeometrySaveData",
  2231. "Position": [
  2232. 1080.0,
  2233. 200.0
  2234. ]
  2235. },
  2236. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2237. "$type": "StylingComponentSaveData"
  2238. },
  2239. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2240. "$type": "PersistentIdComponentSaveData",
  2241. "PersistentId": "{97174B29-191A-411E-A11E-75F5CF9B5782}"
  2242. }
  2243. }
  2244. }
  2245. },
  2246. {
  2247. "Key": {
  2248. "id": 524118193833127
  2249. },
  2250. "Value": {
  2251. "ComponentData": {
  2252. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2253. "$type": "NodeSaveData"
  2254. },
  2255. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2256. "$type": "GeneralNodeTitleComponentSaveData",
  2257. "PaletteOverride": "TestingNodeTitlePalette"
  2258. },
  2259. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2260. "$type": "GeometrySaveData",
  2261. "Position": [
  2262. 840.0,
  2263. 200.0
  2264. ]
  2265. },
  2266. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2267. "$type": "StylingComponentSaveData"
  2268. },
  2269. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2270. "$type": "PersistentIdComponentSaveData",
  2271. "PersistentId": "{6742EAC6-85A9-45B7-81F7-FA2A9AA86C77}"
  2272. }
  2273. }
  2274. }
  2275. },
  2276. {
  2277. "Key": {
  2278. "id": 524122488800423
  2279. },
  2280. "Value": {
  2281. "ComponentData": {
  2282. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2283. "$type": "NodeSaveData"
  2284. },
  2285. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2286. "$type": "GeneralNodeTitleComponentSaveData",
  2287. "PaletteOverride": "GetVariableNodeTitlePalette"
  2288. },
  2289. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2290. "$type": "GeometrySaveData",
  2291. "Position": [
  2292. 140.0,
  2293. 180.0
  2294. ]
  2295. },
  2296. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2297. "$type": "StylingComponentSaveData",
  2298. "SubStyle": ".getVariable"
  2299. },
  2300. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2301. "$type": "PersistentIdComponentSaveData",
  2302. "PersistentId": "{2420A302-F7FF-425C-AF00-F6E663AA91FB}"
  2303. }
  2304. }
  2305. }
  2306. },
  2307. {
  2308. "Key": {
  2309. "id": 524126783767719
  2310. },
  2311. "Value": {
  2312. "ComponentData": {
  2313. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2314. "$type": "NodeSaveData"
  2315. },
  2316. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2317. "$type": "GeneralNodeTitleComponentSaveData",
  2318. "PaletteOverride": "MethodNodeTitlePalette"
  2319. },
  2320. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2321. "$type": "GeometrySaveData",
  2322. "Position": [
  2323. 300.0,
  2324. 200.0
  2325. ]
  2326. },
  2327. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2328. "$type": "StylingComponentSaveData",
  2329. "SubStyle": ".method"
  2330. },
  2331. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2332. "$type": "PersistentIdComponentSaveData",
  2333. "PersistentId": "{5FBF7447-E561-4576-B966-0F610B32C6B4}"
  2334. }
  2335. }
  2336. }
  2337. },
  2338. {
  2339. "Key": {
  2340. "id": 524131078735015
  2341. },
  2342. "Value": {
  2343. "ComponentData": {
  2344. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2345. "$type": "NodeSaveData"
  2346. },
  2347. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2348. "$type": "GeneralNodeTitleComponentSaveData",
  2349. "PaletteOverride": "GetVariableNodeTitlePalette"
  2350. },
  2351. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2352. "$type": "GeometrySaveData",
  2353. "Position": [
  2354. 600.0,
  2355. 520.0
  2356. ]
  2357. },
  2358. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2359. "$type": "StylingComponentSaveData",
  2360. "SubStyle": ".getVariable"
  2361. },
  2362. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2363. "$type": "PersistentIdComponentSaveData",
  2364. "PersistentId": "{82E13CFD-683B-4727-931C-AF6BF73FA8B5}"
  2365. }
  2366. }
  2367. }
  2368. }
  2369. ],
  2370. "StatisticsHelper": {
  2371. "InstanceCounter": [
  2372. {
  2373. "Key": 4053150093067829293,
  2374. "Value": 2
  2375. },
  2376. {
  2377. "Key": 4199610336680704683,
  2378. "Value": 1
  2379. },
  2380. {
  2381. "Key": 5842117330873159857,
  2382. "Value": 1
  2383. },
  2384. {
  2385. "Key": 7578914071824805751,
  2386. "Value": 2
  2387. },
  2388. {
  2389. "Key": 10204019744198319120,
  2390. "Value": 1
  2391. },
  2392. {
  2393. "Key": 11899646200995591273,
  2394. "Value": 2
  2395. },
  2396. {
  2397. "Key": 13774516569812596739,
  2398. "Value": 1
  2399. }
  2400. ]
  2401. }
  2402. }
  2403. }
  2404. }
  2405. }
  2406. }