3
0

LY_SC_UnitTest_CompactNodeBasicOperators.scriptcanvas 266 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 715042836782
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[17172049120351526731]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 17172049120351526731,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{8C4D4D6C-ACFB-43DD-B72E-BF6C7A521152}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 3
  26. },
  27. "isNullPointer": false,
  28. "$type": "double",
  29. "value": 12.0
  30. },
  31. "VariableId": {
  32. "m_id": "{8C4D4D6C-ACFB-43DD-B72E-BF6C7A521152}"
  33. },
  34. "VariableName": "testvar2"
  35. }
  36. },
  37. {
  38. "Key": {
  39. "m_id": "{B9CABEAF-B467-420C-A5A5-86344714D336}"
  40. },
  41. "Value": {
  42. "Datum": {
  43. "isOverloadedStorage": false,
  44. "scriptCanvasType": {
  45. "m_type": 3
  46. },
  47. "isNullPointer": false,
  48. "$type": "double",
  49. "value": 6.0
  50. },
  51. "VariableId": {
  52. "m_id": "{B9CABEAF-B467-420C-A5A5-86344714D336}"
  53. },
  54. "VariableName": "testvar1"
  55. }
  56. }
  57. ]
  58. }
  59. },
  60. "Component_[6326189624806479560]": {
  61. "$type": "EditorGraph",
  62. "Id": 6326189624806479560,
  63. "m_graphData": {
  64. "m_nodes": [
  65. {
  66. "Id": {
  67. "id": 783762313518
  68. },
  69. "Name": "SC-Node(Expect Equal)",
  70. "Components": {
  71. "Component_[11402939507913028230]": {
  72. "$type": "MethodOverloaded",
  73. "Id": 11402939507913028230,
  74. "Slots": [
  75. {
  76. "isVisibile": false,
  77. "id": {
  78. "m_id": "{8397E65A-EC65-412C-84E4-8B0D666337D5}"
  79. },
  80. "contracts": [
  81. {
  82. "$type": "SlotTypeContract"
  83. }
  84. ],
  85. "slotName": "Invalid BehaviorContext::Class name: 0",
  86. "DisplayDataType": {
  87. "m_type": 4,
  88. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  89. },
  90. "Descriptor": {
  91. "ConnectionType": 1,
  92. "SlotType": 2
  93. },
  94. "DataType": 1
  95. },
  96. {
  97. "id": {
  98. "m_id": "{CC3850B1-914B-40B1-9A17-B03B1AA1268A}"
  99. },
  100. "DynamicTypeOverride": 1,
  101. "contracts": [
  102. {
  103. "$type": "SlotTypeContract"
  104. },
  105. {
  106. "$type": "OverloadContract"
  107. }
  108. ],
  109. "slotName": "Candidate",
  110. "toolTip": "left of ==",
  111. "DisplayDataType": {
  112. "m_type": 3
  113. },
  114. "Descriptor": {
  115. "ConnectionType": 1,
  116. "SlotType": 2
  117. },
  118. "DataType": 1
  119. },
  120. {
  121. "id": {
  122. "m_id": "{1D965A87-B895-4465-A87F-F72FDA0B0BD9}"
  123. },
  124. "DynamicTypeOverride": 1,
  125. "contracts": [
  126. {
  127. "$type": "SlotTypeContract"
  128. },
  129. {
  130. "$type": "OverloadContract"
  131. }
  132. ],
  133. "slotName": "Reference",
  134. "toolTip": "right of ==",
  135. "DisplayDataType": {
  136. "m_type": 3
  137. },
  138. "Descriptor": {
  139. "ConnectionType": 1,
  140. "SlotType": 2
  141. },
  142. "DataType": 1
  143. },
  144. {
  145. "id": {
  146. "m_id": "{95E61DC2-C052-4974-A0ED-83EF9C3A5018}"
  147. },
  148. "contracts": [
  149. {
  150. "$type": "SlotTypeContract"
  151. }
  152. ],
  153. "slotName": "Report",
  154. "toolTip": "additional notes for the test report",
  155. "DisplayDataType": {
  156. "m_type": 5
  157. },
  158. "Descriptor": {
  159. "ConnectionType": 1,
  160. "SlotType": 2
  161. },
  162. "DataType": 1
  163. },
  164. {
  165. "id": {
  166. "m_id": "{E0C250E9-0D12-4A72-B134-B0F40B16B943}"
  167. },
  168. "contracts": [
  169. {
  170. "$type": "SlotTypeContract"
  171. }
  172. ],
  173. "slotName": "In",
  174. "Descriptor": {
  175. "ConnectionType": 1,
  176. "SlotType": 1
  177. }
  178. },
  179. {
  180. "id": {
  181. "m_id": "{6AB284C1-56F2-4DE3-BACD-62DB1BAEA163}"
  182. },
  183. "contracts": [
  184. {
  185. "$type": "SlotTypeContract"
  186. }
  187. ],
  188. "slotName": "Out",
  189. "Descriptor": {
  190. "ConnectionType": 2,
  191. "SlotType": 1
  192. }
  193. }
  194. ],
  195. "Datums": [
  196. {
  197. "scriptCanvasType": {
  198. "m_type": 4,
  199. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  200. },
  201. "isNullPointer": true,
  202. "label": "Invalid BehaviorContext::Class name: 0"
  203. },
  204. {
  205. "isOverloadedStorage": false,
  206. "scriptCanvasType": {
  207. "m_type": 3
  208. },
  209. "isNullPointer": false,
  210. "$type": "double",
  211. "value": 0.0,
  212. "label": "Candidate"
  213. },
  214. {
  215. "isOverloadedStorage": false,
  216. "scriptCanvasType": {
  217. "m_type": 3
  218. },
  219. "isNullPointer": false,
  220. "$type": "double",
  221. "value": 18.0,
  222. "label": "Reference"
  223. },
  224. {
  225. "isOverloadedStorage": false,
  226. "scriptCanvasType": {
  227. "m_type": 5
  228. },
  229. "isNullPointer": false,
  230. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  231. "value": "",
  232. "label": "Report"
  233. }
  234. ],
  235. "methodType": 2,
  236. "methodName": "Expect Equal",
  237. "className": "Unit Testing",
  238. "inputSlots": [
  239. {
  240. "m_id": "{8397E65A-EC65-412C-84E4-8B0D666337D5}"
  241. },
  242. {
  243. "m_id": "{CC3850B1-914B-40B1-9A17-B03B1AA1268A}"
  244. },
  245. {
  246. "m_id": "{1D965A87-B895-4465-A87F-F72FDA0B0BD9}"
  247. },
  248. {
  249. "m_id": "{95E61DC2-C052-4974-A0ED-83EF9C3A5018}"
  250. }
  251. ],
  252. "orderedInputSlotIds": [
  253. {
  254. "m_id": "{8397E65A-EC65-412C-84E4-8B0D666337D5}"
  255. },
  256. {
  257. "m_id": "{CC3850B1-914B-40B1-9A17-B03B1AA1268A}"
  258. },
  259. {
  260. "m_id": "{1D965A87-B895-4465-A87F-F72FDA0B0BD9}"
  261. },
  262. {
  263. "m_id": "{95E61DC2-C052-4974-A0ED-83EF9C3A5018}"
  264. }
  265. ],
  266. "outputSlotIds": [
  267. {}
  268. ]
  269. }
  270. }
  271. },
  272. {
  273. "Id": {
  274. "id": 770877411630
  275. },
  276. "Name": "SC-Node(Expect Equal)",
  277. "Components": {
  278. "Component_[11430811944436430867]": {
  279. "$type": "MethodOverloaded",
  280. "Id": 11430811944436430867,
  281. "Slots": [
  282. {
  283. "isVisibile": false,
  284. "id": {
  285. "m_id": "{F6185B6B-9C7C-4072-B8AF-BC482CD457B0}"
  286. },
  287. "contracts": [
  288. {
  289. "$type": "SlotTypeContract"
  290. }
  291. ],
  292. "slotName": "Invalid BehaviorContext::Class name: 0",
  293. "DisplayDataType": {
  294. "m_type": 4,
  295. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  296. },
  297. "Descriptor": {
  298. "ConnectionType": 1,
  299. "SlotType": 2
  300. },
  301. "DataType": 1
  302. },
  303. {
  304. "id": {
  305. "m_id": "{9FB44993-CC35-4820-AD7E-525A31893C55}"
  306. },
  307. "DynamicTypeOverride": 1,
  308. "contracts": [
  309. {
  310. "$type": "SlotTypeContract"
  311. },
  312. {
  313. "$type": "OverloadContract"
  314. }
  315. ],
  316. "slotName": "Candidate",
  317. "toolTip": "left of ==",
  318. "DisplayDataType": {
  319. "m_type": 3
  320. },
  321. "Descriptor": {
  322. "ConnectionType": 1,
  323. "SlotType": 2
  324. },
  325. "DataType": 1
  326. },
  327. {
  328. "id": {
  329. "m_id": "{BFAA27C9-B43D-48E2-8A65-911CE893D899}"
  330. },
  331. "DynamicTypeOverride": 1,
  332. "contracts": [
  333. {
  334. "$type": "SlotTypeContract"
  335. },
  336. {
  337. "$type": "OverloadContract"
  338. }
  339. ],
  340. "slotName": "Reference",
  341. "toolTip": "right of ==",
  342. "DisplayDataType": {
  343. "m_type": 3
  344. },
  345. "Descriptor": {
  346. "ConnectionType": 1,
  347. "SlotType": 2
  348. },
  349. "DataType": 1
  350. },
  351. {
  352. "id": {
  353. "m_id": "{17EFDD3B-8D20-48EC-AF1E-B4D6E9E80924}"
  354. },
  355. "contracts": [
  356. {
  357. "$type": "SlotTypeContract"
  358. }
  359. ],
  360. "slotName": "Report",
  361. "toolTip": "additional notes for the test report",
  362. "DisplayDataType": {
  363. "m_type": 5
  364. },
  365. "Descriptor": {
  366. "ConnectionType": 1,
  367. "SlotType": 2
  368. },
  369. "DataType": 1
  370. },
  371. {
  372. "id": {
  373. "m_id": "{AFB94CD7-4476-46FD-A849-1970410FB6CC}"
  374. },
  375. "contracts": [
  376. {
  377. "$type": "SlotTypeContract"
  378. }
  379. ],
  380. "slotName": "In",
  381. "Descriptor": {
  382. "ConnectionType": 1,
  383. "SlotType": 1
  384. }
  385. },
  386. {
  387. "id": {
  388. "m_id": "{353818AB-9969-4759-848C-C85089080434}"
  389. },
  390. "contracts": [
  391. {
  392. "$type": "SlotTypeContract"
  393. }
  394. ],
  395. "slotName": "Out",
  396. "Descriptor": {
  397. "ConnectionType": 2,
  398. "SlotType": 1
  399. }
  400. }
  401. ],
  402. "Datums": [
  403. {
  404. "scriptCanvasType": {
  405. "m_type": 4,
  406. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  407. },
  408. "isNullPointer": true,
  409. "label": "Invalid BehaviorContext::Class name: 0"
  410. },
  411. {
  412. "isOverloadedStorage": false,
  413. "scriptCanvasType": {
  414. "m_type": 3
  415. },
  416. "isNullPointer": false,
  417. "$type": "double",
  418. "value": 0.0,
  419. "label": "Candidate"
  420. },
  421. {
  422. "isOverloadedStorage": false,
  423. "scriptCanvasType": {
  424. "m_type": 3
  425. },
  426. "isNullPointer": false,
  427. "$type": "double",
  428. "value": -6.0,
  429. "label": "Reference"
  430. },
  431. {
  432. "isOverloadedStorage": false,
  433. "scriptCanvasType": {
  434. "m_type": 5
  435. },
  436. "isNullPointer": false,
  437. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  438. "value": "",
  439. "label": "Report"
  440. }
  441. ],
  442. "methodType": 2,
  443. "methodName": "Expect Equal",
  444. "className": "Unit Testing",
  445. "inputSlots": [
  446. {
  447. "m_id": "{F6185B6B-9C7C-4072-B8AF-BC482CD457B0}"
  448. },
  449. {
  450. "m_id": "{9FB44993-CC35-4820-AD7E-525A31893C55}"
  451. },
  452. {
  453. "m_id": "{BFAA27C9-B43D-48E2-8A65-911CE893D899}"
  454. },
  455. {
  456. "m_id": "{17EFDD3B-8D20-48EC-AF1E-B4D6E9E80924}"
  457. }
  458. ],
  459. "orderedInputSlotIds": [
  460. {
  461. "m_id": "{F6185B6B-9C7C-4072-B8AF-BC482CD457B0}"
  462. },
  463. {
  464. "m_id": "{9FB44993-CC35-4820-AD7E-525A31893C55}"
  465. },
  466. {
  467. "m_id": "{BFAA27C9-B43D-48E2-8A65-911CE893D899}"
  468. },
  469. {
  470. "m_id": "{17EFDD3B-8D20-48EC-AF1E-B4D6E9E80924}"
  471. }
  472. ],
  473. "outputSlotIds": [
  474. {}
  475. ]
  476. }
  477. }
  478. },
  479. {
  480. "Id": {
  481. "id": 757992509742
  482. },
  483. "Name": "SC-Node(CompactMultiplyNodeableNode)",
  484. "Components": {
  485. "Component_[13504786461445109707]": {
  486. "$type": "CompactMultiplyNodeableNode",
  487. "Id": 13504786461445109707,
  488. "Slots": [
  489. {
  490. "isVisibile": false,
  491. "id": {
  492. "m_id": "{4051356B-C02D-42E5-8671-358E0F5BF792}"
  493. },
  494. "contracts": [
  495. {
  496. "$type": "SlotTypeContract"
  497. }
  498. ],
  499. "slotName": "In",
  500. "Descriptor": {
  501. "ConnectionType": 1,
  502. "SlotType": 1
  503. },
  504. "CreatesImplicitConnections": true
  505. },
  506. {
  507. "id": {
  508. "m_id": "{2C5A3624-2676-4073-AA0A-547D842B4B09}"
  509. },
  510. "contracts": [
  511. {
  512. "$type": "SlotTypeContract"
  513. }
  514. ],
  515. "slotName": "a",
  516. "Descriptor": {
  517. "ConnectionType": 1,
  518. "SlotType": 2
  519. },
  520. "DataType": 1,
  521. "CanHaveInputField": false,
  522. "IsNameHidden": true
  523. },
  524. {
  525. "id": {
  526. "m_id": "{CB3DCDFD-4E4F-4ACD-AEF7-242F3F16902A}"
  527. },
  528. "contracts": [
  529. {
  530. "$type": "SlotTypeContract"
  531. }
  532. ],
  533. "slotName": "b",
  534. "Descriptor": {
  535. "ConnectionType": 1,
  536. "SlotType": 2
  537. },
  538. "DataType": 1,
  539. "CanHaveInputField": false,
  540. "IsNameHidden": true
  541. },
  542. {
  543. "isVisibile": false,
  544. "id": {
  545. "m_id": "{50441C03-820E-40C3-BC27-BD7A72DEEC7D}"
  546. },
  547. "contracts": [
  548. {
  549. "$type": "SlotTypeContract"
  550. }
  551. ],
  552. "slotName": "Out",
  553. "Descriptor": {
  554. "ConnectionType": 2,
  555. "SlotType": 1
  556. }
  557. },
  558. {
  559. "id": {
  560. "m_id": "{315FA5F3-CFE3-4076-945C-79F56FC3DD42}"
  561. },
  562. "contracts": [
  563. {
  564. "$type": "SlotTypeContract"
  565. }
  566. ],
  567. "slotName": "Out",
  568. "DisplayDataType": {
  569. "m_type": 3
  570. },
  571. "Descriptor": {
  572. "ConnectionType": 2,
  573. "SlotType": 2
  574. },
  575. "DataType": 1,
  576. "CanHaveInputField": false,
  577. "IsNameHidden": true
  578. }
  579. ],
  580. "Datums": [
  581. {
  582. "isOverloadedStorage": false,
  583. "scriptCanvasType": {
  584. "m_type": 3
  585. },
  586. "isNullPointer": false,
  587. "$type": "double",
  588. "value": 0.0,
  589. "label": "a"
  590. },
  591. {
  592. "isOverloadedStorage": false,
  593. "scriptCanvasType": {
  594. "m_type": 3
  595. },
  596. "isNullPointer": false,
  597. "$type": "double",
  598. "value": 0.0,
  599. "label": "b"
  600. }
  601. ],
  602. "Style": ".compact",
  603. "slotExecutionMap": {
  604. "ins": [
  605. {
  606. "_slotId": {
  607. "m_id": "{4051356B-C02D-42E5-8671-358E0F5BF792}"
  608. },
  609. "_inputs": [
  610. {
  611. "_slotId": {
  612. "m_id": "{2C5A3624-2676-4073-AA0A-547D842B4B09}"
  613. }
  614. },
  615. {
  616. "_slotId": {
  617. "m_id": "{CB3DCDFD-4E4F-4ACD-AEF7-242F3F16902A}"
  618. }
  619. }
  620. ],
  621. "_outs": [
  622. {
  623. "_slotId": {
  624. "m_id": "{50441C03-820E-40C3-BC27-BD7A72DEEC7D}"
  625. },
  626. "_name": "Out",
  627. "_outputs": [
  628. {
  629. "_slotId": {
  630. "m_id": "{315FA5F3-CFE3-4076-945C-79F56FC3DD42}"
  631. }
  632. }
  633. ]
  634. }
  635. ]
  636. }
  637. ]
  638. }
  639. }
  640. }
  641. },
  642. {
  643. "Id": {
  644. "id": 745107607854
  645. },
  646. "Name": "SC-Node(Expect Equal)",
  647. "Components": {
  648. "Component_[15066027265785192729]": {
  649. "$type": "MethodOverloaded",
  650. "Id": 15066027265785192729,
  651. "Slots": [
  652. {
  653. "isVisibile": false,
  654. "id": {
  655. "m_id": "{B84B417A-3D73-47A5-9910-12D0A1749731}"
  656. },
  657. "contracts": [
  658. {
  659. "$type": "SlotTypeContract"
  660. }
  661. ],
  662. "slotName": "Invalid BehaviorContext::Class name: 0",
  663. "DisplayDataType": {
  664. "m_type": 4,
  665. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  666. },
  667. "Descriptor": {
  668. "ConnectionType": 1,
  669. "SlotType": 2
  670. },
  671. "DataType": 1
  672. },
  673. {
  674. "id": {
  675. "m_id": "{11686E22-06A9-4D86-BAD4-D010A4C93D42}"
  676. },
  677. "DynamicTypeOverride": 1,
  678. "contracts": [
  679. {
  680. "$type": "SlotTypeContract"
  681. },
  682. {
  683. "$type": "OverloadContract"
  684. }
  685. ],
  686. "slotName": "Candidate",
  687. "toolTip": "left of ==",
  688. "DisplayDataType": {
  689. "m_type": 3
  690. },
  691. "Descriptor": {
  692. "ConnectionType": 1,
  693. "SlotType": 2
  694. },
  695. "DataType": 1
  696. },
  697. {
  698. "id": {
  699. "m_id": "{5AB5B403-E53B-4315-8D45-84A3598514E6}"
  700. },
  701. "DynamicTypeOverride": 1,
  702. "contracts": [
  703. {
  704. "$type": "SlotTypeContract"
  705. },
  706. {
  707. "$type": "OverloadContract"
  708. }
  709. ],
  710. "slotName": "Reference",
  711. "toolTip": "right of ==",
  712. "DisplayDataType": {
  713. "m_type": 3
  714. },
  715. "Descriptor": {
  716. "ConnectionType": 1,
  717. "SlotType": 2
  718. },
  719. "DataType": 1
  720. },
  721. {
  722. "id": {
  723. "m_id": "{DBA0EA0E-44D2-4895-A101-D760325D3E1C}"
  724. },
  725. "contracts": [
  726. {
  727. "$type": "SlotTypeContract"
  728. }
  729. ],
  730. "slotName": "Report",
  731. "toolTip": "additional notes for the test report",
  732. "DisplayDataType": {
  733. "m_type": 5
  734. },
  735. "Descriptor": {
  736. "ConnectionType": 1,
  737. "SlotType": 2
  738. },
  739. "DataType": 1
  740. },
  741. {
  742. "id": {
  743. "m_id": "{1ED5FBA2-3D24-4B6A-B455-50992F10B56E}"
  744. },
  745. "contracts": [
  746. {
  747. "$type": "SlotTypeContract"
  748. }
  749. ],
  750. "slotName": "In",
  751. "Descriptor": {
  752. "ConnectionType": 1,
  753. "SlotType": 1
  754. }
  755. },
  756. {
  757. "id": {
  758. "m_id": "{89755DF9-BA1D-4F6D-9739-1991D6CE11A3}"
  759. },
  760. "contracts": [
  761. {
  762. "$type": "SlotTypeContract"
  763. }
  764. ],
  765. "slotName": "Out",
  766. "Descriptor": {
  767. "ConnectionType": 2,
  768. "SlotType": 1
  769. }
  770. }
  771. ],
  772. "Datums": [
  773. {
  774. "scriptCanvasType": {
  775. "m_type": 4,
  776. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  777. },
  778. "isNullPointer": true,
  779. "label": "Invalid BehaviorContext::Class name: 0"
  780. },
  781. {
  782. "isOverloadedStorage": false,
  783. "scriptCanvasType": {
  784. "m_type": 3
  785. },
  786. "isNullPointer": false,
  787. "$type": "double",
  788. "value": 0.0,
  789. "label": "Candidate"
  790. },
  791. {
  792. "isOverloadedStorage": false,
  793. "scriptCanvasType": {
  794. "m_type": 3
  795. },
  796. "isNullPointer": false,
  797. "$type": "double",
  798. "value": 13.0,
  799. "label": "Reference"
  800. },
  801. {
  802. "isOverloadedStorage": false,
  803. "scriptCanvasType": {
  804. "m_type": 5
  805. },
  806. "isNullPointer": false,
  807. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  808. "value": "",
  809. "label": "Report"
  810. }
  811. ],
  812. "methodType": 2,
  813. "methodName": "Expect Equal",
  814. "className": "Unit Testing",
  815. "inputSlots": [
  816. {
  817. "m_id": "{B84B417A-3D73-47A5-9910-12D0A1749731}"
  818. },
  819. {
  820. "m_id": "{11686E22-06A9-4D86-BAD4-D010A4C93D42}"
  821. },
  822. {
  823. "m_id": "{5AB5B403-E53B-4315-8D45-84A3598514E6}"
  824. },
  825. {
  826. "m_id": "{DBA0EA0E-44D2-4895-A101-D760325D3E1C}"
  827. }
  828. ],
  829. "orderedInputSlotIds": [
  830. {
  831. "m_id": "{B84B417A-3D73-47A5-9910-12D0A1749731}"
  832. },
  833. {
  834. "m_id": "{11686E22-06A9-4D86-BAD4-D010A4C93D42}"
  835. },
  836. {
  837. "m_id": "{5AB5B403-E53B-4315-8D45-84A3598514E6}"
  838. },
  839. {
  840. "m_id": "{DBA0EA0E-44D2-4895-A101-D760325D3E1C}"
  841. }
  842. ],
  843. "outputSlotIds": [
  844. {}
  845. ]
  846. }
  847. }
  848. },
  849. {
  850. "Id": {
  851. "id": 736517673262
  852. },
  853. "Name": "SC-Node(CompactAddNodeableNode)",
  854. "Components": {
  855. "Component_[16001259328784294611]": {
  856. "$type": "CompactAddNodeableNode",
  857. "Id": 16001259328784294611,
  858. "Slots": [
  859. {
  860. "isVisibile": false,
  861. "id": {
  862. "m_id": "{EB2A759E-FEE2-4A90-BBBC-F6B8EC751C30}"
  863. },
  864. "contracts": [
  865. {
  866. "$type": "SlotTypeContract"
  867. }
  868. ],
  869. "slotName": "In",
  870. "Descriptor": {
  871. "ConnectionType": 1,
  872. "SlotType": 1
  873. },
  874. "CreatesImplicitConnections": true
  875. },
  876. {
  877. "id": {
  878. "m_id": "{FBB4E64B-6F89-4DB8-8A97-56E0920ECB2F}"
  879. },
  880. "contracts": [
  881. {
  882. "$type": "SlotTypeContract"
  883. }
  884. ],
  885. "slotName": "a",
  886. "Descriptor": {
  887. "ConnectionType": 1,
  888. "SlotType": 2
  889. },
  890. "DataType": 1,
  891. "CanHaveInputField": false,
  892. "IsNameHidden": true
  893. },
  894. {
  895. "id": {
  896. "m_id": "{21E3FEC3-43B9-4AD0-B659-7497FFD8C177}"
  897. },
  898. "contracts": [
  899. {
  900. "$type": "SlotTypeContract"
  901. }
  902. ],
  903. "slotName": "b",
  904. "Descriptor": {
  905. "ConnectionType": 1,
  906. "SlotType": 2
  907. },
  908. "DataType": 1,
  909. "CanHaveInputField": false,
  910. "IsNameHidden": true
  911. },
  912. {
  913. "isVisibile": false,
  914. "id": {
  915. "m_id": "{037A60ED-1A1F-4D19-A2C9-6297692A32FF}"
  916. },
  917. "contracts": [
  918. {
  919. "$type": "SlotTypeContract"
  920. }
  921. ],
  922. "slotName": "Out",
  923. "Descriptor": {
  924. "ConnectionType": 2,
  925. "SlotType": 1
  926. }
  927. },
  928. {
  929. "id": {
  930. "m_id": "{AA485B3B-9CD0-4A2B-BCC5-904A47462DCA}"
  931. },
  932. "contracts": [
  933. {
  934. "$type": "SlotTypeContract"
  935. }
  936. ],
  937. "slotName": "Out",
  938. "DisplayDataType": {
  939. "m_type": 3
  940. },
  941. "Descriptor": {
  942. "ConnectionType": 2,
  943. "SlotType": 2
  944. },
  945. "DataType": 1,
  946. "CanHaveInputField": false,
  947. "IsNameHidden": true
  948. }
  949. ],
  950. "Datums": [
  951. {
  952. "isOverloadedStorage": false,
  953. "scriptCanvasType": {
  954. "m_type": 3
  955. },
  956. "isNullPointer": false,
  957. "$type": "double",
  958. "value": 0.0,
  959. "label": "a"
  960. },
  961. {
  962. "isOverloadedStorage": false,
  963. "scriptCanvasType": {
  964. "m_type": 3
  965. },
  966. "isNullPointer": false,
  967. "$type": "double",
  968. "value": 0.0,
  969. "label": "b"
  970. }
  971. ],
  972. "Style": ".compact",
  973. "slotExecutionMap": {
  974. "ins": [
  975. {
  976. "_slotId": {
  977. "m_id": "{EB2A759E-FEE2-4A90-BBBC-F6B8EC751C30}"
  978. },
  979. "_inputs": [
  980. {
  981. "_slotId": {
  982. "m_id": "{FBB4E64B-6F89-4DB8-8A97-56E0920ECB2F}"
  983. }
  984. },
  985. {
  986. "_slotId": {
  987. "m_id": "{21E3FEC3-43B9-4AD0-B659-7497FFD8C177}"
  988. }
  989. }
  990. ],
  991. "_outs": [
  992. {
  993. "_slotId": {
  994. "m_id": "{037A60ED-1A1F-4D19-A2C9-6297692A32FF}"
  995. },
  996. "_name": "Out",
  997. "_outputs": [
  998. {
  999. "_slotId": {
  1000. "m_id": "{AA485B3B-9CD0-4A2B-BCC5-904A47462DCA}"
  1001. }
  1002. }
  1003. ]
  1004. }
  1005. ]
  1006. }
  1007. ]
  1008. }
  1009. }
  1010. }
  1011. },
  1012. {
  1013. "Id": {
  1014. "id": 727927738670
  1015. },
  1016. "Name": "SC-Node(Expect Equal)",
  1017. "Components": {
  1018. "Component_[17212027558099961985]": {
  1019. "$type": "MethodOverloaded",
  1020. "Id": 17212027558099961985,
  1021. "Slots": [
  1022. {
  1023. "isVisibile": false,
  1024. "id": {
  1025. "m_id": "{C656EEF7-D52B-48C1-B98D-A8528771B86F}"
  1026. },
  1027. "contracts": [
  1028. {
  1029. "$type": "SlotTypeContract"
  1030. }
  1031. ],
  1032. "slotName": "Invalid BehaviorContext::Class name: 0",
  1033. "DisplayDataType": {
  1034. "m_type": 4,
  1035. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1036. },
  1037. "Descriptor": {
  1038. "ConnectionType": 1,
  1039. "SlotType": 2
  1040. },
  1041. "DataType": 1
  1042. },
  1043. {
  1044. "id": {
  1045. "m_id": "{5210DC3D-4464-4D92-A6E4-C6EE2C8CE04D}"
  1046. },
  1047. "DynamicTypeOverride": 1,
  1048. "contracts": [
  1049. {
  1050. "$type": "SlotTypeContract"
  1051. },
  1052. {
  1053. "$type": "OverloadContract"
  1054. }
  1055. ],
  1056. "slotName": "Candidate",
  1057. "toolTip": "left of ==",
  1058. "DisplayDataType": {
  1059. "m_type": 3
  1060. },
  1061. "Descriptor": {
  1062. "ConnectionType": 1,
  1063. "SlotType": 2
  1064. },
  1065. "DataType": 1
  1066. },
  1067. {
  1068. "id": {
  1069. "m_id": "{C29396BF-77C2-4699-A4F4-FCE290E498EF}"
  1070. },
  1071. "DynamicTypeOverride": 1,
  1072. "contracts": [
  1073. {
  1074. "$type": "SlotTypeContract"
  1075. },
  1076. {
  1077. "$type": "OverloadContract"
  1078. }
  1079. ],
  1080. "slotName": "Reference",
  1081. "toolTip": "right of ==",
  1082. "DisplayDataType": {
  1083. "m_type": 3
  1084. },
  1085. "Descriptor": {
  1086. "ConnectionType": 1,
  1087. "SlotType": 2
  1088. },
  1089. "DataType": 1
  1090. },
  1091. {
  1092. "id": {
  1093. "m_id": "{69C5A257-8F52-45FE-A723-19A7B688B4F4}"
  1094. },
  1095. "contracts": [
  1096. {
  1097. "$type": "SlotTypeContract"
  1098. }
  1099. ],
  1100. "slotName": "Report",
  1101. "toolTip": "additional notes for the test report",
  1102. "DisplayDataType": {
  1103. "m_type": 5
  1104. },
  1105. "Descriptor": {
  1106. "ConnectionType": 1,
  1107. "SlotType": 2
  1108. },
  1109. "DataType": 1
  1110. },
  1111. {
  1112. "id": {
  1113. "m_id": "{A0ECE9B0-B077-473C-8084-CB8A57E36A57}"
  1114. },
  1115. "contracts": [
  1116. {
  1117. "$type": "SlotTypeContract"
  1118. }
  1119. ],
  1120. "slotName": "In",
  1121. "Descriptor": {
  1122. "ConnectionType": 1,
  1123. "SlotType": 1
  1124. }
  1125. },
  1126. {
  1127. "id": {
  1128. "m_id": "{5875E156-6762-4D2C-ACA1-CA05B95FD1E9}"
  1129. },
  1130. "contracts": [
  1131. {
  1132. "$type": "SlotTypeContract"
  1133. }
  1134. ],
  1135. "slotName": "Out",
  1136. "Descriptor": {
  1137. "ConnectionType": 2,
  1138. "SlotType": 1
  1139. }
  1140. }
  1141. ],
  1142. "Datums": [
  1143. {
  1144. "scriptCanvasType": {
  1145. "m_type": 4,
  1146. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1147. },
  1148. "isNullPointer": true,
  1149. "label": "Invalid BehaviorContext::Class name: 0"
  1150. },
  1151. {
  1152. "isOverloadedStorage": false,
  1153. "scriptCanvasType": {
  1154. "m_type": 3
  1155. },
  1156. "isNullPointer": false,
  1157. "$type": "double",
  1158. "value": 0.0,
  1159. "label": "Candidate"
  1160. },
  1161. {
  1162. "isOverloadedStorage": false,
  1163. "scriptCanvasType": {
  1164. "m_type": 3
  1165. },
  1166. "isNullPointer": false,
  1167. "$type": "double",
  1168. "value": 11.0,
  1169. "label": "Reference"
  1170. },
  1171. {
  1172. "isOverloadedStorage": false,
  1173. "scriptCanvasType": {
  1174. "m_type": 5
  1175. },
  1176. "isNullPointer": false,
  1177. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1178. "value": "",
  1179. "label": "Report"
  1180. }
  1181. ],
  1182. "methodType": 2,
  1183. "methodName": "Expect Equal",
  1184. "className": "Unit Testing",
  1185. "inputSlots": [
  1186. {
  1187. "m_id": "{C656EEF7-D52B-48C1-B98D-A8528771B86F}"
  1188. },
  1189. {
  1190. "m_id": "{5210DC3D-4464-4D92-A6E4-C6EE2C8CE04D}"
  1191. },
  1192. {
  1193. "m_id": "{C29396BF-77C2-4699-A4F4-FCE290E498EF}"
  1194. },
  1195. {
  1196. "m_id": "{69C5A257-8F52-45FE-A723-19A7B688B4F4}"
  1197. }
  1198. ],
  1199. "orderedInputSlotIds": [
  1200. {
  1201. "m_id": "{C656EEF7-D52B-48C1-B98D-A8528771B86F}"
  1202. },
  1203. {
  1204. "m_id": "{5210DC3D-4464-4D92-A6E4-C6EE2C8CE04D}"
  1205. },
  1206. {
  1207. "m_id": "{C29396BF-77C2-4699-A4F4-FCE290E498EF}"
  1208. },
  1209. {
  1210. "m_id": "{69C5A257-8F52-45FE-A723-19A7B688B4F4}"
  1211. }
  1212. ],
  1213. "outputSlotIds": [
  1214. {}
  1215. ]
  1216. }
  1217. }
  1218. },
  1219. {
  1220. "Id": {
  1221. "id": 719337804078
  1222. },
  1223. "Name": "SC-Node(Start)",
  1224. "Components": {
  1225. "Component_[18179221326549298606]": {
  1226. "$type": "Start",
  1227. "Id": 18179221326549298606,
  1228. "Slots": [
  1229. {
  1230. "id": {
  1231. "m_id": "{80D9643B-7A3B-4517-B9FB-A6D075913587}"
  1232. },
  1233. "contracts": [
  1234. {
  1235. "$type": "SlotTypeContract"
  1236. }
  1237. ],
  1238. "slotName": "Out",
  1239. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1240. "Descriptor": {
  1241. "ConnectionType": 2,
  1242. "SlotType": 1
  1243. }
  1244. }
  1245. ]
  1246. }
  1247. }
  1248. },
  1249. {
  1250. "Id": {
  1251. "id": 788057280814
  1252. },
  1253. "Name": "SC-Node(Expect Equal)",
  1254. "Components": {
  1255. "Component_[18192767418540340335]": {
  1256. "$type": "MethodOverloaded",
  1257. "Id": 18192767418540340335,
  1258. "Slots": [
  1259. {
  1260. "isVisibile": false,
  1261. "id": {
  1262. "m_id": "{5D6B107E-555D-43C5-84CF-4B312F40ED7E}"
  1263. },
  1264. "contracts": [
  1265. {
  1266. "$type": "SlotTypeContract"
  1267. }
  1268. ],
  1269. "slotName": "Invalid BehaviorContext::Class name: 0",
  1270. "DisplayDataType": {
  1271. "m_type": 4,
  1272. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1273. },
  1274. "Descriptor": {
  1275. "ConnectionType": 1,
  1276. "SlotType": 2
  1277. },
  1278. "DataType": 1
  1279. },
  1280. {
  1281. "id": {
  1282. "m_id": "{DD2A8217-7141-4E7D-B16E-70388ECF2CEB}"
  1283. },
  1284. "DynamicTypeOverride": 1,
  1285. "contracts": [
  1286. {
  1287. "$type": "SlotTypeContract"
  1288. },
  1289. {
  1290. "$type": "OverloadContract"
  1291. }
  1292. ],
  1293. "slotName": "Candidate",
  1294. "toolTip": "left of ==",
  1295. "DisplayDataType": {
  1296. "m_type": 3
  1297. },
  1298. "Descriptor": {
  1299. "ConnectionType": 1,
  1300. "SlotType": 2
  1301. },
  1302. "DataType": 1
  1303. },
  1304. {
  1305. "id": {
  1306. "m_id": "{10A6D952-D82D-4A45-88E1-078691ED40C8}"
  1307. },
  1308. "DynamicTypeOverride": 1,
  1309. "contracts": [
  1310. {
  1311. "$type": "SlotTypeContract"
  1312. },
  1313. {
  1314. "$type": "OverloadContract"
  1315. }
  1316. ],
  1317. "slotName": "Reference",
  1318. "toolTip": "right of ==",
  1319. "DisplayDataType": {
  1320. "m_type": 3
  1321. },
  1322. "Descriptor": {
  1323. "ConnectionType": 1,
  1324. "SlotType": 2
  1325. },
  1326. "DataType": 1
  1327. },
  1328. {
  1329. "id": {
  1330. "m_id": "{42FEA6F8-2C0D-4CB0-9D3C-D6A71F3B6181}"
  1331. },
  1332. "contracts": [
  1333. {
  1334. "$type": "SlotTypeContract"
  1335. }
  1336. ],
  1337. "slotName": "Report",
  1338. "toolTip": "additional notes for the test report",
  1339. "DisplayDataType": {
  1340. "m_type": 5
  1341. },
  1342. "Descriptor": {
  1343. "ConnectionType": 1,
  1344. "SlotType": 2
  1345. },
  1346. "DataType": 1
  1347. },
  1348. {
  1349. "id": {
  1350. "m_id": "{2F1331B7-4637-4EA9-8125-890A105AB620}"
  1351. },
  1352. "contracts": [
  1353. {
  1354. "$type": "SlotTypeContract"
  1355. }
  1356. ],
  1357. "slotName": "In",
  1358. "Descriptor": {
  1359. "ConnectionType": 1,
  1360. "SlotType": 1
  1361. }
  1362. },
  1363. {
  1364. "id": {
  1365. "m_id": "{9EF8CDBC-0F94-49D7-83CC-8B3086A0F57D}"
  1366. },
  1367. "contracts": [
  1368. {
  1369. "$type": "SlotTypeContract"
  1370. }
  1371. ],
  1372. "slotName": "Out",
  1373. "Descriptor": {
  1374. "ConnectionType": 2,
  1375. "SlotType": 1
  1376. }
  1377. }
  1378. ],
  1379. "Datums": [
  1380. {
  1381. "scriptCanvasType": {
  1382. "m_type": 4,
  1383. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1384. },
  1385. "isNullPointer": true,
  1386. "label": "Invalid BehaviorContext::Class name: 0"
  1387. },
  1388. {
  1389. "isOverloadedStorage": false,
  1390. "scriptCanvasType": {
  1391. "m_type": 3
  1392. },
  1393. "isNullPointer": false,
  1394. "$type": "double",
  1395. "value": 0.0,
  1396. "label": "Candidate"
  1397. },
  1398. {
  1399. "isOverloadedStorage": false,
  1400. "scriptCanvasType": {
  1401. "m_type": 3
  1402. },
  1403. "isNullPointer": false,
  1404. "$type": "double",
  1405. "value": 6.0,
  1406. "label": "Reference"
  1407. },
  1408. {
  1409. "isOverloadedStorage": false,
  1410. "scriptCanvasType": {
  1411. "m_type": 5
  1412. },
  1413. "isNullPointer": false,
  1414. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1415. "value": "",
  1416. "label": "Report"
  1417. }
  1418. ],
  1419. "methodType": 2,
  1420. "methodName": "Expect Equal",
  1421. "className": "Unit Testing",
  1422. "inputSlots": [
  1423. {
  1424. "m_id": "{5D6B107E-555D-43C5-84CF-4B312F40ED7E}"
  1425. },
  1426. {
  1427. "m_id": "{DD2A8217-7141-4E7D-B16E-70388ECF2CEB}"
  1428. },
  1429. {
  1430. "m_id": "{10A6D952-D82D-4A45-88E1-078691ED40C8}"
  1431. },
  1432. {
  1433. "m_id": "{42FEA6F8-2C0D-4CB0-9D3C-D6A71F3B6181}"
  1434. }
  1435. ],
  1436. "orderedInputSlotIds": [
  1437. {
  1438. "m_id": "{5D6B107E-555D-43C5-84CF-4B312F40ED7E}"
  1439. },
  1440. {
  1441. "m_id": "{DD2A8217-7141-4E7D-B16E-70388ECF2CEB}"
  1442. },
  1443. {
  1444. "m_id": "{10A6D952-D82D-4A45-88E1-078691ED40C8}"
  1445. },
  1446. {
  1447. "m_id": "{42FEA6F8-2C0D-4CB0-9D3C-D6A71F3B6181}"
  1448. }
  1449. ],
  1450. "outputSlotIds": [
  1451. {}
  1452. ]
  1453. }
  1454. }
  1455. },
  1456. {
  1457. "Id": {
  1458. "id": 775172378926
  1459. },
  1460. "Name": "SC-Node(CompactSubtractNodeableNode)",
  1461. "Components": {
  1462. "Component_[1843779553919837246]": {
  1463. "$type": "CompactSubtractNodeableNode",
  1464. "Id": 1843779553919837246,
  1465. "Slots": [
  1466. {
  1467. "isVisibile": false,
  1468. "id": {
  1469. "m_id": "{CEF974F7-0E18-4BB4-8558-D8E6205213A4}"
  1470. },
  1471. "contracts": [
  1472. {
  1473. "$type": "SlotTypeContract"
  1474. }
  1475. ],
  1476. "slotName": "In",
  1477. "Descriptor": {
  1478. "ConnectionType": 1,
  1479. "SlotType": 1
  1480. },
  1481. "CreatesImplicitConnections": true
  1482. },
  1483. {
  1484. "id": {
  1485. "m_id": "{F0EE48A7-2253-49A0-AAD0-6D3D90C6645E}"
  1486. },
  1487. "contracts": [
  1488. {
  1489. "$type": "SlotTypeContract"
  1490. }
  1491. ],
  1492. "slotName": "a",
  1493. "Descriptor": {
  1494. "ConnectionType": 1,
  1495. "SlotType": 2
  1496. },
  1497. "DataType": 1,
  1498. "CanHaveInputField": false,
  1499. "IsNameHidden": true
  1500. },
  1501. {
  1502. "id": {
  1503. "m_id": "{0FE6B78B-235F-416E-8E1B-8F8B059F7F79}"
  1504. },
  1505. "contracts": [
  1506. {
  1507. "$type": "SlotTypeContract"
  1508. }
  1509. ],
  1510. "slotName": "b",
  1511. "Descriptor": {
  1512. "ConnectionType": 1,
  1513. "SlotType": 2
  1514. },
  1515. "DataType": 1,
  1516. "CanHaveInputField": false,
  1517. "IsNameHidden": true
  1518. },
  1519. {
  1520. "isVisibile": false,
  1521. "id": {
  1522. "m_id": "{74F726E1-29D4-4C95-8CC6-E584E351CBAE}"
  1523. },
  1524. "contracts": [
  1525. {
  1526. "$type": "SlotTypeContract"
  1527. }
  1528. ],
  1529. "slotName": "Out",
  1530. "Descriptor": {
  1531. "ConnectionType": 2,
  1532. "SlotType": 1
  1533. }
  1534. },
  1535. {
  1536. "id": {
  1537. "m_id": "{F4757C5F-FFF8-4A34-864D-2D1DC4EC446B}"
  1538. },
  1539. "contracts": [
  1540. {
  1541. "$type": "SlotTypeContract"
  1542. }
  1543. ],
  1544. "slotName": "Out",
  1545. "DisplayDataType": {
  1546. "m_type": 3
  1547. },
  1548. "Descriptor": {
  1549. "ConnectionType": 2,
  1550. "SlotType": 2
  1551. },
  1552. "DataType": 1,
  1553. "CanHaveInputField": false,
  1554. "IsNameHidden": true
  1555. }
  1556. ],
  1557. "Datums": [
  1558. {
  1559. "isOverloadedStorage": false,
  1560. "scriptCanvasType": {
  1561. "m_type": 3
  1562. },
  1563. "isNullPointer": false,
  1564. "$type": "double",
  1565. "value": 0.0,
  1566. "label": "a"
  1567. },
  1568. {
  1569. "isOverloadedStorage": false,
  1570. "scriptCanvasType": {
  1571. "m_type": 3
  1572. },
  1573. "isNullPointer": false,
  1574. "$type": "double",
  1575. "value": 0.0,
  1576. "label": "b"
  1577. }
  1578. ],
  1579. "Style": ".compact",
  1580. "slotExecutionMap": {
  1581. "ins": [
  1582. {
  1583. "_slotId": {
  1584. "m_id": "{CEF974F7-0E18-4BB4-8558-D8E6205213A4}"
  1585. },
  1586. "_inputs": [
  1587. {
  1588. "_slotId": {
  1589. "m_id": "{F0EE48A7-2253-49A0-AAD0-6D3D90C6645E}"
  1590. }
  1591. },
  1592. {
  1593. "_slotId": {
  1594. "m_id": "{0FE6B78B-235F-416E-8E1B-8F8B059F7F79}"
  1595. }
  1596. }
  1597. ],
  1598. "_outs": [
  1599. {
  1600. "_slotId": {
  1601. "m_id": "{74F726E1-29D4-4C95-8CC6-E584E351CBAE}"
  1602. },
  1603. "_name": "Out",
  1604. "_outputs": [
  1605. {
  1606. "_slotId": {
  1607. "m_id": "{F4757C5F-FFF8-4A34-864D-2D1DC4EC446B}"
  1608. }
  1609. }
  1610. ]
  1611. }
  1612. ]
  1613. }
  1614. ]
  1615. }
  1616. }
  1617. }
  1618. },
  1619. {
  1620. "Id": {
  1621. "id": 762287477038
  1622. },
  1623. "Name": "SC-Node(Mark Complete)",
  1624. "Components": {
  1625. "Component_[4446023308463687536]": {
  1626. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1627. "Id": 4446023308463687536,
  1628. "Slots": [
  1629. {
  1630. "isVisibile": false,
  1631. "id": {
  1632. "m_id": "{668C6A73-5739-43F7-AA70-54473B45948D}"
  1633. },
  1634. "contracts": [
  1635. {
  1636. "$type": "SlotTypeContract"
  1637. }
  1638. ],
  1639. "slotName": "Invalid BehaviorContext::Class name: 0",
  1640. "Descriptor": {
  1641. "ConnectionType": 1,
  1642. "SlotType": 2
  1643. },
  1644. "DataType": 1
  1645. },
  1646. {
  1647. "id": {
  1648. "m_id": "{2FFD63AC-BCDC-4A96-8869-EC0BA0A44BA7}"
  1649. },
  1650. "contracts": [
  1651. {
  1652. "$type": "SlotTypeContract"
  1653. }
  1654. ],
  1655. "slotName": "Report",
  1656. "toolTip": "additional notes for the test report",
  1657. "Descriptor": {
  1658. "ConnectionType": 1,
  1659. "SlotType": 2
  1660. },
  1661. "DataType": 1
  1662. },
  1663. {
  1664. "id": {
  1665. "m_id": "{6883C8D8-6B4F-45D1-A140-9A899AA80BDB}"
  1666. },
  1667. "contracts": [
  1668. {
  1669. "$type": "SlotTypeContract"
  1670. }
  1671. ],
  1672. "slotName": "In",
  1673. "Descriptor": {
  1674. "ConnectionType": 1,
  1675. "SlotType": 1
  1676. }
  1677. },
  1678. {
  1679. "id": {
  1680. "m_id": "{A1E86BF8-34E1-4CD9-B27B-E41A04920110}"
  1681. },
  1682. "contracts": [
  1683. {
  1684. "$type": "SlotTypeContract"
  1685. }
  1686. ],
  1687. "slotName": "Out",
  1688. "Descriptor": {
  1689. "ConnectionType": 2,
  1690. "SlotType": 1
  1691. }
  1692. }
  1693. ],
  1694. "Datums": [
  1695. {
  1696. "scriptCanvasType": {
  1697. "m_type": 4,
  1698. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1699. },
  1700. "isNullPointer": true,
  1701. "label": "Invalid BehaviorContext::Class name: 0"
  1702. },
  1703. {
  1704. "isOverloadedStorage": false,
  1705. "scriptCanvasType": {
  1706. "m_type": 5
  1707. },
  1708. "isNullPointer": false,
  1709. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1710. "value": "",
  1711. "label": "Report"
  1712. }
  1713. ],
  1714. "methodType": 2,
  1715. "methodName": "Mark Complete",
  1716. "className": "Unit Testing",
  1717. "resultSlotIDs": [
  1718. {}
  1719. ],
  1720. "inputSlots": [
  1721. {
  1722. "m_id": "{668C6A73-5739-43F7-AA70-54473B45948D}"
  1723. },
  1724. {
  1725. "m_id": "{2FFD63AC-BCDC-4A96-8869-EC0BA0A44BA7}"
  1726. }
  1727. ],
  1728. "prettyClassName": "Unit Testing"
  1729. }
  1730. }
  1731. },
  1732. {
  1733. "Id": {
  1734. "id": 749402575150
  1735. },
  1736. "Name": "SC-Node(Expect Equal)",
  1737. "Components": {
  1738. "Component_[518568518571149446]": {
  1739. "$type": "MethodOverloaded",
  1740. "Id": 518568518571149446,
  1741. "Slots": [
  1742. {
  1743. "isVisibile": false,
  1744. "id": {
  1745. "m_id": "{E80669CB-82E6-457F-800B-9B92831E595D}"
  1746. },
  1747. "contracts": [
  1748. {
  1749. "$type": "SlotTypeContract"
  1750. }
  1751. ],
  1752. "slotName": "Invalid BehaviorContext::Class name: 0",
  1753. "DisplayDataType": {
  1754. "m_type": 4,
  1755. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1756. },
  1757. "Descriptor": {
  1758. "ConnectionType": 1,
  1759. "SlotType": 2
  1760. },
  1761. "DataType": 1
  1762. },
  1763. {
  1764. "id": {
  1765. "m_id": "{88977C2D-C653-4D14-8E60-FED43199B7E9}"
  1766. },
  1767. "DynamicTypeOverride": 1,
  1768. "contracts": [
  1769. {
  1770. "$type": "SlotTypeContract"
  1771. },
  1772. {
  1773. "$type": "OverloadContract"
  1774. }
  1775. ],
  1776. "slotName": "Candidate",
  1777. "toolTip": "left of ==",
  1778. "DisplayDataType": {
  1779. "m_type": 3
  1780. },
  1781. "Descriptor": {
  1782. "ConnectionType": 1,
  1783. "SlotType": 2
  1784. },
  1785. "DataType": 1
  1786. },
  1787. {
  1788. "id": {
  1789. "m_id": "{BDD21C12-E16F-4802-B740-524DE9D50220}"
  1790. },
  1791. "DynamicTypeOverride": 1,
  1792. "contracts": [
  1793. {
  1794. "$type": "SlotTypeContract"
  1795. },
  1796. {
  1797. "$type": "OverloadContract"
  1798. }
  1799. ],
  1800. "slotName": "Reference",
  1801. "toolTip": "right of ==",
  1802. "DisplayDataType": {
  1803. "m_type": 3
  1804. },
  1805. "Descriptor": {
  1806. "ConnectionType": 1,
  1807. "SlotType": 2
  1808. },
  1809. "DataType": 1
  1810. },
  1811. {
  1812. "id": {
  1813. "m_id": "{8EFA223B-DAF6-4368-A1CF-5EBE5CF33ECE}"
  1814. },
  1815. "contracts": [
  1816. {
  1817. "$type": "SlotTypeContract"
  1818. }
  1819. ],
  1820. "slotName": "Report",
  1821. "toolTip": "additional notes for the test report",
  1822. "DisplayDataType": {
  1823. "m_type": 5
  1824. },
  1825. "Descriptor": {
  1826. "ConnectionType": 1,
  1827. "SlotType": 2
  1828. },
  1829. "DataType": 1
  1830. },
  1831. {
  1832. "id": {
  1833. "m_id": "{8A547048-A62A-4E6D-B7B4-469A7EBC691C}"
  1834. },
  1835. "contracts": [
  1836. {
  1837. "$type": "SlotTypeContract"
  1838. }
  1839. ],
  1840. "slotName": "In",
  1841. "Descriptor": {
  1842. "ConnectionType": 1,
  1843. "SlotType": 1
  1844. }
  1845. },
  1846. {
  1847. "id": {
  1848. "m_id": "{2C8630E2-7971-47B8-B59B-DC495B81669B}"
  1849. },
  1850. "contracts": [
  1851. {
  1852. "$type": "SlotTypeContract"
  1853. }
  1854. ],
  1855. "slotName": "Out",
  1856. "Descriptor": {
  1857. "ConnectionType": 2,
  1858. "SlotType": 1
  1859. }
  1860. }
  1861. ],
  1862. "Datums": [
  1863. {
  1864. "scriptCanvasType": {
  1865. "m_type": 4,
  1866. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1867. },
  1868. "isNullPointer": true,
  1869. "label": "Invalid BehaviorContext::Class name: 0"
  1870. },
  1871. {
  1872. "isOverloadedStorage": false,
  1873. "scriptCanvasType": {
  1874. "m_type": 3
  1875. },
  1876. "isNullPointer": false,
  1877. "$type": "double",
  1878. "value": 0.0,
  1879. "label": "Candidate"
  1880. },
  1881. {
  1882. "isOverloadedStorage": false,
  1883. "scriptCanvasType": {
  1884. "m_type": 3
  1885. },
  1886. "isNullPointer": false,
  1887. "$type": "double",
  1888. "value": 2.0,
  1889. "label": "Reference"
  1890. },
  1891. {
  1892. "isOverloadedStorage": false,
  1893. "scriptCanvasType": {
  1894. "m_type": 5
  1895. },
  1896. "isNullPointer": false,
  1897. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1898. "value": "",
  1899. "label": "Report"
  1900. }
  1901. ],
  1902. "methodType": 2,
  1903. "methodName": "Expect Equal",
  1904. "className": "Unit Testing",
  1905. "inputSlots": [
  1906. {
  1907. "m_id": "{E80669CB-82E6-457F-800B-9B92831E595D}"
  1908. },
  1909. {
  1910. "m_id": "{88977C2D-C653-4D14-8E60-FED43199B7E9}"
  1911. },
  1912. {
  1913. "m_id": "{BDD21C12-E16F-4802-B740-524DE9D50220}"
  1914. },
  1915. {
  1916. "m_id": "{8EFA223B-DAF6-4368-A1CF-5EBE5CF33ECE}"
  1917. }
  1918. ],
  1919. "orderedInputSlotIds": [
  1920. {
  1921. "m_id": "{E80669CB-82E6-457F-800B-9B92831E595D}"
  1922. },
  1923. {
  1924. "m_id": "{88977C2D-C653-4D14-8E60-FED43199B7E9}"
  1925. },
  1926. {
  1927. "m_id": "{BDD21C12-E16F-4802-B740-524DE9D50220}"
  1928. },
  1929. {
  1930. "m_id": "{8EFA223B-DAF6-4368-A1CF-5EBE5CF33ECE}"
  1931. }
  1932. ],
  1933. "outputSlotIds": [
  1934. {}
  1935. ]
  1936. }
  1937. }
  1938. },
  1939. {
  1940. "Id": {
  1941. "id": 740812640558
  1942. },
  1943. "Name": "SC Node(GetVariable)",
  1944. "Components": {
  1945. "Component_[5920227290626827456]": {
  1946. "$type": "GetVariableNode",
  1947. "Id": 5920227290626827456,
  1948. "Slots": [
  1949. {
  1950. "id": {
  1951. "m_id": "{24581D09-1B01-4420-A090-004EF8DEE08A}"
  1952. },
  1953. "contracts": [
  1954. {
  1955. "$type": "SlotTypeContract"
  1956. }
  1957. ],
  1958. "slotName": "In",
  1959. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1960. "Descriptor": {
  1961. "ConnectionType": 1,
  1962. "SlotType": 1
  1963. }
  1964. },
  1965. {
  1966. "id": {
  1967. "m_id": "{223D394E-CCAE-4305-ACD3-8734835EA299}"
  1968. },
  1969. "contracts": [
  1970. {
  1971. "$type": "SlotTypeContract"
  1972. }
  1973. ],
  1974. "slotName": "Out",
  1975. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1976. "Descriptor": {
  1977. "ConnectionType": 2,
  1978. "SlotType": 1
  1979. }
  1980. },
  1981. {
  1982. "id": {
  1983. "m_id": "{2B0D0FCE-30E3-4008-84B5-3DD90066D81C}"
  1984. },
  1985. "contracts": [
  1986. {
  1987. "$type": "SlotTypeContract"
  1988. }
  1989. ],
  1990. "slotName": "Number",
  1991. "DisplayDataType": {
  1992. "m_type": 3
  1993. },
  1994. "Descriptor": {
  1995. "ConnectionType": 2,
  1996. "SlotType": 2
  1997. },
  1998. "DataType": 1
  1999. }
  2000. ],
  2001. "m_variableId": {
  2002. "m_id": "{B9CABEAF-B467-420C-A5A5-86344714D336}"
  2003. },
  2004. "m_variableDataOutSlotId": {
  2005. "m_id": "{2B0D0FCE-30E3-4008-84B5-3DD90066D81C}"
  2006. }
  2007. }
  2008. }
  2009. },
  2010. {
  2011. "Id": {
  2012. "id": 732222705966
  2013. },
  2014. "Name": "SC-Node(CompactIncrementNodeableNode)",
  2015. "Components": {
  2016. "Component_[6338070757527846341]": {
  2017. "$type": "CompactIncrementNodeableNode",
  2018. "Id": 6338070757527846341,
  2019. "Slots": [
  2020. {
  2021. "isVisibile": false,
  2022. "id": {
  2023. "m_id": "{362F93F2-586D-4AA0-93D9-76F90D70C868}"
  2024. },
  2025. "contracts": [
  2026. {
  2027. "$type": "SlotTypeContract"
  2028. }
  2029. ],
  2030. "slotName": "In",
  2031. "Descriptor": {
  2032. "ConnectionType": 1,
  2033. "SlotType": 1
  2034. },
  2035. "CreatesImplicitConnections": true
  2036. },
  2037. {
  2038. "id": {
  2039. "m_id": "{8D3CE538-1F1D-4BDD-8AFD-225359F48545}"
  2040. },
  2041. "contracts": [
  2042. {
  2043. "$type": "SlotTypeContract"
  2044. }
  2045. ],
  2046. "slotName": "a",
  2047. "Descriptor": {
  2048. "ConnectionType": 1,
  2049. "SlotType": 2
  2050. },
  2051. "DataType": 1,
  2052. "CanHaveInputField": false,
  2053. "IsNameHidden": true
  2054. },
  2055. {
  2056. "isVisibile": false,
  2057. "id": {
  2058. "m_id": "{4ABF9677-D8D2-45FD-BAE2-6A5449AC7557}"
  2059. },
  2060. "contracts": [
  2061. {
  2062. "$type": "SlotTypeContract"
  2063. }
  2064. ],
  2065. "slotName": "Out",
  2066. "Descriptor": {
  2067. "ConnectionType": 2,
  2068. "SlotType": 1
  2069. }
  2070. },
  2071. {
  2072. "id": {
  2073. "m_id": "{70489A72-3F26-4D2E-BD49-ECB7AEC2D930}"
  2074. },
  2075. "contracts": [
  2076. {
  2077. "$type": "SlotTypeContract"
  2078. }
  2079. ],
  2080. "slotName": "Out",
  2081. "DisplayDataType": {
  2082. "m_type": 3
  2083. },
  2084. "Descriptor": {
  2085. "ConnectionType": 2,
  2086. "SlotType": 2
  2087. },
  2088. "DataType": 1,
  2089. "CanHaveInputField": false,
  2090. "IsNameHidden": true
  2091. }
  2092. ],
  2093. "Datums": [
  2094. {
  2095. "isOverloadedStorage": false,
  2096. "scriptCanvasType": {
  2097. "m_type": 3
  2098. },
  2099. "isNullPointer": false,
  2100. "$type": "double",
  2101. "value": 0.0,
  2102. "label": "a"
  2103. }
  2104. ],
  2105. "Style": ".compact",
  2106. "slotExecutionMap": {
  2107. "ins": [
  2108. {
  2109. "_slotId": {
  2110. "m_id": "{362F93F2-586D-4AA0-93D9-76F90D70C868}"
  2111. },
  2112. "_inputs": [
  2113. {
  2114. "_slotId": {
  2115. "m_id": "{8D3CE538-1F1D-4BDD-8AFD-225359F48545}"
  2116. }
  2117. }
  2118. ],
  2119. "_outs": [
  2120. {
  2121. "_slotId": {
  2122. "m_id": "{4ABF9677-D8D2-45FD-BAE2-6A5449AC7557}"
  2123. },
  2124. "_name": "Out",
  2125. "_outputs": [
  2126. {
  2127. "_slotId": {
  2128. "m_id": "{70489A72-3F26-4D2E-BD49-ECB7AEC2D930}"
  2129. }
  2130. }
  2131. ]
  2132. }
  2133. ]
  2134. }
  2135. ]
  2136. }
  2137. }
  2138. }
  2139. },
  2140. {
  2141. "Id": {
  2142. "id": 723632771374
  2143. },
  2144. "Name": "SC Node(GetVariable)",
  2145. "Components": {
  2146. "Component_[677299225795722599]": {
  2147. "$type": "GetVariableNode",
  2148. "Id": 677299225795722599,
  2149. "Slots": [
  2150. {
  2151. "id": {
  2152. "m_id": "{51259DE1-5758-4A62-B5A9-0A75FEDA5B8D}"
  2153. },
  2154. "contracts": [
  2155. {
  2156. "$type": "SlotTypeContract"
  2157. }
  2158. ],
  2159. "slotName": "In",
  2160. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2161. "Descriptor": {
  2162. "ConnectionType": 1,
  2163. "SlotType": 1
  2164. }
  2165. },
  2166. {
  2167. "id": {
  2168. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  2169. },
  2170. "contracts": [
  2171. {
  2172. "$type": "SlotTypeContract"
  2173. }
  2174. ],
  2175. "slotName": "Out",
  2176. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2177. "Descriptor": {
  2178. "ConnectionType": 2,
  2179. "SlotType": 1
  2180. }
  2181. },
  2182. {
  2183. "id": {
  2184. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  2185. },
  2186. "contracts": [
  2187. {
  2188. "$type": "SlotTypeContract"
  2189. }
  2190. ],
  2191. "slotName": "Number",
  2192. "DisplayDataType": {
  2193. "m_type": 3
  2194. },
  2195. "Descriptor": {
  2196. "ConnectionType": 2,
  2197. "SlotType": 2
  2198. },
  2199. "DataType": 1
  2200. }
  2201. ],
  2202. "m_variableId": {
  2203. "m_id": "{8C4D4D6C-ACFB-43DD-B72E-BF6C7A521152}"
  2204. },
  2205. "m_variableDataOutSlotId": {
  2206. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  2207. }
  2208. }
  2209. }
  2210. },
  2211. {
  2212. "Id": {
  2213. "id": 792352248110
  2214. },
  2215. "Name": "SC-Node(CompactNegateNodeableNode)",
  2216. "Components": {
  2217. "Component_[7612818545677164298]": {
  2218. "$type": "CompactNegateNodeableNode",
  2219. "Id": 7612818545677164298,
  2220. "Slots": [
  2221. {
  2222. "isVisibile": false,
  2223. "id": {
  2224. "m_id": "{9A087FAB-A8E0-471C-916A-F55AFB66E08B}"
  2225. },
  2226. "contracts": [
  2227. {
  2228. "$type": "SlotTypeContract"
  2229. }
  2230. ],
  2231. "slotName": "In",
  2232. "Descriptor": {
  2233. "ConnectionType": 1,
  2234. "SlotType": 1
  2235. },
  2236. "CreatesImplicitConnections": true
  2237. },
  2238. {
  2239. "id": {
  2240. "m_id": "{BB8BE4FF-DA82-4E76-ADBC-D93E9E552B13}"
  2241. },
  2242. "contracts": [
  2243. {
  2244. "$type": "SlotTypeContract"
  2245. }
  2246. ],
  2247. "slotName": "a",
  2248. "Descriptor": {
  2249. "ConnectionType": 1,
  2250. "SlotType": 2
  2251. },
  2252. "DataType": 1,
  2253. "CanHaveInputField": false,
  2254. "IsNameHidden": true
  2255. },
  2256. {
  2257. "isVisibile": false,
  2258. "id": {
  2259. "m_id": "{1AB49177-3C2F-4E95-95E3-81349043651C}"
  2260. },
  2261. "contracts": [
  2262. {
  2263. "$type": "SlotTypeContract"
  2264. }
  2265. ],
  2266. "slotName": "Out",
  2267. "Descriptor": {
  2268. "ConnectionType": 2,
  2269. "SlotType": 1
  2270. }
  2271. },
  2272. {
  2273. "id": {
  2274. "m_id": "{62A089D5-09E1-4E8A-B5F9-D97A622518AF}"
  2275. },
  2276. "contracts": [
  2277. {
  2278. "$type": "SlotTypeContract"
  2279. }
  2280. ],
  2281. "slotName": "Out",
  2282. "DisplayDataType": {
  2283. "m_type": 3
  2284. },
  2285. "Descriptor": {
  2286. "ConnectionType": 2,
  2287. "SlotType": 2
  2288. },
  2289. "DataType": 1,
  2290. "CanHaveInputField": false,
  2291. "IsNameHidden": true
  2292. }
  2293. ],
  2294. "Datums": [
  2295. {
  2296. "isOverloadedStorage": false,
  2297. "scriptCanvasType": {
  2298. "m_type": 3
  2299. },
  2300. "isNullPointer": false,
  2301. "$type": "double",
  2302. "value": 0.0,
  2303. "label": "a"
  2304. }
  2305. ],
  2306. "Style": ".compact",
  2307. "slotExecutionMap": {
  2308. "ins": [
  2309. {
  2310. "_slotId": {
  2311. "m_id": "{9A087FAB-A8E0-471C-916A-F55AFB66E08B}"
  2312. },
  2313. "_inputs": [
  2314. {
  2315. "_slotId": {
  2316. "m_id": "{BB8BE4FF-DA82-4E76-ADBC-D93E9E552B13}"
  2317. }
  2318. }
  2319. ],
  2320. "_outs": [
  2321. {
  2322. "_slotId": {
  2323. "m_id": "{1AB49177-3C2F-4E95-95E3-81349043651C}"
  2324. },
  2325. "_name": "Out",
  2326. "_outputs": [
  2327. {
  2328. "_slotId": {
  2329. "m_id": "{62A089D5-09E1-4E8A-B5F9-D97A622518AF}"
  2330. }
  2331. }
  2332. ]
  2333. }
  2334. ]
  2335. }
  2336. ]
  2337. }
  2338. }
  2339. }
  2340. },
  2341. {
  2342. "Id": {
  2343. "id": 779467346222
  2344. },
  2345. "Name": "SC-Node(CompactDecrementNodeableNode)",
  2346. "Components": {
  2347. "Component_[7944304443885486110]": {
  2348. "$type": "CompactDecrementNodeableNode",
  2349. "Id": 7944304443885486110,
  2350. "Slots": [
  2351. {
  2352. "isVisibile": false,
  2353. "id": {
  2354. "m_id": "{CE6E4755-9585-4D01-9C02-A5091DA2AFFA}"
  2355. },
  2356. "contracts": [
  2357. {
  2358. "$type": "SlotTypeContract"
  2359. }
  2360. ],
  2361. "slotName": "In",
  2362. "Descriptor": {
  2363. "ConnectionType": 1,
  2364. "SlotType": 1
  2365. },
  2366. "CreatesImplicitConnections": true
  2367. },
  2368. {
  2369. "id": {
  2370. "m_id": "{4F511A41-2F66-4D65-9D1C-9FFC68448D13}"
  2371. },
  2372. "contracts": [
  2373. {
  2374. "$type": "SlotTypeContract"
  2375. }
  2376. ],
  2377. "slotName": "a",
  2378. "Descriptor": {
  2379. "ConnectionType": 1,
  2380. "SlotType": 2
  2381. },
  2382. "DataType": 1,
  2383. "CanHaveInputField": false,
  2384. "IsNameHidden": true
  2385. },
  2386. {
  2387. "isVisibile": false,
  2388. "id": {
  2389. "m_id": "{BDF6F385-6658-49D3-AA88-7003BB953D9C}"
  2390. },
  2391. "contracts": [
  2392. {
  2393. "$type": "SlotTypeContract"
  2394. }
  2395. ],
  2396. "slotName": "Out",
  2397. "Descriptor": {
  2398. "ConnectionType": 2,
  2399. "SlotType": 1
  2400. }
  2401. },
  2402. {
  2403. "id": {
  2404. "m_id": "{BA055C35-5593-4B84-9EAD-011B169BB0A7}"
  2405. },
  2406. "contracts": [
  2407. {
  2408. "$type": "SlotTypeContract"
  2409. }
  2410. ],
  2411. "slotName": "Out",
  2412. "DisplayDataType": {
  2413. "m_type": 3
  2414. },
  2415. "Descriptor": {
  2416. "ConnectionType": 2,
  2417. "SlotType": 2
  2418. },
  2419. "DataType": 1,
  2420. "CanHaveInputField": false,
  2421. "IsNameHidden": true
  2422. }
  2423. ],
  2424. "Datums": [
  2425. {
  2426. "isOverloadedStorage": false,
  2427. "scriptCanvasType": {
  2428. "m_type": 3
  2429. },
  2430. "isNullPointer": false,
  2431. "$type": "double",
  2432. "value": 0.0,
  2433. "label": "a"
  2434. }
  2435. ],
  2436. "Style": ".compact",
  2437. "slotExecutionMap": {
  2438. "ins": [
  2439. {
  2440. "_slotId": {
  2441. "m_id": "{CE6E4755-9585-4D01-9C02-A5091DA2AFFA}"
  2442. },
  2443. "_inputs": [
  2444. {
  2445. "_slotId": {
  2446. "m_id": "{4F511A41-2F66-4D65-9D1C-9FFC68448D13}"
  2447. }
  2448. }
  2449. ],
  2450. "_outs": [
  2451. {
  2452. "_slotId": {
  2453. "m_id": "{BDF6F385-6658-49D3-AA88-7003BB953D9C}"
  2454. },
  2455. "_name": "Out",
  2456. "_outputs": [
  2457. {
  2458. "_slotId": {
  2459. "m_id": "{BA055C35-5593-4B84-9EAD-011B169BB0A7}"
  2460. }
  2461. }
  2462. ]
  2463. }
  2464. ]
  2465. }
  2466. ]
  2467. }
  2468. }
  2469. }
  2470. },
  2471. {
  2472. "Id": {
  2473. "id": 766582444334
  2474. },
  2475. "Name": "SC-Node(Expect Equal)",
  2476. "Components": {
  2477. "Component_[9317952996866306064]": {
  2478. "$type": "MethodOverloaded",
  2479. "Id": 9317952996866306064,
  2480. "Slots": [
  2481. {
  2482. "isVisibile": false,
  2483. "id": {
  2484. "m_id": "{72BD7EF9-E679-4515-9B15-AD119EB5CF98}"
  2485. },
  2486. "contracts": [
  2487. {
  2488. "$type": "SlotTypeContract"
  2489. }
  2490. ],
  2491. "slotName": "Invalid BehaviorContext::Class name: 0",
  2492. "DisplayDataType": {
  2493. "m_type": 4,
  2494. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  2495. },
  2496. "Descriptor": {
  2497. "ConnectionType": 1,
  2498. "SlotType": 2
  2499. },
  2500. "DataType": 1
  2501. },
  2502. {
  2503. "id": {
  2504. "m_id": "{9186C2F0-C289-494B-B0F4-196E9494201B}"
  2505. },
  2506. "DynamicTypeOverride": 1,
  2507. "contracts": [
  2508. {
  2509. "$type": "SlotTypeContract"
  2510. },
  2511. {
  2512. "$type": "OverloadContract"
  2513. }
  2514. ],
  2515. "slotName": "Candidate",
  2516. "toolTip": "left of ==",
  2517. "DisplayDataType": {
  2518. "m_type": 3
  2519. },
  2520. "Descriptor": {
  2521. "ConnectionType": 1,
  2522. "SlotType": 2
  2523. },
  2524. "DataType": 1
  2525. },
  2526. {
  2527. "id": {
  2528. "m_id": "{0E750387-D471-448C-8D8D-22D59A733341}"
  2529. },
  2530. "DynamicTypeOverride": 1,
  2531. "contracts": [
  2532. {
  2533. "$type": "SlotTypeContract"
  2534. },
  2535. {
  2536. "$type": "OverloadContract"
  2537. }
  2538. ],
  2539. "slotName": "Reference",
  2540. "toolTip": "right of ==",
  2541. "DisplayDataType": {
  2542. "m_type": 3
  2543. },
  2544. "Descriptor": {
  2545. "ConnectionType": 1,
  2546. "SlotType": 2
  2547. },
  2548. "DataType": 1
  2549. },
  2550. {
  2551. "id": {
  2552. "m_id": "{B19DD8F7-2D17-4EDF-9574-D793D2676D17}"
  2553. },
  2554. "contracts": [
  2555. {
  2556. "$type": "SlotTypeContract"
  2557. }
  2558. ],
  2559. "slotName": "Report",
  2560. "toolTip": "additional notes for the test report",
  2561. "DisplayDataType": {
  2562. "m_type": 5
  2563. },
  2564. "Descriptor": {
  2565. "ConnectionType": 1,
  2566. "SlotType": 2
  2567. },
  2568. "DataType": 1
  2569. },
  2570. {
  2571. "id": {
  2572. "m_id": "{9A8A0FD7-C2AC-4DED-B772-62A84EF0EEB8}"
  2573. },
  2574. "contracts": [
  2575. {
  2576. "$type": "SlotTypeContract"
  2577. }
  2578. ],
  2579. "slotName": "In",
  2580. "Descriptor": {
  2581. "ConnectionType": 1,
  2582. "SlotType": 1
  2583. }
  2584. },
  2585. {
  2586. "id": {
  2587. "m_id": "{7ACAB8C7-EBA0-40C0-8601-E6E2EAFC426C}"
  2588. },
  2589. "contracts": [
  2590. {
  2591. "$type": "SlotTypeContract"
  2592. }
  2593. ],
  2594. "slotName": "Out",
  2595. "Descriptor": {
  2596. "ConnectionType": 2,
  2597. "SlotType": 1
  2598. }
  2599. }
  2600. ],
  2601. "Datums": [
  2602. {
  2603. "scriptCanvasType": {
  2604. "m_type": 4,
  2605. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  2606. },
  2607. "isNullPointer": true,
  2608. "label": "Invalid BehaviorContext::Class name: 0"
  2609. },
  2610. {
  2611. "isOverloadedStorage": false,
  2612. "scriptCanvasType": {
  2613. "m_type": 3
  2614. },
  2615. "isNullPointer": false,
  2616. "$type": "double",
  2617. "value": 0.0,
  2618. "label": "Candidate"
  2619. },
  2620. {
  2621. "isOverloadedStorage": false,
  2622. "scriptCanvasType": {
  2623. "m_type": 3
  2624. },
  2625. "isNullPointer": false,
  2626. "$type": "double",
  2627. "value": 72.0,
  2628. "label": "Reference"
  2629. },
  2630. {
  2631. "isOverloadedStorage": false,
  2632. "scriptCanvasType": {
  2633. "m_type": 5
  2634. },
  2635. "isNullPointer": false,
  2636. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2637. "value": "",
  2638. "label": "Report"
  2639. }
  2640. ],
  2641. "methodType": 2,
  2642. "methodName": "Expect Equal",
  2643. "className": "Unit Testing",
  2644. "inputSlots": [
  2645. {
  2646. "m_id": "{72BD7EF9-E679-4515-9B15-AD119EB5CF98}"
  2647. },
  2648. {
  2649. "m_id": "{9186C2F0-C289-494B-B0F4-196E9494201B}"
  2650. },
  2651. {
  2652. "m_id": "{0E750387-D471-448C-8D8D-22D59A733341}"
  2653. },
  2654. {
  2655. "m_id": "{B19DD8F7-2D17-4EDF-9574-D793D2676D17}"
  2656. }
  2657. ],
  2658. "orderedInputSlotIds": [
  2659. {
  2660. "m_id": "{72BD7EF9-E679-4515-9B15-AD119EB5CF98}"
  2661. },
  2662. {
  2663. "m_id": "{9186C2F0-C289-494B-B0F4-196E9494201B}"
  2664. },
  2665. {
  2666. "m_id": "{0E750387-D471-448C-8D8D-22D59A733341}"
  2667. },
  2668. {
  2669. "m_id": "{B19DD8F7-2D17-4EDF-9574-D793D2676D17}"
  2670. }
  2671. ],
  2672. "outputSlotIds": [
  2673. {}
  2674. ]
  2675. }
  2676. }
  2677. },
  2678. {
  2679. "Id": {
  2680. "id": 753697542446
  2681. },
  2682. "Name": "SC-Node(CompactDivideNodeableNode)",
  2683. "Components": {
  2684. "Component_[9701867851303349495]": {
  2685. "$type": "CompactDivideNodeableNode",
  2686. "Id": 9701867851303349495,
  2687. "Slots": [
  2688. {
  2689. "isVisibile": false,
  2690. "id": {
  2691. "m_id": "{3066A7AF-5A72-4944-BF12-62B172CEC3D8}"
  2692. },
  2693. "contracts": [
  2694. {
  2695. "$type": "SlotTypeContract"
  2696. }
  2697. ],
  2698. "slotName": "In",
  2699. "Descriptor": {
  2700. "ConnectionType": 1,
  2701. "SlotType": 1
  2702. },
  2703. "CreatesImplicitConnections": true
  2704. },
  2705. {
  2706. "id": {
  2707. "m_id": "{C27CC981-15AD-4268-8C62-F712D07AF9AC}"
  2708. },
  2709. "contracts": [
  2710. {
  2711. "$type": "SlotTypeContract"
  2712. }
  2713. ],
  2714. "slotName": "a",
  2715. "Descriptor": {
  2716. "ConnectionType": 1,
  2717. "SlotType": 2
  2718. },
  2719. "DataType": 1,
  2720. "CanHaveInputField": false,
  2721. "IsNameHidden": true
  2722. },
  2723. {
  2724. "id": {
  2725. "m_id": "{4BE3FE12-9926-48F6-BBBF-B01D0048DAB1}"
  2726. },
  2727. "contracts": [
  2728. {
  2729. "$type": "SlotTypeContract"
  2730. }
  2731. ],
  2732. "slotName": "b",
  2733. "Descriptor": {
  2734. "ConnectionType": 1,
  2735. "SlotType": 2
  2736. },
  2737. "DataType": 1,
  2738. "CanHaveInputField": false,
  2739. "IsNameHidden": true
  2740. },
  2741. {
  2742. "isVisibile": false,
  2743. "id": {
  2744. "m_id": "{3C9445C3-0E33-4694-A58C-DEA00A029A4B}"
  2745. },
  2746. "contracts": [
  2747. {
  2748. "$type": "SlotTypeContract"
  2749. }
  2750. ],
  2751. "slotName": "Out",
  2752. "Descriptor": {
  2753. "ConnectionType": 2,
  2754. "SlotType": 1
  2755. }
  2756. },
  2757. {
  2758. "id": {
  2759. "m_id": "{0526ED87-A1E6-42D5-9F54-03DF0BE9C1E5}"
  2760. },
  2761. "contracts": [
  2762. {
  2763. "$type": "SlotTypeContract"
  2764. }
  2765. ],
  2766. "slotName": "Out",
  2767. "DisplayDataType": {
  2768. "m_type": 3
  2769. },
  2770. "Descriptor": {
  2771. "ConnectionType": 2,
  2772. "SlotType": 2
  2773. },
  2774. "DataType": 1,
  2775. "CanHaveInputField": false,
  2776. "IsNameHidden": true
  2777. }
  2778. ],
  2779. "Datums": [
  2780. {
  2781. "isOverloadedStorage": false,
  2782. "scriptCanvasType": {
  2783. "m_type": 3
  2784. },
  2785. "isNullPointer": false,
  2786. "$type": "double",
  2787. "value": 0.0,
  2788. "label": "a"
  2789. },
  2790. {
  2791. "isOverloadedStorage": false,
  2792. "scriptCanvasType": {
  2793. "m_type": 3
  2794. },
  2795. "isNullPointer": false,
  2796. "$type": "double",
  2797. "value": 0.0,
  2798. "label": "b"
  2799. }
  2800. ],
  2801. "Style": ".compact",
  2802. "slotExecutionMap": {
  2803. "ins": [
  2804. {
  2805. "_slotId": {
  2806. "m_id": "{3066A7AF-5A72-4944-BF12-62B172CEC3D8}"
  2807. },
  2808. "_inputs": [
  2809. {
  2810. "_slotId": {
  2811. "m_id": "{C27CC981-15AD-4268-8C62-F712D07AF9AC}"
  2812. }
  2813. },
  2814. {
  2815. "_slotId": {
  2816. "m_id": "{4BE3FE12-9926-48F6-BBBF-B01D0048DAB1}"
  2817. }
  2818. }
  2819. ],
  2820. "_outs": [
  2821. {
  2822. "_slotId": {
  2823. "m_id": "{3C9445C3-0E33-4694-A58C-DEA00A029A4B}"
  2824. },
  2825. "_name": "Out",
  2826. "_outputs": [
  2827. {
  2828. "_slotId": {
  2829. "m_id": "{0526ED87-A1E6-42D5-9F54-03DF0BE9C1E5}"
  2830. }
  2831. }
  2832. ]
  2833. }
  2834. ]
  2835. }
  2836. ]
  2837. }
  2838. }
  2839. }
  2840. }
  2841. ],
  2842. "m_connections": [
  2843. {
  2844. "Id": {
  2845. "id": 796647215406
  2846. },
  2847. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  2848. "Components": {
  2849. "Component_[3609475798709941559]": {
  2850. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2851. "Id": 3609475798709941559,
  2852. "sourceEndpoint": {
  2853. "nodeId": {
  2854. "id": 719337804078
  2855. },
  2856. "slotId": {
  2857. "m_id": "{80D9643B-7A3B-4517-B9FB-A6D075913587}"
  2858. }
  2859. },
  2860. "targetEndpoint": {
  2861. "nodeId": {
  2862. "id": 740812640558
  2863. },
  2864. "slotId": {
  2865. "m_id": "{24581D09-1B01-4420-A090-004EF8DEE08A}"
  2866. }
  2867. }
  2868. }
  2869. }
  2870. },
  2871. {
  2872. "Id": {
  2873. "id": 800942182702
  2874. },
  2875. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  2876. "Components": {
  2877. "Component_[17252154749490322920]": {
  2878. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2879. "Id": 17252154749490322920,
  2880. "sourceEndpoint": {
  2881. "nodeId": {
  2882. "id": 740812640558
  2883. },
  2884. "slotId": {
  2885. "m_id": "{223D394E-CCAE-4305-ACD3-8734835EA299}"
  2886. }
  2887. },
  2888. "targetEndpoint": {
  2889. "nodeId": {
  2890. "id": 723632771374
  2891. },
  2892. "slotId": {
  2893. "m_id": "{51259DE1-5758-4A62-B5A9-0A75FEDA5B8D}"
  2894. }
  2895. }
  2896. }
  2897. }
  2898. },
  2899. {
  2900. "Id": {
  2901. "id": 805237149998
  2902. },
  2903. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  2904. "Components": {
  2905. "Component_[11295753982038218103]": {
  2906. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2907. "Id": 11295753982038218103,
  2908. "sourceEndpoint": {
  2909. "nodeId": {
  2910. "id": 723632771374
  2911. },
  2912. "slotId": {
  2913. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  2914. }
  2915. },
  2916. "targetEndpoint": {
  2917. "nodeId": {
  2918. "id": 783762313518
  2919. },
  2920. "slotId": {
  2921. "m_id": "{E0C250E9-0D12-4A72-B134-B0F40B16B943}"
  2922. }
  2923. }
  2924. }
  2925. }
  2926. },
  2927. {
  2928. "Id": {
  2929. "id": 809532117294
  2930. },
  2931. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(+=: a)",
  2932. "Components": {
  2933. "Component_[12856461960029336403]": {
  2934. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2935. "Id": 12856461960029336403,
  2936. "sourceEndpoint": {
  2937. "nodeId": {
  2938. "id": 723632771374
  2939. },
  2940. "slotId": {
  2941. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  2942. }
  2943. },
  2944. "targetEndpoint": {
  2945. "nodeId": {
  2946. "id": 736517673262
  2947. },
  2948. "slotId": {
  2949. "m_id": "{FBB4E64B-6F89-4DB8-8A97-56E0920ECB2F}"
  2950. }
  2951. }
  2952. }
  2953. }
  2954. },
  2955. {
  2956. "Id": {
  2957. "id": 813827084590
  2958. },
  2959. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(+=: In)",
  2960. "Components": {
  2961. "Component_[10348178197385096430]": {
  2962. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2963. "Id": 10348178197385096430,
  2964. "sourceEndpoint": {
  2965. "nodeId": {
  2966. "id": 723632771374
  2967. },
  2968. "slotId": {
  2969. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  2970. }
  2971. },
  2972. "targetEndpoint": {
  2973. "nodeId": {
  2974. "id": 736517673262
  2975. },
  2976. "slotId": {
  2977. "m_id": "{EB2A759E-FEE2-4A90-BBBC-F6B8EC751C30}"
  2978. }
  2979. }
  2980. }
  2981. }
  2982. },
  2983. {
  2984. "Id": {
  2985. "id": 818122051886
  2986. },
  2987. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(+=: b)",
  2988. "Components": {
  2989. "Component_[15594980968713308635]": {
  2990. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2991. "Id": 15594980968713308635,
  2992. "sourceEndpoint": {
  2993. "nodeId": {
  2994. "id": 740812640558
  2995. },
  2996. "slotId": {
  2997. "m_id": "{2B0D0FCE-30E3-4008-84B5-3DD90066D81C}"
  2998. }
  2999. },
  3000. "targetEndpoint": {
  3001. "nodeId": {
  3002. "id": 736517673262
  3003. },
  3004. "slotId": {
  3005. "m_id": "{21E3FEC3-43B9-4AD0-B659-7497FFD8C177}"
  3006. }
  3007. }
  3008. }
  3009. }
  3010. },
  3011. {
  3012. "Id": {
  3013. "id": 822417019182
  3014. },
  3015. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(+=: In)",
  3016. "Components": {
  3017. "Component_[3014838627475194379]": {
  3018. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3019. "Id": 3014838627475194379,
  3020. "sourceEndpoint": {
  3021. "nodeId": {
  3022. "id": 740812640558
  3023. },
  3024. "slotId": {
  3025. "m_id": "{223D394E-CCAE-4305-ACD3-8734835EA299}"
  3026. }
  3027. },
  3028. "targetEndpoint": {
  3029. "nodeId": {
  3030. "id": 736517673262
  3031. },
  3032. "slotId": {
  3033. "m_id": "{EB2A759E-FEE2-4A90-BBBC-F6B8EC751C30}"
  3034. }
  3035. }
  3036. }
  3037. }
  3038. },
  3039. {
  3040. "Id": {
  3041. "id": 826711986478
  3042. },
  3043. "Name": "srcEndpoint=(+=: Out), destEndpoint=(Expect Equal: Candidate)",
  3044. "Components": {
  3045. "Component_[7912495617543235153]": {
  3046. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3047. "Id": 7912495617543235153,
  3048. "sourceEndpoint": {
  3049. "nodeId": {
  3050. "id": 736517673262
  3051. },
  3052. "slotId": {
  3053. "m_id": "{AA485B3B-9CD0-4A2B-BCC5-904A47462DCA}"
  3054. }
  3055. },
  3056. "targetEndpoint": {
  3057. "nodeId": {
  3058. "id": 783762313518
  3059. },
  3060. "slotId": {
  3061. "m_id": "{CC3850B1-914B-40B1-9A17-B03B1AA1268A}"
  3062. }
  3063. }
  3064. }
  3065. }
  3066. },
  3067. {
  3068. "Id": {
  3069. "id": 831006953774
  3070. },
  3071. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  3072. "Components": {
  3073. "Component_[5833359981400923051]": {
  3074. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3075. "Id": 5833359981400923051,
  3076. "sourceEndpoint": {
  3077. "nodeId": {
  3078. "id": 783762313518
  3079. },
  3080. "slotId": {
  3081. "m_id": "{6AB284C1-56F2-4DE3-BACD-62DB1BAEA163}"
  3082. }
  3083. },
  3084. "targetEndpoint": {
  3085. "nodeId": {
  3086. "id": 788057280814
  3087. },
  3088. "slotId": {
  3089. "m_id": "{2F1331B7-4637-4EA9-8125-890A105AB620}"
  3090. }
  3091. }
  3092. }
  3093. }
  3094. },
  3095. {
  3096. "Id": {
  3097. "id": 835301921070
  3098. },
  3099. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(-=: a)",
  3100. "Components": {
  3101. "Component_[3712730325695908265]": {
  3102. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3103. "Id": 3712730325695908265,
  3104. "sourceEndpoint": {
  3105. "nodeId": {
  3106. "id": 723632771374
  3107. },
  3108. "slotId": {
  3109. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  3110. }
  3111. },
  3112. "targetEndpoint": {
  3113. "nodeId": {
  3114. "id": 775172378926
  3115. },
  3116. "slotId": {
  3117. "m_id": "{F0EE48A7-2253-49A0-AAD0-6D3D90C6645E}"
  3118. }
  3119. }
  3120. }
  3121. }
  3122. },
  3123. {
  3124. "Id": {
  3125. "id": 839596888366
  3126. },
  3127. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(-=: In)",
  3128. "Components": {
  3129. "Component_[13381871526516031123]": {
  3130. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3131. "Id": 13381871526516031123,
  3132. "sourceEndpoint": {
  3133. "nodeId": {
  3134. "id": 723632771374
  3135. },
  3136. "slotId": {
  3137. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  3138. }
  3139. },
  3140. "targetEndpoint": {
  3141. "nodeId": {
  3142. "id": 775172378926
  3143. },
  3144. "slotId": {
  3145. "m_id": "{CEF974F7-0E18-4BB4-8558-D8E6205213A4}"
  3146. }
  3147. }
  3148. }
  3149. }
  3150. },
  3151. {
  3152. "Id": {
  3153. "id": 843891855662
  3154. },
  3155. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(-=: b)",
  3156. "Components": {
  3157. "Component_[82260949076148500]": {
  3158. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3159. "Id": 82260949076148500,
  3160. "sourceEndpoint": {
  3161. "nodeId": {
  3162. "id": 740812640558
  3163. },
  3164. "slotId": {
  3165. "m_id": "{2B0D0FCE-30E3-4008-84B5-3DD90066D81C}"
  3166. }
  3167. },
  3168. "targetEndpoint": {
  3169. "nodeId": {
  3170. "id": 775172378926
  3171. },
  3172. "slotId": {
  3173. "m_id": "{0FE6B78B-235F-416E-8E1B-8F8B059F7F79}"
  3174. }
  3175. }
  3176. }
  3177. }
  3178. },
  3179. {
  3180. "Id": {
  3181. "id": 848186822958
  3182. },
  3183. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(-=: In)",
  3184. "Components": {
  3185. "Component_[17685458947034874413]": {
  3186. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3187. "Id": 17685458947034874413,
  3188. "sourceEndpoint": {
  3189. "nodeId": {
  3190. "id": 740812640558
  3191. },
  3192. "slotId": {
  3193. "m_id": "{223D394E-CCAE-4305-ACD3-8734835EA299}"
  3194. }
  3195. },
  3196. "targetEndpoint": {
  3197. "nodeId": {
  3198. "id": 775172378926
  3199. },
  3200. "slotId": {
  3201. "m_id": "{CEF974F7-0E18-4BB4-8558-D8E6205213A4}"
  3202. }
  3203. }
  3204. }
  3205. }
  3206. },
  3207. {
  3208. "Id": {
  3209. "id": 852481790254
  3210. },
  3211. "Name": "srcEndpoint=(-=: Out), destEndpoint=(Expect Equal: Candidate)",
  3212. "Components": {
  3213. "Component_[16414197799976908855]": {
  3214. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3215. "Id": 16414197799976908855,
  3216. "sourceEndpoint": {
  3217. "nodeId": {
  3218. "id": 775172378926
  3219. },
  3220. "slotId": {
  3221. "m_id": "{F4757C5F-FFF8-4A34-864D-2D1DC4EC446B}"
  3222. }
  3223. },
  3224. "targetEndpoint": {
  3225. "nodeId": {
  3226. "id": 788057280814
  3227. },
  3228. "slotId": {
  3229. "m_id": "{DD2A8217-7141-4E7D-B16E-70388ECF2CEB}"
  3230. }
  3231. }
  3232. }
  3233. }
  3234. },
  3235. {
  3236. "Id": {
  3237. "id": 856776757550
  3238. },
  3239. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  3240. "Components": {
  3241. "Component_[3313940276537640994]": {
  3242. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3243. "Id": 3313940276537640994,
  3244. "sourceEndpoint": {
  3245. "nodeId": {
  3246. "id": 788057280814
  3247. },
  3248. "slotId": {
  3249. "m_id": "{9EF8CDBC-0F94-49D7-83CC-8B3086A0F57D}"
  3250. }
  3251. },
  3252. "targetEndpoint": {
  3253. "nodeId": {
  3254. "id": 766582444334
  3255. },
  3256. "slotId": {
  3257. "m_id": "{9A8A0FD7-C2AC-4DED-B772-62A84EF0EEB8}"
  3258. }
  3259. }
  3260. }
  3261. }
  3262. },
  3263. {
  3264. "Id": {
  3265. "id": 861071724846
  3266. },
  3267. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(*=: a)",
  3268. "Components": {
  3269. "Component_[18414683556549575083]": {
  3270. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3271. "Id": 18414683556549575083,
  3272. "sourceEndpoint": {
  3273. "nodeId": {
  3274. "id": 723632771374
  3275. },
  3276. "slotId": {
  3277. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  3278. }
  3279. },
  3280. "targetEndpoint": {
  3281. "nodeId": {
  3282. "id": 757992509742
  3283. },
  3284. "slotId": {
  3285. "m_id": "{2C5A3624-2676-4073-AA0A-547D842B4B09}"
  3286. }
  3287. }
  3288. }
  3289. }
  3290. },
  3291. {
  3292. "Id": {
  3293. "id": 865366692142
  3294. },
  3295. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(*=: In)",
  3296. "Components": {
  3297. "Component_[6983957558062606173]": {
  3298. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3299. "Id": 6983957558062606173,
  3300. "sourceEndpoint": {
  3301. "nodeId": {
  3302. "id": 723632771374
  3303. },
  3304. "slotId": {
  3305. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  3306. }
  3307. },
  3308. "targetEndpoint": {
  3309. "nodeId": {
  3310. "id": 757992509742
  3311. },
  3312. "slotId": {
  3313. "m_id": "{4051356B-C02D-42E5-8671-358E0F5BF792}"
  3314. }
  3315. }
  3316. }
  3317. }
  3318. },
  3319. {
  3320. "Id": {
  3321. "id": 869661659438
  3322. },
  3323. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(*=: b)",
  3324. "Components": {
  3325. "Component_[16343444341811282784]": {
  3326. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3327. "Id": 16343444341811282784,
  3328. "sourceEndpoint": {
  3329. "nodeId": {
  3330. "id": 740812640558
  3331. },
  3332. "slotId": {
  3333. "m_id": "{2B0D0FCE-30E3-4008-84B5-3DD90066D81C}"
  3334. }
  3335. },
  3336. "targetEndpoint": {
  3337. "nodeId": {
  3338. "id": 757992509742
  3339. },
  3340. "slotId": {
  3341. "m_id": "{CB3DCDFD-4E4F-4ACD-AEF7-242F3F16902A}"
  3342. }
  3343. }
  3344. }
  3345. }
  3346. },
  3347. {
  3348. "Id": {
  3349. "id": 873956626734
  3350. },
  3351. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(*=: In)",
  3352. "Components": {
  3353. "Component_[16851516511475608991]": {
  3354. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3355. "Id": 16851516511475608991,
  3356. "sourceEndpoint": {
  3357. "nodeId": {
  3358. "id": 740812640558
  3359. },
  3360. "slotId": {
  3361. "m_id": "{223D394E-CCAE-4305-ACD3-8734835EA299}"
  3362. }
  3363. },
  3364. "targetEndpoint": {
  3365. "nodeId": {
  3366. "id": 757992509742
  3367. },
  3368. "slotId": {
  3369. "m_id": "{4051356B-C02D-42E5-8671-358E0F5BF792}"
  3370. }
  3371. }
  3372. }
  3373. }
  3374. },
  3375. {
  3376. "Id": {
  3377. "id": 878251594030
  3378. },
  3379. "Name": "srcEndpoint=(*=: Out), destEndpoint=(Expect Equal: Candidate)",
  3380. "Components": {
  3381. "Component_[4218334530688868680]": {
  3382. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3383. "Id": 4218334530688868680,
  3384. "sourceEndpoint": {
  3385. "nodeId": {
  3386. "id": 757992509742
  3387. },
  3388. "slotId": {
  3389. "m_id": "{315FA5F3-CFE3-4076-945C-79F56FC3DD42}"
  3390. }
  3391. },
  3392. "targetEndpoint": {
  3393. "nodeId": {
  3394. "id": 766582444334
  3395. },
  3396. "slotId": {
  3397. "m_id": "{9186C2F0-C289-494B-B0F4-196E9494201B}"
  3398. }
  3399. }
  3400. }
  3401. }
  3402. },
  3403. {
  3404. "Id": {
  3405. "id": 882546561326
  3406. },
  3407. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  3408. "Components": {
  3409. "Component_[16937353620499943851]": {
  3410. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3411. "Id": 16937353620499943851,
  3412. "sourceEndpoint": {
  3413. "nodeId": {
  3414. "id": 766582444334
  3415. },
  3416. "slotId": {
  3417. "m_id": "{7ACAB8C7-EBA0-40C0-8601-E6E2EAFC426C}"
  3418. }
  3419. },
  3420. "targetEndpoint": {
  3421. "nodeId": {
  3422. "id": 749402575150
  3423. },
  3424. "slotId": {
  3425. "m_id": "{8A547048-A62A-4E6D-B7B4-469A7EBC691C}"
  3426. }
  3427. }
  3428. }
  3429. }
  3430. },
  3431. {
  3432. "Id": {
  3433. "id": 886841528622
  3434. },
  3435. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(/=: a)",
  3436. "Components": {
  3437. "Component_[14751320518688925257]": {
  3438. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3439. "Id": 14751320518688925257,
  3440. "sourceEndpoint": {
  3441. "nodeId": {
  3442. "id": 723632771374
  3443. },
  3444. "slotId": {
  3445. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  3446. }
  3447. },
  3448. "targetEndpoint": {
  3449. "nodeId": {
  3450. "id": 753697542446
  3451. },
  3452. "slotId": {
  3453. "m_id": "{C27CC981-15AD-4268-8C62-F712D07AF9AC}"
  3454. }
  3455. }
  3456. }
  3457. }
  3458. },
  3459. {
  3460. "Id": {
  3461. "id": 891136495918
  3462. },
  3463. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(/=: In)",
  3464. "Components": {
  3465. "Component_[9703446333352055147]": {
  3466. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3467. "Id": 9703446333352055147,
  3468. "sourceEndpoint": {
  3469. "nodeId": {
  3470. "id": 723632771374
  3471. },
  3472. "slotId": {
  3473. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  3474. }
  3475. },
  3476. "targetEndpoint": {
  3477. "nodeId": {
  3478. "id": 753697542446
  3479. },
  3480. "slotId": {
  3481. "m_id": "{3066A7AF-5A72-4944-BF12-62B172CEC3D8}"
  3482. }
  3483. }
  3484. }
  3485. }
  3486. },
  3487. {
  3488. "Id": {
  3489. "id": 895431463214
  3490. },
  3491. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(/=: b)",
  3492. "Components": {
  3493. "Component_[15513372073150922972]": {
  3494. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3495. "Id": 15513372073150922972,
  3496. "sourceEndpoint": {
  3497. "nodeId": {
  3498. "id": 740812640558
  3499. },
  3500. "slotId": {
  3501. "m_id": "{2B0D0FCE-30E3-4008-84B5-3DD90066D81C}"
  3502. }
  3503. },
  3504. "targetEndpoint": {
  3505. "nodeId": {
  3506. "id": 753697542446
  3507. },
  3508. "slotId": {
  3509. "m_id": "{4BE3FE12-9926-48F6-BBBF-B01D0048DAB1}"
  3510. }
  3511. }
  3512. }
  3513. }
  3514. },
  3515. {
  3516. "Id": {
  3517. "id": 899726430510
  3518. },
  3519. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(/=: In)",
  3520. "Components": {
  3521. "Component_[6291879703729346691]": {
  3522. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3523. "Id": 6291879703729346691,
  3524. "sourceEndpoint": {
  3525. "nodeId": {
  3526. "id": 740812640558
  3527. },
  3528. "slotId": {
  3529. "m_id": "{223D394E-CCAE-4305-ACD3-8734835EA299}"
  3530. }
  3531. },
  3532. "targetEndpoint": {
  3533. "nodeId": {
  3534. "id": 753697542446
  3535. },
  3536. "slotId": {
  3537. "m_id": "{3066A7AF-5A72-4944-BF12-62B172CEC3D8}"
  3538. }
  3539. }
  3540. }
  3541. }
  3542. },
  3543. {
  3544. "Id": {
  3545. "id": 904021397806
  3546. },
  3547. "Name": "srcEndpoint=(/=: Out), destEndpoint=(Expect Equal: Candidate)",
  3548. "Components": {
  3549. "Component_[16487340329958469911]": {
  3550. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3551. "Id": 16487340329958469911,
  3552. "sourceEndpoint": {
  3553. "nodeId": {
  3554. "id": 753697542446
  3555. },
  3556. "slotId": {
  3557. "m_id": "{0526ED87-A1E6-42D5-9F54-03DF0BE9C1E5}"
  3558. }
  3559. },
  3560. "targetEndpoint": {
  3561. "nodeId": {
  3562. "id": 749402575150
  3563. },
  3564. "slotId": {
  3565. "m_id": "{88977C2D-C653-4D14-8E60-FED43199B7E9}"
  3566. }
  3567. }
  3568. }
  3569. }
  3570. },
  3571. {
  3572. "Id": {
  3573. "id": 908316365102
  3574. },
  3575. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  3576. "Components": {
  3577. "Component_[16515891363432711520]": {
  3578. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3579. "Id": 16515891363432711520,
  3580. "sourceEndpoint": {
  3581. "nodeId": {
  3582. "id": 749402575150
  3583. },
  3584. "slotId": {
  3585. "m_id": "{2C8630E2-7971-47B8-B59B-DC495B81669B}"
  3586. }
  3587. },
  3588. "targetEndpoint": {
  3589. "nodeId": {
  3590. "id": 745107607854
  3591. },
  3592. "slotId": {
  3593. "m_id": "{1ED5FBA2-3D24-4B6A-B455-50992F10B56E}"
  3594. }
  3595. }
  3596. }
  3597. }
  3598. },
  3599. {
  3600. "Id": {
  3601. "id": 912611332398
  3602. },
  3603. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(++: a)",
  3604. "Components": {
  3605. "Component_[17720017162657597431]": {
  3606. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3607. "Id": 17720017162657597431,
  3608. "sourceEndpoint": {
  3609. "nodeId": {
  3610. "id": 723632771374
  3611. },
  3612. "slotId": {
  3613. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  3614. }
  3615. },
  3616. "targetEndpoint": {
  3617. "nodeId": {
  3618. "id": 732222705966
  3619. },
  3620. "slotId": {
  3621. "m_id": "{8D3CE538-1F1D-4BDD-8AFD-225359F48545}"
  3622. }
  3623. }
  3624. }
  3625. }
  3626. },
  3627. {
  3628. "Id": {
  3629. "id": 916906299694
  3630. },
  3631. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(++: In)",
  3632. "Components": {
  3633. "Component_[13240165944420608098]": {
  3634. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3635. "Id": 13240165944420608098,
  3636. "sourceEndpoint": {
  3637. "nodeId": {
  3638. "id": 723632771374
  3639. },
  3640. "slotId": {
  3641. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  3642. }
  3643. },
  3644. "targetEndpoint": {
  3645. "nodeId": {
  3646. "id": 732222705966
  3647. },
  3648. "slotId": {
  3649. "m_id": "{362F93F2-586D-4AA0-93D9-76F90D70C868}"
  3650. }
  3651. }
  3652. }
  3653. }
  3654. },
  3655. {
  3656. "Id": {
  3657. "id": 921201266990
  3658. },
  3659. "Name": "srcEndpoint=(++: Out), destEndpoint=(Expect Equal: Candidate)",
  3660. "Components": {
  3661. "Component_[16440458836358000554]": {
  3662. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3663. "Id": 16440458836358000554,
  3664. "sourceEndpoint": {
  3665. "nodeId": {
  3666. "id": 732222705966
  3667. },
  3668. "slotId": {
  3669. "m_id": "{70489A72-3F26-4D2E-BD49-ECB7AEC2D930}"
  3670. }
  3671. },
  3672. "targetEndpoint": {
  3673. "nodeId": {
  3674. "id": 745107607854
  3675. },
  3676. "slotId": {
  3677. "m_id": "{11686E22-06A9-4D86-BAD4-D010A4C93D42}"
  3678. }
  3679. }
  3680. }
  3681. }
  3682. },
  3683. {
  3684. "Id": {
  3685. "id": 925496234286
  3686. },
  3687. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  3688. "Components": {
  3689. "Component_[15278770288795467490]": {
  3690. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3691. "Id": 15278770288795467490,
  3692. "sourceEndpoint": {
  3693. "nodeId": {
  3694. "id": 745107607854
  3695. },
  3696. "slotId": {
  3697. "m_id": "{89755DF9-BA1D-4F6D-9739-1991D6CE11A3}"
  3698. }
  3699. },
  3700. "targetEndpoint": {
  3701. "nodeId": {
  3702. "id": 727927738670
  3703. },
  3704. "slotId": {
  3705. "m_id": "{A0ECE9B0-B077-473C-8084-CB8A57E36A57}"
  3706. }
  3707. }
  3708. }
  3709. }
  3710. },
  3711. {
  3712. "Id": {
  3713. "id": 929791201582
  3714. },
  3715. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(--: a)",
  3716. "Components": {
  3717. "Component_[6836246143118993179]": {
  3718. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3719. "Id": 6836246143118993179,
  3720. "sourceEndpoint": {
  3721. "nodeId": {
  3722. "id": 723632771374
  3723. },
  3724. "slotId": {
  3725. "m_id": "{161C1EED-5D0D-410A-9BA3-CCDFFD261D3E}"
  3726. }
  3727. },
  3728. "targetEndpoint": {
  3729. "nodeId": {
  3730. "id": 779467346222
  3731. },
  3732. "slotId": {
  3733. "m_id": "{4F511A41-2F66-4D65-9D1C-9FFC68448D13}"
  3734. }
  3735. }
  3736. }
  3737. }
  3738. },
  3739. {
  3740. "Id": {
  3741. "id": 934086168878
  3742. },
  3743. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(--: In)",
  3744. "Components": {
  3745. "Component_[18338212856887884972]": {
  3746. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3747. "Id": 18338212856887884972,
  3748. "sourceEndpoint": {
  3749. "nodeId": {
  3750. "id": 723632771374
  3751. },
  3752. "slotId": {
  3753. "m_id": "{9D159436-E3F8-43AD-B80C-34413026C379}"
  3754. }
  3755. },
  3756. "targetEndpoint": {
  3757. "nodeId": {
  3758. "id": 779467346222
  3759. },
  3760. "slotId": {
  3761. "m_id": "{CE6E4755-9585-4D01-9C02-A5091DA2AFFA}"
  3762. }
  3763. }
  3764. }
  3765. }
  3766. },
  3767. {
  3768. "Id": {
  3769. "id": 938381136174
  3770. },
  3771. "Name": "srcEndpoint=(--: Out), destEndpoint=(Expect Equal: Candidate)",
  3772. "Components": {
  3773. "Component_[6352984987520570645]": {
  3774. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3775. "Id": 6352984987520570645,
  3776. "sourceEndpoint": {
  3777. "nodeId": {
  3778. "id": 779467346222
  3779. },
  3780. "slotId": {
  3781. "m_id": "{BA055C35-5593-4B84-9EAD-011B169BB0A7}"
  3782. }
  3783. },
  3784. "targetEndpoint": {
  3785. "nodeId": {
  3786. "id": 727927738670
  3787. },
  3788. "slotId": {
  3789. "m_id": "{5210DC3D-4464-4D92-A6E4-C6EE2C8CE04D}"
  3790. }
  3791. }
  3792. }
  3793. }
  3794. },
  3795. {
  3796. "Id": {
  3797. "id": 942676103470
  3798. },
  3799. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  3800. "Components": {
  3801. "Component_[16393342675057097795]": {
  3802. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3803. "Id": 16393342675057097795,
  3804. "sourceEndpoint": {
  3805. "nodeId": {
  3806. "id": 727927738670
  3807. },
  3808. "slotId": {
  3809. "m_id": "{5875E156-6762-4D2C-ACA1-CA05B95FD1E9}"
  3810. }
  3811. },
  3812. "targetEndpoint": {
  3813. "nodeId": {
  3814. "id": 770877411630
  3815. },
  3816. "slotId": {
  3817. "m_id": "{AFB94CD7-4476-46FD-A849-1970410FB6CC}"
  3818. }
  3819. }
  3820. }
  3821. }
  3822. },
  3823. {
  3824. "Id": {
  3825. "id": 946971070766
  3826. },
  3827. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(*-1: a)",
  3828. "Components": {
  3829. "Component_[3119615013426626855]": {
  3830. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3831. "Id": 3119615013426626855,
  3832. "sourceEndpoint": {
  3833. "nodeId": {
  3834. "id": 740812640558
  3835. },
  3836. "slotId": {
  3837. "m_id": "{2B0D0FCE-30E3-4008-84B5-3DD90066D81C}"
  3838. }
  3839. },
  3840. "targetEndpoint": {
  3841. "nodeId": {
  3842. "id": 792352248110
  3843. },
  3844. "slotId": {
  3845. "m_id": "{BB8BE4FF-DA82-4E76-ADBC-D93E9E552B13}"
  3846. }
  3847. }
  3848. }
  3849. }
  3850. },
  3851. {
  3852. "Id": {
  3853. "id": 951266038062
  3854. },
  3855. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(*-1: In)",
  3856. "Components": {
  3857. "Component_[11906707564286747897]": {
  3858. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3859. "Id": 11906707564286747897,
  3860. "sourceEndpoint": {
  3861. "nodeId": {
  3862. "id": 740812640558
  3863. },
  3864. "slotId": {
  3865. "m_id": "{223D394E-CCAE-4305-ACD3-8734835EA299}"
  3866. }
  3867. },
  3868. "targetEndpoint": {
  3869. "nodeId": {
  3870. "id": 792352248110
  3871. },
  3872. "slotId": {
  3873. "m_id": "{9A087FAB-A8E0-471C-916A-F55AFB66E08B}"
  3874. }
  3875. }
  3876. }
  3877. }
  3878. },
  3879. {
  3880. "Id": {
  3881. "id": 955561005358
  3882. },
  3883. "Name": "srcEndpoint=(*-1: Out), destEndpoint=(Expect Equal: Candidate)",
  3884. "Components": {
  3885. "Component_[12666204977124427050]": {
  3886. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3887. "Id": 12666204977124427050,
  3888. "sourceEndpoint": {
  3889. "nodeId": {
  3890. "id": 792352248110
  3891. },
  3892. "slotId": {
  3893. "m_id": "{62A089D5-09E1-4E8A-B5F9-D97A622518AF}"
  3894. }
  3895. },
  3896. "targetEndpoint": {
  3897. "nodeId": {
  3898. "id": 770877411630
  3899. },
  3900. "slotId": {
  3901. "m_id": "{9FB44993-CC35-4820-AD7E-525A31893C55}"
  3902. }
  3903. }
  3904. }
  3905. }
  3906. },
  3907. {
  3908. "Id": {
  3909. "id": 959855972654
  3910. },
  3911. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  3912. "Components": {
  3913. "Component_[10083218141158362689]": {
  3914. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3915. "Id": 10083218141158362689,
  3916. "sourceEndpoint": {
  3917. "nodeId": {
  3918. "id": 770877411630
  3919. },
  3920. "slotId": {
  3921. "m_id": "{353818AB-9969-4759-848C-C85089080434}"
  3922. }
  3923. },
  3924. "targetEndpoint": {
  3925. "nodeId": {
  3926. "id": 762287477038
  3927. },
  3928. "slotId": {
  3929. "m_id": "{6883C8D8-6B4F-45D1-A140-9A899AA80BDB}"
  3930. }
  3931. }
  3932. }
  3933. }
  3934. }
  3935. ]
  3936. },
  3937. "versionData": {
  3938. "_grammarVersion": 1,
  3939. "_runtimeVersion": 1,
  3940. "_fileVersion": 1
  3941. },
  3942. "m_variableCounter": 2,
  3943. "GraphCanvasData": [
  3944. {
  3945. "Key": {
  3946. "id": 715042836782
  3947. },
  3948. "Value": {
  3949. "ComponentData": {
  3950. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  3951. "$type": "SceneComponentSaveData",
  3952. "ViewParams": {
  3953. "Scale": 0.5606913310107078,
  3954. "AnchorX": 708.054443359375,
  3955. "AnchorY": -1057.6229248046875
  3956. }
  3957. }
  3958. }
  3959. }
  3960. },
  3961. {
  3962. "Key": {
  3963. "id": 719337804078
  3964. },
  3965. "Value": {
  3966. "ComponentData": {
  3967. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3968. "$type": "NodeSaveData"
  3969. },
  3970. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3971. "$type": "GeneralNodeTitleComponentSaveData",
  3972. "PaletteOverride": "TimeNodeTitlePalette"
  3973. },
  3974. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3975. "$type": "GeometrySaveData",
  3976. "Position": [
  3977. -500.0,
  3978. 0.0
  3979. ]
  3980. },
  3981. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3982. "$type": "StylingComponentSaveData"
  3983. },
  3984. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3985. "$type": "PersistentIdComponentSaveData",
  3986. "PersistentId": "{0E0FAFF9-CBFE-465F-8AFD-C56636170BC7}"
  3987. }
  3988. }
  3989. }
  3990. },
  3991. {
  3992. "Key": {
  3993. "id": 723632771374
  3994. },
  3995. "Value": {
  3996. "ComponentData": {
  3997. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3998. "$type": "NodeSaveData"
  3999. },
  4000. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4001. "$type": "GeneralNodeTitleComponentSaveData",
  4002. "PaletteOverride": "GetVariableNodeTitlePalette"
  4003. },
  4004. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4005. "$type": "GeometrySaveData",
  4006. "Position": [
  4007. -180.0,
  4008. 0.0
  4009. ]
  4010. },
  4011. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4012. "$type": "StylingComponentSaveData",
  4013. "SubStyle": ".getVariable"
  4014. },
  4015. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4016. "$type": "PersistentIdComponentSaveData",
  4017. "PersistentId": "{DA0F8A66-E03D-4727-924E-29E42FB77A9F}"
  4018. }
  4019. }
  4020. }
  4021. },
  4022. {
  4023. "Key": {
  4024. "id": 727927738670
  4025. },
  4026. "Value": {
  4027. "ComponentData": {
  4028. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4029. "$type": "NodeSaveData"
  4030. },
  4031. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4032. "$type": "GeneralNodeTitleComponentSaveData",
  4033. "PaletteOverride": "MethodNodeTitlePalette"
  4034. },
  4035. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4036. "$type": "GeometrySaveData",
  4037. "Position": [
  4038. 1480.0,
  4039. 0.0
  4040. ]
  4041. },
  4042. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4043. "$type": "StylingComponentSaveData",
  4044. "SubStyle": ".method"
  4045. },
  4046. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4047. "$type": "PersistentIdComponentSaveData",
  4048. "PersistentId": "{F9C2030B-6EEE-4755-B83A-EF341D04DCDC}"
  4049. }
  4050. }
  4051. }
  4052. },
  4053. {
  4054. "Key": {
  4055. "id": 732222705966
  4056. },
  4057. "Value": {
  4058. "ComponentData": {
  4059. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4060. "$type": "NodeSaveData"
  4061. },
  4062. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4063. "$type": "GeneralNodeTitleComponentSaveData",
  4064. "PaletteOverride": "DefaultNodeTitlePalette"
  4065. },
  4066. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4067. "$type": "GeometrySaveData",
  4068. "Position": [
  4069. 880.0,
  4070. 220.0
  4071. ]
  4072. },
  4073. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4074. "$type": "StylingComponentSaveData",
  4075. "SubStyle": ".compact"
  4076. },
  4077. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4078. "$type": "PersistentIdComponentSaveData",
  4079. "PersistentId": "{5DA02424-6FC0-4B33-8F91-6ED6D763C2D2}"
  4080. }
  4081. }
  4082. }
  4083. },
  4084. {
  4085. "Key": {
  4086. "id": 736517673262
  4087. },
  4088. "Value": {
  4089. "ComponentData": {
  4090. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4091. "$type": "NodeSaveData"
  4092. },
  4093. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4094. "$type": "GeneralNodeTitleComponentSaveData",
  4095. "PaletteOverride": "DefaultNodeTitlePalette"
  4096. },
  4097. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4098. "$type": "GeometrySaveData",
  4099. "Position": [
  4100. -180.0,
  4101. 160.0
  4102. ]
  4103. },
  4104. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4105. "$type": "StylingComponentSaveData",
  4106. "SubStyle": ".compact"
  4107. },
  4108. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4109. "$type": "PersistentIdComponentSaveData",
  4110. "PersistentId": "{4FDFFFC7-0D25-4BED-9B37-E07E4AF08940}"
  4111. }
  4112. }
  4113. }
  4114. },
  4115. {
  4116. "Key": {
  4117. "id": 740812640558
  4118. },
  4119. "Value": {
  4120. "ComponentData": {
  4121. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4122. "$type": "NodeSaveData"
  4123. },
  4124. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4125. "$type": "GeneralNodeTitleComponentSaveData",
  4126. "PaletteOverride": "GetVariableNodeTitlePalette"
  4127. },
  4128. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4129. "$type": "GeometrySaveData",
  4130. "Position": [
  4131. -340.0,
  4132. 0.0
  4133. ]
  4134. },
  4135. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4136. "$type": "StylingComponentSaveData",
  4137. "SubStyle": ".getVariable"
  4138. },
  4139. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4140. "$type": "PersistentIdComponentSaveData",
  4141. "PersistentId": "{C7501F0B-805D-45B7-A824-4BA48D7E6E6A}"
  4142. }
  4143. }
  4144. }
  4145. },
  4146. {
  4147. "Key": {
  4148. "id": 745107607854
  4149. },
  4150. "Value": {
  4151. "ComponentData": {
  4152. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4153. "$type": "NodeSaveData"
  4154. },
  4155. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4156. "$type": "GeneralNodeTitleComponentSaveData",
  4157. "PaletteOverride": "MethodNodeTitlePalette"
  4158. },
  4159. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4160. "$type": "GeometrySaveData",
  4161. "Position": [
  4162. 1180.0,
  4163. 0.0
  4164. ]
  4165. },
  4166. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4167. "$type": "StylingComponentSaveData",
  4168. "SubStyle": ".method"
  4169. },
  4170. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4171. "$type": "PersistentIdComponentSaveData",
  4172. "PersistentId": "{2D528E54-E61F-4811-BD96-E992B3754666}"
  4173. }
  4174. }
  4175. }
  4176. },
  4177. {
  4178. "Key": {
  4179. "id": 749402575150
  4180. },
  4181. "Value": {
  4182. "ComponentData": {
  4183. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4184. "$type": "NodeSaveData"
  4185. },
  4186. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4187. "$type": "GeneralNodeTitleComponentSaveData",
  4188. "PaletteOverride": "MethodNodeTitlePalette"
  4189. },
  4190. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4191. "$type": "GeometrySaveData",
  4192. "Position": [
  4193. 880.0,
  4194. 0.0
  4195. ]
  4196. },
  4197. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4198. "$type": "StylingComponentSaveData",
  4199. "SubStyle": ".method"
  4200. },
  4201. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4202. "$type": "PersistentIdComponentSaveData",
  4203. "PersistentId": "{97AB8055-3661-4C25-8F99-05A88D355AC3}"
  4204. }
  4205. }
  4206. }
  4207. },
  4208. {
  4209. "Key": {
  4210. "id": 753697542446
  4211. },
  4212. "Value": {
  4213. "ComponentData": {
  4214. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4215. "$type": "NodeSaveData"
  4216. },
  4217. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4218. "$type": "GeneralNodeTitleComponentSaveData",
  4219. "PaletteOverride": "DefaultNodeTitlePalette"
  4220. },
  4221. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4222. "$type": "GeometrySaveData",
  4223. "Position": [
  4224. 580.0,
  4225. 220.0
  4226. ]
  4227. },
  4228. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4229. "$type": "StylingComponentSaveData",
  4230. "SubStyle": ".compact"
  4231. },
  4232. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4233. "$type": "PersistentIdComponentSaveData",
  4234. "PersistentId": "{FE78D771-8E93-4C38-AD02-7567DA0F1970}"
  4235. }
  4236. }
  4237. }
  4238. },
  4239. {
  4240. "Key": {
  4241. "id": 757992509742
  4242. },
  4243. "Value": {
  4244. "ComponentData": {
  4245. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4246. "$type": "NodeSaveData"
  4247. },
  4248. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4249. "$type": "GeneralNodeTitleComponentSaveData",
  4250. "PaletteOverride": "DefaultNodeTitlePalette"
  4251. },
  4252. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4253. "$type": "GeometrySaveData",
  4254. "Position": [
  4255. 280.0,
  4256. 220.0
  4257. ]
  4258. },
  4259. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4260. "$type": "StylingComponentSaveData",
  4261. "SubStyle": ".compact"
  4262. },
  4263. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4264. "$type": "PersistentIdComponentSaveData",
  4265. "PersistentId": "{443B4E9A-211B-447F-B152-8F60E613F6F4}"
  4266. }
  4267. }
  4268. }
  4269. },
  4270. {
  4271. "Key": {
  4272. "id": 762287477038
  4273. },
  4274. "Value": {
  4275. "ComponentData": {
  4276. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4277. "$type": "NodeSaveData"
  4278. },
  4279. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4280. "$type": "GeneralNodeTitleComponentSaveData",
  4281. "PaletteOverride": "MethodNodeTitlePalette"
  4282. },
  4283. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4284. "$type": "GeometrySaveData",
  4285. "Position": [
  4286. 2080.0,
  4287. 0.0
  4288. ]
  4289. },
  4290. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4291. "$type": "StylingComponentSaveData",
  4292. "SubStyle": ".method"
  4293. },
  4294. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4295. "$type": "PersistentIdComponentSaveData",
  4296. "PersistentId": "{854E7FC6-BAE1-45F5-AC7A-839C78F49EBE}"
  4297. }
  4298. }
  4299. }
  4300. },
  4301. {
  4302. "Key": {
  4303. "id": 766582444334
  4304. },
  4305. "Value": {
  4306. "ComponentData": {
  4307. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4308. "$type": "NodeSaveData"
  4309. },
  4310. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4311. "$type": "GeneralNodeTitleComponentSaveData",
  4312. "PaletteOverride": "MethodNodeTitlePalette"
  4313. },
  4314. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4315. "$type": "GeometrySaveData",
  4316. "Position": [
  4317. 580.0,
  4318. 0.0
  4319. ]
  4320. },
  4321. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4322. "$type": "StylingComponentSaveData",
  4323. "SubStyle": ".method"
  4324. },
  4325. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4326. "$type": "PersistentIdComponentSaveData",
  4327. "PersistentId": "{D898384B-38C0-415F-A74E-E668441D99C7}"
  4328. }
  4329. }
  4330. }
  4331. },
  4332. {
  4333. "Key": {
  4334. "id": 770877411630
  4335. },
  4336. "Value": {
  4337. "ComponentData": {
  4338. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4339. "$type": "NodeSaveData"
  4340. },
  4341. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4342. "$type": "GeneralNodeTitleComponentSaveData",
  4343. "PaletteOverride": "MethodNodeTitlePalette"
  4344. },
  4345. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4346. "$type": "GeometrySaveData",
  4347. "Position": [
  4348. 1780.0,
  4349. 0.0
  4350. ]
  4351. },
  4352. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4353. "$type": "StylingComponentSaveData",
  4354. "SubStyle": ".method"
  4355. },
  4356. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4357. "$type": "PersistentIdComponentSaveData",
  4358. "PersistentId": "{B76CD6BC-352B-42CA-A0E4-79AC13C7EF6F}"
  4359. }
  4360. }
  4361. }
  4362. },
  4363. {
  4364. "Key": {
  4365. "id": 775172378926
  4366. },
  4367. "Value": {
  4368. "ComponentData": {
  4369. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4370. "$type": "NodeSaveData"
  4371. },
  4372. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4373. "$type": "GeneralNodeTitleComponentSaveData",
  4374. "PaletteOverride": "DefaultNodeTitlePalette"
  4375. },
  4376. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4377. "$type": "GeometrySaveData",
  4378. "Position": [
  4379. -20.0,
  4380. 220.0
  4381. ]
  4382. },
  4383. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4384. "$type": "StylingComponentSaveData",
  4385. "SubStyle": ".compact"
  4386. },
  4387. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4388. "$type": "PersistentIdComponentSaveData",
  4389. "PersistentId": "{5249EC54-79F7-4C00-974D-3EC2FBA33CC6}"
  4390. }
  4391. }
  4392. }
  4393. },
  4394. {
  4395. "Key": {
  4396. "id": 779467346222
  4397. },
  4398. "Value": {
  4399. "ComponentData": {
  4400. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4401. "$type": "NodeSaveData"
  4402. },
  4403. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4404. "$type": "GeneralNodeTitleComponentSaveData",
  4405. "PaletteOverride": "DefaultNodeTitlePalette"
  4406. },
  4407. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4408. "$type": "GeometrySaveData",
  4409. "Position": [
  4410. 1180.0,
  4411. 220.0
  4412. ]
  4413. },
  4414. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4415. "$type": "StylingComponentSaveData",
  4416. "SubStyle": ".compact"
  4417. },
  4418. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4419. "$type": "PersistentIdComponentSaveData",
  4420. "PersistentId": "{C9BB5339-D911-48F7-9681-CB97A950FD38}"
  4421. }
  4422. }
  4423. }
  4424. },
  4425. {
  4426. "Key": {
  4427. "id": 783762313518
  4428. },
  4429. "Value": {
  4430. "ComponentData": {
  4431. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4432. "$type": "NodeSaveData"
  4433. },
  4434. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4435. "$type": "GeneralNodeTitleComponentSaveData",
  4436. "PaletteOverride": "MethodNodeTitlePalette"
  4437. },
  4438. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4439. "$type": "GeometrySaveData",
  4440. "Position": [
  4441. -20.0,
  4442. 0.0
  4443. ]
  4444. },
  4445. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4446. "$type": "StylingComponentSaveData",
  4447. "SubStyle": ".method"
  4448. },
  4449. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4450. "$type": "PersistentIdComponentSaveData",
  4451. "PersistentId": "{47C5AD45-2EBE-4DF9-A1A9-D884FB93B716}"
  4452. }
  4453. }
  4454. }
  4455. },
  4456. {
  4457. "Key": {
  4458. "id": 788057280814
  4459. },
  4460. "Value": {
  4461. "ComponentData": {
  4462. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4463. "$type": "NodeSaveData"
  4464. },
  4465. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4466. "$type": "GeneralNodeTitleComponentSaveData",
  4467. "PaletteOverride": "MethodNodeTitlePalette"
  4468. },
  4469. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4470. "$type": "GeometrySaveData",
  4471. "Position": [
  4472. 280.0,
  4473. 0.0
  4474. ]
  4475. },
  4476. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4477. "$type": "StylingComponentSaveData",
  4478. "SubStyle": ".method"
  4479. },
  4480. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4481. "$type": "PersistentIdComponentSaveData",
  4482. "PersistentId": "{BAB8DB21-AFDF-4DAC-B80A-C8BE0308613E}"
  4483. }
  4484. }
  4485. }
  4486. },
  4487. {
  4488. "Key": {
  4489. "id": 792352248110
  4490. },
  4491. "Value": {
  4492. "ComponentData": {
  4493. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4494. "$type": "NodeSaveData"
  4495. },
  4496. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4497. "$type": "GeneralNodeTitleComponentSaveData",
  4498. "PaletteOverride": "DefaultNodeTitlePalette"
  4499. },
  4500. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4501. "$type": "GeometrySaveData",
  4502. "Position": [
  4503. 1480.0,
  4504. 220.0
  4505. ]
  4506. },
  4507. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4508. "$type": "StylingComponentSaveData",
  4509. "SubStyle": ".compact"
  4510. },
  4511. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4512. "$type": "PersistentIdComponentSaveData",
  4513. "PersistentId": "{A30EA10C-11A8-403B-AD1D-E1CC8DB504F0}"
  4514. }
  4515. }
  4516. }
  4517. }
  4518. ],
  4519. "StatisticsHelper": {
  4520. "InstanceCounter": [
  4521. {
  4522. "Key": 2700518527549641967,
  4523. "Value": 1
  4524. },
  4525. {
  4526. "Key": 4053150093067829293,
  4527. "Value": 7
  4528. },
  4529. {
  4530. "Key": 4199610336680704683,
  4531. "Value": 1
  4532. },
  4533. {
  4534. "Key": 4489557774472777117,
  4535. "Value": 1
  4536. },
  4537. {
  4538. "Key": 5633340652031599336,
  4539. "Value": 1
  4540. },
  4541. {
  4542. "Key": 9282607870777772987,
  4543. "Value": 1
  4544. },
  4545. {
  4546. "Key": 9311293672771468188,
  4547. "Value": 1
  4548. },
  4549. {
  4550. "Key": 10204019744198319120,
  4551. "Value": 1
  4552. },
  4553. {
  4554. "Key": 10239215337016843699,
  4555. "Value": 1
  4556. },
  4557. {
  4558. "Key": 11037207169118168123,
  4559. "Value": 1
  4560. },
  4561. {
  4562. "Key": 13643732742700725099,
  4563. "Value": 1
  4564. },
  4565. {
  4566. "Key": 15253476768601813456,
  4567. "Value": 1
  4568. }
  4569. ]
  4570. }
  4571. }
  4572. }
  4573. }
  4574. }
  4575. }