3
0

LY_SC_UnitTest_CompactNodeMathematicalFunctions.scriptcanvas 265 KB

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