Test_EBusResultNested.scriptcanvas 324 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 493533731718311
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[11875060882382427942]": {
  13. "$type": "EditorGraph",
  14. "Id": 11875060882382427942,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 493606746162343
  20. },
  21. "Name": "SC-Node(Sum)",
  22. "Components": {
  23. "Component_[10434566859504388900]": {
  24. "$type": "OperatorAdd",
  25. "Id": 10434566859504388900,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{DF129AB2-DFBC-40CC-9BBA-3D7A65C0754C}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 1
  40. }
  41. },
  42. {
  43. "id": {
  44. "m_id": "{49ABEBAF-F9C3-4674-8A82-2D7D4786B770}"
  45. },
  46. "contracts": [
  47. {
  48. "$type": "SlotTypeContract"
  49. }
  50. ],
  51. "slotName": "Out",
  52. "Descriptor": {
  53. "ConnectionType": 2,
  54. "SlotType": 1
  55. }
  56. },
  57. {
  58. "id": {
  59. "m_id": "{04FD29A7-056A-458A-81DA-2F05AB25B5DF}"
  60. },
  61. "DynamicTypeOverride": 3,
  62. "contracts": [
  63. {
  64. "$type": "SlotTypeContract"
  65. },
  66. null,
  67. {
  68. "$type": "MathOperatorContract",
  69. "NativeTypes": [
  70. {
  71. "m_type": 3
  72. },
  73. {
  74. "m_type": 6
  75. },
  76. {
  77. "m_type": 8
  78. },
  79. {
  80. "m_type": 9
  81. },
  82. {
  83. "m_type": 10
  84. },
  85. {
  86. "m_type": 11
  87. },
  88. {
  89. "m_type": 12
  90. },
  91. {
  92. "m_type": 14
  93. },
  94. {
  95. "m_type": 15
  96. }
  97. ]
  98. }
  99. ],
  100. "slotName": "Number",
  101. "toolTip": "An operand to use in performing the specified Operation",
  102. "DisplayDataType": {
  103. "m_type": 3
  104. },
  105. "DisplayGroup": {
  106. "Value": 1114760223
  107. },
  108. "Descriptor": {
  109. "ConnectionType": 1,
  110. "SlotType": 2
  111. },
  112. "DynamicGroup": {
  113. "Value": 1114760223
  114. },
  115. "DataType": 1
  116. },
  117. {
  118. "id": {
  119. "m_id": "{991F4E8B-97E8-4249-90EE-64E5BB28D486}"
  120. },
  121. "DynamicTypeOverride": 3,
  122. "contracts": [
  123. {
  124. "$type": "SlotTypeContract"
  125. },
  126. null,
  127. {
  128. "$type": "MathOperatorContract",
  129. "NativeTypes": [
  130. {
  131. "m_type": 3
  132. },
  133. {
  134. "m_type": 6
  135. },
  136. {
  137. "m_type": 8
  138. },
  139. {
  140. "m_type": 9
  141. },
  142. {
  143. "m_type": 10
  144. },
  145. {
  146. "m_type": 11
  147. },
  148. {
  149. "m_type": 12
  150. },
  151. {
  152. "m_type": 14
  153. },
  154. {
  155. "m_type": 15
  156. }
  157. ]
  158. }
  159. ],
  160. "slotName": "Number",
  161. "toolTip": "An operand to use in performing the specified Operation",
  162. "DisplayDataType": {
  163. "m_type": 3
  164. },
  165. "DisplayGroup": {
  166. "Value": 1114760223
  167. },
  168. "Descriptor": {
  169. "ConnectionType": 1,
  170. "SlotType": 2
  171. },
  172. "DynamicGroup": {
  173. "Value": 1114760223
  174. },
  175. "DataType": 1
  176. },
  177. {
  178. "id": {
  179. "m_id": "{D4255882-6D64-4CBC-A0DE-ECA1B57F54A4}"
  180. },
  181. "DynamicTypeOverride": 3,
  182. "contracts": [
  183. {
  184. "$type": "SlotTypeContract"
  185. },
  186. {
  187. "$type": "MathOperatorContract",
  188. "NativeTypes": [
  189. {
  190. "m_type": 3
  191. },
  192. {
  193. "m_type": 6
  194. },
  195. {
  196. "m_type": 8
  197. },
  198. {
  199. "m_type": 9
  200. },
  201. {
  202. "m_type": 10
  203. },
  204. {
  205. "m_type": 11
  206. },
  207. {
  208. "m_type": 12
  209. },
  210. {
  211. "m_type": 14
  212. },
  213. {
  214. "m_type": 15
  215. }
  216. ]
  217. }
  218. ],
  219. "slotName": "Result",
  220. "toolTip": "The result of the specified operation",
  221. "DisplayDataType": {
  222. "m_type": 3
  223. },
  224. "DisplayGroup": {
  225. "Value": 1114760223
  226. },
  227. "Descriptor": {
  228. "ConnectionType": 2,
  229. "SlotType": 2
  230. },
  231. "DynamicGroup": {
  232. "Value": 1114760223
  233. },
  234. "DataType": 1
  235. }
  236. ],
  237. "Datums": [
  238. {
  239. "isOverloadedStorage": false,
  240. "scriptCanvasType": {
  241. "m_type": 3
  242. },
  243. "isNullPointer": false,
  244. "$type": "double",
  245. "value": 0.0,
  246. "label": "Number"
  247. },
  248. {
  249. "isOverloadedStorage": false,
  250. "scriptCanvasType": {
  251. "m_type": 3
  252. },
  253. "isNullPointer": false,
  254. "$type": "double",
  255. "value": 13.0,
  256. "label": "Number"
  257. }
  258. ]
  259. }
  260. }
  261. },
  262. {
  263. "Id": {
  264. "id": 493598156227751
  265. },
  266. "Name": "SC-Node(IntTwo)",
  267. "Components": {
  268. "Component_[13131820179540415054]": {
  269. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  270. "Id": 13131820179540415054,
  271. "Slots": [
  272. {
  273. "id": {
  274. "m_id": "{B1008B79-54F3-4E4E-80FE-06810E89C00A}"
  275. },
  276. "contracts": [
  277. {
  278. "$type": "SlotTypeContract"
  279. }
  280. ],
  281. "slotName": "Result: Number",
  282. "DisplayDataType": {
  283. "m_type": 3
  284. },
  285. "Descriptor": {
  286. "ConnectionType": 2,
  287. "SlotType": 2
  288. },
  289. "DataType": 1
  290. },
  291. {
  292. "id": {
  293. "m_id": "{C9DF692C-CCE3-4F75-BD39-C619301345E9}"
  294. },
  295. "contracts": [
  296. {
  297. "$type": "SlotTypeContract"
  298. },
  299. {
  300. "$type": "RestrictedTypeContract"
  301. },
  302. null
  303. ],
  304. "slotName": "Number: 0",
  305. "Descriptor": {
  306. "ConnectionType": 1,
  307. "SlotType": 2
  308. },
  309. "DataType": 1
  310. },
  311. {
  312. "id": {
  313. "m_id": "{0666C01F-0E9F-4972-8011-828FFA82E48D}"
  314. },
  315. "contracts": [
  316. {
  317. "$type": "SlotTypeContract"
  318. }
  319. ],
  320. "slotName": "In",
  321. "Descriptor": {
  322. "ConnectionType": 1,
  323. "SlotType": 1
  324. }
  325. },
  326. {
  327. "id": {
  328. "m_id": "{FF863AC5-659A-4DB3-BFFB-DF2DE16C6B76}"
  329. },
  330. "contracts": [
  331. {
  332. "$type": "SlotTypeContract"
  333. }
  334. ],
  335. "slotName": "Out",
  336. "Descriptor": {
  337. "ConnectionType": 2,
  338. "SlotType": 1
  339. }
  340. }
  341. ],
  342. "Datums": [
  343. {
  344. "isOverloadedStorage": false,
  345. "scriptCanvasType": {
  346. "m_type": 3
  347. },
  348. "isNullPointer": false,
  349. "$type": "double",
  350. "value": 0.0,
  351. "label": "Number: 0"
  352. }
  353. ],
  354. "methodType": 0,
  355. "methodName": "IntTwo",
  356. "className": "EBus",
  357. "resultSlotIDs": [
  358. {
  359. "m_id": "{B1008B79-54F3-4E4E-80FE-06810E89C00A}"
  360. }
  361. ],
  362. "prettyClassName": "EBus"
  363. }
  364. }
  365. },
  366. {
  367. "Id": {
  368. "id": 493589566293159
  369. },
  370. "Name": "SC-Node(ExpectEqual)",
  371. "Components": {
  372. "Component_[13404169450992628881]": {
  373. "$type": "MethodOverloaded",
  374. "Id": 13404169450992628881,
  375. "Slots": [
  376. {
  377. "isVisibile": false,
  378. "id": {
  379. "m_id": "{FD8BD8B8-3B7D-4498-BC61-20F7D50AB040}"
  380. },
  381. "contracts": [
  382. {
  383. "$type": "SlotTypeContract"
  384. },
  385. null
  386. ],
  387. "slotName": "EntityID: 0",
  388. "DisplayDataType": {
  389. "m_type": 1
  390. },
  391. "Descriptor": {
  392. "ConnectionType": 1,
  393. "SlotType": 2
  394. },
  395. "DataType": 1
  396. },
  397. {
  398. "id": {
  399. "m_id": "{8EE90DDB-2415-4507-AF8A-FF708E2CBD13}"
  400. },
  401. "DynamicTypeOverride": 1,
  402. "contracts": [
  403. {
  404. "$type": "SlotTypeContract"
  405. },
  406. null,
  407. {
  408. "$type": "OverloadContract"
  409. }
  410. ],
  411. "slotName": "Candidate",
  412. "toolTip": "left of ==",
  413. "DisplayDataType": {
  414. "m_type": 3
  415. },
  416. "Descriptor": {
  417. "ConnectionType": 1,
  418. "SlotType": 2
  419. },
  420. "DataType": 1
  421. },
  422. {
  423. "id": {
  424. "m_id": "{68E731D8-1FDF-47AB-86E7-4BCB46B3690F}"
  425. },
  426. "DynamicTypeOverride": 1,
  427. "contracts": [
  428. {
  429. "$type": "SlotTypeContract"
  430. },
  431. null,
  432. {
  433. "$type": "OverloadContract"
  434. }
  435. ],
  436. "slotName": "Reference",
  437. "toolTip": "right of ==",
  438. "DisplayDataType": {
  439. "m_type": 3
  440. },
  441. "Descriptor": {
  442. "ConnectionType": 1,
  443. "SlotType": 2
  444. },
  445. "DataType": 1
  446. },
  447. {
  448. "id": {
  449. "m_id": "{3BFE15D7-2C56-46AF-83DC-71D9FEE5F302}"
  450. },
  451. "contracts": [
  452. {
  453. "$type": "SlotTypeContract"
  454. },
  455. null
  456. ],
  457. "slotName": "Report",
  458. "toolTip": "additional notes for the test report",
  459. "DisplayDataType": {
  460. "m_type": 5
  461. },
  462. "Descriptor": {
  463. "ConnectionType": 1,
  464. "SlotType": 2
  465. },
  466. "DataType": 1
  467. },
  468. {
  469. "id": {
  470. "m_id": "{2E62E7CD-B08E-40E2-B56E-A976A6970146}"
  471. },
  472. "contracts": [
  473. {
  474. "$type": "SlotTypeContract"
  475. }
  476. ],
  477. "slotName": "In",
  478. "Descriptor": {
  479. "ConnectionType": 1,
  480. "SlotType": 1
  481. }
  482. },
  483. {
  484. "id": {
  485. "m_id": "{7E422F3F-D946-4C84-973B-AD009CB79D8F}"
  486. },
  487. "contracts": [
  488. {
  489. "$type": "SlotTypeContract"
  490. }
  491. ],
  492. "slotName": "Out",
  493. "Descriptor": {
  494. "ConnectionType": 2,
  495. "SlotType": 1
  496. }
  497. }
  498. ],
  499. "Datums": [
  500. {
  501. "isOverloadedStorage": false,
  502. "scriptCanvasType": {
  503. "m_type": 1
  504. },
  505. "isNullPointer": false,
  506. "$type": "EntityId",
  507. "value": {
  508. "id": 4276206253
  509. }
  510. },
  511. {
  512. "isOverloadedStorage": false,
  513. "scriptCanvasType": {
  514. "m_type": 3
  515. },
  516. "isNullPointer": false,
  517. "$type": "double",
  518. "value": 0.0,
  519. "label": "Candidate"
  520. },
  521. {
  522. "isOverloadedStorage": false,
  523. "scriptCanvasType": {
  524. "m_type": 3
  525. },
  526. "isNullPointer": false,
  527. "$type": "double",
  528. "value": 0.0,
  529. "label": "Reference"
  530. },
  531. {
  532. "isOverloadedStorage": false,
  533. "scriptCanvasType": {
  534. "m_type": 5
  535. },
  536. "isNullPointer": false,
  537. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  538. "value": "",
  539. "label": "Report"
  540. }
  541. ],
  542. "methodType": 2,
  543. "methodName": "Expect Equal",
  544. "className": "Unit Testing",
  545. "prettyClassName": "Unit Testing",
  546. "orderedInputSlotIds": [
  547. {
  548. "m_id": "{FD8BD8B8-3B7D-4498-BC61-20F7D50AB040}"
  549. },
  550. {
  551. "m_id": "{8EE90DDB-2415-4507-AF8A-FF708E2CBD13}"
  552. },
  553. {
  554. "m_id": "{68E731D8-1FDF-47AB-86E7-4BCB46B3690F}"
  555. },
  556. {
  557. "m_id": "{3BFE15D7-2C56-46AF-83DC-71D9FEE5F302}"
  558. }
  559. ],
  560. "outputSlotIds": [
  561. {}
  562. ]
  563. }
  564. }
  565. },
  566. {
  567. "Id": {
  568. "id": 493572386423975
  569. },
  570. "Name": "SC-Node(ExpectEqual)",
  571. "Components": {
  572. "Component_[13931254955063258582]": {
  573. "$type": "MethodOverloaded",
  574. "Id": 13931254955063258582,
  575. "Slots": [
  576. {
  577. "isVisibile": false,
  578. "id": {
  579. "m_id": "{49DFBEFF-A68B-405B-8EF1-8E879B5CB497}"
  580. },
  581. "contracts": [
  582. {
  583. "$type": "SlotTypeContract"
  584. },
  585. null
  586. ],
  587. "slotName": "EntityID: 0",
  588. "DisplayDataType": {
  589. "m_type": 1
  590. },
  591. "Descriptor": {
  592. "ConnectionType": 1,
  593. "SlotType": 2
  594. },
  595. "DataType": 1
  596. },
  597. {
  598. "id": {
  599. "m_id": "{DD7D577D-2A56-4C7E-9820-410FA4B48B00}"
  600. },
  601. "DynamicTypeOverride": 1,
  602. "contracts": [
  603. {
  604. "$type": "SlotTypeContract"
  605. },
  606. null,
  607. {
  608. "$type": "OverloadContract"
  609. }
  610. ],
  611. "slotName": "Candidate",
  612. "toolTip": "left of ==",
  613. "DisplayDataType": {
  614. "m_type": 3
  615. },
  616. "Descriptor": {
  617. "ConnectionType": 1,
  618. "SlotType": 2
  619. },
  620. "DataType": 1
  621. },
  622. {
  623. "id": {
  624. "m_id": "{153827F2-AD81-433D-9187-F7AB8782D7D8}"
  625. },
  626. "DynamicTypeOverride": 1,
  627. "contracts": [
  628. {
  629. "$type": "SlotTypeContract"
  630. },
  631. null,
  632. {
  633. "$type": "OverloadContract"
  634. }
  635. ],
  636. "slotName": "Reference",
  637. "toolTip": "right of ==",
  638. "DisplayDataType": {
  639. "m_type": 3
  640. },
  641. "Descriptor": {
  642. "ConnectionType": 1,
  643. "SlotType": 2
  644. },
  645. "DataType": 1
  646. },
  647. {
  648. "id": {
  649. "m_id": "{4F5F4711-C7A6-43D4-B5C0-D4F1E073A776}"
  650. },
  651. "contracts": [
  652. {
  653. "$type": "SlotTypeContract"
  654. },
  655. null
  656. ],
  657. "slotName": "Report",
  658. "toolTip": "additional notes for the test report",
  659. "DisplayDataType": {
  660. "m_type": 5
  661. },
  662. "Descriptor": {
  663. "ConnectionType": 1,
  664. "SlotType": 2
  665. },
  666. "DataType": 1
  667. },
  668. {
  669. "id": {
  670. "m_id": "{CF36010C-7C19-4AB4-A460-6D8D3E490F39}"
  671. },
  672. "contracts": [
  673. {
  674. "$type": "SlotTypeContract"
  675. }
  676. ],
  677. "slotName": "In",
  678. "Descriptor": {
  679. "ConnectionType": 1,
  680. "SlotType": 1
  681. }
  682. },
  683. {
  684. "id": {
  685. "m_id": "{44534D2E-FCA1-47D4-A46C-9520D494CF42}"
  686. },
  687. "contracts": [
  688. {
  689. "$type": "SlotTypeContract"
  690. }
  691. ],
  692. "slotName": "Out",
  693. "Descriptor": {
  694. "ConnectionType": 2,
  695. "SlotType": 1
  696. }
  697. }
  698. ],
  699. "Datums": [
  700. {
  701. "isOverloadedStorage": false,
  702. "scriptCanvasType": {
  703. "m_type": 1
  704. },
  705. "isNullPointer": false,
  706. "$type": "EntityId",
  707. "value": {
  708. "id": 4276206253
  709. }
  710. },
  711. {
  712. "isOverloadedStorage": false,
  713. "scriptCanvasType": {
  714. "m_type": 3
  715. },
  716. "isNullPointer": false,
  717. "$type": "double",
  718. "value": 0.0,
  719. "label": "Candidate"
  720. },
  721. {
  722. "isOverloadedStorage": false,
  723. "scriptCanvasType": {
  724. "m_type": 3
  725. },
  726. "isNullPointer": false,
  727. "$type": "double",
  728. "value": 0.0,
  729. "label": "Reference"
  730. },
  731. {
  732. "isOverloadedStorage": false,
  733. "scriptCanvasType": {
  734. "m_type": 5
  735. },
  736. "isNullPointer": false,
  737. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  738. "value": "final result",
  739. "label": "Report"
  740. }
  741. ],
  742. "methodType": 2,
  743. "methodName": "Expect Equal",
  744. "className": "Unit Testing",
  745. "prettyClassName": "Unit Testing",
  746. "orderedInputSlotIds": [
  747. {
  748. "m_id": "{49DFBEFF-A68B-405B-8EF1-8E879B5CB497}"
  749. },
  750. {
  751. "m_id": "{DD7D577D-2A56-4C7E-9820-410FA4B48B00}"
  752. },
  753. {
  754. "m_id": "{153827F2-AD81-433D-9187-F7AB8782D7D8}"
  755. },
  756. {
  757. "m_id": "{4F5F4711-C7A6-43D4-B5C0-D4F1E073A776}"
  758. }
  759. ],
  760. "outputSlotIds": [
  761. {}
  762. ]
  763. }
  764. }
  765. },
  766. {
  767. "Id": {
  768. "id": 493559501522087
  769. },
  770. "Name": "SC-Node(MarkComplete)",
  771. "Components": {
  772. "Component_[14516270931977519462]": {
  773. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  774. "Id": 14516270931977519462,
  775. "Slots": [
  776. {
  777. "isVisibile": false,
  778. "id": {
  779. "m_id": "{65006CD5-649B-4C94-A952-25AC616E3BA6}"
  780. },
  781. "contracts": [
  782. {
  783. "$type": "SlotTypeContract"
  784. },
  785. null
  786. ],
  787. "slotName": "EntityID: 0",
  788. "Descriptor": {
  789. "ConnectionType": 1,
  790. "SlotType": 2
  791. },
  792. "DataType": 1
  793. },
  794. {
  795. "id": {
  796. "m_id": "{A85573E6-0257-4498-AA5C-EE9371A0BFED}"
  797. },
  798. "contracts": [
  799. {
  800. "$type": "SlotTypeContract"
  801. },
  802. null
  803. ],
  804. "slotName": "Report",
  805. "toolTip": "additional notes for the test report",
  806. "DisplayDataType": {
  807. "m_type": 5
  808. },
  809. "Descriptor": {
  810. "ConnectionType": 1,
  811. "SlotType": 2
  812. },
  813. "DataType": 1
  814. },
  815. {
  816. "id": {
  817. "m_id": "{3BF95D76-1BDA-4544-B9F0-FE8AB804B837}"
  818. },
  819. "contracts": [
  820. {
  821. "$type": "SlotTypeContract"
  822. }
  823. ],
  824. "slotName": "In",
  825. "Descriptor": {
  826. "ConnectionType": 1,
  827. "SlotType": 1
  828. }
  829. },
  830. {
  831. "id": {
  832. "m_id": "{C798EBC0-6508-4934-BBCD-436D9231664B}"
  833. },
  834. "contracts": [
  835. {
  836. "$type": "SlotTypeContract"
  837. }
  838. ],
  839. "slotName": "Out",
  840. "Descriptor": {
  841. "ConnectionType": 2,
  842. "SlotType": 1
  843. }
  844. }
  845. ],
  846. "Datums": [
  847. {
  848. "isOverloadedStorage": false,
  849. "scriptCanvasType": {
  850. "m_type": 1
  851. },
  852. "isNullPointer": false,
  853. "$type": "EntityId",
  854. "value": {
  855. "id": 4276206253
  856. }
  857. },
  858. {
  859. "isOverloadedStorage": false,
  860. "scriptCanvasType": {
  861. "m_type": 5
  862. },
  863. "isNullPointer": false,
  864. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  865. "value": "",
  866. "label": "Report"
  867. }
  868. ],
  869. "methodType": 2,
  870. "methodName": "Mark Complete",
  871. "className": "Unit Testing",
  872. "resultSlotIDs": [
  873. {}
  874. ],
  875. "prettyClassName": "Unit Testing"
  876. }
  877. }
  878. },
  879. {
  880. "Id": {
  881. "id": 493563796489383
  882. },
  883. "Name": "SC-Node(IntOne)",
  884. "Components": {
  885. "Component_[14594304360956919697]": {
  886. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  887. "Id": 14594304360956919697,
  888. "Slots": [
  889. {
  890. "id": {
  891. "m_id": "{F29DB30D-BC93-4B95-9B4F-95A0ACE7651E}"
  892. },
  893. "contracts": [
  894. {
  895. "$type": "SlotTypeContract"
  896. }
  897. ],
  898. "slotName": "Result: Number",
  899. "DisplayDataType": {
  900. "m_type": 3
  901. },
  902. "Descriptor": {
  903. "ConnectionType": 2,
  904. "SlotType": 2
  905. },
  906. "DataType": 1
  907. },
  908. {
  909. "id": {
  910. "m_id": "{967DE6F4-E017-4D3F-8053-ED9381AAC4F4}"
  911. },
  912. "contracts": [
  913. {
  914. "$type": "SlotTypeContract"
  915. },
  916. {
  917. "$type": "RestrictedTypeContract"
  918. },
  919. null
  920. ],
  921. "slotName": "Number: 0",
  922. "Descriptor": {
  923. "ConnectionType": 1,
  924. "SlotType": 2
  925. },
  926. "DataType": 1
  927. },
  928. {
  929. "id": {
  930. "m_id": "{DB2C2CE1-9C96-4119-9CF9-B54B5038B439}"
  931. },
  932. "contracts": [
  933. {
  934. "$type": "SlotTypeContract"
  935. }
  936. ],
  937. "slotName": "In",
  938. "Descriptor": {
  939. "ConnectionType": 1,
  940. "SlotType": 1
  941. }
  942. },
  943. {
  944. "id": {
  945. "m_id": "{AA410237-3F46-4241-9EC5-DDD57BE11F4D}"
  946. },
  947. "contracts": [
  948. {
  949. "$type": "SlotTypeContract"
  950. }
  951. ],
  952. "slotName": "Out",
  953. "Descriptor": {
  954. "ConnectionType": 2,
  955. "SlotType": 1
  956. }
  957. }
  958. ],
  959. "Datums": [
  960. {
  961. "isOverloadedStorage": false,
  962. "scriptCanvasType": {
  963. "m_type": 3
  964. },
  965. "isNullPointer": false,
  966. "$type": "double",
  967. "value": 1.0,
  968. "label": "Number: 0"
  969. }
  970. ],
  971. "methodType": 0,
  972. "methodName": "IntOne",
  973. "className": "EBus",
  974. "resultSlotIDs": [
  975. {
  976. "m_id": "{F29DB30D-BC93-4B95-9B4F-95A0ACE7651E}"
  977. }
  978. ],
  979. "prettyClassName": "EBus"
  980. }
  981. }
  982. },
  983. {
  984. "Id": {
  985. "id": 493568091456679
  986. },
  987. "Name": "SC-Node(Start)",
  988. "Components": {
  989. "Component_[16196258208569481874]": {
  990. "$type": "Start",
  991. "Id": 16196258208569481874,
  992. "Slots": [
  993. {
  994. "id": {
  995. "m_id": "{4F53960F-8102-4F31-ACEC-572D7CEDB2CD}"
  996. },
  997. "contracts": [
  998. {
  999. "$type": "SlotTypeContract"
  1000. }
  1001. ],
  1002. "slotName": "Out",
  1003. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1004. "Descriptor": {
  1005. "ConnectionType": 2,
  1006. "SlotType": 1
  1007. }
  1008. }
  1009. ]
  1010. }
  1011. }
  1012. },
  1013. {
  1014. "Id": {
  1015. "id": 493576681391271
  1016. },
  1017. "Name": "EBusEventHandler",
  1018. "Components": {
  1019. "Component_[16541310749636264088]": {
  1020. "$type": "EBusEventHandler",
  1021. "Id": 16541310749636264088,
  1022. "Slots": [
  1023. {
  1024. "id": {
  1025. "m_id": "{812CBD75-2EC4-48D8-A825-602640424504}"
  1026. },
  1027. "contracts": [
  1028. {
  1029. "$type": "SlotTypeContract"
  1030. }
  1031. ],
  1032. "slotName": "Connect",
  1033. "toolTip": "Connect this event handler to the specified entity.",
  1034. "Descriptor": {
  1035. "ConnectionType": 1,
  1036. "SlotType": 1
  1037. }
  1038. },
  1039. {
  1040. "id": {
  1041. "m_id": "{3AA4F74B-739D-4431-8535-DE71B7EC52D8}"
  1042. },
  1043. "contracts": [
  1044. {
  1045. "$type": "SlotTypeContract"
  1046. }
  1047. ],
  1048. "slotName": "Disconnect",
  1049. "toolTip": "Disconnect this event handler.",
  1050. "Descriptor": {
  1051. "ConnectionType": 1,
  1052. "SlotType": 1
  1053. }
  1054. },
  1055. {
  1056. "id": {
  1057. "m_id": "{9FCE61D4-D96A-4FFB-AFBF-325F8293E830}"
  1058. },
  1059. "contracts": [
  1060. {
  1061. "$type": "SlotTypeContract"
  1062. }
  1063. ],
  1064. "slotName": "OnConnected",
  1065. "toolTip": "Signaled when a connection has taken place.",
  1066. "Descriptor": {
  1067. "ConnectionType": 2,
  1068. "SlotType": 1
  1069. }
  1070. },
  1071. {
  1072. "id": {
  1073. "m_id": "{220B31A1-AC52-4B17-94FA-A86C7FE70A75}"
  1074. },
  1075. "contracts": [
  1076. {
  1077. "$type": "SlotTypeContract"
  1078. }
  1079. ],
  1080. "slotName": "OnDisconnected",
  1081. "toolTip": "Signaled when this event handler is disconnected.",
  1082. "Descriptor": {
  1083. "ConnectionType": 2,
  1084. "SlotType": 1
  1085. }
  1086. },
  1087. {
  1088. "id": {
  1089. "m_id": "{DB298C05-EDB1-4E70-B02F-297342A1B0A8}"
  1090. },
  1091. "contracts": [
  1092. {
  1093. "$type": "SlotTypeContract"
  1094. }
  1095. ],
  1096. "slotName": "OnFailure",
  1097. "toolTip": "Signaled when it is not possible to connect this handler.",
  1098. "Descriptor": {
  1099. "ConnectionType": 2,
  1100. "SlotType": 1
  1101. }
  1102. },
  1103. {
  1104. "id": {
  1105. "m_id": "{689F5B15-6C7D-4E7C-B330-BFEB7AA91C46}"
  1106. },
  1107. "contracts": [
  1108. {
  1109. "$type": "SlotTypeContract"
  1110. },
  1111. {
  1112. "$type": "RestrictedTypeContract"
  1113. },
  1114. null
  1115. ],
  1116. "slotName": "Result: String",
  1117. "Descriptor": {
  1118. "ConnectionType": 1,
  1119. "SlotType": 2
  1120. },
  1121. "DataType": 1
  1122. },
  1123. {
  1124. "id": {
  1125. "m_id": "{AE6CB9AD-C770-4780-856C-E236F8976D8C}"
  1126. },
  1127. "contracts": [
  1128. {
  1129. "$type": "SlotTypeContract"
  1130. }
  1131. ],
  1132. "slotName": "String",
  1133. "DisplayDataType": {
  1134. "m_type": 5
  1135. },
  1136. "Descriptor": {
  1137. "ConnectionType": 2,
  1138. "SlotType": 2
  1139. },
  1140. "DataType": 1
  1141. },
  1142. {
  1143. "id": {
  1144. "m_id": "{E5AFF1D0-E9D4-42CB-B353-4D8EAF07154E}"
  1145. },
  1146. "contracts": [
  1147. {
  1148. "$type": "SlotTypeContract"
  1149. }
  1150. ],
  1151. "slotName": "ExecutionSlot:CStyleToCStyle",
  1152. "Descriptor": {
  1153. "ConnectionType": 2,
  1154. "SlotType": 1
  1155. },
  1156. "IsLatent": true
  1157. },
  1158. {
  1159. "id": {
  1160. "m_id": "{A1C4DE77-74C9-4A48-A966-7E0B427D6410}"
  1161. },
  1162. "contracts": [
  1163. {
  1164. "$type": "SlotTypeContract"
  1165. },
  1166. {
  1167. "$type": "RestrictedTypeContract"
  1168. },
  1169. null
  1170. ],
  1171. "slotName": "Result: String",
  1172. "Descriptor": {
  1173. "ConnectionType": 1,
  1174. "SlotType": 2
  1175. },
  1176. "DataType": 1
  1177. },
  1178. {
  1179. "id": {
  1180. "m_id": "{8A3034A0-D458-4087-867B-DF8BA9DC9142}"
  1181. },
  1182. "contracts": [
  1183. {
  1184. "$type": "SlotTypeContract"
  1185. }
  1186. ],
  1187. "slotName": "String",
  1188. "DisplayDataType": {
  1189. "m_type": 5
  1190. },
  1191. "Descriptor": {
  1192. "ConnectionType": 2,
  1193. "SlotType": 2
  1194. },
  1195. "DataType": 1
  1196. },
  1197. {
  1198. "id": {
  1199. "m_id": "{9295E663-1AD9-4751-9BF7-9F18F79B7338}"
  1200. },
  1201. "contracts": [
  1202. {
  1203. "$type": "SlotTypeContract"
  1204. }
  1205. ],
  1206. "slotName": "ExecutionSlot:CStyleToString",
  1207. "Descriptor": {
  1208. "ConnectionType": 2,
  1209. "SlotType": 1
  1210. },
  1211. "IsLatent": true
  1212. },
  1213. {
  1214. "id": {
  1215. "m_id": "{8DF46BCD-0F3D-42C7-8B93-E5758F10BDDD}"
  1216. },
  1217. "contracts": [
  1218. {
  1219. "$type": "SlotTypeContract"
  1220. },
  1221. {
  1222. "$type": "RestrictedTypeContract"
  1223. },
  1224. null
  1225. ],
  1226. "slotName": "Result: String",
  1227. "Descriptor": {
  1228. "ConnectionType": 1,
  1229. "SlotType": 2
  1230. },
  1231. "DataType": 1
  1232. },
  1233. {
  1234. "id": {
  1235. "m_id": "{2144EC63-DBDD-4BF3-9F8A-D387D09819C6}"
  1236. },
  1237. "contracts": [
  1238. {
  1239. "$type": "SlotTypeContract"
  1240. }
  1241. ],
  1242. "slotName": "String",
  1243. "DisplayDataType": {
  1244. "m_type": 5
  1245. },
  1246. "Descriptor": {
  1247. "ConnectionType": 2,
  1248. "SlotType": 2
  1249. },
  1250. "DataType": 1
  1251. },
  1252. {
  1253. "id": {
  1254. "m_id": "{505139A5-C94C-48C0-9485-25DBCA7000CD}"
  1255. },
  1256. "contracts": [
  1257. {
  1258. "$type": "SlotTypeContract"
  1259. }
  1260. ],
  1261. "slotName": "ExecutionSlot:CStyleToStringView",
  1262. "Descriptor": {
  1263. "ConnectionType": 2,
  1264. "SlotType": 1
  1265. },
  1266. "IsLatent": true
  1267. },
  1268. {
  1269. "id": {
  1270. "m_id": "{DD2CED1F-E268-438B-875D-A6C984FD4072}"
  1271. },
  1272. "contracts": [
  1273. {
  1274. "$type": "SlotTypeContract"
  1275. },
  1276. {
  1277. "$type": "RestrictedTypeContract"
  1278. },
  1279. null
  1280. ],
  1281. "slotName": "Result: Number",
  1282. "Descriptor": {
  1283. "ConnectionType": 1,
  1284. "SlotType": 2
  1285. },
  1286. "DataType": 1
  1287. },
  1288. {
  1289. "id": {
  1290. "m_id": "{20CFD31A-288E-40A3-8D1A-98865A9C5688}"
  1291. },
  1292. "contracts": [
  1293. {
  1294. "$type": "SlotTypeContract"
  1295. }
  1296. ],
  1297. "slotName": "Number",
  1298. "DisplayDataType": {
  1299. "m_type": 3
  1300. },
  1301. "Descriptor": {
  1302. "ConnectionType": 2,
  1303. "SlotType": 2
  1304. },
  1305. "DataType": 1
  1306. },
  1307. {
  1308. "id": {
  1309. "m_id": "{819C32CF-1184-4F99-841B-34BCD9CF4FF9}"
  1310. },
  1311. "contracts": [
  1312. {
  1313. "$type": "SlotTypeContract"
  1314. }
  1315. ],
  1316. "slotName": "ExecutionSlot:IntOne",
  1317. "Descriptor": {
  1318. "ConnectionType": 2,
  1319. "SlotType": 1
  1320. },
  1321. "IsLatent": true
  1322. },
  1323. {
  1324. "id": {
  1325. "m_id": "{F58A44CF-22EC-4DF3-AE4E-1C40AD56C951}"
  1326. },
  1327. "contracts": [
  1328. {
  1329. "$type": "SlotTypeContract"
  1330. },
  1331. {
  1332. "$type": "RestrictedTypeContract"
  1333. },
  1334. null
  1335. ],
  1336. "slotName": "Result: Number",
  1337. "Descriptor": {
  1338. "ConnectionType": 1,
  1339. "SlotType": 2
  1340. },
  1341. "DataType": 1
  1342. },
  1343. {
  1344. "id": {
  1345. "m_id": "{6634B4A9-D275-4F51-B0DE-21146FDD02F1}"
  1346. },
  1347. "contracts": [
  1348. {
  1349. "$type": "SlotTypeContract"
  1350. }
  1351. ],
  1352. "slotName": "Number",
  1353. "DisplayDataType": {
  1354. "m_type": 3
  1355. },
  1356. "Descriptor": {
  1357. "ConnectionType": 2,
  1358. "SlotType": 2
  1359. },
  1360. "DataType": 1
  1361. },
  1362. {
  1363. "id": {
  1364. "m_id": "{A1D037E6-9F78-4A26-B816-D607EADD5C2F}"
  1365. },
  1366. "contracts": [
  1367. {
  1368. "$type": "SlotTypeContract"
  1369. }
  1370. ],
  1371. "slotName": "ExecutionSlot:IntTwo",
  1372. "Descriptor": {
  1373. "ConnectionType": 2,
  1374. "SlotType": 1
  1375. },
  1376. "IsLatent": true
  1377. },
  1378. {
  1379. "id": {
  1380. "m_id": "{564CD31B-5CA3-4A2C-A606-E824F45D98D9}"
  1381. },
  1382. "contracts": [
  1383. {
  1384. "$type": "SlotTypeContract"
  1385. },
  1386. {
  1387. "$type": "RestrictedTypeContract"
  1388. },
  1389. null
  1390. ],
  1391. "slotName": "Result: Number",
  1392. "Descriptor": {
  1393. "ConnectionType": 1,
  1394. "SlotType": 2
  1395. },
  1396. "DataType": 1
  1397. },
  1398. {
  1399. "id": {
  1400. "m_id": "{4A603AD6-D73C-430D-97FF-11907037780F}"
  1401. },
  1402. "contracts": [
  1403. {
  1404. "$type": "SlotTypeContract"
  1405. }
  1406. ],
  1407. "slotName": "Number",
  1408. "DisplayDataType": {
  1409. "m_type": 3
  1410. },
  1411. "Descriptor": {
  1412. "ConnectionType": 2,
  1413. "SlotType": 2
  1414. },
  1415. "DataType": 1
  1416. },
  1417. {
  1418. "id": {
  1419. "m_id": "{A005C715-8ABD-4533-9582-9989AE72C00D}"
  1420. },
  1421. "contracts": [
  1422. {
  1423. "$type": "SlotTypeContract"
  1424. }
  1425. ],
  1426. "slotName": "ExecutionSlot:IntThree",
  1427. "Descriptor": {
  1428. "ConnectionType": 2,
  1429. "SlotType": 1
  1430. },
  1431. "IsLatent": true
  1432. }
  1433. ],
  1434. "Datums": [
  1435. {
  1436. "isOverloadedStorage": false,
  1437. "scriptCanvasType": {
  1438. "m_type": 5
  1439. },
  1440. "isNullPointer": false,
  1441. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1442. "value": "",
  1443. "label": "Result: String"
  1444. },
  1445. {
  1446. "isOverloadedStorage": false,
  1447. "scriptCanvasType": {
  1448. "m_type": 5
  1449. },
  1450. "isNullPointer": false,
  1451. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1452. "value": "",
  1453. "label": "Result: String"
  1454. },
  1455. {
  1456. "isOverloadedStorage": false,
  1457. "scriptCanvasType": {
  1458. "m_type": 5
  1459. },
  1460. "isNullPointer": false,
  1461. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1462. "value": "",
  1463. "label": "Result: String"
  1464. },
  1465. {
  1466. "isOverloadedStorage": false,
  1467. "scriptCanvasType": {
  1468. "m_type": 3
  1469. },
  1470. "isNullPointer": false,
  1471. "$type": "double",
  1472. "value": 0.0,
  1473. "label": "Result: Number"
  1474. },
  1475. {
  1476. "isOverloadedStorage": false,
  1477. "scriptCanvasType": {
  1478. "m_type": 3
  1479. },
  1480. "isNullPointer": false,
  1481. "$type": "double",
  1482. "value": 0.0,
  1483. "label": "Result: Number"
  1484. },
  1485. {
  1486. "isOverloadedStorage": false,
  1487. "scriptCanvasType": {
  1488. "m_type": 3
  1489. },
  1490. "isNullPointer": false,
  1491. "$type": "double",
  1492. "value": 0.0,
  1493. "label": "Result: Number"
  1494. }
  1495. ],
  1496. "m_eventMap": [
  1497. {
  1498. "Key": {
  1499. "Value": 598574587
  1500. },
  1501. "Value": {
  1502. "m_eventName": "CStyleToString",
  1503. "m_eventId": {
  1504. "Value": 598574587
  1505. },
  1506. "m_eventSlotId": {
  1507. "m_id": "{9295E663-1AD9-4751-9BF7-9F18F79B7338}"
  1508. },
  1509. "m_resultSlotId": {
  1510. "m_id": "{A1C4DE77-74C9-4A48-A966-7E0B427D6410}"
  1511. },
  1512. "m_parameterSlotIds": [
  1513. {
  1514. "m_id": "{8A3034A0-D458-4087-867B-DF8BA9DC9142}"
  1515. }
  1516. ],
  1517. "m_numExpectedArguments": 1
  1518. }
  1519. },
  1520. {
  1521. "Key": {
  1522. "Value": 1633366910
  1523. },
  1524. "Value": {
  1525. "m_eventName": "IntThree",
  1526. "m_eventId": {
  1527. "Value": 1633366910
  1528. },
  1529. "m_eventSlotId": {
  1530. "m_id": "{A005C715-8ABD-4533-9582-9989AE72C00D}"
  1531. },
  1532. "m_resultSlotId": {
  1533. "m_id": "{564CD31B-5CA3-4A2C-A606-E824F45D98D9}"
  1534. },
  1535. "m_parameterSlotIds": [
  1536. {
  1537. "m_id": "{4A603AD6-D73C-430D-97FF-11907037780F}"
  1538. }
  1539. ],
  1540. "m_numExpectedArguments": 1
  1541. }
  1542. },
  1543. {
  1544. "Key": {
  1545. "Value": 1999545458
  1546. },
  1547. "Value": {
  1548. "m_eventName": "CStyleToCStyle",
  1549. "m_eventId": {
  1550. "Value": 1999545458
  1551. },
  1552. "m_eventSlotId": {
  1553. "m_id": "{E5AFF1D0-E9D4-42CB-B353-4D8EAF07154E}"
  1554. },
  1555. "m_resultSlotId": {
  1556. "m_id": "{689F5B15-6C7D-4E7C-B330-BFEB7AA91C46}"
  1557. },
  1558. "m_parameterSlotIds": [
  1559. {
  1560. "m_id": "{AE6CB9AD-C770-4780-856C-E236F8976D8C}"
  1561. }
  1562. ],
  1563. "m_numExpectedArguments": 1
  1564. }
  1565. },
  1566. {
  1567. "Key": {
  1568. "Value": 3001897634
  1569. },
  1570. "Value": {
  1571. "m_eventName": "IntTwo",
  1572. "m_eventId": {
  1573. "Value": 3001897634
  1574. },
  1575. "m_eventSlotId": {
  1576. "m_id": "{A1D037E6-9F78-4A26-B816-D607EADD5C2F}"
  1577. },
  1578. "m_resultSlotId": {
  1579. "m_id": "{F58A44CF-22EC-4DF3-AE4E-1C40AD56C951}"
  1580. },
  1581. "m_parameterSlotIds": [
  1582. {
  1583. "m_id": "{6634B4A9-D275-4F51-B0DE-21146FDD02F1}"
  1584. }
  1585. ],
  1586. "m_numExpectedArguments": 1
  1587. }
  1588. },
  1589. {
  1590. "Key": {
  1591. "Value": 3645595189
  1592. },
  1593. "Value": {
  1594. "m_eventName": "IntOne",
  1595. "m_eventId": {
  1596. "Value": 3645595189
  1597. },
  1598. "m_eventSlotId": {
  1599. "m_id": "{819C32CF-1184-4F99-841B-34BCD9CF4FF9}"
  1600. },
  1601. "m_resultSlotId": {
  1602. "m_id": "{DD2CED1F-E268-438B-875D-A6C984FD4072}"
  1603. },
  1604. "m_parameterSlotIds": [
  1605. {
  1606. "m_id": "{20CFD31A-288E-40A3-8D1A-98865A9C5688}"
  1607. }
  1608. ],
  1609. "m_numExpectedArguments": 1
  1610. }
  1611. },
  1612. {
  1613. "Key": {
  1614. "Value": 4054470805
  1615. },
  1616. "Value": {
  1617. "m_eventName": "CStyleToStringView",
  1618. "m_eventId": {
  1619. "Value": 4054470805
  1620. },
  1621. "m_eventSlotId": {
  1622. "m_id": "{505139A5-C94C-48C0-9485-25DBCA7000CD}"
  1623. },
  1624. "m_resultSlotId": {
  1625. "m_id": "{8DF46BCD-0F3D-42C7-8B93-E5758F10BDDD}"
  1626. },
  1627. "m_parameterSlotIds": [
  1628. {
  1629. "m_id": "{2144EC63-DBDD-4BF3-9F8A-D387D09819C6}"
  1630. }
  1631. ],
  1632. "m_numExpectedArguments": 1
  1633. }
  1634. }
  1635. ],
  1636. "m_ebusName": "EBus",
  1637. "m_busId": {
  1638. "Value": 4255869526
  1639. }
  1640. }
  1641. }
  1642. },
  1643. {
  1644. "Id": {
  1645. "id": 493593861260455
  1646. },
  1647. "Name": "SC-Node(Sum)",
  1648. "Components": {
  1649. "Component_[17263105804444795714]": {
  1650. "$type": "OperatorAdd",
  1651. "Id": 17263105804444795714,
  1652. "Slots": [
  1653. {
  1654. "id": {
  1655. "m_id": "{73C17134-2D3A-4D79-BC46-BA3F55D03CAC}"
  1656. },
  1657. "contracts": [
  1658. {
  1659. "$type": "SlotTypeContract"
  1660. }
  1661. ],
  1662. "slotName": "In",
  1663. "Descriptor": {
  1664. "ConnectionType": 1,
  1665. "SlotType": 1
  1666. }
  1667. },
  1668. {
  1669. "id": {
  1670. "m_id": "{A0A90BD2-FA4C-4452-9073-2C59399F6CF6}"
  1671. },
  1672. "contracts": [
  1673. {
  1674. "$type": "SlotTypeContract"
  1675. }
  1676. ],
  1677. "slotName": "Out",
  1678. "Descriptor": {
  1679. "ConnectionType": 2,
  1680. "SlotType": 1
  1681. }
  1682. },
  1683. {
  1684. "id": {
  1685. "m_id": "{691712C4-6791-4B77-8B96-16B5BF9F1859}"
  1686. },
  1687. "DynamicTypeOverride": 3,
  1688. "contracts": [
  1689. {
  1690. "$type": "SlotTypeContract"
  1691. },
  1692. null,
  1693. {
  1694. "$type": "MathOperatorContract",
  1695. "NativeTypes": [
  1696. {
  1697. "m_type": 3
  1698. },
  1699. {
  1700. "m_type": 6
  1701. },
  1702. {
  1703. "m_type": 8
  1704. },
  1705. {
  1706. "m_type": 9
  1707. },
  1708. {
  1709. "m_type": 10
  1710. },
  1711. {
  1712. "m_type": 11
  1713. },
  1714. {
  1715. "m_type": 12
  1716. },
  1717. {
  1718. "m_type": 14
  1719. },
  1720. {
  1721. "m_type": 15
  1722. }
  1723. ]
  1724. }
  1725. ],
  1726. "slotName": "Number",
  1727. "toolTip": "An operand to use in performing the specified Operation",
  1728. "DisplayDataType": {
  1729. "m_type": 3
  1730. },
  1731. "DisplayGroup": {
  1732. "Value": 1114760223
  1733. },
  1734. "Descriptor": {
  1735. "ConnectionType": 1,
  1736. "SlotType": 2
  1737. },
  1738. "DynamicGroup": {
  1739. "Value": 1114760223
  1740. },
  1741. "DataType": 1
  1742. },
  1743. {
  1744. "id": {
  1745. "m_id": "{FA8A1F41-FCE2-4222-8177-728B12A8A477}"
  1746. },
  1747. "DynamicTypeOverride": 3,
  1748. "contracts": [
  1749. {
  1750. "$type": "SlotTypeContract"
  1751. },
  1752. null,
  1753. {
  1754. "$type": "MathOperatorContract",
  1755. "NativeTypes": [
  1756. {
  1757. "m_type": 3
  1758. },
  1759. {
  1760. "m_type": 6
  1761. },
  1762. {
  1763. "m_type": 8
  1764. },
  1765. {
  1766. "m_type": 9
  1767. },
  1768. {
  1769. "m_type": 10
  1770. },
  1771. {
  1772. "m_type": 11
  1773. },
  1774. {
  1775. "m_type": 12
  1776. },
  1777. {
  1778. "m_type": 14
  1779. },
  1780. {
  1781. "m_type": 15
  1782. }
  1783. ]
  1784. }
  1785. ],
  1786. "slotName": "Number",
  1787. "toolTip": "An operand to use in performing the specified Operation",
  1788. "DisplayDataType": {
  1789. "m_type": 3
  1790. },
  1791. "DisplayGroup": {
  1792. "Value": 1114760223
  1793. },
  1794. "Descriptor": {
  1795. "ConnectionType": 1,
  1796. "SlotType": 2
  1797. },
  1798. "DynamicGroup": {
  1799. "Value": 1114760223
  1800. },
  1801. "DataType": 1
  1802. },
  1803. {
  1804. "id": {
  1805. "m_id": "{E17BCFA1-F98E-4346-AE71-6A973E85CAC8}"
  1806. },
  1807. "DynamicTypeOverride": 3,
  1808. "contracts": [
  1809. {
  1810. "$type": "SlotTypeContract"
  1811. },
  1812. {
  1813. "$type": "MathOperatorContract",
  1814. "NativeTypes": [
  1815. {
  1816. "m_type": 3
  1817. },
  1818. {
  1819. "m_type": 6
  1820. },
  1821. {
  1822. "m_type": 8
  1823. },
  1824. {
  1825. "m_type": 9
  1826. },
  1827. {
  1828. "m_type": 10
  1829. },
  1830. {
  1831. "m_type": 11
  1832. },
  1833. {
  1834. "m_type": 12
  1835. },
  1836. {
  1837. "m_type": 14
  1838. },
  1839. {
  1840. "m_type": 15
  1841. }
  1842. ]
  1843. }
  1844. ],
  1845. "slotName": "Result",
  1846. "toolTip": "The result of the specified operation",
  1847. "DisplayDataType": {
  1848. "m_type": 3
  1849. },
  1850. "DisplayGroup": {
  1851. "Value": 1114760223
  1852. },
  1853. "Descriptor": {
  1854. "ConnectionType": 2,
  1855. "SlotType": 2
  1856. },
  1857. "DynamicGroup": {
  1858. "Value": 1114760223
  1859. },
  1860. "DataType": 1
  1861. }
  1862. ],
  1863. "Datums": [
  1864. {
  1865. "isOverloadedStorage": false,
  1866. "scriptCanvasType": {
  1867. "m_type": 3
  1868. },
  1869. "isNullPointer": false,
  1870. "$type": "double",
  1871. "value": 0.0,
  1872. "label": "Number"
  1873. },
  1874. {
  1875. "isOverloadedStorage": false,
  1876. "scriptCanvasType": {
  1877. "m_type": 3
  1878. },
  1879. "isNullPointer": false,
  1880. "$type": "double",
  1881. "value": 5.0,
  1882. "label": "Number"
  1883. }
  1884. ]
  1885. }
  1886. }
  1887. },
  1888. {
  1889. "Id": {
  1890. "id": 493602451195047
  1891. },
  1892. "Name": "SC-Node(ExpectEqual)",
  1893. "Components": {
  1894. "Component_[17308979236147701735]": {
  1895. "$type": "MethodOverloaded",
  1896. "Id": 17308979236147701735,
  1897. "Slots": [
  1898. {
  1899. "isVisibile": false,
  1900. "id": {
  1901. "m_id": "{D99BC8F2-B319-468D-AF13-7083CE249BC0}"
  1902. },
  1903. "contracts": [
  1904. {
  1905. "$type": "SlotTypeContract"
  1906. },
  1907. null
  1908. ],
  1909. "slotName": "EntityID: 0",
  1910. "DisplayDataType": {
  1911. "m_type": 1
  1912. },
  1913. "Descriptor": {
  1914. "ConnectionType": 1,
  1915. "SlotType": 2
  1916. },
  1917. "DataType": 1
  1918. },
  1919. {
  1920. "id": {
  1921. "m_id": "{C02D7E51-FECE-4D87-A941-BD1E37F63FA1}"
  1922. },
  1923. "DynamicTypeOverride": 1,
  1924. "contracts": [
  1925. {
  1926. "$type": "SlotTypeContract"
  1927. },
  1928. null,
  1929. {
  1930. "$type": "OverloadContract"
  1931. }
  1932. ],
  1933. "slotName": "Candidate",
  1934. "toolTip": "left of ==",
  1935. "DisplayDataType": {
  1936. "m_type": 3
  1937. },
  1938. "Descriptor": {
  1939. "ConnectionType": 1,
  1940. "SlotType": 2
  1941. },
  1942. "DataType": 1
  1943. },
  1944. {
  1945. "id": {
  1946. "m_id": "{4F5A0A9B-56FC-4741-967B-26CE03CE9C48}"
  1947. },
  1948. "DynamicTypeOverride": 1,
  1949. "contracts": [
  1950. {
  1951. "$type": "SlotTypeContract"
  1952. },
  1953. null,
  1954. {
  1955. "$type": "OverloadContract"
  1956. }
  1957. ],
  1958. "slotName": "Reference",
  1959. "toolTip": "right of ==",
  1960. "DisplayDataType": {
  1961. "m_type": 3
  1962. },
  1963. "Descriptor": {
  1964. "ConnectionType": 1,
  1965. "SlotType": 2
  1966. },
  1967. "DataType": 1
  1968. },
  1969. {
  1970. "id": {
  1971. "m_id": "{5B97C5D3-0718-4FC4-970A-0AE55F0DFF0A}"
  1972. },
  1973. "contracts": [
  1974. {
  1975. "$type": "SlotTypeContract"
  1976. },
  1977. null
  1978. ],
  1979. "slotName": "Report",
  1980. "toolTip": "additional notes for the test report",
  1981. "DisplayDataType": {
  1982. "m_type": 5
  1983. },
  1984. "Descriptor": {
  1985. "ConnectionType": 1,
  1986. "SlotType": 2
  1987. },
  1988. "DataType": 1
  1989. },
  1990. {
  1991. "id": {
  1992. "m_id": "{B280C074-507F-4DB4-8618-BE80AE0A709E}"
  1993. },
  1994. "contracts": [
  1995. {
  1996. "$type": "SlotTypeContract"
  1997. }
  1998. ],
  1999. "slotName": "In",
  2000. "Descriptor": {
  2001. "ConnectionType": 1,
  2002. "SlotType": 1
  2003. }
  2004. },
  2005. {
  2006. "id": {
  2007. "m_id": "{B4965BCC-2435-4FDF-B27F-D5BFA1850956}"
  2008. },
  2009. "contracts": [
  2010. {
  2011. "$type": "SlotTypeContract"
  2012. }
  2013. ],
  2014. "slotName": "Out",
  2015. "Descriptor": {
  2016. "ConnectionType": 2,
  2017. "SlotType": 1
  2018. }
  2019. }
  2020. ],
  2021. "Datums": [
  2022. {
  2023. "isOverloadedStorage": false,
  2024. "scriptCanvasType": {
  2025. "m_type": 1
  2026. },
  2027. "isNullPointer": false,
  2028. "$type": "EntityId",
  2029. "value": {
  2030. "id": 4276206253
  2031. }
  2032. },
  2033. {
  2034. "isOverloadedStorage": false,
  2035. "scriptCanvasType": {
  2036. "m_type": 3
  2037. },
  2038. "isNullPointer": false,
  2039. "$type": "double",
  2040. "value": 0.0,
  2041. "label": "Candidate"
  2042. },
  2043. {
  2044. "isOverloadedStorage": false,
  2045. "scriptCanvasType": {
  2046. "m_type": 3
  2047. },
  2048. "isNullPointer": false,
  2049. "$type": "double",
  2050. "value": 0.0,
  2051. "label": "Reference"
  2052. },
  2053. {
  2054. "isOverloadedStorage": false,
  2055. "scriptCanvasType": {
  2056. "m_type": 5
  2057. },
  2058. "isNullPointer": false,
  2059. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2060. "value": "IntTwo output",
  2061. "label": "Report"
  2062. }
  2063. ],
  2064. "methodType": 2,
  2065. "methodName": "Expect Equal",
  2066. "className": "Unit Testing",
  2067. "prettyClassName": "Unit Testing",
  2068. "orderedInputSlotIds": [
  2069. {
  2070. "m_id": "{D99BC8F2-B319-468D-AF13-7083CE249BC0}"
  2071. },
  2072. {
  2073. "m_id": "{C02D7E51-FECE-4D87-A941-BD1E37F63FA1}"
  2074. },
  2075. {
  2076. "m_id": "{4F5A0A9B-56FC-4741-967B-26CE03CE9C48}"
  2077. },
  2078. {
  2079. "m_id": "{5B97C5D3-0718-4FC4-970A-0AE55F0DFF0A}"
  2080. }
  2081. ],
  2082. "outputSlotIds": [
  2083. {}
  2084. ]
  2085. }
  2086. }
  2087. },
  2088. {
  2089. "Id": {
  2090. "id": 493580976358567
  2091. },
  2092. "Name": "SC Node(GetVariable)",
  2093. "Components": {
  2094. "Component_[17332738276641862428]": {
  2095. "$type": "GetVariableNode",
  2096. "Id": 17332738276641862428,
  2097. "Slots": [
  2098. {
  2099. "id": {
  2100. "m_id": "{63A86B62-C4D4-4B96-B37F-84D6005B5030}"
  2101. },
  2102. "contracts": [
  2103. {
  2104. "$type": "SlotTypeContract"
  2105. }
  2106. ],
  2107. "slotName": "In",
  2108. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2109. "Descriptor": {
  2110. "ConnectionType": 1,
  2111. "SlotType": 1
  2112. }
  2113. },
  2114. {
  2115. "id": {
  2116. "m_id": "{263C7616-32A2-45D0-B45C-BA4683511718}"
  2117. },
  2118. "contracts": [
  2119. {
  2120. "$type": "SlotTypeContract"
  2121. }
  2122. ],
  2123. "slotName": "Out",
  2124. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2125. "Descriptor": {
  2126. "ConnectionType": 2,
  2127. "SlotType": 1
  2128. }
  2129. },
  2130. {
  2131. "id": {
  2132. "m_id": "{D71DC7EF-F277-40A2-88F7-EBDF9CDBE1A3}"
  2133. },
  2134. "contracts": [
  2135. {
  2136. "$type": "SlotTypeContract"
  2137. }
  2138. ],
  2139. "slotName": "Number",
  2140. "DisplayDataType": {
  2141. "m_type": 3
  2142. },
  2143. "Descriptor": {
  2144. "ConnectionType": 2,
  2145. "SlotType": 2
  2146. },
  2147. "DataType": 1
  2148. }
  2149. ],
  2150. "m_variableId": {
  2151. "m_id": "{C308EF78-1676-4D7F-B545-63D53C8E5833}"
  2152. },
  2153. "m_variableDataOutSlotId": {
  2154. "m_id": "{D71DC7EF-F277-40A2-88F7-EBDF9CDBE1A3}"
  2155. }
  2156. }
  2157. }
  2158. },
  2159. {
  2160. "Id": {
  2161. "id": 493546616620199
  2162. },
  2163. "Name": "SC-Node(Sum)",
  2164. "Components": {
  2165. "Component_[17460316204695808295]": {
  2166. "$type": "OperatorAdd",
  2167. "Id": 17460316204695808295,
  2168. "Slots": [
  2169. {
  2170. "id": {
  2171. "m_id": "{2FDCF7D1-1A9F-427F-9FF5-0D9F1D0D8C41}"
  2172. },
  2173. "contracts": [
  2174. {
  2175. "$type": "SlotTypeContract"
  2176. }
  2177. ],
  2178. "slotName": "In",
  2179. "Descriptor": {
  2180. "ConnectionType": 1,
  2181. "SlotType": 1
  2182. }
  2183. },
  2184. {
  2185. "id": {
  2186. "m_id": "{45808463-7089-4351-8982-0FB6C8133776}"
  2187. },
  2188. "contracts": [
  2189. {
  2190. "$type": "SlotTypeContract"
  2191. }
  2192. ],
  2193. "slotName": "Out",
  2194. "Descriptor": {
  2195. "ConnectionType": 2,
  2196. "SlotType": 1
  2197. }
  2198. },
  2199. {
  2200. "id": {
  2201. "m_id": "{231D9639-0D92-405A-A3ED-CF0B96514A11}"
  2202. },
  2203. "DynamicTypeOverride": 3,
  2204. "contracts": [
  2205. {
  2206. "$type": "SlotTypeContract"
  2207. },
  2208. null,
  2209. {
  2210. "$type": "MathOperatorContract",
  2211. "NativeTypes": [
  2212. {
  2213. "m_type": 3
  2214. },
  2215. {
  2216. "m_type": 6
  2217. },
  2218. {
  2219. "m_type": 8
  2220. },
  2221. {
  2222. "m_type": 9
  2223. },
  2224. {
  2225. "m_type": 10
  2226. },
  2227. {
  2228. "m_type": 11
  2229. },
  2230. {
  2231. "m_type": 12
  2232. },
  2233. {
  2234. "m_type": 14
  2235. },
  2236. {
  2237. "m_type": 15
  2238. }
  2239. ]
  2240. }
  2241. ],
  2242. "slotName": "Number",
  2243. "toolTip": "An operand to use in performing the specified Operation",
  2244. "DisplayDataType": {
  2245. "m_type": 3
  2246. },
  2247. "DisplayGroup": {
  2248. "Value": 1114760223
  2249. },
  2250. "Descriptor": {
  2251. "ConnectionType": 1,
  2252. "SlotType": 2
  2253. },
  2254. "DynamicGroup": {
  2255. "Value": 1114760223
  2256. },
  2257. "DataType": 1
  2258. },
  2259. {
  2260. "id": {
  2261. "m_id": "{D8B31558-B5D7-415F-837F-3329AB5097A9}"
  2262. },
  2263. "DynamicTypeOverride": 3,
  2264. "contracts": [
  2265. {
  2266. "$type": "SlotTypeContract"
  2267. },
  2268. null,
  2269. {
  2270. "$type": "MathOperatorContract",
  2271. "NativeTypes": [
  2272. {
  2273. "m_type": 3
  2274. },
  2275. {
  2276. "m_type": 6
  2277. },
  2278. {
  2279. "m_type": 8
  2280. },
  2281. {
  2282. "m_type": 9
  2283. },
  2284. {
  2285. "m_type": 10
  2286. },
  2287. {
  2288. "m_type": 11
  2289. },
  2290. {
  2291. "m_type": 12
  2292. },
  2293. {
  2294. "m_type": 14
  2295. },
  2296. {
  2297. "m_type": 15
  2298. }
  2299. ]
  2300. }
  2301. ],
  2302. "slotName": "Number",
  2303. "toolTip": "An operand to use in performing the specified Operation",
  2304. "DisplayDataType": {
  2305. "m_type": 3
  2306. },
  2307. "DisplayGroup": {
  2308. "Value": 1114760223
  2309. },
  2310. "Descriptor": {
  2311. "ConnectionType": 1,
  2312. "SlotType": 2
  2313. },
  2314. "DynamicGroup": {
  2315. "Value": 1114760223
  2316. },
  2317. "DataType": 1
  2318. },
  2319. {
  2320. "id": {
  2321. "m_id": "{E9921DCE-FAE6-43DC-84BD-CBD3BF6E6E9F}"
  2322. },
  2323. "DynamicTypeOverride": 3,
  2324. "contracts": [
  2325. {
  2326. "$type": "SlotTypeContract"
  2327. },
  2328. {
  2329. "$type": "MathOperatorContract",
  2330. "NativeTypes": [
  2331. {
  2332. "m_type": 3
  2333. },
  2334. {
  2335. "m_type": 6
  2336. },
  2337. {
  2338. "m_type": 8
  2339. },
  2340. {
  2341. "m_type": 9
  2342. },
  2343. {
  2344. "m_type": 10
  2345. },
  2346. {
  2347. "m_type": 11
  2348. },
  2349. {
  2350. "m_type": 12
  2351. },
  2352. {
  2353. "m_type": 14
  2354. },
  2355. {
  2356. "m_type": 15
  2357. }
  2358. ]
  2359. }
  2360. ],
  2361. "slotName": "Result",
  2362. "toolTip": "The result of the specified operation",
  2363. "DisplayDataType": {
  2364. "m_type": 3
  2365. },
  2366. "DisplayGroup": {
  2367. "Value": 1114760223
  2368. },
  2369. "Descriptor": {
  2370. "ConnectionType": 2,
  2371. "SlotType": 2
  2372. },
  2373. "DynamicGroup": {
  2374. "Value": 1114760223
  2375. },
  2376. "DataType": 1
  2377. }
  2378. ],
  2379. "Datums": [
  2380. {
  2381. "isOverloadedStorage": false,
  2382. "scriptCanvasType": {
  2383. "m_type": 3
  2384. },
  2385. "isNullPointer": false,
  2386. "$type": "double",
  2387. "value": 0.0,
  2388. "label": "Number"
  2389. },
  2390. {
  2391. "isOverloadedStorage": false,
  2392. "scriptCanvasType": {
  2393. "m_type": 3
  2394. },
  2395. "isNullPointer": false,
  2396. "$type": "double",
  2397. "value": 17.0,
  2398. "label": "Number"
  2399. }
  2400. ]
  2401. }
  2402. }
  2403. },
  2404. {
  2405. "Id": {
  2406. "id": 493538026685607
  2407. },
  2408. "Name": "SC Node(GetVariable)",
  2409. "Components": {
  2410. "Component_[18128554025015089099]": {
  2411. "$type": "GetVariableNode",
  2412. "Id": 18128554025015089099,
  2413. "Slots": [
  2414. {
  2415. "id": {
  2416. "m_id": "{ADD90116-E1AC-407C-8892-B9FC6D3D2C7F}"
  2417. },
  2418. "contracts": [
  2419. {
  2420. "$type": "SlotTypeContract"
  2421. }
  2422. ],
  2423. "slotName": "In",
  2424. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2425. "Descriptor": {
  2426. "ConnectionType": 1,
  2427. "SlotType": 1
  2428. }
  2429. },
  2430. {
  2431. "id": {
  2432. "m_id": "{CB0DFA44-E346-49DE-85E8-B0D5F7DB13AC}"
  2433. },
  2434. "contracts": [
  2435. {
  2436. "$type": "SlotTypeContract"
  2437. }
  2438. ],
  2439. "slotName": "Out",
  2440. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2441. "Descriptor": {
  2442. "ConnectionType": 2,
  2443. "SlotType": 1
  2444. }
  2445. },
  2446. {
  2447. "id": {
  2448. "m_id": "{389494EB-40E8-4D32-9E55-0E823D55C221}"
  2449. },
  2450. "contracts": [
  2451. {
  2452. "$type": "SlotTypeContract"
  2453. }
  2454. ],
  2455. "slotName": "Number",
  2456. "DisplayDataType": {
  2457. "m_type": 3
  2458. },
  2459. "Descriptor": {
  2460. "ConnectionType": 2,
  2461. "SlotType": 2
  2462. },
  2463. "DataType": 1
  2464. }
  2465. ],
  2466. "m_variableId": {
  2467. "m_id": "{B551E060-FC2B-44C2-BBAC-4A6FCC3F4A64}"
  2468. },
  2469. "m_variableDataOutSlotId": {
  2470. "m_id": "{389494EB-40E8-4D32-9E55-0E823D55C221}"
  2471. }
  2472. }
  2473. }
  2474. },
  2475. {
  2476. "Id": {
  2477. "id": 493585271325863
  2478. },
  2479. "Name": "SC-Node(Sum)",
  2480. "Components": {
  2481. "Component_[2224803300982019254]": {
  2482. "$type": "OperatorAdd",
  2483. "Id": 2224803300982019254,
  2484. "Slots": [
  2485. {
  2486. "id": {
  2487. "m_id": "{2DB1F90E-6941-4CE9-8BDF-1078937D69D1}"
  2488. },
  2489. "contracts": [
  2490. {
  2491. "$type": "SlotTypeContract"
  2492. }
  2493. ],
  2494. "slotName": "In",
  2495. "Descriptor": {
  2496. "ConnectionType": 1,
  2497. "SlotType": 1
  2498. }
  2499. },
  2500. {
  2501. "id": {
  2502. "m_id": "{7924CE59-8C7D-4E85-B144-81C8F7FFA63B}"
  2503. },
  2504. "contracts": [
  2505. {
  2506. "$type": "SlotTypeContract"
  2507. }
  2508. ],
  2509. "slotName": "Out",
  2510. "Descriptor": {
  2511. "ConnectionType": 2,
  2512. "SlotType": 1
  2513. }
  2514. },
  2515. {
  2516. "id": {
  2517. "m_id": "{CD75DDAA-234D-402C-8933-51FD6D04E477}"
  2518. },
  2519. "DynamicTypeOverride": 3,
  2520. "contracts": [
  2521. {
  2522. "$type": "SlotTypeContract"
  2523. },
  2524. null,
  2525. {
  2526. "$type": "MathOperatorContract",
  2527. "NativeTypes": [
  2528. {
  2529. "m_type": 3
  2530. },
  2531. {
  2532. "m_type": 6
  2533. },
  2534. {
  2535. "m_type": 8
  2536. },
  2537. {
  2538. "m_type": 9
  2539. },
  2540. {
  2541. "m_type": 10
  2542. },
  2543. {
  2544. "m_type": 11
  2545. },
  2546. {
  2547. "m_type": 12
  2548. },
  2549. {
  2550. "m_type": 14
  2551. },
  2552. {
  2553. "m_type": 15
  2554. }
  2555. ]
  2556. }
  2557. ],
  2558. "slotName": "Number",
  2559. "toolTip": "An operand to use in performing the specified Operation",
  2560. "DisplayDataType": {
  2561. "m_type": 3
  2562. },
  2563. "DisplayGroup": {
  2564. "Value": 1114760223
  2565. },
  2566. "Descriptor": {
  2567. "ConnectionType": 1,
  2568. "SlotType": 2
  2569. },
  2570. "DynamicGroup": {
  2571. "Value": 1114760223
  2572. },
  2573. "DataType": 1
  2574. },
  2575. {
  2576. "id": {
  2577. "m_id": "{3B152634-9B92-4BB3-B8A8-E9CBA058C28B}"
  2578. },
  2579. "DynamicTypeOverride": 3,
  2580. "contracts": [
  2581. {
  2582. "$type": "SlotTypeContract"
  2583. },
  2584. null,
  2585. {
  2586. "$type": "MathOperatorContract",
  2587. "NativeTypes": [
  2588. {
  2589. "m_type": 3
  2590. },
  2591. {
  2592. "m_type": 6
  2593. },
  2594. {
  2595. "m_type": 8
  2596. },
  2597. {
  2598. "m_type": 9
  2599. },
  2600. {
  2601. "m_type": 10
  2602. },
  2603. {
  2604. "m_type": 11
  2605. },
  2606. {
  2607. "m_type": 12
  2608. },
  2609. {
  2610. "m_type": 14
  2611. },
  2612. {
  2613. "m_type": 15
  2614. }
  2615. ]
  2616. }
  2617. ],
  2618. "slotName": "Number",
  2619. "toolTip": "An operand to use in performing the specified Operation",
  2620. "DisplayDataType": {
  2621. "m_type": 3
  2622. },
  2623. "DisplayGroup": {
  2624. "Value": 1114760223
  2625. },
  2626. "Descriptor": {
  2627. "ConnectionType": 1,
  2628. "SlotType": 2
  2629. },
  2630. "DynamicGroup": {
  2631. "Value": 1114760223
  2632. },
  2633. "DataType": 1
  2634. },
  2635. {
  2636. "id": {
  2637. "m_id": "{F510AA9F-D2EF-4AC7-BDBD-E3D7E3EB3BFB}"
  2638. },
  2639. "DynamicTypeOverride": 3,
  2640. "contracts": [
  2641. {
  2642. "$type": "SlotTypeContract"
  2643. },
  2644. {
  2645. "$type": "MathOperatorContract",
  2646. "NativeTypes": [
  2647. {
  2648. "m_type": 3
  2649. },
  2650. {
  2651. "m_type": 6
  2652. },
  2653. {
  2654. "m_type": 8
  2655. },
  2656. {
  2657. "m_type": 9
  2658. },
  2659. {
  2660. "m_type": 10
  2661. },
  2662. {
  2663. "m_type": 11
  2664. },
  2665. {
  2666. "m_type": 12
  2667. },
  2668. {
  2669. "m_type": 14
  2670. },
  2671. {
  2672. "m_type": 15
  2673. }
  2674. ]
  2675. }
  2676. ],
  2677. "slotName": "Result",
  2678. "toolTip": "The result of the specified operation",
  2679. "DisplayDataType": {
  2680. "m_type": 3
  2681. },
  2682. "DisplayGroup": {
  2683. "Value": 1114760223
  2684. },
  2685. "Descriptor": {
  2686. "ConnectionType": 2,
  2687. "SlotType": 2
  2688. },
  2689. "DynamicGroup": {
  2690. "Value": 1114760223
  2691. },
  2692. "DataType": 1
  2693. }
  2694. ],
  2695. "Datums": [
  2696. {
  2697. "isOverloadedStorage": false,
  2698. "scriptCanvasType": {
  2699. "m_type": 3
  2700. },
  2701. "isNullPointer": false,
  2702. "$type": "double",
  2703. "value": 0.0,
  2704. "label": "Number"
  2705. },
  2706. {
  2707. "isOverloadedStorage": false,
  2708. "scriptCanvasType": {
  2709. "m_type": 3
  2710. },
  2711. "isNullPointer": false,
  2712. "$type": "double",
  2713. "value": 11.0,
  2714. "label": "Number"
  2715. }
  2716. ]
  2717. }
  2718. }
  2719. },
  2720. {
  2721. "Id": {
  2722. "id": 493550911587495
  2723. },
  2724. "Name": "SC Node(GetVariable)",
  2725. "Components": {
  2726. "Component_[4048724986573807672]": {
  2727. "$type": "GetVariableNode",
  2728. "Id": 4048724986573807672,
  2729. "Slots": [
  2730. {
  2731. "id": {
  2732. "m_id": "{8CD06303-EE59-4B3C-9679-D401211A763C}"
  2733. },
  2734. "contracts": [
  2735. {
  2736. "$type": "SlotTypeContract"
  2737. }
  2738. ],
  2739. "slotName": "In",
  2740. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2741. "Descriptor": {
  2742. "ConnectionType": 1,
  2743. "SlotType": 1
  2744. }
  2745. },
  2746. {
  2747. "id": {
  2748. "m_id": "{D5A292A8-501E-45EC-8BF2-4E36C6341A0C}"
  2749. },
  2750. "contracts": [
  2751. {
  2752. "$type": "SlotTypeContract"
  2753. }
  2754. ],
  2755. "slotName": "Out",
  2756. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2757. "Descriptor": {
  2758. "ConnectionType": 2,
  2759. "SlotType": 1
  2760. }
  2761. },
  2762. {
  2763. "id": {
  2764. "m_id": "{D6AAEE69-94D2-43C5-AF60-7908165AED83}"
  2765. },
  2766. "contracts": [
  2767. {
  2768. "$type": "SlotTypeContract"
  2769. }
  2770. ],
  2771. "slotName": "Number",
  2772. "DisplayDataType": {
  2773. "m_type": 3
  2774. },
  2775. "Descriptor": {
  2776. "ConnectionType": 2,
  2777. "SlotType": 2
  2778. },
  2779. "DataType": 1
  2780. }
  2781. ],
  2782. "m_variableId": {
  2783. "m_id": "{94C60903-C47D-41B4-B825-CFE8C5FA865F}"
  2784. },
  2785. "m_variableDataOutSlotId": {
  2786. "m_id": "{D6AAEE69-94D2-43C5-AF60-7908165AED83}"
  2787. }
  2788. }
  2789. }
  2790. },
  2791. {
  2792. "Id": {
  2793. "id": 493611041129639
  2794. },
  2795. "Name": "SC-Node(IntThree)",
  2796. "Components": {
  2797. "Component_[5902153259141775798]": {
  2798. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2799. "Id": 5902153259141775798,
  2800. "Slots": [
  2801. {
  2802. "id": {
  2803. "m_id": "{D529683B-A889-4BD8-8B9A-DED2D22016AF}"
  2804. },
  2805. "contracts": [
  2806. {
  2807. "$type": "SlotTypeContract"
  2808. }
  2809. ],
  2810. "slotName": "Result: Number",
  2811. "DisplayDataType": {
  2812. "m_type": 3
  2813. },
  2814. "Descriptor": {
  2815. "ConnectionType": 2,
  2816. "SlotType": 2
  2817. },
  2818. "DataType": 1
  2819. },
  2820. {
  2821. "id": {
  2822. "m_id": "{D6E042E4-D5AF-400F-BDF2-BB3A9CA2CE34}"
  2823. },
  2824. "contracts": [
  2825. {
  2826. "$type": "SlotTypeContract"
  2827. },
  2828. {
  2829. "$type": "RestrictedTypeContract"
  2830. },
  2831. null
  2832. ],
  2833. "slotName": "Number: 0",
  2834. "Descriptor": {
  2835. "ConnectionType": 1,
  2836. "SlotType": 2
  2837. },
  2838. "DataType": 1
  2839. },
  2840. {
  2841. "id": {
  2842. "m_id": "{DC35400D-752B-4AD2-AF07-56BE0DEB1102}"
  2843. },
  2844. "contracts": [
  2845. {
  2846. "$type": "SlotTypeContract"
  2847. }
  2848. ],
  2849. "slotName": "In",
  2850. "Descriptor": {
  2851. "ConnectionType": 1,
  2852. "SlotType": 1
  2853. }
  2854. },
  2855. {
  2856. "id": {
  2857. "m_id": "{4DA6A307-D992-401A-8109-5769EB914F5D}"
  2858. },
  2859. "contracts": [
  2860. {
  2861. "$type": "SlotTypeContract"
  2862. }
  2863. ],
  2864. "slotName": "Out",
  2865. "Descriptor": {
  2866. "ConnectionType": 2,
  2867. "SlotType": 1
  2868. }
  2869. }
  2870. ],
  2871. "Datums": [
  2872. {
  2873. "isOverloadedStorage": false,
  2874. "scriptCanvasType": {
  2875. "m_type": 3
  2876. },
  2877. "isNullPointer": false,
  2878. "$type": "double",
  2879. "value": 0.0,
  2880. "label": "Number: 0"
  2881. }
  2882. ],
  2883. "methodType": 0,
  2884. "methodName": "IntThree",
  2885. "className": "EBus",
  2886. "resultSlotIDs": [
  2887. {
  2888. "m_id": "{D529683B-A889-4BD8-8B9A-DED2D22016AF}"
  2889. }
  2890. ],
  2891. "prettyClassName": "EBus"
  2892. }
  2893. }
  2894. },
  2895. {
  2896. "Id": {
  2897. "id": 493615336096935
  2898. },
  2899. "Name": "SC Node(GetVariable)",
  2900. "Components": {
  2901. "Component_[6436345458130518759]": {
  2902. "$type": "GetVariableNode",
  2903. "Id": 6436345458130518759,
  2904. "Slots": [
  2905. {
  2906. "id": {
  2907. "m_id": "{69FD7E2E-DB09-4DE3-985E-D6419A4AC387}"
  2908. },
  2909. "contracts": [
  2910. {
  2911. "$type": "SlotTypeContract"
  2912. }
  2913. ],
  2914. "slotName": "In",
  2915. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2916. "Descriptor": {
  2917. "ConnectionType": 1,
  2918. "SlotType": 1
  2919. }
  2920. },
  2921. {
  2922. "id": {
  2923. "m_id": "{40B04BC9-091C-4B68-B680-09E392D13A12}"
  2924. },
  2925. "contracts": [
  2926. {
  2927. "$type": "SlotTypeContract"
  2928. }
  2929. ],
  2930. "slotName": "Out",
  2931. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2932. "Descriptor": {
  2933. "ConnectionType": 2,
  2934. "SlotType": 1
  2935. }
  2936. },
  2937. {
  2938. "id": {
  2939. "m_id": "{4FAB624E-5CFF-4677-94C5-E107209CC0DE}"
  2940. },
  2941. "contracts": [
  2942. {
  2943. "$type": "SlotTypeContract"
  2944. }
  2945. ],
  2946. "slotName": "Number",
  2947. "DisplayDataType": {
  2948. "m_type": 3
  2949. },
  2950. "Descriptor": {
  2951. "ConnectionType": 2,
  2952. "SlotType": 2
  2953. },
  2954. "DataType": 1
  2955. }
  2956. ],
  2957. "m_variableId": {
  2958. "m_id": "{89215469-35D0-4FC2-B544-73DB81F7FD28}"
  2959. },
  2960. "m_variableDataOutSlotId": {
  2961. "m_id": "{4FAB624E-5CFF-4677-94C5-E107209CC0DE}"
  2962. }
  2963. }
  2964. }
  2965. },
  2966. {
  2967. "Id": {
  2968. "id": 493555206554791
  2969. },
  2970. "Name": "SC-Node(ExpectEqual)",
  2971. "Components": {
  2972. "Component_[6715842405102604376]": {
  2973. "$type": "MethodOverloaded",
  2974. "Id": 6715842405102604376,
  2975. "Slots": [
  2976. {
  2977. "isVisibile": false,
  2978. "id": {
  2979. "m_id": "{0325FA55-4144-46B5-9761-102F1226E8BA}"
  2980. },
  2981. "contracts": [
  2982. {
  2983. "$type": "SlotTypeContract"
  2984. },
  2985. null
  2986. ],
  2987. "slotName": "EntityID: 0",
  2988. "DisplayDataType": {
  2989. "m_type": 1
  2990. },
  2991. "Descriptor": {
  2992. "ConnectionType": 1,
  2993. "SlotType": 2
  2994. },
  2995. "DataType": 1
  2996. },
  2997. {
  2998. "id": {
  2999. "m_id": "{7E2587CE-0627-441E-88A6-AB980716CAD4}"
  3000. },
  3001. "DynamicTypeOverride": 1,
  3002. "contracts": [
  3003. {
  3004. "$type": "SlotTypeContract"
  3005. },
  3006. null,
  3007. {
  3008. "$type": "OverloadContract"
  3009. }
  3010. ],
  3011. "slotName": "Candidate",
  3012. "toolTip": "left of ==",
  3013. "DisplayDataType": {
  3014. "m_type": 3
  3015. },
  3016. "Descriptor": {
  3017. "ConnectionType": 1,
  3018. "SlotType": 2
  3019. },
  3020. "DataType": 1
  3021. },
  3022. {
  3023. "id": {
  3024. "m_id": "{6A556604-ECD0-442D-8A1F-E1B08CBCE791}"
  3025. },
  3026. "DynamicTypeOverride": 1,
  3027. "contracts": [
  3028. {
  3029. "$type": "SlotTypeContract"
  3030. },
  3031. null,
  3032. {
  3033. "$type": "OverloadContract"
  3034. }
  3035. ],
  3036. "slotName": "Reference",
  3037. "toolTip": "right of ==",
  3038. "DisplayDataType": {
  3039. "m_type": 3
  3040. },
  3041. "Descriptor": {
  3042. "ConnectionType": 1,
  3043. "SlotType": 2
  3044. },
  3045. "DataType": 1
  3046. },
  3047. {
  3048. "id": {
  3049. "m_id": "{A0601510-171F-47E9-81E1-4A5DC7D4ABB1}"
  3050. },
  3051. "contracts": [
  3052. {
  3053. "$type": "SlotTypeContract"
  3054. },
  3055. null
  3056. ],
  3057. "slotName": "Report",
  3058. "toolTip": "additional notes for the test report",
  3059. "DisplayDataType": {
  3060. "m_type": 5
  3061. },
  3062. "Descriptor": {
  3063. "ConnectionType": 1,
  3064. "SlotType": 2
  3065. },
  3066. "DataType": 1
  3067. },
  3068. {
  3069. "id": {
  3070. "m_id": "{FB23EA1F-3EA0-4B58-970E-31585F980A20}"
  3071. },
  3072. "contracts": [
  3073. {
  3074. "$type": "SlotTypeContract"
  3075. }
  3076. ],
  3077. "slotName": "In",
  3078. "Descriptor": {
  3079. "ConnectionType": 1,
  3080. "SlotType": 1
  3081. }
  3082. },
  3083. {
  3084. "id": {
  3085. "m_id": "{5F644BF0-964C-4BD2-BB04-085BAC519DA1}"
  3086. },
  3087. "contracts": [
  3088. {
  3089. "$type": "SlotTypeContract"
  3090. }
  3091. ],
  3092. "slotName": "Out",
  3093. "Descriptor": {
  3094. "ConnectionType": 2,
  3095. "SlotType": 1
  3096. }
  3097. }
  3098. ],
  3099. "Datums": [
  3100. {
  3101. "isOverloadedStorage": false,
  3102. "scriptCanvasType": {
  3103. "m_type": 1
  3104. },
  3105. "isNullPointer": false,
  3106. "$type": "EntityId",
  3107. "value": {
  3108. "id": 4276206253
  3109. }
  3110. },
  3111. {
  3112. "isOverloadedStorage": false,
  3113. "scriptCanvasType": {
  3114. "m_type": 3
  3115. },
  3116. "isNullPointer": false,
  3117. "$type": "double",
  3118. "value": 0.0,
  3119. "label": "Candidate"
  3120. },
  3121. {
  3122. "isOverloadedStorage": false,
  3123. "scriptCanvasType": {
  3124. "m_type": 3
  3125. },
  3126. "isNullPointer": false,
  3127. "$type": "double",
  3128. "value": 0.0,
  3129. "label": "Reference"
  3130. },
  3131. {
  3132. "isOverloadedStorage": false,
  3133. "scriptCanvasType": {
  3134. "m_type": 5
  3135. },
  3136. "isNullPointer": false,
  3137. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3138. "value": "IntOne output",
  3139. "label": "Report"
  3140. }
  3141. ],
  3142. "methodType": 2,
  3143. "methodName": "Expect Equal",
  3144. "className": "Unit Testing",
  3145. "prettyClassName": "Unit Testing",
  3146. "orderedInputSlotIds": [
  3147. {
  3148. "m_id": "{0325FA55-4144-46B5-9761-102F1226E8BA}"
  3149. },
  3150. {
  3151. "m_id": "{7E2587CE-0627-441E-88A6-AB980716CAD4}"
  3152. },
  3153. {
  3154. "m_id": "{6A556604-ECD0-442D-8A1F-E1B08CBCE791}"
  3155. },
  3156. {
  3157. "m_id": "{A0601510-171F-47E9-81E1-4A5DC7D4ABB1}"
  3158. }
  3159. ],
  3160. "outputSlotIds": [
  3161. {}
  3162. ]
  3163. }
  3164. }
  3165. },
  3166. {
  3167. "Id": {
  3168. "id": 493542321652903
  3169. },
  3170. "Name": "SC-Node(Sum)",
  3171. "Components": {
  3172. "Component_[8065652146270234646]": {
  3173. "$type": "OperatorAdd",
  3174. "Id": 8065652146270234646,
  3175. "Slots": [
  3176. {
  3177. "id": {
  3178. "m_id": "{87A87316-0AE7-4479-8BD5-A575342EF39F}"
  3179. },
  3180. "contracts": [
  3181. {
  3182. "$type": "SlotTypeContract"
  3183. }
  3184. ],
  3185. "slotName": "In",
  3186. "Descriptor": {
  3187. "ConnectionType": 1,
  3188. "SlotType": 1
  3189. }
  3190. },
  3191. {
  3192. "id": {
  3193. "m_id": "{3694E11F-7814-43F3-9C9C-4E3B64743D14}"
  3194. },
  3195. "contracts": [
  3196. {
  3197. "$type": "SlotTypeContract"
  3198. }
  3199. ],
  3200. "slotName": "Out",
  3201. "Descriptor": {
  3202. "ConnectionType": 2,
  3203. "SlotType": 1
  3204. }
  3205. },
  3206. {
  3207. "id": {
  3208. "m_id": "{ED663794-ABF8-4100-8BA5-BD211737A2A4}"
  3209. },
  3210. "DynamicTypeOverride": 3,
  3211. "contracts": [
  3212. {
  3213. "$type": "SlotTypeContract"
  3214. },
  3215. null,
  3216. {
  3217. "$type": "MathOperatorContract",
  3218. "NativeTypes": [
  3219. {
  3220. "m_type": 3
  3221. },
  3222. {
  3223. "m_type": 6
  3224. },
  3225. {
  3226. "m_type": 8
  3227. },
  3228. {
  3229. "m_type": 9
  3230. },
  3231. {
  3232. "m_type": 10
  3233. },
  3234. {
  3235. "m_type": 11
  3236. },
  3237. {
  3238. "m_type": 12
  3239. },
  3240. {
  3241. "m_type": 14
  3242. },
  3243. {
  3244. "m_type": 15
  3245. }
  3246. ]
  3247. }
  3248. ],
  3249. "slotName": "Number",
  3250. "toolTip": "An operand to use in performing the specified Operation",
  3251. "DisplayDataType": {
  3252. "m_type": 3
  3253. },
  3254. "DisplayGroup": {
  3255. "Value": 1114760223
  3256. },
  3257. "Descriptor": {
  3258. "ConnectionType": 1,
  3259. "SlotType": 2
  3260. },
  3261. "DynamicGroup": {
  3262. "Value": 1114760223
  3263. },
  3264. "DataType": 1
  3265. },
  3266. {
  3267. "id": {
  3268. "m_id": "{37A071E7-621D-42D8-B74E-C4B6FF900EC5}"
  3269. },
  3270. "DynamicTypeOverride": 3,
  3271. "contracts": [
  3272. {
  3273. "$type": "SlotTypeContract"
  3274. },
  3275. null,
  3276. {
  3277. "$type": "MathOperatorContract",
  3278. "NativeTypes": [
  3279. {
  3280. "m_type": 3
  3281. },
  3282. {
  3283. "m_type": 6
  3284. },
  3285. {
  3286. "m_type": 8
  3287. },
  3288. {
  3289. "m_type": 9
  3290. },
  3291. {
  3292. "m_type": 10
  3293. },
  3294. {
  3295. "m_type": 11
  3296. },
  3297. {
  3298. "m_type": 12
  3299. },
  3300. {
  3301. "m_type": 14
  3302. },
  3303. {
  3304. "m_type": 15
  3305. }
  3306. ]
  3307. }
  3308. ],
  3309. "slotName": "Number",
  3310. "toolTip": "An operand to use in performing the specified Operation",
  3311. "DisplayDataType": {
  3312. "m_type": 3
  3313. },
  3314. "DisplayGroup": {
  3315. "Value": 1114760223
  3316. },
  3317. "Descriptor": {
  3318. "ConnectionType": 1,
  3319. "SlotType": 2
  3320. },
  3321. "DynamicGroup": {
  3322. "Value": 1114760223
  3323. },
  3324. "DataType": 1
  3325. },
  3326. {
  3327. "id": {
  3328. "m_id": "{BCB94706-C454-45C3-9FCB-91BCE393AEFE}"
  3329. },
  3330. "DynamicTypeOverride": 3,
  3331. "contracts": [
  3332. {
  3333. "$type": "SlotTypeContract"
  3334. },
  3335. {
  3336. "$type": "MathOperatorContract",
  3337. "NativeTypes": [
  3338. {
  3339. "m_type": 3
  3340. },
  3341. {
  3342. "m_type": 6
  3343. },
  3344. {
  3345. "m_type": 8
  3346. },
  3347. {
  3348. "m_type": 9
  3349. },
  3350. {
  3351. "m_type": 10
  3352. },
  3353. {
  3354. "m_type": 11
  3355. },
  3356. {
  3357. "m_type": 12
  3358. },
  3359. {
  3360. "m_type": 14
  3361. },
  3362. {
  3363. "m_type": 15
  3364. }
  3365. ]
  3366. }
  3367. ],
  3368. "slotName": "Result",
  3369. "toolTip": "The result of the specified operation",
  3370. "DisplayDataType": {
  3371. "m_type": 3
  3372. },
  3373. "DisplayGroup": {
  3374. "Value": 1114760223
  3375. },
  3376. "Descriptor": {
  3377. "ConnectionType": 2,
  3378. "SlotType": 2
  3379. },
  3380. "DynamicGroup": {
  3381. "Value": 1114760223
  3382. },
  3383. "DataType": 1
  3384. }
  3385. ],
  3386. "Datums": [
  3387. {
  3388. "isOverloadedStorage": false,
  3389. "scriptCanvasType": {
  3390. "m_type": 3
  3391. },
  3392. "isNullPointer": false,
  3393. "$type": "double",
  3394. "value": 0.0,
  3395. "label": "Number"
  3396. },
  3397. {
  3398. "isOverloadedStorage": false,
  3399. "scriptCanvasType": {
  3400. "m_type": 3
  3401. },
  3402. "isNullPointer": false,
  3403. "$type": "double",
  3404. "value": 3.0,
  3405. "label": "Number"
  3406. }
  3407. ]
  3408. }
  3409. }
  3410. },
  3411. {
  3412. "Id": {
  3413. "id": 493619631064231
  3414. },
  3415. "Name": "SC-Node(Sum)",
  3416. "Components": {
  3417. "Component_[9263402261165085275]": {
  3418. "$type": "OperatorAdd",
  3419. "Id": 9263402261165085275,
  3420. "Slots": [
  3421. {
  3422. "id": {
  3423. "m_id": "{CD28473F-803E-4F51-891C-E4E08A080792}"
  3424. },
  3425. "contracts": [
  3426. {
  3427. "$type": "SlotTypeContract"
  3428. }
  3429. ],
  3430. "slotName": "In",
  3431. "Descriptor": {
  3432. "ConnectionType": 1,
  3433. "SlotType": 1
  3434. }
  3435. },
  3436. {
  3437. "id": {
  3438. "m_id": "{5DA92A67-BD65-4A69-A90F-1AB4BABC90AE}"
  3439. },
  3440. "contracts": [
  3441. {
  3442. "$type": "SlotTypeContract"
  3443. }
  3444. ],
  3445. "slotName": "Out",
  3446. "Descriptor": {
  3447. "ConnectionType": 2,
  3448. "SlotType": 1
  3449. }
  3450. },
  3451. {
  3452. "id": {
  3453. "m_id": "{873D671E-4AE9-4CCA-875A-1A9579AE134C}"
  3454. },
  3455. "DynamicTypeOverride": 3,
  3456. "contracts": [
  3457. {
  3458. "$type": "SlotTypeContract"
  3459. },
  3460. null,
  3461. {
  3462. "$type": "MathOperatorContract",
  3463. "NativeTypes": [
  3464. {
  3465. "m_type": 3
  3466. },
  3467. {
  3468. "m_type": 6
  3469. },
  3470. {
  3471. "m_type": 8
  3472. },
  3473. {
  3474. "m_type": 9
  3475. },
  3476. {
  3477. "m_type": 10
  3478. },
  3479. {
  3480. "m_type": 11
  3481. },
  3482. {
  3483. "m_type": 12
  3484. },
  3485. {
  3486. "m_type": 14
  3487. },
  3488. {
  3489. "m_type": 15
  3490. }
  3491. ]
  3492. }
  3493. ],
  3494. "slotName": "Number",
  3495. "toolTip": "An operand to use in performing the specified Operation",
  3496. "DisplayDataType": {
  3497. "m_type": 3
  3498. },
  3499. "DisplayGroup": {
  3500. "Value": 1114760223
  3501. },
  3502. "Descriptor": {
  3503. "ConnectionType": 1,
  3504. "SlotType": 2
  3505. },
  3506. "DynamicGroup": {
  3507. "Value": 1114760223
  3508. },
  3509. "DataType": 1
  3510. },
  3511. {
  3512. "id": {
  3513. "m_id": "{43B87378-6B86-48DF-ADF6-1B9F319CD811}"
  3514. },
  3515. "DynamicTypeOverride": 3,
  3516. "contracts": [
  3517. {
  3518. "$type": "SlotTypeContract"
  3519. },
  3520. null,
  3521. {
  3522. "$type": "MathOperatorContract",
  3523. "NativeTypes": [
  3524. {
  3525. "m_type": 3
  3526. },
  3527. {
  3528. "m_type": 6
  3529. },
  3530. {
  3531. "m_type": 8
  3532. },
  3533. {
  3534. "m_type": 9
  3535. },
  3536. {
  3537. "m_type": 10
  3538. },
  3539. {
  3540. "m_type": 11
  3541. },
  3542. {
  3543. "m_type": 12
  3544. },
  3545. {
  3546. "m_type": 14
  3547. },
  3548. {
  3549. "m_type": 15
  3550. }
  3551. ]
  3552. }
  3553. ],
  3554. "slotName": "Number",
  3555. "toolTip": "An operand to use in performing the specified Operation",
  3556. "DisplayDataType": {
  3557. "m_type": 3
  3558. },
  3559. "DisplayGroup": {
  3560. "Value": 1114760223
  3561. },
  3562. "Descriptor": {
  3563. "ConnectionType": 1,
  3564. "SlotType": 2
  3565. },
  3566. "DynamicGroup": {
  3567. "Value": 1114760223
  3568. },
  3569. "DataType": 1
  3570. },
  3571. {
  3572. "id": {
  3573. "m_id": "{F0F9511C-E628-4F7F-BCD3-FFFF54073E99}"
  3574. },
  3575. "DynamicTypeOverride": 3,
  3576. "contracts": [
  3577. {
  3578. "$type": "SlotTypeContract"
  3579. },
  3580. {
  3581. "$type": "MathOperatorContract",
  3582. "NativeTypes": [
  3583. {
  3584. "m_type": 3
  3585. },
  3586. {
  3587. "m_type": 6
  3588. },
  3589. {
  3590. "m_type": 8
  3591. },
  3592. {
  3593. "m_type": 9
  3594. },
  3595. {
  3596. "m_type": 10
  3597. },
  3598. {
  3599. "m_type": 11
  3600. },
  3601. {
  3602. "m_type": 12
  3603. },
  3604. {
  3605. "m_type": 14
  3606. },
  3607. {
  3608. "m_type": 15
  3609. }
  3610. ]
  3611. }
  3612. ],
  3613. "slotName": "Result",
  3614. "toolTip": "The result of the specified operation",
  3615. "DisplayDataType": {
  3616. "m_type": 3
  3617. },
  3618. "DisplayGroup": {
  3619. "Value": 1114760223
  3620. },
  3621. "Descriptor": {
  3622. "ConnectionType": 2,
  3623. "SlotType": 2
  3624. },
  3625. "DynamicGroup": {
  3626. "Value": 1114760223
  3627. },
  3628. "DataType": 1
  3629. }
  3630. ],
  3631. "Datums": [
  3632. {
  3633. "isOverloadedStorage": false,
  3634. "scriptCanvasType": {
  3635. "m_type": 3
  3636. },
  3637. "isNullPointer": false,
  3638. "$type": "double",
  3639. "value": 0.0,
  3640. "label": "Number"
  3641. },
  3642. {
  3643. "isOverloadedStorage": false,
  3644. "scriptCanvasType": {
  3645. "m_type": 3
  3646. },
  3647. "isNullPointer": false,
  3648. "$type": "double",
  3649. "value": 7.0,
  3650. "label": "Number"
  3651. }
  3652. ]
  3653. }
  3654. }
  3655. }
  3656. ],
  3657. "m_connections": [
  3658. {
  3659. "Id": {
  3660. "id": 493623926031527
  3661. },
  3662. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  3663. "Components": {
  3664. "Component_[3717136724811773305]": {
  3665. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3666. "Id": 3717136724811773305,
  3667. "sourceEndpoint": {
  3668. "nodeId": {
  3669. "id": 493568091456679
  3670. },
  3671. "slotId": {
  3672. "m_id": "{4F53960F-8102-4F31-ACEC-572D7CEDB2CD}"
  3673. }
  3674. },
  3675. "targetEndpoint": {
  3676. "nodeId": {
  3677. "id": 493550911587495
  3678. },
  3679. "slotId": {
  3680. "m_id": "{8CD06303-EE59-4B3C-9679-D401211A763C}"
  3681. }
  3682. }
  3683. }
  3684. }
  3685. },
  3686. {
  3687. "Id": {
  3688. "id": 493628220998823
  3689. },
  3690. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Method: In)",
  3691. "Components": {
  3692. "Component_[1174689924346058576]": {
  3693. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3694. "Id": 1174689924346058576,
  3695. "sourceEndpoint": {
  3696. "nodeId": {
  3697. "id": 493550911587495
  3698. },
  3699. "slotId": {
  3700. "m_id": "{D5A292A8-501E-45EC-8BF2-4E36C6341A0C}"
  3701. }
  3702. },
  3703. "targetEndpoint": {
  3704. "nodeId": {
  3705. "id": 493563796489383
  3706. },
  3707. "slotId": {
  3708. "m_id": "{DB2C2CE1-9C96-4119-9CF9-B54B5038B439}"
  3709. }
  3710. }
  3711. }
  3712. }
  3713. },
  3714. {
  3715. "Id": {
  3716. "id": 493632515966119
  3717. },
  3718. "Name": "srcEndpoint=(Event Handler: ExecutionSlot:IntOne), destEndpoint=(Get Variable: In)",
  3719. "Components": {
  3720. "Component_[5545927191515975677]": {
  3721. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3722. "Id": 5545927191515975677,
  3723. "sourceEndpoint": {
  3724. "nodeId": {
  3725. "id": 493576681391271
  3726. },
  3727. "slotId": {
  3728. "m_id": "{819C32CF-1184-4F99-841B-34BCD9CF4FF9}"
  3729. }
  3730. },
  3731. "targetEndpoint": {
  3732. "nodeId": {
  3733. "id": 493615336096935
  3734. },
  3735. "slotId": {
  3736. "m_id": "{69FD7E2E-DB09-4DE3-985E-D6419A4AC387}"
  3737. }
  3738. }
  3739. }
  3740. }
  3741. },
  3742. {
  3743. "Id": {
  3744. "id": 493636810933415
  3745. },
  3746. "Name": "srcEndpoint=(Method: Result: Number), destEndpoint=(Event Handler: Result: Number)",
  3747. "Components": {
  3748. "Component_[12811232566227593228]": {
  3749. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3750. "Id": 12811232566227593228,
  3751. "sourceEndpoint": {
  3752. "nodeId": {
  3753. "id": 493598156227751
  3754. },
  3755. "slotId": {
  3756. "m_id": "{B1008B79-54F3-4E4E-80FE-06810E89C00A}"
  3757. }
  3758. },
  3759. "targetEndpoint": {
  3760. "nodeId": {
  3761. "id": 493576681391271
  3762. },
  3763. "slotId": {
  3764. "m_id": "{DD2CED1F-E268-438B-875D-A6C984FD4072}"
  3765. }
  3766. }
  3767. }
  3768. }
  3769. },
  3770. {
  3771. "Id": {
  3772. "id": 493641105900711
  3773. },
  3774. "Name": "srcEndpoint=(Event Handler: ExecutionSlot:IntTwo), destEndpoint=(Get Variable: In)",
  3775. "Components": {
  3776. "Component_[3032274285820254325]": {
  3777. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3778. "Id": 3032274285820254325,
  3779. "sourceEndpoint": {
  3780. "nodeId": {
  3781. "id": 493576681391271
  3782. },
  3783. "slotId": {
  3784. "m_id": "{A1D037E6-9F78-4A26-B816-D607EADD5C2F}"
  3785. }
  3786. },
  3787. "targetEndpoint": {
  3788. "nodeId": {
  3789. "id": 493580976358567
  3790. },
  3791. "slotId": {
  3792. "m_id": "{63A86B62-C4D4-4B96-B37F-84D6005B5030}"
  3793. }
  3794. }
  3795. }
  3796. }
  3797. },
  3798. {
  3799. "Id": {
  3800. "id": 493645400868007
  3801. },
  3802. "Name": "srcEndpoint=(Method: Result: Number), destEndpoint=(Event Handler: Result: Number)",
  3803. "Components": {
  3804. "Component_[6123611279737897276]": {
  3805. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3806. "Id": 6123611279737897276,
  3807. "sourceEndpoint": {
  3808. "nodeId": {
  3809. "id": 493611041129639
  3810. },
  3811. "slotId": {
  3812. "m_id": "{D529683B-A889-4BD8-8B9A-DED2D22016AF}"
  3813. }
  3814. },
  3815. "targetEndpoint": {
  3816. "nodeId": {
  3817. "id": 493576681391271
  3818. },
  3819. "slotId": {
  3820. "m_id": "{F58A44CF-22EC-4DF3-AE4E-1C40AD56C951}"
  3821. }
  3822. }
  3823. }
  3824. }
  3825. },
  3826. {
  3827. "Id": {
  3828. "id": 493649695835303
  3829. },
  3830. "Name": "srcEndpoint=(Event Handler: ExecutionSlot:IntThree), destEndpoint=(Get Variable: In)",
  3831. "Components": {
  3832. "Component_[6367048527841537678]": {
  3833. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3834. "Id": 6367048527841537678,
  3835. "sourceEndpoint": {
  3836. "nodeId": {
  3837. "id": 493576681391271
  3838. },
  3839. "slotId": {
  3840. "m_id": "{A005C715-8ABD-4533-9582-9989AE72C00D}"
  3841. }
  3842. },
  3843. "targetEndpoint": {
  3844. "nodeId": {
  3845. "id": 493538026685607
  3846. },
  3847. "slotId": {
  3848. "m_id": "{ADD90116-E1AC-407C-8892-B9FC6D3D2C7F}"
  3849. }
  3850. }
  3851. }
  3852. }
  3853. },
  3854. {
  3855. "Id": {
  3856. "id": 493653990802599
  3857. },
  3858. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Reference)",
  3859. "Components": {
  3860. "Component_[16828098643363808930]": {
  3861. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3862. "Id": 16828098643363808930,
  3863. "sourceEndpoint": {
  3864. "nodeId": {
  3865. "id": 493580976358567
  3866. },
  3867. "slotId": {
  3868. "m_id": "{D71DC7EF-F277-40A2-88F7-EBDF9CDBE1A3}"
  3869. }
  3870. },
  3871. "targetEndpoint": {
  3872. "nodeId": {
  3873. "id": 493602451195047
  3874. },
  3875. "slotId": {
  3876. "m_id": "{4F5A0A9B-56FC-4741-967B-26CE03CE9C48}"
  3877. }
  3878. }
  3879. }
  3880. }
  3881. },
  3882. {
  3883. "Id": {
  3884. "id": 493658285769895
  3885. },
  3886. "Name": "srcEndpoint=(EBus Handler: Number), destEndpoint=(Add (+): Number)",
  3887. "Components": {
  3888. "Component_[9029614063042697605]": {
  3889. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3890. "Id": 9029614063042697605,
  3891. "sourceEndpoint": {
  3892. "nodeId": {
  3893. "id": 493576681391271
  3894. },
  3895. "slotId": {
  3896. "m_id": "{6634B4A9-D275-4F51-B0DE-21146FDD02F1}"
  3897. }
  3898. },
  3899. "targetEndpoint": {
  3900. "nodeId": {
  3901. "id": 493619631064231
  3902. },
  3903. "slotId": {
  3904. "m_id": "{873D671E-4AE9-4CCA-875A-1A9579AE134C}"
  3905. }
  3906. }
  3907. }
  3908. }
  3909. },
  3910. {
  3911. "Id": {
  3912. "id": 493662580737191
  3913. },
  3914. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Add (+): In)",
  3915. "Components": {
  3916. "Component_[7824286042400667477]": {
  3917. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3918. "Id": 7824286042400667477,
  3919. "sourceEndpoint": {
  3920. "nodeId": {
  3921. "id": 493589566293159
  3922. },
  3923. "slotId": {
  3924. "m_id": "{7E422F3F-D946-4C84-973B-AD009CB79D8F}"
  3925. }
  3926. },
  3927. "targetEndpoint": {
  3928. "nodeId": {
  3929. "id": 493606746162343
  3930. },
  3931. "slotId": {
  3932. "m_id": "{DF129AB2-DFBC-40CC-9BBA-3D7A65C0754C}"
  3933. }
  3934. }
  3935. }
  3936. }
  3937. },
  3938. {
  3939. "Id": {
  3940. "id": 493666875704487
  3941. },
  3942. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  3943. "Components": {
  3944. "Component_[5795897064339736799]": {
  3945. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3946. "Id": 5795897064339736799,
  3947. "sourceEndpoint": {
  3948. "nodeId": {
  3949. "id": 493615336096935
  3950. },
  3951. "slotId": {
  3952. "m_id": "{40B04BC9-091C-4B68-B680-09E392D13A12}"
  3953. }
  3954. },
  3955. "targetEndpoint": {
  3956. "nodeId": {
  3957. "id": 493555206554791
  3958. },
  3959. "slotId": {
  3960. "m_id": "{FB23EA1F-3EA0-4B58-970E-31585F980A20}"
  3961. }
  3962. }
  3963. }
  3964. }
  3965. },
  3966. {
  3967. "Id": {
  3968. "id": 493671170671783
  3969. },
  3970. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(IntThree: In)",
  3971. "Components": {
  3972. "Component_[16261255171647186826]": {
  3973. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3974. "Id": 16261255171647186826,
  3975. "sourceEndpoint": {
  3976. "nodeId": {
  3977. "id": 493585271325863
  3978. },
  3979. "slotId": {
  3980. "m_id": "{7924CE59-8C7D-4E85-B144-81C8F7FFA63B}"
  3981. }
  3982. },
  3983. "targetEndpoint": {
  3984. "nodeId": {
  3985. "id": 493611041129639
  3986. },
  3987. "slotId": {
  3988. "m_id": "{DC35400D-752B-4AD2-AF07-56BE0DEB1102}"
  3989. }
  3990. }
  3991. }
  3992. }
  3993. },
  3994. {
  3995. "Id": {
  3996. "id": 493675465639079
  3997. },
  3998. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Add (+): Number)",
  3999. "Components": {
  4000. "Component_[15367351824329536948]": {
  4001. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4002. "Id": 15367351824329536948,
  4003. "sourceEndpoint": {
  4004. "nodeId": {
  4005. "id": 493542321652903
  4006. },
  4007. "slotId": {
  4008. "m_id": "{BCB94706-C454-45C3-9FCB-91BCE393AEFE}"
  4009. }
  4010. },
  4011. "targetEndpoint": {
  4012. "nodeId": {
  4013. "id": 493593861260455
  4014. },
  4015. "slotId": {
  4016. "m_id": "{691712C4-6791-4B77-8B96-16B5BF9F1859}"
  4017. }
  4018. }
  4019. }
  4020. }
  4021. },
  4022. {
  4023. "Id": {
  4024. "id": 493679760606375
  4025. },
  4026. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Reference)",
  4027. "Components": {
  4028. "Component_[3212579110955180764]": {
  4029. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4030. "Id": 3212579110955180764,
  4031. "sourceEndpoint": {
  4032. "nodeId": {
  4033. "id": 493615336096935
  4034. },
  4035. "slotId": {
  4036. "m_id": "{4FAB624E-5CFF-4677-94C5-E107209CC0DE}"
  4037. }
  4038. },
  4039. "targetEndpoint": {
  4040. "nodeId": {
  4041. "id": 493555206554791
  4042. },
  4043. "slotId": {
  4044. "m_id": "{6A556604-ECD0-442D-8A1F-E1B08CBCE791}"
  4045. }
  4046. }
  4047. }
  4048. }
  4049. },
  4050. {
  4051. "Id": {
  4052. "id": 493684055573671
  4053. },
  4054. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Add (+): Number)",
  4055. "Components": {
  4056. "Component_[9504781496622211298]": {
  4057. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4058. "Id": 9504781496622211298,
  4059. "sourceEndpoint": {
  4060. "nodeId": {
  4061. "id": 493606746162343
  4062. },
  4063. "slotId": {
  4064. "m_id": "{D4255882-6D64-4CBC-A0DE-ECA1B57F54A4}"
  4065. }
  4066. },
  4067. "targetEndpoint": {
  4068. "nodeId": {
  4069. "id": 493546616620199
  4070. },
  4071. "slotId": {
  4072. "m_id": "{231D9639-0D92-405A-A3ED-CF0B96514A11}"
  4073. }
  4074. }
  4075. }
  4076. }
  4077. },
  4078. {
  4079. "Id": {
  4080. "id": 493688350540967
  4081. },
  4082. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(IntThree: Number: 0)",
  4083. "Components": {
  4084. "Component_[3692224858346690574]": {
  4085. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4086. "Id": 3692224858346690574,
  4087. "sourceEndpoint": {
  4088. "nodeId": {
  4089. "id": 493585271325863
  4090. },
  4091. "slotId": {
  4092. "m_id": "{F510AA9F-D2EF-4AC7-BDBD-E3D7E3EB3BFB}"
  4093. }
  4094. },
  4095. "targetEndpoint": {
  4096. "nodeId": {
  4097. "id": 493611041129639
  4098. },
  4099. "slotId": {
  4100. "m_id": "{D6E042E4-D5AF-400F-BDF2-BB3A9CA2CE34}"
  4101. }
  4102. }
  4103. }
  4104. }
  4105. },
  4106. {
  4107. "Id": {
  4108. "id": 493692645508263
  4109. },
  4110. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  4111. "Components": {
  4112. "Component_[12420833203630472798]": {
  4113. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4114. "Id": 12420833203630472798,
  4115. "sourceEndpoint": {
  4116. "nodeId": {
  4117. "id": 493572386423975
  4118. },
  4119. "slotId": {
  4120. "m_id": "{44534D2E-FCA1-47D4-A46C-9520D494CF42}"
  4121. }
  4122. },
  4123. "targetEndpoint": {
  4124. "nodeId": {
  4125. "id": 493559501522087
  4126. },
  4127. "slotId": {
  4128. "m_id": "{3BF95D76-1BDA-4544-B9F0-FE8AB804B837}"
  4129. }
  4130. }
  4131. }
  4132. }
  4133. },
  4134. {
  4135. "Id": {
  4136. "id": 493696940475559
  4137. },
  4138. "Name": "srcEndpoint=(IntOne: Result: Number), destEndpoint=(Expect Equal: Candidate)",
  4139. "Components": {
  4140. "Component_[13637160625050928390]": {
  4141. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4142. "Id": 13637160625050928390,
  4143. "sourceEndpoint": {
  4144. "nodeId": {
  4145. "id": 493563796489383
  4146. },
  4147. "slotId": {
  4148. "m_id": "{F29DB30D-BC93-4B95-9B4F-95A0ACE7651E}"
  4149. }
  4150. },
  4151. "targetEndpoint": {
  4152. "nodeId": {
  4153. "id": 493572386423975
  4154. },
  4155. "slotId": {
  4156. "m_id": "{DD7D577D-2A56-4C7E-9820-410FA4B48B00}"
  4157. }
  4158. }
  4159. }
  4160. }
  4161. },
  4162. {
  4163. "Id": {
  4164. "id": 493701235442855
  4165. },
  4166. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Add (+): In)",
  4167. "Components": {
  4168. "Component_[14595720943679995281]": {
  4169. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4170. "Id": 14595720943679995281,
  4171. "sourceEndpoint": {
  4172. "nodeId": {
  4173. "id": 493602451195047
  4174. },
  4175. "slotId": {
  4176. "m_id": "{B4965BCC-2435-4FDF-B27F-D5BFA1850956}"
  4177. }
  4178. },
  4179. "targetEndpoint": {
  4180. "nodeId": {
  4181. "id": 493619631064231
  4182. },
  4183. "slotId": {
  4184. "m_id": "{CD28473F-803E-4F51-891C-E4E08A080792}"
  4185. }
  4186. }
  4187. }
  4188. }
  4189. },
  4190. {
  4191. "Id": {
  4192. "id": 493705530410151
  4193. },
  4194. "Name": "srcEndpoint=(EBus Handler: Number), destEndpoint=(Add (+): Number)",
  4195. "Components": {
  4196. "Component_[737276860124772678]": {
  4197. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4198. "Id": 737276860124772678,
  4199. "sourceEndpoint": {
  4200. "nodeId": {
  4201. "id": 493576681391271
  4202. },
  4203. "slotId": {
  4204. "m_id": "{4A603AD6-D73C-430D-97FF-11907037780F}"
  4205. }
  4206. },
  4207. "targetEndpoint": {
  4208. "nodeId": {
  4209. "id": 493606746162343
  4210. },
  4211. "slotId": {
  4212. "m_id": "{04FD29A7-056A-458A-81DA-2F05AB25B5DF}"
  4213. }
  4214. }
  4215. }
  4216. }
  4217. },
  4218. {
  4219. "Id": {
  4220. "id": 493709825377447
  4221. },
  4222. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(IntTwo: In)",
  4223. "Components": {
  4224. "Component_[12259408098592907625]": {
  4225. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4226. "Id": 12259408098592907625,
  4227. "sourceEndpoint": {
  4228. "nodeId": {
  4229. "id": 493593861260455
  4230. },
  4231. "slotId": {
  4232. "m_id": "{A0A90BD2-FA4C-4452-9073-2C59399F6CF6}"
  4233. }
  4234. },
  4235. "targetEndpoint": {
  4236. "nodeId": {
  4237. "id": 493598156227751
  4238. },
  4239. "slotId": {
  4240. "m_id": "{0666C01F-0E9F-4972-8011-828FFA82E48D}"
  4241. }
  4242. }
  4243. }
  4244. }
  4245. },
  4246. {
  4247. "Id": {
  4248. "id": 493714120344743
  4249. },
  4250. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Add (+): In)",
  4251. "Components": {
  4252. "Component_[11787664834298209904]": {
  4253. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4254. "Id": 11787664834298209904,
  4255. "sourceEndpoint": {
  4256. "nodeId": {
  4257. "id": 493619631064231
  4258. },
  4259. "slotId": {
  4260. "m_id": "{5DA92A67-BD65-4A69-A90F-1AB4BABC90AE}"
  4261. }
  4262. },
  4263. "targetEndpoint": {
  4264. "nodeId": {
  4265. "id": 493585271325863
  4266. },
  4267. "slotId": {
  4268. "m_id": "{2DB1F90E-6941-4CE9-8BDF-1078937D69D1}"
  4269. }
  4270. }
  4271. }
  4272. }
  4273. },
  4274. {
  4275. "Id": {
  4276. "id": 493718415312039
  4277. },
  4278. "Name": "srcEndpoint=(EBus Handler: Number), destEndpoint=(Expect Equal: Candidate)",
  4279. "Components": {
  4280. "Component_[16730876778573490902]": {
  4281. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4282. "Id": 16730876778573490902,
  4283. "sourceEndpoint": {
  4284. "nodeId": {
  4285. "id": 493576681391271
  4286. },
  4287. "slotId": {
  4288. "m_id": "{20CFD31A-288E-40A3-8D1A-98865A9C5688}"
  4289. }
  4290. },
  4291. "targetEndpoint": {
  4292. "nodeId": {
  4293. "id": 493555206554791
  4294. },
  4295. "slotId": {
  4296. "m_id": "{7E2587CE-0627-441E-88A6-AB980716CAD4}"
  4297. }
  4298. }
  4299. }
  4300. }
  4301. },
  4302. {
  4303. "Id": {
  4304. "id": 493722710279335
  4305. },
  4306. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Reference)",
  4307. "Components": {
  4308. "Component_[13004249010765988385]": {
  4309. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4310. "Id": 13004249010765988385,
  4311. "sourceEndpoint": {
  4312. "nodeId": {
  4313. "id": 493538026685607
  4314. },
  4315. "slotId": {
  4316. "m_id": "{389494EB-40E8-4D32-9E55-0E823D55C221}"
  4317. }
  4318. },
  4319. "targetEndpoint": {
  4320. "nodeId": {
  4321. "id": 493589566293159
  4322. },
  4323. "slotId": {
  4324. "m_id": "{68E731D8-1FDF-47AB-86E7-4BCB46B3690F}"
  4325. }
  4326. }
  4327. }
  4328. }
  4329. },
  4330. {
  4331. "Id": {
  4332. "id": 493727005246631
  4333. },
  4334. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Add (+): Number)",
  4335. "Components": {
  4336. "Component_[15553752743194163843]": {
  4337. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4338. "Id": 15553752743194163843,
  4339. "sourceEndpoint": {
  4340. "nodeId": {
  4341. "id": 493619631064231
  4342. },
  4343. "slotId": {
  4344. "m_id": "{F0F9511C-E628-4F7F-BCD3-FFFF54073E99}"
  4345. }
  4346. },
  4347. "targetEndpoint": {
  4348. "nodeId": {
  4349. "id": 493585271325863
  4350. },
  4351. "slotId": {
  4352. "m_id": "{CD75DDAA-234D-402C-8933-51FD6D04E477}"
  4353. }
  4354. }
  4355. }
  4356. }
  4357. },
  4358. {
  4359. "Id": {
  4360. "id": 493731300213927
  4361. },
  4362. "Name": "srcEndpoint=(IntOne: Out), destEndpoint=(Expect Equal: In)",
  4363. "Components": {
  4364. "Component_[8163871727280855508]": {
  4365. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4366. "Id": 8163871727280855508,
  4367. "sourceEndpoint": {
  4368. "nodeId": {
  4369. "id": 493563796489383
  4370. },
  4371. "slotId": {
  4372. "m_id": "{AA410237-3F46-4241-9EC5-DDD57BE11F4D}"
  4373. }
  4374. },
  4375. "targetEndpoint": {
  4376. "nodeId": {
  4377. "id": 493572386423975
  4378. },
  4379. "slotId": {
  4380. "m_id": "{CF36010C-7C19-4AB4-A460-6D8D3E490F39}"
  4381. }
  4382. }
  4383. }
  4384. }
  4385. },
  4386. {
  4387. "Id": {
  4388. "id": 493735595181223
  4389. },
  4390. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Reference)",
  4391. "Components": {
  4392. "Component_[18241087468388110329]": {
  4393. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4394. "Id": 18241087468388110329,
  4395. "sourceEndpoint": {
  4396. "nodeId": {
  4397. "id": 493550911587495
  4398. },
  4399. "slotId": {
  4400. "m_id": "{D6AAEE69-94D2-43C5-AF60-7908165AED83}"
  4401. }
  4402. },
  4403. "targetEndpoint": {
  4404. "nodeId": {
  4405. "id": 493572386423975
  4406. },
  4407. "slotId": {
  4408. "m_id": "{153827F2-AD81-433D-9187-F7AB8782D7D8}"
  4409. }
  4410. }
  4411. }
  4412. }
  4413. },
  4414. {
  4415. "Id": {
  4416. "id": 493739890148519
  4417. },
  4418. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  4419. "Components": {
  4420. "Component_[11755648272086375929]": {
  4421. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4422. "Id": 11755648272086375929,
  4423. "sourceEndpoint": {
  4424. "nodeId": {
  4425. "id": 493580976358567
  4426. },
  4427. "slotId": {
  4428. "m_id": "{263C7616-32A2-45D0-B45C-BA4683511718}"
  4429. }
  4430. },
  4431. "targetEndpoint": {
  4432. "nodeId": {
  4433. "id": 493602451195047
  4434. },
  4435. "slotId": {
  4436. "m_id": "{B280C074-507F-4DB4-8618-BE80AE0A709E}"
  4437. }
  4438. }
  4439. }
  4440. }
  4441. },
  4442. {
  4443. "Id": {
  4444. "id": 493744185115815
  4445. },
  4446. "Name": "srcEndpoint=(EBus Handler: Number), destEndpoint=(Expect Equal: Candidate)",
  4447. "Components": {
  4448. "Component_[15312475528937873442]": {
  4449. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4450. "Id": 15312475528937873442,
  4451. "sourceEndpoint": {
  4452. "nodeId": {
  4453. "id": 493576681391271
  4454. },
  4455. "slotId": {
  4456. "m_id": "{4A603AD6-D73C-430D-97FF-11907037780F}"
  4457. }
  4458. },
  4459. "targetEndpoint": {
  4460. "nodeId": {
  4461. "id": 493589566293159
  4462. },
  4463. "slotId": {
  4464. "m_id": "{8EE90DDB-2415-4507-AF8A-FF708E2CBD13}"
  4465. }
  4466. }
  4467. }
  4468. }
  4469. },
  4470. {
  4471. "Id": {
  4472. "id": 493748480083111
  4473. },
  4474. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Add (+): In)",
  4475. "Components": {
  4476. "Component_[468227474865014708]": {
  4477. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4478. "Id": 468227474865014708,
  4479. "sourceEndpoint": {
  4480. "nodeId": {
  4481. "id": 493542321652903
  4482. },
  4483. "slotId": {
  4484. "m_id": "{3694E11F-7814-43F3-9C9C-4E3B64743D14}"
  4485. }
  4486. },
  4487. "targetEndpoint": {
  4488. "nodeId": {
  4489. "id": 493593861260455
  4490. },
  4491. "slotId": {
  4492. "m_id": "{73C17134-2D3A-4D79-BC46-BA3F55D03CAC}"
  4493. }
  4494. }
  4495. }
  4496. }
  4497. },
  4498. {
  4499. "Id": {
  4500. "id": 493752775050407
  4501. },
  4502. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(IntTwo: Number: 0)",
  4503. "Components": {
  4504. "Component_[12138633877475344914]": {
  4505. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4506. "Id": 12138633877475344914,
  4507. "sourceEndpoint": {
  4508. "nodeId": {
  4509. "id": 493593861260455
  4510. },
  4511. "slotId": {
  4512. "m_id": "{E17BCFA1-F98E-4346-AE71-6A973E85CAC8}"
  4513. }
  4514. },
  4515. "targetEndpoint": {
  4516. "nodeId": {
  4517. "id": 493598156227751
  4518. },
  4519. "slotId": {
  4520. "m_id": "{C9DF692C-CCE3-4F75-BD39-C619301345E9}"
  4521. }
  4522. }
  4523. }
  4524. }
  4525. },
  4526. {
  4527. "Id": {
  4528. "id": 493757070017703
  4529. },
  4530. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Add (+): In)",
  4531. "Components": {
  4532. "Component_[13118079827436576275]": {
  4533. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4534. "Id": 13118079827436576275,
  4535. "sourceEndpoint": {
  4536. "nodeId": {
  4537. "id": 493555206554791
  4538. },
  4539. "slotId": {
  4540. "m_id": "{5F644BF0-964C-4BD2-BB04-085BAC519DA1}"
  4541. }
  4542. },
  4543. "targetEndpoint": {
  4544. "nodeId": {
  4545. "id": 493542321652903
  4546. },
  4547. "slotId": {
  4548. "m_id": "{87A87316-0AE7-4479-8BD5-A575342EF39F}"
  4549. }
  4550. }
  4551. }
  4552. }
  4553. },
  4554. {
  4555. "Id": {
  4556. "id": 493761364984999
  4557. },
  4558. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Add (+): In)",
  4559. "Components": {
  4560. "Component_[15485243815397626570]": {
  4561. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4562. "Id": 15485243815397626570,
  4563. "sourceEndpoint": {
  4564. "nodeId": {
  4565. "id": 493606746162343
  4566. },
  4567. "slotId": {
  4568. "m_id": "{49ABEBAF-F9C3-4674-8A82-2D7D4786B770}"
  4569. }
  4570. },
  4571. "targetEndpoint": {
  4572. "nodeId": {
  4573. "id": 493546616620199
  4574. },
  4575. "slotId": {
  4576. "m_id": "{2FDCF7D1-1A9F-427F-9FF5-0D9F1D0D8C41}"
  4577. }
  4578. }
  4579. }
  4580. }
  4581. },
  4582. {
  4583. "Id": {
  4584. "id": 493765659952295
  4585. },
  4586. "Name": "srcEndpoint=(EBus Handler: Number), destEndpoint=(Expect Equal: Candidate)",
  4587. "Components": {
  4588. "Component_[17167851396145591780]": {
  4589. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4590. "Id": 17167851396145591780,
  4591. "sourceEndpoint": {
  4592. "nodeId": {
  4593. "id": 493576681391271
  4594. },
  4595. "slotId": {
  4596. "m_id": "{6634B4A9-D275-4F51-B0DE-21146FDD02F1}"
  4597. }
  4598. },
  4599. "targetEndpoint": {
  4600. "nodeId": {
  4601. "id": 493602451195047
  4602. },
  4603. "slotId": {
  4604. "m_id": "{C02D7E51-FECE-4D87-A941-BD1E37F63FA1}"
  4605. }
  4606. }
  4607. }
  4608. }
  4609. },
  4610. {
  4611. "Id": {
  4612. "id": 493769954919591
  4613. },
  4614. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(EBus Handler: Result: Number)",
  4615. "Components": {
  4616. "Component_[15948105061187095600]": {
  4617. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4618. "Id": 15948105061187095600,
  4619. "sourceEndpoint": {
  4620. "nodeId": {
  4621. "id": 493546616620199
  4622. },
  4623. "slotId": {
  4624. "m_id": "{E9921DCE-FAE6-43DC-84BD-CBD3BF6E6E9F}"
  4625. }
  4626. },
  4627. "targetEndpoint": {
  4628. "nodeId": {
  4629. "id": 493576681391271
  4630. },
  4631. "slotId": {
  4632. "m_id": "{564CD31B-5CA3-4A2C-A606-E824F45D98D9}"
  4633. }
  4634. }
  4635. }
  4636. }
  4637. },
  4638. {
  4639. "Id": {
  4640. "id": 493774249886887
  4641. },
  4642. "Name": "srcEndpoint=(EBus Handler: Number), destEndpoint=(Add (+): Number)",
  4643. "Components": {
  4644. "Component_[1504621585605442374]": {
  4645. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4646. "Id": 1504621585605442374,
  4647. "sourceEndpoint": {
  4648. "nodeId": {
  4649. "id": 493576681391271
  4650. },
  4651. "slotId": {
  4652. "m_id": "{20CFD31A-288E-40A3-8D1A-98865A9C5688}"
  4653. }
  4654. },
  4655. "targetEndpoint": {
  4656. "nodeId": {
  4657. "id": 493542321652903
  4658. },
  4659. "slotId": {
  4660. "m_id": "{ED663794-ABF8-4100-8BA5-BD211737A2A4}"
  4661. }
  4662. }
  4663. }
  4664. }
  4665. },
  4666. {
  4667. "Id": {
  4668. "id": 493778544854183
  4669. },
  4670. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  4671. "Components": {
  4672. "Component_[440345814912101582]": {
  4673. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4674. "Id": 440345814912101582,
  4675. "sourceEndpoint": {
  4676. "nodeId": {
  4677. "id": 493538026685607
  4678. },
  4679. "slotId": {
  4680. "m_id": "{CB0DFA44-E346-49DE-85E8-B0D5F7DB13AC}"
  4681. }
  4682. },
  4683. "targetEndpoint": {
  4684. "nodeId": {
  4685. "id": 493589566293159
  4686. },
  4687. "slotId": {
  4688. "m_id": "{2E62E7CD-B08E-40E2-B56E-A976A6970146}"
  4689. }
  4690. }
  4691. }
  4692. }
  4693. }
  4694. ]
  4695. },
  4696. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  4697. "versionData": {
  4698. "_grammarVersion": 1,
  4699. "_runtimeVersion": 1,
  4700. "_fileVersion": 1
  4701. },
  4702. "m_variableCounter": 4,
  4703. "GraphCanvasData": [
  4704. {
  4705. "Key": {
  4706. "id": 493533731718311
  4707. },
  4708. "Value": {
  4709. "ComponentData": {
  4710. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  4711. "$type": "SceneComponentSaveData",
  4712. "ViewParams": {
  4713. "Scale": 0.85,
  4714. "AnchorX": -594.11767578125,
  4715. "AnchorY": -347.058837890625
  4716. }
  4717. }
  4718. }
  4719. }
  4720. },
  4721. {
  4722. "Key": {
  4723. "id": 493538026685607
  4724. },
  4725. "Value": {
  4726. "ComponentData": {
  4727. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4728. "$type": "NodeSaveData"
  4729. },
  4730. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4731. "$type": "GeneralNodeTitleComponentSaveData",
  4732. "PaletteOverride": "GetVariableNodeTitlePalette"
  4733. },
  4734. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4735. "$type": "GeometrySaveData",
  4736. "Position": [
  4737. 20.0,
  4738. 160.0
  4739. ]
  4740. },
  4741. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4742. "$type": "StylingComponentSaveData",
  4743. "SubStyle": ".getVariable"
  4744. },
  4745. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4746. "$type": "PersistentIdComponentSaveData",
  4747. "PersistentId": "{CF825F46-422E-4B2F-8324-499E833EF000}"
  4748. }
  4749. }
  4750. }
  4751. },
  4752. {
  4753. "Key": {
  4754. "id": 493542321652903
  4755. },
  4756. "Value": {
  4757. "ComponentData": {
  4758. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4759. "$type": "NodeSaveData"
  4760. },
  4761. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4762. "$type": "GeneralNodeTitleComponentSaveData",
  4763. "PaletteOverride": "MathNodeTitlePalette"
  4764. },
  4765. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4766. "$type": "GeometrySaveData",
  4767. "Position": [
  4768. 420.0,
  4769. 580.0
  4770. ]
  4771. },
  4772. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4773. "$type": "StylingComponentSaveData",
  4774. "SubStyle": ".math"
  4775. },
  4776. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4777. "$type": "PersistentIdComponentSaveData",
  4778. "PersistentId": "{8B7E4EF4-B077-40AE-BBD6-3FBE7B7DA2E3}"
  4779. }
  4780. }
  4781. }
  4782. },
  4783. {
  4784. "Key": {
  4785. "id": 493546616620199
  4786. },
  4787. "Value": {
  4788. "ComponentData": {
  4789. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4790. "$type": "NodeSaveData"
  4791. },
  4792. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4793. "$type": "GeneralNodeTitleComponentSaveData",
  4794. "PaletteOverride": "MathNodeTitlePalette"
  4795. },
  4796. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4797. "$type": "GeometrySaveData",
  4798. "Position": [
  4799. 700.0,
  4800. 140.0
  4801. ]
  4802. },
  4803. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4804. "$type": "StylingComponentSaveData",
  4805. "SubStyle": ".math"
  4806. },
  4807. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4808. "$type": "PersistentIdComponentSaveData",
  4809. "PersistentId": "{C910C49B-E31E-4B24-A102-D410B8849C78}"
  4810. }
  4811. }
  4812. }
  4813. },
  4814. {
  4815. "Key": {
  4816. "id": 493550911587495
  4817. },
  4818. "Value": {
  4819. "ComponentData": {
  4820. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4821. "$type": "NodeSaveData"
  4822. },
  4823. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4824. "$type": "GeneralNodeTitleComponentSaveData",
  4825. "PaletteOverride": "GetVariableNodeTitlePalette"
  4826. },
  4827. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4828. "$type": "GeometrySaveData",
  4829. "Position": [
  4830. -40.0,
  4831. -160.0
  4832. ]
  4833. },
  4834. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4835. "$type": "StylingComponentSaveData",
  4836. "SubStyle": ".getVariable"
  4837. },
  4838. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4839. "$type": "PersistentIdComponentSaveData",
  4840. "PersistentId": "{64CD1BA3-E12F-4094-8E9A-6EFB2E8D1D06}"
  4841. }
  4842. }
  4843. }
  4844. },
  4845. {
  4846. "Key": {
  4847. "id": 493555206554791
  4848. },
  4849. "Value": {
  4850. "ComponentData": {
  4851. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4852. "$type": "NodeSaveData"
  4853. },
  4854. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4855. "$type": "GeneralNodeTitleComponentSaveData",
  4856. "PaletteOverride": "TestingNodeTitlePalette"
  4857. },
  4858. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4859. "$type": "GeometrySaveData",
  4860. "Position": [
  4861. 160.0,
  4862. 560.0
  4863. ]
  4864. },
  4865. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4866. "$type": "StylingComponentSaveData"
  4867. },
  4868. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4869. "$type": "PersistentIdComponentSaveData",
  4870. "PersistentId": "{CE5D5CC1-DE00-47A1-82F2-1B3AD62A835C}"
  4871. }
  4872. }
  4873. }
  4874. },
  4875. {
  4876. "Key": {
  4877. "id": 493559501522087
  4878. },
  4879. "Value": {
  4880. "ComponentData": {
  4881. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4882. "$type": "NodeSaveData"
  4883. },
  4884. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4885. "$type": "GeneralNodeTitleComponentSaveData",
  4886. "PaletteOverride": "TestingNodeTitlePalette"
  4887. },
  4888. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4889. "$type": "GeometrySaveData",
  4890. "Position": [
  4891. 640.0,
  4892. -160.0
  4893. ]
  4894. },
  4895. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4896. "$type": "StylingComponentSaveData"
  4897. },
  4898. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4899. "$type": "PersistentIdComponentSaveData",
  4900. "PersistentId": "{5B5A65B8-5D62-421C-9096-C0A8F79EA0B7}"
  4901. }
  4902. }
  4903. }
  4904. },
  4905. {
  4906. "Key": {
  4907. "id": 493563796489383
  4908. },
  4909. "Value": {
  4910. "ComponentData": {
  4911. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4912. "$type": "NodeSaveData"
  4913. },
  4914. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4915. "$type": "GeneralNodeTitleComponentSaveData",
  4916. "PaletteOverride": "MethodNodeTitlePalette"
  4917. },
  4918. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4919. "$type": "GeometrySaveData",
  4920. "Position": [
  4921. 80.0,
  4922. -160.0
  4923. ]
  4924. },
  4925. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4926. "$type": "StylingComponentSaveData",
  4927. "SubStyle": ".method"
  4928. },
  4929. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4930. "$type": "PersistentIdComponentSaveData",
  4931. "PersistentId": "{68C4B6DB-F633-4FEA-93CF-FF65311633AA}"
  4932. }
  4933. }
  4934. }
  4935. },
  4936. {
  4937. "Key": {
  4938. "id": 493568091456679
  4939. },
  4940. "Value": {
  4941. "ComponentData": {
  4942. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4943. "$type": "NodeSaveData"
  4944. },
  4945. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4946. "$type": "GeneralNodeTitleComponentSaveData",
  4947. "PaletteOverride": "DefaultNodeTitlePalette"
  4948. },
  4949. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4950. "$type": "GeometrySaveData",
  4951. "Position": [
  4952. -180.0,
  4953. -160.0
  4954. ]
  4955. },
  4956. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4957. "$type": "StylingComponentSaveData"
  4958. },
  4959. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4960. "$type": "PersistentIdComponentSaveData",
  4961. "PersistentId": "{70B45FFC-EB6A-4119-A09B-ED7B7AA747D9}"
  4962. }
  4963. }
  4964. }
  4965. },
  4966. {
  4967. "Key": {
  4968. "id": 493572386423975
  4969. },
  4970. "Value": {
  4971. "ComponentData": {
  4972. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4973. "$type": "NodeSaveData"
  4974. },
  4975. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4976. "$type": "GeneralNodeTitleComponentSaveData",
  4977. "PaletteOverride": "TestingNodeTitlePalette"
  4978. },
  4979. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4980. "$type": "GeometrySaveData",
  4981. "Position": [
  4982. 400.0,
  4983. -160.0
  4984. ]
  4985. },
  4986. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4987. "$type": "StylingComponentSaveData"
  4988. },
  4989. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4990. "$type": "PersistentIdComponentSaveData",
  4991. "PersistentId": "{200F2B28-0B91-4294-9D35-01740401115B}"
  4992. }
  4993. }
  4994. }
  4995. },
  4996. {
  4997. "Key": {
  4998. "id": 493576681391271
  4999. },
  5000. "Value": {
  5001. "ComponentData": {
  5002. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5003. "$type": "NodeSaveData"
  5004. },
  5005. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5006. "$type": "GeometrySaveData",
  5007. "Position": [
  5008. -340.0,
  5009. 220.0
  5010. ]
  5011. },
  5012. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  5013. "$type": "EBusHandlerNodeDescriptorSaveData",
  5014. "EventIds": [
  5015. {
  5016. "Value": 3645595189
  5017. },
  5018. {
  5019. "Value": 3001897634
  5020. },
  5021. {
  5022. "Value": 1633366910
  5023. }
  5024. ]
  5025. },
  5026. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5027. "$type": "StylingComponentSaveData"
  5028. },
  5029. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5030. "$type": "PersistentIdComponentSaveData",
  5031. "PersistentId": "{E9395969-4685-467B-A703-5AFB834456DF}"
  5032. }
  5033. }
  5034. }
  5035. },
  5036. {
  5037. "Key": {
  5038. "id": 493580976358567
  5039. },
  5040. "Value": {
  5041. "ComponentData": {
  5042. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5043. "$type": "NodeSaveData"
  5044. },
  5045. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5046. "$type": "GeneralNodeTitleComponentSaveData",
  5047. "PaletteOverride": "GetVariableNodeTitlePalette"
  5048. },
  5049. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5050. "$type": "GeometrySaveData",
  5051. "Position": [
  5052. 20.0,
  5053. 380.0
  5054. ]
  5055. },
  5056. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5057. "$type": "StylingComponentSaveData",
  5058. "SubStyle": ".getVariable"
  5059. },
  5060. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5061. "$type": "PersistentIdComponentSaveData",
  5062. "PersistentId": "{E65C88A5-DF8F-4C2B-8CC2-EF5ABDCE1D3D}"
  5063. }
  5064. }
  5065. }
  5066. },
  5067. {
  5068. "Key": {
  5069. "id": 493585271325863
  5070. },
  5071. "Value": {
  5072. "ComponentData": {
  5073. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5074. "$type": "NodeSaveData"
  5075. },
  5076. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5077. "$type": "GeneralNodeTitleComponentSaveData",
  5078. "PaletteOverride": "MathNodeTitlePalette"
  5079. },
  5080. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5081. "$type": "GeometrySaveData",
  5082. "Position": [
  5083. 700.0,
  5084. 360.0
  5085. ]
  5086. },
  5087. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5088. "$type": "StylingComponentSaveData",
  5089. "SubStyle": ".math"
  5090. },
  5091. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5092. "$type": "PersistentIdComponentSaveData",
  5093. "PersistentId": "{3A34DFDF-ED9F-40A0-8778-F68A55364DD7}"
  5094. }
  5095. }
  5096. }
  5097. },
  5098. {
  5099. "Key": {
  5100. "id": 493589566293159
  5101. },
  5102. "Value": {
  5103. "ComponentData": {
  5104. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5105. "$type": "NodeSaveData"
  5106. },
  5107. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5108. "$type": "GeneralNodeTitleComponentSaveData",
  5109. "PaletteOverride": "TestingNodeTitlePalette"
  5110. },
  5111. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5112. "$type": "GeometrySaveData",
  5113. "Position": [
  5114. 160.0,
  5115. 120.0
  5116. ]
  5117. },
  5118. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5119. "$type": "StylingComponentSaveData"
  5120. },
  5121. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5122. "$type": "PersistentIdComponentSaveData",
  5123. "PersistentId": "{6D89C2E9-0AA7-47D3-AB64-315DB073E3E0}"
  5124. }
  5125. }
  5126. }
  5127. },
  5128. {
  5129. "Key": {
  5130. "id": 493593861260455
  5131. },
  5132. "Value": {
  5133. "ComponentData": {
  5134. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5135. "$type": "NodeSaveData"
  5136. },
  5137. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5138. "$type": "GeneralNodeTitleComponentSaveData",
  5139. "PaletteOverride": "MathNodeTitlePalette"
  5140. },
  5141. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5142. "$type": "GeometrySaveData",
  5143. "Position": [
  5144. 700.0,
  5145. 580.0
  5146. ]
  5147. },
  5148. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5149. "$type": "StylingComponentSaveData",
  5150. "SubStyle": ".math"
  5151. },
  5152. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5153. "$type": "PersistentIdComponentSaveData",
  5154. "PersistentId": "{0273BBBA-50C0-48D7-9C39-C2B6ECA6EC66}"
  5155. }
  5156. }
  5157. }
  5158. },
  5159. {
  5160. "Key": {
  5161. "id": 493598156227751
  5162. },
  5163. "Value": {
  5164. "ComponentData": {
  5165. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5166. "$type": "NodeSaveData"
  5167. },
  5168. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5169. "$type": "GeneralNodeTitleComponentSaveData",
  5170. "PaletteOverride": "MethodNodeTitlePalette"
  5171. },
  5172. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5173. "$type": "GeometrySaveData",
  5174. "Position": [
  5175. 980.0,
  5176. 600.0
  5177. ]
  5178. },
  5179. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5180. "$type": "StylingComponentSaveData",
  5181. "SubStyle": ".method"
  5182. },
  5183. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5184. "$type": "PersistentIdComponentSaveData",
  5185. "PersistentId": "{BC5FAB26-AEC6-497A-8D51-81C78818E1A9}"
  5186. }
  5187. }
  5188. }
  5189. },
  5190. {
  5191. "Key": {
  5192. "id": 493602451195047
  5193. },
  5194. "Value": {
  5195. "ComponentData": {
  5196. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5197. "$type": "NodeSaveData"
  5198. },
  5199. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5200. "$type": "GeneralNodeTitleComponentSaveData",
  5201. "PaletteOverride": "TestingNodeTitlePalette"
  5202. },
  5203. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5204. "$type": "GeometrySaveData",
  5205. "Position": [
  5206. 160.0,
  5207. 340.0
  5208. ]
  5209. },
  5210. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5211. "$type": "StylingComponentSaveData"
  5212. },
  5213. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5214. "$type": "PersistentIdComponentSaveData",
  5215. "PersistentId": "{49D5EE10-75B5-4E59-B85B-7E6FEADC1FEB}"
  5216. }
  5217. }
  5218. }
  5219. },
  5220. {
  5221. "Key": {
  5222. "id": 493606746162343
  5223. },
  5224. "Value": {
  5225. "ComponentData": {
  5226. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5227. "$type": "NodeSaveData"
  5228. },
  5229. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5230. "$type": "GeneralNodeTitleComponentSaveData",
  5231. "PaletteOverride": "MathNodeTitlePalette"
  5232. },
  5233. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5234. "$type": "GeometrySaveData",
  5235. "Position": [
  5236. 420.0,
  5237. 140.0
  5238. ]
  5239. },
  5240. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5241. "$type": "StylingComponentSaveData",
  5242. "SubStyle": ".math"
  5243. },
  5244. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5245. "$type": "PersistentIdComponentSaveData",
  5246. "PersistentId": "{DA902F4C-1B24-4BE3-A4CD-0A4217714696}"
  5247. }
  5248. }
  5249. }
  5250. },
  5251. {
  5252. "Key": {
  5253. "id": 493611041129639
  5254. },
  5255. "Value": {
  5256. "ComponentData": {
  5257. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5258. "$type": "NodeSaveData"
  5259. },
  5260. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5261. "$type": "GeneralNodeTitleComponentSaveData",
  5262. "PaletteOverride": "MethodNodeTitlePalette"
  5263. },
  5264. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5265. "$type": "GeometrySaveData",
  5266. "Position": [
  5267. 980.0,
  5268. 380.0
  5269. ]
  5270. },
  5271. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5272. "$type": "StylingComponentSaveData",
  5273. "SubStyle": ".method"
  5274. },
  5275. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5276. "$type": "PersistentIdComponentSaveData",
  5277. "PersistentId": "{7F6A2FCC-4EA6-4E41-B7F6-803E155D9321}"
  5278. }
  5279. }
  5280. }
  5281. },
  5282. {
  5283. "Key": {
  5284. "id": 493615336096935
  5285. },
  5286. "Value": {
  5287. "ComponentData": {
  5288. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5289. "$type": "NodeSaveData"
  5290. },
  5291. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5292. "$type": "GeneralNodeTitleComponentSaveData",
  5293. "PaletteOverride": "GetVariableNodeTitlePalette"
  5294. },
  5295. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5296. "$type": "GeometrySaveData",
  5297. "Position": [
  5298. 20.0,
  5299. 600.0
  5300. ]
  5301. },
  5302. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5303. "$type": "StylingComponentSaveData",
  5304. "SubStyle": ".getVariable"
  5305. },
  5306. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5307. "$type": "PersistentIdComponentSaveData",
  5308. "PersistentId": "{C32616A9-2764-4F0C-B9F4-629198C997C6}"
  5309. }
  5310. }
  5311. }
  5312. },
  5313. {
  5314. "Key": {
  5315. "id": 493619631064231
  5316. },
  5317. "Value": {
  5318. "ComponentData": {
  5319. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5320. "$type": "NodeSaveData"
  5321. },
  5322. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5323. "$type": "GeneralNodeTitleComponentSaveData",
  5324. "PaletteOverride": "MathNodeTitlePalette"
  5325. },
  5326. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5327. "$type": "GeometrySaveData",
  5328. "Position": [
  5329. 420.0,
  5330. 360.0
  5331. ]
  5332. },
  5333. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5334. "$type": "StylingComponentSaveData",
  5335. "SubStyle": ".math"
  5336. },
  5337. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5338. "$type": "PersistentIdComponentSaveData",
  5339. "PersistentId": "{CCC49BE1-F621-45DF-A984-AE2492F16264}"
  5340. }
  5341. }
  5342. }
  5343. }
  5344. ],
  5345. "StatisticsHelper": {
  5346. "InstanceCounter": [
  5347. {
  5348. "Key": 1244476766431948410,
  5349. "Value": 6
  5350. },
  5351. {
  5352. "Key": 3187176154985276977,
  5353. "Value": 1
  5354. },
  5355. {
  5356. "Key": 4053150093067829293,
  5357. "Value": 4
  5358. },
  5359. {
  5360. "Key": 4199610336680704683,
  5361. "Value": 1
  5362. },
  5363. {
  5364. "Key": 5842117330460107281,
  5365. "Value": 1
  5366. },
  5367. {
  5368. "Key": 5842117331959705218,
  5369. "Value": 1
  5370. },
  5371. {
  5372. "Key": 5842117332203867558,
  5373. "Value": 1
  5374. },
  5375. {
  5376. "Key": 5990444779933572807,
  5377. "Value": 1
  5378. },
  5379. {
  5380. "Key": 5997090404431122155,
  5381. "Value": 1
  5382. },
  5383. {
  5384. "Key": 7002858826543393248,
  5385. "Value": 1
  5386. },
  5387. {
  5388. "Key": 10204019744198319120,
  5389. "Value": 1
  5390. },
  5391. {
  5392. "Key": 13774516566704683550,
  5393. "Value": 1
  5394. },
  5395. {
  5396. "Key": 13774516567420722490,
  5397. "Value": 1
  5398. },
  5399. {
  5400. "Key": 13774516569432942179,
  5401. "Value": 1
  5402. }
  5403. ]
  5404. }
  5405. },
  5406. "Component_[12868442675335221267]": {
  5407. "$type": "EditorGraphVariableManagerComponent",
  5408. "Id": 12868442675335221267,
  5409. "m_variableData": {
  5410. "m_nameVariableMap": [
  5411. {
  5412. "Key": {
  5413. "m_id": "{89215469-35D0-4FC2-B544-73DB81F7FD28}"
  5414. },
  5415. "Value": {
  5416. "Datum": {
  5417. "isOverloadedStorage": false,
  5418. "scriptCanvasType": {
  5419. "m_type": 3
  5420. },
  5421. "isNullPointer": false,
  5422. "$type": "double",
  5423. "value": 1.0,
  5424. "label": "1"
  5425. },
  5426. "VariableId": {
  5427. "m_id": "{89215469-35D0-4FC2-B544-73DB81F7FD28}"
  5428. },
  5429. "VariableName": "1"
  5430. }
  5431. },
  5432. {
  5433. "Key": {
  5434. "m_id": "{94C60903-C47D-41B4-B825-CFE8C5FA865F}"
  5435. },
  5436. "Value": {
  5437. "Datum": {
  5438. "isOverloadedStorage": false,
  5439. "scriptCanvasType": {
  5440. "m_type": 3
  5441. },
  5442. "isNullPointer": false,
  5443. "$type": "double",
  5444. "value": 57.0,
  5445. "label": "57"
  5446. },
  5447. "VariableId": {
  5448. "m_id": "{94C60903-C47D-41B4-B825-CFE8C5FA865F}"
  5449. },
  5450. "VariableName": "57"
  5451. }
  5452. },
  5453. {
  5454. "Key": {
  5455. "m_id": "{B551E060-FC2B-44C2-BBAC-4A6FCC3F4A64}"
  5456. },
  5457. "Value": {
  5458. "Datum": {
  5459. "isOverloadedStorage": false,
  5460. "scriptCanvasType": {
  5461. "m_type": 3
  5462. },
  5463. "isNullPointer": false,
  5464. "$type": "double",
  5465. "value": 27.0,
  5466. "label": "27"
  5467. },
  5468. "VariableId": {
  5469. "m_id": "{B551E060-FC2B-44C2-BBAC-4A6FCC3F4A64}"
  5470. },
  5471. "VariableName": "27"
  5472. }
  5473. },
  5474. {
  5475. "Key": {
  5476. "m_id": "{C308EF78-1676-4D7F-B545-63D53C8E5833}"
  5477. },
  5478. "Value": {
  5479. "Datum": {
  5480. "isOverloadedStorage": false,
  5481. "scriptCanvasType": {
  5482. "m_type": 3
  5483. },
  5484. "isNullPointer": false,
  5485. "$type": "double",
  5486. "value": 9.0,
  5487. "label": "9"
  5488. },
  5489. "VariableId": {
  5490. "m_id": "{C308EF78-1676-4D7F-B545-63D53C8E5833}"
  5491. },
  5492. "VariableName": "9"
  5493. }
  5494. }
  5495. ]
  5496. }
  5497. }
  5498. }
  5499. }
  5500. }
  5501. }