暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Generics45.cpp 852KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. struct VirtualActionInvoker0
  9. {
  10. typedef void (*Action)(void*, const RuntimeMethod*);
  11. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  12. {
  13. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  14. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  15. }
  16. };
  17. template <typename R, typename T1, typename T2>
  18. struct VirtualFuncInvoker2
  19. {
  20. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  21. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
  22. {
  23. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  24. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  25. }
  26. };
  27. struct InterfaceActionInvoker0
  28. {
  29. typedef void (*Action)(void*, const RuntimeMethod*);
  30. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  31. {
  32. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  33. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  34. }
  35. };
  36. template <typename R>
  37. struct InterfaceFuncInvoker0
  38. {
  39. typedef R (*Func)(void*, const RuntimeMethod*);
  40. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  41. {
  42. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  43. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  44. }
  45. };
  46. // System.Collections.Generic.Dictionary`2<System.Object,System.Object>
  47. struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
  48. // System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>
  49. struct Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3;
  50. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  51. struct Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943;
  52. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Boolean>
  53. struct Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858;
  54. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  55. struct Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133;
  56. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  57. struct Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF;
  58. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  59. struct Func_2_tF42287527472FA89789873F068A87C60A00EC7D3;
  60. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  61. struct Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97;
  62. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  63. struct Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8;
  64. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  65. struct Func_2_t383ACA034986FB526C2536401996EF1CC0889958;
  66. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  67. struct Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B;
  68. // System.Func`2<System.ValueTuple`2<System.Object,System.Object>,System.Boolean>
  69. struct Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4;
  70. // System.Func`2<System.Char,System.Boolean>
  71. struct Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F;
  72. // System.Func`2<System.Guid,System.Boolean>
  73. struct Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA;
  74. // System.Func`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  75. struct Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665;
  76. // System.Func`2<System.Int32Enum,System.Boolean>
  77. struct Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821;
  78. // System.Func`2<System.Int32Enum,System.Char>
  79. struct Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD;
  80. // System.Func`2<System.Int32Enum,System.Guid>
  81. struct Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5;
  82. // System.Func`2<System.Int32Enum,System.Object>
  83. struct Func_2_tF12503C33FD184E465546C31F324F4C344B8975A;
  84. // System.Func`2<System.Int32Enum,System.Single>
  85. struct Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975;
  86. // System.Func`2<System.Int32Enum,UnityEngine.Vector2>
  87. struct Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30;
  88. // System.Func`2<System.Int32Enum,UnityEngine.Vector3>
  89. struct Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B;
  90. // System.Func`2<System.Int32Enum,UnityEngine.Vector4>
  91. struct Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890;
  92. // System.Func`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  93. struct Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0;
  94. // System.Func`2<System.Object,System.Boolean>
  95. struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00;
  96. // System.Func`2<System.Object,System.Char>
  97. struct Func_2_tA8F6CB924B4548E42010325397F16C187C098225;
  98. // System.Func`2<System.Object,System.Guid>
  99. struct Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838;
  100. // System.Func`2<System.Object,System.Object>
  101. struct Func_2_tACBF5A1656250800CE861707354491F0611F6624;
  102. // System.Func`2<System.Object,System.Single>
  103. struct Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12;
  104. // System.Func`2<System.Object,UnityEngine.Vector2>
  105. struct Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4;
  106. // System.Func`2<System.Object,UnityEngine.Vector3>
  107. struct Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E;
  108. // System.Func`2<System.Object,UnityEngine.Vector4>
  109. struct Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302;
  110. // System.Func`2<System.Single,System.Boolean>
  111. struct Func_2_t49E998685259ADE759F9329BF66F20DE8667006E;
  112. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  113. struct Func_2_tC496704D554895234B1360058C5CC2D901C24957;
  114. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Boolean>
  115. struct Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A;
  116. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  117. struct Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C;
  118. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  119. struct Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844;
  120. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  121. struct Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD;
  122. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  123. struct Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D;
  124. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  125. struct Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E;
  126. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  127. struct Func_2_t208A44437DC9E09577E7BBCC73E296265723730A;
  128. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  129. struct Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40;
  130. // System.Func`2<UnityEngine.Vector2,System.Boolean>
  131. struct Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9;
  132. // System.Func`2<UnityEngine.Vector3,System.Boolean>
  133. struct Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E;
  134. // System.Func`2<UnityEngine.Vector4,System.Boolean>
  135. struct Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9;
  136. // System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  137. struct IEnumerable_1_t60509816D8966320E2A9660FC756B6C440ADFC50;
  138. // System.Collections.Generic.IEnumerable`1<System.ValueTuple`2<System.Object,System.Object>>
  139. struct IEnumerable_1_tF87C02535F5ADDDE139D4D2EE4BD06652C1791A4;
  140. // System.Collections.Generic.IEnumerable`1<System.Char>
  141. struct IEnumerable_1_t9CC3C47C67E4184F7F1B8B0AFAEF692B9EDDDF05;
  142. // System.Collections.Generic.IEnumerable`1<System.Guid>
  143. struct IEnumerable_1_t6AD47CB8BEC813E15985AA93F7394F6ECE74088A;
  144. // System.Collections.Generic.IEnumerable`1<System.Int32Enum>
  145. struct IEnumerable_1_t71A46277DBD73BD4009B2B20885D2B7057593A1A;
  146. // System.Collections.Generic.IEnumerable`1<System.Object>
  147. struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
  148. // System.Collections.Generic.IEnumerable`1<System.Single>
  149. struct IEnumerable_1_t352FDDEA001ABE8E1D67849D2E2F3D1D75B03D41;
  150. // System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>
  151. struct IEnumerable_1_tE925592D6CE31E7FA5349FCEE9007F3DF53409FD;
  152. // System.Collections.Generic.IEnumerable`1<UnityEngine.Vector2>
  153. struct IEnumerable_1_t6C47A8FE62321E6AD75C312B8549AFD2B13F0591;
  154. // System.Collections.Generic.IEnumerable`1<UnityEngine.Vector3>
  155. struct IEnumerable_1_t5C1E5CDFEA99062D152E83B174072FEDB9763788;
  156. // System.Collections.Generic.IEnumerable`1<UnityEngine.Vector4>
  157. struct IEnumerable_1_tD5C0FD17E45BB16A64310D831E29C350A184590F;
  158. // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  159. struct IEnumerator_1_t327FF232159D9644239A65F54312F684DB7BE375;
  160. // System.Collections.Generic.IEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>
  161. struct IEnumerator_1_t526C6CBBA5290F560D4704AB11CDA3D0D499F433;
  162. // System.Collections.Generic.IEnumerator`1<System.Char>
  163. struct IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8;
  164. // System.Collections.Generic.IEnumerator`1<System.Guid>
  165. struct IEnumerator_1_t488F9FA82247BF8D2DC5E133C1C3F9366CDED9B0;
  166. // System.Collections.Generic.IEnumerator`1<System.Int32Enum>
  167. struct IEnumerator_1_t239F6ACD0FC026E7FA70965FDE161517CD367AED;
  168. // System.Collections.Generic.IEnumerator`1<System.Object>
  169. struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD;
  170. // System.Collections.Generic.IEnumerator`1<System.Single>
  171. struct IEnumerator_1_t736E9F8BD2FD38A5E9EA2E8A510AFED788D05010;
  172. // System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>
  173. struct IEnumerator_1_t4CA3732E083480E40018894623B3C184576E5EFD;
  174. // System.Collections.Generic.IEnumerator`1<UnityEngine.Vector2>
  175. struct IEnumerator_1_tC0C08C9659581E6A592DEEC8CEE4A412A400B773;
  176. // System.Collections.Generic.IEnumerator`1<UnityEngine.Vector3>
  177. struct IEnumerator_1_tD1458B7D83AB52223A503862617A8A15E008EE1E;
  178. // System.Collections.Generic.IEnumerator`1<UnityEngine.Vector4>
  179. struct IEnumerator_1_t1DC9BF0C441509977AE52846CAE10D10A21C5FE0;
  180. // System.Collections.Generic.IEqualityComparer`1<System.String>
  181. struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
  182. // System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>
  183. struct Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7;
  184. // System.Linq.Enumerable/Iterator`1<System.Char>
  185. struct Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA;
  186. // System.Linq.Enumerable/Iterator`1<System.Guid>
  187. struct Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE;
  188. // System.Linq.Enumerable/Iterator`1<System.Object>
  189. struct Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA;
  190. // System.Linq.Enumerable/Iterator`1<System.Single>
  191. struct Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E;
  192. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>
  193. struct Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC;
  194. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>
  195. struct Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E;
  196. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>
  197. struct Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E;
  198. // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Unity.VisualScripting.FullSerializer.fsData>
  199. struct KeyCollection_t018A8DACA62B00F41314B17E9BB03E1169319CA5;
  200. // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  201. struct List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB;
  202. // System.Collections.Generic.List`1<System.Int32Enum>
  203. struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576;
  204. // System.Collections.Generic.List`1<System.Object>
  205. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  206. // System.Collections.Generic.List`1<System.String>
  207. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
  208. // System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSelectorPart>
  209. struct List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF;
  210. // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Unity.VisualScripting.FullSerializer.fsData>
  211. struct ValueCollection_t26762FBAABEED8AF6FEC2532717F621A053E1E81;
  212. // System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  213. struct WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5;
  214. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  215. struct WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C;
  216. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  217. struct WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15;
  218. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  219. struct WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF;
  220. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  221. struct WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF;
  222. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  223. struct WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE;
  224. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  225. struct WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3;
  226. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  227. struct WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535;
  228. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  229. struct WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490;
  230. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  231. struct WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B;
  232. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>
  233. struct WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD;
  234. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>
  235. struct WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE;
  236. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>
  237. struct WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6;
  238. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>
  239. struct WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513;
  240. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>
  241. struct WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30;
  242. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>
  243. struct WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D;
  244. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>
  245. struct WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794;
  246. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  247. struct WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6;
  248. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>
  249. struct WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F;
  250. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>
  251. struct WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D;
  252. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>
  253. struct WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F;
  254. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>
  255. struct WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94;
  256. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>
  257. struct WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960;
  258. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>
  259. struct WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4;
  260. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>
  261. struct WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8;
  262. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  263. struct WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41;
  264. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  265. struct WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D;
  266. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  267. struct WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571;
  268. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  269. struct WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586;
  270. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  271. struct WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7;
  272. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  273. struct WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68;
  274. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  275. struct WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA;
  276. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  277. struct WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509;
  278. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  279. struct WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114;
  280. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  281. struct WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E;
  282. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  283. struct WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED;
  284. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  285. struct WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6;
  286. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  287. struct WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC;
  288. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  289. struct WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD;
  290. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  291. struct WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B;
  292. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  293. struct WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9;
  294. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  295. struct WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B;
  296. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>
  297. struct WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D;
  298. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>
  299. struct WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80;
  300. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>
  301. struct WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0;
  302. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>
  303. struct WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3;
  304. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>
  305. struct WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F;
  306. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>
  307. struct WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820;
  308. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>
  309. struct WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F;
  310. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  311. struct WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D;
  312. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>
  313. struct WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003;
  314. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>
  315. struct WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E;
  316. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>
  317. struct WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A;
  318. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>
  319. struct WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9;
  320. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>
  321. struct WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44;
  322. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>
  323. struct WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65;
  324. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>
  325. struct WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F;
  326. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  327. struct WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC;
  328. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  329. struct WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328;
  330. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  331. struct WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC;
  332. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  333. struct WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989;
  334. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  335. struct WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D;
  336. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  337. struct WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452;
  338. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  339. struct WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD;
  340. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  341. struct WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B;
  342. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>
  343. struct fsDirectConverter_1_tC2007A06B444810E5B41544B7B0FCE29128FBC50;
  344. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>
  345. struct fsDirectConverter_1_t7705783FE5B6390E39DFB3F2457CD37A4912B76C;
  346. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>
  347. struct fsDirectConverter_1_t4AB706B5DC3FF2BB1AEAD2A78015FD3548436108;
  348. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>
  349. struct fsDirectConverter_1_t3CFAD4EABDF356C7AA4577B8D1F5241EA64AAD95;
  350. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>
  351. struct fsDirectConverter_1_tF307DFA6F21486A34320546F09381BBF84FF0539;
  352. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>
  353. struct fsDirectConverter_1_t8EC81BCA98876AF5AF3271B6086EC66E2CCDC388;
  354. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>
  355. struct fsDirectConverter_1_t8DF7EDE51D153578D3AC20C59C648308A99EA12A;
  356. // System.Collections.Generic.Dictionary`2/Entry<System.String,Unity.VisualScripting.FullSerializer.fsData>[]
  357. struct EntryU5BU5D_tCFEDD9B392BFDE2D313BC0974DB2CABF3A7A893D;
  358. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
  359. struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67;
  360. // System.Byte[]
  361. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  362. // System.Delegate[]
  363. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  364. // System.Int32[]
  365. struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
  366. // System.Int32Enum[]
  367. struct Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F;
  368. // System.IntPtr[]
  369. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  370. // System.Object[]
  371. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  372. // System.Diagnostics.StackTrace[]
  373. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  374. // System.String[]
  375. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  376. // UnityEngine.UIElements.StyleSelectorPart[]
  377. struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B;
  378. // System.Type[]
  379. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  380. // Unity.VisualScripting.FullSerializer.Internal.fsVersionedType[]
  381. struct fsVersionedTypeU5BU5D_tF4A5B18C49769943892747B1A1040CAE86746E1F;
  382. // System.Reflection.Binder
  383. struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
  384. // System.DelegateData
  385. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  386. // System.Collections.IDictionary
  387. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  388. // System.InvalidOperationException
  389. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  390. // System.Reflection.MemberFilter
  391. struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
  392. // System.Reflection.MethodInfo
  393. struct MethodInfo_t;
  394. // System.Runtime.Serialization.SafeSerializationManager
  395. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  396. // System.String
  397. struct String_t;
  398. // System.Type
  399. struct Type_t;
  400. // System.Void
  401. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  402. // Unity.VisualScripting.FullSerializer.fsBaseConverter
  403. struct fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04;
  404. // Unity.VisualScripting.FullSerializer.fsData
  405. struct fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23;
  406. // Unity.VisualScripting.FullSerializer.fsDirectConverter
  407. struct fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668;
  408. // Unity.VisualScripting.FullSerializer.fsSerializer
  409. struct fsSerializer_t770DD30E2427CF63ECAEF61D7A1D1D178CECB3DC;
  410. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var;
  411. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
  412. IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
  413. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  414. IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
  415. IL2CPP_EXTERN_C RuntimeClass* fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var;
  416. IL2CPP_EXTERN_C RuntimeClass* fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var;
  417. IL2CPP_EXTERN_C String_t* _stringLiteral0A7D3B18DF4F9238A50A156FF06A5A7E794C1C7F;
  418. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var;
  419. IL2CPP_EXTERN_C const RuntimeMethod* fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241_RuntimeMethod_var;
  420. IL2CPP_EXTERN_C const RuntimeMethod* fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41_RuntimeMethod_var;
  421. struct Delegate_t_marshaled_com;
  422. struct Delegate_t_marshaled_pinvoke;
  423. struct Exception_t_marshaled_com;
  424. struct Exception_t_marshaled_pinvoke;
  425. struct fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8_marshaled_com;
  426. struct fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8_marshaled_pinvoke;
  427. struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B;
  428. IL2CPP_EXTERN_C_BEGIN
  429. IL2CPP_EXTERN_C_END
  430. #ifdef __clang__
  431. #pragma clang diagnostic push
  432. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  433. #pragma clang diagnostic ignored "-Wunused-variable"
  434. #endif
  435. // System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>
  436. struct Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3 : public RuntimeObject
  437. {
  438. // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
  439. Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
  440. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
  441. EntryU5BU5D_tCFEDD9B392BFDE2D313BC0974DB2CABF3A7A893D* ____entries_1;
  442. // System.Int32 System.Collections.Generic.Dictionary`2::_count
  443. int32_t ____count_2;
  444. // System.Int32 System.Collections.Generic.Dictionary`2::_freeList
  445. int32_t ____freeList_3;
  446. // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
  447. int32_t ____freeCount_4;
  448. // System.Int32 System.Collections.Generic.Dictionary`2::_version
  449. int32_t ____version_5;
  450. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
  451. RuntimeObject* ____comparer_6;
  452. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
  453. KeyCollection_t018A8DACA62B00F41314B17E9BB03E1169319CA5* ____keys_7;
  454. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
  455. ValueCollection_t26762FBAABEED8AF6FEC2532717F621A053E1E81* ____values_8;
  456. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  457. RuntimeObject* ____syncRoot_9;
  458. };
  459. // System.Linq.Enumerable/Iterator`1<System.Char>
  460. struct Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA : public RuntimeObject
  461. {
  462. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  463. int32_t ___threadId_0;
  464. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  465. int32_t ___state_1;
  466. // TSource System.Linq.Enumerable/Iterator`1::current
  467. Il2CppChar ___current_2;
  468. };
  469. // System.Linq.Enumerable/Iterator`1<System.Object>
  470. struct Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA : public RuntimeObject
  471. {
  472. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  473. int32_t ___threadId_0;
  474. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  475. int32_t ___state_1;
  476. // TSource System.Linq.Enumerable/Iterator`1::current
  477. RuntimeObject* ___current_2;
  478. };
  479. // System.Linq.Enumerable/Iterator`1<System.Single>
  480. struct Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E : public RuntimeObject
  481. {
  482. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  483. int32_t ___threadId_0;
  484. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  485. int32_t ___state_1;
  486. // TSource System.Linq.Enumerable/Iterator`1::current
  487. float ___current_2;
  488. };
  489. // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  490. struct List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB : public RuntimeObject
  491. {
  492. // T[] System.Collections.Generic.List`1::_items
  493. KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ____items_1;
  494. // System.Int32 System.Collections.Generic.List`1::_size
  495. int32_t ____size_2;
  496. // System.Int32 System.Collections.Generic.List`1::_version
  497. int32_t ____version_3;
  498. // System.Object System.Collections.Generic.List`1::_syncRoot
  499. RuntimeObject* ____syncRoot_4;
  500. };
  501. // System.Collections.Generic.List`1<System.Int32Enum>
  502. struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576 : public RuntimeObject
  503. {
  504. // T[] System.Collections.Generic.List`1::_items
  505. Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* ____items_1;
  506. // System.Int32 System.Collections.Generic.List`1::_size
  507. int32_t ____size_2;
  508. // System.Int32 System.Collections.Generic.List`1::_version
  509. int32_t ____version_3;
  510. // System.Object System.Collections.Generic.List`1::_syncRoot
  511. RuntimeObject* ____syncRoot_4;
  512. };
  513. // System.Collections.Generic.List`1<System.Object>
  514. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  515. {
  516. // T[] System.Collections.Generic.List`1::_items
  517. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
  518. // System.Int32 System.Collections.Generic.List`1::_size
  519. int32_t ____size_2;
  520. // System.Int32 System.Collections.Generic.List`1::_version
  521. int32_t ____version_3;
  522. // System.Object System.Collections.Generic.List`1::_syncRoot
  523. RuntimeObject* ____syncRoot_4;
  524. };
  525. // System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSelectorPart>
  526. struct List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF : public RuntimeObject
  527. {
  528. // T[] System.Collections.Generic.List`1::_items
  529. StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* ____items_1;
  530. // System.Int32 System.Collections.Generic.List`1::_size
  531. int32_t ____size_2;
  532. // System.Int32 System.Collections.Generic.List`1::_version
  533. int32_t ____version_3;
  534. // System.Object System.Collections.Generic.List`1::_syncRoot
  535. RuntimeObject* ____syncRoot_4;
  536. };
  537. // System.Reflection.MemberInfo
  538. struct MemberInfo_t : public RuntimeObject
  539. {
  540. };
  541. // System.String
  542. struct String_t : public RuntimeObject
  543. {
  544. // System.Int32 System.String::_stringLength
  545. int32_t ____stringLength_4;
  546. // System.Char System.String::_firstChar
  547. Il2CppChar ____firstChar_5;
  548. };
  549. // System.ValueType
  550. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  551. {
  552. };
  553. // Native definition for P/Invoke marshalling of System.ValueType
  554. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  555. {
  556. };
  557. // Native definition for COM marshalling of System.ValueType
  558. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  559. {
  560. };
  561. // Unity.VisualScripting.FullSerializer.fsBaseConverter
  562. struct fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04 : public RuntimeObject
  563. {
  564. // Unity.VisualScripting.FullSerializer.fsSerializer Unity.VisualScripting.FullSerializer.fsBaseConverter::Serializer
  565. fsSerializer_t770DD30E2427CF63ECAEF61D7A1D1D178CECB3DC* ___Serializer_0;
  566. };
  567. // Unity.VisualScripting.FullSerializer.fsData
  568. struct fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23 : public RuntimeObject
  569. {
  570. // System.Object Unity.VisualScripting.FullSerializer.fsData::_value
  571. RuntimeObject* ____value_0;
  572. };
  573. // System.Collections.Generic.List`1/Enumerator<System.Int32Enum>
  574. struct Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B
  575. {
  576. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
  577. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ____list_0;
  578. // System.Int32 System.Collections.Generic.List`1/Enumerator::_index
  579. int32_t ____index_1;
  580. // System.Int32 System.Collections.Generic.List`1/Enumerator::_version
  581. int32_t ____version_2;
  582. // T System.Collections.Generic.List`1/Enumerator::_current
  583. int32_t ____current_3;
  584. };
  585. // System.Collections.Generic.List`1/Enumerator<System.Object>
  586. struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
  587. {
  588. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
  589. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0;
  590. // System.Int32 System.Collections.Generic.List`1/Enumerator::_index
  591. int32_t ____index_1;
  592. // System.Int32 System.Collections.Generic.List`1/Enumerator::_version
  593. int32_t ____version_2;
  594. // T System.Collections.Generic.List`1/Enumerator::_current
  595. RuntimeObject* ____current_3;
  596. };
  597. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  598. struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
  599. {
  600. // TKey System.Collections.Generic.KeyValuePair`2::key
  601. RuntimeObject* ___key_0;
  602. // TValue System.Collections.Generic.KeyValuePair`2::value
  603. RuntimeObject* ___value_1;
  604. };
  605. // System.ValueTuple`2<System.Object,System.Object>
  606. struct ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A
  607. {
  608. // T1 System.ValueTuple`2::Item1
  609. RuntimeObject* ___Item1_0;
  610. // T2 System.ValueTuple`2::Item2
  611. RuntimeObject* ___Item2_1;
  612. };
  613. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>
  614. struct WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039 : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  615. {
  616. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  617. RuntimeObject* ___source_3;
  618. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  619. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___predicate_4;
  620. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  621. RuntimeObject* ___enumerator_5;
  622. };
  623. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>
  624. struct WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4 : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  625. {
  626. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  627. RuntimeObject* ___source_3;
  628. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  629. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  630. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  631. RuntimeObject* ___enumerator_5;
  632. };
  633. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Single>
  634. struct WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  635. {
  636. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  637. RuntimeObject* ___source_3;
  638. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  639. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___predicate_4;
  640. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  641. RuntimeObject* ___enumerator_5;
  642. };
  643. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  644. struct WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15 : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  645. {
  646. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  647. RuntimeObject* ___source_3;
  648. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  649. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  650. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  651. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* ___selector_5;
  652. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  653. RuntimeObject* ___enumerator_6;
  654. };
  655. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  656. struct WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  657. {
  658. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  659. RuntimeObject* ___source_3;
  660. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  661. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  662. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  663. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* ___selector_5;
  664. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  665. RuntimeObject* ___enumerator_6;
  666. };
  667. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  668. struct WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  669. {
  670. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  671. RuntimeObject* ___source_3;
  672. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  673. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  674. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  675. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* ___selector_5;
  676. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  677. RuntimeObject* ___enumerator_6;
  678. };
  679. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>
  680. struct WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  681. {
  682. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  683. RuntimeObject* ___source_3;
  684. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  685. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  686. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  687. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* ___selector_5;
  688. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  689. RuntimeObject* ___enumerator_6;
  690. };
  691. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>
  692. struct WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6 : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  693. {
  694. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  695. RuntimeObject* ___source_3;
  696. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  697. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  698. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  699. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* ___selector_5;
  700. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  701. RuntimeObject* ___enumerator_6;
  702. };
  703. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>
  704. struct WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513 : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  705. {
  706. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  707. RuntimeObject* ___source_3;
  708. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  709. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  710. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  711. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* ___selector_5;
  712. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  713. RuntimeObject* ___enumerator_6;
  714. };
  715. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>
  716. struct WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  717. {
  718. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  719. RuntimeObject* ___source_3;
  720. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  721. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  722. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  723. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* ___selector_5;
  724. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  725. RuntimeObject* ___enumerator_6;
  726. };
  727. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>
  728. struct WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  729. {
  730. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  731. RuntimeObject* ___source_3;
  732. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  733. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  734. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  735. Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___selector_5;
  736. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  737. RuntimeObject* ___enumerator_6;
  738. };
  739. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>
  740. struct WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94 : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  741. {
  742. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  743. RuntimeObject* ___source_3;
  744. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  745. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  746. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  747. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* ___selector_5;
  748. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  749. RuntimeObject* ___enumerator_6;
  750. };
  751. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  752. struct WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  753. {
  754. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  755. RuntimeObject* ___source_3;
  756. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  757. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  758. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  759. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* ___selector_5;
  760. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  761. RuntimeObject* ___enumerator_6;
  762. };
  763. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  764. struct WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586 : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  765. {
  766. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  767. RuntimeObject* ___source_3;
  768. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  769. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  770. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  771. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* ___selector_5;
  772. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  773. RuntimeObject* ___enumerator_6;
  774. };
  775. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  776. struct WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7 : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  777. {
  778. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  779. RuntimeObject* ___source_3;
  780. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  781. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  782. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  783. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* ___selector_5;
  784. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  785. RuntimeObject* ___enumerator_6;
  786. };
  787. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>
  788. struct fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39
  789. {
  790. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1::_hasValue
  791. bool ____hasValue_0;
  792. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1::_value
  793. RuntimeObject* ____value_1;
  794. };
  795. // System.Boolean
  796. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  797. {
  798. // System.Boolean System.Boolean::m_value
  799. bool ___m_value_0;
  800. };
  801. // System.Char
  802. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  803. {
  804. // System.Char System.Char::m_value
  805. Il2CppChar ___m_value_0;
  806. };
  807. // System.Guid
  808. struct Guid_t
  809. {
  810. // System.Int32 System.Guid::_a
  811. int32_t ____a_1;
  812. // System.Int16 System.Guid::_b
  813. int16_t ____b_2;
  814. // System.Int16 System.Guid::_c
  815. int16_t ____c_3;
  816. // System.Byte System.Guid::_d
  817. uint8_t ____d_4;
  818. // System.Byte System.Guid::_e
  819. uint8_t ____e_5;
  820. // System.Byte System.Guid::_f
  821. uint8_t ____f_6;
  822. // System.Byte System.Guid::_g
  823. uint8_t ____g_7;
  824. // System.Byte System.Guid::_h
  825. uint8_t ____h_8;
  826. // System.Byte System.Guid::_i
  827. uint8_t ____i_9;
  828. // System.Byte System.Guid::_j
  829. uint8_t ____j_10;
  830. // System.Byte System.Guid::_k
  831. uint8_t ____k_11;
  832. };
  833. // System.Int32
  834. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  835. {
  836. // System.Int32 System.Int32::m_value
  837. int32_t ___m_value_0;
  838. };
  839. // System.IntPtr
  840. struct IntPtr_t
  841. {
  842. // System.Void* System.IntPtr::m_value
  843. void* ___m_value_0;
  844. };
  845. // UnityEngine.Keyframe
  846. struct Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0
  847. {
  848. // System.Single UnityEngine.Keyframe::m_Time
  849. float ___m_Time_0;
  850. // System.Single UnityEngine.Keyframe::m_Value
  851. float ___m_Value_1;
  852. // System.Single UnityEngine.Keyframe::m_InTangent
  853. float ___m_InTangent_2;
  854. // System.Single UnityEngine.Keyframe::m_OutTangent
  855. float ___m_OutTangent_3;
  856. // System.Int32 UnityEngine.Keyframe::m_WeightedMode
  857. int32_t ___m_WeightedMode_4;
  858. // System.Single UnityEngine.Keyframe::m_InWeight
  859. float ___m_InWeight_5;
  860. // System.Single UnityEngine.Keyframe::m_OutWeight
  861. float ___m_OutWeight_6;
  862. };
  863. // UnityEngine.LayerMask
  864. struct LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB
  865. {
  866. // System.Int32 UnityEngine.LayerMask::m_Mask
  867. int32_t ___m_Mask_0;
  868. };
  869. // UnityEngine.Rect
  870. struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
  871. {
  872. // System.Single UnityEngine.Rect::m_XMin
  873. float ___m_XMin_0;
  874. // System.Single UnityEngine.Rect::m_YMin
  875. float ___m_YMin_1;
  876. // System.Single UnityEngine.Rect::m_Width
  877. float ___m_Width_2;
  878. // System.Single UnityEngine.Rect::m_Height
  879. float ___m_Height_3;
  880. };
  881. // System.Single
  882. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  883. {
  884. // System.Single System.Single::m_value
  885. float ___m_value_0;
  886. };
  887. // UnityEngine.UIElements.StyleSelectorPart
  888. struct StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470
  889. {
  890. // System.String UnityEngine.UIElements.StyleSelectorPart::m_Value
  891. String_t* ___m_Value_0;
  892. // UnityEngine.UIElements.StyleSelectorType UnityEngine.UIElements.StyleSelectorPart::m_Type
  893. int32_t ___m_Type_1;
  894. // System.Object UnityEngine.UIElements.StyleSelectorPart::tempData
  895. RuntimeObject* ___tempData_2;
  896. };
  897. // Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleSelectorPart
  898. struct StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_pinvoke
  899. {
  900. char* ___m_Value_0;
  901. int32_t ___m_Type_1;
  902. Il2CppIUnknown* ___tempData_2;
  903. };
  904. // Native definition for COM marshalling of UnityEngine.UIElements.StyleSelectorPart
  905. struct StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_com
  906. {
  907. Il2CppChar* ___m_Value_0;
  908. int32_t ___m_Type_1;
  909. Il2CppIUnknown* ___tempData_2;
  910. };
  911. // UnityEngine.Vector2
  912. struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
  913. {
  914. // System.Single UnityEngine.Vector2::x
  915. float ___x_0;
  916. // System.Single UnityEngine.Vector2::y
  917. float ___y_1;
  918. };
  919. // UnityEngine.Vector3
  920. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
  921. {
  922. // System.Single UnityEngine.Vector3::x
  923. float ___x_2;
  924. // System.Single UnityEngine.Vector3::y
  925. float ___y_3;
  926. // System.Single UnityEngine.Vector3::z
  927. float ___z_4;
  928. };
  929. // UnityEngine.Vector4
  930. struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
  931. {
  932. // System.Single UnityEngine.Vector4::x
  933. float ___x_1;
  934. // System.Single UnityEngine.Vector4::y
  935. float ___y_2;
  936. // System.Single UnityEngine.Vector4::z
  937. float ___z_3;
  938. // System.Single UnityEngine.Vector4::w
  939. float ___w_4;
  940. };
  941. // System.Void
  942. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  943. {
  944. union
  945. {
  946. struct
  947. {
  948. };
  949. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  950. };
  951. };
  952. // Unity.VisualScripting.FullSerializer.fsDirectConverter
  953. struct fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668 : public fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04
  954. {
  955. };
  956. // Unity.VisualScripting.FullSerializer.fsResult
  957. struct fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974
  958. {
  959. // System.Boolean Unity.VisualScripting.FullSerializer.fsResult::_success
  960. bool ____success_1;
  961. // System.Collections.Generic.List`1<System.String> Unity.VisualScripting.FullSerializer.fsResult::_messages
  962. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____messages_2;
  963. };
  964. // Native definition for P/Invoke marshalling of Unity.VisualScripting.FullSerializer.fsResult
  965. struct fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_marshaled_pinvoke
  966. {
  967. int32_t ____success_1;
  968. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____messages_2;
  969. };
  970. // Native definition for COM marshalling of Unity.VisualScripting.FullSerializer.fsResult
  971. struct fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_marshaled_com
  972. {
  973. int32_t ____success_1;
  974. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ____messages_2;
  975. };
  976. // Unity.VisualScripting.FullSerializer.Internal.fsVersionedType
  977. struct fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8
  978. {
  979. // Unity.VisualScripting.FullSerializer.Internal.fsVersionedType[] Unity.VisualScripting.FullSerializer.Internal.fsVersionedType::Ancestors
  980. fsVersionedTypeU5BU5D_tF4A5B18C49769943892747B1A1040CAE86746E1F* ___Ancestors_0;
  981. // System.String Unity.VisualScripting.FullSerializer.Internal.fsVersionedType::VersionString
  982. String_t* ___VersionString_1;
  983. // System.Type Unity.VisualScripting.FullSerializer.Internal.fsVersionedType::ModelType
  984. Type_t* ___ModelType_2;
  985. };
  986. // Native definition for P/Invoke marshalling of Unity.VisualScripting.FullSerializer.Internal.fsVersionedType
  987. struct fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8_marshaled_pinvoke
  988. {
  989. fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8_marshaled_pinvoke* ___Ancestors_0;
  990. char* ___VersionString_1;
  991. Type_t* ___ModelType_2;
  992. };
  993. // Native definition for COM marshalling of Unity.VisualScripting.FullSerializer.Internal.fsVersionedType
  994. struct fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8_marshaled_com
  995. {
  996. fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8_marshaled_com* ___Ancestors_0;
  997. Il2CppChar* ___VersionString_1;
  998. Type_t* ___ModelType_2;
  999. };
  1000. // System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  1001. struct Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4
  1002. {
  1003. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
  1004. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ____list_0;
  1005. // System.Int32 System.Collections.Generic.List`1/Enumerator::_index
  1006. int32_t ____index_1;
  1007. // System.Int32 System.Collections.Generic.List`1/Enumerator::_version
  1008. int32_t ____version_2;
  1009. // T System.Collections.Generic.List`1/Enumerator::_current
  1010. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current_3;
  1011. };
  1012. // System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSelectorPart>
  1013. struct Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F
  1014. {
  1015. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
  1016. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ____list_0;
  1017. // System.Int32 System.Collections.Generic.List`1/Enumerator::_index
  1018. int32_t ____index_1;
  1019. // System.Int32 System.Collections.Generic.List`1/Enumerator::_version
  1020. int32_t ____version_2;
  1021. // T System.Collections.Generic.List`1/Enumerator::_current
  1022. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 ____current_3;
  1023. };
  1024. // System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>
  1025. struct Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7 : public RuntimeObject
  1026. {
  1027. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  1028. int32_t ___threadId_0;
  1029. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  1030. int32_t ___state_1;
  1031. // TSource System.Linq.Enumerable/Iterator`1::current
  1032. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A ___current_2;
  1033. };
  1034. // System.Linq.Enumerable/Iterator`1<System.Guid>
  1035. struct Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE : public RuntimeObject
  1036. {
  1037. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  1038. int32_t ___threadId_0;
  1039. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  1040. int32_t ___state_1;
  1041. // TSource System.Linq.Enumerable/Iterator`1::current
  1042. Guid_t ___current_2;
  1043. };
  1044. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>
  1045. struct Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC : public RuntimeObject
  1046. {
  1047. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  1048. int32_t ___threadId_0;
  1049. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  1050. int32_t ___state_1;
  1051. // TSource System.Linq.Enumerable/Iterator`1::current
  1052. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___current_2;
  1053. };
  1054. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>
  1055. struct Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E : public RuntimeObject
  1056. {
  1057. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  1058. int32_t ___threadId_0;
  1059. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  1060. int32_t ___state_1;
  1061. // TSource System.Linq.Enumerable/Iterator`1::current
  1062. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___current_2;
  1063. };
  1064. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>
  1065. struct Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E : public RuntimeObject
  1066. {
  1067. // System.Int32 System.Linq.Enumerable/Iterator`1::threadId
  1068. int32_t ___threadId_0;
  1069. // System.Int32 System.Linq.Enumerable/Iterator`1::state
  1070. int32_t ___state_1;
  1071. // TSource System.Linq.Enumerable/Iterator`1::current
  1072. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___current_2;
  1073. };
  1074. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>
  1075. struct WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  1076. {
  1077. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1078. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1079. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1080. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1081. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1082. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* ___selector_5;
  1083. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1084. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1085. };
  1086. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>
  1087. struct WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0 : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  1088. {
  1089. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1090. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1091. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1092. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1093. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1094. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* ___selector_5;
  1095. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1096. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1097. };
  1098. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>
  1099. struct WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3 : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  1100. {
  1101. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1102. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1103. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1104. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1105. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1106. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* ___selector_5;
  1107. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1108. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1109. };
  1110. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>
  1111. struct WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003 : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  1112. {
  1113. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1114. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1115. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1116. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1117. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1118. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* ___selector_5;
  1119. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1120. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1121. };
  1122. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>
  1123. struct WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  1124. {
  1125. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1126. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1127. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1128. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1129. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1130. Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___selector_5;
  1131. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1132. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1133. };
  1134. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>
  1135. struct WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9 : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  1136. {
  1137. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1138. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1139. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1140. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1141. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1142. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* ___selector_5;
  1143. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1144. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1145. };
  1146. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>
  1147. struct fsDirectConverter_1_tC2007A06B444810E5B41544B7B0FCE29128FBC50 : public fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668
  1148. {
  1149. };
  1150. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>
  1151. struct fsDirectConverter_1_t7705783FE5B6390E39DFB3F2457CD37A4912B76C : public fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668
  1152. {
  1153. };
  1154. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>
  1155. struct fsDirectConverter_1_t4AB706B5DC3FF2BB1AEAD2A78015FD3548436108 : public fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668
  1156. {
  1157. };
  1158. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>
  1159. struct fsDirectConverter_1_t3CFAD4EABDF356C7AA4577B8D1F5241EA64AAD95 : public fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668
  1160. {
  1161. };
  1162. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>
  1163. struct fsDirectConverter_1_tF307DFA6F21486A34320546F09381BBF84FF0539 : public fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668
  1164. {
  1165. };
  1166. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>
  1167. struct fsDirectConverter_1_t8EC81BCA98876AF5AF3271B6086EC66E2CCDC388 : public fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668
  1168. {
  1169. };
  1170. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>
  1171. struct fsDirectConverter_1_t8DF7EDE51D153578D3AC20C59C648308A99EA12A : public fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668
  1172. {
  1173. };
  1174. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>
  1175. struct fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A
  1176. {
  1177. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1::_hasValue
  1178. bool ____hasValue_0;
  1179. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1::_value
  1180. fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 ____value_1;
  1181. };
  1182. // UnityEngine.Bounds
  1183. struct Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3
  1184. {
  1185. // UnityEngine.Vector3 UnityEngine.Bounds::m_Center
  1186. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Center_0;
  1187. // UnityEngine.Vector3 UnityEngine.Bounds::m_Extents
  1188. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Extents_1;
  1189. };
  1190. // System.Delegate
  1191. struct Delegate_t : public RuntimeObject
  1192. {
  1193. // System.IntPtr System.Delegate::method_ptr
  1194. Il2CppMethodPointer ___method_ptr_0;
  1195. // System.IntPtr System.Delegate::invoke_impl
  1196. intptr_t ___invoke_impl_1;
  1197. // System.Object System.Delegate::m_target
  1198. RuntimeObject* ___m_target_2;
  1199. // System.IntPtr System.Delegate::method
  1200. intptr_t ___method_3;
  1201. // System.IntPtr System.Delegate::delegate_trampoline
  1202. intptr_t ___delegate_trampoline_4;
  1203. // System.IntPtr System.Delegate::extra_arg
  1204. intptr_t ___extra_arg_5;
  1205. // System.IntPtr System.Delegate::method_code
  1206. intptr_t ___method_code_6;
  1207. // System.IntPtr System.Delegate::interp_method
  1208. intptr_t ___interp_method_7;
  1209. // System.IntPtr System.Delegate::interp_invoke_impl
  1210. intptr_t ___interp_invoke_impl_8;
  1211. // System.Reflection.MethodInfo System.Delegate::method_info
  1212. MethodInfo_t* ___method_info_9;
  1213. // System.Reflection.MethodInfo System.Delegate::original_method_info
  1214. MethodInfo_t* ___original_method_info_10;
  1215. // System.DelegateData System.Delegate::data
  1216. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  1217. // System.Boolean System.Delegate::method_is_virtual
  1218. bool ___method_is_virtual_12;
  1219. };
  1220. // Native definition for P/Invoke marshalling of System.Delegate
  1221. struct Delegate_t_marshaled_pinvoke
  1222. {
  1223. intptr_t ___method_ptr_0;
  1224. intptr_t ___invoke_impl_1;
  1225. Il2CppIUnknown* ___m_target_2;
  1226. intptr_t ___method_3;
  1227. intptr_t ___delegate_trampoline_4;
  1228. intptr_t ___extra_arg_5;
  1229. intptr_t ___method_code_6;
  1230. intptr_t ___interp_method_7;
  1231. intptr_t ___interp_invoke_impl_8;
  1232. MethodInfo_t* ___method_info_9;
  1233. MethodInfo_t* ___original_method_info_10;
  1234. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  1235. int32_t ___method_is_virtual_12;
  1236. };
  1237. // Native definition for COM marshalling of System.Delegate
  1238. struct Delegate_t_marshaled_com
  1239. {
  1240. intptr_t ___method_ptr_0;
  1241. intptr_t ___invoke_impl_1;
  1242. Il2CppIUnknown* ___m_target_2;
  1243. intptr_t ___method_3;
  1244. intptr_t ___delegate_trampoline_4;
  1245. intptr_t ___extra_arg_5;
  1246. intptr_t ___method_code_6;
  1247. intptr_t ___interp_method_7;
  1248. intptr_t ___interp_invoke_impl_8;
  1249. MethodInfo_t* ___method_info_9;
  1250. MethodInfo_t* ___original_method_info_10;
  1251. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  1252. int32_t ___method_is_virtual_12;
  1253. };
  1254. // System.Exception
  1255. struct Exception_t : public RuntimeObject
  1256. {
  1257. // System.String System.Exception::_className
  1258. String_t* ____className_1;
  1259. // System.String System.Exception::_message
  1260. String_t* ____message_2;
  1261. // System.Collections.IDictionary System.Exception::_data
  1262. RuntimeObject* ____data_3;
  1263. // System.Exception System.Exception::_innerException
  1264. Exception_t* ____innerException_4;
  1265. // System.String System.Exception::_helpURL
  1266. String_t* ____helpURL_5;
  1267. // System.Object System.Exception::_stackTrace
  1268. RuntimeObject* ____stackTrace_6;
  1269. // System.String System.Exception::_stackTraceString
  1270. String_t* ____stackTraceString_7;
  1271. // System.String System.Exception::_remoteStackTraceString
  1272. String_t* ____remoteStackTraceString_8;
  1273. // System.Int32 System.Exception::_remoteStackIndex
  1274. int32_t ____remoteStackIndex_9;
  1275. // System.Object System.Exception::_dynamicMethods
  1276. RuntimeObject* ____dynamicMethods_10;
  1277. // System.Int32 System.Exception::_HResult
  1278. int32_t ____HResult_11;
  1279. // System.String System.Exception::_source
  1280. String_t* ____source_12;
  1281. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  1282. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  1283. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  1284. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  1285. // System.IntPtr[] System.Exception::native_trace_ips
  1286. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
  1287. // System.Int32 System.Exception::caught_in_unmanaged
  1288. int32_t ___caught_in_unmanaged_16;
  1289. };
  1290. // Native definition for P/Invoke marshalling of System.Exception
  1291. struct Exception_t_marshaled_pinvoke
  1292. {
  1293. char* ____className_1;
  1294. char* ____message_2;
  1295. RuntimeObject* ____data_3;
  1296. Exception_t_marshaled_pinvoke* ____innerException_4;
  1297. char* ____helpURL_5;
  1298. Il2CppIUnknown* ____stackTrace_6;
  1299. char* ____stackTraceString_7;
  1300. char* ____remoteStackTraceString_8;
  1301. int32_t ____remoteStackIndex_9;
  1302. Il2CppIUnknown* ____dynamicMethods_10;
  1303. int32_t ____HResult_11;
  1304. char* ____source_12;
  1305. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  1306. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  1307. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  1308. int32_t ___caught_in_unmanaged_16;
  1309. };
  1310. // Native definition for COM marshalling of System.Exception
  1311. struct Exception_t_marshaled_com
  1312. {
  1313. Il2CppChar* ____className_1;
  1314. Il2CppChar* ____message_2;
  1315. RuntimeObject* ____data_3;
  1316. Exception_t_marshaled_com* ____innerException_4;
  1317. Il2CppChar* ____helpURL_5;
  1318. Il2CppIUnknown* ____stackTrace_6;
  1319. Il2CppChar* ____stackTraceString_7;
  1320. Il2CppChar* ____remoteStackTraceString_8;
  1321. int32_t ____remoteStackIndex_9;
  1322. Il2CppIUnknown* ____dynamicMethods_10;
  1323. int32_t ____HResult_11;
  1324. Il2CppChar* ____source_12;
  1325. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  1326. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  1327. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  1328. int32_t ___caught_in_unmanaged_16;
  1329. };
  1330. // UnityEngine.Ray
  1331. struct Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00
  1332. {
  1333. // UnityEngine.Vector3 UnityEngine.Ray::m_Origin
  1334. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Origin_0;
  1335. // UnityEngine.Vector3 UnityEngine.Ray::m_Direction
  1336. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Direction_1;
  1337. };
  1338. // UnityEngine.Ray2D
  1339. struct Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A
  1340. {
  1341. // UnityEngine.Vector2 UnityEngine.Ray2D::m_Origin
  1342. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Origin_0;
  1343. // UnityEngine.Vector2 UnityEngine.Ray2D::m_Direction
  1344. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Direction_1;
  1345. };
  1346. // System.RuntimeTypeHandle
  1347. struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
  1348. {
  1349. // System.IntPtr System.RuntimeTypeHandle::value
  1350. intptr_t ___value_0;
  1351. };
  1352. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.ValueTuple`2<System.Object,System.Object>>
  1353. struct WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1354. {
  1355. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  1356. RuntimeObject* ___source_3;
  1357. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  1358. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___predicate_4;
  1359. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  1360. RuntimeObject* ___enumerator_5;
  1361. };
  1362. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Guid>
  1363. struct WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1364. {
  1365. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  1366. RuntimeObject* ___source_3;
  1367. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  1368. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___predicate_4;
  1369. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  1370. RuntimeObject* ___enumerator_5;
  1371. };
  1372. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector2>
  1373. struct WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75 : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1374. {
  1375. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  1376. RuntimeObject* ___source_3;
  1377. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  1378. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___predicate_4;
  1379. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  1380. RuntimeObject* ___enumerator_5;
  1381. };
  1382. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector3>
  1383. struct WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1384. {
  1385. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  1386. RuntimeObject* ___source_3;
  1387. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  1388. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___predicate_4;
  1389. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  1390. RuntimeObject* ___enumerator_5;
  1391. };
  1392. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector4>
  1393. struct WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9 : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1394. {
  1395. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::source
  1396. RuntimeObject* ___source_3;
  1397. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereEnumerableIterator`1::predicate
  1398. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___predicate_4;
  1399. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereEnumerableIterator`1::enumerator
  1400. RuntimeObject* ___enumerator_5;
  1401. };
  1402. // System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  1403. struct WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5 : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1404. {
  1405. // TSource[] System.Linq.Enumerable/WhereSelectArrayIterator`2::source
  1406. StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* ___source_3;
  1407. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectArrayIterator`2::predicate
  1408. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1409. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2::selector
  1410. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* ___selector_5;
  1411. // System.Int32 System.Linq.Enumerable/WhereSelectArrayIterator`2::index
  1412. int32_t ___index_6;
  1413. };
  1414. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  1415. struct WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1416. {
  1417. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1418. RuntimeObject* ___source_3;
  1419. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1420. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1421. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1422. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* ___selector_5;
  1423. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1424. RuntimeObject* ___enumerator_6;
  1425. };
  1426. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  1427. struct WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1428. {
  1429. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1430. RuntimeObject* ___source_3;
  1431. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1432. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1433. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1434. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* ___selector_5;
  1435. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1436. RuntimeObject* ___enumerator_6;
  1437. };
  1438. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  1439. struct WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3 : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1440. {
  1441. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1442. RuntimeObject* ___source_3;
  1443. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1444. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1445. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1446. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* ___selector_5;
  1447. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1448. RuntimeObject* ___enumerator_6;
  1449. };
  1450. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  1451. struct WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535 : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1452. {
  1453. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1454. RuntimeObject* ___source_3;
  1455. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1456. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1457. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1458. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* ___selector_5;
  1459. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1460. RuntimeObject* ___enumerator_6;
  1461. };
  1462. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  1463. struct WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490 : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1464. {
  1465. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1466. RuntimeObject* ___source_3;
  1467. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1468. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1469. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1470. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* ___selector_5;
  1471. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1472. RuntimeObject* ___enumerator_6;
  1473. };
  1474. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  1475. struct WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1476. {
  1477. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1478. RuntimeObject* ___source_3;
  1479. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1480. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1481. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1482. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* ___selector_5;
  1483. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1484. RuntimeObject* ___enumerator_6;
  1485. };
  1486. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>
  1487. struct WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1488. {
  1489. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1490. RuntimeObject* ___source_3;
  1491. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1492. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1493. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1494. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* ___selector_5;
  1495. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1496. RuntimeObject* ___enumerator_6;
  1497. };
  1498. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>
  1499. struct WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30 : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1500. {
  1501. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1502. RuntimeObject* ___source_3;
  1503. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1504. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1505. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1506. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* ___selector_5;
  1507. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1508. RuntimeObject* ___enumerator_6;
  1509. };
  1510. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>
  1511. struct WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1512. {
  1513. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1514. RuntimeObject* ___source_3;
  1515. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1516. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1517. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1518. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* ___selector_5;
  1519. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1520. RuntimeObject* ___enumerator_6;
  1521. };
  1522. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>
  1523. struct WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794 : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1524. {
  1525. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1526. RuntimeObject* ___source_3;
  1527. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1528. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1529. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1530. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* ___selector_5;
  1531. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1532. RuntimeObject* ___enumerator_6;
  1533. };
  1534. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  1535. struct WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6 : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1536. {
  1537. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1538. RuntimeObject* ___source_3;
  1539. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1540. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1541. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1542. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* ___selector_5;
  1543. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1544. RuntimeObject* ___enumerator_6;
  1545. };
  1546. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>
  1547. struct WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1548. {
  1549. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1550. RuntimeObject* ___source_3;
  1551. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1552. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1553. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1554. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* ___selector_5;
  1555. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1556. RuntimeObject* ___enumerator_6;
  1557. };
  1558. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>
  1559. struct WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960 : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1560. {
  1561. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1562. RuntimeObject* ___source_3;
  1563. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1564. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1565. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1566. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* ___selector_5;
  1567. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1568. RuntimeObject* ___enumerator_6;
  1569. };
  1570. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>
  1571. struct WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4 : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1572. {
  1573. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1574. RuntimeObject* ___source_3;
  1575. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1576. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1577. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1578. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* ___selector_5;
  1579. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1580. RuntimeObject* ___enumerator_6;
  1581. };
  1582. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>
  1583. struct WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8 : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1584. {
  1585. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1586. RuntimeObject* ___source_3;
  1587. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1588. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1589. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1590. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* ___selector_5;
  1591. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1592. RuntimeObject* ___enumerator_6;
  1593. };
  1594. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  1595. struct WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41 : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1596. {
  1597. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1598. RuntimeObject* ___source_3;
  1599. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1600. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1601. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1602. Func_2_tC496704D554895234B1360058C5CC2D901C24957* ___selector_5;
  1603. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1604. RuntimeObject* ___enumerator_6;
  1605. };
  1606. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  1607. struct WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571 : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1608. {
  1609. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1610. RuntimeObject* ___source_3;
  1611. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1612. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1613. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1614. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* ___selector_5;
  1615. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1616. RuntimeObject* ___enumerator_6;
  1617. };
  1618. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  1619. struct WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68 : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1620. {
  1621. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1622. RuntimeObject* ___source_3;
  1623. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1624. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1625. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1626. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* ___selector_5;
  1627. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1628. RuntimeObject* ___enumerator_6;
  1629. };
  1630. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  1631. struct WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1632. {
  1633. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1634. RuntimeObject* ___source_3;
  1635. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1636. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1637. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1638. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* ___selector_5;
  1639. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1640. RuntimeObject* ___enumerator_6;
  1641. };
  1642. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  1643. struct WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509 : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1644. {
  1645. // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::source
  1646. RuntimeObject* ___source_3;
  1647. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::predicate
  1648. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1649. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::selector
  1650. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* ___selector_5;
  1651. // System.Collections.Generic.IEnumerator`1<TSource> System.Linq.Enumerable/WhereSelectEnumerableIterator`2::enumerator
  1652. RuntimeObject* ___enumerator_6;
  1653. };
  1654. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  1655. struct WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114 : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1656. {
  1657. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1658. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1659. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1660. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1661. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1662. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* ___selector_5;
  1663. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1664. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1665. };
  1666. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  1667. struct WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  1668. {
  1669. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1670. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1671. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1672. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1673. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1674. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* ___selector_5;
  1675. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1676. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1677. };
  1678. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  1679. struct WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1680. {
  1681. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1682. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1683. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1684. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1685. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1686. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* ___selector_5;
  1687. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1688. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1689. };
  1690. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  1691. struct WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6 : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  1692. {
  1693. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1694. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1695. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1696. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1697. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1698. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* ___selector_5;
  1699. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1700. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1701. };
  1702. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  1703. struct WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  1704. {
  1705. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1706. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1707. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1708. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1709. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1710. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* ___selector_5;
  1711. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1712. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1713. };
  1714. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  1715. struct WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1716. {
  1717. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1718. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1719. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1720. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1721. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1722. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* ___selector_5;
  1723. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1724. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1725. };
  1726. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  1727. struct WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1728. {
  1729. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1730. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1731. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1732. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1733. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1734. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* ___selector_5;
  1735. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1736. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1737. };
  1738. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  1739. struct WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9 : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1740. {
  1741. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1742. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___source_3;
  1743. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1744. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___predicate_4;
  1745. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1746. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* ___selector_5;
  1747. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1748. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 ___enumerator_6;
  1749. };
  1750. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  1751. struct WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1752. {
  1753. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1754. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1755. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1756. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1757. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1758. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* ___selector_5;
  1759. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1760. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1761. };
  1762. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>
  1763. struct WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80 : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1764. {
  1765. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1766. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1767. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1768. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1769. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1770. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* ___selector_5;
  1771. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1772. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1773. };
  1774. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>
  1775. struct WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1776. {
  1777. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1778. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1779. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1780. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1781. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1782. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* ___selector_5;
  1783. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1784. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1785. };
  1786. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>
  1787. struct WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820 : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1788. {
  1789. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1790. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1791. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1792. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1793. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1794. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* ___selector_5;
  1795. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1796. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1797. };
  1798. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>
  1799. struct WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1800. {
  1801. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1802. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___source_3;
  1803. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1804. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___predicate_4;
  1805. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1806. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* ___selector_5;
  1807. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1808. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B ___enumerator_6;
  1809. };
  1810. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  1811. struct WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1812. {
  1813. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1814. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1815. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1816. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1817. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1818. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* ___selector_5;
  1819. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1820. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1821. };
  1822. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>
  1823. struct WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1824. {
  1825. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1826. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1827. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1828. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1829. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1830. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* ___selector_5;
  1831. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1832. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1833. };
  1834. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>
  1835. struct WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44 : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1836. {
  1837. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1838. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1839. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1840. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1841. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1842. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* ___selector_5;
  1843. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1844. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1845. };
  1846. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>
  1847. struct WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65 : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1848. {
  1849. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1850. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1851. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1852. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1853. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1854. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* ___selector_5;
  1855. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1856. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1857. };
  1858. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>
  1859. struct WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1860. {
  1861. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1862. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___source_3;
  1863. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1864. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___predicate_4;
  1865. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1866. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* ___selector_5;
  1867. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1868. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A ___enumerator_6;
  1869. };
  1870. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  1871. struct WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC : public Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7
  1872. {
  1873. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1874. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1875. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1876. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1877. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1878. Func_2_tC496704D554895234B1360058C5CC2D901C24957* ___selector_5;
  1879. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1880. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1881. };
  1882. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  1883. struct WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328 : public Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA
  1884. {
  1885. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1886. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1887. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1888. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1889. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1890. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* ___selector_5;
  1891. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1892. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1893. };
  1894. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  1895. struct WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC : public Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE
  1896. {
  1897. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1898. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1899. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1900. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1901. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1902. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* ___selector_5;
  1903. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1904. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1905. };
  1906. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  1907. struct WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989 : public Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA
  1908. {
  1909. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1910. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1911. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1912. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1913. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1914. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* ___selector_5;
  1915. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1916. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1917. };
  1918. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  1919. struct WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D : public Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E
  1920. {
  1921. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1922. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1923. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1924. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1925. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1926. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* ___selector_5;
  1927. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1928. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1929. };
  1930. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  1931. struct WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452 : public Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC
  1932. {
  1933. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1934. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1935. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1936. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1937. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1938. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* ___selector_5;
  1939. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1940. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1941. };
  1942. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  1943. struct WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD : public Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E
  1944. {
  1945. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1946. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1947. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1948. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1949. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1950. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* ___selector_5;
  1951. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1952. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1953. };
  1954. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  1955. struct WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B : public Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E
  1956. {
  1957. // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::source
  1958. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___source_3;
  1959. // System.Func`2<TSource,System.Boolean> System.Linq.Enumerable/WhereSelectListIterator`2::predicate
  1960. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___predicate_4;
  1961. // System.Func`2<TSource,TResult> System.Linq.Enumerable/WhereSelectListIterator`2::selector
  1962. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* ___selector_5;
  1963. // System.Collections.Generic.List`1/Enumerator<TSource> System.Linq.Enumerable/WhereSelectListIterator`2::enumerator
  1964. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F ___enumerator_6;
  1965. };
  1966. // System.MulticastDelegate
  1967. struct MulticastDelegate_t : public Delegate_t
  1968. {
  1969. // System.Delegate[] System.MulticastDelegate::delegates
  1970. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
  1971. };
  1972. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  1973. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  1974. {
  1975. Delegate_t_marshaled_pinvoke** ___delegates_13;
  1976. };
  1977. // Native definition for COM marshalling of System.MulticastDelegate
  1978. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  1979. {
  1980. Delegate_t_marshaled_com** ___delegates_13;
  1981. };
  1982. // System.SystemException
  1983. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  1984. {
  1985. };
  1986. // System.Type
  1987. struct Type_t : public MemberInfo_t
  1988. {
  1989. // System.RuntimeTypeHandle System.Type::_impl
  1990. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
  1991. };
  1992. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  1993. struct Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943 : public MulticastDelegate_t
  1994. {
  1995. };
  1996. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Boolean>
  1997. struct Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858 : public MulticastDelegate_t
  1998. {
  1999. };
  2000. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  2001. struct Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133 : public MulticastDelegate_t
  2002. {
  2003. };
  2004. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  2005. struct Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF : public MulticastDelegate_t
  2006. {
  2007. };
  2008. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  2009. struct Func_2_tF42287527472FA89789873F068A87C60A00EC7D3 : public MulticastDelegate_t
  2010. {
  2011. };
  2012. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  2013. struct Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97 : public MulticastDelegate_t
  2014. {
  2015. };
  2016. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  2017. struct Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8 : public MulticastDelegate_t
  2018. {
  2019. };
  2020. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  2021. struct Func_2_t383ACA034986FB526C2536401996EF1CC0889958 : public MulticastDelegate_t
  2022. {
  2023. };
  2024. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  2025. struct Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B : public MulticastDelegate_t
  2026. {
  2027. };
  2028. // System.Func`2<System.ValueTuple`2<System.Object,System.Object>,System.Boolean>
  2029. struct Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4 : public MulticastDelegate_t
  2030. {
  2031. };
  2032. // System.Func`2<System.Char,System.Boolean>
  2033. struct Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F : public MulticastDelegate_t
  2034. {
  2035. };
  2036. // System.Func`2<System.Guid,System.Boolean>
  2037. struct Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA : public MulticastDelegate_t
  2038. {
  2039. };
  2040. // System.Func`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  2041. struct Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665 : public MulticastDelegate_t
  2042. {
  2043. };
  2044. // System.Func`2<System.Int32Enum,System.Boolean>
  2045. struct Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821 : public MulticastDelegate_t
  2046. {
  2047. };
  2048. // System.Func`2<System.Int32Enum,System.Char>
  2049. struct Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD : public MulticastDelegate_t
  2050. {
  2051. };
  2052. // System.Func`2<System.Int32Enum,System.Guid>
  2053. struct Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5 : public MulticastDelegate_t
  2054. {
  2055. };
  2056. // System.Func`2<System.Int32Enum,System.Object>
  2057. struct Func_2_tF12503C33FD184E465546C31F324F4C344B8975A : public MulticastDelegate_t
  2058. {
  2059. };
  2060. // System.Func`2<System.Int32Enum,System.Single>
  2061. struct Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975 : public MulticastDelegate_t
  2062. {
  2063. };
  2064. // System.Func`2<System.Int32Enum,UnityEngine.Vector2>
  2065. struct Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30 : public MulticastDelegate_t
  2066. {
  2067. };
  2068. // System.Func`2<System.Int32Enum,UnityEngine.Vector3>
  2069. struct Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B : public MulticastDelegate_t
  2070. {
  2071. };
  2072. // System.Func`2<System.Int32Enum,UnityEngine.Vector4>
  2073. struct Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890 : public MulticastDelegate_t
  2074. {
  2075. };
  2076. // System.Func`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  2077. struct Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0 : public MulticastDelegate_t
  2078. {
  2079. };
  2080. // System.Func`2<System.Object,System.Boolean>
  2081. struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00 : public MulticastDelegate_t
  2082. {
  2083. };
  2084. // System.Func`2<System.Object,System.Char>
  2085. struct Func_2_tA8F6CB924B4548E42010325397F16C187C098225 : public MulticastDelegate_t
  2086. {
  2087. };
  2088. // System.Func`2<System.Object,System.Guid>
  2089. struct Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838 : public MulticastDelegate_t
  2090. {
  2091. };
  2092. // System.Func`2<System.Object,System.Object>
  2093. struct Func_2_tACBF5A1656250800CE861707354491F0611F6624 : public MulticastDelegate_t
  2094. {
  2095. };
  2096. // System.Func`2<System.Object,System.Single>
  2097. struct Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12 : public MulticastDelegate_t
  2098. {
  2099. };
  2100. // System.Func`2<System.Object,UnityEngine.Vector2>
  2101. struct Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4 : public MulticastDelegate_t
  2102. {
  2103. };
  2104. // System.Func`2<System.Object,UnityEngine.Vector3>
  2105. struct Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E : public MulticastDelegate_t
  2106. {
  2107. };
  2108. // System.Func`2<System.Object,UnityEngine.Vector4>
  2109. struct Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302 : public MulticastDelegate_t
  2110. {
  2111. };
  2112. // System.Func`2<System.Single,System.Boolean>
  2113. struct Func_2_t49E998685259ADE759F9329BF66F20DE8667006E : public MulticastDelegate_t
  2114. {
  2115. };
  2116. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  2117. struct Func_2_tC496704D554895234B1360058C5CC2D901C24957 : public MulticastDelegate_t
  2118. {
  2119. };
  2120. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Boolean>
  2121. struct Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A : public MulticastDelegate_t
  2122. {
  2123. };
  2124. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  2125. struct Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C : public MulticastDelegate_t
  2126. {
  2127. };
  2128. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  2129. struct Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844 : public MulticastDelegate_t
  2130. {
  2131. };
  2132. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  2133. struct Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD : public MulticastDelegate_t
  2134. {
  2135. };
  2136. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  2137. struct Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D : public MulticastDelegate_t
  2138. {
  2139. };
  2140. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  2141. struct Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E : public MulticastDelegate_t
  2142. {
  2143. };
  2144. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  2145. struct Func_2_t208A44437DC9E09577E7BBCC73E296265723730A : public MulticastDelegate_t
  2146. {
  2147. };
  2148. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2149. struct Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40 : public MulticastDelegate_t
  2150. {
  2151. };
  2152. // System.Func`2<UnityEngine.Vector2,System.Boolean>
  2153. struct Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9 : public MulticastDelegate_t
  2154. {
  2155. };
  2156. // System.Func`2<UnityEngine.Vector3,System.Boolean>
  2157. struct Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E : public MulticastDelegate_t
  2158. {
  2159. };
  2160. // System.Func`2<UnityEngine.Vector4,System.Boolean>
  2161. struct Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9 : public MulticastDelegate_t
  2162. {
  2163. };
  2164. // System.InvalidOperationException
  2165. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  2166. {
  2167. };
  2168. // System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>
  2169. // System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>
  2170. // System.Linq.Enumerable/Iterator`1<System.Char>
  2171. // System.Linq.Enumerable/Iterator`1<System.Char>
  2172. // System.Linq.Enumerable/Iterator`1<System.Object>
  2173. // System.Linq.Enumerable/Iterator`1<System.Object>
  2174. // System.Linq.Enumerable/Iterator`1<System.Single>
  2175. // System.Linq.Enumerable/Iterator`1<System.Single>
  2176. // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  2177. struct List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB_StaticFields
  2178. {
  2179. // T[] System.Collections.Generic.List`1::s_emptyArray
  2180. KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ___s_emptyArray_5;
  2181. };
  2182. // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  2183. // System.Collections.Generic.List`1<System.Int32Enum>
  2184. struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576_StaticFields
  2185. {
  2186. // T[] System.Collections.Generic.List`1::s_emptyArray
  2187. Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* ___s_emptyArray_5;
  2188. };
  2189. // System.Collections.Generic.List`1<System.Int32Enum>
  2190. // System.Collections.Generic.List`1<System.Object>
  2191. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  2192. {
  2193. // T[] System.Collections.Generic.List`1::s_emptyArray
  2194. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
  2195. };
  2196. // System.Collections.Generic.List`1<System.Object>
  2197. // System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSelectorPart>
  2198. struct List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF_StaticFields
  2199. {
  2200. // T[] System.Collections.Generic.List`1::s_emptyArray
  2201. StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* ___s_emptyArray_5;
  2202. };
  2203. // System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSelectorPart>
  2204. // System.String
  2205. struct String_t_StaticFields
  2206. {
  2207. // System.String System.String::Empty
  2208. String_t* ___Empty_6;
  2209. };
  2210. // System.String
  2211. // Unity.VisualScripting.FullSerializer.fsBaseConverter
  2212. // Unity.VisualScripting.FullSerializer.fsBaseConverter
  2213. // Unity.VisualScripting.FullSerializer.fsData
  2214. struct fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_StaticFields
  2215. {
  2216. // Unity.VisualScripting.FullSerializer.fsData Unity.VisualScripting.FullSerializer.fsData::True
  2217. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___True_1;
  2218. // Unity.VisualScripting.FullSerializer.fsData Unity.VisualScripting.FullSerializer.fsData::False
  2219. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___False_2;
  2220. // Unity.VisualScripting.FullSerializer.fsData Unity.VisualScripting.FullSerializer.fsData::Null
  2221. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___Null_3;
  2222. };
  2223. // Unity.VisualScripting.FullSerializer.fsData
  2224. // System.Collections.Generic.List`1/Enumerator<System.Int32Enum>
  2225. // System.Collections.Generic.List`1/Enumerator<System.Int32Enum>
  2226. // System.Collections.Generic.List`1/Enumerator<System.Object>
  2227. // System.Collections.Generic.List`1/Enumerator<System.Object>
  2228. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  2229. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  2230. // System.ValueTuple`2<System.Object,System.Object>
  2231. // System.ValueTuple`2<System.Object,System.Object>
  2232. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>
  2233. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Char>
  2234. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>
  2235. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>
  2236. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Single>
  2237. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Single>
  2238. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  2239. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  2240. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  2241. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  2242. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  2243. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  2244. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>
  2245. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>
  2246. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>
  2247. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>
  2248. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>
  2249. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>
  2250. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>
  2251. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>
  2252. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>
  2253. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>
  2254. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>
  2255. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>
  2256. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  2257. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  2258. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  2259. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  2260. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  2261. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  2262. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>
  2263. struct fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39_StaticFields
  2264. {
  2265. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<T> Unity.VisualScripting.FullSerializer.Internal.fsOption`1::Empty
  2266. fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39 ___Empty_2;
  2267. };
  2268. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>
  2269. // System.Boolean
  2270. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  2271. {
  2272. // System.String System.Boolean::TrueString
  2273. String_t* ___TrueString_5;
  2274. // System.String System.Boolean::FalseString
  2275. String_t* ___FalseString_6;
  2276. };
  2277. // System.Boolean
  2278. // System.Char
  2279. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  2280. {
  2281. // System.Byte[] System.Char::s_categoryForLatin1
  2282. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
  2283. };
  2284. // System.Char
  2285. // System.Guid
  2286. struct Guid_t_StaticFields
  2287. {
  2288. // System.Guid System.Guid::Empty
  2289. Guid_t ___Empty_0;
  2290. };
  2291. // System.Guid
  2292. // System.Int32
  2293. // System.Int32
  2294. // UnityEngine.Keyframe
  2295. // UnityEngine.Keyframe
  2296. // UnityEngine.LayerMask
  2297. // UnityEngine.LayerMask
  2298. // UnityEngine.Rect
  2299. // UnityEngine.Rect
  2300. // System.Single
  2301. // System.Single
  2302. // UnityEngine.UIElements.StyleSelectorPart
  2303. // UnityEngine.UIElements.StyleSelectorPart
  2304. // UnityEngine.Vector2
  2305. struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
  2306. {
  2307. // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
  2308. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2;
  2309. // UnityEngine.Vector2 UnityEngine.Vector2::oneVector
  2310. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3;
  2311. // UnityEngine.Vector2 UnityEngine.Vector2::upVector
  2312. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4;
  2313. // UnityEngine.Vector2 UnityEngine.Vector2::downVector
  2314. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5;
  2315. // UnityEngine.Vector2 UnityEngine.Vector2::leftVector
  2316. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6;
  2317. // UnityEngine.Vector2 UnityEngine.Vector2::rightVector
  2318. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7;
  2319. // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
  2320. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8;
  2321. // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
  2322. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9;
  2323. };
  2324. // UnityEngine.Vector2
  2325. // UnityEngine.Vector3
  2326. struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
  2327. {
  2328. // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
  2329. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5;
  2330. // UnityEngine.Vector3 UnityEngine.Vector3::oneVector
  2331. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6;
  2332. // UnityEngine.Vector3 UnityEngine.Vector3::upVector
  2333. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7;
  2334. // UnityEngine.Vector3 UnityEngine.Vector3::downVector
  2335. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8;
  2336. // UnityEngine.Vector3 UnityEngine.Vector3::leftVector
  2337. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9;
  2338. // UnityEngine.Vector3 UnityEngine.Vector3::rightVector
  2339. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10;
  2340. // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
  2341. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11;
  2342. // UnityEngine.Vector3 UnityEngine.Vector3::backVector
  2343. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12;
  2344. // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
  2345. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13;
  2346. // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
  2347. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14;
  2348. };
  2349. // UnityEngine.Vector3
  2350. // UnityEngine.Vector4
  2351. struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
  2352. {
  2353. // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
  2354. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector_5;
  2355. // UnityEngine.Vector4 UnityEngine.Vector4::oneVector
  2356. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector_6;
  2357. // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
  2358. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector_7;
  2359. // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
  2360. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector_8;
  2361. };
  2362. // UnityEngine.Vector4
  2363. // System.Void
  2364. // System.Void
  2365. // Unity.VisualScripting.FullSerializer.fsDirectConverter
  2366. // Unity.VisualScripting.FullSerializer.fsDirectConverter
  2367. // Unity.VisualScripting.FullSerializer.fsResult
  2368. struct fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields
  2369. {
  2370. // System.String[] Unity.VisualScripting.FullSerializer.fsResult::EmptyStringArray
  2371. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___EmptyStringArray_0;
  2372. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsResult::Success
  2373. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 ___Success_3;
  2374. };
  2375. // Unity.VisualScripting.FullSerializer.fsResult
  2376. // Unity.VisualScripting.FullSerializer.Internal.fsVersionedType
  2377. // Unity.VisualScripting.FullSerializer.Internal.fsVersionedType
  2378. // System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  2379. // System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
  2380. // System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSelectorPart>
  2381. // System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSelectorPart>
  2382. // System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>
  2383. // System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>
  2384. // System.Linq.Enumerable/Iterator`1<System.Guid>
  2385. // System.Linq.Enumerable/Iterator`1<System.Guid>
  2386. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>
  2387. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>
  2388. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>
  2389. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>
  2390. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>
  2391. // System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>
  2392. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>
  2393. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>
  2394. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>
  2395. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>
  2396. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>
  2397. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>
  2398. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>
  2399. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>
  2400. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>
  2401. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>
  2402. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>
  2403. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>
  2404. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>
  2405. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>
  2406. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>
  2407. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>
  2408. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>
  2409. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>
  2410. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>
  2411. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>
  2412. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>
  2413. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>
  2414. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>
  2415. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>
  2416. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>
  2417. // Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>
  2418. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>
  2419. struct fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A_StaticFields
  2420. {
  2421. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<T> Unity.VisualScripting.FullSerializer.Internal.fsOption`1::Empty
  2422. fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A ___Empty_2;
  2423. };
  2424. // Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>
  2425. // UnityEngine.Bounds
  2426. // UnityEngine.Bounds
  2427. // UnityEngine.Ray
  2428. // UnityEngine.Ray
  2429. // UnityEngine.Ray2D
  2430. // UnityEngine.Ray2D
  2431. // System.RuntimeTypeHandle
  2432. // System.RuntimeTypeHandle
  2433. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.ValueTuple`2<System.Object,System.Object>>
  2434. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.ValueTuple`2<System.Object,System.Object>>
  2435. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Guid>
  2436. // System.Linq.Enumerable/WhereEnumerableIterator`1<System.Guid>
  2437. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector2>
  2438. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector2>
  2439. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector3>
  2440. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector3>
  2441. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector4>
  2442. // System.Linq.Enumerable/WhereEnumerableIterator`1<UnityEngine.Vector4>
  2443. // System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2444. // System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2445. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  2446. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  2447. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  2448. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  2449. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  2450. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  2451. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  2452. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  2453. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  2454. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  2455. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  2456. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  2457. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>
  2458. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>
  2459. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>
  2460. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>
  2461. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>
  2462. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>
  2463. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>
  2464. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>
  2465. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  2466. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  2467. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>
  2468. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>
  2469. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>
  2470. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>
  2471. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>
  2472. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>
  2473. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>
  2474. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>
  2475. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  2476. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  2477. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  2478. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  2479. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  2480. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  2481. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  2482. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  2483. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2484. // System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2485. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  2486. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  2487. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  2488. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  2489. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  2490. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  2491. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  2492. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  2493. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  2494. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  2495. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  2496. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  2497. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  2498. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  2499. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  2500. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  2501. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  2502. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  2503. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>
  2504. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>
  2505. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>
  2506. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>
  2507. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>
  2508. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>
  2509. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>
  2510. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>
  2511. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  2512. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  2513. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>
  2514. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>
  2515. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>
  2516. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>
  2517. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>
  2518. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>
  2519. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>
  2520. // System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>
  2521. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  2522. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  2523. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  2524. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  2525. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  2526. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  2527. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  2528. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  2529. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  2530. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  2531. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  2532. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  2533. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  2534. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  2535. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2536. // System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2537. // System.Type
  2538. struct Type_t_StaticFields
  2539. {
  2540. // System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
  2541. Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
  2542. // System.Char System.Type::Delimiter
  2543. Il2CppChar ___Delimiter_1;
  2544. // System.Type[] System.Type::EmptyTypes
  2545. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
  2546. // System.Object System.Type::Missing
  2547. RuntimeObject* ___Missing_3;
  2548. // System.Reflection.MemberFilter System.Type::FilterAttribute
  2549. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
  2550. // System.Reflection.MemberFilter System.Type::FilterName
  2551. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
  2552. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  2553. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
  2554. };
  2555. // System.Type
  2556. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  2557. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>
  2558. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Boolean>
  2559. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Boolean>
  2560. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  2561. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>
  2562. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  2563. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>
  2564. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  2565. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
  2566. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  2567. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>
  2568. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  2569. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>
  2570. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  2571. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>
  2572. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  2573. // System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>
  2574. // System.Func`2<System.ValueTuple`2<System.Object,System.Object>,System.Boolean>
  2575. // System.Func`2<System.ValueTuple`2<System.Object,System.Object>,System.Boolean>
  2576. // System.Func`2<System.Char,System.Boolean>
  2577. // System.Func`2<System.Char,System.Boolean>
  2578. // System.Func`2<System.Guid,System.Boolean>
  2579. // System.Func`2<System.Guid,System.Boolean>
  2580. // System.Func`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  2581. // System.Func`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>
  2582. // System.Func`2<System.Int32Enum,System.Boolean>
  2583. // System.Func`2<System.Int32Enum,System.Boolean>
  2584. // System.Func`2<System.Int32Enum,System.Char>
  2585. // System.Func`2<System.Int32Enum,System.Char>
  2586. // System.Func`2<System.Int32Enum,System.Guid>
  2587. // System.Func`2<System.Int32Enum,System.Guid>
  2588. // System.Func`2<System.Int32Enum,System.Object>
  2589. // System.Func`2<System.Int32Enum,System.Object>
  2590. // System.Func`2<System.Int32Enum,System.Single>
  2591. // System.Func`2<System.Int32Enum,System.Single>
  2592. // System.Func`2<System.Int32Enum,UnityEngine.Vector2>
  2593. // System.Func`2<System.Int32Enum,UnityEngine.Vector2>
  2594. // System.Func`2<System.Int32Enum,UnityEngine.Vector3>
  2595. // System.Func`2<System.Int32Enum,UnityEngine.Vector3>
  2596. // System.Func`2<System.Int32Enum,UnityEngine.Vector4>
  2597. // System.Func`2<System.Int32Enum,UnityEngine.Vector4>
  2598. // System.Func`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  2599. // System.Func`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  2600. // System.Func`2<System.Object,System.Boolean>
  2601. // System.Func`2<System.Object,System.Boolean>
  2602. // System.Func`2<System.Object,System.Char>
  2603. // System.Func`2<System.Object,System.Char>
  2604. // System.Func`2<System.Object,System.Guid>
  2605. // System.Func`2<System.Object,System.Guid>
  2606. // System.Func`2<System.Object,System.Object>
  2607. // System.Func`2<System.Object,System.Object>
  2608. // System.Func`2<System.Object,System.Single>
  2609. // System.Func`2<System.Object,System.Single>
  2610. // System.Func`2<System.Object,UnityEngine.Vector2>
  2611. // System.Func`2<System.Object,UnityEngine.Vector2>
  2612. // System.Func`2<System.Object,UnityEngine.Vector3>
  2613. // System.Func`2<System.Object,UnityEngine.Vector3>
  2614. // System.Func`2<System.Object,UnityEngine.Vector4>
  2615. // System.Func`2<System.Object,UnityEngine.Vector4>
  2616. // System.Func`2<System.Single,System.Boolean>
  2617. // System.Func`2<System.Single,System.Boolean>
  2618. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  2619. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>
  2620. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Boolean>
  2621. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Boolean>
  2622. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  2623. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>
  2624. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  2625. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>
  2626. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  2627. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>
  2628. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  2629. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>
  2630. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  2631. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>
  2632. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  2633. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>
  2634. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2635. // System.Func`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>
  2636. // System.Func`2<UnityEngine.Vector2,System.Boolean>
  2637. // System.Func`2<UnityEngine.Vector2,System.Boolean>
  2638. // System.Func`2<UnityEngine.Vector3,System.Boolean>
  2639. // System.Func`2<UnityEngine.Vector3,System.Boolean>
  2640. // System.Func`2<UnityEngine.Vector4,System.Boolean>
  2641. // System.Func`2<UnityEngine.Vector4,System.Boolean>
  2642. // System.InvalidOperationException
  2643. // System.InvalidOperationException
  2644. #ifdef __clang__
  2645. #pragma clang diagnostic pop
  2646. #endif
  2647. // UnityEngine.UIElements.StyleSelectorPart[]
  2648. struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B : public RuntimeArray
  2649. {
  2650. ALIGN_FIELD (8) StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 m_Items[1];
  2651. inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 GetAt(il2cpp_array_size_t index) const
  2652. {
  2653. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2654. return m_Items[index];
  2655. }
  2656. inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* GetAddressAt(il2cpp_array_size_t index)
  2657. {
  2658. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2659. return m_Items + index;
  2660. }
  2661. inline void SetAt(il2cpp_array_size_t index, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 value)
  2662. {
  2663. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2664. m_Items[index] = value;
  2665. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Value_0), (void*)NULL);
  2666. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  2667. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___tempData_2), (void*)NULL);
  2668. #endif
  2669. }
  2670. inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 GetAtUnchecked(il2cpp_array_size_t index) const
  2671. {
  2672. return m_Items[index];
  2673. }
  2674. inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* GetAddressAtUnchecked(il2cpp_array_size_t index)
  2675. {
  2676. return m_Items + index;
  2677. }
  2678. inline void SetAtUnchecked(il2cpp_array_size_t index, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 value)
  2679. {
  2680. m_Items[index] = value;
  2681. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Value_0), (void*)NULL);
  2682. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  2683. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___tempData_2), (void*)NULL);
  2684. #endif
  2685. }
  2686. };
  2687. // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
  2688. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_gshared_inline (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* __this, const RuntimeMethod* method) ;
  2689. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
  2690. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39_gshared (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* __this, const RuntimeMethod* method) ;
  2691. // T System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::get_Current()
  2692. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_gshared_inline (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method) ;
  2693. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNext()
  2694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5_gshared (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method) ;
  2695. // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
  2696. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
  2697. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
  2698. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
  2699. // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSelectorPart>::get_Current()
  2700. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_gshared_inline (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* __this, const RuntimeMethod* method) ;
  2701. // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSelectorPart>::MoveNext()
  2702. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E_gshared (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* __this, const RuntimeMethod* method) ;
  2703. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
  2704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
  2705. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_HasValue()
  2706. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool fsOption_1_get_HasValue_m0EE517C63CCC2EB7F9323634BCC0B6D05A3E1ED3_gshared_inline (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method) ;
  2707. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_IsEmpty()
  2708. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool fsOption_1_get_IsEmpty_m7509A7114E8516228E8A7EE55378407191AA79AC_gshared (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method) ;
  2709. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_Value()
  2710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41_gshared (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method) ;
  2711. // System.Void Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::.ctor(T)
  2712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsOption_1__ctor_m7F96B2B092F9644737D70EDA54F6B15A499EDBA8_gshared (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
  2713. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_HasValue()
  2714. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool fsOption_1_get_HasValue_mA83E56B4674C678E7C760EABB73397EF37356E6F_gshared_inline (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method) ;
  2715. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_IsEmpty()
  2716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool fsOption_1_get_IsEmpty_m95C6343EC3B5E180C487DF2F28019391A5B6672E_gshared (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method) ;
  2717. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_Value()
  2718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241_gshared (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method) ;
  2719. // System.Void Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::.ctor(T)
  2720. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsOption_1__ctor_m22E0CD4999637C5B1CCFAD980FD29F2FFE3963B6_gshared (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 ___0_value, const RuntimeMethod* method) ;
  2721. // T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
  2722. inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* __this, const RuntimeMethod* method)
  2723. {
  2724. return (( KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 (*) (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*, const RuntimeMethod*))Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_gshared_inline)(__this, method);
  2725. }
  2726. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
  2727. inline bool Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39 (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* __this, const RuntimeMethod* method)
  2728. {
  2729. return (( bool (*) (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*, const RuntimeMethod*))Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39_gshared)(__this, method);
  2730. }
  2731. // T System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::get_Current()
  2732. inline int32_t Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method)
  2733. {
  2734. return (( int32_t (*) (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*, const RuntimeMethod*))Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_gshared_inline)(__this, method);
  2735. }
  2736. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNext()
  2737. inline bool Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5 (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method)
  2738. {
  2739. return (( bool (*) (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*, const RuntimeMethod*))Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5_gshared)(__this, method);
  2740. }
  2741. // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
  2742. inline RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
  2743. {
  2744. return (( RuntimeObject* (*) (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
  2745. }
  2746. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
  2747. inline bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
  2748. {
  2749. return (( bool (*) (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
  2750. }
  2751. // T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSelectorPart>::get_Current()
  2752. inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* __this, const RuntimeMethod* method)
  2753. {
  2754. return (( StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 (*) (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*, const RuntimeMethod*))Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_gshared_inline)(__this, method);
  2755. }
  2756. // System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSelectorPart>::MoveNext()
  2757. inline bool Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* __this, const RuntimeMethod* method)
  2758. {
  2759. return (( bool (*) (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*, const RuntimeMethod*))Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E_gshared)(__this, method);
  2760. }
  2761. // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
  2762. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
  2763. // System.Void System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>::.ctor()
  2764. inline void Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04 (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* __this, const RuntimeMethod* method)
  2765. {
  2766. (( void (*) (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
  2767. }
  2768. // System.Void Unity.VisualScripting.FullSerializer.fsData::.ctor(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>)
  2769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781 (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* __this, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* ___0_dict, const RuntimeMethod* method) ;
  2770. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsBaseConverter::CheckType(Unity.VisualScripting.FullSerializer.fsData,Unity.VisualScripting.FullSerializer.fsDataType)
  2771. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32 (fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, int32_t ___1_type, const RuntimeMethod* method) ;
  2772. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsResult::op_Addition(Unity.VisualScripting.FullSerializer.fsResult,Unity.VisualScripting.FullSerializer.fsResult)
  2773. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C (fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 ___0_a, fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 ___1_b, const RuntimeMethod* method) ;
  2774. // System.Boolean Unity.VisualScripting.FullSerializer.fsResult::get_Failed()
  2775. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB (fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974* __this, const RuntimeMethod* method) ;
  2776. // System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData> Unity.VisualScripting.FullSerializer.fsData::get_AsDictionary()
  2777. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86 (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* __this, const RuntimeMethod* method) ;
  2778. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter::.ctor()
  2779. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1 (fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668* __this, const RuntimeMethod* method) ;
  2780. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_HasValue()
  2781. inline bool fsOption_1_get_HasValue_m0EE517C63CCC2EB7F9323634BCC0B6D05A3E1ED3_inline (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method)
  2782. {
  2783. return (( bool (*) (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*, const RuntimeMethod*))fsOption_1_get_HasValue_m0EE517C63CCC2EB7F9323634BCC0B6D05A3E1ED3_gshared_inline)(__this, method);
  2784. }
  2785. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_IsEmpty()
  2786. inline bool fsOption_1_get_IsEmpty_m7509A7114E8516228E8A7EE55378407191AA79AC (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method)
  2787. {
  2788. return (( bool (*) (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*, const RuntimeMethod*))fsOption_1_get_IsEmpty_m7509A7114E8516228E8A7EE55378407191AA79AC_gshared)(__this, method);
  2789. }
  2790. // System.Void System.InvalidOperationException::.ctor(System.String)
  2791. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  2792. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_Value()
  2793. inline RuntimeObject* fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41 (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method)
  2794. {
  2795. return (( RuntimeObject* (*) (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*, const RuntimeMethod*))fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41_gshared)(__this, method);
  2796. }
  2797. // System.Void Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::.ctor(T)
  2798. inline void fsOption_1__ctor_m7F96B2B092F9644737D70EDA54F6B15A499EDBA8 (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  2799. {
  2800. (( void (*) (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*, RuntimeObject*, const RuntimeMethod*))fsOption_1__ctor_m7F96B2B092F9644737D70EDA54F6B15A499EDBA8_gshared)(__this, ___0_value, method);
  2801. }
  2802. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_HasValue()
  2803. inline bool fsOption_1_get_HasValue_mA83E56B4674C678E7C760EABB73397EF37356E6F_inline (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method)
  2804. {
  2805. return (( bool (*) (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*, const RuntimeMethod*))fsOption_1_get_HasValue_mA83E56B4674C678E7C760EABB73397EF37356E6F_gshared_inline)(__this, method);
  2806. }
  2807. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_IsEmpty()
  2808. inline bool fsOption_1_get_IsEmpty_m95C6343EC3B5E180C487DF2F28019391A5B6672E (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method)
  2809. {
  2810. return (( bool (*) (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*, const RuntimeMethod*))fsOption_1_get_IsEmpty_m95C6343EC3B5E180C487DF2F28019391A5B6672E_gshared)(__this, method);
  2811. }
  2812. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_Value()
  2813. inline fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241 (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method)
  2814. {
  2815. return (( fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 (*) (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*, const RuntimeMethod*))fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241_gshared)(__this, method);
  2816. }
  2817. // System.Void Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::.ctor(T)
  2818. inline void fsOption_1__ctor_m22E0CD4999637C5B1CCFAD980FD29F2FFE3963B6 (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 ___0_value, const RuntimeMethod* method)
  2819. {
  2820. (( void (*) (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*, fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8, const RuntimeMethod*))fsOption_1__ctor_m22E0CD4999637C5B1CCFAD980FD29F2FFE3963B6_gshared)(__this, ___0_value, method);
  2821. }
  2822. #ifdef __clang__
  2823. #pragma clang diagnostic push
  2824. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2825. #pragma clang diagnostic ignored "-Wunused-variable"
  2826. #endif
  2827. // System.Void System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::.ctor(TSource[],System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  2828. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectArrayIterator_2__ctor_m9AF25AFBE6A1C2C83BAB19ADA6D0AA9A72F15FF2_gshared (WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5* __this, StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* ___2_selector, const RuntimeMethod* method)
  2829. {
  2830. {
  2831. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  2832. StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_0 = ___0_source;
  2833. __this->___source_3 = L_0;
  2834. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  2835. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  2836. __this->___predicate_4 = L_1;
  2837. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  2838. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_2 = ___2_selector;
  2839. __this->___selector_5 = L_2;
  2840. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  2841. return;
  2842. }
  2843. }
  2844. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::Clone()
  2845. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectArrayIterator_2_Clone_m10A3EB46C67283125456F2BEDF80AA0AA7ECCBAC_gshared (WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5* __this, const RuntimeMethod* method)
  2846. {
  2847. {
  2848. StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_0 = (StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B*)__this->___source_3;
  2849. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  2850. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_2 = (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*)__this->___selector_5;
  2851. WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5* L_3 = (WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  2852. NullCheck(L_3);
  2853. (( void (*) (WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5*, StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  2854. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  2855. }
  2856. }
  2857. // System.Boolean System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::MoveNext()
  2858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectArrayIterator_2_MoveNext_m2E7A7FF0D8592D2B572757AA10DBFAF877697846_gshared (WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5* __this, const RuntimeMethod* method)
  2859. {
  2860. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_0;
  2861. memset((&V_0), 0, sizeof(V_0));
  2862. {
  2863. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  2864. if ((!(((uint32_t)L_0) == ((uint32_t)1))))
  2865. {
  2866. goto IL_006b;
  2867. }
  2868. }
  2869. {
  2870. goto IL_0055;
  2871. }
  2872. IL_000b:
  2873. {
  2874. StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_1 = (StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B*)__this->___source_3;
  2875. int32_t L_2 = (int32_t)__this->___index_6;
  2876. NullCheck(L_1);
  2877. int32_t L_3 = L_2;
  2878. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  2879. V_0 = L_4;
  2880. int32_t L_5 = (int32_t)__this->___index_6;
  2881. __this->___index_6 = ((int32_t)il2cpp_codegen_add(L_5, 1));
  2882. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_6 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  2883. if (!L_6)
  2884. {
  2885. goto IL_0041;
  2886. }
  2887. }
  2888. {
  2889. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  2890. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_8 = V_0;
  2891. NullCheck(L_7);
  2892. bool L_9;
  2893. L_9 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  2894. if (!L_9)
  2895. {
  2896. goto IL_0055;
  2897. }
  2898. }
  2899. IL_0041:
  2900. {
  2901. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_10 = (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*)__this->___selector_5;
  2902. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_11 = V_0;
  2903. NullCheck(L_10);
  2904. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_12;
  2905. L_12 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 7)))(L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
  2906. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_12;
  2907. return (bool)1;
  2908. }
  2909. IL_0055:
  2910. {
  2911. int32_t L_13 = (int32_t)__this->___index_6;
  2912. StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_14 = (StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B*)__this->___source_3;
  2913. NullCheck(L_14);
  2914. if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
  2915. {
  2916. goto IL_000b;
  2917. }
  2918. }
  2919. {
  2920. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  2921. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  2922. }
  2923. IL_006b:
  2924. {
  2925. return (bool)0;
  2926. }
  2927. }
  2928. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectArrayIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  2929. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectArrayIterator_2_Where_mAB9C1075B1D0A4BD782D6F59EF36CB2D026EF25C_gshared (WhereSelectArrayIterator_2_t722E15F0F60986FB69B5A65EA692B68C40831CD5* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  2930. {
  2931. {
  2932. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  2933. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 10));
  2934. NullCheck(L_1);
  2935. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  2936. return (RuntimeObject*)L_1;
  2937. }
  2938. }
  2939. #ifdef __clang__
  2940. #pragma clang diagnostic pop
  2941. #endif
  2942. #ifdef __clang__
  2943. #pragma clang diagnostic push
  2944. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2945. #pragma clang diagnostic ignored "-Wunused-variable"
  2946. #endif
  2947. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  2948. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m3F4C5FA6BDC6A74E1C8A3D385F9D54842135C86C_gshared (WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* ___2_selector, const RuntimeMethod* method)
  2949. {
  2950. {
  2951. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  2952. RuntimeObject* L_0 = ___0_source;
  2953. __this->___source_3 = L_0;
  2954. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  2955. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  2956. __this->___predicate_4 = L_1;
  2957. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  2958. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* L_2 = ___2_selector;
  2959. __this->___selector_5 = L_2;
  2960. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  2961. return;
  2962. }
  2963. }
  2964. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  2965. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectEnumerableIterator_2_Clone_m1F797B5E43E3380A27BB60CD6B64EF93F5A88634_gshared (WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C* __this, const RuntimeMethod* method)
  2966. {
  2967. {
  2968. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  2969. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  2970. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* L_2 = (Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*)__this->___selector_5;
  2971. WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C* L_3 = (WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  2972. NullCheck(L_3);
  2973. (( void (*) (WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  2974. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  2975. }
  2976. }
  2977. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::Dispose()
  2978. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m0B3F890AED10882A153448219CF2EAE3ED7D9A66_gshared (WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C* __this, const RuntimeMethod* method)
  2979. {
  2980. static bool s_Il2CppMethodInitialized;
  2981. if (!s_Il2CppMethodInitialized)
  2982. {
  2983. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  2984. s_Il2CppMethodInitialized = true;
  2985. }
  2986. {
  2987. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  2988. if (!L_0)
  2989. {
  2990. goto IL_0013;
  2991. }
  2992. }
  2993. {
  2994. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  2995. NullCheck((RuntimeObject*)L_1);
  2996. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  2997. }
  2998. IL_0013:
  2999. {
  3000. __this->___enumerator_6 = (RuntimeObject*)NULL;
  3001. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  3002. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  3003. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  3004. return;
  3005. }
  3006. }
  3007. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  3008. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mCC8CC269A6D15B31CDD882B189DF9961ED89DA3C_gshared (WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C* __this, const RuntimeMethod* method)
  3009. {
  3010. static bool s_Il2CppMethodInitialized;
  3011. if (!s_Il2CppMethodInitialized)
  3012. {
  3013. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  3014. s_Il2CppMethodInitialized = true;
  3015. }
  3016. int32_t V_0 = 0;
  3017. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  3018. memset((&V_1), 0, sizeof(V_1));
  3019. {
  3020. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  3021. V_0 = L_0;
  3022. int32_t L_1 = V_0;
  3023. if ((((int32_t)L_1) == ((int32_t)1)))
  3024. {
  3025. goto IL_0011;
  3026. }
  3027. }
  3028. {
  3029. int32_t L_2 = V_0;
  3030. if ((((int32_t)L_2) == ((int32_t)2)))
  3031. {
  3032. goto IL_0061;
  3033. }
  3034. }
  3035. {
  3036. goto IL_0074;
  3037. }
  3038. IL_0011:
  3039. {
  3040. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  3041. NullCheck(L_3);
  3042. RuntimeObject* L_4;
  3043. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  3044. __this->___enumerator_6 = L_4;
  3045. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  3046. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  3047. goto IL_0061;
  3048. }
  3049. IL_002b:
  3050. {
  3051. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  3052. NullCheck(L_5);
  3053. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  3054. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  3055. V_1 = L_6;
  3056. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3057. if (!L_7)
  3058. {
  3059. goto IL_004d;
  3060. }
  3061. }
  3062. {
  3063. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3064. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  3065. NullCheck(L_8);
  3066. bool L_10;
  3067. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  3068. if (!L_10)
  3069. {
  3070. goto IL_0061;
  3071. }
  3072. }
  3073. IL_004d:
  3074. {
  3075. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* L_11 = (Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*)__this->___selector_5;
  3076. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  3077. NullCheck(L_11);
  3078. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  3079. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  3080. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  3081. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  3082. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3083. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  3084. #endif
  3085. return (bool)1;
  3086. }
  3087. IL_0061:
  3088. {
  3089. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  3090. NullCheck((RuntimeObject*)L_14);
  3091. bool L_15;
  3092. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  3093. if (L_15)
  3094. {
  3095. goto IL_002b;
  3096. }
  3097. }
  3098. {
  3099. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  3100. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  3101. }
  3102. IL_0074:
  3103. {
  3104. return (bool)0;
  3105. }
  3106. }
  3107. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  3108. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mF7AE26B28AD30D39DF676FA6BBFF1AA800112D79_gshared (WhereSelectEnumerableIterator_2_t947242C08D41E01962BCF6022B0A094044DA7F2C* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  3109. {
  3110. {
  3111. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  3112. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  3113. NullCheck(L_1);
  3114. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  3115. return (RuntimeObject*)L_1;
  3116. }
  3117. }
  3118. #ifdef __clang__
  3119. #pragma clang diagnostic pop
  3120. #endif
  3121. #ifdef __clang__
  3122. #pragma clang diagnostic push
  3123. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3124. #pragma clang diagnostic ignored "-Wunused-variable"
  3125. #endif
  3126. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  3127. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m8C8096C45F17003B5F75468A5976EB5876516990_gshared (WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* ___2_selector, const RuntimeMethod* method)
  3128. {
  3129. {
  3130. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  3131. RuntimeObject* L_0 = ___0_source;
  3132. __this->___source_3 = L_0;
  3133. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  3134. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  3135. __this->___predicate_4 = L_1;
  3136. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  3137. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* L_2 = ___2_selector;
  3138. __this->___selector_5 = L_2;
  3139. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  3140. return;
  3141. }
  3142. }
  3143. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::Clone()
  3144. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectEnumerableIterator_2_Clone_m44A22F6DD1E5011194E09F7FB8BD6AD62918E8EE_gshared (WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15* __this, const RuntimeMethod* method)
  3145. {
  3146. {
  3147. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  3148. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3149. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* L_2 = (Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*)__this->___selector_5;
  3150. WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15* L_3 = (WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  3151. NullCheck(L_3);
  3152. (( void (*) (WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  3153. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  3154. }
  3155. }
  3156. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::Dispose()
  3157. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m86C4AC371D63F2FE2F64E2D01B9310358E0B5334_gshared (WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15* __this, const RuntimeMethod* method)
  3158. {
  3159. static bool s_Il2CppMethodInitialized;
  3160. if (!s_Il2CppMethodInitialized)
  3161. {
  3162. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3163. s_Il2CppMethodInitialized = true;
  3164. }
  3165. {
  3166. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  3167. if (!L_0)
  3168. {
  3169. goto IL_0013;
  3170. }
  3171. }
  3172. {
  3173. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  3174. NullCheck((RuntimeObject*)L_1);
  3175. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  3176. }
  3177. IL_0013:
  3178. {
  3179. __this->___enumerator_6 = (RuntimeObject*)NULL;
  3180. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  3181. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  3182. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  3183. return;
  3184. }
  3185. }
  3186. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::MoveNext()
  3187. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m3E40C95C2ABEEB1856E0A09138AE1A0EAFE2CB96_gshared (WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15* __this, const RuntimeMethod* method)
  3188. {
  3189. static bool s_Il2CppMethodInitialized;
  3190. if (!s_Il2CppMethodInitialized)
  3191. {
  3192. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  3193. s_Il2CppMethodInitialized = true;
  3194. }
  3195. int32_t V_0 = 0;
  3196. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  3197. memset((&V_1), 0, sizeof(V_1));
  3198. {
  3199. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  3200. V_0 = L_0;
  3201. int32_t L_1 = V_0;
  3202. if ((((int32_t)L_1) == ((int32_t)1)))
  3203. {
  3204. goto IL_0011;
  3205. }
  3206. }
  3207. {
  3208. int32_t L_2 = V_0;
  3209. if ((((int32_t)L_2) == ((int32_t)2)))
  3210. {
  3211. goto IL_0061;
  3212. }
  3213. }
  3214. {
  3215. goto IL_0074;
  3216. }
  3217. IL_0011:
  3218. {
  3219. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  3220. NullCheck(L_3);
  3221. RuntimeObject* L_4;
  3222. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  3223. __this->___enumerator_6 = L_4;
  3224. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  3225. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  3226. goto IL_0061;
  3227. }
  3228. IL_002b:
  3229. {
  3230. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  3231. NullCheck(L_5);
  3232. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  3233. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  3234. V_1 = L_6;
  3235. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3236. if (!L_7)
  3237. {
  3238. goto IL_004d;
  3239. }
  3240. }
  3241. {
  3242. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3243. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  3244. NullCheck(L_8);
  3245. bool L_10;
  3246. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  3247. if (!L_10)
  3248. {
  3249. goto IL_0061;
  3250. }
  3251. }
  3252. IL_004d:
  3253. {
  3254. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* L_11 = (Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*)__this->___selector_5;
  3255. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  3256. NullCheck(L_11);
  3257. Il2CppChar L_13;
  3258. L_13 = (( Il2CppChar (*) (Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  3259. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  3260. return (bool)1;
  3261. }
  3262. IL_0061:
  3263. {
  3264. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  3265. NullCheck((RuntimeObject*)L_14);
  3266. bool L_15;
  3267. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  3268. if (L_15)
  3269. {
  3270. goto IL_002b;
  3271. }
  3272. }
  3273. {
  3274. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  3275. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  3276. }
  3277. IL_0074:
  3278. {
  3279. return (bool)0;
  3280. }
  3281. }
  3282. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  3283. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mE3FEF437E2C89817ECF8822EF45665F5FC14E8F7_gshared (WhereSelectEnumerableIterator_2_t3B874FE1101BA028CEDC18B0C2E1B3A2EA782B15* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  3284. {
  3285. {
  3286. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  3287. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  3288. NullCheck(L_1);
  3289. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  3290. return (RuntimeObject*)L_1;
  3291. }
  3292. }
  3293. #ifdef __clang__
  3294. #pragma clang diagnostic pop
  3295. #endif
  3296. #ifdef __clang__
  3297. #pragma clang diagnostic push
  3298. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3299. #pragma clang diagnostic ignored "-Wunused-variable"
  3300. #endif
  3301. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  3302. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mE4A3706CE8602F7AD779081455BF5009C3531533_gshared (WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* ___2_selector, const RuntimeMethod* method)
  3303. {
  3304. {
  3305. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  3306. RuntimeObject* L_0 = ___0_source;
  3307. __this->___source_3 = L_0;
  3308. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  3309. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  3310. __this->___predicate_4 = L_1;
  3311. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  3312. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* L_2 = ___2_selector;
  3313. __this->___selector_5 = L_2;
  3314. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  3315. return;
  3316. }
  3317. }
  3318. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::Clone()
  3319. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectEnumerableIterator_2_Clone_mAC9E9AC33CA4409EB3AF99CB7AA7F92D886C8FAF_gshared (WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF* __this, const RuntimeMethod* method)
  3320. {
  3321. {
  3322. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  3323. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3324. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* L_2 = (Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*)__this->___selector_5;
  3325. WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF* L_3 = (WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  3326. NullCheck(L_3);
  3327. (( void (*) (WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  3328. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  3329. }
  3330. }
  3331. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::Dispose()
  3332. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m4ED66062DFE87198563C6293669FE5C817A71C49_gshared (WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF* __this, const RuntimeMethod* method)
  3333. {
  3334. static bool s_Il2CppMethodInitialized;
  3335. if (!s_Il2CppMethodInitialized)
  3336. {
  3337. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3338. s_Il2CppMethodInitialized = true;
  3339. }
  3340. {
  3341. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  3342. if (!L_0)
  3343. {
  3344. goto IL_0013;
  3345. }
  3346. }
  3347. {
  3348. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  3349. NullCheck((RuntimeObject*)L_1);
  3350. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  3351. }
  3352. IL_0013:
  3353. {
  3354. __this->___enumerator_6 = (RuntimeObject*)NULL;
  3355. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  3356. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  3357. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  3358. return;
  3359. }
  3360. }
  3361. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::MoveNext()
  3362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m4C9480911A5D3E2F9EEA7425F641AD22C1D2B036_gshared (WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF* __this, const RuntimeMethod* method)
  3363. {
  3364. static bool s_Il2CppMethodInitialized;
  3365. if (!s_Il2CppMethodInitialized)
  3366. {
  3367. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  3368. s_Il2CppMethodInitialized = true;
  3369. }
  3370. int32_t V_0 = 0;
  3371. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  3372. memset((&V_1), 0, sizeof(V_1));
  3373. {
  3374. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  3375. V_0 = L_0;
  3376. int32_t L_1 = V_0;
  3377. if ((((int32_t)L_1) == ((int32_t)1)))
  3378. {
  3379. goto IL_0011;
  3380. }
  3381. }
  3382. {
  3383. int32_t L_2 = V_0;
  3384. if ((((int32_t)L_2) == ((int32_t)2)))
  3385. {
  3386. goto IL_0061;
  3387. }
  3388. }
  3389. {
  3390. goto IL_0074;
  3391. }
  3392. IL_0011:
  3393. {
  3394. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  3395. NullCheck(L_3);
  3396. RuntimeObject* L_4;
  3397. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  3398. __this->___enumerator_6 = L_4;
  3399. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  3400. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  3401. goto IL_0061;
  3402. }
  3403. IL_002b:
  3404. {
  3405. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  3406. NullCheck(L_5);
  3407. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  3408. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  3409. V_1 = L_6;
  3410. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3411. if (!L_7)
  3412. {
  3413. goto IL_004d;
  3414. }
  3415. }
  3416. {
  3417. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3418. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  3419. NullCheck(L_8);
  3420. bool L_10;
  3421. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  3422. if (!L_10)
  3423. {
  3424. goto IL_0061;
  3425. }
  3426. }
  3427. IL_004d:
  3428. {
  3429. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* L_11 = (Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*)__this->___selector_5;
  3430. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  3431. NullCheck(L_11);
  3432. Guid_t L_13;
  3433. L_13 = (( Guid_t (*) (Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  3434. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  3435. return (bool)1;
  3436. }
  3437. IL_0061:
  3438. {
  3439. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  3440. NullCheck((RuntimeObject*)L_14);
  3441. bool L_15;
  3442. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  3443. if (L_15)
  3444. {
  3445. goto IL_002b;
  3446. }
  3447. }
  3448. {
  3449. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  3450. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  3451. }
  3452. IL_0074:
  3453. {
  3454. return (bool)0;
  3455. }
  3456. }
  3457. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  3458. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m4EB72EE547A88B254D523522AEFDF899DA72E0AD_gshared (WhereSelectEnumerableIterator_2_t950D44733B0F372E0F51DE9CCB63EB75399428CF* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  3459. {
  3460. {
  3461. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  3462. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  3463. NullCheck(L_1);
  3464. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  3465. return (RuntimeObject*)L_1;
  3466. }
  3467. }
  3468. #ifdef __clang__
  3469. #pragma clang diagnostic pop
  3470. #endif
  3471. #ifdef __clang__
  3472. #pragma clang diagnostic push
  3473. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3474. #pragma clang diagnostic ignored "-Wunused-variable"
  3475. #endif
  3476. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  3477. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m446D9DFA8D6FD6C06663AC92CA2E2E70549BF6DC_gshared (WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* ___2_selector, const RuntimeMethod* method)
  3478. {
  3479. {
  3480. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  3481. RuntimeObject* L_0 = ___0_source;
  3482. __this->___source_3 = L_0;
  3483. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  3484. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  3485. __this->___predicate_4 = L_1;
  3486. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  3487. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* L_2 = ___2_selector;
  3488. __this->___selector_5 = L_2;
  3489. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  3490. return;
  3491. }
  3492. }
  3493. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::Clone()
  3494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectEnumerableIterator_2_Clone_m38097E44A3899778665A2ED17EF993951AABACA6_gshared (WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF* __this, const RuntimeMethod* method)
  3495. {
  3496. {
  3497. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  3498. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3499. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* L_2 = (Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*)__this->___selector_5;
  3500. WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF* L_3 = (WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  3501. NullCheck(L_3);
  3502. (( void (*) (WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  3503. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  3504. }
  3505. }
  3506. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::Dispose()
  3507. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m2D6490DE58CC42B00A164EA99EE03CE9551051A3_gshared (WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF* __this, const RuntimeMethod* method)
  3508. {
  3509. static bool s_Il2CppMethodInitialized;
  3510. if (!s_Il2CppMethodInitialized)
  3511. {
  3512. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3513. s_Il2CppMethodInitialized = true;
  3514. }
  3515. {
  3516. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  3517. if (!L_0)
  3518. {
  3519. goto IL_0013;
  3520. }
  3521. }
  3522. {
  3523. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  3524. NullCheck((RuntimeObject*)L_1);
  3525. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  3526. }
  3527. IL_0013:
  3528. {
  3529. __this->___enumerator_6 = (RuntimeObject*)NULL;
  3530. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  3531. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  3532. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  3533. return;
  3534. }
  3535. }
  3536. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::MoveNext()
  3537. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m4CCCD4BF2BF54F02643E872F3754E9DFCE7C7653_gshared (WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF* __this, const RuntimeMethod* method)
  3538. {
  3539. static bool s_Il2CppMethodInitialized;
  3540. if (!s_Il2CppMethodInitialized)
  3541. {
  3542. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  3543. s_Il2CppMethodInitialized = true;
  3544. }
  3545. int32_t V_0 = 0;
  3546. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  3547. memset((&V_1), 0, sizeof(V_1));
  3548. {
  3549. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  3550. V_0 = L_0;
  3551. int32_t L_1 = V_0;
  3552. if ((((int32_t)L_1) == ((int32_t)1)))
  3553. {
  3554. goto IL_0011;
  3555. }
  3556. }
  3557. {
  3558. int32_t L_2 = V_0;
  3559. if ((((int32_t)L_2) == ((int32_t)2)))
  3560. {
  3561. goto IL_0061;
  3562. }
  3563. }
  3564. {
  3565. goto IL_0074;
  3566. }
  3567. IL_0011:
  3568. {
  3569. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  3570. NullCheck(L_3);
  3571. RuntimeObject* L_4;
  3572. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  3573. __this->___enumerator_6 = L_4;
  3574. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  3575. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  3576. goto IL_0061;
  3577. }
  3578. IL_002b:
  3579. {
  3580. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  3581. NullCheck(L_5);
  3582. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  3583. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  3584. V_1 = L_6;
  3585. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3586. if (!L_7)
  3587. {
  3588. goto IL_004d;
  3589. }
  3590. }
  3591. {
  3592. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3593. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  3594. NullCheck(L_8);
  3595. bool L_10;
  3596. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  3597. if (!L_10)
  3598. {
  3599. goto IL_0061;
  3600. }
  3601. }
  3602. IL_004d:
  3603. {
  3604. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* L_11 = (Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*)__this->___selector_5;
  3605. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  3606. NullCheck(L_11);
  3607. RuntimeObject* L_13;
  3608. L_13 = (( RuntimeObject* (*) (Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  3609. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  3610. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  3611. return (bool)1;
  3612. }
  3613. IL_0061:
  3614. {
  3615. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  3616. NullCheck((RuntimeObject*)L_14);
  3617. bool L_15;
  3618. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  3619. if (L_15)
  3620. {
  3621. goto IL_002b;
  3622. }
  3623. }
  3624. {
  3625. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  3626. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  3627. }
  3628. IL_0074:
  3629. {
  3630. return (bool)0;
  3631. }
  3632. }
  3633. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  3634. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m1B6D30667B96E95ACD733216CAE8B6EBF7C491AD_gshared (WhereSelectEnumerableIterator_2_tB95A85F4BD200CD46FC8E0FF660D1BBC2AA388FF* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  3635. {
  3636. {
  3637. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  3638. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  3639. NullCheck(L_1);
  3640. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  3641. return (RuntimeObject*)L_1;
  3642. }
  3643. }
  3644. #ifdef __clang__
  3645. #pragma clang diagnostic pop
  3646. #endif
  3647. #ifdef __clang__
  3648. #pragma clang diagnostic push
  3649. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3650. #pragma clang diagnostic ignored "-Wunused-variable"
  3651. #endif
  3652. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  3653. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m145672E094FE8F195CF4A31E7AEEEE8892E1A67D_gshared (WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* ___2_selector, const RuntimeMethod* method)
  3654. {
  3655. {
  3656. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  3657. RuntimeObject* L_0 = ___0_source;
  3658. __this->___source_3 = L_0;
  3659. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  3660. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  3661. __this->___predicate_4 = L_1;
  3662. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  3663. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* L_2 = ___2_selector;
  3664. __this->___selector_5 = L_2;
  3665. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  3666. return;
  3667. }
  3668. }
  3669. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::Clone()
  3670. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectEnumerableIterator_2_Clone_mBC3EEE76D2C04E0358AF7943C42C68CA333F3107_gshared (WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE* __this, const RuntimeMethod* method)
  3671. {
  3672. {
  3673. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  3674. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3675. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* L_2 = (Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*)__this->___selector_5;
  3676. WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE* L_3 = (WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  3677. NullCheck(L_3);
  3678. (( void (*) (WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  3679. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  3680. }
  3681. }
  3682. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::Dispose()
  3683. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m3B591695D811A6A4EAADBD1E296200E81EA61517_gshared (WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE* __this, const RuntimeMethod* method)
  3684. {
  3685. static bool s_Il2CppMethodInitialized;
  3686. if (!s_Il2CppMethodInitialized)
  3687. {
  3688. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3689. s_Il2CppMethodInitialized = true;
  3690. }
  3691. {
  3692. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  3693. if (!L_0)
  3694. {
  3695. goto IL_0013;
  3696. }
  3697. }
  3698. {
  3699. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  3700. NullCheck((RuntimeObject*)L_1);
  3701. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  3702. }
  3703. IL_0013:
  3704. {
  3705. __this->___enumerator_6 = (RuntimeObject*)NULL;
  3706. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  3707. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  3708. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  3709. return;
  3710. }
  3711. }
  3712. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::MoveNext()
  3713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mF06D0D533B51B90B9046ED04C4BB9673A1BA7DE5_gshared (WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE* __this, const RuntimeMethod* method)
  3714. {
  3715. static bool s_Il2CppMethodInitialized;
  3716. if (!s_Il2CppMethodInitialized)
  3717. {
  3718. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  3719. s_Il2CppMethodInitialized = true;
  3720. }
  3721. int32_t V_0 = 0;
  3722. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  3723. memset((&V_1), 0, sizeof(V_1));
  3724. {
  3725. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  3726. V_0 = L_0;
  3727. int32_t L_1 = V_0;
  3728. if ((((int32_t)L_1) == ((int32_t)1)))
  3729. {
  3730. goto IL_0011;
  3731. }
  3732. }
  3733. {
  3734. int32_t L_2 = V_0;
  3735. if ((((int32_t)L_2) == ((int32_t)2)))
  3736. {
  3737. goto IL_0061;
  3738. }
  3739. }
  3740. {
  3741. goto IL_0074;
  3742. }
  3743. IL_0011:
  3744. {
  3745. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  3746. NullCheck(L_3);
  3747. RuntimeObject* L_4;
  3748. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  3749. __this->___enumerator_6 = L_4;
  3750. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  3751. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  3752. goto IL_0061;
  3753. }
  3754. IL_002b:
  3755. {
  3756. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  3757. NullCheck(L_5);
  3758. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  3759. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  3760. V_1 = L_6;
  3761. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3762. if (!L_7)
  3763. {
  3764. goto IL_004d;
  3765. }
  3766. }
  3767. {
  3768. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3769. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  3770. NullCheck(L_8);
  3771. bool L_10;
  3772. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  3773. if (!L_10)
  3774. {
  3775. goto IL_0061;
  3776. }
  3777. }
  3778. IL_004d:
  3779. {
  3780. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* L_11 = (Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*)__this->___selector_5;
  3781. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  3782. NullCheck(L_11);
  3783. float L_13;
  3784. L_13 = (( float (*) (Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  3785. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  3786. return (bool)1;
  3787. }
  3788. IL_0061:
  3789. {
  3790. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  3791. NullCheck((RuntimeObject*)L_14);
  3792. bool L_15;
  3793. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  3794. if (L_15)
  3795. {
  3796. goto IL_002b;
  3797. }
  3798. }
  3799. {
  3800. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  3801. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  3802. }
  3803. IL_0074:
  3804. {
  3805. return (bool)0;
  3806. }
  3807. }
  3808. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  3809. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mEBF19A88F2EE440A280E7149C0F50180BE8A21E4_gshared (WhereSelectEnumerableIterator_2_t1158AEA4C92D21BC2F515B10FAF8BD3D6773CEEE* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  3810. {
  3811. {
  3812. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  3813. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  3814. NullCheck(L_1);
  3815. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  3816. return (RuntimeObject*)L_1;
  3817. }
  3818. }
  3819. #ifdef __clang__
  3820. #pragma clang diagnostic pop
  3821. #endif
  3822. #ifdef __clang__
  3823. #pragma clang diagnostic push
  3824. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3825. #pragma clang diagnostic ignored "-Wunused-variable"
  3826. #endif
  3827. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  3828. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m894A70C24B5C6A267975C5F519FD62508DF98F3A_gshared (WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* ___2_selector, const RuntimeMethod* method)
  3829. {
  3830. {
  3831. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  3832. RuntimeObject* L_0 = ___0_source;
  3833. __this->___source_3 = L_0;
  3834. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  3835. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  3836. __this->___predicate_4 = L_1;
  3837. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  3838. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* L_2 = ___2_selector;
  3839. __this->___selector_5 = L_2;
  3840. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  3841. return;
  3842. }
  3843. }
  3844. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::Clone()
  3845. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectEnumerableIterator_2_Clone_m58FAF340C2AB7317838C84BFDB810DA788F7D2E3_gshared (WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3* __this, const RuntimeMethod* method)
  3846. {
  3847. {
  3848. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  3849. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3850. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* L_2 = (Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*)__this->___selector_5;
  3851. WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3* L_3 = (WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  3852. NullCheck(L_3);
  3853. (( void (*) (WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  3854. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  3855. }
  3856. }
  3857. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::Dispose()
  3858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m7178201A199AEBC5EC3042C9F1DF54E9B1A32DDE_gshared (WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3* __this, const RuntimeMethod* method)
  3859. {
  3860. static bool s_Il2CppMethodInitialized;
  3861. if (!s_Il2CppMethodInitialized)
  3862. {
  3863. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3864. s_Il2CppMethodInitialized = true;
  3865. }
  3866. {
  3867. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  3868. if (!L_0)
  3869. {
  3870. goto IL_0013;
  3871. }
  3872. }
  3873. {
  3874. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  3875. NullCheck((RuntimeObject*)L_1);
  3876. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  3877. }
  3878. IL_0013:
  3879. {
  3880. __this->___enumerator_6 = (RuntimeObject*)NULL;
  3881. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  3882. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  3883. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  3884. return;
  3885. }
  3886. }
  3887. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::MoveNext()
  3888. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m696016C0A5212F0F5B51BB614A67E726000CB2B8_gshared (WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3* __this, const RuntimeMethod* method)
  3889. {
  3890. static bool s_Il2CppMethodInitialized;
  3891. if (!s_Il2CppMethodInitialized)
  3892. {
  3893. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  3894. s_Il2CppMethodInitialized = true;
  3895. }
  3896. int32_t V_0 = 0;
  3897. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  3898. memset((&V_1), 0, sizeof(V_1));
  3899. {
  3900. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  3901. V_0 = L_0;
  3902. int32_t L_1 = V_0;
  3903. if ((((int32_t)L_1) == ((int32_t)1)))
  3904. {
  3905. goto IL_0011;
  3906. }
  3907. }
  3908. {
  3909. int32_t L_2 = V_0;
  3910. if ((((int32_t)L_2) == ((int32_t)2)))
  3911. {
  3912. goto IL_0061;
  3913. }
  3914. }
  3915. {
  3916. goto IL_0074;
  3917. }
  3918. IL_0011:
  3919. {
  3920. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  3921. NullCheck(L_3);
  3922. RuntimeObject* L_4;
  3923. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  3924. __this->___enumerator_6 = L_4;
  3925. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  3926. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  3927. goto IL_0061;
  3928. }
  3929. IL_002b:
  3930. {
  3931. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  3932. NullCheck(L_5);
  3933. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  3934. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  3935. V_1 = L_6;
  3936. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3937. if (!L_7)
  3938. {
  3939. goto IL_004d;
  3940. }
  3941. }
  3942. {
  3943. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  3944. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  3945. NullCheck(L_8);
  3946. bool L_10;
  3947. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  3948. if (!L_10)
  3949. {
  3950. goto IL_0061;
  3951. }
  3952. }
  3953. IL_004d:
  3954. {
  3955. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* L_11 = (Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*)__this->___selector_5;
  3956. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  3957. NullCheck(L_11);
  3958. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  3959. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  3960. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  3961. return (bool)1;
  3962. }
  3963. IL_0061:
  3964. {
  3965. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  3966. NullCheck((RuntimeObject*)L_14);
  3967. bool L_15;
  3968. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  3969. if (L_15)
  3970. {
  3971. goto IL_002b;
  3972. }
  3973. }
  3974. {
  3975. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  3976. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  3977. }
  3978. IL_0074:
  3979. {
  3980. return (bool)0;
  3981. }
  3982. }
  3983. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  3984. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mCDB5576C154E8C184B94EAD836E346B16D53A829_gshared (WhereSelectEnumerableIterator_2_t23C519127A9341EA395EA719D04E49D881B8C0D3* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  3985. {
  3986. {
  3987. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  3988. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  3989. NullCheck(L_1);
  3990. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  3991. return (RuntimeObject*)L_1;
  3992. }
  3993. }
  3994. #ifdef __clang__
  3995. #pragma clang diagnostic pop
  3996. #endif
  3997. #ifdef __clang__
  3998. #pragma clang diagnostic push
  3999. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4000. #pragma clang diagnostic ignored "-Wunused-variable"
  4001. #endif
  4002. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  4003. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mD7CA7AD8323A61B8AEF22D33963B2D72872F0306_gshared (WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t383ACA034986FB526C2536401996EF1CC0889958* ___2_selector, const RuntimeMethod* method)
  4004. {
  4005. {
  4006. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  4007. RuntimeObject* L_0 = ___0_source;
  4008. __this->___source_3 = L_0;
  4009. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  4010. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  4011. __this->___predicate_4 = L_1;
  4012. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  4013. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* L_2 = ___2_selector;
  4014. __this->___selector_5 = L_2;
  4015. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  4016. return;
  4017. }
  4018. }
  4019. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::Clone()
  4020. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectEnumerableIterator_2_Clone_m5CBFD736C582FB8A798EE7A0A3C543EB185D03BF_gshared (WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535* __this, const RuntimeMethod* method)
  4021. {
  4022. {
  4023. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  4024. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  4025. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* L_2 = (Func_2_t383ACA034986FB526C2536401996EF1CC0889958*)__this->___selector_5;
  4026. WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535* L_3 = (WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  4027. NullCheck(L_3);
  4028. (( void (*) (WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t383ACA034986FB526C2536401996EF1CC0889958*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  4029. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  4030. }
  4031. }
  4032. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::Dispose()
  4033. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m80FE6A298C9D8809B7DBDF38153B256D1CC2F7DE_gshared (WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535* __this, const RuntimeMethod* method)
  4034. {
  4035. static bool s_Il2CppMethodInitialized;
  4036. if (!s_Il2CppMethodInitialized)
  4037. {
  4038. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4039. s_Il2CppMethodInitialized = true;
  4040. }
  4041. {
  4042. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  4043. if (!L_0)
  4044. {
  4045. goto IL_0013;
  4046. }
  4047. }
  4048. {
  4049. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  4050. NullCheck((RuntimeObject*)L_1);
  4051. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  4052. }
  4053. IL_0013:
  4054. {
  4055. __this->___enumerator_6 = (RuntimeObject*)NULL;
  4056. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  4057. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  4058. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  4059. return;
  4060. }
  4061. }
  4062. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::MoveNext()
  4063. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m04CE72AAD82BCFDEBBFEE58C1D585775C3F045FB_gshared (WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535* __this, const RuntimeMethod* method)
  4064. {
  4065. static bool s_Il2CppMethodInitialized;
  4066. if (!s_Il2CppMethodInitialized)
  4067. {
  4068. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  4069. s_Il2CppMethodInitialized = true;
  4070. }
  4071. int32_t V_0 = 0;
  4072. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  4073. memset((&V_1), 0, sizeof(V_1));
  4074. {
  4075. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  4076. V_0 = L_0;
  4077. int32_t L_1 = V_0;
  4078. if ((((int32_t)L_1) == ((int32_t)1)))
  4079. {
  4080. goto IL_0011;
  4081. }
  4082. }
  4083. {
  4084. int32_t L_2 = V_0;
  4085. if ((((int32_t)L_2) == ((int32_t)2)))
  4086. {
  4087. goto IL_0061;
  4088. }
  4089. }
  4090. {
  4091. goto IL_0074;
  4092. }
  4093. IL_0011:
  4094. {
  4095. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  4096. NullCheck(L_3);
  4097. RuntimeObject* L_4;
  4098. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  4099. __this->___enumerator_6 = L_4;
  4100. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  4101. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  4102. goto IL_0061;
  4103. }
  4104. IL_002b:
  4105. {
  4106. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  4107. NullCheck(L_5);
  4108. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  4109. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  4110. V_1 = L_6;
  4111. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  4112. if (!L_7)
  4113. {
  4114. goto IL_004d;
  4115. }
  4116. }
  4117. {
  4118. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  4119. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  4120. NullCheck(L_8);
  4121. bool L_10;
  4122. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  4123. if (!L_10)
  4124. {
  4125. goto IL_0061;
  4126. }
  4127. }
  4128. IL_004d:
  4129. {
  4130. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* L_11 = (Func_2_t383ACA034986FB526C2536401996EF1CC0889958*)__this->___selector_5;
  4131. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  4132. NullCheck(L_11);
  4133. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  4134. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t383ACA034986FB526C2536401996EF1CC0889958*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  4135. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  4136. return (bool)1;
  4137. }
  4138. IL_0061:
  4139. {
  4140. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  4141. NullCheck((RuntimeObject*)L_14);
  4142. bool L_15;
  4143. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  4144. if (L_15)
  4145. {
  4146. goto IL_002b;
  4147. }
  4148. }
  4149. {
  4150. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  4151. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  4152. }
  4153. IL_0074:
  4154. {
  4155. return (bool)0;
  4156. }
  4157. }
  4158. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  4159. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mEE01ECB062C7AB05E897F23945C147BBA1864E6A_gshared (WhereSelectEnumerableIterator_2_tA0122246DFCFED406BEB7902CFF5637381929535* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  4160. {
  4161. {
  4162. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  4163. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  4164. NullCheck(L_1);
  4165. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  4166. return (RuntimeObject*)L_1;
  4167. }
  4168. }
  4169. #ifdef __clang__
  4170. #pragma clang diagnostic pop
  4171. #endif
  4172. #ifdef __clang__
  4173. #pragma clang diagnostic push
  4174. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4175. #pragma clang diagnostic ignored "-Wunused-variable"
  4176. #endif
  4177. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  4178. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mF21938F404973490AF63AD4BEE2242491CE7D8D0_gshared (WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490* __this, RuntimeObject* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* ___2_selector, const RuntimeMethod* method)
  4179. {
  4180. {
  4181. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  4182. RuntimeObject* L_0 = ___0_source;
  4183. __this->___source_3 = L_0;
  4184. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  4185. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  4186. __this->___predicate_4 = L_1;
  4187. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  4188. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* L_2 = ___2_selector;
  4189. __this->___selector_5 = L_2;
  4190. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  4191. return;
  4192. }
  4193. }
  4194. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::Clone()
  4195. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectEnumerableIterator_2_Clone_m7BF5A19F66CAA28021EE855A026791DC240B0DD1_gshared (WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490* __this, const RuntimeMethod* method)
  4196. {
  4197. {
  4198. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  4199. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  4200. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* L_2 = (Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*)__this->___selector_5;
  4201. WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490* L_3 = (WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  4202. NullCheck(L_3);
  4203. (( void (*) (WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490*, RuntimeObject*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  4204. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  4205. }
  4206. }
  4207. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::Dispose()
  4208. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m913F27239FC12AB93BA80418C30C0DFF68CB6370_gshared (WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490* __this, const RuntimeMethod* method)
  4209. {
  4210. static bool s_Il2CppMethodInitialized;
  4211. if (!s_Il2CppMethodInitialized)
  4212. {
  4213. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4214. s_Il2CppMethodInitialized = true;
  4215. }
  4216. {
  4217. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  4218. if (!L_0)
  4219. {
  4220. goto IL_0013;
  4221. }
  4222. }
  4223. {
  4224. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  4225. NullCheck((RuntimeObject*)L_1);
  4226. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  4227. }
  4228. IL_0013:
  4229. {
  4230. __this->___enumerator_6 = (RuntimeObject*)NULL;
  4231. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  4232. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  4233. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  4234. return;
  4235. }
  4236. }
  4237. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::MoveNext()
  4238. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m28F1049B6A21AAEA3AC33111C840F69AA5CBA3C0_gshared (WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490* __this, const RuntimeMethod* method)
  4239. {
  4240. static bool s_Il2CppMethodInitialized;
  4241. if (!s_Il2CppMethodInitialized)
  4242. {
  4243. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  4244. s_Il2CppMethodInitialized = true;
  4245. }
  4246. int32_t V_0 = 0;
  4247. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  4248. memset((&V_1), 0, sizeof(V_1));
  4249. {
  4250. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  4251. V_0 = L_0;
  4252. int32_t L_1 = V_0;
  4253. if ((((int32_t)L_1) == ((int32_t)1)))
  4254. {
  4255. goto IL_0011;
  4256. }
  4257. }
  4258. {
  4259. int32_t L_2 = V_0;
  4260. if ((((int32_t)L_2) == ((int32_t)2)))
  4261. {
  4262. goto IL_0061;
  4263. }
  4264. }
  4265. {
  4266. goto IL_0074;
  4267. }
  4268. IL_0011:
  4269. {
  4270. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  4271. NullCheck(L_3);
  4272. RuntimeObject* L_4;
  4273. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  4274. __this->___enumerator_6 = L_4;
  4275. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  4276. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  4277. goto IL_0061;
  4278. }
  4279. IL_002b:
  4280. {
  4281. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  4282. NullCheck(L_5);
  4283. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  4284. L_6 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  4285. V_1 = L_6;
  4286. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  4287. if (!L_7)
  4288. {
  4289. goto IL_004d;
  4290. }
  4291. }
  4292. {
  4293. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  4294. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  4295. NullCheck(L_8);
  4296. bool L_10;
  4297. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  4298. if (!L_10)
  4299. {
  4300. goto IL_0061;
  4301. }
  4302. }
  4303. IL_004d:
  4304. {
  4305. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* L_11 = (Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*)__this->___selector_5;
  4306. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  4307. NullCheck(L_11);
  4308. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  4309. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  4310. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  4311. return (bool)1;
  4312. }
  4313. IL_0061:
  4314. {
  4315. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  4316. NullCheck((RuntimeObject*)L_14);
  4317. bool L_15;
  4318. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  4319. if (L_15)
  4320. {
  4321. goto IL_002b;
  4322. }
  4323. }
  4324. {
  4325. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  4326. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  4327. }
  4328. IL_0074:
  4329. {
  4330. return (bool)0;
  4331. }
  4332. }
  4333. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  4334. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m64F0B6AE39AFE8E76C5E3EFC05FFAF6C369189EB_gshared (WhereSelectEnumerableIterator_2_tD933911F35667EEF9B56504EFDFD7815309BF490* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  4335. {
  4336. {
  4337. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  4338. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  4339. NullCheck(L_1);
  4340. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  4341. return (RuntimeObject*)L_1;
  4342. }
  4343. }
  4344. #ifdef __clang__
  4345. #pragma clang diagnostic pop
  4346. #endif
  4347. #ifdef __clang__
  4348. #pragma clang diagnostic push
  4349. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4350. #pragma clang diagnostic ignored "-Wunused-variable"
  4351. #endif
  4352. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  4353. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m2ED2A8EEE7ECF71C4BA16F5C5298D29BF0BF3C7A_gshared (WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* ___2_selector, const RuntimeMethod* method)
  4354. {
  4355. {
  4356. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  4357. RuntimeObject* L_0 = ___0_source;
  4358. __this->___source_3 = L_0;
  4359. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  4360. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  4361. __this->___predicate_4 = L_1;
  4362. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  4363. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* L_2 = ___2_selector;
  4364. __this->___selector_5 = L_2;
  4365. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  4366. return;
  4367. }
  4368. }
  4369. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  4370. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectEnumerableIterator_2_Clone_mFD0830F8FC7501BEC0F6693DF423A6C796E62FF0_gshared (WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B* __this, const RuntimeMethod* method)
  4371. {
  4372. {
  4373. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  4374. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4375. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* L_2 = (Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*)__this->___selector_5;
  4376. WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B* L_3 = (WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  4377. NullCheck(L_3);
  4378. (( void (*) (WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  4379. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  4380. }
  4381. }
  4382. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::Dispose()
  4383. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m88CBC0A1ED96055D22041DDE7C714A59B0B8EF84_gshared (WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B* __this, const RuntimeMethod* method)
  4384. {
  4385. static bool s_Il2CppMethodInitialized;
  4386. if (!s_Il2CppMethodInitialized)
  4387. {
  4388. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4389. s_Il2CppMethodInitialized = true;
  4390. }
  4391. {
  4392. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  4393. if (!L_0)
  4394. {
  4395. goto IL_0013;
  4396. }
  4397. }
  4398. {
  4399. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  4400. NullCheck((RuntimeObject*)L_1);
  4401. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  4402. }
  4403. IL_0013:
  4404. {
  4405. __this->___enumerator_6 = (RuntimeObject*)NULL;
  4406. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  4407. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  4408. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  4409. return;
  4410. }
  4411. }
  4412. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  4413. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mC86FE18D298FE76C08C44D1B7E3F1F37B0FDF005_gshared (WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B* __this, const RuntimeMethod* method)
  4414. {
  4415. static bool s_Il2CppMethodInitialized;
  4416. if (!s_Il2CppMethodInitialized)
  4417. {
  4418. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  4419. s_Il2CppMethodInitialized = true;
  4420. }
  4421. int32_t V_0 = 0;
  4422. int32_t V_1 = 0;
  4423. {
  4424. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  4425. V_0 = L_0;
  4426. int32_t L_1 = V_0;
  4427. if ((((int32_t)L_1) == ((int32_t)1)))
  4428. {
  4429. goto IL_0011;
  4430. }
  4431. }
  4432. {
  4433. int32_t L_2 = V_0;
  4434. if ((((int32_t)L_2) == ((int32_t)2)))
  4435. {
  4436. goto IL_0061;
  4437. }
  4438. }
  4439. {
  4440. goto IL_0074;
  4441. }
  4442. IL_0011:
  4443. {
  4444. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  4445. NullCheck(L_3);
  4446. RuntimeObject* L_4;
  4447. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  4448. __this->___enumerator_6 = L_4;
  4449. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  4450. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  4451. goto IL_0061;
  4452. }
  4453. IL_002b:
  4454. {
  4455. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  4456. NullCheck(L_5);
  4457. int32_t L_6;
  4458. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  4459. V_1 = L_6;
  4460. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4461. if (!L_7)
  4462. {
  4463. goto IL_004d;
  4464. }
  4465. }
  4466. {
  4467. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4468. int32_t L_9 = V_1;
  4469. NullCheck(L_8);
  4470. bool L_10;
  4471. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  4472. if (!L_10)
  4473. {
  4474. goto IL_0061;
  4475. }
  4476. }
  4477. IL_004d:
  4478. {
  4479. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* L_11 = (Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*)__this->___selector_5;
  4480. int32_t L_12 = V_1;
  4481. NullCheck(L_11);
  4482. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  4483. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  4484. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  4485. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  4486. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  4487. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  4488. #endif
  4489. return (bool)1;
  4490. }
  4491. IL_0061:
  4492. {
  4493. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  4494. NullCheck((RuntimeObject*)L_14);
  4495. bool L_15;
  4496. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  4497. if (L_15)
  4498. {
  4499. goto IL_002b;
  4500. }
  4501. }
  4502. {
  4503. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  4504. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  4505. }
  4506. IL_0074:
  4507. {
  4508. return (bool)0;
  4509. }
  4510. }
  4511. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  4512. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m7515B8144D95A4D1FDED7B6D1B36D310A0BE72DC_gshared (WhereSelectEnumerableIterator_2_t7C09781637F77A11F7F0552F14F2B94B4F7B274B* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  4513. {
  4514. {
  4515. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  4516. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  4517. NullCheck(L_1);
  4518. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  4519. return (RuntimeObject*)L_1;
  4520. }
  4521. }
  4522. #ifdef __clang__
  4523. #pragma clang diagnostic pop
  4524. #endif
  4525. #ifdef __clang__
  4526. #pragma clang diagnostic push
  4527. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4528. #pragma clang diagnostic ignored "-Wunused-variable"
  4529. #endif
  4530. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  4531. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m4036368329E5D67DA0810FC0085D5D4E7CF47AA2_gshared (WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* ___2_selector, const RuntimeMethod* method)
  4532. {
  4533. {
  4534. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  4535. RuntimeObject* L_0 = ___0_source;
  4536. __this->___source_3 = L_0;
  4537. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  4538. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  4539. __this->___predicate_4 = L_1;
  4540. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  4541. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* L_2 = ___2_selector;
  4542. __this->___selector_5 = L_2;
  4543. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  4544. return;
  4545. }
  4546. }
  4547. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>::Clone()
  4548. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectEnumerableIterator_2_Clone_m5A6DCB34425FF498A88213D5640556E7BE5DDD34_gshared (WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD* __this, const RuntimeMethod* method)
  4549. {
  4550. {
  4551. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  4552. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4553. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* L_2 = (Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*)__this->___selector_5;
  4554. WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD* L_3 = (WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  4555. NullCheck(L_3);
  4556. (( void (*) (WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  4557. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  4558. }
  4559. }
  4560. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>::Dispose()
  4561. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mD507B3AA970C19B3EE6A4AD79A965802EF262152_gshared (WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD* __this, const RuntimeMethod* method)
  4562. {
  4563. static bool s_Il2CppMethodInitialized;
  4564. if (!s_Il2CppMethodInitialized)
  4565. {
  4566. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4567. s_Il2CppMethodInitialized = true;
  4568. }
  4569. {
  4570. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  4571. if (!L_0)
  4572. {
  4573. goto IL_0013;
  4574. }
  4575. }
  4576. {
  4577. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  4578. NullCheck((RuntimeObject*)L_1);
  4579. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  4580. }
  4581. IL_0013:
  4582. {
  4583. __this->___enumerator_6 = (RuntimeObject*)NULL;
  4584. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  4585. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  4586. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  4587. return;
  4588. }
  4589. }
  4590. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>::MoveNext()
  4591. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m9E491F82FA8EFCA72F61DD19E0A73DCDD4F4534F_gshared (WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD* __this, const RuntimeMethod* method)
  4592. {
  4593. static bool s_Il2CppMethodInitialized;
  4594. if (!s_Il2CppMethodInitialized)
  4595. {
  4596. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  4597. s_Il2CppMethodInitialized = true;
  4598. }
  4599. int32_t V_0 = 0;
  4600. int32_t V_1 = 0;
  4601. {
  4602. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  4603. V_0 = L_0;
  4604. int32_t L_1 = V_0;
  4605. if ((((int32_t)L_1) == ((int32_t)1)))
  4606. {
  4607. goto IL_0011;
  4608. }
  4609. }
  4610. {
  4611. int32_t L_2 = V_0;
  4612. if ((((int32_t)L_2) == ((int32_t)2)))
  4613. {
  4614. goto IL_0061;
  4615. }
  4616. }
  4617. {
  4618. goto IL_0074;
  4619. }
  4620. IL_0011:
  4621. {
  4622. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  4623. NullCheck(L_3);
  4624. RuntimeObject* L_4;
  4625. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  4626. __this->___enumerator_6 = L_4;
  4627. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  4628. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  4629. goto IL_0061;
  4630. }
  4631. IL_002b:
  4632. {
  4633. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  4634. NullCheck(L_5);
  4635. int32_t L_6;
  4636. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  4637. V_1 = L_6;
  4638. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4639. if (!L_7)
  4640. {
  4641. goto IL_004d;
  4642. }
  4643. }
  4644. {
  4645. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4646. int32_t L_9 = V_1;
  4647. NullCheck(L_8);
  4648. bool L_10;
  4649. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  4650. if (!L_10)
  4651. {
  4652. goto IL_0061;
  4653. }
  4654. }
  4655. IL_004d:
  4656. {
  4657. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* L_11 = (Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*)__this->___selector_5;
  4658. int32_t L_12 = V_1;
  4659. NullCheck(L_11);
  4660. Il2CppChar L_13;
  4661. L_13 = (( Il2CppChar (*) (Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  4662. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  4663. return (bool)1;
  4664. }
  4665. IL_0061:
  4666. {
  4667. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  4668. NullCheck((RuntimeObject*)L_14);
  4669. bool L_15;
  4670. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  4671. if (L_15)
  4672. {
  4673. goto IL_002b;
  4674. }
  4675. }
  4676. {
  4677. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  4678. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  4679. }
  4680. IL_0074:
  4681. {
  4682. return (bool)0;
  4683. }
  4684. }
  4685. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  4686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m96E81BB0322859C832C71067A3D7DC4A348DC363_gshared (WhereSelectEnumerableIterator_2_t7C37A69079D8D0ECA4C50548A675A342AC5836DD* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  4687. {
  4688. {
  4689. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  4690. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  4691. NullCheck(L_1);
  4692. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  4693. return (RuntimeObject*)L_1;
  4694. }
  4695. }
  4696. #ifdef __clang__
  4697. #pragma clang diagnostic pop
  4698. #endif
  4699. #ifdef __clang__
  4700. #pragma clang diagnostic push
  4701. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4702. #pragma clang diagnostic ignored "-Wunused-variable"
  4703. #endif
  4704. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  4705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mAA7D37B44F84F41ABABC3364BCE3DA409E4D9D76_gshared (WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* ___2_selector, const RuntimeMethod* method)
  4706. {
  4707. {
  4708. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  4709. RuntimeObject* L_0 = ___0_source;
  4710. __this->___source_3 = L_0;
  4711. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  4712. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  4713. __this->___predicate_4 = L_1;
  4714. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  4715. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* L_2 = ___2_selector;
  4716. __this->___selector_5 = L_2;
  4717. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  4718. return;
  4719. }
  4720. }
  4721. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>::Clone()
  4722. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectEnumerableIterator_2_Clone_m73DD800E43933583814A61E5192FE39B48D708A5_gshared (WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE* __this, const RuntimeMethod* method)
  4723. {
  4724. {
  4725. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  4726. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4727. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* L_2 = (Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*)__this->___selector_5;
  4728. WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE* L_3 = (WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  4729. NullCheck(L_3);
  4730. (( void (*) (WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  4731. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  4732. }
  4733. }
  4734. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>::Dispose()
  4735. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m16847BF94892A87159C7B173CA04AAFCCD5843E1_gshared (WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE* __this, const RuntimeMethod* method)
  4736. {
  4737. static bool s_Il2CppMethodInitialized;
  4738. if (!s_Il2CppMethodInitialized)
  4739. {
  4740. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4741. s_Il2CppMethodInitialized = true;
  4742. }
  4743. {
  4744. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  4745. if (!L_0)
  4746. {
  4747. goto IL_0013;
  4748. }
  4749. }
  4750. {
  4751. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  4752. NullCheck((RuntimeObject*)L_1);
  4753. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  4754. }
  4755. IL_0013:
  4756. {
  4757. __this->___enumerator_6 = (RuntimeObject*)NULL;
  4758. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  4759. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  4760. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  4761. return;
  4762. }
  4763. }
  4764. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>::MoveNext()
  4765. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m9A2CDC221F8C366638836976556D18C0879D8225_gshared (WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE* __this, const RuntimeMethod* method)
  4766. {
  4767. static bool s_Il2CppMethodInitialized;
  4768. if (!s_Il2CppMethodInitialized)
  4769. {
  4770. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  4771. s_Il2CppMethodInitialized = true;
  4772. }
  4773. int32_t V_0 = 0;
  4774. int32_t V_1 = 0;
  4775. {
  4776. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  4777. V_0 = L_0;
  4778. int32_t L_1 = V_0;
  4779. if ((((int32_t)L_1) == ((int32_t)1)))
  4780. {
  4781. goto IL_0011;
  4782. }
  4783. }
  4784. {
  4785. int32_t L_2 = V_0;
  4786. if ((((int32_t)L_2) == ((int32_t)2)))
  4787. {
  4788. goto IL_0061;
  4789. }
  4790. }
  4791. {
  4792. goto IL_0074;
  4793. }
  4794. IL_0011:
  4795. {
  4796. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  4797. NullCheck(L_3);
  4798. RuntimeObject* L_4;
  4799. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  4800. __this->___enumerator_6 = L_4;
  4801. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  4802. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  4803. goto IL_0061;
  4804. }
  4805. IL_002b:
  4806. {
  4807. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  4808. NullCheck(L_5);
  4809. int32_t L_6;
  4810. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  4811. V_1 = L_6;
  4812. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4813. if (!L_7)
  4814. {
  4815. goto IL_004d;
  4816. }
  4817. }
  4818. {
  4819. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4820. int32_t L_9 = V_1;
  4821. NullCheck(L_8);
  4822. bool L_10;
  4823. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  4824. if (!L_10)
  4825. {
  4826. goto IL_0061;
  4827. }
  4828. }
  4829. IL_004d:
  4830. {
  4831. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* L_11 = (Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*)__this->___selector_5;
  4832. int32_t L_12 = V_1;
  4833. NullCheck(L_11);
  4834. Guid_t L_13;
  4835. L_13 = (( Guid_t (*) (Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  4836. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  4837. return (bool)1;
  4838. }
  4839. IL_0061:
  4840. {
  4841. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  4842. NullCheck((RuntimeObject*)L_14);
  4843. bool L_15;
  4844. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  4845. if (L_15)
  4846. {
  4847. goto IL_002b;
  4848. }
  4849. }
  4850. {
  4851. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  4852. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  4853. }
  4854. IL_0074:
  4855. {
  4856. return (bool)0;
  4857. }
  4858. }
  4859. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  4860. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m72F2E7DEACFB08551DB310FC724B9A659C948CD2_gshared (WhereSelectEnumerableIterator_2_tDCAE399E4414EF5E5028E4B64B0D1351DA3043DE* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  4861. {
  4862. {
  4863. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  4864. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  4865. NullCheck(L_1);
  4866. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  4867. return (RuntimeObject*)L_1;
  4868. }
  4869. }
  4870. #ifdef __clang__
  4871. #pragma clang diagnostic pop
  4872. #endif
  4873. #ifdef __clang__
  4874. #pragma clang diagnostic push
  4875. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4876. #pragma clang diagnostic ignored "-Wunused-variable"
  4877. #endif
  4878. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  4879. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mB18011BF045D54FAE4BDA9673E3026CF6E363F5C_gshared (WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* ___2_selector, const RuntimeMethod* method)
  4880. {
  4881. {
  4882. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  4883. RuntimeObject* L_0 = ___0_source;
  4884. __this->___source_3 = L_0;
  4885. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  4886. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  4887. __this->___predicate_4 = L_1;
  4888. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  4889. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* L_2 = ___2_selector;
  4890. __this->___selector_5 = L_2;
  4891. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  4892. return;
  4893. }
  4894. }
  4895. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>::Clone()
  4896. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectEnumerableIterator_2_Clone_mBC99DBB6DA6AA9FF9FC30562FADE5F7A58042C8A_gshared (WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6* __this, const RuntimeMethod* method)
  4897. {
  4898. {
  4899. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  4900. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4901. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* L_2 = (Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*)__this->___selector_5;
  4902. WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6* L_3 = (WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  4903. NullCheck(L_3);
  4904. (( void (*) (WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  4905. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  4906. }
  4907. }
  4908. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>::Dispose()
  4909. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mC7C68631BDD2C847A49DD4037F3F9200CB314A94_gshared (WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6* __this, const RuntimeMethod* method)
  4910. {
  4911. static bool s_Il2CppMethodInitialized;
  4912. if (!s_Il2CppMethodInitialized)
  4913. {
  4914. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4915. s_Il2CppMethodInitialized = true;
  4916. }
  4917. {
  4918. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  4919. if (!L_0)
  4920. {
  4921. goto IL_0013;
  4922. }
  4923. }
  4924. {
  4925. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  4926. NullCheck((RuntimeObject*)L_1);
  4927. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  4928. }
  4929. IL_0013:
  4930. {
  4931. __this->___enumerator_6 = (RuntimeObject*)NULL;
  4932. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  4933. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  4934. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  4935. return;
  4936. }
  4937. }
  4938. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>::MoveNext()
  4939. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m063C18B4FB551209EA46398494079970880D8ACB_gshared (WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6* __this, const RuntimeMethod* method)
  4940. {
  4941. static bool s_Il2CppMethodInitialized;
  4942. if (!s_Il2CppMethodInitialized)
  4943. {
  4944. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  4945. s_Il2CppMethodInitialized = true;
  4946. }
  4947. int32_t V_0 = 0;
  4948. int32_t V_1 = 0;
  4949. {
  4950. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  4951. V_0 = L_0;
  4952. int32_t L_1 = V_0;
  4953. if ((((int32_t)L_1) == ((int32_t)1)))
  4954. {
  4955. goto IL_0011;
  4956. }
  4957. }
  4958. {
  4959. int32_t L_2 = V_0;
  4960. if ((((int32_t)L_2) == ((int32_t)2)))
  4961. {
  4962. goto IL_0061;
  4963. }
  4964. }
  4965. {
  4966. goto IL_0074;
  4967. }
  4968. IL_0011:
  4969. {
  4970. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  4971. NullCheck(L_3);
  4972. RuntimeObject* L_4;
  4973. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  4974. __this->___enumerator_6 = L_4;
  4975. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  4976. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  4977. goto IL_0061;
  4978. }
  4979. IL_002b:
  4980. {
  4981. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  4982. NullCheck(L_5);
  4983. int32_t L_6;
  4984. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  4985. V_1 = L_6;
  4986. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4987. if (!L_7)
  4988. {
  4989. goto IL_004d;
  4990. }
  4991. }
  4992. {
  4993. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  4994. int32_t L_9 = V_1;
  4995. NullCheck(L_8);
  4996. bool L_10;
  4997. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  4998. if (!L_10)
  4999. {
  5000. goto IL_0061;
  5001. }
  5002. }
  5003. IL_004d:
  5004. {
  5005. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* L_11 = (Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*)__this->___selector_5;
  5006. int32_t L_12 = V_1;
  5007. NullCheck(L_11);
  5008. RuntimeObject* L_13;
  5009. L_13 = (( RuntimeObject* (*) (Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  5010. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  5011. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  5012. return (bool)1;
  5013. }
  5014. IL_0061:
  5015. {
  5016. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  5017. NullCheck((RuntimeObject*)L_14);
  5018. bool L_15;
  5019. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  5020. if (L_15)
  5021. {
  5022. goto IL_002b;
  5023. }
  5024. }
  5025. {
  5026. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  5027. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  5028. }
  5029. IL_0074:
  5030. {
  5031. return (bool)0;
  5032. }
  5033. }
  5034. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  5035. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mF9ABDB86450E7F40FCF94593DBFFF80A082D2E17_gshared (WhereSelectEnumerableIterator_2_t1BC7D7BF022E4B65396A3E85C50E08AD7C53F3B6* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  5036. {
  5037. {
  5038. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  5039. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  5040. NullCheck(L_1);
  5041. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  5042. return (RuntimeObject*)L_1;
  5043. }
  5044. }
  5045. #ifdef __clang__
  5046. #pragma clang diagnostic pop
  5047. #endif
  5048. #ifdef __clang__
  5049. #pragma clang diagnostic push
  5050. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5051. #pragma clang diagnostic ignored "-Wunused-variable"
  5052. #endif
  5053. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  5054. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m91BFC4D491E6C83353FE565D15C87511DAE0EFA5_gshared (WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* ___2_selector, const RuntimeMethod* method)
  5055. {
  5056. {
  5057. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  5058. RuntimeObject* L_0 = ___0_source;
  5059. __this->___source_3 = L_0;
  5060. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  5061. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  5062. __this->___predicate_4 = L_1;
  5063. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  5064. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* L_2 = ___2_selector;
  5065. __this->___selector_5 = L_2;
  5066. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  5067. return;
  5068. }
  5069. }
  5070. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>::Clone()
  5071. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectEnumerableIterator_2_Clone_mC1537729566BEC04D8FBE8E12DAE783857A79C93_gshared (WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513* __this, const RuntimeMethod* method)
  5072. {
  5073. {
  5074. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  5075. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5076. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* L_2 = (Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*)__this->___selector_5;
  5077. WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513* L_3 = (WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  5078. NullCheck(L_3);
  5079. (( void (*) (WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  5080. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  5081. }
  5082. }
  5083. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>::Dispose()
  5084. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m3F4FF4B2120DC3749E36A9CB566F9970AE63229A_gshared (WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513* __this, const RuntimeMethod* method)
  5085. {
  5086. static bool s_Il2CppMethodInitialized;
  5087. if (!s_Il2CppMethodInitialized)
  5088. {
  5089. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  5090. s_Il2CppMethodInitialized = true;
  5091. }
  5092. {
  5093. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  5094. if (!L_0)
  5095. {
  5096. goto IL_0013;
  5097. }
  5098. }
  5099. {
  5100. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  5101. NullCheck((RuntimeObject*)L_1);
  5102. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  5103. }
  5104. IL_0013:
  5105. {
  5106. __this->___enumerator_6 = (RuntimeObject*)NULL;
  5107. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  5108. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  5109. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  5110. return;
  5111. }
  5112. }
  5113. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>::MoveNext()
  5114. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mB703C8C50AE7C3890029D8B0524F06C3D3E90A75_gshared (WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513* __this, const RuntimeMethod* method)
  5115. {
  5116. static bool s_Il2CppMethodInitialized;
  5117. if (!s_Il2CppMethodInitialized)
  5118. {
  5119. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  5120. s_Il2CppMethodInitialized = true;
  5121. }
  5122. int32_t V_0 = 0;
  5123. int32_t V_1 = 0;
  5124. {
  5125. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  5126. V_0 = L_0;
  5127. int32_t L_1 = V_0;
  5128. if ((((int32_t)L_1) == ((int32_t)1)))
  5129. {
  5130. goto IL_0011;
  5131. }
  5132. }
  5133. {
  5134. int32_t L_2 = V_0;
  5135. if ((((int32_t)L_2) == ((int32_t)2)))
  5136. {
  5137. goto IL_0061;
  5138. }
  5139. }
  5140. {
  5141. goto IL_0074;
  5142. }
  5143. IL_0011:
  5144. {
  5145. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  5146. NullCheck(L_3);
  5147. RuntimeObject* L_4;
  5148. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  5149. __this->___enumerator_6 = L_4;
  5150. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  5151. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  5152. goto IL_0061;
  5153. }
  5154. IL_002b:
  5155. {
  5156. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  5157. NullCheck(L_5);
  5158. int32_t L_6;
  5159. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  5160. V_1 = L_6;
  5161. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5162. if (!L_7)
  5163. {
  5164. goto IL_004d;
  5165. }
  5166. }
  5167. {
  5168. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5169. int32_t L_9 = V_1;
  5170. NullCheck(L_8);
  5171. bool L_10;
  5172. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  5173. if (!L_10)
  5174. {
  5175. goto IL_0061;
  5176. }
  5177. }
  5178. IL_004d:
  5179. {
  5180. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* L_11 = (Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*)__this->___selector_5;
  5181. int32_t L_12 = V_1;
  5182. NullCheck(L_11);
  5183. float L_13;
  5184. L_13 = (( float (*) (Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  5185. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  5186. return (bool)1;
  5187. }
  5188. IL_0061:
  5189. {
  5190. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  5191. NullCheck((RuntimeObject*)L_14);
  5192. bool L_15;
  5193. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  5194. if (L_15)
  5195. {
  5196. goto IL_002b;
  5197. }
  5198. }
  5199. {
  5200. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  5201. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  5202. }
  5203. IL_0074:
  5204. {
  5205. return (bool)0;
  5206. }
  5207. }
  5208. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  5209. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mE92812A74DAA60564F2797CA709330CE587D149E_gshared (WhereSelectEnumerableIterator_2_tE4CA9159FEDDB92BFA56ECACBB04E365B2203513* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  5210. {
  5211. {
  5212. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  5213. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  5214. NullCheck(L_1);
  5215. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  5216. return (RuntimeObject*)L_1;
  5217. }
  5218. }
  5219. #ifdef __clang__
  5220. #pragma clang diagnostic pop
  5221. #endif
  5222. #ifdef __clang__
  5223. #pragma clang diagnostic push
  5224. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5225. #pragma clang diagnostic ignored "-Wunused-variable"
  5226. #endif
  5227. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  5228. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m1E5AD936A4DBC43AB0C3842F57651209CEB80C68_gshared (WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* ___2_selector, const RuntimeMethod* method)
  5229. {
  5230. {
  5231. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  5232. RuntimeObject* L_0 = ___0_source;
  5233. __this->___source_3 = L_0;
  5234. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  5235. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  5236. __this->___predicate_4 = L_1;
  5237. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  5238. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* L_2 = ___2_selector;
  5239. __this->___selector_5 = L_2;
  5240. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  5241. return;
  5242. }
  5243. }
  5244. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>::Clone()
  5245. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectEnumerableIterator_2_Clone_m0C182E7F153161D740BA26F0EB93220F20527542_gshared (WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30* __this, const RuntimeMethod* method)
  5246. {
  5247. {
  5248. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  5249. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5250. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* L_2 = (Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*)__this->___selector_5;
  5251. WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30* L_3 = (WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  5252. NullCheck(L_3);
  5253. (( void (*) (WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  5254. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  5255. }
  5256. }
  5257. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>::Dispose()
  5258. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mC3725DE57ECDFAA940C7596FB0D48F4B2A7F2E22_gshared (WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30* __this, const RuntimeMethod* method)
  5259. {
  5260. static bool s_Il2CppMethodInitialized;
  5261. if (!s_Il2CppMethodInitialized)
  5262. {
  5263. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  5264. s_Il2CppMethodInitialized = true;
  5265. }
  5266. {
  5267. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  5268. if (!L_0)
  5269. {
  5270. goto IL_0013;
  5271. }
  5272. }
  5273. {
  5274. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  5275. NullCheck((RuntimeObject*)L_1);
  5276. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  5277. }
  5278. IL_0013:
  5279. {
  5280. __this->___enumerator_6 = (RuntimeObject*)NULL;
  5281. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  5282. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  5283. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  5284. return;
  5285. }
  5286. }
  5287. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>::MoveNext()
  5288. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m3EAEEF738E8158B76398B80E3D8580634878F427_gshared (WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30* __this, const RuntimeMethod* method)
  5289. {
  5290. static bool s_Il2CppMethodInitialized;
  5291. if (!s_Il2CppMethodInitialized)
  5292. {
  5293. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  5294. s_Il2CppMethodInitialized = true;
  5295. }
  5296. int32_t V_0 = 0;
  5297. int32_t V_1 = 0;
  5298. {
  5299. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  5300. V_0 = L_0;
  5301. int32_t L_1 = V_0;
  5302. if ((((int32_t)L_1) == ((int32_t)1)))
  5303. {
  5304. goto IL_0011;
  5305. }
  5306. }
  5307. {
  5308. int32_t L_2 = V_0;
  5309. if ((((int32_t)L_2) == ((int32_t)2)))
  5310. {
  5311. goto IL_0061;
  5312. }
  5313. }
  5314. {
  5315. goto IL_0074;
  5316. }
  5317. IL_0011:
  5318. {
  5319. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  5320. NullCheck(L_3);
  5321. RuntimeObject* L_4;
  5322. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  5323. __this->___enumerator_6 = L_4;
  5324. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  5325. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  5326. goto IL_0061;
  5327. }
  5328. IL_002b:
  5329. {
  5330. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  5331. NullCheck(L_5);
  5332. int32_t L_6;
  5333. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  5334. V_1 = L_6;
  5335. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5336. if (!L_7)
  5337. {
  5338. goto IL_004d;
  5339. }
  5340. }
  5341. {
  5342. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5343. int32_t L_9 = V_1;
  5344. NullCheck(L_8);
  5345. bool L_10;
  5346. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  5347. if (!L_10)
  5348. {
  5349. goto IL_0061;
  5350. }
  5351. }
  5352. IL_004d:
  5353. {
  5354. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* L_11 = (Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*)__this->___selector_5;
  5355. int32_t L_12 = V_1;
  5356. NullCheck(L_11);
  5357. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  5358. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  5359. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  5360. return (bool)1;
  5361. }
  5362. IL_0061:
  5363. {
  5364. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  5365. NullCheck((RuntimeObject*)L_14);
  5366. bool L_15;
  5367. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  5368. if (L_15)
  5369. {
  5370. goto IL_002b;
  5371. }
  5372. }
  5373. {
  5374. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  5375. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  5376. }
  5377. IL_0074:
  5378. {
  5379. return (bool)0;
  5380. }
  5381. }
  5382. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  5383. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mC18BB19E76515065C4568A3F5671A4EA9CE02438_gshared (WhereSelectEnumerableIterator_2_t8FC27F4953606B7B1781EEE8CC1C9BA816959F30* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  5384. {
  5385. {
  5386. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  5387. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  5388. NullCheck(L_1);
  5389. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  5390. return (RuntimeObject*)L_1;
  5391. }
  5392. }
  5393. #ifdef __clang__
  5394. #pragma clang diagnostic pop
  5395. #endif
  5396. #ifdef __clang__
  5397. #pragma clang diagnostic push
  5398. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5399. #pragma clang diagnostic ignored "-Wunused-variable"
  5400. #endif
  5401. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  5402. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m5D7231BF29EC0849BD7CD5DAD316DAA12EC81524_gshared (WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* ___2_selector, const RuntimeMethod* method)
  5403. {
  5404. {
  5405. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  5406. RuntimeObject* L_0 = ___0_source;
  5407. __this->___source_3 = L_0;
  5408. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  5409. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  5410. __this->___predicate_4 = L_1;
  5411. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  5412. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* L_2 = ___2_selector;
  5413. __this->___selector_5 = L_2;
  5414. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  5415. return;
  5416. }
  5417. }
  5418. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>::Clone()
  5419. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectEnumerableIterator_2_Clone_m236BBB7865805ABAEFA952478085C0C6EE08CEB0_gshared (WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D* __this, const RuntimeMethod* method)
  5420. {
  5421. {
  5422. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  5423. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5424. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* L_2 = (Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*)__this->___selector_5;
  5425. WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D* L_3 = (WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  5426. NullCheck(L_3);
  5427. (( void (*) (WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  5428. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  5429. }
  5430. }
  5431. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>::Dispose()
  5432. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m8E3C9E20A7BACAC2E7F0978FD24C640FD3F197DF_gshared (WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D* __this, const RuntimeMethod* method)
  5433. {
  5434. static bool s_Il2CppMethodInitialized;
  5435. if (!s_Il2CppMethodInitialized)
  5436. {
  5437. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  5438. s_Il2CppMethodInitialized = true;
  5439. }
  5440. {
  5441. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  5442. if (!L_0)
  5443. {
  5444. goto IL_0013;
  5445. }
  5446. }
  5447. {
  5448. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  5449. NullCheck((RuntimeObject*)L_1);
  5450. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  5451. }
  5452. IL_0013:
  5453. {
  5454. __this->___enumerator_6 = (RuntimeObject*)NULL;
  5455. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  5456. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  5457. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  5458. return;
  5459. }
  5460. }
  5461. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>::MoveNext()
  5462. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mECB69B9F2EC18B9717C4877CF6A8916EF274339B_gshared (WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D* __this, const RuntimeMethod* method)
  5463. {
  5464. static bool s_Il2CppMethodInitialized;
  5465. if (!s_Il2CppMethodInitialized)
  5466. {
  5467. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  5468. s_Il2CppMethodInitialized = true;
  5469. }
  5470. int32_t V_0 = 0;
  5471. int32_t V_1 = 0;
  5472. {
  5473. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  5474. V_0 = L_0;
  5475. int32_t L_1 = V_0;
  5476. if ((((int32_t)L_1) == ((int32_t)1)))
  5477. {
  5478. goto IL_0011;
  5479. }
  5480. }
  5481. {
  5482. int32_t L_2 = V_0;
  5483. if ((((int32_t)L_2) == ((int32_t)2)))
  5484. {
  5485. goto IL_0061;
  5486. }
  5487. }
  5488. {
  5489. goto IL_0074;
  5490. }
  5491. IL_0011:
  5492. {
  5493. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  5494. NullCheck(L_3);
  5495. RuntimeObject* L_4;
  5496. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  5497. __this->___enumerator_6 = L_4;
  5498. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  5499. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  5500. goto IL_0061;
  5501. }
  5502. IL_002b:
  5503. {
  5504. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  5505. NullCheck(L_5);
  5506. int32_t L_6;
  5507. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  5508. V_1 = L_6;
  5509. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5510. if (!L_7)
  5511. {
  5512. goto IL_004d;
  5513. }
  5514. }
  5515. {
  5516. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5517. int32_t L_9 = V_1;
  5518. NullCheck(L_8);
  5519. bool L_10;
  5520. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  5521. if (!L_10)
  5522. {
  5523. goto IL_0061;
  5524. }
  5525. }
  5526. IL_004d:
  5527. {
  5528. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* L_11 = (Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*)__this->___selector_5;
  5529. int32_t L_12 = V_1;
  5530. NullCheck(L_11);
  5531. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  5532. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  5533. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  5534. return (bool)1;
  5535. }
  5536. IL_0061:
  5537. {
  5538. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  5539. NullCheck((RuntimeObject*)L_14);
  5540. bool L_15;
  5541. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  5542. if (L_15)
  5543. {
  5544. goto IL_002b;
  5545. }
  5546. }
  5547. {
  5548. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  5549. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  5550. }
  5551. IL_0074:
  5552. {
  5553. return (bool)0;
  5554. }
  5555. }
  5556. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  5557. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m4069DC3A685490DD1FAFD00C9470D9AE66FDDBEE_gshared (WhereSelectEnumerableIterator_2_tB8CD2F13079A2E2C6BA50F8C7E049CDD34B27F6D* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  5558. {
  5559. {
  5560. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  5561. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  5562. NullCheck(L_1);
  5563. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  5564. return (RuntimeObject*)L_1;
  5565. }
  5566. }
  5567. #ifdef __clang__
  5568. #pragma clang diagnostic pop
  5569. #endif
  5570. #ifdef __clang__
  5571. #pragma clang diagnostic push
  5572. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5573. #pragma clang diagnostic ignored "-Wunused-variable"
  5574. #endif
  5575. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  5576. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m1A17D35CBA452EC0E488CA72AC8532424D1D016B_gshared (WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794* __this, RuntimeObject* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* ___2_selector, const RuntimeMethod* method)
  5577. {
  5578. {
  5579. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  5580. RuntimeObject* L_0 = ___0_source;
  5581. __this->___source_3 = L_0;
  5582. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  5583. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  5584. __this->___predicate_4 = L_1;
  5585. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  5586. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* L_2 = ___2_selector;
  5587. __this->___selector_5 = L_2;
  5588. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  5589. return;
  5590. }
  5591. }
  5592. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>::Clone()
  5593. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectEnumerableIterator_2_Clone_mFC827675D61A8097E4AA6179FEE70A4C0F625501_gshared (WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794* __this, const RuntimeMethod* method)
  5594. {
  5595. {
  5596. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  5597. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5598. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* L_2 = (Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*)__this->___selector_5;
  5599. WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794* L_3 = (WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  5600. NullCheck(L_3);
  5601. (( void (*) (WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794*, RuntimeObject*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  5602. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  5603. }
  5604. }
  5605. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>::Dispose()
  5606. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mA9B917BB5D07E1BC372B0092CFB8BD4DF9A07916_gshared (WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794* __this, const RuntimeMethod* method)
  5607. {
  5608. static bool s_Il2CppMethodInitialized;
  5609. if (!s_Il2CppMethodInitialized)
  5610. {
  5611. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  5612. s_Il2CppMethodInitialized = true;
  5613. }
  5614. {
  5615. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  5616. if (!L_0)
  5617. {
  5618. goto IL_0013;
  5619. }
  5620. }
  5621. {
  5622. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  5623. NullCheck((RuntimeObject*)L_1);
  5624. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  5625. }
  5626. IL_0013:
  5627. {
  5628. __this->___enumerator_6 = (RuntimeObject*)NULL;
  5629. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  5630. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  5631. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  5632. return;
  5633. }
  5634. }
  5635. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>::MoveNext()
  5636. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mB0A430AE71F261731F4B3608AD99228CF95178A7_gshared (WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794* __this, const RuntimeMethod* method)
  5637. {
  5638. static bool s_Il2CppMethodInitialized;
  5639. if (!s_Il2CppMethodInitialized)
  5640. {
  5641. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  5642. s_Il2CppMethodInitialized = true;
  5643. }
  5644. int32_t V_0 = 0;
  5645. int32_t V_1 = 0;
  5646. {
  5647. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  5648. V_0 = L_0;
  5649. int32_t L_1 = V_0;
  5650. if ((((int32_t)L_1) == ((int32_t)1)))
  5651. {
  5652. goto IL_0011;
  5653. }
  5654. }
  5655. {
  5656. int32_t L_2 = V_0;
  5657. if ((((int32_t)L_2) == ((int32_t)2)))
  5658. {
  5659. goto IL_0061;
  5660. }
  5661. }
  5662. {
  5663. goto IL_0074;
  5664. }
  5665. IL_0011:
  5666. {
  5667. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  5668. NullCheck(L_3);
  5669. RuntimeObject* L_4;
  5670. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32Enum>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  5671. __this->___enumerator_6 = L_4;
  5672. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  5673. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  5674. goto IL_0061;
  5675. }
  5676. IL_002b:
  5677. {
  5678. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  5679. NullCheck(L_5);
  5680. int32_t L_6;
  5681. L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32Enum>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  5682. V_1 = L_6;
  5683. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5684. if (!L_7)
  5685. {
  5686. goto IL_004d;
  5687. }
  5688. }
  5689. {
  5690. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  5691. int32_t L_9 = V_1;
  5692. NullCheck(L_8);
  5693. bool L_10;
  5694. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  5695. if (!L_10)
  5696. {
  5697. goto IL_0061;
  5698. }
  5699. }
  5700. IL_004d:
  5701. {
  5702. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* L_11 = (Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*)__this->___selector_5;
  5703. int32_t L_12 = V_1;
  5704. NullCheck(L_11);
  5705. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  5706. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  5707. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  5708. return (bool)1;
  5709. }
  5710. IL_0061:
  5711. {
  5712. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  5713. NullCheck((RuntimeObject*)L_14);
  5714. bool L_15;
  5715. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  5716. if (L_15)
  5717. {
  5718. goto IL_002b;
  5719. }
  5720. }
  5721. {
  5722. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  5723. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  5724. }
  5725. IL_0074:
  5726. {
  5727. return (bool)0;
  5728. }
  5729. }
  5730. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Int32Enum,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  5731. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mBF954FB0ACD880291A6AD5C287D0B90BD1BE3C8F_gshared (WhereSelectEnumerableIterator_2_tAFFE861B9AB91BF240E34036F3E72E7066C05794* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  5732. {
  5733. {
  5734. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  5735. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  5736. NullCheck(L_1);
  5737. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  5738. return (RuntimeObject*)L_1;
  5739. }
  5740. }
  5741. #ifdef __clang__
  5742. #pragma clang diagnostic pop
  5743. #endif
  5744. #ifdef __clang__
  5745. #pragma clang diagnostic push
  5746. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5747. #pragma clang diagnostic ignored "-Wunused-variable"
  5748. #endif
  5749. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  5750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mDD173FD5A3DE9257BACFF9CF788244506BB5FA9D_gshared (WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* ___2_selector, const RuntimeMethod* method)
  5751. {
  5752. {
  5753. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  5754. RuntimeObject* L_0 = ___0_source;
  5755. __this->___source_3 = L_0;
  5756. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  5757. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  5758. __this->___predicate_4 = L_1;
  5759. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  5760. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* L_2 = ___2_selector;
  5761. __this->___selector_5 = L_2;
  5762. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  5763. return;
  5764. }
  5765. }
  5766. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  5767. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectEnumerableIterator_2_Clone_mB22785C15C3A13D7D4F9CC3BEE23D7E41E034A08_gshared (WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6* __this, const RuntimeMethod* method)
  5768. {
  5769. {
  5770. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  5771. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  5772. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* L_2 = (Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*)__this->___selector_5;
  5773. WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6* L_3 = (WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  5774. NullCheck(L_3);
  5775. (( void (*) (WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  5776. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  5777. }
  5778. }
  5779. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::Dispose()
  5780. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mC5CAE5D5CBDC0D14DB1529D3A118132FB90B6A6C_gshared (WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6* __this, const RuntimeMethod* method)
  5781. {
  5782. static bool s_Il2CppMethodInitialized;
  5783. if (!s_Il2CppMethodInitialized)
  5784. {
  5785. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  5786. s_Il2CppMethodInitialized = true;
  5787. }
  5788. {
  5789. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  5790. if (!L_0)
  5791. {
  5792. goto IL_0013;
  5793. }
  5794. }
  5795. {
  5796. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  5797. NullCheck((RuntimeObject*)L_1);
  5798. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  5799. }
  5800. IL_0013:
  5801. {
  5802. __this->___enumerator_6 = (RuntimeObject*)NULL;
  5803. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  5804. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  5805. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  5806. return;
  5807. }
  5808. }
  5809. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  5810. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m7EDE738CA9AA442AE88C728D199061E6C4A62160_gshared (WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6* __this, const RuntimeMethod* method)
  5811. {
  5812. static bool s_Il2CppMethodInitialized;
  5813. if (!s_Il2CppMethodInitialized)
  5814. {
  5815. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  5816. s_Il2CppMethodInitialized = true;
  5817. }
  5818. int32_t V_0 = 0;
  5819. RuntimeObject* V_1 = NULL;
  5820. {
  5821. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  5822. V_0 = L_0;
  5823. int32_t L_1 = V_0;
  5824. if ((((int32_t)L_1) == ((int32_t)1)))
  5825. {
  5826. goto IL_0011;
  5827. }
  5828. }
  5829. {
  5830. int32_t L_2 = V_0;
  5831. if ((((int32_t)L_2) == ((int32_t)2)))
  5832. {
  5833. goto IL_0061;
  5834. }
  5835. }
  5836. {
  5837. goto IL_0074;
  5838. }
  5839. IL_0011:
  5840. {
  5841. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  5842. NullCheck(L_3);
  5843. RuntimeObject* L_4;
  5844. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  5845. __this->___enumerator_6 = L_4;
  5846. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  5847. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  5848. goto IL_0061;
  5849. }
  5850. IL_002b:
  5851. {
  5852. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  5853. NullCheck(L_5);
  5854. RuntimeObject* L_6;
  5855. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  5856. V_1 = L_6;
  5857. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  5858. if (!L_7)
  5859. {
  5860. goto IL_004d;
  5861. }
  5862. }
  5863. {
  5864. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  5865. RuntimeObject* L_9 = V_1;
  5866. NullCheck(L_8);
  5867. bool L_10;
  5868. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  5869. if (!L_10)
  5870. {
  5871. goto IL_0061;
  5872. }
  5873. }
  5874. IL_004d:
  5875. {
  5876. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* L_11 = (Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*)__this->___selector_5;
  5877. RuntimeObject* L_12 = V_1;
  5878. NullCheck(L_11);
  5879. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  5880. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  5881. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  5882. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  5883. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  5884. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  5885. #endif
  5886. return (bool)1;
  5887. }
  5888. IL_0061:
  5889. {
  5890. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  5891. NullCheck((RuntimeObject*)L_14);
  5892. bool L_15;
  5893. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  5894. if (L_15)
  5895. {
  5896. goto IL_002b;
  5897. }
  5898. }
  5899. {
  5900. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  5901. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  5902. }
  5903. IL_0074:
  5904. {
  5905. return (bool)0;
  5906. }
  5907. }
  5908. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  5909. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m845D58ED6B999ABEE5ADA00C285825AD8B32B5A9_gshared (WhereSelectEnumerableIterator_2_t091FAD2250C7AE05CA5F012F052AD93C07F4C8F6* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  5910. {
  5911. {
  5912. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  5913. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  5914. NullCheck(L_1);
  5915. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  5916. return (RuntimeObject*)L_1;
  5917. }
  5918. }
  5919. #ifdef __clang__
  5920. #pragma clang diagnostic pop
  5921. #endif
  5922. #ifdef __clang__
  5923. #pragma clang diagnostic push
  5924. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5925. #pragma clang diagnostic ignored "-Wunused-variable"
  5926. #endif
  5927. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  5928. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m1B4F801F25B0558741D339F895E5232BB2238D94_gshared (WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tA8F6CB924B4548E42010325397F16C187C098225* ___2_selector, const RuntimeMethod* method)
  5929. {
  5930. {
  5931. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  5932. RuntimeObject* L_0 = ___0_source;
  5933. __this->___source_3 = L_0;
  5934. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  5935. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  5936. __this->___predicate_4 = L_1;
  5937. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  5938. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* L_2 = ___2_selector;
  5939. __this->___selector_5 = L_2;
  5940. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  5941. return;
  5942. }
  5943. }
  5944. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>::Clone()
  5945. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectEnumerableIterator_2_Clone_m1FE7E4DA3E1D0EBD95B8929AC3DCD2366F1706F6_gshared (WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F* __this, const RuntimeMethod* method)
  5946. {
  5947. {
  5948. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  5949. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  5950. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* L_2 = (Func_2_tA8F6CB924B4548E42010325397F16C187C098225*)__this->___selector_5;
  5951. WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F* L_3 = (WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  5952. NullCheck(L_3);
  5953. (( void (*) (WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tA8F6CB924B4548E42010325397F16C187C098225*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  5954. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  5955. }
  5956. }
  5957. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>::Dispose()
  5958. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mCFAFED4A8C8C8A9B0F322AE2CA7B2519B46A9D4A_gshared (WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F* __this, const RuntimeMethod* method)
  5959. {
  5960. static bool s_Il2CppMethodInitialized;
  5961. if (!s_Il2CppMethodInitialized)
  5962. {
  5963. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  5964. s_Il2CppMethodInitialized = true;
  5965. }
  5966. {
  5967. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  5968. if (!L_0)
  5969. {
  5970. goto IL_0013;
  5971. }
  5972. }
  5973. {
  5974. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  5975. NullCheck((RuntimeObject*)L_1);
  5976. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  5977. }
  5978. IL_0013:
  5979. {
  5980. __this->___enumerator_6 = (RuntimeObject*)NULL;
  5981. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  5982. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  5983. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  5984. return;
  5985. }
  5986. }
  5987. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>::MoveNext()
  5988. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mD4085FC992C2DFD6F7EA8E430E1D1E646B2D6DED_gshared (WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F* __this, const RuntimeMethod* method)
  5989. {
  5990. static bool s_Il2CppMethodInitialized;
  5991. if (!s_Il2CppMethodInitialized)
  5992. {
  5993. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  5994. s_Il2CppMethodInitialized = true;
  5995. }
  5996. int32_t V_0 = 0;
  5997. RuntimeObject* V_1 = NULL;
  5998. {
  5999. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  6000. V_0 = L_0;
  6001. int32_t L_1 = V_0;
  6002. if ((((int32_t)L_1) == ((int32_t)1)))
  6003. {
  6004. goto IL_0011;
  6005. }
  6006. }
  6007. {
  6008. int32_t L_2 = V_0;
  6009. if ((((int32_t)L_2) == ((int32_t)2)))
  6010. {
  6011. goto IL_0061;
  6012. }
  6013. }
  6014. {
  6015. goto IL_0074;
  6016. }
  6017. IL_0011:
  6018. {
  6019. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  6020. NullCheck(L_3);
  6021. RuntimeObject* L_4;
  6022. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  6023. __this->___enumerator_6 = L_4;
  6024. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  6025. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  6026. goto IL_0061;
  6027. }
  6028. IL_002b:
  6029. {
  6030. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  6031. NullCheck(L_5);
  6032. RuntimeObject* L_6;
  6033. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  6034. V_1 = L_6;
  6035. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6036. if (!L_7)
  6037. {
  6038. goto IL_004d;
  6039. }
  6040. }
  6041. {
  6042. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6043. RuntimeObject* L_9 = V_1;
  6044. NullCheck(L_8);
  6045. bool L_10;
  6046. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  6047. if (!L_10)
  6048. {
  6049. goto IL_0061;
  6050. }
  6051. }
  6052. IL_004d:
  6053. {
  6054. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* L_11 = (Func_2_tA8F6CB924B4548E42010325397F16C187C098225*)__this->___selector_5;
  6055. RuntimeObject* L_12 = V_1;
  6056. NullCheck(L_11);
  6057. Il2CppChar L_13;
  6058. L_13 = (( Il2CppChar (*) (Func_2_tA8F6CB924B4548E42010325397F16C187C098225*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  6059. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  6060. return (bool)1;
  6061. }
  6062. IL_0061:
  6063. {
  6064. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  6065. NullCheck((RuntimeObject*)L_14);
  6066. bool L_15;
  6067. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  6068. if (L_15)
  6069. {
  6070. goto IL_002b;
  6071. }
  6072. }
  6073. {
  6074. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  6075. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  6076. }
  6077. IL_0074:
  6078. {
  6079. return (bool)0;
  6080. }
  6081. }
  6082. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  6083. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m5B6F54AC63661C4B83AA803E9BDAC34936F7E44D_gshared (WhereSelectEnumerableIterator_2_t670208C94EFD9BF4C4D4163848AEA1130728DC9F* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  6084. {
  6085. {
  6086. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  6087. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  6088. NullCheck(L_1);
  6089. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  6090. return (RuntimeObject*)L_1;
  6091. }
  6092. }
  6093. #ifdef __clang__
  6094. #pragma clang diagnostic pop
  6095. #endif
  6096. #ifdef __clang__
  6097. #pragma clang diagnostic push
  6098. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6099. #pragma clang diagnostic ignored "-Wunused-variable"
  6100. #endif
  6101. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  6102. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mDC5D91BBB7989564C578179417FDC1678DD5E2F9_gshared (WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* ___2_selector, const RuntimeMethod* method)
  6103. {
  6104. {
  6105. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  6106. RuntimeObject* L_0 = ___0_source;
  6107. __this->___source_3 = L_0;
  6108. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  6109. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  6110. __this->___predicate_4 = L_1;
  6111. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  6112. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* L_2 = ___2_selector;
  6113. __this->___selector_5 = L_2;
  6114. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  6115. return;
  6116. }
  6117. }
  6118. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>::Clone()
  6119. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectEnumerableIterator_2_Clone_m2C9DC85D6874FF2A68097A108B625272A80055CA_gshared (WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D* __this, const RuntimeMethod* method)
  6120. {
  6121. {
  6122. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  6123. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6124. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* L_2 = (Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*)__this->___selector_5;
  6125. WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D* L_3 = (WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  6126. NullCheck(L_3);
  6127. (( void (*) (WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  6128. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  6129. }
  6130. }
  6131. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>::Dispose()
  6132. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mC572071F0F90742BA2CF15650190073C8D4B6E37_gshared (WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D* __this, const RuntimeMethod* method)
  6133. {
  6134. static bool s_Il2CppMethodInitialized;
  6135. if (!s_Il2CppMethodInitialized)
  6136. {
  6137. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  6138. s_Il2CppMethodInitialized = true;
  6139. }
  6140. {
  6141. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  6142. if (!L_0)
  6143. {
  6144. goto IL_0013;
  6145. }
  6146. }
  6147. {
  6148. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  6149. NullCheck((RuntimeObject*)L_1);
  6150. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  6151. }
  6152. IL_0013:
  6153. {
  6154. __this->___enumerator_6 = (RuntimeObject*)NULL;
  6155. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  6156. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  6157. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  6158. return;
  6159. }
  6160. }
  6161. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>::MoveNext()
  6162. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m3456D17C56891BB5FC682EE71114BC569738EABC_gshared (WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D* __this, const RuntimeMethod* method)
  6163. {
  6164. static bool s_Il2CppMethodInitialized;
  6165. if (!s_Il2CppMethodInitialized)
  6166. {
  6167. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  6168. s_Il2CppMethodInitialized = true;
  6169. }
  6170. int32_t V_0 = 0;
  6171. RuntimeObject* V_1 = NULL;
  6172. {
  6173. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  6174. V_0 = L_0;
  6175. int32_t L_1 = V_0;
  6176. if ((((int32_t)L_1) == ((int32_t)1)))
  6177. {
  6178. goto IL_0011;
  6179. }
  6180. }
  6181. {
  6182. int32_t L_2 = V_0;
  6183. if ((((int32_t)L_2) == ((int32_t)2)))
  6184. {
  6185. goto IL_0061;
  6186. }
  6187. }
  6188. {
  6189. goto IL_0074;
  6190. }
  6191. IL_0011:
  6192. {
  6193. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  6194. NullCheck(L_3);
  6195. RuntimeObject* L_4;
  6196. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  6197. __this->___enumerator_6 = L_4;
  6198. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  6199. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  6200. goto IL_0061;
  6201. }
  6202. IL_002b:
  6203. {
  6204. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  6205. NullCheck(L_5);
  6206. RuntimeObject* L_6;
  6207. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  6208. V_1 = L_6;
  6209. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6210. if (!L_7)
  6211. {
  6212. goto IL_004d;
  6213. }
  6214. }
  6215. {
  6216. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6217. RuntimeObject* L_9 = V_1;
  6218. NullCheck(L_8);
  6219. bool L_10;
  6220. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  6221. if (!L_10)
  6222. {
  6223. goto IL_0061;
  6224. }
  6225. }
  6226. IL_004d:
  6227. {
  6228. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* L_11 = (Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*)__this->___selector_5;
  6229. RuntimeObject* L_12 = V_1;
  6230. NullCheck(L_11);
  6231. Guid_t L_13;
  6232. L_13 = (( Guid_t (*) (Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  6233. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  6234. return (bool)1;
  6235. }
  6236. IL_0061:
  6237. {
  6238. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  6239. NullCheck((RuntimeObject*)L_14);
  6240. bool L_15;
  6241. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  6242. if (L_15)
  6243. {
  6244. goto IL_002b;
  6245. }
  6246. }
  6247. {
  6248. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  6249. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  6250. }
  6251. IL_0074:
  6252. {
  6253. return (bool)0;
  6254. }
  6255. }
  6256. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  6257. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m66AED880A8AC399ADE5FBC093394F4E24BBB80FF_gshared (WhereSelectEnumerableIterator_2_t3F543DCBB96DE500A8955047B0BEC0082EF9844D* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  6258. {
  6259. {
  6260. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  6261. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  6262. NullCheck(L_1);
  6263. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  6264. return (RuntimeObject*)L_1;
  6265. }
  6266. }
  6267. #ifdef __clang__
  6268. #pragma clang diagnostic pop
  6269. #endif
  6270. #ifdef __clang__
  6271. #pragma clang diagnostic push
  6272. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6273. #pragma clang diagnostic ignored "-Wunused-variable"
  6274. #endif
  6275. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  6276. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m2E08505C4CB96CC2AD340B4A2B0D3BF0D6DA01F9_gshared (WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___2_selector, const RuntimeMethod* method)
  6277. {
  6278. {
  6279. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  6280. RuntimeObject* L_0 = ___0_source;
  6281. __this->___source_3 = L_0;
  6282. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  6283. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  6284. __this->___predicate_4 = L_1;
  6285. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  6286. Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_2 = ___2_selector;
  6287. __this->___selector_5 = L_2;
  6288. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  6289. return;
  6290. }
  6291. }
  6292. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Clone()
  6293. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectEnumerableIterator_2_Clone_m2ED927CF2549A759AE2454F97E33F05FA19B552E_gshared (WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F* __this, const RuntimeMethod* method)
  6294. {
  6295. {
  6296. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  6297. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6298. Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_2 = (Func_2_tACBF5A1656250800CE861707354491F0611F6624*)__this->___selector_5;
  6299. WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F* L_3 = (WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  6300. NullCheck(L_3);
  6301. (( void (*) (WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tACBF5A1656250800CE861707354491F0611F6624*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  6302. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  6303. }
  6304. }
  6305. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Dispose()
  6306. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mD2A476DDFBA6E23D20625E4C1C35AC98DE5F19F2_gshared (WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F* __this, const RuntimeMethod* method)
  6307. {
  6308. static bool s_Il2CppMethodInitialized;
  6309. if (!s_Il2CppMethodInitialized)
  6310. {
  6311. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  6312. s_Il2CppMethodInitialized = true;
  6313. }
  6314. {
  6315. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  6316. if (!L_0)
  6317. {
  6318. goto IL_0013;
  6319. }
  6320. }
  6321. {
  6322. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  6323. NullCheck((RuntimeObject*)L_1);
  6324. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  6325. }
  6326. IL_0013:
  6327. {
  6328. __this->___enumerator_6 = (RuntimeObject*)NULL;
  6329. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  6330. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  6331. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  6332. return;
  6333. }
  6334. }
  6335. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::MoveNext()
  6336. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mC68F6626ADFD57493351521CE15400BBD158BC68_gshared (WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F* __this, const RuntimeMethod* method)
  6337. {
  6338. static bool s_Il2CppMethodInitialized;
  6339. if (!s_Il2CppMethodInitialized)
  6340. {
  6341. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  6342. s_Il2CppMethodInitialized = true;
  6343. }
  6344. int32_t V_0 = 0;
  6345. RuntimeObject* V_1 = NULL;
  6346. {
  6347. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  6348. V_0 = L_0;
  6349. int32_t L_1 = V_0;
  6350. if ((((int32_t)L_1) == ((int32_t)1)))
  6351. {
  6352. goto IL_0011;
  6353. }
  6354. }
  6355. {
  6356. int32_t L_2 = V_0;
  6357. if ((((int32_t)L_2) == ((int32_t)2)))
  6358. {
  6359. goto IL_0061;
  6360. }
  6361. }
  6362. {
  6363. goto IL_0074;
  6364. }
  6365. IL_0011:
  6366. {
  6367. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  6368. NullCheck(L_3);
  6369. RuntimeObject* L_4;
  6370. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  6371. __this->___enumerator_6 = L_4;
  6372. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  6373. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  6374. goto IL_0061;
  6375. }
  6376. IL_002b:
  6377. {
  6378. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  6379. NullCheck(L_5);
  6380. RuntimeObject* L_6;
  6381. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  6382. V_1 = L_6;
  6383. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6384. if (!L_7)
  6385. {
  6386. goto IL_004d;
  6387. }
  6388. }
  6389. {
  6390. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6391. RuntimeObject* L_9 = V_1;
  6392. NullCheck(L_8);
  6393. bool L_10;
  6394. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  6395. if (!L_10)
  6396. {
  6397. goto IL_0061;
  6398. }
  6399. }
  6400. IL_004d:
  6401. {
  6402. Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_11 = (Func_2_tACBF5A1656250800CE861707354491F0611F6624*)__this->___selector_5;
  6403. RuntimeObject* L_12 = V_1;
  6404. NullCheck(L_11);
  6405. RuntimeObject* L_13;
  6406. L_13 = (( RuntimeObject* (*) (Func_2_tACBF5A1656250800CE861707354491F0611F6624*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  6407. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  6408. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  6409. return (bool)1;
  6410. }
  6411. IL_0061:
  6412. {
  6413. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  6414. NullCheck((RuntimeObject*)L_14);
  6415. bool L_15;
  6416. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  6417. if (L_15)
  6418. {
  6419. goto IL_002b;
  6420. }
  6421. }
  6422. {
  6423. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  6424. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  6425. }
  6426. IL_0074:
  6427. {
  6428. return (bool)0;
  6429. }
  6430. }
  6431. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  6432. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mA93AACD32DB1D01903967A4CD1F5D74E84AA5F96_gshared (WhereSelectEnumerableIterator_2_t585674E4C2106F965D6B51B3B1068924FC97CE0F* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  6433. {
  6434. {
  6435. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  6436. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  6437. NullCheck(L_1);
  6438. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  6439. return (RuntimeObject*)L_1;
  6440. }
  6441. }
  6442. #ifdef __clang__
  6443. #pragma clang diagnostic pop
  6444. #endif
  6445. #ifdef __clang__
  6446. #pragma clang diagnostic push
  6447. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6448. #pragma clang diagnostic ignored "-Wunused-variable"
  6449. #endif
  6450. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  6451. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mE8B29F90A4CD398E256C48F9451231F2EE02008E_gshared (WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* ___2_selector, const RuntimeMethod* method)
  6452. {
  6453. {
  6454. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  6455. RuntimeObject* L_0 = ___0_source;
  6456. __this->___source_3 = L_0;
  6457. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  6458. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  6459. __this->___predicate_4 = L_1;
  6460. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  6461. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* L_2 = ___2_selector;
  6462. __this->___selector_5 = L_2;
  6463. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  6464. return;
  6465. }
  6466. }
  6467. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>::Clone()
  6468. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectEnumerableIterator_2_Clone_mD3C803B488F94D24D9F129FD93E41274437E991E_gshared (WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94* __this, const RuntimeMethod* method)
  6469. {
  6470. {
  6471. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  6472. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6473. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* L_2 = (Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*)__this->___selector_5;
  6474. WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94* L_3 = (WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  6475. NullCheck(L_3);
  6476. (( void (*) (WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  6477. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  6478. }
  6479. }
  6480. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>::Dispose()
  6481. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_mC03D128C0216636BDA33DD30E366835164B2FEC3_gshared (WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94* __this, const RuntimeMethod* method)
  6482. {
  6483. static bool s_Il2CppMethodInitialized;
  6484. if (!s_Il2CppMethodInitialized)
  6485. {
  6486. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  6487. s_Il2CppMethodInitialized = true;
  6488. }
  6489. {
  6490. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  6491. if (!L_0)
  6492. {
  6493. goto IL_0013;
  6494. }
  6495. }
  6496. {
  6497. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  6498. NullCheck((RuntimeObject*)L_1);
  6499. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  6500. }
  6501. IL_0013:
  6502. {
  6503. __this->___enumerator_6 = (RuntimeObject*)NULL;
  6504. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  6505. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  6506. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  6507. return;
  6508. }
  6509. }
  6510. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>::MoveNext()
  6511. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mC191409559A19D8A9E50612452F42848CBE42A9E_gshared (WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94* __this, const RuntimeMethod* method)
  6512. {
  6513. static bool s_Il2CppMethodInitialized;
  6514. if (!s_Il2CppMethodInitialized)
  6515. {
  6516. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  6517. s_Il2CppMethodInitialized = true;
  6518. }
  6519. int32_t V_0 = 0;
  6520. RuntimeObject* V_1 = NULL;
  6521. {
  6522. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  6523. V_0 = L_0;
  6524. int32_t L_1 = V_0;
  6525. if ((((int32_t)L_1) == ((int32_t)1)))
  6526. {
  6527. goto IL_0011;
  6528. }
  6529. }
  6530. {
  6531. int32_t L_2 = V_0;
  6532. if ((((int32_t)L_2) == ((int32_t)2)))
  6533. {
  6534. goto IL_0061;
  6535. }
  6536. }
  6537. {
  6538. goto IL_0074;
  6539. }
  6540. IL_0011:
  6541. {
  6542. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  6543. NullCheck(L_3);
  6544. RuntimeObject* L_4;
  6545. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  6546. __this->___enumerator_6 = L_4;
  6547. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  6548. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  6549. goto IL_0061;
  6550. }
  6551. IL_002b:
  6552. {
  6553. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  6554. NullCheck(L_5);
  6555. RuntimeObject* L_6;
  6556. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  6557. V_1 = L_6;
  6558. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6559. if (!L_7)
  6560. {
  6561. goto IL_004d;
  6562. }
  6563. }
  6564. {
  6565. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6566. RuntimeObject* L_9 = V_1;
  6567. NullCheck(L_8);
  6568. bool L_10;
  6569. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  6570. if (!L_10)
  6571. {
  6572. goto IL_0061;
  6573. }
  6574. }
  6575. IL_004d:
  6576. {
  6577. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* L_11 = (Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*)__this->___selector_5;
  6578. RuntimeObject* L_12 = V_1;
  6579. NullCheck(L_11);
  6580. float L_13;
  6581. L_13 = (( float (*) (Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  6582. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  6583. return (bool)1;
  6584. }
  6585. IL_0061:
  6586. {
  6587. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  6588. NullCheck((RuntimeObject*)L_14);
  6589. bool L_15;
  6590. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  6591. if (L_15)
  6592. {
  6593. goto IL_002b;
  6594. }
  6595. }
  6596. {
  6597. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  6598. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  6599. }
  6600. IL_0074:
  6601. {
  6602. return (bool)0;
  6603. }
  6604. }
  6605. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  6606. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_mD90BB6C0B5510E39C91CC55D6DCA11BA47E9298C_gshared (WhereSelectEnumerableIterator_2_tF7B17AE20C591499CCC69CF4CFEA521F28D66E94* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  6607. {
  6608. {
  6609. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  6610. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  6611. NullCheck(L_1);
  6612. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  6613. return (RuntimeObject*)L_1;
  6614. }
  6615. }
  6616. #ifdef __clang__
  6617. #pragma clang diagnostic pop
  6618. #endif
  6619. #ifdef __clang__
  6620. #pragma clang diagnostic push
  6621. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6622. #pragma clang diagnostic ignored "-Wunused-variable"
  6623. #endif
  6624. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  6625. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m6FA4436235944B4B75A24F34F5DA32B76488E2B5_gshared (WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* ___2_selector, const RuntimeMethod* method)
  6626. {
  6627. {
  6628. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  6629. RuntimeObject* L_0 = ___0_source;
  6630. __this->___source_3 = L_0;
  6631. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  6632. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  6633. __this->___predicate_4 = L_1;
  6634. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  6635. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* L_2 = ___2_selector;
  6636. __this->___selector_5 = L_2;
  6637. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  6638. return;
  6639. }
  6640. }
  6641. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>::Clone()
  6642. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectEnumerableIterator_2_Clone_m1F52598FC23B7AB560372FE98B58067A94A96A81_gshared (WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960* __this, const RuntimeMethod* method)
  6643. {
  6644. {
  6645. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  6646. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6647. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* L_2 = (Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*)__this->___selector_5;
  6648. WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960* L_3 = (WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  6649. NullCheck(L_3);
  6650. (( void (*) (WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  6651. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  6652. }
  6653. }
  6654. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>::Dispose()
  6655. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m302D5C93B179686847F1A4CE6108FC6B56481531_gshared (WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960* __this, const RuntimeMethod* method)
  6656. {
  6657. static bool s_Il2CppMethodInitialized;
  6658. if (!s_Il2CppMethodInitialized)
  6659. {
  6660. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  6661. s_Il2CppMethodInitialized = true;
  6662. }
  6663. {
  6664. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  6665. if (!L_0)
  6666. {
  6667. goto IL_0013;
  6668. }
  6669. }
  6670. {
  6671. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  6672. NullCheck((RuntimeObject*)L_1);
  6673. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  6674. }
  6675. IL_0013:
  6676. {
  6677. __this->___enumerator_6 = (RuntimeObject*)NULL;
  6678. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  6679. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  6680. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  6681. return;
  6682. }
  6683. }
  6684. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>::MoveNext()
  6685. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mBBAE19AD5D2C01A31782B89775B951F725F39B28_gshared (WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960* __this, const RuntimeMethod* method)
  6686. {
  6687. static bool s_Il2CppMethodInitialized;
  6688. if (!s_Il2CppMethodInitialized)
  6689. {
  6690. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  6691. s_Il2CppMethodInitialized = true;
  6692. }
  6693. int32_t V_0 = 0;
  6694. RuntimeObject* V_1 = NULL;
  6695. {
  6696. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  6697. V_0 = L_0;
  6698. int32_t L_1 = V_0;
  6699. if ((((int32_t)L_1) == ((int32_t)1)))
  6700. {
  6701. goto IL_0011;
  6702. }
  6703. }
  6704. {
  6705. int32_t L_2 = V_0;
  6706. if ((((int32_t)L_2) == ((int32_t)2)))
  6707. {
  6708. goto IL_0061;
  6709. }
  6710. }
  6711. {
  6712. goto IL_0074;
  6713. }
  6714. IL_0011:
  6715. {
  6716. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  6717. NullCheck(L_3);
  6718. RuntimeObject* L_4;
  6719. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  6720. __this->___enumerator_6 = L_4;
  6721. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  6722. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  6723. goto IL_0061;
  6724. }
  6725. IL_002b:
  6726. {
  6727. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  6728. NullCheck(L_5);
  6729. RuntimeObject* L_6;
  6730. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  6731. V_1 = L_6;
  6732. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6733. if (!L_7)
  6734. {
  6735. goto IL_004d;
  6736. }
  6737. }
  6738. {
  6739. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6740. RuntimeObject* L_9 = V_1;
  6741. NullCheck(L_8);
  6742. bool L_10;
  6743. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  6744. if (!L_10)
  6745. {
  6746. goto IL_0061;
  6747. }
  6748. }
  6749. IL_004d:
  6750. {
  6751. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* L_11 = (Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*)__this->___selector_5;
  6752. RuntimeObject* L_12 = V_1;
  6753. NullCheck(L_11);
  6754. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  6755. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  6756. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  6757. return (bool)1;
  6758. }
  6759. IL_0061:
  6760. {
  6761. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  6762. NullCheck((RuntimeObject*)L_14);
  6763. bool L_15;
  6764. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  6765. if (L_15)
  6766. {
  6767. goto IL_002b;
  6768. }
  6769. }
  6770. {
  6771. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  6772. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  6773. }
  6774. IL_0074:
  6775. {
  6776. return (bool)0;
  6777. }
  6778. }
  6779. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  6780. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m7014C085FB4E66204515FC8D471C5759CFE37533_gshared (WhereSelectEnumerableIterator_2_t9BA069C479F6350DD8820CB03C78407488F61960* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  6781. {
  6782. {
  6783. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  6784. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  6785. NullCheck(L_1);
  6786. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  6787. return (RuntimeObject*)L_1;
  6788. }
  6789. }
  6790. #ifdef __clang__
  6791. #pragma clang diagnostic pop
  6792. #endif
  6793. #ifdef __clang__
  6794. #pragma clang diagnostic push
  6795. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6796. #pragma clang diagnostic ignored "-Wunused-variable"
  6797. #endif
  6798. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  6799. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mF525B76AEB78A4568BE673595BE479D5599ED7D1_gshared (WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* ___2_selector, const RuntimeMethod* method)
  6800. {
  6801. {
  6802. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  6803. RuntimeObject* L_0 = ___0_source;
  6804. __this->___source_3 = L_0;
  6805. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  6806. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  6807. __this->___predicate_4 = L_1;
  6808. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  6809. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* L_2 = ___2_selector;
  6810. __this->___selector_5 = L_2;
  6811. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  6812. return;
  6813. }
  6814. }
  6815. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>::Clone()
  6816. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectEnumerableIterator_2_Clone_m9C87509203C1BB1D189F5030E267DEA55BC3F45E_gshared (WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4* __this, const RuntimeMethod* method)
  6817. {
  6818. {
  6819. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  6820. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6821. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* L_2 = (Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*)__this->___selector_5;
  6822. WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4* L_3 = (WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  6823. NullCheck(L_3);
  6824. (( void (*) (WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  6825. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  6826. }
  6827. }
  6828. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>::Dispose()
  6829. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m5984DD2B03E0FB22C0AC758BEEF39BF184BB2C1A_gshared (WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4* __this, const RuntimeMethod* method)
  6830. {
  6831. static bool s_Il2CppMethodInitialized;
  6832. if (!s_Il2CppMethodInitialized)
  6833. {
  6834. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  6835. s_Il2CppMethodInitialized = true;
  6836. }
  6837. {
  6838. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  6839. if (!L_0)
  6840. {
  6841. goto IL_0013;
  6842. }
  6843. }
  6844. {
  6845. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  6846. NullCheck((RuntimeObject*)L_1);
  6847. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  6848. }
  6849. IL_0013:
  6850. {
  6851. __this->___enumerator_6 = (RuntimeObject*)NULL;
  6852. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  6853. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  6854. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  6855. return;
  6856. }
  6857. }
  6858. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>::MoveNext()
  6859. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mC3C050FFBA0473C20F8C996AD6ECFEF3A3A1C48D_gshared (WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4* __this, const RuntimeMethod* method)
  6860. {
  6861. static bool s_Il2CppMethodInitialized;
  6862. if (!s_Il2CppMethodInitialized)
  6863. {
  6864. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  6865. s_Il2CppMethodInitialized = true;
  6866. }
  6867. int32_t V_0 = 0;
  6868. RuntimeObject* V_1 = NULL;
  6869. {
  6870. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  6871. V_0 = L_0;
  6872. int32_t L_1 = V_0;
  6873. if ((((int32_t)L_1) == ((int32_t)1)))
  6874. {
  6875. goto IL_0011;
  6876. }
  6877. }
  6878. {
  6879. int32_t L_2 = V_0;
  6880. if ((((int32_t)L_2) == ((int32_t)2)))
  6881. {
  6882. goto IL_0061;
  6883. }
  6884. }
  6885. {
  6886. goto IL_0074;
  6887. }
  6888. IL_0011:
  6889. {
  6890. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  6891. NullCheck(L_3);
  6892. RuntimeObject* L_4;
  6893. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  6894. __this->___enumerator_6 = L_4;
  6895. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  6896. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  6897. goto IL_0061;
  6898. }
  6899. IL_002b:
  6900. {
  6901. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  6902. NullCheck(L_5);
  6903. RuntimeObject* L_6;
  6904. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  6905. V_1 = L_6;
  6906. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6907. if (!L_7)
  6908. {
  6909. goto IL_004d;
  6910. }
  6911. }
  6912. {
  6913. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6914. RuntimeObject* L_9 = V_1;
  6915. NullCheck(L_8);
  6916. bool L_10;
  6917. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  6918. if (!L_10)
  6919. {
  6920. goto IL_0061;
  6921. }
  6922. }
  6923. IL_004d:
  6924. {
  6925. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* L_11 = (Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*)__this->___selector_5;
  6926. RuntimeObject* L_12 = V_1;
  6927. NullCheck(L_11);
  6928. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  6929. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  6930. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  6931. return (bool)1;
  6932. }
  6933. IL_0061:
  6934. {
  6935. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  6936. NullCheck((RuntimeObject*)L_14);
  6937. bool L_15;
  6938. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  6939. if (L_15)
  6940. {
  6941. goto IL_002b;
  6942. }
  6943. }
  6944. {
  6945. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  6946. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  6947. }
  6948. IL_0074:
  6949. {
  6950. return (bool)0;
  6951. }
  6952. }
  6953. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  6954. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m24860A742CBDD2D9B7E03CDC19F89FD7D931105E_gshared (WhereSelectEnumerableIterator_2_tBB48E71165244C67AC142EA13470E134AA1F3AD4* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  6955. {
  6956. {
  6957. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  6958. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  6959. NullCheck(L_1);
  6960. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  6961. return (RuntimeObject*)L_1;
  6962. }
  6963. }
  6964. #ifdef __clang__
  6965. #pragma clang diagnostic pop
  6966. #endif
  6967. #ifdef __clang__
  6968. #pragma clang diagnostic push
  6969. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6970. #pragma clang diagnostic ignored "-Wunused-variable"
  6971. #endif
  6972. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  6973. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m4C47D3D88C68DBE4F02A94B5DDE35EE6464F6265_gshared (WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8* __this, RuntimeObject* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* ___2_selector, const RuntimeMethod* method)
  6974. {
  6975. {
  6976. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  6977. RuntimeObject* L_0 = ___0_source;
  6978. __this->___source_3 = L_0;
  6979. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  6980. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  6981. __this->___predicate_4 = L_1;
  6982. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  6983. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* L_2 = ___2_selector;
  6984. __this->___selector_5 = L_2;
  6985. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  6986. return;
  6987. }
  6988. }
  6989. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>::Clone()
  6990. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectEnumerableIterator_2_Clone_m48EE9935E5718FA032C10081E79153A8E84D150A_gshared (WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8* __this, const RuntimeMethod* method)
  6991. {
  6992. {
  6993. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  6994. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  6995. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* L_2 = (Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*)__this->___selector_5;
  6996. WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8* L_3 = (WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  6997. NullCheck(L_3);
  6998. (( void (*) (WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  6999. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  7000. }
  7001. }
  7002. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>::Dispose()
  7003. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m92283E84C44A0178A6733D0F5A85A8B894D50419_gshared (WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8* __this, const RuntimeMethod* method)
  7004. {
  7005. static bool s_Il2CppMethodInitialized;
  7006. if (!s_Il2CppMethodInitialized)
  7007. {
  7008. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  7009. s_Il2CppMethodInitialized = true;
  7010. }
  7011. {
  7012. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  7013. if (!L_0)
  7014. {
  7015. goto IL_0013;
  7016. }
  7017. }
  7018. {
  7019. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  7020. NullCheck((RuntimeObject*)L_1);
  7021. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  7022. }
  7023. IL_0013:
  7024. {
  7025. __this->___enumerator_6 = (RuntimeObject*)NULL;
  7026. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  7027. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  7028. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  7029. return;
  7030. }
  7031. }
  7032. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>::MoveNext()
  7033. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m2B773835978143AB24E7E6894ADAB49B1C1884DD_gshared (WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8* __this, const RuntimeMethod* method)
  7034. {
  7035. static bool s_Il2CppMethodInitialized;
  7036. if (!s_Il2CppMethodInitialized)
  7037. {
  7038. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  7039. s_Il2CppMethodInitialized = true;
  7040. }
  7041. int32_t V_0 = 0;
  7042. RuntimeObject* V_1 = NULL;
  7043. {
  7044. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  7045. V_0 = L_0;
  7046. int32_t L_1 = V_0;
  7047. if ((((int32_t)L_1) == ((int32_t)1)))
  7048. {
  7049. goto IL_0011;
  7050. }
  7051. }
  7052. {
  7053. int32_t L_2 = V_0;
  7054. if ((((int32_t)L_2) == ((int32_t)2)))
  7055. {
  7056. goto IL_0061;
  7057. }
  7058. }
  7059. {
  7060. goto IL_0074;
  7061. }
  7062. IL_0011:
  7063. {
  7064. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  7065. NullCheck(L_3);
  7066. RuntimeObject* L_4;
  7067. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  7068. __this->___enumerator_6 = L_4;
  7069. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  7070. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  7071. goto IL_0061;
  7072. }
  7073. IL_002b:
  7074. {
  7075. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  7076. NullCheck(L_5);
  7077. RuntimeObject* L_6;
  7078. L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  7079. V_1 = L_6;
  7080. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  7081. if (!L_7)
  7082. {
  7083. goto IL_004d;
  7084. }
  7085. }
  7086. {
  7087. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  7088. RuntimeObject* L_9 = V_1;
  7089. NullCheck(L_8);
  7090. bool L_10;
  7091. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  7092. if (!L_10)
  7093. {
  7094. goto IL_0061;
  7095. }
  7096. }
  7097. IL_004d:
  7098. {
  7099. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* L_11 = (Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*)__this->___selector_5;
  7100. RuntimeObject* L_12 = V_1;
  7101. NullCheck(L_11);
  7102. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  7103. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  7104. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  7105. return (bool)1;
  7106. }
  7107. IL_0061:
  7108. {
  7109. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  7110. NullCheck((RuntimeObject*)L_14);
  7111. bool L_15;
  7112. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  7113. if (L_15)
  7114. {
  7115. goto IL_002b;
  7116. }
  7117. }
  7118. {
  7119. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  7120. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  7121. }
  7122. IL_0074:
  7123. {
  7124. return (bool)0;
  7125. }
  7126. }
  7127. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<System.Object,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  7128. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m879577E0A88B6237132EB45F7213F972DB78EAC4_gshared (WhereSelectEnumerableIterator_2_t5EE4A14140C4AAB4321A3CF7D94F2D9407A02CE8* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  7129. {
  7130. {
  7131. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  7132. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  7133. NullCheck(L_1);
  7134. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  7135. return (RuntimeObject*)L_1;
  7136. }
  7137. }
  7138. #ifdef __clang__
  7139. #pragma clang diagnostic pop
  7140. #endif
  7141. #ifdef __clang__
  7142. #pragma clang diagnostic push
  7143. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7144. #pragma clang diagnostic ignored "-Wunused-variable"
  7145. #endif
  7146. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  7147. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m0F0AF498F71C7FC001B08EB4161FB9B0C9333104_gshared (WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_tC496704D554895234B1360058C5CC2D901C24957* ___2_selector, const RuntimeMethod* method)
  7148. {
  7149. {
  7150. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  7151. RuntimeObject* L_0 = ___0_source;
  7152. __this->___source_3 = L_0;
  7153. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  7154. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  7155. __this->___predicate_4 = L_1;
  7156. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  7157. Func_2_tC496704D554895234B1360058C5CC2D901C24957* L_2 = ___2_selector;
  7158. __this->___selector_5 = L_2;
  7159. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  7160. return;
  7161. }
  7162. }
  7163. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  7164. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectEnumerableIterator_2_Clone_m0EA4CA92F3E9C3950CC21CB5C3AFB33F9AFF3A5F_gshared (WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41* __this, const RuntimeMethod* method)
  7165. {
  7166. {
  7167. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  7168. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7169. Func_2_tC496704D554895234B1360058C5CC2D901C24957* L_2 = (Func_2_tC496704D554895234B1360058C5CC2D901C24957*)__this->___selector_5;
  7170. WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41* L_3 = (WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  7171. NullCheck(L_3);
  7172. (( void (*) (WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_tC496704D554895234B1360058C5CC2D901C24957*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  7173. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  7174. }
  7175. }
  7176. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::Dispose()
  7177. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m48B8A0CF7ADBD97786EAB0DDFF2383F41056A4B5_gshared (WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41* __this, const RuntimeMethod* method)
  7178. {
  7179. static bool s_Il2CppMethodInitialized;
  7180. if (!s_Il2CppMethodInitialized)
  7181. {
  7182. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  7183. s_Il2CppMethodInitialized = true;
  7184. }
  7185. {
  7186. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  7187. if (!L_0)
  7188. {
  7189. goto IL_0013;
  7190. }
  7191. }
  7192. {
  7193. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  7194. NullCheck((RuntimeObject*)L_1);
  7195. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  7196. }
  7197. IL_0013:
  7198. {
  7199. __this->___enumerator_6 = (RuntimeObject*)NULL;
  7200. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  7201. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  7202. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  7203. return;
  7204. }
  7205. }
  7206. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  7207. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m1DE063A269B45BA31F992D76E75CB6AC12973A75_gshared (WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41* __this, const RuntimeMethod* method)
  7208. {
  7209. static bool s_Il2CppMethodInitialized;
  7210. if (!s_Il2CppMethodInitialized)
  7211. {
  7212. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  7213. s_Il2CppMethodInitialized = true;
  7214. }
  7215. int32_t V_0 = 0;
  7216. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  7217. memset((&V_1), 0, sizeof(V_1));
  7218. {
  7219. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  7220. V_0 = L_0;
  7221. int32_t L_1 = V_0;
  7222. if ((((int32_t)L_1) == ((int32_t)1)))
  7223. {
  7224. goto IL_0011;
  7225. }
  7226. }
  7227. {
  7228. int32_t L_2 = V_0;
  7229. if ((((int32_t)L_2) == ((int32_t)2)))
  7230. {
  7231. goto IL_0061;
  7232. }
  7233. }
  7234. {
  7235. goto IL_0074;
  7236. }
  7237. IL_0011:
  7238. {
  7239. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  7240. NullCheck(L_3);
  7241. RuntimeObject* L_4;
  7242. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  7243. __this->___enumerator_6 = L_4;
  7244. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  7245. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  7246. goto IL_0061;
  7247. }
  7248. IL_002b:
  7249. {
  7250. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  7251. NullCheck(L_5);
  7252. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  7253. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  7254. V_1 = L_6;
  7255. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7256. if (!L_7)
  7257. {
  7258. goto IL_004d;
  7259. }
  7260. }
  7261. {
  7262. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7263. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  7264. NullCheck(L_8);
  7265. bool L_10;
  7266. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  7267. if (!L_10)
  7268. {
  7269. goto IL_0061;
  7270. }
  7271. }
  7272. IL_004d:
  7273. {
  7274. Func_2_tC496704D554895234B1360058C5CC2D901C24957* L_11 = (Func_2_tC496704D554895234B1360058C5CC2D901C24957*)__this->___selector_5;
  7275. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  7276. NullCheck(L_11);
  7277. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  7278. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_tC496704D554895234B1360058C5CC2D901C24957*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  7279. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  7280. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  7281. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  7282. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  7283. #endif
  7284. return (bool)1;
  7285. }
  7286. IL_0061:
  7287. {
  7288. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  7289. NullCheck((RuntimeObject*)L_14);
  7290. bool L_15;
  7291. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  7292. if (L_15)
  7293. {
  7294. goto IL_002b;
  7295. }
  7296. }
  7297. {
  7298. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  7299. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  7300. }
  7301. IL_0074:
  7302. {
  7303. return (bool)0;
  7304. }
  7305. }
  7306. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  7307. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m9C320BB2EDE6EDD936CFAD7233CE4F06D00511FA_gshared (WhereSelectEnumerableIterator_2_t387B61C2DA86B80D999D50E4A6925DC090E15C41* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  7308. {
  7309. {
  7310. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  7311. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  7312. NullCheck(L_1);
  7313. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  7314. return (RuntimeObject*)L_1;
  7315. }
  7316. }
  7317. #ifdef __clang__
  7318. #pragma clang diagnostic pop
  7319. #endif
  7320. #ifdef __clang__
  7321. #pragma clang diagnostic push
  7322. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7323. #pragma clang diagnostic ignored "-Wunused-variable"
  7324. #endif
  7325. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  7326. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_mF927B2AEABB73D347AB1BBCE365E3587D7EA7C2F_gshared (WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* ___2_selector, const RuntimeMethod* method)
  7327. {
  7328. {
  7329. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  7330. RuntimeObject* L_0 = ___0_source;
  7331. __this->___source_3 = L_0;
  7332. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  7333. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  7334. __this->___predicate_4 = L_1;
  7335. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  7336. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* L_2 = ___2_selector;
  7337. __this->___selector_5 = L_2;
  7338. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  7339. return;
  7340. }
  7341. }
  7342. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::Clone()
  7343. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectEnumerableIterator_2_Clone_m2553722E6A8C16E031518BEA2F1983C0ED54BF26_gshared (WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D* __this, const RuntimeMethod* method)
  7344. {
  7345. {
  7346. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  7347. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7348. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* L_2 = (Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*)__this->___selector_5;
  7349. WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D* L_3 = (WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  7350. NullCheck(L_3);
  7351. (( void (*) (WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  7352. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  7353. }
  7354. }
  7355. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::Dispose()
  7356. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m14F18AC8FAE01A992DD8EF7FA2932BB704D48B6B_gshared (WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D* __this, const RuntimeMethod* method)
  7357. {
  7358. static bool s_Il2CppMethodInitialized;
  7359. if (!s_Il2CppMethodInitialized)
  7360. {
  7361. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  7362. s_Il2CppMethodInitialized = true;
  7363. }
  7364. {
  7365. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  7366. if (!L_0)
  7367. {
  7368. goto IL_0013;
  7369. }
  7370. }
  7371. {
  7372. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  7373. NullCheck((RuntimeObject*)L_1);
  7374. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  7375. }
  7376. IL_0013:
  7377. {
  7378. __this->___enumerator_6 = (RuntimeObject*)NULL;
  7379. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  7380. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  7381. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  7382. return;
  7383. }
  7384. }
  7385. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::MoveNext()
  7386. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m68E772D696305CD6B61F62F52B4C4CBC30D9CA0E_gshared (WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D* __this, const RuntimeMethod* method)
  7387. {
  7388. static bool s_Il2CppMethodInitialized;
  7389. if (!s_Il2CppMethodInitialized)
  7390. {
  7391. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  7392. s_Il2CppMethodInitialized = true;
  7393. }
  7394. int32_t V_0 = 0;
  7395. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  7396. memset((&V_1), 0, sizeof(V_1));
  7397. {
  7398. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  7399. V_0 = L_0;
  7400. int32_t L_1 = V_0;
  7401. if ((((int32_t)L_1) == ((int32_t)1)))
  7402. {
  7403. goto IL_0011;
  7404. }
  7405. }
  7406. {
  7407. int32_t L_2 = V_0;
  7408. if ((((int32_t)L_2) == ((int32_t)2)))
  7409. {
  7410. goto IL_0061;
  7411. }
  7412. }
  7413. {
  7414. goto IL_0074;
  7415. }
  7416. IL_0011:
  7417. {
  7418. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  7419. NullCheck(L_3);
  7420. RuntimeObject* L_4;
  7421. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  7422. __this->___enumerator_6 = L_4;
  7423. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  7424. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  7425. goto IL_0061;
  7426. }
  7427. IL_002b:
  7428. {
  7429. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  7430. NullCheck(L_5);
  7431. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  7432. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  7433. V_1 = L_6;
  7434. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7435. if (!L_7)
  7436. {
  7437. goto IL_004d;
  7438. }
  7439. }
  7440. {
  7441. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7442. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  7443. NullCheck(L_8);
  7444. bool L_10;
  7445. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  7446. if (!L_10)
  7447. {
  7448. goto IL_0061;
  7449. }
  7450. }
  7451. IL_004d:
  7452. {
  7453. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* L_11 = (Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*)__this->___selector_5;
  7454. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  7455. NullCheck(L_11);
  7456. Il2CppChar L_13;
  7457. L_13 = (( Il2CppChar (*) (Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  7458. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  7459. return (bool)1;
  7460. }
  7461. IL_0061:
  7462. {
  7463. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  7464. NullCheck((RuntimeObject*)L_14);
  7465. bool L_15;
  7466. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  7467. if (L_15)
  7468. {
  7469. goto IL_002b;
  7470. }
  7471. }
  7472. {
  7473. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  7474. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  7475. }
  7476. IL_0074:
  7477. {
  7478. return (bool)0;
  7479. }
  7480. }
  7481. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  7482. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m4457FEBCFE46BCF19EFA6720F035326F1F3AD766_gshared (WhereSelectEnumerableIterator_2_t64A21E3491785160126ED225DEE1C5E93E2FC08D* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  7483. {
  7484. {
  7485. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  7486. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  7487. NullCheck(L_1);
  7488. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  7489. return (RuntimeObject*)L_1;
  7490. }
  7491. }
  7492. #ifdef __clang__
  7493. #pragma clang diagnostic pop
  7494. #endif
  7495. #ifdef __clang__
  7496. #pragma clang diagnostic push
  7497. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7498. #pragma clang diagnostic ignored "-Wunused-variable"
  7499. #endif
  7500. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  7501. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m29936FF8FB3FB8CAC3D1926DDCB989AF425EE020_gshared (WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* ___2_selector, const RuntimeMethod* method)
  7502. {
  7503. {
  7504. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  7505. RuntimeObject* L_0 = ___0_source;
  7506. __this->___source_3 = L_0;
  7507. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  7508. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  7509. __this->___predicate_4 = L_1;
  7510. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  7511. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* L_2 = ___2_selector;
  7512. __this->___selector_5 = L_2;
  7513. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  7514. return;
  7515. }
  7516. }
  7517. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::Clone()
  7518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectEnumerableIterator_2_Clone_m42876D9AE7394E92E27C826791E68A845EA79411_gshared (WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571* __this, const RuntimeMethod* method)
  7519. {
  7520. {
  7521. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  7522. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7523. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* L_2 = (Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*)__this->___selector_5;
  7524. WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571* L_3 = (WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  7525. NullCheck(L_3);
  7526. (( void (*) (WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  7527. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  7528. }
  7529. }
  7530. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::Dispose()
  7531. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m7959369F26F39F8983D597E8E351B5F64CD9CCBA_gshared (WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571* __this, const RuntimeMethod* method)
  7532. {
  7533. static bool s_Il2CppMethodInitialized;
  7534. if (!s_Il2CppMethodInitialized)
  7535. {
  7536. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  7537. s_Il2CppMethodInitialized = true;
  7538. }
  7539. {
  7540. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  7541. if (!L_0)
  7542. {
  7543. goto IL_0013;
  7544. }
  7545. }
  7546. {
  7547. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  7548. NullCheck((RuntimeObject*)L_1);
  7549. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  7550. }
  7551. IL_0013:
  7552. {
  7553. __this->___enumerator_6 = (RuntimeObject*)NULL;
  7554. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  7555. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  7556. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  7557. return;
  7558. }
  7559. }
  7560. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::MoveNext()
  7561. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m0141855B03228360724C6026846783C54F07DA79_gshared (WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571* __this, const RuntimeMethod* method)
  7562. {
  7563. static bool s_Il2CppMethodInitialized;
  7564. if (!s_Il2CppMethodInitialized)
  7565. {
  7566. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  7567. s_Il2CppMethodInitialized = true;
  7568. }
  7569. int32_t V_0 = 0;
  7570. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  7571. memset((&V_1), 0, sizeof(V_1));
  7572. {
  7573. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  7574. V_0 = L_0;
  7575. int32_t L_1 = V_0;
  7576. if ((((int32_t)L_1) == ((int32_t)1)))
  7577. {
  7578. goto IL_0011;
  7579. }
  7580. }
  7581. {
  7582. int32_t L_2 = V_0;
  7583. if ((((int32_t)L_2) == ((int32_t)2)))
  7584. {
  7585. goto IL_0061;
  7586. }
  7587. }
  7588. {
  7589. goto IL_0074;
  7590. }
  7591. IL_0011:
  7592. {
  7593. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  7594. NullCheck(L_3);
  7595. RuntimeObject* L_4;
  7596. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  7597. __this->___enumerator_6 = L_4;
  7598. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  7599. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  7600. goto IL_0061;
  7601. }
  7602. IL_002b:
  7603. {
  7604. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  7605. NullCheck(L_5);
  7606. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  7607. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  7608. V_1 = L_6;
  7609. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7610. if (!L_7)
  7611. {
  7612. goto IL_004d;
  7613. }
  7614. }
  7615. {
  7616. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7617. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  7618. NullCheck(L_8);
  7619. bool L_10;
  7620. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  7621. if (!L_10)
  7622. {
  7623. goto IL_0061;
  7624. }
  7625. }
  7626. IL_004d:
  7627. {
  7628. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* L_11 = (Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*)__this->___selector_5;
  7629. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  7630. NullCheck(L_11);
  7631. Guid_t L_13;
  7632. L_13 = (( Guid_t (*) (Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  7633. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  7634. return (bool)1;
  7635. }
  7636. IL_0061:
  7637. {
  7638. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  7639. NullCheck((RuntimeObject*)L_14);
  7640. bool L_15;
  7641. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  7642. if (L_15)
  7643. {
  7644. goto IL_002b;
  7645. }
  7646. }
  7647. {
  7648. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  7649. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  7650. }
  7651. IL_0074:
  7652. {
  7653. return (bool)0;
  7654. }
  7655. }
  7656. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  7657. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m911E41183A8F19CD653AC162A803EDF73D748E27_gshared (WhereSelectEnumerableIterator_2_t89DECBF75DD2FE4EC32D4B0698570097EC2E2571* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  7658. {
  7659. {
  7660. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  7661. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  7662. NullCheck(L_1);
  7663. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  7664. return (RuntimeObject*)L_1;
  7665. }
  7666. }
  7667. #ifdef __clang__
  7668. #pragma clang diagnostic pop
  7669. #endif
  7670. #ifdef __clang__
  7671. #pragma clang diagnostic push
  7672. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7673. #pragma clang diagnostic ignored "-Wunused-variable"
  7674. #endif
  7675. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  7676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m67E0676B846F7D5D13322DFE2366E000F49CCE01_gshared (WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* ___2_selector, const RuntimeMethod* method)
  7677. {
  7678. {
  7679. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  7680. RuntimeObject* L_0 = ___0_source;
  7681. __this->___source_3 = L_0;
  7682. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  7683. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  7684. __this->___predicate_4 = L_1;
  7685. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  7686. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* L_2 = ___2_selector;
  7687. __this->___selector_5 = L_2;
  7688. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  7689. return;
  7690. }
  7691. }
  7692. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::Clone()
  7693. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectEnumerableIterator_2_Clone_m79D0125A1A65347F4522C73EA7D684850A856150_gshared (WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586* __this, const RuntimeMethod* method)
  7694. {
  7695. {
  7696. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  7697. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7698. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* L_2 = (Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*)__this->___selector_5;
  7699. WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586* L_3 = (WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  7700. NullCheck(L_3);
  7701. (( void (*) (WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  7702. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  7703. }
  7704. }
  7705. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::Dispose()
  7706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m4059A77B770FEFC2E069A60DF9EE649B4D3C4DE5_gshared (WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586* __this, const RuntimeMethod* method)
  7707. {
  7708. static bool s_Il2CppMethodInitialized;
  7709. if (!s_Il2CppMethodInitialized)
  7710. {
  7711. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  7712. s_Il2CppMethodInitialized = true;
  7713. }
  7714. {
  7715. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  7716. if (!L_0)
  7717. {
  7718. goto IL_0013;
  7719. }
  7720. }
  7721. {
  7722. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  7723. NullCheck((RuntimeObject*)L_1);
  7724. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  7725. }
  7726. IL_0013:
  7727. {
  7728. __this->___enumerator_6 = (RuntimeObject*)NULL;
  7729. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  7730. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  7731. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  7732. return;
  7733. }
  7734. }
  7735. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::MoveNext()
  7736. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mF9058AE915E95BB4D1B6852E177B962E5C72041C_gshared (WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586* __this, const RuntimeMethod* method)
  7737. {
  7738. static bool s_Il2CppMethodInitialized;
  7739. if (!s_Il2CppMethodInitialized)
  7740. {
  7741. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  7742. s_Il2CppMethodInitialized = true;
  7743. }
  7744. int32_t V_0 = 0;
  7745. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  7746. memset((&V_1), 0, sizeof(V_1));
  7747. {
  7748. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  7749. V_0 = L_0;
  7750. int32_t L_1 = V_0;
  7751. if ((((int32_t)L_1) == ((int32_t)1)))
  7752. {
  7753. goto IL_0011;
  7754. }
  7755. }
  7756. {
  7757. int32_t L_2 = V_0;
  7758. if ((((int32_t)L_2) == ((int32_t)2)))
  7759. {
  7760. goto IL_0061;
  7761. }
  7762. }
  7763. {
  7764. goto IL_0074;
  7765. }
  7766. IL_0011:
  7767. {
  7768. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  7769. NullCheck(L_3);
  7770. RuntimeObject* L_4;
  7771. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  7772. __this->___enumerator_6 = L_4;
  7773. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  7774. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  7775. goto IL_0061;
  7776. }
  7777. IL_002b:
  7778. {
  7779. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  7780. NullCheck(L_5);
  7781. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  7782. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  7783. V_1 = L_6;
  7784. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7785. if (!L_7)
  7786. {
  7787. goto IL_004d;
  7788. }
  7789. }
  7790. {
  7791. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7792. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  7793. NullCheck(L_8);
  7794. bool L_10;
  7795. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  7796. if (!L_10)
  7797. {
  7798. goto IL_0061;
  7799. }
  7800. }
  7801. IL_004d:
  7802. {
  7803. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* L_11 = (Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*)__this->___selector_5;
  7804. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  7805. NullCheck(L_11);
  7806. RuntimeObject* L_13;
  7807. L_13 = (( RuntimeObject* (*) (Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  7808. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  7809. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  7810. return (bool)1;
  7811. }
  7812. IL_0061:
  7813. {
  7814. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  7815. NullCheck((RuntimeObject*)L_14);
  7816. bool L_15;
  7817. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  7818. if (L_15)
  7819. {
  7820. goto IL_002b;
  7821. }
  7822. }
  7823. {
  7824. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  7825. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  7826. }
  7827. IL_0074:
  7828. {
  7829. return (bool)0;
  7830. }
  7831. }
  7832. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  7833. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m7F40A08064DE17F179D3D40D6F7D38500D7167FE_gshared (WhereSelectEnumerableIterator_2_tE9E39B5B3920248DC542D84A8CFB82C524F6E586* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  7834. {
  7835. {
  7836. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  7837. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  7838. NullCheck(L_1);
  7839. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  7840. return (RuntimeObject*)L_1;
  7841. }
  7842. }
  7843. #ifdef __clang__
  7844. #pragma clang diagnostic pop
  7845. #endif
  7846. #ifdef __clang__
  7847. #pragma clang diagnostic push
  7848. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7849. #pragma clang diagnostic ignored "-Wunused-variable"
  7850. #endif
  7851. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  7852. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m2D38A8548FBF51B724154BC36BB7E161F8748F66_gshared (WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* ___2_selector, const RuntimeMethod* method)
  7853. {
  7854. {
  7855. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  7856. RuntimeObject* L_0 = ___0_source;
  7857. __this->___source_3 = L_0;
  7858. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  7859. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  7860. __this->___predicate_4 = L_1;
  7861. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  7862. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* L_2 = ___2_selector;
  7863. __this->___selector_5 = L_2;
  7864. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  7865. return;
  7866. }
  7867. }
  7868. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::Clone()
  7869. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectEnumerableIterator_2_Clone_mE0BE79B900CB1A4FE85D079E6ACB0FF4EAFCCFD1_gshared (WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7* __this, const RuntimeMethod* method)
  7870. {
  7871. {
  7872. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  7873. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7874. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* L_2 = (Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*)__this->___selector_5;
  7875. WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7* L_3 = (WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  7876. NullCheck(L_3);
  7877. (( void (*) (WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  7878. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  7879. }
  7880. }
  7881. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::Dispose()
  7882. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m7BA76B5FA002C8D495AD5371AF10F8DC548370AC_gshared (WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7* __this, const RuntimeMethod* method)
  7883. {
  7884. static bool s_Il2CppMethodInitialized;
  7885. if (!s_Il2CppMethodInitialized)
  7886. {
  7887. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  7888. s_Il2CppMethodInitialized = true;
  7889. }
  7890. {
  7891. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  7892. if (!L_0)
  7893. {
  7894. goto IL_0013;
  7895. }
  7896. }
  7897. {
  7898. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  7899. NullCheck((RuntimeObject*)L_1);
  7900. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  7901. }
  7902. IL_0013:
  7903. {
  7904. __this->___enumerator_6 = (RuntimeObject*)NULL;
  7905. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  7906. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  7907. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  7908. return;
  7909. }
  7910. }
  7911. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::MoveNext()
  7912. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mD3DE56FD3F7851C819845CBC4ECF43DB3F89E06A_gshared (WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7* __this, const RuntimeMethod* method)
  7913. {
  7914. static bool s_Il2CppMethodInitialized;
  7915. if (!s_Il2CppMethodInitialized)
  7916. {
  7917. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  7918. s_Il2CppMethodInitialized = true;
  7919. }
  7920. int32_t V_0 = 0;
  7921. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  7922. memset((&V_1), 0, sizeof(V_1));
  7923. {
  7924. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  7925. V_0 = L_0;
  7926. int32_t L_1 = V_0;
  7927. if ((((int32_t)L_1) == ((int32_t)1)))
  7928. {
  7929. goto IL_0011;
  7930. }
  7931. }
  7932. {
  7933. int32_t L_2 = V_0;
  7934. if ((((int32_t)L_2) == ((int32_t)2)))
  7935. {
  7936. goto IL_0061;
  7937. }
  7938. }
  7939. {
  7940. goto IL_0074;
  7941. }
  7942. IL_0011:
  7943. {
  7944. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  7945. NullCheck(L_3);
  7946. RuntimeObject* L_4;
  7947. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  7948. __this->___enumerator_6 = L_4;
  7949. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  7950. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  7951. goto IL_0061;
  7952. }
  7953. IL_002b:
  7954. {
  7955. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  7956. NullCheck(L_5);
  7957. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  7958. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  7959. V_1 = L_6;
  7960. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7961. if (!L_7)
  7962. {
  7963. goto IL_004d;
  7964. }
  7965. }
  7966. {
  7967. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  7968. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  7969. NullCheck(L_8);
  7970. bool L_10;
  7971. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  7972. if (!L_10)
  7973. {
  7974. goto IL_0061;
  7975. }
  7976. }
  7977. IL_004d:
  7978. {
  7979. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* L_11 = (Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*)__this->___selector_5;
  7980. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  7981. NullCheck(L_11);
  7982. float L_13;
  7983. L_13 = (( float (*) (Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  7984. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  7985. return (bool)1;
  7986. }
  7987. IL_0061:
  7988. {
  7989. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  7990. NullCheck((RuntimeObject*)L_14);
  7991. bool L_15;
  7992. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  7993. if (L_15)
  7994. {
  7995. goto IL_002b;
  7996. }
  7997. }
  7998. {
  7999. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  8000. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  8001. }
  8002. IL_0074:
  8003. {
  8004. return (bool)0;
  8005. }
  8006. }
  8007. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  8008. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m1B0CF8DBCCFA8140DE32F36AAF9F40920C370E57_gshared (WhereSelectEnumerableIterator_2_tDAAE6B90875269F423AAB700F4B1801707CB4BF7* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  8009. {
  8010. {
  8011. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  8012. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  8013. NullCheck(L_1);
  8014. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  8015. return (RuntimeObject*)L_1;
  8016. }
  8017. }
  8018. #ifdef __clang__
  8019. #pragma clang diagnostic pop
  8020. #endif
  8021. #ifdef __clang__
  8022. #pragma clang diagnostic push
  8023. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8024. #pragma clang diagnostic ignored "-Wunused-variable"
  8025. #endif
  8026. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  8027. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m4B35B851BDC7E22D1AA91516230953A1AA10305D_gshared (WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* ___2_selector, const RuntimeMethod* method)
  8028. {
  8029. {
  8030. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  8031. RuntimeObject* L_0 = ___0_source;
  8032. __this->___source_3 = L_0;
  8033. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  8034. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  8035. __this->___predicate_4 = L_1;
  8036. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  8037. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* L_2 = ___2_selector;
  8038. __this->___selector_5 = L_2;
  8039. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  8040. return;
  8041. }
  8042. }
  8043. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::Clone()
  8044. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectEnumerableIterator_2_Clone_m1E658DC8245EDA54629DE8D1D839FDA09043F45B_gshared (WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68* __this, const RuntimeMethod* method)
  8045. {
  8046. {
  8047. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  8048. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8049. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* L_2 = (Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*)__this->___selector_5;
  8050. WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68* L_3 = (WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  8051. NullCheck(L_3);
  8052. (( void (*) (WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  8053. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  8054. }
  8055. }
  8056. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::Dispose()
  8057. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m226CB750078491D5AD2528FD3AE22C4E56250EA1_gshared (WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68* __this, const RuntimeMethod* method)
  8058. {
  8059. static bool s_Il2CppMethodInitialized;
  8060. if (!s_Il2CppMethodInitialized)
  8061. {
  8062. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  8063. s_Il2CppMethodInitialized = true;
  8064. }
  8065. {
  8066. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  8067. if (!L_0)
  8068. {
  8069. goto IL_0013;
  8070. }
  8071. }
  8072. {
  8073. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  8074. NullCheck((RuntimeObject*)L_1);
  8075. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  8076. }
  8077. IL_0013:
  8078. {
  8079. __this->___enumerator_6 = (RuntimeObject*)NULL;
  8080. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  8081. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  8082. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  8083. return;
  8084. }
  8085. }
  8086. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::MoveNext()
  8087. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mEB9CCC7994BD7ACF685C98BDB83BD5909AA9E76F_gshared (WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68* __this, const RuntimeMethod* method)
  8088. {
  8089. static bool s_Il2CppMethodInitialized;
  8090. if (!s_Il2CppMethodInitialized)
  8091. {
  8092. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  8093. s_Il2CppMethodInitialized = true;
  8094. }
  8095. int32_t V_0 = 0;
  8096. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  8097. memset((&V_1), 0, sizeof(V_1));
  8098. {
  8099. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  8100. V_0 = L_0;
  8101. int32_t L_1 = V_0;
  8102. if ((((int32_t)L_1) == ((int32_t)1)))
  8103. {
  8104. goto IL_0011;
  8105. }
  8106. }
  8107. {
  8108. int32_t L_2 = V_0;
  8109. if ((((int32_t)L_2) == ((int32_t)2)))
  8110. {
  8111. goto IL_0061;
  8112. }
  8113. }
  8114. {
  8115. goto IL_0074;
  8116. }
  8117. IL_0011:
  8118. {
  8119. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  8120. NullCheck(L_3);
  8121. RuntimeObject* L_4;
  8122. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  8123. __this->___enumerator_6 = L_4;
  8124. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  8125. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  8126. goto IL_0061;
  8127. }
  8128. IL_002b:
  8129. {
  8130. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  8131. NullCheck(L_5);
  8132. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  8133. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  8134. V_1 = L_6;
  8135. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8136. if (!L_7)
  8137. {
  8138. goto IL_004d;
  8139. }
  8140. }
  8141. {
  8142. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8143. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  8144. NullCheck(L_8);
  8145. bool L_10;
  8146. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  8147. if (!L_10)
  8148. {
  8149. goto IL_0061;
  8150. }
  8151. }
  8152. IL_004d:
  8153. {
  8154. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* L_11 = (Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*)__this->___selector_5;
  8155. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  8156. NullCheck(L_11);
  8157. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  8158. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  8159. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  8160. return (bool)1;
  8161. }
  8162. IL_0061:
  8163. {
  8164. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  8165. NullCheck((RuntimeObject*)L_14);
  8166. bool L_15;
  8167. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  8168. if (L_15)
  8169. {
  8170. goto IL_002b;
  8171. }
  8172. }
  8173. {
  8174. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  8175. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  8176. }
  8177. IL_0074:
  8178. {
  8179. return (bool)0;
  8180. }
  8181. }
  8182. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  8183. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m0DC33E396A3DD9A4670833ACDFA76EAFD7BB13EB_gshared (WhereSelectEnumerableIterator_2_t316D3C49CE6AB06660EEB02368933F7E23A61E68* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  8184. {
  8185. {
  8186. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  8187. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  8188. NullCheck(L_1);
  8189. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  8190. return (RuntimeObject*)L_1;
  8191. }
  8192. }
  8193. #ifdef __clang__
  8194. #pragma clang diagnostic pop
  8195. #endif
  8196. #ifdef __clang__
  8197. #pragma clang diagnostic push
  8198. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8199. #pragma clang diagnostic ignored "-Wunused-variable"
  8200. #endif
  8201. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  8202. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m411820DF51574A3639C5E586E45E21BA694D5822_gshared (WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* ___2_selector, const RuntimeMethod* method)
  8203. {
  8204. {
  8205. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  8206. RuntimeObject* L_0 = ___0_source;
  8207. __this->___source_3 = L_0;
  8208. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  8209. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  8210. __this->___predicate_4 = L_1;
  8211. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  8212. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* L_2 = ___2_selector;
  8213. __this->___selector_5 = L_2;
  8214. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  8215. return;
  8216. }
  8217. }
  8218. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::Clone()
  8219. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectEnumerableIterator_2_Clone_m722F2E083F7F2AEC44BCFE98E0CC2A4892FED736_gshared (WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA* __this, const RuntimeMethod* method)
  8220. {
  8221. {
  8222. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  8223. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8224. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* L_2 = (Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*)__this->___selector_5;
  8225. WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA* L_3 = (WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  8226. NullCheck(L_3);
  8227. (( void (*) (WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  8228. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  8229. }
  8230. }
  8231. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::Dispose()
  8232. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m6177F0CD6BA753EEDFADF9A88800A0437B920491_gshared (WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA* __this, const RuntimeMethod* method)
  8233. {
  8234. static bool s_Il2CppMethodInitialized;
  8235. if (!s_Il2CppMethodInitialized)
  8236. {
  8237. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  8238. s_Il2CppMethodInitialized = true;
  8239. }
  8240. {
  8241. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  8242. if (!L_0)
  8243. {
  8244. goto IL_0013;
  8245. }
  8246. }
  8247. {
  8248. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  8249. NullCheck((RuntimeObject*)L_1);
  8250. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  8251. }
  8252. IL_0013:
  8253. {
  8254. __this->___enumerator_6 = (RuntimeObject*)NULL;
  8255. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  8256. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  8257. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  8258. return;
  8259. }
  8260. }
  8261. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::MoveNext()
  8262. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_mCA48FC813059AD5B1646128C1E0CED64D62E7B05_gshared (WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA* __this, const RuntimeMethod* method)
  8263. {
  8264. static bool s_Il2CppMethodInitialized;
  8265. if (!s_Il2CppMethodInitialized)
  8266. {
  8267. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  8268. s_Il2CppMethodInitialized = true;
  8269. }
  8270. int32_t V_0 = 0;
  8271. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  8272. memset((&V_1), 0, sizeof(V_1));
  8273. {
  8274. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  8275. V_0 = L_0;
  8276. int32_t L_1 = V_0;
  8277. if ((((int32_t)L_1) == ((int32_t)1)))
  8278. {
  8279. goto IL_0011;
  8280. }
  8281. }
  8282. {
  8283. int32_t L_2 = V_0;
  8284. if ((((int32_t)L_2) == ((int32_t)2)))
  8285. {
  8286. goto IL_0061;
  8287. }
  8288. }
  8289. {
  8290. goto IL_0074;
  8291. }
  8292. IL_0011:
  8293. {
  8294. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  8295. NullCheck(L_3);
  8296. RuntimeObject* L_4;
  8297. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  8298. __this->___enumerator_6 = L_4;
  8299. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  8300. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  8301. goto IL_0061;
  8302. }
  8303. IL_002b:
  8304. {
  8305. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  8306. NullCheck(L_5);
  8307. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  8308. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  8309. V_1 = L_6;
  8310. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8311. if (!L_7)
  8312. {
  8313. goto IL_004d;
  8314. }
  8315. }
  8316. {
  8317. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8318. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  8319. NullCheck(L_8);
  8320. bool L_10;
  8321. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  8322. if (!L_10)
  8323. {
  8324. goto IL_0061;
  8325. }
  8326. }
  8327. IL_004d:
  8328. {
  8329. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* L_11 = (Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*)__this->___selector_5;
  8330. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  8331. NullCheck(L_11);
  8332. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  8333. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  8334. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  8335. return (bool)1;
  8336. }
  8337. IL_0061:
  8338. {
  8339. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  8340. NullCheck((RuntimeObject*)L_14);
  8341. bool L_15;
  8342. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  8343. if (L_15)
  8344. {
  8345. goto IL_002b;
  8346. }
  8347. }
  8348. {
  8349. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  8350. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  8351. }
  8352. IL_0074:
  8353. {
  8354. return (bool)0;
  8355. }
  8356. }
  8357. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  8358. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m259F2CCB1A96892424A29B8BA5B55C19A2C78248_gshared (WhereSelectEnumerableIterator_2_tA9B52CEB0C2F68C711673D4034F08B27F903A3BA* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  8359. {
  8360. {
  8361. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  8362. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  8363. NullCheck(L_1);
  8364. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  8365. return (RuntimeObject*)L_1;
  8366. }
  8367. }
  8368. #ifdef __clang__
  8369. #pragma clang diagnostic pop
  8370. #endif
  8371. #ifdef __clang__
  8372. #pragma clang diagnostic push
  8373. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8374. #pragma clang diagnostic ignored "-Wunused-variable"
  8375. #endif
  8376. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::.ctor(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  8377. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2__ctor_m1985FD8D84C99DF359848722EF694F752A47E93D_gshared (WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509* __this, RuntimeObject* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* ___2_selector, const RuntimeMethod* method)
  8378. {
  8379. {
  8380. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  8381. RuntimeObject* L_0 = ___0_source;
  8382. __this->___source_3 = L_0;
  8383. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  8384. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  8385. __this->___predicate_4 = L_1;
  8386. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  8387. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_2 = ___2_selector;
  8388. __this->___selector_5 = L_2;
  8389. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  8390. return;
  8391. }
  8392. }
  8393. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::Clone()
  8394. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectEnumerableIterator_2_Clone_mB8819374054AAD4C0412137DA375DC715E9FA236_gshared (WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509* __this, const RuntimeMethod* method)
  8395. {
  8396. {
  8397. RuntimeObject* L_0 = (RuntimeObject*)__this->___source_3;
  8398. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8399. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_2 = (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*)__this->___selector_5;
  8400. WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509* L_3 = (WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  8401. NullCheck(L_3);
  8402. (( void (*) (WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509*, RuntimeObject*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  8403. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  8404. }
  8405. }
  8406. // System.Void System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::Dispose()
  8407. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectEnumerableIterator_2_Dispose_m743EB975009C5EA46F70ADC1EB6FB589F127154C_gshared (WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509* __this, const RuntimeMethod* method)
  8408. {
  8409. static bool s_Il2CppMethodInitialized;
  8410. if (!s_Il2CppMethodInitialized)
  8411. {
  8412. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  8413. s_Il2CppMethodInitialized = true;
  8414. }
  8415. {
  8416. RuntimeObject* L_0 = (RuntimeObject*)__this->___enumerator_6;
  8417. if (!L_0)
  8418. {
  8419. goto IL_0013;
  8420. }
  8421. }
  8422. {
  8423. RuntimeObject* L_1 = (RuntimeObject*)__this->___enumerator_6;
  8424. NullCheck((RuntimeObject*)L_1);
  8425. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_1);
  8426. }
  8427. IL_0013:
  8428. {
  8429. __this->___enumerator_6 = (RuntimeObject*)NULL;
  8430. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)(RuntimeObject*)NULL);
  8431. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  8432. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
  8433. return;
  8434. }
  8435. }
  8436. // System.Boolean System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::MoveNext()
  8437. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectEnumerableIterator_2_MoveNext_m9485B3C9571D098D50AE511157AF7690C4C33858_gshared (WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509* __this, const RuntimeMethod* method)
  8438. {
  8439. static bool s_Il2CppMethodInitialized;
  8440. if (!s_Il2CppMethodInitialized)
  8441. {
  8442. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  8443. s_Il2CppMethodInitialized = true;
  8444. }
  8445. int32_t V_0 = 0;
  8446. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  8447. memset((&V_1), 0, sizeof(V_1));
  8448. {
  8449. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  8450. V_0 = L_0;
  8451. int32_t L_1 = V_0;
  8452. if ((((int32_t)L_1) == ((int32_t)1)))
  8453. {
  8454. goto IL_0011;
  8455. }
  8456. }
  8457. {
  8458. int32_t L_2 = V_0;
  8459. if ((((int32_t)L_2) == ((int32_t)2)))
  8460. {
  8461. goto IL_0061;
  8462. }
  8463. }
  8464. {
  8465. goto IL_0074;
  8466. }
  8467. IL_0011:
  8468. {
  8469. RuntimeObject* L_3 = (RuntimeObject*)__this->___source_3;
  8470. NullCheck(L_3);
  8471. RuntimeObject* L_4;
  8472. L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>::GetEnumerator() */, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
  8473. __this->___enumerator_6 = L_4;
  8474. Il2CppCodeGenWriteBarrier((void**)(&__this->___enumerator_6), (void*)L_4);
  8475. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  8476. goto IL_0061;
  8477. }
  8478. IL_002b:
  8479. {
  8480. RuntimeObject* L_5 = (RuntimeObject*)__this->___enumerator_6;
  8481. NullCheck(L_5);
  8482. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  8483. L_6 = InterfaceFuncInvoker0< StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StyleSelectorPart>::get_Current() */, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_5);
  8484. V_1 = L_6;
  8485. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8486. if (!L_7)
  8487. {
  8488. goto IL_004d;
  8489. }
  8490. }
  8491. {
  8492. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  8493. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  8494. NullCheck(L_8);
  8495. bool L_10;
  8496. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  8497. if (!L_10)
  8498. {
  8499. goto IL_0061;
  8500. }
  8501. }
  8502. IL_004d:
  8503. {
  8504. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_11 = (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*)__this->___selector_5;
  8505. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  8506. NullCheck(L_11);
  8507. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  8508. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
  8509. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  8510. return (bool)1;
  8511. }
  8512. IL_0061:
  8513. {
  8514. RuntimeObject* L_14 = (RuntimeObject*)__this->___enumerator_6;
  8515. NullCheck((RuntimeObject*)L_14);
  8516. bool L_15;
  8517. L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
  8518. if (L_15)
  8519. {
  8520. goto IL_002b;
  8521. }
  8522. }
  8523. {
  8524. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  8525. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  8526. }
  8527. IL_0074:
  8528. {
  8529. return (bool)0;
  8530. }
  8531. }
  8532. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectEnumerableIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  8533. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectEnumerableIterator_2_Where_m662FC940BD81441FC3E6F6685E36EA7387779F9F_gshared (WhereSelectEnumerableIterator_2_t060936A78C8B78AC262F00AA21237B53C58AE509* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  8534. {
  8535. {
  8536. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  8537. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  8538. NullCheck(L_1);
  8539. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  8540. return (RuntimeObject*)L_1;
  8541. }
  8542. }
  8543. #ifdef __clang__
  8544. #pragma clang diagnostic pop
  8545. #endif
  8546. #ifdef __clang__
  8547. #pragma clang diagnostic push
  8548. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8549. #pragma clang diagnostic ignored "-Wunused-variable"
  8550. #endif
  8551. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  8552. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m514C97356899A623178288894891949323AB5F9E_gshared (WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* ___2_selector, const RuntimeMethod* method)
  8553. {
  8554. {
  8555. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  8556. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  8557. __this->___source_3 = L_0;
  8558. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  8559. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  8560. __this->___predicate_4 = L_1;
  8561. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  8562. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* L_2 = ___2_selector;
  8563. __this->___selector_5 = L_2;
  8564. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  8565. return;
  8566. }
  8567. }
  8568. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  8569. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectListIterator_2_Clone_m9B672EB08FF4D55E455A4DDEE3DB8E3571868423_gshared (WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114* __this, const RuntimeMethod* method)
  8570. {
  8571. {
  8572. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  8573. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8574. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* L_2 = (Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*)__this->___selector_5;
  8575. WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114* L_3 = (WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  8576. NullCheck(L_3);
  8577. (( void (*) (WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  8578. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  8579. }
  8580. }
  8581. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  8582. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m8423FD8069A0061BC43D05A175BAC7F82E276757_gshared (WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114* __this, const RuntimeMethod* method)
  8583. {
  8584. int32_t V_0 = 0;
  8585. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  8586. memset((&V_1), 0, sizeof(V_1));
  8587. {
  8588. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  8589. V_0 = L_0;
  8590. int32_t L_1 = V_0;
  8591. if ((((int32_t)L_1) == ((int32_t)1)))
  8592. {
  8593. goto IL_0011;
  8594. }
  8595. }
  8596. {
  8597. int32_t L_2 = V_0;
  8598. if ((((int32_t)L_2) == ((int32_t)2)))
  8599. {
  8600. goto IL_0061;
  8601. }
  8602. }
  8603. {
  8604. goto IL_0074;
  8605. }
  8606. IL_0011:
  8607. {
  8608. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  8609. NullCheck(L_3);
  8610. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  8611. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  8612. __this->___enumerator_6 = L_4;
  8613. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  8614. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  8615. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  8616. #endif
  8617. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  8618. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  8619. #endif
  8620. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  8621. goto IL_0061;
  8622. }
  8623. IL_002b:
  8624. {
  8625. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  8626. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  8627. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  8628. V_1 = L_6;
  8629. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8630. if (!L_7)
  8631. {
  8632. goto IL_004d;
  8633. }
  8634. }
  8635. {
  8636. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8637. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  8638. NullCheck(L_8);
  8639. bool L_10;
  8640. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  8641. if (!L_10)
  8642. {
  8643. goto IL_0061;
  8644. }
  8645. }
  8646. IL_004d:
  8647. {
  8648. Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943* L_11 = (Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*)__this->___selector_5;
  8649. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  8650. NullCheck(L_11);
  8651. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  8652. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_t4847DFE1EF6D7C84AAF9EF03BEA2117DF7233943*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  8653. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  8654. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  8655. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  8656. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  8657. #endif
  8658. return (bool)1;
  8659. }
  8660. IL_0061:
  8661. {
  8662. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  8663. bool L_15;
  8664. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  8665. if (L_15)
  8666. {
  8667. goto IL_002b;
  8668. }
  8669. }
  8670. {
  8671. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  8672. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  8673. }
  8674. IL_0074:
  8675. {
  8676. return (bool)0;
  8677. }
  8678. }
  8679. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  8680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mBAB592139114EFF5CD69A1011FB5B231690E5472_gshared (WhereSelectListIterator_2_tAD5E7572E769B04937A528DF4E8E0EB120473114* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  8681. {
  8682. {
  8683. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  8684. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  8685. NullCheck(L_1);
  8686. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  8687. return (RuntimeObject*)L_1;
  8688. }
  8689. }
  8690. #ifdef __clang__
  8691. #pragma clang diagnostic pop
  8692. #endif
  8693. #ifdef __clang__
  8694. #pragma clang diagnostic push
  8695. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8696. #pragma clang diagnostic ignored "-Wunused-variable"
  8697. #endif
  8698. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  8699. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mB943F6E8C53F46A2D81982630D0DBCA2B017E222_gshared (WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* ___2_selector, const RuntimeMethod* method)
  8700. {
  8701. {
  8702. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  8703. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  8704. __this->___source_3 = L_0;
  8705. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  8706. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  8707. __this->___predicate_4 = L_1;
  8708. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  8709. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* L_2 = ___2_selector;
  8710. __this->___selector_5 = L_2;
  8711. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  8712. return;
  8713. }
  8714. }
  8715. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::Clone()
  8716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectListIterator_2_Clone_m1BC7317D2A4C5E2B30876944EB5225A3CC191DC1_gshared (WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E* __this, const RuntimeMethod* method)
  8717. {
  8718. {
  8719. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  8720. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8721. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* L_2 = (Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*)__this->___selector_5;
  8722. WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E* L_3 = (WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  8723. NullCheck(L_3);
  8724. (( void (*) (WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  8725. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  8726. }
  8727. }
  8728. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::MoveNext()
  8729. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m221F1C72B2B1EC8061127EF9FF5564C3B96329A6_gshared (WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E* __this, const RuntimeMethod* method)
  8730. {
  8731. int32_t V_0 = 0;
  8732. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  8733. memset((&V_1), 0, sizeof(V_1));
  8734. {
  8735. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  8736. V_0 = L_0;
  8737. int32_t L_1 = V_0;
  8738. if ((((int32_t)L_1) == ((int32_t)1)))
  8739. {
  8740. goto IL_0011;
  8741. }
  8742. }
  8743. {
  8744. int32_t L_2 = V_0;
  8745. if ((((int32_t)L_2) == ((int32_t)2)))
  8746. {
  8747. goto IL_0061;
  8748. }
  8749. }
  8750. {
  8751. goto IL_0074;
  8752. }
  8753. IL_0011:
  8754. {
  8755. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  8756. NullCheck(L_3);
  8757. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  8758. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  8759. __this->___enumerator_6 = L_4;
  8760. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  8761. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  8762. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  8763. #endif
  8764. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  8765. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  8766. #endif
  8767. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  8768. goto IL_0061;
  8769. }
  8770. IL_002b:
  8771. {
  8772. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  8773. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  8774. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  8775. V_1 = L_6;
  8776. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8777. if (!L_7)
  8778. {
  8779. goto IL_004d;
  8780. }
  8781. }
  8782. {
  8783. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8784. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  8785. NullCheck(L_8);
  8786. bool L_10;
  8787. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  8788. if (!L_10)
  8789. {
  8790. goto IL_0061;
  8791. }
  8792. }
  8793. IL_004d:
  8794. {
  8795. Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133* L_11 = (Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*)__this->___selector_5;
  8796. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  8797. NullCheck(L_11);
  8798. Il2CppChar L_13;
  8799. L_13 = (( Il2CppChar (*) (Func_2_t9373D63E56E9986B67D78874EDB3409836CDC133*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  8800. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  8801. return (bool)1;
  8802. }
  8803. IL_0061:
  8804. {
  8805. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  8806. bool L_15;
  8807. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  8808. if (L_15)
  8809. {
  8810. goto IL_002b;
  8811. }
  8812. }
  8813. {
  8814. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  8815. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  8816. }
  8817. IL_0074:
  8818. {
  8819. return (bool)0;
  8820. }
  8821. }
  8822. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  8823. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mDE56C25421646499A7066BE8185C2A38AFDD6C73_gshared (WhereSelectListIterator_2_t143EA628AF34A8CFE6FFCAEB4E58B9A944114E3E* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  8824. {
  8825. {
  8826. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  8827. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  8828. NullCheck(L_1);
  8829. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  8830. return (RuntimeObject*)L_1;
  8831. }
  8832. }
  8833. #ifdef __clang__
  8834. #pragma clang diagnostic pop
  8835. #endif
  8836. #ifdef __clang__
  8837. #pragma clang diagnostic push
  8838. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8839. #pragma clang diagnostic ignored "-Wunused-variable"
  8840. #endif
  8841. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  8842. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m6C5F4E55E93D3DEE56E0833F6A56B4A6631BC7EF_gshared (WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* ___2_selector, const RuntimeMethod* method)
  8843. {
  8844. {
  8845. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  8846. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  8847. __this->___source_3 = L_0;
  8848. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  8849. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  8850. __this->___predicate_4 = L_1;
  8851. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  8852. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* L_2 = ___2_selector;
  8853. __this->___selector_5 = L_2;
  8854. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  8855. return;
  8856. }
  8857. }
  8858. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::Clone()
  8859. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectListIterator_2_Clone_m9AA2F7532144FA9A02F20F07D2C23062DF098687_gshared (WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED* __this, const RuntimeMethod* method)
  8860. {
  8861. {
  8862. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  8863. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8864. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* L_2 = (Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*)__this->___selector_5;
  8865. WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED* L_3 = (WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  8866. NullCheck(L_3);
  8867. (( void (*) (WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  8868. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  8869. }
  8870. }
  8871. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::MoveNext()
  8872. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mA2F142339E390663276B07F36EFFBEEE50E77164_gshared (WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED* __this, const RuntimeMethod* method)
  8873. {
  8874. int32_t V_0 = 0;
  8875. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  8876. memset((&V_1), 0, sizeof(V_1));
  8877. {
  8878. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  8879. V_0 = L_0;
  8880. int32_t L_1 = V_0;
  8881. if ((((int32_t)L_1) == ((int32_t)1)))
  8882. {
  8883. goto IL_0011;
  8884. }
  8885. }
  8886. {
  8887. int32_t L_2 = V_0;
  8888. if ((((int32_t)L_2) == ((int32_t)2)))
  8889. {
  8890. goto IL_0061;
  8891. }
  8892. }
  8893. {
  8894. goto IL_0074;
  8895. }
  8896. IL_0011:
  8897. {
  8898. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  8899. NullCheck(L_3);
  8900. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  8901. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  8902. __this->___enumerator_6 = L_4;
  8903. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  8904. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  8905. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  8906. #endif
  8907. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  8908. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  8909. #endif
  8910. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  8911. goto IL_0061;
  8912. }
  8913. IL_002b:
  8914. {
  8915. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  8916. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  8917. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  8918. V_1 = L_6;
  8919. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8920. if (!L_7)
  8921. {
  8922. goto IL_004d;
  8923. }
  8924. }
  8925. {
  8926. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  8927. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  8928. NullCheck(L_8);
  8929. bool L_10;
  8930. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  8931. if (!L_10)
  8932. {
  8933. goto IL_0061;
  8934. }
  8935. }
  8936. IL_004d:
  8937. {
  8938. Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF* L_11 = (Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*)__this->___selector_5;
  8939. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  8940. NullCheck(L_11);
  8941. Guid_t L_13;
  8942. L_13 = (( Guid_t (*) (Func_2_tA5BB2A6EBD01C0A257FA9DA974A4EADE89CAE4DF*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  8943. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  8944. return (bool)1;
  8945. }
  8946. IL_0061:
  8947. {
  8948. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  8949. bool L_15;
  8950. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  8951. if (L_15)
  8952. {
  8953. goto IL_002b;
  8954. }
  8955. }
  8956. {
  8957. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  8958. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  8959. }
  8960. IL_0074:
  8961. {
  8962. return (bool)0;
  8963. }
  8964. }
  8965. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  8966. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m3DAF31C43A8871A3839D4406990F9D7549F4BCF3_gshared (WhereSelectListIterator_2_t2632DCF3D22677D78481C7D1A7298E38DDE21AED* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  8967. {
  8968. {
  8969. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  8970. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  8971. NullCheck(L_1);
  8972. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  8973. return (RuntimeObject*)L_1;
  8974. }
  8975. }
  8976. #ifdef __clang__
  8977. #pragma clang diagnostic pop
  8978. #endif
  8979. #ifdef __clang__
  8980. #pragma clang diagnostic push
  8981. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8982. #pragma clang diagnostic ignored "-Wunused-variable"
  8983. #endif
  8984. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  8985. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m2A8C85666C5A665630499B7FAAF130D59E60BFD1_gshared (WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* ___2_selector, const RuntimeMethod* method)
  8986. {
  8987. {
  8988. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  8989. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  8990. __this->___source_3 = L_0;
  8991. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  8992. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  8993. __this->___predicate_4 = L_1;
  8994. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  8995. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* L_2 = ___2_selector;
  8996. __this->___selector_5 = L_2;
  8997. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  8998. return;
  8999. }
  9000. }
  9001. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::Clone()
  9002. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectListIterator_2_Clone_m7549B7E49F1A52E465C4F9B0827E3A9241D0C573_gshared (WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6* __this, const RuntimeMethod* method)
  9003. {
  9004. {
  9005. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9006. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9007. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* L_2 = (Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*)__this->___selector_5;
  9008. WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6* L_3 = (WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  9009. NullCheck(L_3);
  9010. (( void (*) (WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  9011. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  9012. }
  9013. }
  9014. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::MoveNext()
  9015. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m96C28F46AFA617F5C19FFC661CD4F9E63BE75103_gshared (WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6* __this, const RuntimeMethod* method)
  9016. {
  9017. int32_t V_0 = 0;
  9018. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  9019. memset((&V_1), 0, sizeof(V_1));
  9020. {
  9021. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  9022. V_0 = L_0;
  9023. int32_t L_1 = V_0;
  9024. if ((((int32_t)L_1) == ((int32_t)1)))
  9025. {
  9026. goto IL_0011;
  9027. }
  9028. }
  9029. {
  9030. int32_t L_2 = V_0;
  9031. if ((((int32_t)L_2) == ((int32_t)2)))
  9032. {
  9033. goto IL_0061;
  9034. }
  9035. }
  9036. {
  9037. goto IL_0074;
  9038. }
  9039. IL_0011:
  9040. {
  9041. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9042. NullCheck(L_3);
  9043. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  9044. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  9045. __this->___enumerator_6 = L_4;
  9046. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  9047. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9048. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  9049. #endif
  9050. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9051. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  9052. #endif
  9053. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  9054. goto IL_0061;
  9055. }
  9056. IL_002b:
  9057. {
  9058. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9059. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  9060. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  9061. V_1 = L_6;
  9062. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9063. if (!L_7)
  9064. {
  9065. goto IL_004d;
  9066. }
  9067. }
  9068. {
  9069. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9070. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  9071. NullCheck(L_8);
  9072. bool L_10;
  9073. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  9074. if (!L_10)
  9075. {
  9076. goto IL_0061;
  9077. }
  9078. }
  9079. IL_004d:
  9080. {
  9081. Func_2_tF42287527472FA89789873F068A87C60A00EC7D3* L_11 = (Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*)__this->___selector_5;
  9082. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  9083. NullCheck(L_11);
  9084. RuntimeObject* L_13;
  9085. L_13 = (( RuntimeObject* (*) (Func_2_tF42287527472FA89789873F068A87C60A00EC7D3*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  9086. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  9087. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  9088. return (bool)1;
  9089. }
  9090. IL_0061:
  9091. {
  9092. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9093. bool L_15;
  9094. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  9095. if (L_15)
  9096. {
  9097. goto IL_002b;
  9098. }
  9099. }
  9100. {
  9101. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  9102. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  9103. }
  9104. IL_0074:
  9105. {
  9106. return (bool)0;
  9107. }
  9108. }
  9109. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  9110. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m2F81906E04BD7F8616E72DD5160FE9BB1D207D35_gshared (WhereSelectListIterator_2_tB5F3E1B3B06A8D74CA5DBD8ACEB44A8F1E549AF6* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  9111. {
  9112. {
  9113. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  9114. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  9115. NullCheck(L_1);
  9116. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  9117. return (RuntimeObject*)L_1;
  9118. }
  9119. }
  9120. #ifdef __clang__
  9121. #pragma clang diagnostic pop
  9122. #endif
  9123. #ifdef __clang__
  9124. #pragma clang diagnostic push
  9125. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9126. #pragma clang diagnostic ignored "-Wunused-variable"
  9127. #endif
  9128. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  9129. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m49662AFC92B67D3AF2CA5C423AC57DE5823C17AF_gshared (WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* ___2_selector, const RuntimeMethod* method)
  9130. {
  9131. {
  9132. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  9133. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  9134. __this->___source_3 = L_0;
  9135. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  9136. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  9137. __this->___predicate_4 = L_1;
  9138. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  9139. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* L_2 = ___2_selector;
  9140. __this->___selector_5 = L_2;
  9141. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  9142. return;
  9143. }
  9144. }
  9145. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::Clone()
  9146. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectListIterator_2_Clone_m34FFACB2F2395580B0F103D9B0A4F43EC78D4754_gshared (WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC* __this, const RuntimeMethod* method)
  9147. {
  9148. {
  9149. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9150. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9151. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* L_2 = (Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*)__this->___selector_5;
  9152. WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC* L_3 = (WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  9153. NullCheck(L_3);
  9154. (( void (*) (WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  9155. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  9156. }
  9157. }
  9158. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::MoveNext()
  9159. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m6A09440A60C9AC59A62B87374698BD1A41DFA0D4_gshared (WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC* __this, const RuntimeMethod* method)
  9160. {
  9161. int32_t V_0 = 0;
  9162. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  9163. memset((&V_1), 0, sizeof(V_1));
  9164. {
  9165. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  9166. V_0 = L_0;
  9167. int32_t L_1 = V_0;
  9168. if ((((int32_t)L_1) == ((int32_t)1)))
  9169. {
  9170. goto IL_0011;
  9171. }
  9172. }
  9173. {
  9174. int32_t L_2 = V_0;
  9175. if ((((int32_t)L_2) == ((int32_t)2)))
  9176. {
  9177. goto IL_0061;
  9178. }
  9179. }
  9180. {
  9181. goto IL_0074;
  9182. }
  9183. IL_0011:
  9184. {
  9185. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9186. NullCheck(L_3);
  9187. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  9188. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  9189. __this->___enumerator_6 = L_4;
  9190. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  9191. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9192. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  9193. #endif
  9194. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9195. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  9196. #endif
  9197. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  9198. goto IL_0061;
  9199. }
  9200. IL_002b:
  9201. {
  9202. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9203. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  9204. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  9205. V_1 = L_6;
  9206. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9207. if (!L_7)
  9208. {
  9209. goto IL_004d;
  9210. }
  9211. }
  9212. {
  9213. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9214. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  9215. NullCheck(L_8);
  9216. bool L_10;
  9217. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  9218. if (!L_10)
  9219. {
  9220. goto IL_0061;
  9221. }
  9222. }
  9223. IL_004d:
  9224. {
  9225. Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97* L_11 = (Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*)__this->___selector_5;
  9226. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  9227. NullCheck(L_11);
  9228. float L_13;
  9229. L_13 = (( float (*) (Func_2_t50D381646417815AE6260BF1F4F2B3B50CE23B97*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  9230. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  9231. return (bool)1;
  9232. }
  9233. IL_0061:
  9234. {
  9235. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9236. bool L_15;
  9237. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  9238. if (L_15)
  9239. {
  9240. goto IL_002b;
  9241. }
  9242. }
  9243. {
  9244. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  9245. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  9246. }
  9247. IL_0074:
  9248. {
  9249. return (bool)0;
  9250. }
  9251. }
  9252. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  9253. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mB3F7E3716A444BFF506A087847CB326EA2065AF4_gshared (WhereSelectListIterator_2_t149CDB8B307D0417653A0DCB645C94E8337CF7DC* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  9254. {
  9255. {
  9256. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  9257. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  9258. NullCheck(L_1);
  9259. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  9260. return (RuntimeObject*)L_1;
  9261. }
  9262. }
  9263. #ifdef __clang__
  9264. #pragma clang diagnostic pop
  9265. #endif
  9266. #ifdef __clang__
  9267. #pragma clang diagnostic push
  9268. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9269. #pragma clang diagnostic ignored "-Wunused-variable"
  9270. #endif
  9271. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  9272. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m67269E458D64D28AF0CADFA2CAF22012C973695E_gshared (WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* ___2_selector, const RuntimeMethod* method)
  9273. {
  9274. {
  9275. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  9276. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  9277. __this->___source_3 = L_0;
  9278. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  9279. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  9280. __this->___predicate_4 = L_1;
  9281. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  9282. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* L_2 = ___2_selector;
  9283. __this->___selector_5 = L_2;
  9284. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  9285. return;
  9286. }
  9287. }
  9288. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::Clone()
  9289. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectListIterator_2_Clone_m736D94461AE561A3E05E1985EBCED1337CE8320A_gshared (WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD* __this, const RuntimeMethod* method)
  9290. {
  9291. {
  9292. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9293. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9294. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* L_2 = (Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*)__this->___selector_5;
  9295. WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD* L_3 = (WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  9296. NullCheck(L_3);
  9297. (( void (*) (WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  9298. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  9299. }
  9300. }
  9301. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::MoveNext()
  9302. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mB508ED8AC22428D5F5B68ED117521D0FAED6CE73_gshared (WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD* __this, const RuntimeMethod* method)
  9303. {
  9304. int32_t V_0 = 0;
  9305. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  9306. memset((&V_1), 0, sizeof(V_1));
  9307. {
  9308. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  9309. V_0 = L_0;
  9310. int32_t L_1 = V_0;
  9311. if ((((int32_t)L_1) == ((int32_t)1)))
  9312. {
  9313. goto IL_0011;
  9314. }
  9315. }
  9316. {
  9317. int32_t L_2 = V_0;
  9318. if ((((int32_t)L_2) == ((int32_t)2)))
  9319. {
  9320. goto IL_0061;
  9321. }
  9322. }
  9323. {
  9324. goto IL_0074;
  9325. }
  9326. IL_0011:
  9327. {
  9328. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9329. NullCheck(L_3);
  9330. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  9331. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  9332. __this->___enumerator_6 = L_4;
  9333. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  9334. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9335. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  9336. #endif
  9337. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9338. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  9339. #endif
  9340. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  9341. goto IL_0061;
  9342. }
  9343. IL_002b:
  9344. {
  9345. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9346. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  9347. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  9348. V_1 = L_6;
  9349. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9350. if (!L_7)
  9351. {
  9352. goto IL_004d;
  9353. }
  9354. }
  9355. {
  9356. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9357. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  9358. NullCheck(L_8);
  9359. bool L_10;
  9360. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  9361. if (!L_10)
  9362. {
  9363. goto IL_0061;
  9364. }
  9365. }
  9366. IL_004d:
  9367. {
  9368. Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8* L_11 = (Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*)__this->___selector_5;
  9369. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  9370. NullCheck(L_11);
  9371. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  9372. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_tDF374B4046E66364AB5F0C56449275D0B99BAFD8*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  9373. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  9374. return (bool)1;
  9375. }
  9376. IL_0061:
  9377. {
  9378. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9379. bool L_15;
  9380. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  9381. if (L_15)
  9382. {
  9383. goto IL_002b;
  9384. }
  9385. }
  9386. {
  9387. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  9388. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  9389. }
  9390. IL_0074:
  9391. {
  9392. return (bool)0;
  9393. }
  9394. }
  9395. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  9396. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m3DC8A87BDEBE8BCB70F11038CCA77E85A504D399_gshared (WhereSelectListIterator_2_t826F95904CF310DF0C5DC08F8BE3AAC8CAB040CD* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  9397. {
  9398. {
  9399. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  9400. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  9401. NullCheck(L_1);
  9402. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  9403. return (RuntimeObject*)L_1;
  9404. }
  9405. }
  9406. #ifdef __clang__
  9407. #pragma clang diagnostic pop
  9408. #endif
  9409. #ifdef __clang__
  9410. #pragma clang diagnostic push
  9411. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9412. #pragma clang diagnostic ignored "-Wunused-variable"
  9413. #endif
  9414. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  9415. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mC74E8E5294FA4B2A31119EBC85266E435397EB5D_gshared (WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t383ACA034986FB526C2536401996EF1CC0889958* ___2_selector, const RuntimeMethod* method)
  9416. {
  9417. {
  9418. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  9419. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  9420. __this->___source_3 = L_0;
  9421. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  9422. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  9423. __this->___predicate_4 = L_1;
  9424. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  9425. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* L_2 = ___2_selector;
  9426. __this->___selector_5 = L_2;
  9427. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  9428. return;
  9429. }
  9430. }
  9431. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::Clone()
  9432. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectListIterator_2_Clone_m668A6B40EDB53981B2B6A5ECB35595DDE81D95B5_gshared (WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B* __this, const RuntimeMethod* method)
  9433. {
  9434. {
  9435. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9436. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9437. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* L_2 = (Func_2_t383ACA034986FB526C2536401996EF1CC0889958*)__this->___selector_5;
  9438. WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B* L_3 = (WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  9439. NullCheck(L_3);
  9440. (( void (*) (WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t383ACA034986FB526C2536401996EF1CC0889958*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  9441. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  9442. }
  9443. }
  9444. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::MoveNext()
  9445. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mBE407A5323A4B7F3B7E4E60B891747244AFF7683_gshared (WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B* __this, const RuntimeMethod* method)
  9446. {
  9447. int32_t V_0 = 0;
  9448. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  9449. memset((&V_1), 0, sizeof(V_1));
  9450. {
  9451. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  9452. V_0 = L_0;
  9453. int32_t L_1 = V_0;
  9454. if ((((int32_t)L_1) == ((int32_t)1)))
  9455. {
  9456. goto IL_0011;
  9457. }
  9458. }
  9459. {
  9460. int32_t L_2 = V_0;
  9461. if ((((int32_t)L_2) == ((int32_t)2)))
  9462. {
  9463. goto IL_0061;
  9464. }
  9465. }
  9466. {
  9467. goto IL_0074;
  9468. }
  9469. IL_0011:
  9470. {
  9471. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9472. NullCheck(L_3);
  9473. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  9474. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  9475. __this->___enumerator_6 = L_4;
  9476. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  9477. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9478. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  9479. #endif
  9480. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9481. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  9482. #endif
  9483. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  9484. goto IL_0061;
  9485. }
  9486. IL_002b:
  9487. {
  9488. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9489. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  9490. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  9491. V_1 = L_6;
  9492. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9493. if (!L_7)
  9494. {
  9495. goto IL_004d;
  9496. }
  9497. }
  9498. {
  9499. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9500. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  9501. NullCheck(L_8);
  9502. bool L_10;
  9503. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  9504. if (!L_10)
  9505. {
  9506. goto IL_0061;
  9507. }
  9508. }
  9509. IL_004d:
  9510. {
  9511. Func_2_t383ACA034986FB526C2536401996EF1CC0889958* L_11 = (Func_2_t383ACA034986FB526C2536401996EF1CC0889958*)__this->___selector_5;
  9512. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  9513. NullCheck(L_11);
  9514. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  9515. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t383ACA034986FB526C2536401996EF1CC0889958*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  9516. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  9517. return (bool)1;
  9518. }
  9519. IL_0061:
  9520. {
  9521. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9522. bool L_15;
  9523. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  9524. if (L_15)
  9525. {
  9526. goto IL_002b;
  9527. }
  9528. }
  9529. {
  9530. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  9531. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  9532. }
  9533. IL_0074:
  9534. {
  9535. return (bool)0;
  9536. }
  9537. }
  9538. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  9539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m7DA714DE910F48E5F725AB3A656E7EBE235B5CBE_gshared (WhereSelectListIterator_2_t3965E493D81D423A17B042809B22DF0E0B35803B* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  9540. {
  9541. {
  9542. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  9543. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  9544. NullCheck(L_1);
  9545. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  9546. return (RuntimeObject*)L_1;
  9547. }
  9548. }
  9549. #ifdef __clang__
  9550. #pragma clang diagnostic pop
  9551. #endif
  9552. #ifdef __clang__
  9553. #pragma clang diagnostic push
  9554. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9555. #pragma clang diagnostic ignored "-Wunused-variable"
  9556. #endif
  9557. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  9558. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mD6658F24A32BFA79AEAF9EB1F8B9644484A6EDD9_gshared (WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9* __this, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* ___0_source, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* ___1_predicate, Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* ___2_selector, const RuntimeMethod* method)
  9559. {
  9560. {
  9561. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  9562. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = ___0_source;
  9563. __this->___source_3 = L_0;
  9564. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  9565. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = ___1_predicate;
  9566. __this->___predicate_4 = L_1;
  9567. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  9568. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* L_2 = ___2_selector;
  9569. __this->___selector_5 = L_2;
  9570. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  9571. return;
  9572. }
  9573. }
  9574. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::Clone()
  9575. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectListIterator_2_Clone_m5924591086C551094340E4CCBC45891B3A338248_gshared (WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9* __this, const RuntimeMethod* method)
  9576. {
  9577. {
  9578. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_0 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9579. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_1 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9580. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* L_2 = (Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*)__this->___selector_5;
  9581. WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9* L_3 = (WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  9582. NullCheck(L_3);
  9583. (( void (*) (WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9*, List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  9584. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  9585. }
  9586. }
  9587. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::MoveNext()
  9588. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m456A9CB803B87DB76378413AF4B391880D2302EE_gshared (WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9* __this, const RuntimeMethod* method)
  9589. {
  9590. int32_t V_0 = 0;
  9591. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_1;
  9592. memset((&V_1), 0, sizeof(V_1));
  9593. {
  9594. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  9595. V_0 = L_0;
  9596. int32_t L_1 = V_0;
  9597. if ((((int32_t)L_1) == ((int32_t)1)))
  9598. {
  9599. goto IL_0011;
  9600. }
  9601. }
  9602. {
  9603. int32_t L_2 = V_0;
  9604. if ((((int32_t)L_2) == ((int32_t)2)))
  9605. {
  9606. goto IL_0061;
  9607. }
  9608. }
  9609. {
  9610. goto IL_0074;
  9611. }
  9612. IL_0011:
  9613. {
  9614. List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* L_3 = (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*)__this->___source_3;
  9615. NullCheck(L_3);
  9616. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 L_4;
  9617. L_4 = (( Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4 (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  9618. __this->___enumerator_6 = L_4;
  9619. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  9620. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9621. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___key_0), (void*)NULL);
  9622. #endif
  9623. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9624. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___value_1), (void*)NULL);
  9625. #endif
  9626. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  9627. goto IL_0061;
  9628. }
  9629. IL_002b:
  9630. {
  9631. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_5 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9632. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_6;
  9633. L_6 = Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  9634. V_1 = L_6;
  9635. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_7 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9636. if (!L_7)
  9637. {
  9638. goto IL_004d;
  9639. }
  9640. }
  9641. {
  9642. Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858* L_8 = (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*)__this->___predicate_4;
  9643. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = V_1;
  9644. NullCheck(L_8);
  9645. bool L_10;
  9646. L_10 = (( bool (*) (Func_2_t9364FA627D95BAC4CDA1FB83D8857B61F71B1858*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  9647. if (!L_10)
  9648. {
  9649. goto IL_0061;
  9650. }
  9651. }
  9652. IL_004d:
  9653. {
  9654. Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B* L_11 = (Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*)__this->___selector_5;
  9655. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12 = V_1;
  9656. NullCheck(L_11);
  9657. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  9658. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t756C971CC335E41E8726C19CC1971D0F93A0E08B*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  9659. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  9660. return (bool)1;
  9661. }
  9662. IL_0061:
  9663. {
  9664. Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* L_14 = (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4*)(&__this->___enumerator_6);
  9665. bool L_15;
  9666. L_15 = Enumerator_MoveNext_m7303D41C6A0DB6D9A9B9F5923546BF98515E7B39(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  9667. if (L_15)
  9668. {
  9669. goto IL_002b;
  9670. }
  9671. }
  9672. {
  9673. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  9674. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  9675. }
  9676. IL_0074:
  9677. {
  9678. return (bool)0;
  9679. }
  9680. }
  9681. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  9682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mFFB42D63A0B06F32F4732AB9C3659E8F0FF659F2_gshared (WhereSelectListIterator_2_t0C1B5A69E3D421FEB968BCD2FA42AB90B4C4FBE9* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  9683. {
  9684. {
  9685. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  9686. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  9687. NullCheck(L_1);
  9688. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  9689. return (RuntimeObject*)L_1;
  9690. }
  9691. }
  9692. #ifdef __clang__
  9693. #pragma clang diagnostic pop
  9694. #endif
  9695. #ifdef __clang__
  9696. #pragma clang diagnostic push
  9697. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9698. #pragma clang diagnostic ignored "-Wunused-variable"
  9699. #endif
  9700. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  9701. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m6015CAFB149403EFC49A3CFE180F8287C4B1F2D3_gshared (WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* ___2_selector, const RuntimeMethod* method)
  9702. {
  9703. {
  9704. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  9705. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  9706. __this->___source_3 = L_0;
  9707. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  9708. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  9709. __this->___predicate_4 = L_1;
  9710. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  9711. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* L_2 = ___2_selector;
  9712. __this->___selector_5 = L_2;
  9713. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  9714. return;
  9715. }
  9716. }
  9717. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  9718. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectListIterator_2_Clone_m8A3BA71E6E6B1781AC184C78B9D5092BA3B1BFC4_gshared (WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B* __this, const RuntimeMethod* method)
  9719. {
  9720. {
  9721. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  9722. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  9723. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* L_2 = (Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*)__this->___selector_5;
  9724. WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B* L_3 = (WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  9725. NullCheck(L_3);
  9726. (( void (*) (WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  9727. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  9728. }
  9729. }
  9730. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  9731. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m527CC2EF79DE7C165BA7378823C3F8D1173121B2_gshared (WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B* __this, const RuntimeMethod* method)
  9732. {
  9733. int32_t V_0 = 0;
  9734. int32_t V_1 = 0;
  9735. {
  9736. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  9737. V_0 = L_0;
  9738. int32_t L_1 = V_0;
  9739. if ((((int32_t)L_1) == ((int32_t)1)))
  9740. {
  9741. goto IL_0011;
  9742. }
  9743. }
  9744. {
  9745. int32_t L_2 = V_0;
  9746. if ((((int32_t)L_2) == ((int32_t)2)))
  9747. {
  9748. goto IL_0061;
  9749. }
  9750. }
  9751. {
  9752. goto IL_0074;
  9753. }
  9754. IL_0011:
  9755. {
  9756. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  9757. NullCheck(L_3);
  9758. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  9759. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  9760. __this->___enumerator_6 = L_4;
  9761. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  9762. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  9763. goto IL_0061;
  9764. }
  9765. IL_002b:
  9766. {
  9767. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  9768. int32_t L_6;
  9769. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  9770. V_1 = L_6;
  9771. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  9772. if (!L_7)
  9773. {
  9774. goto IL_004d;
  9775. }
  9776. }
  9777. {
  9778. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  9779. int32_t L_9 = V_1;
  9780. NullCheck(L_8);
  9781. bool L_10;
  9782. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  9783. if (!L_10)
  9784. {
  9785. goto IL_0061;
  9786. }
  9787. }
  9788. IL_004d:
  9789. {
  9790. Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665* L_11 = (Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*)__this->___selector_5;
  9791. int32_t L_12 = V_1;
  9792. NullCheck(L_11);
  9793. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  9794. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_tF56DF5480E243FCDF894BF58102BE74409D47665*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  9795. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  9796. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  9797. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  9798. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  9799. #endif
  9800. return (bool)1;
  9801. }
  9802. IL_0061:
  9803. {
  9804. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  9805. bool L_15;
  9806. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  9807. if (L_15)
  9808. {
  9809. goto IL_002b;
  9810. }
  9811. }
  9812. {
  9813. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  9814. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  9815. }
  9816. IL_0074:
  9817. {
  9818. return (bool)0;
  9819. }
  9820. }
  9821. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  9822. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mD8EEB3480FCF68C7CD75F325CD61E7162D1D2BD9_gshared (WhereSelectListIterator_2_t1A5B574577FF00CA7DAA72E41AD6F3C3715A546B* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  9823. {
  9824. {
  9825. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  9826. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  9827. NullCheck(L_1);
  9828. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  9829. return (RuntimeObject*)L_1;
  9830. }
  9831. }
  9832. #ifdef __clang__
  9833. #pragma clang diagnostic pop
  9834. #endif
  9835. #ifdef __clang__
  9836. #pragma clang diagnostic push
  9837. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9838. #pragma clang diagnostic ignored "-Wunused-variable"
  9839. #endif
  9840. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  9841. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m1E12506124283491688BA958BC26A945804D496D_gshared (WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* ___2_selector, const RuntimeMethod* method)
  9842. {
  9843. {
  9844. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  9845. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  9846. __this->___source_3 = L_0;
  9847. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  9848. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  9849. __this->___predicate_4 = L_1;
  9850. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  9851. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* L_2 = ___2_selector;
  9852. __this->___selector_5 = L_2;
  9853. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  9854. return;
  9855. }
  9856. }
  9857. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>::Clone()
  9858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectListIterator_2_Clone_m14BAE5C00026E9E8DD6E94207925FC2E1CA2FB81_gshared (WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D* __this, const RuntimeMethod* method)
  9859. {
  9860. {
  9861. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  9862. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  9863. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* L_2 = (Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*)__this->___selector_5;
  9864. WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D* L_3 = (WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  9865. NullCheck(L_3);
  9866. (( void (*) (WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  9867. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  9868. }
  9869. }
  9870. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>::MoveNext()
  9871. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m481C9D014FD839DAD0AD4646A3D06242EF5CD8CD_gshared (WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D* __this, const RuntimeMethod* method)
  9872. {
  9873. int32_t V_0 = 0;
  9874. int32_t V_1 = 0;
  9875. {
  9876. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  9877. V_0 = L_0;
  9878. int32_t L_1 = V_0;
  9879. if ((((int32_t)L_1) == ((int32_t)1)))
  9880. {
  9881. goto IL_0011;
  9882. }
  9883. }
  9884. {
  9885. int32_t L_2 = V_0;
  9886. if ((((int32_t)L_2) == ((int32_t)2)))
  9887. {
  9888. goto IL_0061;
  9889. }
  9890. }
  9891. {
  9892. goto IL_0074;
  9893. }
  9894. IL_0011:
  9895. {
  9896. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  9897. NullCheck(L_3);
  9898. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  9899. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  9900. __this->___enumerator_6 = L_4;
  9901. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  9902. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  9903. goto IL_0061;
  9904. }
  9905. IL_002b:
  9906. {
  9907. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  9908. int32_t L_6;
  9909. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  9910. V_1 = L_6;
  9911. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  9912. if (!L_7)
  9913. {
  9914. goto IL_004d;
  9915. }
  9916. }
  9917. {
  9918. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  9919. int32_t L_9 = V_1;
  9920. NullCheck(L_8);
  9921. bool L_10;
  9922. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  9923. if (!L_10)
  9924. {
  9925. goto IL_0061;
  9926. }
  9927. }
  9928. IL_004d:
  9929. {
  9930. Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD* L_11 = (Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*)__this->___selector_5;
  9931. int32_t L_12 = V_1;
  9932. NullCheck(L_11);
  9933. Il2CppChar L_13;
  9934. L_13 = (( Il2CppChar (*) (Func_2_tEB5270271440F5524FC38C37B6ADABD8B1944ACD*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  9935. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  9936. return (bool)1;
  9937. }
  9938. IL_0061:
  9939. {
  9940. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  9941. bool L_15;
  9942. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  9943. if (L_15)
  9944. {
  9945. goto IL_002b;
  9946. }
  9947. }
  9948. {
  9949. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  9950. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  9951. }
  9952. IL_0074:
  9953. {
  9954. return (bool)0;
  9955. }
  9956. }
  9957. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  9958. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mE4F69C5D7A64DA4F70D80D1A23679BC07E810F87_gshared (WhereSelectListIterator_2_tB528C35AF9AA759D6BB6C29DD3F18216801B8D5D* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  9959. {
  9960. {
  9961. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  9962. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  9963. NullCheck(L_1);
  9964. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  9965. return (RuntimeObject*)L_1;
  9966. }
  9967. }
  9968. #ifdef __clang__
  9969. #pragma clang diagnostic pop
  9970. #endif
  9971. #ifdef __clang__
  9972. #pragma clang diagnostic push
  9973. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9974. #pragma clang diagnostic ignored "-Wunused-variable"
  9975. #endif
  9976. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  9977. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m9C838FBBCFE491D860FC639C4373913C155E2542_gshared (WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* ___2_selector, const RuntimeMethod* method)
  9978. {
  9979. {
  9980. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  9981. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  9982. __this->___source_3 = L_0;
  9983. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  9984. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  9985. __this->___predicate_4 = L_1;
  9986. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  9987. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* L_2 = ___2_selector;
  9988. __this->___selector_5 = L_2;
  9989. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  9990. return;
  9991. }
  9992. }
  9993. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>::Clone()
  9994. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectListIterator_2_Clone_m6B71DAC5435F9A379503C11D93593D30BA796F07_gshared (WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80* __this, const RuntimeMethod* method)
  9995. {
  9996. {
  9997. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  9998. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  9999. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* L_2 = (Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*)__this->___selector_5;
  10000. WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80* L_3 = (WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10001. NullCheck(L_3);
  10002. (( void (*) (WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10003. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  10004. }
  10005. }
  10006. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>::MoveNext()
  10007. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m5AF562FEE4EB2EB245EB12D3854714747091DEA9_gshared (WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80* __this, const RuntimeMethod* method)
  10008. {
  10009. int32_t V_0 = 0;
  10010. int32_t V_1 = 0;
  10011. {
  10012. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  10013. V_0 = L_0;
  10014. int32_t L_1 = V_0;
  10015. if ((((int32_t)L_1) == ((int32_t)1)))
  10016. {
  10017. goto IL_0011;
  10018. }
  10019. }
  10020. {
  10021. int32_t L_2 = V_0;
  10022. if ((((int32_t)L_2) == ((int32_t)2)))
  10023. {
  10024. goto IL_0061;
  10025. }
  10026. }
  10027. {
  10028. goto IL_0074;
  10029. }
  10030. IL_0011:
  10031. {
  10032. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10033. NullCheck(L_3);
  10034. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  10035. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10036. __this->___enumerator_6 = L_4;
  10037. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10038. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  10039. goto IL_0061;
  10040. }
  10041. IL_002b:
  10042. {
  10043. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10044. int32_t L_6;
  10045. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  10046. V_1 = L_6;
  10047. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10048. if (!L_7)
  10049. {
  10050. goto IL_004d;
  10051. }
  10052. }
  10053. {
  10054. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10055. int32_t L_9 = V_1;
  10056. NullCheck(L_8);
  10057. bool L_10;
  10058. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  10059. if (!L_10)
  10060. {
  10061. goto IL_0061;
  10062. }
  10063. }
  10064. IL_004d:
  10065. {
  10066. Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5* L_11 = (Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*)__this->___selector_5;
  10067. int32_t L_12 = V_1;
  10068. NullCheck(L_11);
  10069. Guid_t L_13;
  10070. L_13 = (( Guid_t (*) (Func_2_t3FE56BC6263D5B6DC5EC4029CBF5D3C13E3ABCD5*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  10071. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  10072. return (bool)1;
  10073. }
  10074. IL_0061:
  10075. {
  10076. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10077. bool L_15;
  10078. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  10079. if (L_15)
  10080. {
  10081. goto IL_002b;
  10082. }
  10083. }
  10084. {
  10085. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  10086. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  10087. }
  10088. IL_0074:
  10089. {
  10090. return (bool)0;
  10091. }
  10092. }
  10093. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  10094. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m825EF6DF771AADA5C43F1B4744469A41B08FEFB6_gshared (WhereSelectListIterator_2_t23BC3F9BD6DE142DC3FB19A3EE80AF3F9CBA8E80* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  10095. {
  10096. {
  10097. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  10098. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  10099. NullCheck(L_1);
  10100. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  10101. return (RuntimeObject*)L_1;
  10102. }
  10103. }
  10104. #ifdef __clang__
  10105. #pragma clang diagnostic pop
  10106. #endif
  10107. #ifdef __clang__
  10108. #pragma clang diagnostic push
  10109. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10110. #pragma clang diagnostic ignored "-Wunused-variable"
  10111. #endif
  10112. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  10113. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m80BB1C97A9B4B9C60648387CF6393E5D6C6B7AE7_gshared (WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* ___2_selector, const RuntimeMethod* method)
  10114. {
  10115. {
  10116. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  10117. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  10118. __this->___source_3 = L_0;
  10119. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  10120. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  10121. __this->___predicate_4 = L_1;
  10122. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  10123. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* L_2 = ___2_selector;
  10124. __this->___selector_5 = L_2;
  10125. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  10126. return;
  10127. }
  10128. }
  10129. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>::Clone()
  10130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectListIterator_2_Clone_mEB021C37D21C588BD23B2E31E94B78EECAC70ECC_gshared (WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0* __this, const RuntimeMethod* method)
  10131. {
  10132. {
  10133. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10134. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10135. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* L_2 = (Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*)__this->___selector_5;
  10136. WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0* L_3 = (WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10137. NullCheck(L_3);
  10138. (( void (*) (WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10139. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  10140. }
  10141. }
  10142. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>::MoveNext()
  10143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mC4C73B9B34878E32FE1CE9D39506A38A51D3647E_gshared (WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0* __this, const RuntimeMethod* method)
  10144. {
  10145. int32_t V_0 = 0;
  10146. int32_t V_1 = 0;
  10147. {
  10148. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  10149. V_0 = L_0;
  10150. int32_t L_1 = V_0;
  10151. if ((((int32_t)L_1) == ((int32_t)1)))
  10152. {
  10153. goto IL_0011;
  10154. }
  10155. }
  10156. {
  10157. int32_t L_2 = V_0;
  10158. if ((((int32_t)L_2) == ((int32_t)2)))
  10159. {
  10160. goto IL_0061;
  10161. }
  10162. }
  10163. {
  10164. goto IL_0074;
  10165. }
  10166. IL_0011:
  10167. {
  10168. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10169. NullCheck(L_3);
  10170. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  10171. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10172. __this->___enumerator_6 = L_4;
  10173. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10174. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  10175. goto IL_0061;
  10176. }
  10177. IL_002b:
  10178. {
  10179. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10180. int32_t L_6;
  10181. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  10182. V_1 = L_6;
  10183. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10184. if (!L_7)
  10185. {
  10186. goto IL_004d;
  10187. }
  10188. }
  10189. {
  10190. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10191. int32_t L_9 = V_1;
  10192. NullCheck(L_8);
  10193. bool L_10;
  10194. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  10195. if (!L_10)
  10196. {
  10197. goto IL_0061;
  10198. }
  10199. }
  10200. IL_004d:
  10201. {
  10202. Func_2_tF12503C33FD184E465546C31F324F4C344B8975A* L_11 = (Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*)__this->___selector_5;
  10203. int32_t L_12 = V_1;
  10204. NullCheck(L_11);
  10205. RuntimeObject* L_13;
  10206. L_13 = (( RuntimeObject* (*) (Func_2_tF12503C33FD184E465546C31F324F4C344B8975A*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  10207. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  10208. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  10209. return (bool)1;
  10210. }
  10211. IL_0061:
  10212. {
  10213. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10214. bool L_15;
  10215. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  10216. if (L_15)
  10217. {
  10218. goto IL_002b;
  10219. }
  10220. }
  10221. {
  10222. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  10223. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  10224. }
  10225. IL_0074:
  10226. {
  10227. return (bool)0;
  10228. }
  10229. }
  10230. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  10231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m73B23853246474AB894F5475C49165E061CFE8AE_gshared (WhereSelectListIterator_2_tED106563EDAAAFC5D4826BB767636CC6724207C0* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  10232. {
  10233. {
  10234. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  10235. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  10236. NullCheck(L_1);
  10237. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  10238. return (RuntimeObject*)L_1;
  10239. }
  10240. }
  10241. #ifdef __clang__
  10242. #pragma clang diagnostic pop
  10243. #endif
  10244. #ifdef __clang__
  10245. #pragma clang diagnostic push
  10246. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10247. #pragma clang diagnostic ignored "-Wunused-variable"
  10248. #endif
  10249. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  10250. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m6F706884DBAB38D8888EAF1D1F9525222E132D9D_gshared (WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* ___2_selector, const RuntimeMethod* method)
  10251. {
  10252. {
  10253. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  10254. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  10255. __this->___source_3 = L_0;
  10256. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  10257. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  10258. __this->___predicate_4 = L_1;
  10259. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  10260. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* L_2 = ___2_selector;
  10261. __this->___selector_5 = L_2;
  10262. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  10263. return;
  10264. }
  10265. }
  10266. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>::Clone()
  10267. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectListIterator_2_Clone_mAAAF5B87521D528B27042193C89EBE788615D915_gshared (WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3* __this, const RuntimeMethod* method)
  10268. {
  10269. {
  10270. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10271. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10272. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* L_2 = (Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*)__this->___selector_5;
  10273. WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3* L_3 = (WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10274. NullCheck(L_3);
  10275. (( void (*) (WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10276. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  10277. }
  10278. }
  10279. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>::MoveNext()
  10280. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m779227C8D673FF9CED0EF0D107D4D3A42C67B1CE_gshared (WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3* __this, const RuntimeMethod* method)
  10281. {
  10282. int32_t V_0 = 0;
  10283. int32_t V_1 = 0;
  10284. {
  10285. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  10286. V_0 = L_0;
  10287. int32_t L_1 = V_0;
  10288. if ((((int32_t)L_1) == ((int32_t)1)))
  10289. {
  10290. goto IL_0011;
  10291. }
  10292. }
  10293. {
  10294. int32_t L_2 = V_0;
  10295. if ((((int32_t)L_2) == ((int32_t)2)))
  10296. {
  10297. goto IL_0061;
  10298. }
  10299. }
  10300. {
  10301. goto IL_0074;
  10302. }
  10303. IL_0011:
  10304. {
  10305. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10306. NullCheck(L_3);
  10307. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  10308. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10309. __this->___enumerator_6 = L_4;
  10310. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10311. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  10312. goto IL_0061;
  10313. }
  10314. IL_002b:
  10315. {
  10316. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10317. int32_t L_6;
  10318. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  10319. V_1 = L_6;
  10320. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10321. if (!L_7)
  10322. {
  10323. goto IL_004d;
  10324. }
  10325. }
  10326. {
  10327. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10328. int32_t L_9 = V_1;
  10329. NullCheck(L_8);
  10330. bool L_10;
  10331. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  10332. if (!L_10)
  10333. {
  10334. goto IL_0061;
  10335. }
  10336. }
  10337. IL_004d:
  10338. {
  10339. Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975* L_11 = (Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*)__this->___selector_5;
  10340. int32_t L_12 = V_1;
  10341. NullCheck(L_11);
  10342. float L_13;
  10343. L_13 = (( float (*) (Func_2_t6F8F3763B94FF54CC94B682CC9FFCE38435E5975*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  10344. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  10345. return (bool)1;
  10346. }
  10347. IL_0061:
  10348. {
  10349. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10350. bool L_15;
  10351. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  10352. if (L_15)
  10353. {
  10354. goto IL_002b;
  10355. }
  10356. }
  10357. {
  10358. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  10359. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  10360. }
  10361. IL_0074:
  10362. {
  10363. return (bool)0;
  10364. }
  10365. }
  10366. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  10367. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mB31659B9BEABBA82899A9D5BD1AB4DBFE41B7467_gshared (WhereSelectListIterator_2_t971C11DFF418ADC8CFF49CC35AA4AD4592C24BC3* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  10368. {
  10369. {
  10370. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  10371. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  10372. NullCheck(L_1);
  10373. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  10374. return (RuntimeObject*)L_1;
  10375. }
  10376. }
  10377. #ifdef __clang__
  10378. #pragma clang diagnostic pop
  10379. #endif
  10380. #ifdef __clang__
  10381. #pragma clang diagnostic push
  10382. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10383. #pragma clang diagnostic ignored "-Wunused-variable"
  10384. #endif
  10385. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  10386. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mC5370F8E53EFB5A7CBFAF5F1A46B4304B78E7331_gshared (WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* ___2_selector, const RuntimeMethod* method)
  10387. {
  10388. {
  10389. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  10390. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  10391. __this->___source_3 = L_0;
  10392. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  10393. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  10394. __this->___predicate_4 = L_1;
  10395. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  10396. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* L_2 = ___2_selector;
  10397. __this->___selector_5 = L_2;
  10398. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  10399. return;
  10400. }
  10401. }
  10402. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>::Clone()
  10403. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectListIterator_2_Clone_m116A1A0E5F02853771AA8B62C4F8191DDF1B3700_gshared (WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F* __this, const RuntimeMethod* method)
  10404. {
  10405. {
  10406. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10407. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10408. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* L_2 = (Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*)__this->___selector_5;
  10409. WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F* L_3 = (WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10410. NullCheck(L_3);
  10411. (( void (*) (WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10412. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  10413. }
  10414. }
  10415. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>::MoveNext()
  10416. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mF3AEC14C50274A6783A5A51777FCF2277B02EA86_gshared (WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F* __this, const RuntimeMethod* method)
  10417. {
  10418. int32_t V_0 = 0;
  10419. int32_t V_1 = 0;
  10420. {
  10421. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  10422. V_0 = L_0;
  10423. int32_t L_1 = V_0;
  10424. if ((((int32_t)L_1) == ((int32_t)1)))
  10425. {
  10426. goto IL_0011;
  10427. }
  10428. }
  10429. {
  10430. int32_t L_2 = V_0;
  10431. if ((((int32_t)L_2) == ((int32_t)2)))
  10432. {
  10433. goto IL_0061;
  10434. }
  10435. }
  10436. {
  10437. goto IL_0074;
  10438. }
  10439. IL_0011:
  10440. {
  10441. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10442. NullCheck(L_3);
  10443. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  10444. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10445. __this->___enumerator_6 = L_4;
  10446. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10447. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  10448. goto IL_0061;
  10449. }
  10450. IL_002b:
  10451. {
  10452. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10453. int32_t L_6;
  10454. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  10455. V_1 = L_6;
  10456. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10457. if (!L_7)
  10458. {
  10459. goto IL_004d;
  10460. }
  10461. }
  10462. {
  10463. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10464. int32_t L_9 = V_1;
  10465. NullCheck(L_8);
  10466. bool L_10;
  10467. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  10468. if (!L_10)
  10469. {
  10470. goto IL_0061;
  10471. }
  10472. }
  10473. IL_004d:
  10474. {
  10475. Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30* L_11 = (Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*)__this->___selector_5;
  10476. int32_t L_12 = V_1;
  10477. NullCheck(L_11);
  10478. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  10479. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_t2E0F87DDF5C79A1BF0E72E4A32070498DDB63C30*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  10480. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  10481. return (bool)1;
  10482. }
  10483. IL_0061:
  10484. {
  10485. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10486. bool L_15;
  10487. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  10488. if (L_15)
  10489. {
  10490. goto IL_002b;
  10491. }
  10492. }
  10493. {
  10494. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  10495. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  10496. }
  10497. IL_0074:
  10498. {
  10499. return (bool)0;
  10500. }
  10501. }
  10502. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  10503. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m24EE18DCB8506069FD99E1181B29FFD5BDD07835_gshared (WhereSelectListIterator_2_t1309111E34E335FEE4BB38FB1C4FEE751430C54F* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  10504. {
  10505. {
  10506. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  10507. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  10508. NullCheck(L_1);
  10509. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  10510. return (RuntimeObject*)L_1;
  10511. }
  10512. }
  10513. #ifdef __clang__
  10514. #pragma clang diagnostic pop
  10515. #endif
  10516. #ifdef __clang__
  10517. #pragma clang diagnostic push
  10518. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10519. #pragma clang diagnostic ignored "-Wunused-variable"
  10520. #endif
  10521. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  10522. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mF41EFF3B64D4DF5276B6BF7ADEBD5BE89248E097_gshared (WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* ___2_selector, const RuntimeMethod* method)
  10523. {
  10524. {
  10525. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  10526. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  10527. __this->___source_3 = L_0;
  10528. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  10529. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  10530. __this->___predicate_4 = L_1;
  10531. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  10532. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* L_2 = ___2_selector;
  10533. __this->___selector_5 = L_2;
  10534. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  10535. return;
  10536. }
  10537. }
  10538. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>::Clone()
  10539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectListIterator_2_Clone_m47E8E706A0F750D0E40342686C35005F85D93713_gshared (WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820* __this, const RuntimeMethod* method)
  10540. {
  10541. {
  10542. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10543. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10544. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* L_2 = (Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*)__this->___selector_5;
  10545. WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820* L_3 = (WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10546. NullCheck(L_3);
  10547. (( void (*) (WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10548. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  10549. }
  10550. }
  10551. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>::MoveNext()
  10552. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mB73A82373ECA21A8363880210D475493747402E2_gshared (WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820* __this, const RuntimeMethod* method)
  10553. {
  10554. int32_t V_0 = 0;
  10555. int32_t V_1 = 0;
  10556. {
  10557. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  10558. V_0 = L_0;
  10559. int32_t L_1 = V_0;
  10560. if ((((int32_t)L_1) == ((int32_t)1)))
  10561. {
  10562. goto IL_0011;
  10563. }
  10564. }
  10565. {
  10566. int32_t L_2 = V_0;
  10567. if ((((int32_t)L_2) == ((int32_t)2)))
  10568. {
  10569. goto IL_0061;
  10570. }
  10571. }
  10572. {
  10573. goto IL_0074;
  10574. }
  10575. IL_0011:
  10576. {
  10577. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10578. NullCheck(L_3);
  10579. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  10580. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10581. __this->___enumerator_6 = L_4;
  10582. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10583. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  10584. goto IL_0061;
  10585. }
  10586. IL_002b:
  10587. {
  10588. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10589. int32_t L_6;
  10590. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  10591. V_1 = L_6;
  10592. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10593. if (!L_7)
  10594. {
  10595. goto IL_004d;
  10596. }
  10597. }
  10598. {
  10599. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10600. int32_t L_9 = V_1;
  10601. NullCheck(L_8);
  10602. bool L_10;
  10603. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  10604. if (!L_10)
  10605. {
  10606. goto IL_0061;
  10607. }
  10608. }
  10609. IL_004d:
  10610. {
  10611. Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B* L_11 = (Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*)__this->___selector_5;
  10612. int32_t L_12 = V_1;
  10613. NullCheck(L_11);
  10614. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  10615. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t28BDEE0BBB0AF3832E1676D6ABB65EDA5546306B*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  10616. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  10617. return (bool)1;
  10618. }
  10619. IL_0061:
  10620. {
  10621. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10622. bool L_15;
  10623. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  10624. if (L_15)
  10625. {
  10626. goto IL_002b;
  10627. }
  10628. }
  10629. {
  10630. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  10631. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  10632. }
  10633. IL_0074:
  10634. {
  10635. return (bool)0;
  10636. }
  10637. }
  10638. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  10639. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mE0BAC99D4338D8EC198846F9A58E69E8ADDC3763_gshared (WhereSelectListIterator_2_t67F4670BB9206D1A624D37987C257D0DA493B820* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  10640. {
  10641. {
  10642. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  10643. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  10644. NullCheck(L_1);
  10645. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  10646. return (RuntimeObject*)L_1;
  10647. }
  10648. }
  10649. #ifdef __clang__
  10650. #pragma clang diagnostic pop
  10651. #endif
  10652. #ifdef __clang__
  10653. #pragma clang diagnostic push
  10654. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10655. #pragma clang diagnostic ignored "-Wunused-variable"
  10656. #endif
  10657. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  10658. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m076D5F705D7A49B18E65DAF9383FD9765F660CF5_gshared (WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F* __this, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___0_source, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* ___1_predicate, Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* ___2_selector, const RuntimeMethod* method)
  10659. {
  10660. {
  10661. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  10662. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = ___0_source;
  10663. __this->___source_3 = L_0;
  10664. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  10665. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = ___1_predicate;
  10666. __this->___predicate_4 = L_1;
  10667. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  10668. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* L_2 = ___2_selector;
  10669. __this->___selector_5 = L_2;
  10670. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  10671. return;
  10672. }
  10673. }
  10674. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>::Clone()
  10675. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectListIterator_2_Clone_mEBCA668B7E814AED6496947041FCC35CCE95F21C_gshared (WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F* __this, const RuntimeMethod* method)
  10676. {
  10677. {
  10678. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10679. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_1 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10680. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* L_2 = (Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*)__this->___selector_5;
  10681. WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F* L_3 = (WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10682. NullCheck(L_3);
  10683. (( void (*) (WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F*, List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10684. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  10685. }
  10686. }
  10687. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>::MoveNext()
  10688. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mD010450C165ACA6B555CCAF4F23362292CE0B283_gshared (WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F* __this, const RuntimeMethod* method)
  10689. {
  10690. int32_t V_0 = 0;
  10691. int32_t V_1 = 0;
  10692. {
  10693. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  10694. V_0 = L_0;
  10695. int32_t L_1 = V_0;
  10696. if ((((int32_t)L_1) == ((int32_t)1)))
  10697. {
  10698. goto IL_0011;
  10699. }
  10700. }
  10701. {
  10702. int32_t L_2 = V_0;
  10703. if ((((int32_t)L_2) == ((int32_t)2)))
  10704. {
  10705. goto IL_0061;
  10706. }
  10707. }
  10708. {
  10709. goto IL_0074;
  10710. }
  10711. IL_0011:
  10712. {
  10713. List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_3 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)__this->___source_3;
  10714. NullCheck(L_3);
  10715. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_4;
  10716. L_4 = (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10717. __this->___enumerator_6 = L_4;
  10718. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10719. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  10720. goto IL_0061;
  10721. }
  10722. IL_002b:
  10723. {
  10724. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_5 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10725. int32_t L_6;
  10726. L_6 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  10727. V_1 = L_6;
  10728. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_7 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10729. if (!L_7)
  10730. {
  10731. goto IL_004d;
  10732. }
  10733. }
  10734. {
  10735. Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* L_8 = (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*)__this->___predicate_4;
  10736. int32_t L_9 = V_1;
  10737. NullCheck(L_8);
  10738. bool L_10;
  10739. L_10 = (( bool (*) (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  10740. if (!L_10)
  10741. {
  10742. goto IL_0061;
  10743. }
  10744. }
  10745. IL_004d:
  10746. {
  10747. Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890* L_11 = (Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*)__this->___selector_5;
  10748. int32_t L_12 = V_1;
  10749. NullCheck(L_11);
  10750. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  10751. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t20F329C9D47892E84BBF9A1B0EF63A1B4785E890*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  10752. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  10753. return (bool)1;
  10754. }
  10755. IL_0061:
  10756. {
  10757. Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* L_14 = (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*)(&__this->___enumerator_6);
  10758. bool L_15;
  10759. L_15 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  10760. if (L_15)
  10761. {
  10762. goto IL_002b;
  10763. }
  10764. }
  10765. {
  10766. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  10767. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  10768. }
  10769. IL_0074:
  10770. {
  10771. return (bool)0;
  10772. }
  10773. }
  10774. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Int32Enum,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  10775. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mF61AC8521595112D1BBC07F36FA82351110144F8_gshared (WhereSelectListIterator_2_t48FCAE58815012588242FC8C433316F4C7F0B55F* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  10776. {
  10777. {
  10778. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  10779. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  10780. NullCheck(L_1);
  10781. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  10782. return (RuntimeObject*)L_1;
  10783. }
  10784. }
  10785. #ifdef __clang__
  10786. #pragma clang diagnostic pop
  10787. #endif
  10788. #ifdef __clang__
  10789. #pragma clang diagnostic push
  10790. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10791. #pragma clang diagnostic ignored "-Wunused-variable"
  10792. #endif
  10793. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  10794. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m4DA4E55D68D54CA13E443B2C1EF7AE6A5627787E_gshared (WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* ___2_selector, const RuntimeMethod* method)
  10795. {
  10796. {
  10797. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  10798. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  10799. __this->___source_3 = L_0;
  10800. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  10801. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  10802. __this->___predicate_4 = L_1;
  10803. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  10804. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* L_2 = ___2_selector;
  10805. __this->___selector_5 = L_2;
  10806. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  10807. return;
  10808. }
  10809. }
  10810. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  10811. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectListIterator_2_Clone_m4BEBDF3B22C2E9FD3A10DF1A73D7A7AE08B57C53_gshared (WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D* __this, const RuntimeMethod* method)
  10812. {
  10813. {
  10814. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  10815. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  10816. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* L_2 = (Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*)__this->___selector_5;
  10817. WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D* L_3 = (WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10818. NullCheck(L_3);
  10819. (( void (*) (WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10820. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  10821. }
  10822. }
  10823. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  10824. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m782534AAC7F6402CABDC6025320407AA6A38AC81_gshared (WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D* __this, const RuntimeMethod* method)
  10825. {
  10826. int32_t V_0 = 0;
  10827. RuntimeObject* V_1 = NULL;
  10828. {
  10829. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  10830. V_0 = L_0;
  10831. int32_t L_1 = V_0;
  10832. if ((((int32_t)L_1) == ((int32_t)1)))
  10833. {
  10834. goto IL_0011;
  10835. }
  10836. }
  10837. {
  10838. int32_t L_2 = V_0;
  10839. if ((((int32_t)L_2) == ((int32_t)2)))
  10840. {
  10841. goto IL_0061;
  10842. }
  10843. }
  10844. {
  10845. goto IL_0074;
  10846. }
  10847. IL_0011:
  10848. {
  10849. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  10850. NullCheck(L_3);
  10851. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  10852. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10853. __this->___enumerator_6 = L_4;
  10854. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10855. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  10856. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  10857. #endif
  10858. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  10859. goto IL_0061;
  10860. }
  10861. IL_002b:
  10862. {
  10863. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  10864. RuntimeObject* L_6;
  10865. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  10866. V_1 = L_6;
  10867. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  10868. if (!L_7)
  10869. {
  10870. goto IL_004d;
  10871. }
  10872. }
  10873. {
  10874. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  10875. RuntimeObject* L_9 = V_1;
  10876. NullCheck(L_8);
  10877. bool L_10;
  10878. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  10879. if (!L_10)
  10880. {
  10881. goto IL_0061;
  10882. }
  10883. }
  10884. IL_004d:
  10885. {
  10886. Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0* L_11 = (Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*)__this->___selector_5;
  10887. RuntimeObject* L_12 = V_1;
  10888. NullCheck(L_11);
  10889. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  10890. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_tEE709D92F595E05CEE36C7FD0D5EE65BD0AC82B0*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  10891. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  10892. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  10893. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  10894. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  10895. #endif
  10896. return (bool)1;
  10897. }
  10898. IL_0061:
  10899. {
  10900. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  10901. bool L_15;
  10902. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  10903. if (L_15)
  10904. {
  10905. goto IL_002b;
  10906. }
  10907. }
  10908. {
  10909. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  10910. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  10911. }
  10912. IL_0074:
  10913. {
  10914. return (bool)0;
  10915. }
  10916. }
  10917. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  10918. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m64F534C7CFE24C6001D08F9BB1BC20D440E11CF4_gshared (WhereSelectListIterator_2_t1D0D030153AD3907D2774B6B5C56F2AA852BC21D* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  10919. {
  10920. {
  10921. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  10922. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  10923. NullCheck(L_1);
  10924. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  10925. return (RuntimeObject*)L_1;
  10926. }
  10927. }
  10928. #ifdef __clang__
  10929. #pragma clang diagnostic pop
  10930. #endif
  10931. #ifdef __clang__
  10932. #pragma clang diagnostic push
  10933. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  10934. #pragma clang diagnostic ignored "-Wunused-variable"
  10935. #endif
  10936. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  10937. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mBC65043182A085D2B8F93CB4071B4D1D0F2BD6FA_gshared (WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tA8F6CB924B4548E42010325397F16C187C098225* ___2_selector, const RuntimeMethod* method)
  10938. {
  10939. {
  10940. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  10941. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  10942. __this->___source_3 = L_0;
  10943. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  10944. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  10945. __this->___predicate_4 = L_1;
  10946. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  10947. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* L_2 = ___2_selector;
  10948. __this->___selector_5 = L_2;
  10949. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  10950. return;
  10951. }
  10952. }
  10953. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>::Clone()
  10954. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectListIterator_2_Clone_mEF3C567B93B3FFEC29C2F0E8FCD44891D645C0C6_gshared (WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003* __this, const RuntimeMethod* method)
  10955. {
  10956. {
  10957. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  10958. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  10959. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* L_2 = (Func_2_tA8F6CB924B4548E42010325397F16C187C098225*)__this->___selector_5;
  10960. WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003* L_3 = (WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  10961. NullCheck(L_3);
  10962. (( void (*) (WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tA8F6CB924B4548E42010325397F16C187C098225*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  10963. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  10964. }
  10965. }
  10966. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>::MoveNext()
  10967. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m5F249D3A2DD0AC72201CB67A9CACE008960FF69C_gshared (WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003* __this, const RuntimeMethod* method)
  10968. {
  10969. int32_t V_0 = 0;
  10970. RuntimeObject* V_1 = NULL;
  10971. {
  10972. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  10973. V_0 = L_0;
  10974. int32_t L_1 = V_0;
  10975. if ((((int32_t)L_1) == ((int32_t)1)))
  10976. {
  10977. goto IL_0011;
  10978. }
  10979. }
  10980. {
  10981. int32_t L_2 = V_0;
  10982. if ((((int32_t)L_2) == ((int32_t)2)))
  10983. {
  10984. goto IL_0061;
  10985. }
  10986. }
  10987. {
  10988. goto IL_0074;
  10989. }
  10990. IL_0011:
  10991. {
  10992. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  10993. NullCheck(L_3);
  10994. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  10995. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  10996. __this->___enumerator_6 = L_4;
  10997. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  10998. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  10999. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  11000. #endif
  11001. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  11002. goto IL_0061;
  11003. }
  11004. IL_002b:
  11005. {
  11006. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11007. RuntimeObject* L_6;
  11008. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11009. V_1 = L_6;
  11010. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11011. if (!L_7)
  11012. {
  11013. goto IL_004d;
  11014. }
  11015. }
  11016. {
  11017. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11018. RuntimeObject* L_9 = V_1;
  11019. NullCheck(L_8);
  11020. bool L_10;
  11021. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  11022. if (!L_10)
  11023. {
  11024. goto IL_0061;
  11025. }
  11026. }
  11027. IL_004d:
  11028. {
  11029. Func_2_tA8F6CB924B4548E42010325397F16C187C098225* L_11 = (Func_2_tA8F6CB924B4548E42010325397F16C187C098225*)__this->___selector_5;
  11030. RuntimeObject* L_12 = V_1;
  11031. NullCheck(L_11);
  11032. Il2CppChar L_13;
  11033. L_13 = (( Il2CppChar (*) (Func_2_tA8F6CB924B4548E42010325397F16C187C098225*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  11034. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  11035. return (bool)1;
  11036. }
  11037. IL_0061:
  11038. {
  11039. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11040. bool L_15;
  11041. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  11042. if (L_15)
  11043. {
  11044. goto IL_002b;
  11045. }
  11046. }
  11047. {
  11048. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  11049. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  11050. }
  11051. IL_0074:
  11052. {
  11053. return (bool)0;
  11054. }
  11055. }
  11056. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  11057. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m477DE11941B8BE59888AEFAF53469EB4E5A17516_gshared (WhereSelectListIterator_2_t82DE1329A7CC9259113480A8ADAD5DFD09F80003* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  11058. {
  11059. {
  11060. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  11061. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  11062. NullCheck(L_1);
  11063. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  11064. return (RuntimeObject*)L_1;
  11065. }
  11066. }
  11067. #ifdef __clang__
  11068. #pragma clang diagnostic pop
  11069. #endif
  11070. #ifdef __clang__
  11071. #pragma clang diagnostic push
  11072. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11073. #pragma clang diagnostic ignored "-Wunused-variable"
  11074. #endif
  11075. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  11076. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m4C6280E71513DFB98A5134975C19DAE90AF5901B_gshared (WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* ___2_selector, const RuntimeMethod* method)
  11077. {
  11078. {
  11079. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  11080. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  11081. __this->___source_3 = L_0;
  11082. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  11083. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  11084. __this->___predicate_4 = L_1;
  11085. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  11086. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* L_2 = ___2_selector;
  11087. __this->___selector_5 = L_2;
  11088. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  11089. return;
  11090. }
  11091. }
  11092. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>::Clone()
  11093. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectListIterator_2_Clone_mF46CDE325864697F738D201951EC7991418EAC37_gshared (WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E* __this, const RuntimeMethod* method)
  11094. {
  11095. {
  11096. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11097. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11098. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* L_2 = (Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*)__this->___selector_5;
  11099. WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E* L_3 = (WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  11100. NullCheck(L_3);
  11101. (( void (*) (WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  11102. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  11103. }
  11104. }
  11105. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>::MoveNext()
  11106. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m1659BAE2949299A689EE6772A658B6E01C220E31_gshared (WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E* __this, const RuntimeMethod* method)
  11107. {
  11108. int32_t V_0 = 0;
  11109. RuntimeObject* V_1 = NULL;
  11110. {
  11111. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  11112. V_0 = L_0;
  11113. int32_t L_1 = V_0;
  11114. if ((((int32_t)L_1) == ((int32_t)1)))
  11115. {
  11116. goto IL_0011;
  11117. }
  11118. }
  11119. {
  11120. int32_t L_2 = V_0;
  11121. if ((((int32_t)L_2) == ((int32_t)2)))
  11122. {
  11123. goto IL_0061;
  11124. }
  11125. }
  11126. {
  11127. goto IL_0074;
  11128. }
  11129. IL_0011:
  11130. {
  11131. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11132. NullCheck(L_3);
  11133. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  11134. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  11135. __this->___enumerator_6 = L_4;
  11136. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  11137. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11138. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  11139. #endif
  11140. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  11141. goto IL_0061;
  11142. }
  11143. IL_002b:
  11144. {
  11145. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11146. RuntimeObject* L_6;
  11147. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11148. V_1 = L_6;
  11149. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11150. if (!L_7)
  11151. {
  11152. goto IL_004d;
  11153. }
  11154. }
  11155. {
  11156. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11157. RuntimeObject* L_9 = V_1;
  11158. NullCheck(L_8);
  11159. bool L_10;
  11160. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  11161. if (!L_10)
  11162. {
  11163. goto IL_0061;
  11164. }
  11165. }
  11166. IL_004d:
  11167. {
  11168. Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838* L_11 = (Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*)__this->___selector_5;
  11169. RuntimeObject* L_12 = V_1;
  11170. NullCheck(L_11);
  11171. Guid_t L_13;
  11172. L_13 = (( Guid_t (*) (Func_2_tB966008A65EE3C580BEEAEA7E13ED7A153257838*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  11173. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  11174. return (bool)1;
  11175. }
  11176. IL_0061:
  11177. {
  11178. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11179. bool L_15;
  11180. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  11181. if (L_15)
  11182. {
  11183. goto IL_002b;
  11184. }
  11185. }
  11186. {
  11187. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  11188. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  11189. }
  11190. IL_0074:
  11191. {
  11192. return (bool)0;
  11193. }
  11194. }
  11195. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  11196. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m484D8463103944869ABE3D0B0D1121154F487DAC_gshared (WhereSelectListIterator_2_t5FF13319F6EE58BF06750FA93B0098B7F0356C0E* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  11197. {
  11198. {
  11199. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  11200. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  11201. NullCheck(L_1);
  11202. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  11203. return (RuntimeObject*)L_1;
  11204. }
  11205. }
  11206. #ifdef __clang__
  11207. #pragma clang diagnostic pop
  11208. #endif
  11209. #ifdef __clang__
  11210. #pragma clang diagnostic push
  11211. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11212. #pragma clang diagnostic ignored "-Wunused-variable"
  11213. #endif
  11214. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  11215. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m9CC6A34DCA0012E593221AFBACC4F20664BD876A_gshared (WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___2_selector, const RuntimeMethod* method)
  11216. {
  11217. {
  11218. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  11219. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  11220. __this->___source_3 = L_0;
  11221. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  11222. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  11223. __this->___predicate_4 = L_1;
  11224. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  11225. Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_2 = ___2_selector;
  11226. __this->___selector_5 = L_2;
  11227. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  11228. return;
  11229. }
  11230. }
  11231. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::Clone()
  11232. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectListIterator_2_Clone_mF22589DABD608C024E039C0F5DE9F457967EC3E8_gshared (WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A* __this, const RuntimeMethod* method)
  11233. {
  11234. {
  11235. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11236. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11237. Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_2 = (Func_2_tACBF5A1656250800CE861707354491F0611F6624*)__this->___selector_5;
  11238. WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A* L_3 = (WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  11239. NullCheck(L_3);
  11240. (( void (*) (WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tACBF5A1656250800CE861707354491F0611F6624*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  11241. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  11242. }
  11243. }
  11244. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::MoveNext()
  11245. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m4609B745A7644E640F319C2651F1A97C2D304458_gshared (WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A* __this, const RuntimeMethod* method)
  11246. {
  11247. int32_t V_0 = 0;
  11248. RuntimeObject* V_1 = NULL;
  11249. {
  11250. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  11251. V_0 = L_0;
  11252. int32_t L_1 = V_0;
  11253. if ((((int32_t)L_1) == ((int32_t)1)))
  11254. {
  11255. goto IL_0011;
  11256. }
  11257. }
  11258. {
  11259. int32_t L_2 = V_0;
  11260. if ((((int32_t)L_2) == ((int32_t)2)))
  11261. {
  11262. goto IL_0061;
  11263. }
  11264. }
  11265. {
  11266. goto IL_0074;
  11267. }
  11268. IL_0011:
  11269. {
  11270. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11271. NullCheck(L_3);
  11272. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  11273. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  11274. __this->___enumerator_6 = L_4;
  11275. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  11276. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11277. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  11278. #endif
  11279. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  11280. goto IL_0061;
  11281. }
  11282. IL_002b:
  11283. {
  11284. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11285. RuntimeObject* L_6;
  11286. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11287. V_1 = L_6;
  11288. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11289. if (!L_7)
  11290. {
  11291. goto IL_004d;
  11292. }
  11293. }
  11294. {
  11295. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11296. RuntimeObject* L_9 = V_1;
  11297. NullCheck(L_8);
  11298. bool L_10;
  11299. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  11300. if (!L_10)
  11301. {
  11302. goto IL_0061;
  11303. }
  11304. }
  11305. IL_004d:
  11306. {
  11307. Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_11 = (Func_2_tACBF5A1656250800CE861707354491F0611F6624*)__this->___selector_5;
  11308. RuntimeObject* L_12 = V_1;
  11309. NullCheck(L_11);
  11310. RuntimeObject* L_13;
  11311. L_13 = (( RuntimeObject* (*) (Func_2_tACBF5A1656250800CE861707354491F0611F6624*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  11312. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  11313. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  11314. return (bool)1;
  11315. }
  11316. IL_0061:
  11317. {
  11318. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11319. bool L_15;
  11320. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  11321. if (L_15)
  11322. {
  11323. goto IL_002b;
  11324. }
  11325. }
  11326. {
  11327. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  11328. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  11329. }
  11330. IL_0074:
  11331. {
  11332. return (bool)0;
  11333. }
  11334. }
  11335. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  11336. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mA37F84C07852A5760237B9A50C373846A6528477_gshared (WhereSelectListIterator_2_tC97775A217B6CD43A5FD2A085EE12720F7C3808A* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  11337. {
  11338. {
  11339. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  11340. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  11341. NullCheck(L_1);
  11342. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  11343. return (RuntimeObject*)L_1;
  11344. }
  11345. }
  11346. #ifdef __clang__
  11347. #pragma clang diagnostic pop
  11348. #endif
  11349. #ifdef __clang__
  11350. #pragma clang diagnostic push
  11351. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11352. #pragma clang diagnostic ignored "-Wunused-variable"
  11353. #endif
  11354. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  11355. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m22BAFF678F9378729DD9E5551BBA6BA69FDEEF94_gshared (WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* ___2_selector, const RuntimeMethod* method)
  11356. {
  11357. {
  11358. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  11359. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  11360. __this->___source_3 = L_0;
  11361. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  11362. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  11363. __this->___predicate_4 = L_1;
  11364. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  11365. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* L_2 = ___2_selector;
  11366. __this->___selector_5 = L_2;
  11367. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  11368. return;
  11369. }
  11370. }
  11371. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>::Clone()
  11372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectListIterator_2_Clone_m29FF529DD718DD7EEFEE0E1128661AD8EF2C534E_gshared (WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9* __this, const RuntimeMethod* method)
  11373. {
  11374. {
  11375. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11376. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11377. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* L_2 = (Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*)__this->___selector_5;
  11378. WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9* L_3 = (WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  11379. NullCheck(L_3);
  11380. (( void (*) (WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  11381. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  11382. }
  11383. }
  11384. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>::MoveNext()
  11385. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m0B0C765BFD4BA1167D123810AF36952282481BA6_gshared (WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9* __this, const RuntimeMethod* method)
  11386. {
  11387. int32_t V_0 = 0;
  11388. RuntimeObject* V_1 = NULL;
  11389. {
  11390. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  11391. V_0 = L_0;
  11392. int32_t L_1 = V_0;
  11393. if ((((int32_t)L_1) == ((int32_t)1)))
  11394. {
  11395. goto IL_0011;
  11396. }
  11397. }
  11398. {
  11399. int32_t L_2 = V_0;
  11400. if ((((int32_t)L_2) == ((int32_t)2)))
  11401. {
  11402. goto IL_0061;
  11403. }
  11404. }
  11405. {
  11406. goto IL_0074;
  11407. }
  11408. IL_0011:
  11409. {
  11410. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11411. NullCheck(L_3);
  11412. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  11413. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  11414. __this->___enumerator_6 = L_4;
  11415. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  11416. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11417. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  11418. #endif
  11419. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  11420. goto IL_0061;
  11421. }
  11422. IL_002b:
  11423. {
  11424. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11425. RuntimeObject* L_6;
  11426. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11427. V_1 = L_6;
  11428. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11429. if (!L_7)
  11430. {
  11431. goto IL_004d;
  11432. }
  11433. }
  11434. {
  11435. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11436. RuntimeObject* L_9 = V_1;
  11437. NullCheck(L_8);
  11438. bool L_10;
  11439. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  11440. if (!L_10)
  11441. {
  11442. goto IL_0061;
  11443. }
  11444. }
  11445. IL_004d:
  11446. {
  11447. Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12* L_11 = (Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*)__this->___selector_5;
  11448. RuntimeObject* L_12 = V_1;
  11449. NullCheck(L_11);
  11450. float L_13;
  11451. L_13 = (( float (*) (Func_2_tB5C40A90702B6A6A2E315FD927EEFC9FB69F2B12*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  11452. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  11453. return (bool)1;
  11454. }
  11455. IL_0061:
  11456. {
  11457. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11458. bool L_15;
  11459. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  11460. if (L_15)
  11461. {
  11462. goto IL_002b;
  11463. }
  11464. }
  11465. {
  11466. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  11467. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  11468. }
  11469. IL_0074:
  11470. {
  11471. return (bool)0;
  11472. }
  11473. }
  11474. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  11475. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m4A3DB49D03860A66FF85F000DEB2E2D8688DAC49_gshared (WhereSelectListIterator_2_tFE32164179EE37B666D799CFB7F5167FB4C464D9* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  11476. {
  11477. {
  11478. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  11479. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  11480. NullCheck(L_1);
  11481. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  11482. return (RuntimeObject*)L_1;
  11483. }
  11484. }
  11485. #ifdef __clang__
  11486. #pragma clang diagnostic pop
  11487. #endif
  11488. #ifdef __clang__
  11489. #pragma clang diagnostic push
  11490. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11491. #pragma clang diagnostic ignored "-Wunused-variable"
  11492. #endif
  11493. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  11494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m806C56469C3B3CE4D41439A0205E28D186E82FF6_gshared (WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* ___2_selector, const RuntimeMethod* method)
  11495. {
  11496. {
  11497. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  11498. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  11499. __this->___source_3 = L_0;
  11500. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  11501. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  11502. __this->___predicate_4 = L_1;
  11503. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  11504. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* L_2 = ___2_selector;
  11505. __this->___selector_5 = L_2;
  11506. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  11507. return;
  11508. }
  11509. }
  11510. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>::Clone()
  11511. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectListIterator_2_Clone_m782F8E66FE142BEF793C9D13FBCD42402F3E8286_gshared (WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44* __this, const RuntimeMethod* method)
  11512. {
  11513. {
  11514. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11515. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11516. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* L_2 = (Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*)__this->___selector_5;
  11517. WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44* L_3 = (WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  11518. NullCheck(L_3);
  11519. (( void (*) (WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  11520. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  11521. }
  11522. }
  11523. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>::MoveNext()
  11524. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m98F02010E49D5B7611B6EA93FAB319CEA27AE213_gshared (WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44* __this, const RuntimeMethod* method)
  11525. {
  11526. int32_t V_0 = 0;
  11527. RuntimeObject* V_1 = NULL;
  11528. {
  11529. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  11530. V_0 = L_0;
  11531. int32_t L_1 = V_0;
  11532. if ((((int32_t)L_1) == ((int32_t)1)))
  11533. {
  11534. goto IL_0011;
  11535. }
  11536. }
  11537. {
  11538. int32_t L_2 = V_0;
  11539. if ((((int32_t)L_2) == ((int32_t)2)))
  11540. {
  11541. goto IL_0061;
  11542. }
  11543. }
  11544. {
  11545. goto IL_0074;
  11546. }
  11547. IL_0011:
  11548. {
  11549. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11550. NullCheck(L_3);
  11551. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  11552. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  11553. __this->___enumerator_6 = L_4;
  11554. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  11555. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11556. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  11557. #endif
  11558. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  11559. goto IL_0061;
  11560. }
  11561. IL_002b:
  11562. {
  11563. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11564. RuntimeObject* L_6;
  11565. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11566. V_1 = L_6;
  11567. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11568. if (!L_7)
  11569. {
  11570. goto IL_004d;
  11571. }
  11572. }
  11573. {
  11574. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11575. RuntimeObject* L_9 = V_1;
  11576. NullCheck(L_8);
  11577. bool L_10;
  11578. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  11579. if (!L_10)
  11580. {
  11581. goto IL_0061;
  11582. }
  11583. }
  11584. IL_004d:
  11585. {
  11586. Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4* L_11 = (Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*)__this->___selector_5;
  11587. RuntimeObject* L_12 = V_1;
  11588. NullCheck(L_11);
  11589. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  11590. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_t127163694D7C66D0F32B7F8F5BB2507F7516DEE4*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  11591. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  11592. return (bool)1;
  11593. }
  11594. IL_0061:
  11595. {
  11596. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11597. bool L_15;
  11598. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  11599. if (L_15)
  11600. {
  11601. goto IL_002b;
  11602. }
  11603. }
  11604. {
  11605. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  11606. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  11607. }
  11608. IL_0074:
  11609. {
  11610. return (bool)0;
  11611. }
  11612. }
  11613. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  11614. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m911DEA71974E129BE00137D7162F62CEC3613A63_gshared (WhereSelectListIterator_2_t6D757CC0B317F507E31783D6BAB8CDC2C848CB44* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  11615. {
  11616. {
  11617. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  11618. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  11619. NullCheck(L_1);
  11620. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  11621. return (RuntimeObject*)L_1;
  11622. }
  11623. }
  11624. #ifdef __clang__
  11625. #pragma clang diagnostic pop
  11626. #endif
  11627. #ifdef __clang__
  11628. #pragma clang diagnostic push
  11629. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11630. #pragma clang diagnostic ignored "-Wunused-variable"
  11631. #endif
  11632. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  11633. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m5A8EEDF32091C2AC8FF6CA6B931180CC68A43EA3_gshared (WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* ___2_selector, const RuntimeMethod* method)
  11634. {
  11635. {
  11636. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  11637. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  11638. __this->___source_3 = L_0;
  11639. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  11640. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  11641. __this->___predicate_4 = L_1;
  11642. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  11643. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* L_2 = ___2_selector;
  11644. __this->___selector_5 = L_2;
  11645. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  11646. return;
  11647. }
  11648. }
  11649. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>::Clone()
  11650. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectListIterator_2_Clone_mB123A62114F102BC9E627875F910B69017BBCEFE_gshared (WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65* __this, const RuntimeMethod* method)
  11651. {
  11652. {
  11653. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11654. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11655. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* L_2 = (Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*)__this->___selector_5;
  11656. WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65* L_3 = (WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  11657. NullCheck(L_3);
  11658. (( void (*) (WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  11659. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  11660. }
  11661. }
  11662. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>::MoveNext()
  11663. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m67C68C17887B15EBC197D3AB4AE4A342590CF699_gshared (WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65* __this, const RuntimeMethod* method)
  11664. {
  11665. int32_t V_0 = 0;
  11666. RuntimeObject* V_1 = NULL;
  11667. {
  11668. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  11669. V_0 = L_0;
  11670. int32_t L_1 = V_0;
  11671. if ((((int32_t)L_1) == ((int32_t)1)))
  11672. {
  11673. goto IL_0011;
  11674. }
  11675. }
  11676. {
  11677. int32_t L_2 = V_0;
  11678. if ((((int32_t)L_2) == ((int32_t)2)))
  11679. {
  11680. goto IL_0061;
  11681. }
  11682. }
  11683. {
  11684. goto IL_0074;
  11685. }
  11686. IL_0011:
  11687. {
  11688. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11689. NullCheck(L_3);
  11690. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  11691. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  11692. __this->___enumerator_6 = L_4;
  11693. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  11694. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11695. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  11696. #endif
  11697. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  11698. goto IL_0061;
  11699. }
  11700. IL_002b:
  11701. {
  11702. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11703. RuntimeObject* L_6;
  11704. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11705. V_1 = L_6;
  11706. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11707. if (!L_7)
  11708. {
  11709. goto IL_004d;
  11710. }
  11711. }
  11712. {
  11713. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11714. RuntimeObject* L_9 = V_1;
  11715. NullCheck(L_8);
  11716. bool L_10;
  11717. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  11718. if (!L_10)
  11719. {
  11720. goto IL_0061;
  11721. }
  11722. }
  11723. IL_004d:
  11724. {
  11725. Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E* L_11 = (Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*)__this->___selector_5;
  11726. RuntimeObject* L_12 = V_1;
  11727. NullCheck(L_11);
  11728. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  11729. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t1F9887E0A0ADE496D09CAA16DBA7B19D5579727E*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  11730. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  11731. return (bool)1;
  11732. }
  11733. IL_0061:
  11734. {
  11735. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11736. bool L_15;
  11737. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  11738. if (L_15)
  11739. {
  11740. goto IL_002b;
  11741. }
  11742. }
  11743. {
  11744. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  11745. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  11746. }
  11747. IL_0074:
  11748. {
  11749. return (bool)0;
  11750. }
  11751. }
  11752. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  11753. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m3A5A23102292A2055320993D8C6572D041A2A650_gshared (WhereSelectListIterator_2_t2F947A7776BA76AEEB0F205EF71A63410DFACA65* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  11754. {
  11755. {
  11756. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  11757. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  11758. NullCheck(L_1);
  11759. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  11760. return (RuntimeObject*)L_1;
  11761. }
  11762. }
  11763. #ifdef __clang__
  11764. #pragma clang diagnostic pop
  11765. #endif
  11766. #ifdef __clang__
  11767. #pragma clang diagnostic push
  11768. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11769. #pragma clang diagnostic ignored "-Wunused-variable"
  11770. #endif
  11771. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  11772. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m274E71E959F2DE46853B9D4066D696F7A5E7A242_gshared (WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_source, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_predicate, Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* ___2_selector, const RuntimeMethod* method)
  11773. {
  11774. {
  11775. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  11776. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_source;
  11777. __this->___source_3 = L_0;
  11778. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  11779. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_predicate;
  11780. __this->___predicate_4 = L_1;
  11781. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  11782. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* L_2 = ___2_selector;
  11783. __this->___selector_5 = L_2;
  11784. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  11785. return;
  11786. }
  11787. }
  11788. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>::Clone()
  11789. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectListIterator_2_Clone_mEA87D809B69DE51EAFC4A6E3068BC1FCA4B1EBEC_gshared (WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F* __this, const RuntimeMethod* method)
  11790. {
  11791. {
  11792. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11793. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11794. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* L_2 = (Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*)__this->___selector_5;
  11795. WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F* L_3 = (WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  11796. NullCheck(L_3);
  11797. (( void (*) (WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  11798. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  11799. }
  11800. }
  11801. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>::MoveNext()
  11802. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m889461A8B0708A322A1318A27DB8590CB3B7D458_gshared (WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F* __this, const RuntimeMethod* method)
  11803. {
  11804. int32_t V_0 = 0;
  11805. RuntimeObject* V_1 = NULL;
  11806. {
  11807. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  11808. V_0 = L_0;
  11809. int32_t L_1 = V_0;
  11810. if ((((int32_t)L_1) == ((int32_t)1)))
  11811. {
  11812. goto IL_0011;
  11813. }
  11814. }
  11815. {
  11816. int32_t L_2 = V_0;
  11817. if ((((int32_t)L_2) == ((int32_t)2)))
  11818. {
  11819. goto IL_0061;
  11820. }
  11821. }
  11822. {
  11823. goto IL_0074;
  11824. }
  11825. IL_0011:
  11826. {
  11827. List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)__this->___source_3;
  11828. NullCheck(L_3);
  11829. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A L_4;
  11830. L_4 = (( Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  11831. __this->___enumerator_6 = L_4;
  11832. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  11833. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11834. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____current_3), (void*)NULL);
  11835. #endif
  11836. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  11837. goto IL_0061;
  11838. }
  11839. IL_002b:
  11840. {
  11841. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_5 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11842. RuntimeObject* L_6;
  11843. L_6 = Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11844. V_1 = L_6;
  11845. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_7 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11846. if (!L_7)
  11847. {
  11848. goto IL_004d;
  11849. }
  11850. }
  11851. {
  11852. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_8 = (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*)__this->___predicate_4;
  11853. RuntimeObject* L_9 = V_1;
  11854. NullCheck(L_8);
  11855. bool L_10;
  11856. L_10 = (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  11857. if (!L_10)
  11858. {
  11859. goto IL_0061;
  11860. }
  11861. }
  11862. IL_004d:
  11863. {
  11864. Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302* L_11 = (Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*)__this->___selector_5;
  11865. RuntimeObject* L_12 = V_1;
  11866. NullCheck(L_11);
  11867. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  11868. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t01EEA5FE255AF6B9B90E3CFAE8B5571BC66E8302*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  11869. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  11870. return (bool)1;
  11871. }
  11872. IL_0061:
  11873. {
  11874. Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* L_14 = (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A*)(&__this->___enumerator_6);
  11875. bool L_15;
  11876. L_15 = Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  11877. if (L_15)
  11878. {
  11879. goto IL_002b;
  11880. }
  11881. }
  11882. {
  11883. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  11884. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  11885. }
  11886. IL_0074:
  11887. {
  11888. return (bool)0;
  11889. }
  11890. }
  11891. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<System.Object,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  11892. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mFE65ABA0E48FA8CF6254C235D4C5E029EE0068DE_gshared (WhereSelectListIterator_2_t9651C82872E49763DA217BC42252D9BEAED98F8F* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  11893. {
  11894. {
  11895. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  11896. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  11897. NullCheck(L_1);
  11898. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  11899. return (RuntimeObject*)L_1;
  11900. }
  11901. }
  11902. #ifdef __clang__
  11903. #pragma clang diagnostic pop
  11904. #endif
  11905. #ifdef __clang__
  11906. #pragma clang diagnostic push
  11907. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  11908. #pragma clang diagnostic ignored "-Wunused-variable"
  11909. #endif
  11910. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  11911. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m1344C578099C9BF9AD59C3907C02DDC4B7952132_gshared (WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_tC496704D554895234B1360058C5CC2D901C24957* ___2_selector, const RuntimeMethod* method)
  11912. {
  11913. {
  11914. (( void (*) (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  11915. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  11916. __this->___source_3 = L_0;
  11917. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  11918. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  11919. __this->___predicate_4 = L_1;
  11920. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  11921. Func_2_tC496704D554895234B1360058C5CC2D901C24957* L_2 = ___2_selector;
  11922. __this->___selector_5 = L_2;
  11923. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  11924. return;
  11925. }
  11926. }
  11927. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::Clone()
  11928. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7* WhereSelectListIterator_2_Clone_mEA46A649565540C65C30A58988F2E737A098003F_gshared (WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC* __this, const RuntimeMethod* method)
  11929. {
  11930. {
  11931. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  11932. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  11933. Func_2_tC496704D554895234B1360058C5CC2D901C24957* L_2 = (Func_2_tC496704D554895234B1360058C5CC2D901C24957*)__this->___selector_5;
  11934. WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC* L_3 = (WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  11935. NullCheck(L_3);
  11936. (( void (*) (WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_tC496704D554895234B1360058C5CC2D901C24957*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  11937. return (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)L_3;
  11938. }
  11939. }
  11940. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
  11941. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m9867D239589CB6D32C0EBFBC06A142A979CF2242_gshared (WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC* __this, const RuntimeMethod* method)
  11942. {
  11943. int32_t V_0 = 0;
  11944. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  11945. memset((&V_1), 0, sizeof(V_1));
  11946. {
  11947. int32_t L_0 = (int32_t)((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1;
  11948. V_0 = L_0;
  11949. int32_t L_1 = V_0;
  11950. if ((((int32_t)L_1) == ((int32_t)1)))
  11951. {
  11952. goto IL_0011;
  11953. }
  11954. }
  11955. {
  11956. int32_t L_2 = V_0;
  11957. if ((((int32_t)L_2) == ((int32_t)2)))
  11958. {
  11959. goto IL_0061;
  11960. }
  11961. }
  11962. {
  11963. goto IL_0074;
  11964. }
  11965. IL_0011:
  11966. {
  11967. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  11968. NullCheck(L_3);
  11969. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  11970. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  11971. __this->___enumerator_6 = L_4;
  11972. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  11973. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11974. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  11975. #endif
  11976. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  11977. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  11978. #endif
  11979. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___state_1 = 2;
  11980. goto IL_0061;
  11981. }
  11982. IL_002b:
  11983. {
  11984. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  11985. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  11986. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  11987. V_1 = L_6;
  11988. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  11989. if (!L_7)
  11990. {
  11991. goto IL_004d;
  11992. }
  11993. }
  11994. {
  11995. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  11996. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  11997. NullCheck(L_8);
  11998. bool L_10;
  11999. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  12000. if (!L_10)
  12001. {
  12002. goto IL_0061;
  12003. }
  12004. }
  12005. IL_004d:
  12006. {
  12007. Func_2_tC496704D554895234B1360058C5CC2D901C24957* L_11 = (Func_2_tC496704D554895234B1360058C5CC2D901C24957*)__this->___selector_5;
  12008. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  12009. NullCheck(L_11);
  12010. ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A L_13;
  12011. L_13 = (( ValueTuple_2_tC3717D4552EE1E5FC27BFBA3F5155741BC04557A (*) (Func_2_tC496704D554895234B1360058C5CC2D901C24957*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  12012. ((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2 = L_13;
  12013. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item1_0), (void*)NULL);
  12014. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12015. Il2CppCodeGenWriteBarrier((void**)&(((&((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this)->___current_2))->___Item2_1), (void*)NULL);
  12016. #endif
  12017. return (bool)1;
  12018. }
  12019. IL_0061:
  12020. {
  12021. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12022. bool L_15;
  12023. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  12024. if (L_15)
  12025. {
  12026. goto IL_002b;
  12027. }
  12028. }
  12029. {
  12030. NullCheck((Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  12031. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose() */, (Iterator_1_t4CA23CD873CBDBC32139D125DAF56978F2278AD7*)__this);
  12032. }
  12033. IL_0074:
  12034. {
  12035. return (bool)0;
  12036. }
  12037. }
  12038. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.ValueTuple`2<System.Object,System.Object>>::Where(System.Func`2<TResult,System.Boolean>)
  12039. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m550AB19D1C92BD33273F8BE936FEC8FBFA975D11_gshared (WhereSelectListIterator_2_tF0640331D98594762A021513E6F45184227DA7FC* __this, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* ___0_predicate, const RuntimeMethod* method)
  12040. {
  12041. {
  12042. Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4* L_0 = ___0_predicate;
  12043. WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF* L_1 = (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  12044. NullCheck(L_1);
  12045. (( void (*) (WhereEnumerableIterator_1_t3AB40B6F779E8159270BDADA5B2EA32C1A8381BF*, RuntimeObject*, Func_2_t852072CDFF0303D1154452D6964FAC8D36FAE7C4*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  12046. return (RuntimeObject*)L_1;
  12047. }
  12048. }
  12049. #ifdef __clang__
  12050. #pragma clang diagnostic pop
  12051. #endif
  12052. #ifdef __clang__
  12053. #pragma clang diagnostic push
  12054. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12055. #pragma clang diagnostic ignored "-Wunused-variable"
  12056. #endif
  12057. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  12058. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m5C9ED5095B86064DB8D75A753A0B3BD405B7D656_gshared (WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* ___2_selector, const RuntimeMethod* method)
  12059. {
  12060. {
  12061. (( void (*) (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  12062. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  12063. __this->___source_3 = L_0;
  12064. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  12065. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  12066. __this->___predicate_4 = L_1;
  12067. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  12068. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* L_2 = ___2_selector;
  12069. __this->___selector_5 = L_2;
  12070. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  12071. return;
  12072. }
  12073. }
  12074. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::Clone()
  12075. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA* WhereSelectListIterator_2_Clone_m0F390A964DFF722B0ACEDCF2900092EA8E9EA875_gshared (WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328* __this, const RuntimeMethod* method)
  12076. {
  12077. {
  12078. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12079. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12080. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* L_2 = (Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*)__this->___selector_5;
  12081. WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328* L_3 = (WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  12082. NullCheck(L_3);
  12083. (( void (*) (WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  12084. return (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)L_3;
  12085. }
  12086. }
  12087. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::MoveNext()
  12088. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m077EB695246A23D23A6633015B7F2233C5D370C0_gshared (WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328* __this, const RuntimeMethod* method)
  12089. {
  12090. int32_t V_0 = 0;
  12091. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  12092. memset((&V_1), 0, sizeof(V_1));
  12093. {
  12094. int32_t L_0 = (int32_t)((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1;
  12095. V_0 = L_0;
  12096. int32_t L_1 = V_0;
  12097. if ((((int32_t)L_1) == ((int32_t)1)))
  12098. {
  12099. goto IL_0011;
  12100. }
  12101. }
  12102. {
  12103. int32_t L_2 = V_0;
  12104. if ((((int32_t)L_2) == ((int32_t)2)))
  12105. {
  12106. goto IL_0061;
  12107. }
  12108. }
  12109. {
  12110. goto IL_0074;
  12111. }
  12112. IL_0011:
  12113. {
  12114. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12115. NullCheck(L_3);
  12116. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  12117. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  12118. __this->___enumerator_6 = L_4;
  12119. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  12120. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12121. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  12122. #endif
  12123. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12124. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  12125. #endif
  12126. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___state_1 = 2;
  12127. goto IL_0061;
  12128. }
  12129. IL_002b:
  12130. {
  12131. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12132. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  12133. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  12134. V_1 = L_6;
  12135. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12136. if (!L_7)
  12137. {
  12138. goto IL_004d;
  12139. }
  12140. }
  12141. {
  12142. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12143. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  12144. NullCheck(L_8);
  12145. bool L_10;
  12146. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  12147. if (!L_10)
  12148. {
  12149. goto IL_0061;
  12150. }
  12151. }
  12152. IL_004d:
  12153. {
  12154. Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C* L_11 = (Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*)__this->___selector_5;
  12155. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  12156. NullCheck(L_11);
  12157. Il2CppChar L_13;
  12158. L_13 = (( Il2CppChar (*) (Func_2_t03FEFF7E970434A482A3A0FC41B48727066FB15C*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  12159. ((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this)->___current_2 = L_13;
  12160. return (bool)1;
  12161. }
  12162. IL_0061:
  12163. {
  12164. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12165. bool L_15;
  12166. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  12167. if (L_15)
  12168. {
  12169. goto IL_002b;
  12170. }
  12171. }
  12172. {
  12173. NullCheck((Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  12174. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Char>::Dispose() */, (Iterator_1_t756980BB26313AF5460A06A98D0851103A2124DA*)__this);
  12175. }
  12176. IL_0074:
  12177. {
  12178. return (bool)0;
  12179. }
  12180. }
  12181. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Char>::Where(System.Func`2<TResult,System.Boolean>)
  12182. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mA7B3EDAD6F79A71054BF595C57523444AB9FC3C9_gshared (WhereSelectListIterator_2_tF187F3AE4FB844BD9CE09CF093CFE09069760328* __this, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___0_predicate, const RuntimeMethod* method)
  12183. {
  12184. {
  12185. Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_0 = ___0_predicate;
  12186. WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039* L_1 = (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  12187. NullCheck(L_1);
  12188. (( void (*) (WhereEnumerableIterator_1_t20B89774AB79C9B874E82320ED6A20F15673F039*, RuntimeObject*, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  12189. return (RuntimeObject*)L_1;
  12190. }
  12191. }
  12192. #ifdef __clang__
  12193. #pragma clang diagnostic pop
  12194. #endif
  12195. #ifdef __clang__
  12196. #pragma clang diagnostic push
  12197. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12198. #pragma clang diagnostic ignored "-Wunused-variable"
  12199. #endif
  12200. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  12201. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mB0B4AC763B6D29893062924D19BD2DBEC2E772A8_gshared (WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* ___2_selector, const RuntimeMethod* method)
  12202. {
  12203. {
  12204. (( void (*) (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  12205. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  12206. __this->___source_3 = L_0;
  12207. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  12208. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  12209. __this->___predicate_4 = L_1;
  12210. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  12211. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* L_2 = ___2_selector;
  12212. __this->___selector_5 = L_2;
  12213. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  12214. return;
  12215. }
  12216. }
  12217. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::Clone()
  12218. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE* WhereSelectListIterator_2_Clone_mFC7E480FDC744D6D3F3BE152C118624577825548_gshared (WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC* __this, const RuntimeMethod* method)
  12219. {
  12220. {
  12221. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12222. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12223. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* L_2 = (Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*)__this->___selector_5;
  12224. WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC* L_3 = (WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  12225. NullCheck(L_3);
  12226. (( void (*) (WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  12227. return (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)L_3;
  12228. }
  12229. }
  12230. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::MoveNext()
  12231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mA9D0FC941C29D4A1C5F1BC5DF1E5CB5E96972D7E_gshared (WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC* __this, const RuntimeMethod* method)
  12232. {
  12233. int32_t V_0 = 0;
  12234. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  12235. memset((&V_1), 0, sizeof(V_1));
  12236. {
  12237. int32_t L_0 = (int32_t)((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1;
  12238. V_0 = L_0;
  12239. int32_t L_1 = V_0;
  12240. if ((((int32_t)L_1) == ((int32_t)1)))
  12241. {
  12242. goto IL_0011;
  12243. }
  12244. }
  12245. {
  12246. int32_t L_2 = V_0;
  12247. if ((((int32_t)L_2) == ((int32_t)2)))
  12248. {
  12249. goto IL_0061;
  12250. }
  12251. }
  12252. {
  12253. goto IL_0074;
  12254. }
  12255. IL_0011:
  12256. {
  12257. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12258. NullCheck(L_3);
  12259. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  12260. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  12261. __this->___enumerator_6 = L_4;
  12262. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  12263. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12264. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  12265. #endif
  12266. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12267. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  12268. #endif
  12269. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___state_1 = 2;
  12270. goto IL_0061;
  12271. }
  12272. IL_002b:
  12273. {
  12274. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12275. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  12276. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  12277. V_1 = L_6;
  12278. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12279. if (!L_7)
  12280. {
  12281. goto IL_004d;
  12282. }
  12283. }
  12284. {
  12285. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12286. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  12287. NullCheck(L_8);
  12288. bool L_10;
  12289. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  12290. if (!L_10)
  12291. {
  12292. goto IL_0061;
  12293. }
  12294. }
  12295. IL_004d:
  12296. {
  12297. Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844* L_11 = (Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*)__this->___selector_5;
  12298. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  12299. NullCheck(L_11);
  12300. Guid_t L_13;
  12301. L_13 = (( Guid_t (*) (Func_2_t77FA9C1683C0E1C9EAB1F170DF3C99ACB681C844*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  12302. ((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this)->___current_2 = L_13;
  12303. return (bool)1;
  12304. }
  12305. IL_0061:
  12306. {
  12307. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12308. bool L_15;
  12309. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  12310. if (L_15)
  12311. {
  12312. goto IL_002b;
  12313. }
  12314. }
  12315. {
  12316. NullCheck((Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  12317. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Guid>::Dispose() */, (Iterator_1_t698E9A52BE7A04F7989EF69884FF7EE820992FEE*)__this);
  12318. }
  12319. IL_0074:
  12320. {
  12321. return (bool)0;
  12322. }
  12323. }
  12324. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Guid>::Where(System.Func`2<TResult,System.Boolean>)
  12325. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m104B437D34B7407F1BD245BDD845E812DAD40B15_gshared (WhereSelectListIterator_2_t2EB837695B7D069AF34EA97F9E715D981199F4FC* __this, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* ___0_predicate, const RuntimeMethod* method)
  12326. {
  12327. {
  12328. Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA* L_0 = ___0_predicate;
  12329. WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D* L_1 = (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  12330. NullCheck(L_1);
  12331. (( void (*) (WhereEnumerableIterator_1_tD9B3677A96A5B0AD1FA4479CEA26880403A92E6D*, RuntimeObject*, Func_2_t751E090C9CCEDFE7DACDE13E290E3110D3EE28AA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  12332. return (RuntimeObject*)L_1;
  12333. }
  12334. }
  12335. #ifdef __clang__
  12336. #pragma clang diagnostic pop
  12337. #endif
  12338. #ifdef __clang__
  12339. #pragma clang diagnostic push
  12340. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12341. #pragma clang diagnostic ignored "-Wunused-variable"
  12342. #endif
  12343. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  12344. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m15AA54F3B60B64CEFB048CD88E3A1BD06AC2C62E_gshared (WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* ___2_selector, const RuntimeMethod* method)
  12345. {
  12346. {
  12347. (( void (*) (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  12348. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  12349. __this->___source_3 = L_0;
  12350. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  12351. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  12352. __this->___predicate_4 = L_1;
  12353. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  12354. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* L_2 = ___2_selector;
  12355. __this->___selector_5 = L_2;
  12356. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  12357. return;
  12358. }
  12359. }
  12360. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::Clone()
  12361. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA* WhereSelectListIterator_2_Clone_m6D285DDC28CFAF8BDCF8C2ED06F9982D33D0342A_gshared (WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989* __this, const RuntimeMethod* method)
  12362. {
  12363. {
  12364. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12365. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12366. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* L_2 = (Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*)__this->___selector_5;
  12367. WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989* L_3 = (WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  12368. NullCheck(L_3);
  12369. (( void (*) (WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  12370. return (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)L_3;
  12371. }
  12372. }
  12373. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::MoveNext()
  12374. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m9DBE2E1EDA00E9EBE1A6E90D5DA81A39E1CEBF37_gshared (WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989* __this, const RuntimeMethod* method)
  12375. {
  12376. int32_t V_0 = 0;
  12377. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  12378. memset((&V_1), 0, sizeof(V_1));
  12379. {
  12380. int32_t L_0 = (int32_t)((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1;
  12381. V_0 = L_0;
  12382. int32_t L_1 = V_0;
  12383. if ((((int32_t)L_1) == ((int32_t)1)))
  12384. {
  12385. goto IL_0011;
  12386. }
  12387. }
  12388. {
  12389. int32_t L_2 = V_0;
  12390. if ((((int32_t)L_2) == ((int32_t)2)))
  12391. {
  12392. goto IL_0061;
  12393. }
  12394. }
  12395. {
  12396. goto IL_0074;
  12397. }
  12398. IL_0011:
  12399. {
  12400. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12401. NullCheck(L_3);
  12402. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  12403. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  12404. __this->___enumerator_6 = L_4;
  12405. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  12406. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12407. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  12408. #endif
  12409. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12410. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  12411. #endif
  12412. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___state_1 = 2;
  12413. goto IL_0061;
  12414. }
  12415. IL_002b:
  12416. {
  12417. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12418. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  12419. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  12420. V_1 = L_6;
  12421. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12422. if (!L_7)
  12423. {
  12424. goto IL_004d;
  12425. }
  12426. }
  12427. {
  12428. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12429. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  12430. NullCheck(L_8);
  12431. bool L_10;
  12432. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  12433. if (!L_10)
  12434. {
  12435. goto IL_0061;
  12436. }
  12437. }
  12438. IL_004d:
  12439. {
  12440. Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD* L_11 = (Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*)__this->___selector_5;
  12441. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  12442. NullCheck(L_11);
  12443. RuntimeObject* L_13;
  12444. L_13 = (( RuntimeObject* (*) (Func_2_tFD36EA818BBCBD1EDE1E1540FC3EF156A6ADCCAD*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  12445. ((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2 = L_13;
  12446. Il2CppCodeGenWriteBarrier((void**)(&((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this)->___current_2), (void*)L_13);
  12447. return (bool)1;
  12448. }
  12449. IL_0061:
  12450. {
  12451. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12452. bool L_15;
  12453. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  12454. if (L_15)
  12455. {
  12456. goto IL_002b;
  12457. }
  12458. }
  12459. {
  12460. NullCheck((Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  12461. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Object>::Dispose() */, (Iterator_1_t99A1802EE86A3D5BF71B2DDB37F159C4AFA448EA*)__this);
  12462. }
  12463. IL_0074:
  12464. {
  12465. return (bool)0;
  12466. }
  12467. }
  12468. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Object>::Where(System.Func`2<TResult,System.Boolean>)
  12469. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mE0E3E8BE8176B317F5FF0D03313F7D4DFE68681E_gshared (WhereSelectListIterator_2_t60681EEE1A6CB8E9C8EE807AA2E2BDA68B9B6989* __this, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___0_predicate, const RuntimeMethod* method)
  12470. {
  12471. {
  12472. Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_0 = ___0_predicate;
  12473. WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4* L_1 = (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  12474. NullCheck(L_1);
  12475. (( void (*) (WhereEnumerableIterator_1_t1E787D13759F5A31C94B3FAED181402B25C278F4*, RuntimeObject*, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  12476. return (RuntimeObject*)L_1;
  12477. }
  12478. }
  12479. #ifdef __clang__
  12480. #pragma clang diagnostic pop
  12481. #endif
  12482. #ifdef __clang__
  12483. #pragma clang diagnostic push
  12484. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12485. #pragma clang diagnostic ignored "-Wunused-variable"
  12486. #endif
  12487. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  12488. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m76F902C34043369FDB8A537BDF0D659CCC5697A6_gshared (WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* ___2_selector, const RuntimeMethod* method)
  12489. {
  12490. {
  12491. (( void (*) (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  12492. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  12493. __this->___source_3 = L_0;
  12494. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  12495. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  12496. __this->___predicate_4 = L_1;
  12497. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  12498. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* L_2 = ___2_selector;
  12499. __this->___selector_5 = L_2;
  12500. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  12501. return;
  12502. }
  12503. }
  12504. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::Clone()
  12505. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E* WhereSelectListIterator_2_Clone_m2CA3D99FA9ADD7D33A0E32E7ABFE857D61CF43CC_gshared (WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D* __this, const RuntimeMethod* method)
  12506. {
  12507. {
  12508. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12509. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12510. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* L_2 = (Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*)__this->___selector_5;
  12511. WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D* L_3 = (WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  12512. NullCheck(L_3);
  12513. (( void (*) (WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  12514. return (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)L_3;
  12515. }
  12516. }
  12517. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::MoveNext()
  12518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m736FB80CEB54C0ACCF7FFCE2824FB9B9AFAA43A7_gshared (WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D* __this, const RuntimeMethod* method)
  12519. {
  12520. int32_t V_0 = 0;
  12521. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  12522. memset((&V_1), 0, sizeof(V_1));
  12523. {
  12524. int32_t L_0 = (int32_t)((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1;
  12525. V_0 = L_0;
  12526. int32_t L_1 = V_0;
  12527. if ((((int32_t)L_1) == ((int32_t)1)))
  12528. {
  12529. goto IL_0011;
  12530. }
  12531. }
  12532. {
  12533. int32_t L_2 = V_0;
  12534. if ((((int32_t)L_2) == ((int32_t)2)))
  12535. {
  12536. goto IL_0061;
  12537. }
  12538. }
  12539. {
  12540. goto IL_0074;
  12541. }
  12542. IL_0011:
  12543. {
  12544. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12545. NullCheck(L_3);
  12546. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  12547. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  12548. __this->___enumerator_6 = L_4;
  12549. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  12550. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12551. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  12552. #endif
  12553. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12554. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  12555. #endif
  12556. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___state_1 = 2;
  12557. goto IL_0061;
  12558. }
  12559. IL_002b:
  12560. {
  12561. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12562. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  12563. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  12564. V_1 = L_6;
  12565. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12566. if (!L_7)
  12567. {
  12568. goto IL_004d;
  12569. }
  12570. }
  12571. {
  12572. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12573. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  12574. NullCheck(L_8);
  12575. bool L_10;
  12576. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  12577. if (!L_10)
  12578. {
  12579. goto IL_0061;
  12580. }
  12581. }
  12582. IL_004d:
  12583. {
  12584. Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D* L_11 = (Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*)__this->___selector_5;
  12585. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  12586. NullCheck(L_11);
  12587. float L_13;
  12588. L_13 = (( float (*) (Func_2_t1DF9A6EF4754198AEEA5C4062DCC2D163ACDDA9D*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  12589. ((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this)->___current_2 = L_13;
  12590. return (bool)1;
  12591. }
  12592. IL_0061:
  12593. {
  12594. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12595. bool L_15;
  12596. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  12597. if (L_15)
  12598. {
  12599. goto IL_002b;
  12600. }
  12601. }
  12602. {
  12603. NullCheck((Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  12604. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<System.Single>::Dispose() */, (Iterator_1_t86D8BDE63EBFB97A0B7A8464AC2992725EE2281E*)__this);
  12605. }
  12606. IL_0074:
  12607. {
  12608. return (bool)0;
  12609. }
  12610. }
  12611. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,System.Single>::Where(System.Func`2<TResult,System.Boolean>)
  12612. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_mE2ED70B04431A5B2283DADDC7DEB37DCF1978676_gshared (WhereSelectListIterator_2_t5226C1D52FE78BEA0F91B9EEBBAA3092EE38AD0D* __this, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* ___0_predicate, const RuntimeMethod* method)
  12613. {
  12614. {
  12615. Func_2_t49E998685259ADE759F9329BF66F20DE8667006E* L_0 = ___0_predicate;
  12616. WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C* L_1 = (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  12617. NullCheck(L_1);
  12618. (( void (*) (WhereEnumerableIterator_1_t7BB2D1D9F8A6E52243A87F45DFEEA4209D685F7C*, RuntimeObject*, Func_2_t49E998685259ADE759F9329BF66F20DE8667006E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  12619. return (RuntimeObject*)L_1;
  12620. }
  12621. }
  12622. #ifdef __clang__
  12623. #pragma clang diagnostic pop
  12624. #endif
  12625. #ifdef __clang__
  12626. #pragma clang diagnostic push
  12627. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12628. #pragma clang diagnostic ignored "-Wunused-variable"
  12629. #endif
  12630. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  12631. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_mF81036FF4985B6E90BA6C1611373FA4231918626_gshared (WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* ___2_selector, const RuntimeMethod* method)
  12632. {
  12633. {
  12634. (( void (*) (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  12635. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  12636. __this->___source_3 = L_0;
  12637. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  12638. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  12639. __this->___predicate_4 = L_1;
  12640. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  12641. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* L_2 = ___2_selector;
  12642. __this->___selector_5 = L_2;
  12643. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  12644. return;
  12645. }
  12646. }
  12647. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::Clone()
  12648. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC* WhereSelectListIterator_2_Clone_m0949490C9D827E29B3A6CC01DDD21A4C1FC6C506_gshared (WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452* __this, const RuntimeMethod* method)
  12649. {
  12650. {
  12651. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12652. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12653. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* L_2 = (Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*)__this->___selector_5;
  12654. WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452* L_3 = (WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  12655. NullCheck(L_3);
  12656. (( void (*) (WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  12657. return (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)L_3;
  12658. }
  12659. }
  12660. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::MoveNext()
  12661. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m92D92E8CA39317AC8CD954D39380BE93DD66555B_gshared (WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452* __this, const RuntimeMethod* method)
  12662. {
  12663. int32_t V_0 = 0;
  12664. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  12665. memset((&V_1), 0, sizeof(V_1));
  12666. {
  12667. int32_t L_0 = (int32_t)((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1;
  12668. V_0 = L_0;
  12669. int32_t L_1 = V_0;
  12670. if ((((int32_t)L_1) == ((int32_t)1)))
  12671. {
  12672. goto IL_0011;
  12673. }
  12674. }
  12675. {
  12676. int32_t L_2 = V_0;
  12677. if ((((int32_t)L_2) == ((int32_t)2)))
  12678. {
  12679. goto IL_0061;
  12680. }
  12681. }
  12682. {
  12683. goto IL_0074;
  12684. }
  12685. IL_0011:
  12686. {
  12687. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12688. NullCheck(L_3);
  12689. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  12690. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  12691. __this->___enumerator_6 = L_4;
  12692. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  12693. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12694. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  12695. #endif
  12696. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12697. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  12698. #endif
  12699. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___state_1 = 2;
  12700. goto IL_0061;
  12701. }
  12702. IL_002b:
  12703. {
  12704. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12705. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  12706. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  12707. V_1 = L_6;
  12708. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12709. if (!L_7)
  12710. {
  12711. goto IL_004d;
  12712. }
  12713. }
  12714. {
  12715. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12716. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  12717. NullCheck(L_8);
  12718. bool L_10;
  12719. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  12720. if (!L_10)
  12721. {
  12722. goto IL_0061;
  12723. }
  12724. }
  12725. IL_004d:
  12726. {
  12727. Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E* L_11 = (Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*)__this->___selector_5;
  12728. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  12729. NullCheck(L_11);
  12730. Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
  12731. L_13 = (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (Func_2_tE58FFCA3E7D1699580A0C27FAFD702E828AC651E*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  12732. ((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this)->___current_2 = L_13;
  12733. return (bool)1;
  12734. }
  12735. IL_0061:
  12736. {
  12737. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12738. bool L_15;
  12739. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  12740. if (L_15)
  12741. {
  12742. goto IL_002b;
  12743. }
  12744. }
  12745. {
  12746. NullCheck((Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  12747. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector2>::Dispose() */, (Iterator_1_t286A5984AB0A75DF6F4FC3930A2916F5121B8CDC*)__this);
  12748. }
  12749. IL_0074:
  12750. {
  12751. return (bool)0;
  12752. }
  12753. }
  12754. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector2>::Where(System.Func`2<TResult,System.Boolean>)
  12755. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m41AECB6C7F2D1925AD639DE964BF5C96C4171FB9_gshared (WhereSelectListIterator_2_t87AD7612E82A4062BBF65D4AEF211245C8A02452* __this, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* ___0_predicate, const RuntimeMethod* method)
  12756. {
  12757. {
  12758. Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9* L_0 = ___0_predicate;
  12759. WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75* L_1 = (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  12760. NullCheck(L_1);
  12761. (( void (*) (WhereEnumerableIterator_1_tDEC92F40E12E823CE91376592982B11882F62C75*, RuntimeObject*, Func_2_t8B45F86AD27A9D8326FA522C45CA74669CD4CDF9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  12762. return (RuntimeObject*)L_1;
  12763. }
  12764. }
  12765. #ifdef __clang__
  12766. #pragma clang diagnostic pop
  12767. #endif
  12768. #ifdef __clang__
  12769. #pragma clang diagnostic push
  12770. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12771. #pragma clang diagnostic ignored "-Wunused-variable"
  12772. #endif
  12773. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  12774. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m10952410A7A2ACE220840ED727010AA138F4E0E1_gshared (WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* ___2_selector, const RuntimeMethod* method)
  12775. {
  12776. {
  12777. (( void (*) (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  12778. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  12779. __this->___source_3 = L_0;
  12780. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  12781. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  12782. __this->___predicate_4 = L_1;
  12783. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  12784. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* L_2 = ___2_selector;
  12785. __this->___selector_5 = L_2;
  12786. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  12787. return;
  12788. }
  12789. }
  12790. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::Clone()
  12791. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E* WhereSelectListIterator_2_Clone_m64E6D6D645541B0AB778F57311BD67F05DAC1671_gshared (WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD* __this, const RuntimeMethod* method)
  12792. {
  12793. {
  12794. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12795. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12796. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* L_2 = (Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*)__this->___selector_5;
  12797. WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD* L_3 = (WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  12798. NullCheck(L_3);
  12799. (( void (*) (WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  12800. return (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)L_3;
  12801. }
  12802. }
  12803. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::MoveNext()
  12804. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_m78A7C2E85589FAEA2AFC9410337553603D5C90E1_gshared (WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD* __this, const RuntimeMethod* method)
  12805. {
  12806. int32_t V_0 = 0;
  12807. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  12808. memset((&V_1), 0, sizeof(V_1));
  12809. {
  12810. int32_t L_0 = (int32_t)((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1;
  12811. V_0 = L_0;
  12812. int32_t L_1 = V_0;
  12813. if ((((int32_t)L_1) == ((int32_t)1)))
  12814. {
  12815. goto IL_0011;
  12816. }
  12817. }
  12818. {
  12819. int32_t L_2 = V_0;
  12820. if ((((int32_t)L_2) == ((int32_t)2)))
  12821. {
  12822. goto IL_0061;
  12823. }
  12824. }
  12825. {
  12826. goto IL_0074;
  12827. }
  12828. IL_0011:
  12829. {
  12830. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12831. NullCheck(L_3);
  12832. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  12833. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  12834. __this->___enumerator_6 = L_4;
  12835. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  12836. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12837. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  12838. #endif
  12839. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12840. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  12841. #endif
  12842. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___state_1 = 2;
  12843. goto IL_0061;
  12844. }
  12845. IL_002b:
  12846. {
  12847. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12848. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  12849. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  12850. V_1 = L_6;
  12851. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12852. if (!L_7)
  12853. {
  12854. goto IL_004d;
  12855. }
  12856. }
  12857. {
  12858. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12859. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  12860. NullCheck(L_8);
  12861. bool L_10;
  12862. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  12863. if (!L_10)
  12864. {
  12865. goto IL_0061;
  12866. }
  12867. }
  12868. IL_004d:
  12869. {
  12870. Func_2_t208A44437DC9E09577E7BBCC73E296265723730A* L_11 = (Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*)__this->___selector_5;
  12871. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  12872. NullCheck(L_11);
  12873. Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
  12874. L_13 = (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (Func_2_t208A44437DC9E09577E7BBCC73E296265723730A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  12875. ((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this)->___current_2 = L_13;
  12876. return (bool)1;
  12877. }
  12878. IL_0061:
  12879. {
  12880. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12881. bool L_15;
  12882. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  12883. if (L_15)
  12884. {
  12885. goto IL_002b;
  12886. }
  12887. }
  12888. {
  12889. NullCheck((Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  12890. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector3>::Dispose() */, (Iterator_1_t8605CB36C9ABA644008D4686FEF6839E9B56FB6E*)__this);
  12891. }
  12892. IL_0074:
  12893. {
  12894. return (bool)0;
  12895. }
  12896. }
  12897. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector3>::Where(System.Func`2<TResult,System.Boolean>)
  12898. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m62C08DC180156E775A62FE59AC727FEAA0B39EBA_gshared (WhereSelectListIterator_2_t6883B5D59E258B59317BFE9FB7405235985546FD* __this, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* ___0_predicate, const RuntimeMethod* method)
  12899. {
  12900. {
  12901. Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E* L_0 = ___0_predicate;
  12902. WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E* L_1 = (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  12903. NullCheck(L_1);
  12904. (( void (*) (WhereEnumerableIterator_1_t1177CABA2EF83006A1BE480BE243A927AB4BC42E*, RuntimeObject*, Func_2_t69265D7FBC2C3636F8EC4F844AE44F2CA605B56E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  12905. return (RuntimeObject*)L_1;
  12906. }
  12907. }
  12908. #ifdef __clang__
  12909. #pragma clang diagnostic pop
  12910. #endif
  12911. #ifdef __clang__
  12912. #pragma clang diagnostic push
  12913. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  12914. #pragma clang diagnostic ignored "-Wunused-variable"
  12915. #endif
  12916. // System.Void System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::.ctor(System.Collections.Generic.List`1<TSource>,System.Func`2<TSource,System.Boolean>,System.Func`2<TSource,TResult>)
  12917. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WhereSelectListIterator_2__ctor_m404E469B7201D233DE7B676D6197E9FF20C72FF3_gshared (WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B* __this, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* ___0_source, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* ___1_predicate, Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* ___2_selector, const RuntimeMethod* method)
  12918. {
  12919. {
  12920. (( void (*) (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
  12921. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = ___0_source;
  12922. __this->___source_3 = L_0;
  12923. Il2CppCodeGenWriteBarrier((void**)(&__this->___source_3), (void*)L_0);
  12924. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = ___1_predicate;
  12925. __this->___predicate_4 = L_1;
  12926. Il2CppCodeGenWriteBarrier((void**)(&__this->___predicate_4), (void*)L_1);
  12927. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_2 = ___2_selector;
  12928. __this->___selector_5 = L_2;
  12929. Il2CppCodeGenWriteBarrier((void**)(&__this->___selector_5), (void*)L_2);
  12930. return;
  12931. }
  12932. }
  12933. // System.Linq.Enumerable/Iterator`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::Clone()
  12934. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E* WhereSelectListIterator_2_Clone_mD0D731444BFBE16EF0870018364C767EBDA27166_gshared (WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B* __this, const RuntimeMethod* method)
  12935. {
  12936. {
  12937. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_0 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12938. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_1 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12939. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_2 = (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*)__this->___selector_5;
  12940. WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B* L_3 = (WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
  12941. NullCheck(L_3);
  12942. (( void (*) (WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B*, List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_3, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
  12943. return (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)L_3;
  12944. }
  12945. }
  12946. // System.Boolean System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::MoveNext()
  12947. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WhereSelectListIterator_2_MoveNext_mDDFC8CA3E430083D2F94B360321A5E3454DDB7CB_gshared (WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B* __this, const RuntimeMethod* method)
  12948. {
  12949. int32_t V_0 = 0;
  12950. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
  12951. memset((&V_1), 0, sizeof(V_1));
  12952. {
  12953. int32_t L_0 = (int32_t)((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1;
  12954. V_0 = L_0;
  12955. int32_t L_1 = V_0;
  12956. if ((((int32_t)L_1) == ((int32_t)1)))
  12957. {
  12958. goto IL_0011;
  12959. }
  12960. }
  12961. {
  12962. int32_t L_2 = V_0;
  12963. if ((((int32_t)L_2) == ((int32_t)2)))
  12964. {
  12965. goto IL_0061;
  12966. }
  12967. }
  12968. {
  12969. goto IL_0074;
  12970. }
  12971. IL_0011:
  12972. {
  12973. List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF* L_3 = (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*)__this->___source_3;
  12974. NullCheck(L_3);
  12975. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F L_4;
  12976. L_4 = (( Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F (*) (List_1_t85FF16594D5F70EECC5855882558F8E26EF6BAFF*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
  12977. __this->___enumerator_6 = L_4;
  12978. Il2CppCodeGenWriteBarrier((void**)&(((&__this->___enumerator_6))->____list_0), (void*)NULL);
  12979. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12980. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___m_Value_0), (void*)NULL);
  12981. #endif
  12982. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  12983. Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___enumerator_6))->____current_3))->___tempData_2), (void*)NULL);
  12984. #endif
  12985. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___state_1 = 2;
  12986. goto IL_0061;
  12987. }
  12988. IL_002b:
  12989. {
  12990. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_5 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  12991. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_6;
  12992. L_6 = Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_inline(L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
  12993. V_1 = L_6;
  12994. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_7 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  12995. if (!L_7)
  12996. {
  12997. goto IL_004d;
  12998. }
  12999. }
  13000. {
  13001. Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A* L_8 = (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*)__this->___predicate_4;
  13002. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_9 = V_1;
  13003. NullCheck(L_8);
  13004. bool L_10;
  13005. L_10 = (( bool (*) (Func_2_t7E7216694EE7A991563EC30D68D86C597BF2A56A*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)))(L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
  13006. if (!L_10)
  13007. {
  13008. goto IL_0061;
  13009. }
  13010. }
  13011. IL_004d:
  13012. {
  13013. Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40* L_11 = (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*)__this->___selector_5;
  13014. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_12 = V_1;
  13015. NullCheck(L_11);
  13016. Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13;
  13017. L_13 = (( Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 (*) (Func_2_t264165A1230ACB392CC4F13E8C39F1A315308B40*, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
  13018. ((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this)->___current_2 = L_13;
  13019. return (bool)1;
  13020. }
  13021. IL_0061:
  13022. {
  13023. Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* L_14 = (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F*)(&__this->___enumerator_6);
  13024. bool L_15;
  13025. L_15 = Enumerator_MoveNext_m6A369A40774C06803D46E3D1DBA2874ECFF63E9E(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  13026. if (L_15)
  13027. {
  13028. goto IL_002b;
  13029. }
  13030. }
  13031. {
  13032. NullCheck((Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  13033. VirtualActionInvoker0::Invoke(12 /* System.Void System.Linq.Enumerable/Iterator`1<UnityEngine.Vector4>::Dispose() */, (Iterator_1_t336734ECDA49CADE59B5C4592466F45D9B9DC43E*)__this);
  13034. }
  13035. IL_0074:
  13036. {
  13037. return (bool)0;
  13038. }
  13039. }
  13040. // System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable/WhereSelectListIterator`2<UnityEngine.UIElements.StyleSelectorPart,UnityEngine.Vector4>::Where(System.Func`2<TResult,System.Boolean>)
  13041. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WhereSelectListIterator_2_Where_m26EB2F1AEDBB72656075A750BE1A27B11B0C0E1F_gshared (WhereSelectListIterator_2_t85FFC53584D855FF66ADBE91B3903B9A2A75118B* __this, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* ___0_predicate, const RuntimeMethod* method)
  13042. {
  13043. {
  13044. Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9* L_0 = ___0_predicate;
  13045. WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9* L_1 = (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 14));
  13046. NullCheck(L_1);
  13047. (( void (*) (WhereEnumerableIterator_1_tAC8B60D41773D33630A3A2B09BAAD1B4071F2AA9*, RuntimeObject*, Func_2_t6F0E9D3F3FD9400677A87178B87ABAE9E0497DA9*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 15)))(L_1, (RuntimeObject*)__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
  13048. return (RuntimeObject*)L_1;
  13049. }
  13050. }
  13051. #ifdef __clang__
  13052. #pragma clang diagnostic pop
  13053. #endif
  13054. #ifdef __clang__
  13055. #pragma clang diagnostic push
  13056. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13057. #pragma clang diagnostic ignored "-Wunused-variable"
  13058. #endif
  13059. // System.Type Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>::get_ModelType()
  13060. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* fsDirectConverter_1_get_ModelType_m66614734A851F69863F28F36CAE8C109DFE633A0_gshared (fsDirectConverter_1_tC2007A06B444810E5B41544B7B0FCE29128FBC50* __this, const RuntimeMethod* method)
  13061. {
  13062. static bool s_Il2CppMethodInitialized;
  13063. if (!s_Il2CppMethodInitialized)
  13064. {
  13065. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  13066. s_Il2CppMethodInitialized = true;
  13067. }
  13068. {
  13069. // public override Type ModelType => typeof(TModel);
  13070. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 0)) };
  13071. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  13072. Type_t* L_1;
  13073. L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
  13074. return L_1;
  13075. }
  13076. }
  13077. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>::TrySerialize(System.Object,Unity.VisualScripting.FullSerializer.fsData&,System.Type)
  13078. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TrySerialize_mD7FB6CCCB39160CC4D1837430E55165CA2686FE6_gshared (fsDirectConverter_1_tC2007A06B444810E5B41544B7B0FCE29128FBC50* __this, RuntimeObject* ___0_instance, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** ___1_serialized, Type_t* ___2_storageType, const RuntimeMethod* method)
  13079. {
  13080. static bool s_Il2CppMethodInitialized;
  13081. if (!s_Il2CppMethodInitialized)
  13082. {
  13083. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13084. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13085. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13086. s_Il2CppMethodInitialized = true;
  13087. }
  13088. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* V_0 = NULL;
  13089. {
  13090. // var serializedDictionary = new Dictionary<string, fsData>();
  13091. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_0 = (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*)il2cpp_codegen_object_new(Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13092. NullCheck(L_0);
  13093. Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04(L_0, Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13094. V_0 = L_0;
  13095. // var result = DoSerialize((TModel)instance, serializedDictionary);
  13096. RuntimeObject* L_1 = ___0_instance;
  13097. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_2 = V_0;
  13098. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13099. L_3 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* >::Invoke(10 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>::DoSerialize(TModel,System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>) */, __this, ((*(Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3*)((Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3*)(Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 1))))), L_2);
  13100. // serialized = new fsData(serializedDictionary);
  13101. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** L_4 = ___1_serialized;
  13102. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_5 = V_0;
  13103. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_6 = (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23*)il2cpp_codegen_object_new(fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13104. NullCheck(L_6);
  13105. fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781(L_6, L_5, NULL);
  13106. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  13107. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  13108. // return result;
  13109. return L_3;
  13110. }
  13111. }
  13112. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>::TryDeserialize(Unity.VisualScripting.FullSerializer.fsData,System.Object&,System.Type)
  13113. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TryDeserialize_m9DC7A75C5043D26A8B0F27C1EBF6414DB1F38947_gshared (fsDirectConverter_1_tC2007A06B444810E5B41544B7B0FCE29128FBC50* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, RuntimeObject** ___1_instance, Type_t* ___2_storageType, const RuntimeMethod* method)
  13114. {
  13115. static bool s_Il2CppMethodInitialized;
  13116. if (!s_Il2CppMethodInitialized)
  13117. {
  13118. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13119. s_Il2CppMethodInitialized = true;
  13120. }
  13121. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_0;
  13122. memset((&V_0), 0, sizeof(V_0));
  13123. Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 V_1;
  13124. memset((&V_1), 0, sizeof(V_1));
  13125. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_2;
  13126. memset((&V_2), 0, sizeof(V_2));
  13127. {
  13128. // var result = fsResult.Success;
  13129. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13130. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_0 = ((fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields*)il2cpp_codegen_static_fields_for(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var))->___Success_3;
  13131. V_0 = L_0;
  13132. // if ((result += CheckType(data, fsDataType.Object)).Failed)
  13133. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_1 = V_0;
  13134. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_2 = ___0_data;
  13135. NullCheck((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this);
  13136. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13137. L_3 = fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this, L_2, (int32_t)1, NULL);
  13138. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_4;
  13139. L_4 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_1, L_3, NULL);
  13140. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_5 = L_4;
  13141. V_0 = L_5;
  13142. V_2 = L_5;
  13143. bool L_6;
  13144. L_6 = fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB((&V_2), NULL);
  13145. if (!L_6)
  13146. {
  13147. goto IL_0022;
  13148. }
  13149. }
  13150. {
  13151. // return result;
  13152. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_7 = V_0;
  13153. return L_7;
  13154. }
  13155. IL_0022:
  13156. {
  13157. // var obj = (TModel)instance;
  13158. RuntimeObject** L_8 = ___1_instance;
  13159. RuntimeObject* L_9 = *((RuntimeObject**)L_8);
  13160. V_1 = ((*(Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3*)((Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3*)(Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3*)UnBox(L_9, il2cpp_rgctx_data(method->klass->rgctx_data, 1)))));
  13161. // result += DoDeserialize(data.AsDictionary, ref obj);
  13162. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_10 = V_0;
  13163. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_11 = ___0_data;
  13164. NullCheck(L_11);
  13165. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_12;
  13166. L_12 = fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86(L_11, NULL);
  13167. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_13;
  13168. L_13 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3* >::Invoke(11 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>::DoDeserialize(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>,TModel&) */, __this, L_12, (&V_1));
  13169. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13170. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_14;
  13171. L_14 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_10, L_13, NULL);
  13172. V_0 = L_14;
  13173. // instance = obj;
  13174. RuntimeObject** L_15 = ___1_instance;
  13175. Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 L_16 = V_1;
  13176. Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 L_17 = L_16;
  13177. RuntimeObject* L_18 = Box(il2cpp_rgctx_data(method->klass->rgctx_data, 1), &L_17);
  13178. *((RuntimeObject**)L_15) = (RuntimeObject*)L_18;
  13179. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_18);
  13180. // return result;
  13181. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_19 = V_0;
  13182. return L_19;
  13183. }
  13184. }
  13185. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Bounds>::.ctor()
  13186. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter_1__ctor_m469B29DA8E93A109CE1A84DEF411C216C2E91B3C_gshared (fsDirectConverter_1_tC2007A06B444810E5B41544B7B0FCE29128FBC50* __this, const RuntimeMethod* method)
  13187. {
  13188. {
  13189. fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1((fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668*)__this, NULL);
  13190. return;
  13191. }
  13192. }
  13193. #ifdef __clang__
  13194. #pragma clang diagnostic pop
  13195. #endif
  13196. #ifdef __clang__
  13197. #pragma clang diagnostic push
  13198. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13199. #pragma clang diagnostic ignored "-Wunused-variable"
  13200. #endif
  13201. // System.Type Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>::get_ModelType()
  13202. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* fsDirectConverter_1_get_ModelType_m3B1D5B68B9A2AB907D286BB041E68825E23D338B_gshared (fsDirectConverter_1_t7705783FE5B6390E39DFB3F2457CD37A4912B76C* __this, const RuntimeMethod* method)
  13203. {
  13204. static bool s_Il2CppMethodInitialized;
  13205. if (!s_Il2CppMethodInitialized)
  13206. {
  13207. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  13208. s_Il2CppMethodInitialized = true;
  13209. }
  13210. {
  13211. // public override Type ModelType => typeof(TModel);
  13212. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 0)) };
  13213. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  13214. Type_t* L_1;
  13215. L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
  13216. return L_1;
  13217. }
  13218. }
  13219. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>::TrySerialize(System.Object,Unity.VisualScripting.FullSerializer.fsData&,System.Type)
  13220. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TrySerialize_m228B3D61FB850893564D237F0F16E30BBD9B6B04_gshared (fsDirectConverter_1_t7705783FE5B6390E39DFB3F2457CD37A4912B76C* __this, RuntimeObject* ___0_instance, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** ___1_serialized, Type_t* ___2_storageType, const RuntimeMethod* method)
  13221. {
  13222. static bool s_Il2CppMethodInitialized;
  13223. if (!s_Il2CppMethodInitialized)
  13224. {
  13225. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13226. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13227. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13228. s_Il2CppMethodInitialized = true;
  13229. }
  13230. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* V_0 = NULL;
  13231. {
  13232. // var serializedDictionary = new Dictionary<string, fsData>();
  13233. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_0 = (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*)il2cpp_codegen_object_new(Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13234. NullCheck(L_0);
  13235. Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04(L_0, Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13236. V_0 = L_0;
  13237. // var result = DoSerialize((TModel)instance, serializedDictionary);
  13238. RuntimeObject* L_1 = ___0_instance;
  13239. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_2 = V_0;
  13240. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13241. L_3 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* >::Invoke(10 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>::DoSerialize(TModel,System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>) */, __this, ((*(Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0*)((Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0*)(Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 1))))), L_2);
  13242. // serialized = new fsData(serializedDictionary);
  13243. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** L_4 = ___1_serialized;
  13244. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_5 = V_0;
  13245. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_6 = (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23*)il2cpp_codegen_object_new(fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13246. NullCheck(L_6);
  13247. fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781(L_6, L_5, NULL);
  13248. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  13249. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  13250. // return result;
  13251. return L_3;
  13252. }
  13253. }
  13254. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>::TryDeserialize(Unity.VisualScripting.FullSerializer.fsData,System.Object&,System.Type)
  13255. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TryDeserialize_mDDCD92619631E9ED6DE40EDE7B2E4E0A586513DA_gshared (fsDirectConverter_1_t7705783FE5B6390E39DFB3F2457CD37A4912B76C* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, RuntimeObject** ___1_instance, Type_t* ___2_storageType, const RuntimeMethod* method)
  13256. {
  13257. static bool s_Il2CppMethodInitialized;
  13258. if (!s_Il2CppMethodInitialized)
  13259. {
  13260. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13261. s_Il2CppMethodInitialized = true;
  13262. }
  13263. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_0;
  13264. memset((&V_0), 0, sizeof(V_0));
  13265. Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0 V_1;
  13266. memset((&V_1), 0, sizeof(V_1));
  13267. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_2;
  13268. memset((&V_2), 0, sizeof(V_2));
  13269. {
  13270. // var result = fsResult.Success;
  13271. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13272. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_0 = ((fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields*)il2cpp_codegen_static_fields_for(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var))->___Success_3;
  13273. V_0 = L_0;
  13274. // if ((result += CheckType(data, fsDataType.Object)).Failed)
  13275. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_1 = V_0;
  13276. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_2 = ___0_data;
  13277. NullCheck((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this);
  13278. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13279. L_3 = fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this, L_2, (int32_t)1, NULL);
  13280. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_4;
  13281. L_4 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_1, L_3, NULL);
  13282. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_5 = L_4;
  13283. V_0 = L_5;
  13284. V_2 = L_5;
  13285. bool L_6;
  13286. L_6 = fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB((&V_2), NULL);
  13287. if (!L_6)
  13288. {
  13289. goto IL_0022;
  13290. }
  13291. }
  13292. {
  13293. // return result;
  13294. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_7 = V_0;
  13295. return L_7;
  13296. }
  13297. IL_0022:
  13298. {
  13299. // var obj = (TModel)instance;
  13300. RuntimeObject** L_8 = ___1_instance;
  13301. RuntimeObject* L_9 = *((RuntimeObject**)L_8);
  13302. V_1 = ((*(Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0*)((Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0*)(Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0*)UnBox(L_9, il2cpp_rgctx_data(method->klass->rgctx_data, 1)))));
  13303. // result += DoDeserialize(data.AsDictionary, ref obj);
  13304. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_10 = V_0;
  13305. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_11 = ___0_data;
  13306. NullCheck(L_11);
  13307. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_12;
  13308. L_12 = fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86(L_11, NULL);
  13309. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_13;
  13310. L_13 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0* >::Invoke(11 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>::DoDeserialize(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>,TModel&) */, __this, L_12, (&V_1));
  13311. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13312. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_14;
  13313. L_14 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_10, L_13, NULL);
  13314. V_0 = L_14;
  13315. // instance = obj;
  13316. RuntimeObject** L_15 = ___1_instance;
  13317. Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0 L_16 = V_1;
  13318. Keyframe_tB9C67DCBFE10C0AE9C52CB5C66E944255C9254F0 L_17 = L_16;
  13319. RuntimeObject* L_18 = Box(il2cpp_rgctx_data(method->klass->rgctx_data, 1), &L_17);
  13320. *((RuntimeObject**)L_15) = (RuntimeObject*)L_18;
  13321. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_18);
  13322. // return result;
  13323. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_19 = V_0;
  13324. return L_19;
  13325. }
  13326. }
  13327. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Keyframe>::.ctor()
  13328. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter_1__ctor_m67B64763A70B6CFF7BC8E207844892AFCCFA9B72_gshared (fsDirectConverter_1_t7705783FE5B6390E39DFB3F2457CD37A4912B76C* __this, const RuntimeMethod* method)
  13329. {
  13330. {
  13331. fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1((fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668*)__this, NULL);
  13332. return;
  13333. }
  13334. }
  13335. #ifdef __clang__
  13336. #pragma clang diagnostic pop
  13337. #endif
  13338. #ifdef __clang__
  13339. #pragma clang diagnostic push
  13340. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13341. #pragma clang diagnostic ignored "-Wunused-variable"
  13342. #endif
  13343. // System.Type Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>::get_ModelType()
  13344. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* fsDirectConverter_1_get_ModelType_m9F76A8BA82C3043DFB71DA4C07A250F84CDB0184_gshared (fsDirectConverter_1_t4AB706B5DC3FF2BB1AEAD2A78015FD3548436108* __this, const RuntimeMethod* method)
  13345. {
  13346. static bool s_Il2CppMethodInitialized;
  13347. if (!s_Il2CppMethodInitialized)
  13348. {
  13349. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  13350. s_Il2CppMethodInitialized = true;
  13351. }
  13352. {
  13353. // public override Type ModelType => typeof(TModel);
  13354. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 0)) };
  13355. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  13356. Type_t* L_1;
  13357. L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
  13358. return L_1;
  13359. }
  13360. }
  13361. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>::TrySerialize(System.Object,Unity.VisualScripting.FullSerializer.fsData&,System.Type)
  13362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TrySerialize_m641FFE348BDF3531BF6BDBDD22704DE53ED14F4A_gshared (fsDirectConverter_1_t4AB706B5DC3FF2BB1AEAD2A78015FD3548436108* __this, RuntimeObject* ___0_instance, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** ___1_serialized, Type_t* ___2_storageType, const RuntimeMethod* method)
  13363. {
  13364. static bool s_Il2CppMethodInitialized;
  13365. if (!s_Il2CppMethodInitialized)
  13366. {
  13367. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13368. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13369. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13370. s_Il2CppMethodInitialized = true;
  13371. }
  13372. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* V_0 = NULL;
  13373. {
  13374. // var serializedDictionary = new Dictionary<string, fsData>();
  13375. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_0 = (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*)il2cpp_codegen_object_new(Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13376. NullCheck(L_0);
  13377. Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04(L_0, Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13378. V_0 = L_0;
  13379. // var result = DoSerialize((TModel)instance, serializedDictionary);
  13380. RuntimeObject* L_1 = ___0_instance;
  13381. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_2 = V_0;
  13382. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13383. L_3 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* >::Invoke(10 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>::DoSerialize(TModel,System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>) */, __this, ((*(LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB*)((LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB*)(LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 1))))), L_2);
  13384. // serialized = new fsData(serializedDictionary);
  13385. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** L_4 = ___1_serialized;
  13386. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_5 = V_0;
  13387. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_6 = (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23*)il2cpp_codegen_object_new(fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13388. NullCheck(L_6);
  13389. fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781(L_6, L_5, NULL);
  13390. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  13391. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  13392. // return result;
  13393. return L_3;
  13394. }
  13395. }
  13396. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>::TryDeserialize(Unity.VisualScripting.FullSerializer.fsData,System.Object&,System.Type)
  13397. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TryDeserialize_mFFB6258A349189C4019C5E3C202AAFC7230C1BF9_gshared (fsDirectConverter_1_t4AB706B5DC3FF2BB1AEAD2A78015FD3548436108* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, RuntimeObject** ___1_instance, Type_t* ___2_storageType, const RuntimeMethod* method)
  13398. {
  13399. static bool s_Il2CppMethodInitialized;
  13400. if (!s_Il2CppMethodInitialized)
  13401. {
  13402. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13403. s_Il2CppMethodInitialized = true;
  13404. }
  13405. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_0;
  13406. memset((&V_0), 0, sizeof(V_0));
  13407. LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB V_1;
  13408. memset((&V_1), 0, sizeof(V_1));
  13409. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_2;
  13410. memset((&V_2), 0, sizeof(V_2));
  13411. {
  13412. // var result = fsResult.Success;
  13413. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13414. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_0 = ((fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields*)il2cpp_codegen_static_fields_for(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var))->___Success_3;
  13415. V_0 = L_0;
  13416. // if ((result += CheckType(data, fsDataType.Object)).Failed)
  13417. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_1 = V_0;
  13418. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_2 = ___0_data;
  13419. NullCheck((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this);
  13420. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13421. L_3 = fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this, L_2, (int32_t)1, NULL);
  13422. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_4;
  13423. L_4 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_1, L_3, NULL);
  13424. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_5 = L_4;
  13425. V_0 = L_5;
  13426. V_2 = L_5;
  13427. bool L_6;
  13428. L_6 = fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB((&V_2), NULL);
  13429. if (!L_6)
  13430. {
  13431. goto IL_0022;
  13432. }
  13433. }
  13434. {
  13435. // return result;
  13436. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_7 = V_0;
  13437. return L_7;
  13438. }
  13439. IL_0022:
  13440. {
  13441. // var obj = (TModel)instance;
  13442. RuntimeObject** L_8 = ___1_instance;
  13443. RuntimeObject* L_9 = *((RuntimeObject**)L_8);
  13444. V_1 = ((*(LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB*)((LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB*)(LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB*)UnBox(L_9, il2cpp_rgctx_data(method->klass->rgctx_data, 1)))));
  13445. // result += DoDeserialize(data.AsDictionary, ref obj);
  13446. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_10 = V_0;
  13447. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_11 = ___0_data;
  13448. NullCheck(L_11);
  13449. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_12;
  13450. L_12 = fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86(L_11, NULL);
  13451. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_13;
  13452. L_13 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB* >::Invoke(11 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>::DoDeserialize(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>,TModel&) */, __this, L_12, (&V_1));
  13453. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13454. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_14;
  13455. L_14 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_10, L_13, NULL);
  13456. V_0 = L_14;
  13457. // instance = obj;
  13458. RuntimeObject** L_15 = ___1_instance;
  13459. LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_16 = V_1;
  13460. LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_17 = L_16;
  13461. RuntimeObject* L_18 = Box(il2cpp_rgctx_data(method->klass->rgctx_data, 1), &L_17);
  13462. *((RuntimeObject**)L_15) = (RuntimeObject*)L_18;
  13463. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_18);
  13464. // return result;
  13465. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_19 = V_0;
  13466. return L_19;
  13467. }
  13468. }
  13469. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.LayerMask>::.ctor()
  13470. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter_1__ctor_m8386B8479295E3AC361DE4EBBFC2C3CCB11BB908_gshared (fsDirectConverter_1_t4AB706B5DC3FF2BB1AEAD2A78015FD3548436108* __this, const RuntimeMethod* method)
  13471. {
  13472. {
  13473. fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1((fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668*)__this, NULL);
  13474. return;
  13475. }
  13476. }
  13477. #ifdef __clang__
  13478. #pragma clang diagnostic pop
  13479. #endif
  13480. #ifdef __clang__
  13481. #pragma clang diagnostic push
  13482. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13483. #pragma clang diagnostic ignored "-Wunused-variable"
  13484. #endif
  13485. // System.Type Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>::get_ModelType()
  13486. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* fsDirectConverter_1_get_ModelType_m434ECAC51B09FD530A6DD456388A8B3B39F71DE1_gshared (fsDirectConverter_1_t3CFAD4EABDF356C7AA4577B8D1F5241EA64AAD95* __this, const RuntimeMethod* method)
  13487. {
  13488. static bool s_Il2CppMethodInitialized;
  13489. if (!s_Il2CppMethodInitialized)
  13490. {
  13491. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  13492. s_Il2CppMethodInitialized = true;
  13493. }
  13494. {
  13495. // public override Type ModelType => typeof(TModel);
  13496. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 0)) };
  13497. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  13498. Type_t* L_1;
  13499. L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
  13500. return L_1;
  13501. }
  13502. }
  13503. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>::TrySerialize(System.Object,Unity.VisualScripting.FullSerializer.fsData&,System.Type)
  13504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TrySerialize_m012F8AADBFF962499339189E5EABB41B2F51D491_gshared (fsDirectConverter_1_t3CFAD4EABDF356C7AA4577B8D1F5241EA64AAD95* __this, RuntimeObject* ___0_instance, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** ___1_serialized, Type_t* ___2_storageType, const RuntimeMethod* method)
  13505. {
  13506. static bool s_Il2CppMethodInitialized;
  13507. if (!s_Il2CppMethodInitialized)
  13508. {
  13509. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13510. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13511. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13512. s_Il2CppMethodInitialized = true;
  13513. }
  13514. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* V_0 = NULL;
  13515. {
  13516. // var serializedDictionary = new Dictionary<string, fsData>();
  13517. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_0 = (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*)il2cpp_codegen_object_new(Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13518. NullCheck(L_0);
  13519. Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04(L_0, Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13520. V_0 = L_0;
  13521. // var result = DoSerialize((TModel)instance, serializedDictionary);
  13522. RuntimeObject* L_1 = ___0_instance;
  13523. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_2 = V_0;
  13524. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13525. L_3 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, RuntimeObject*, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* >::Invoke(10 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>::DoSerialize(TModel,System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>) */, __this, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 1))), L_2);
  13526. // serialized = new fsData(serializedDictionary);
  13527. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** L_4 = ___1_serialized;
  13528. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_5 = V_0;
  13529. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_6 = (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23*)il2cpp_codegen_object_new(fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13530. NullCheck(L_6);
  13531. fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781(L_6, L_5, NULL);
  13532. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  13533. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  13534. // return result;
  13535. return L_3;
  13536. }
  13537. }
  13538. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>::TryDeserialize(Unity.VisualScripting.FullSerializer.fsData,System.Object&,System.Type)
  13539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TryDeserialize_m9DA1D304ED129B105B65D30686CE2CE0BFACBBD0_gshared (fsDirectConverter_1_t3CFAD4EABDF356C7AA4577B8D1F5241EA64AAD95* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, RuntimeObject** ___1_instance, Type_t* ___2_storageType, const RuntimeMethod* method)
  13540. {
  13541. static bool s_Il2CppMethodInitialized;
  13542. if (!s_Il2CppMethodInitialized)
  13543. {
  13544. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13545. s_Il2CppMethodInitialized = true;
  13546. }
  13547. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_0;
  13548. memset((&V_0), 0, sizeof(V_0));
  13549. RuntimeObject* V_1 = NULL;
  13550. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_2;
  13551. memset((&V_2), 0, sizeof(V_2));
  13552. {
  13553. // var result = fsResult.Success;
  13554. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13555. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_0 = ((fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields*)il2cpp_codegen_static_fields_for(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var))->___Success_3;
  13556. V_0 = L_0;
  13557. // if ((result += CheckType(data, fsDataType.Object)).Failed)
  13558. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_1 = V_0;
  13559. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_2 = ___0_data;
  13560. NullCheck((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this);
  13561. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13562. L_3 = fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this, L_2, (int32_t)1, NULL);
  13563. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_4;
  13564. L_4 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_1, L_3, NULL);
  13565. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_5 = L_4;
  13566. V_0 = L_5;
  13567. V_2 = L_5;
  13568. bool L_6;
  13569. L_6 = fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB((&V_2), NULL);
  13570. if (!L_6)
  13571. {
  13572. goto IL_0022;
  13573. }
  13574. }
  13575. {
  13576. // return result;
  13577. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_7 = V_0;
  13578. return L_7;
  13579. }
  13580. IL_0022:
  13581. {
  13582. // var obj = (TModel)instance;
  13583. RuntimeObject** L_8 = ___1_instance;
  13584. RuntimeObject* L_9 = *((RuntimeObject**)L_8);
  13585. V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_9, il2cpp_rgctx_data(method->klass->rgctx_data, 1)));
  13586. // result += DoDeserialize(data.AsDictionary, ref obj);
  13587. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_10 = V_0;
  13588. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_11 = ___0_data;
  13589. NullCheck(L_11);
  13590. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_12;
  13591. L_12 = fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86(L_11, NULL);
  13592. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_13;
  13593. L_13 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, RuntimeObject** >::Invoke(11 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>::DoDeserialize(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>,TModel&) */, __this, L_12, (&V_1));
  13594. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13595. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_14;
  13596. L_14 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_10, L_13, NULL);
  13597. V_0 = L_14;
  13598. // instance = obj;
  13599. RuntimeObject** L_15 = ___1_instance;
  13600. RuntimeObject* L_16 = V_1;
  13601. *((RuntimeObject**)L_15) = (RuntimeObject*)L_16;
  13602. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_16);
  13603. // return result;
  13604. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_17 = V_0;
  13605. return L_17;
  13606. }
  13607. }
  13608. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter`1<System.Object>::.ctor()
  13609. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter_1__ctor_mC4D982EAE127626844AA2FF8D98F3CEA570A1A10_gshared (fsDirectConverter_1_t3CFAD4EABDF356C7AA4577B8D1F5241EA64AAD95* __this, const RuntimeMethod* method)
  13610. {
  13611. {
  13612. fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1((fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668*)__this, NULL);
  13613. return;
  13614. }
  13615. }
  13616. #ifdef __clang__
  13617. #pragma clang diagnostic pop
  13618. #endif
  13619. #ifdef __clang__
  13620. #pragma clang diagnostic push
  13621. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13622. #pragma clang diagnostic ignored "-Wunused-variable"
  13623. #endif
  13624. // System.Type Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>::get_ModelType()
  13625. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* fsDirectConverter_1_get_ModelType_mC32E7553583DD793467D6FB5CE24747854A070E4_gshared (fsDirectConverter_1_tF307DFA6F21486A34320546F09381BBF84FF0539* __this, const RuntimeMethod* method)
  13626. {
  13627. static bool s_Il2CppMethodInitialized;
  13628. if (!s_Il2CppMethodInitialized)
  13629. {
  13630. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  13631. s_Il2CppMethodInitialized = true;
  13632. }
  13633. {
  13634. // public override Type ModelType => typeof(TModel);
  13635. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 0)) };
  13636. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  13637. Type_t* L_1;
  13638. L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
  13639. return L_1;
  13640. }
  13641. }
  13642. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>::TrySerialize(System.Object,Unity.VisualScripting.FullSerializer.fsData&,System.Type)
  13643. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TrySerialize_m8B301BF0E4624082448AC261F66E55A9069C9F2B_gshared (fsDirectConverter_1_tF307DFA6F21486A34320546F09381BBF84FF0539* __this, RuntimeObject* ___0_instance, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** ___1_serialized, Type_t* ___2_storageType, const RuntimeMethod* method)
  13644. {
  13645. static bool s_Il2CppMethodInitialized;
  13646. if (!s_Il2CppMethodInitialized)
  13647. {
  13648. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13649. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13650. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13651. s_Il2CppMethodInitialized = true;
  13652. }
  13653. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* V_0 = NULL;
  13654. {
  13655. // var serializedDictionary = new Dictionary<string, fsData>();
  13656. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_0 = (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*)il2cpp_codegen_object_new(Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13657. NullCheck(L_0);
  13658. Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04(L_0, Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13659. V_0 = L_0;
  13660. // var result = DoSerialize((TModel)instance, serializedDictionary);
  13661. RuntimeObject* L_1 = ___0_instance;
  13662. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_2 = V_0;
  13663. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13664. L_3 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* >::Invoke(10 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>::DoSerialize(TModel,System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>) */, __this, ((*(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)((Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 1))))), L_2);
  13665. // serialized = new fsData(serializedDictionary);
  13666. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** L_4 = ___1_serialized;
  13667. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_5 = V_0;
  13668. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_6 = (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23*)il2cpp_codegen_object_new(fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13669. NullCheck(L_6);
  13670. fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781(L_6, L_5, NULL);
  13671. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  13672. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  13673. // return result;
  13674. return L_3;
  13675. }
  13676. }
  13677. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>::TryDeserialize(Unity.VisualScripting.FullSerializer.fsData,System.Object&,System.Type)
  13678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TryDeserialize_mB57F1FED13B2F213B3A9C45337315BC8E5E3F6A6_gshared (fsDirectConverter_1_tF307DFA6F21486A34320546F09381BBF84FF0539* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, RuntimeObject** ___1_instance, Type_t* ___2_storageType, const RuntimeMethod* method)
  13679. {
  13680. static bool s_Il2CppMethodInitialized;
  13681. if (!s_Il2CppMethodInitialized)
  13682. {
  13683. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13684. s_Il2CppMethodInitialized = true;
  13685. }
  13686. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_0;
  13687. memset((&V_0), 0, sizeof(V_0));
  13688. Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 V_1;
  13689. memset((&V_1), 0, sizeof(V_1));
  13690. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_2;
  13691. memset((&V_2), 0, sizeof(V_2));
  13692. {
  13693. // var result = fsResult.Success;
  13694. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13695. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_0 = ((fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields*)il2cpp_codegen_static_fields_for(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var))->___Success_3;
  13696. V_0 = L_0;
  13697. // if ((result += CheckType(data, fsDataType.Object)).Failed)
  13698. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_1 = V_0;
  13699. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_2 = ___0_data;
  13700. NullCheck((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this);
  13701. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13702. L_3 = fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this, L_2, (int32_t)1, NULL);
  13703. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_4;
  13704. L_4 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_1, L_3, NULL);
  13705. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_5 = L_4;
  13706. V_0 = L_5;
  13707. V_2 = L_5;
  13708. bool L_6;
  13709. L_6 = fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB((&V_2), NULL);
  13710. if (!L_6)
  13711. {
  13712. goto IL_0022;
  13713. }
  13714. }
  13715. {
  13716. // return result;
  13717. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_7 = V_0;
  13718. return L_7;
  13719. }
  13720. IL_0022:
  13721. {
  13722. // var obj = (TModel)instance;
  13723. RuntimeObject** L_8 = ___1_instance;
  13724. RuntimeObject* L_9 = *((RuntimeObject**)L_8);
  13725. V_1 = ((*(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)((Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)UnBox(L_9, il2cpp_rgctx_data(method->klass->rgctx_data, 1)))));
  13726. // result += DoDeserialize(data.AsDictionary, ref obj);
  13727. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_10 = V_0;
  13728. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_11 = ___0_data;
  13729. NullCheck(L_11);
  13730. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_12;
  13731. L_12 = fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86(L_11, NULL);
  13732. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_13;
  13733. L_13 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* >::Invoke(11 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>::DoDeserialize(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>,TModel&) */, __this, L_12, (&V_1));
  13734. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13735. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_14;
  13736. L_14 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_10, L_13, NULL);
  13737. V_0 = L_14;
  13738. // instance = obj;
  13739. RuntimeObject** L_15 = ___1_instance;
  13740. Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_16 = V_1;
  13741. Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_17 = L_16;
  13742. RuntimeObject* L_18 = Box(il2cpp_rgctx_data(method->klass->rgctx_data, 1), &L_17);
  13743. *((RuntimeObject**)L_15) = (RuntimeObject*)L_18;
  13744. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_18);
  13745. // return result;
  13746. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_19 = V_0;
  13747. return L_19;
  13748. }
  13749. }
  13750. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray>::.ctor()
  13751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter_1__ctor_m644F4C264CCF8F165037066D5AC2034B6D176110_gshared (fsDirectConverter_1_tF307DFA6F21486A34320546F09381BBF84FF0539* __this, const RuntimeMethod* method)
  13752. {
  13753. {
  13754. fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1((fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668*)__this, NULL);
  13755. return;
  13756. }
  13757. }
  13758. #ifdef __clang__
  13759. #pragma clang diagnostic pop
  13760. #endif
  13761. #ifdef __clang__
  13762. #pragma clang diagnostic push
  13763. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13764. #pragma clang diagnostic ignored "-Wunused-variable"
  13765. #endif
  13766. // System.Type Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>::get_ModelType()
  13767. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* fsDirectConverter_1_get_ModelType_m58E406781ACEFCFD3F1526A502D26109CE14F8DF_gshared (fsDirectConverter_1_t8EC81BCA98876AF5AF3271B6086EC66E2CCDC388* __this, const RuntimeMethod* method)
  13768. {
  13769. static bool s_Il2CppMethodInitialized;
  13770. if (!s_Il2CppMethodInitialized)
  13771. {
  13772. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  13773. s_Il2CppMethodInitialized = true;
  13774. }
  13775. {
  13776. // public override Type ModelType => typeof(TModel);
  13777. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 0)) };
  13778. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  13779. Type_t* L_1;
  13780. L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
  13781. return L_1;
  13782. }
  13783. }
  13784. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>::TrySerialize(System.Object,Unity.VisualScripting.FullSerializer.fsData&,System.Type)
  13785. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TrySerialize_mBF17673DDC9A3AF571B07DA5640AA0BFE06B3FB4_gshared (fsDirectConverter_1_t8EC81BCA98876AF5AF3271B6086EC66E2CCDC388* __this, RuntimeObject* ___0_instance, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** ___1_serialized, Type_t* ___2_storageType, const RuntimeMethod* method)
  13786. {
  13787. static bool s_Il2CppMethodInitialized;
  13788. if (!s_Il2CppMethodInitialized)
  13789. {
  13790. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13791. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13792. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13793. s_Il2CppMethodInitialized = true;
  13794. }
  13795. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* V_0 = NULL;
  13796. {
  13797. // var serializedDictionary = new Dictionary<string, fsData>();
  13798. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_0 = (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*)il2cpp_codegen_object_new(Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13799. NullCheck(L_0);
  13800. Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04(L_0, Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13801. V_0 = L_0;
  13802. // var result = DoSerialize((TModel)instance, serializedDictionary);
  13803. RuntimeObject* L_1 = ___0_instance;
  13804. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_2 = V_0;
  13805. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13806. L_3 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* >::Invoke(10 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>::DoSerialize(TModel,System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>) */, __this, ((*(Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A*)((Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A*)(Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 1))))), L_2);
  13807. // serialized = new fsData(serializedDictionary);
  13808. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** L_4 = ___1_serialized;
  13809. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_5 = V_0;
  13810. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_6 = (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23*)il2cpp_codegen_object_new(fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13811. NullCheck(L_6);
  13812. fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781(L_6, L_5, NULL);
  13813. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  13814. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  13815. // return result;
  13816. return L_3;
  13817. }
  13818. }
  13819. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>::TryDeserialize(Unity.VisualScripting.FullSerializer.fsData,System.Object&,System.Type)
  13820. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TryDeserialize_m6DC3716E17198067B467187A41C5F378F9C2753F_gshared (fsDirectConverter_1_t8EC81BCA98876AF5AF3271B6086EC66E2CCDC388* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, RuntimeObject** ___1_instance, Type_t* ___2_storageType, const RuntimeMethod* method)
  13821. {
  13822. static bool s_Il2CppMethodInitialized;
  13823. if (!s_Il2CppMethodInitialized)
  13824. {
  13825. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13826. s_Il2CppMethodInitialized = true;
  13827. }
  13828. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_0;
  13829. memset((&V_0), 0, sizeof(V_0));
  13830. Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A V_1;
  13831. memset((&V_1), 0, sizeof(V_1));
  13832. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_2;
  13833. memset((&V_2), 0, sizeof(V_2));
  13834. {
  13835. // var result = fsResult.Success;
  13836. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13837. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_0 = ((fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields*)il2cpp_codegen_static_fields_for(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var))->___Success_3;
  13838. V_0 = L_0;
  13839. // if ((result += CheckType(data, fsDataType.Object)).Failed)
  13840. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_1 = V_0;
  13841. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_2 = ___0_data;
  13842. NullCheck((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this);
  13843. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13844. L_3 = fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this, L_2, (int32_t)1, NULL);
  13845. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_4;
  13846. L_4 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_1, L_3, NULL);
  13847. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_5 = L_4;
  13848. V_0 = L_5;
  13849. V_2 = L_5;
  13850. bool L_6;
  13851. L_6 = fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB((&V_2), NULL);
  13852. if (!L_6)
  13853. {
  13854. goto IL_0022;
  13855. }
  13856. }
  13857. {
  13858. // return result;
  13859. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_7 = V_0;
  13860. return L_7;
  13861. }
  13862. IL_0022:
  13863. {
  13864. // var obj = (TModel)instance;
  13865. RuntimeObject** L_8 = ___1_instance;
  13866. RuntimeObject* L_9 = *((RuntimeObject**)L_8);
  13867. V_1 = ((*(Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A*)((Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A*)(Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A*)UnBox(L_9, il2cpp_rgctx_data(method->klass->rgctx_data, 1)))));
  13868. // result += DoDeserialize(data.AsDictionary, ref obj);
  13869. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_10 = V_0;
  13870. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_11 = ___0_data;
  13871. NullCheck(L_11);
  13872. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_12;
  13873. L_12 = fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86(L_11, NULL);
  13874. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_13;
  13875. L_13 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A* >::Invoke(11 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>::DoDeserialize(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>,TModel&) */, __this, L_12, (&V_1));
  13876. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13877. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_14;
  13878. L_14 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_10, L_13, NULL);
  13879. V_0 = L_14;
  13880. // instance = obj;
  13881. RuntimeObject** L_15 = ___1_instance;
  13882. Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A L_16 = V_1;
  13883. Ray2D_t48EB7C703F8A2363D8A8F4A05D58640BD5721C7A L_17 = L_16;
  13884. RuntimeObject* L_18 = Box(il2cpp_rgctx_data(method->klass->rgctx_data, 1), &L_17);
  13885. *((RuntimeObject**)L_15) = (RuntimeObject*)L_18;
  13886. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_18);
  13887. // return result;
  13888. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_19 = V_0;
  13889. return L_19;
  13890. }
  13891. }
  13892. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Ray2D>::.ctor()
  13893. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter_1__ctor_mBFCA0DE0165FE7459AEBC89AC73731BBCF7F64E6_gshared (fsDirectConverter_1_t8EC81BCA98876AF5AF3271B6086EC66E2CCDC388* __this, const RuntimeMethod* method)
  13894. {
  13895. {
  13896. fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1((fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668*)__this, NULL);
  13897. return;
  13898. }
  13899. }
  13900. #ifdef __clang__
  13901. #pragma clang diagnostic pop
  13902. #endif
  13903. #ifdef __clang__
  13904. #pragma clang diagnostic push
  13905. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  13906. #pragma clang diagnostic ignored "-Wunused-variable"
  13907. #endif
  13908. // System.Type Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>::get_ModelType()
  13909. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* fsDirectConverter_1_get_ModelType_m3FD4D633636A5AF98D07BE76673F55CC9262FB13_gshared (fsDirectConverter_1_t8DF7EDE51D153578D3AC20C59C648308A99EA12A* __this, const RuntimeMethod* method)
  13910. {
  13911. static bool s_Il2CppMethodInitialized;
  13912. if (!s_Il2CppMethodInitialized)
  13913. {
  13914. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  13915. s_Il2CppMethodInitialized = true;
  13916. }
  13917. {
  13918. // public override Type ModelType => typeof(TModel);
  13919. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 0)) };
  13920. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  13921. Type_t* L_1;
  13922. L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
  13923. return L_1;
  13924. }
  13925. }
  13926. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>::TrySerialize(System.Object,Unity.VisualScripting.FullSerializer.fsData&,System.Type)
  13927. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TrySerialize_mA6F80C2C119177F6A02BE2DCE8B17803F98E0A2A_gshared (fsDirectConverter_1_t8DF7EDE51D153578D3AC20C59C648308A99EA12A* __this, RuntimeObject* ___0_instance, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** ___1_serialized, Type_t* ___2_storageType, const RuntimeMethod* method)
  13928. {
  13929. static bool s_Il2CppMethodInitialized;
  13930. if (!s_Il2CppMethodInitialized)
  13931. {
  13932. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13933. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13934. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13935. s_Il2CppMethodInitialized = true;
  13936. }
  13937. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* V_0 = NULL;
  13938. {
  13939. // var serializedDictionary = new Dictionary<string, fsData>();
  13940. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_0 = (Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*)il2cpp_codegen_object_new(Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3_il2cpp_TypeInfo_var);
  13941. NullCheck(L_0);
  13942. Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04(L_0, Dictionary_2__ctor_m3DC0B06262330D5590CF0BE04759F02C53807E04_RuntimeMethod_var);
  13943. V_0 = L_0;
  13944. // var result = DoSerialize((TModel)instance, serializedDictionary);
  13945. RuntimeObject* L_1 = ___0_instance;
  13946. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_2 = V_0;
  13947. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13948. L_3 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* >::Invoke(10 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>::DoSerialize(TModel,System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>) */, __this, ((*(Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)((Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)(Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)UnBox(L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 1))))), L_2);
  13949. // serialized = new fsData(serializedDictionary);
  13950. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23** L_4 = ___1_serialized;
  13951. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_5 = V_0;
  13952. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_6 = (fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23*)il2cpp_codegen_object_new(fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23_il2cpp_TypeInfo_var);
  13953. NullCheck(L_6);
  13954. fsData__ctor_mCF4D73BFD9271596000ACC3E17988E3492236781(L_6, L_5, NULL);
  13955. *((RuntimeObject**)L_4) = (RuntimeObject*)L_6;
  13956. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_6);
  13957. // return result;
  13958. return L_3;
  13959. }
  13960. }
  13961. // Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>::TryDeserialize(Unity.VisualScripting.FullSerializer.fsData,System.Object&,System.Type)
  13962. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 fsDirectConverter_1_TryDeserialize_m055ADA15BC7796EDA3848DBC9F9B51BB2562A886_gshared (fsDirectConverter_1_t8DF7EDE51D153578D3AC20C59C648308A99EA12A* __this, fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* ___0_data, RuntimeObject** ___1_instance, Type_t* ___2_storageType, const RuntimeMethod* method)
  13963. {
  13964. static bool s_Il2CppMethodInitialized;
  13965. if (!s_Il2CppMethodInitialized)
  13966. {
  13967. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13968. s_Il2CppMethodInitialized = true;
  13969. }
  13970. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_0;
  13971. memset((&V_0), 0, sizeof(V_0));
  13972. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_1;
  13973. memset((&V_1), 0, sizeof(V_1));
  13974. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 V_2;
  13975. memset((&V_2), 0, sizeof(V_2));
  13976. {
  13977. // var result = fsResult.Success;
  13978. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  13979. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_0 = ((fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_StaticFields*)il2cpp_codegen_static_fields_for(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var))->___Success_3;
  13980. V_0 = L_0;
  13981. // if ((result += CheckType(data, fsDataType.Object)).Failed)
  13982. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_1 = V_0;
  13983. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_2 = ___0_data;
  13984. NullCheck((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this);
  13985. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_3;
  13986. L_3 = fsBaseConverter_CheckType_m14C4D0CAF424DF9F14D6365B5E5681C43FA82F32((fsBaseConverter_tDF9366828A5B8ADB6D986EB35B320D4DDC81CB04*)__this, L_2, (int32_t)1, NULL);
  13987. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_4;
  13988. L_4 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_1, L_3, NULL);
  13989. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_5 = L_4;
  13990. V_0 = L_5;
  13991. V_2 = L_5;
  13992. bool L_6;
  13993. L_6 = fsResult_get_Failed_m1398C627A72E75F5C7F8DB1A7C14E5B3271FF1FB((&V_2), NULL);
  13994. if (!L_6)
  13995. {
  13996. goto IL_0022;
  13997. }
  13998. }
  13999. {
  14000. // return result;
  14001. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_7 = V_0;
  14002. return L_7;
  14003. }
  14004. IL_0022:
  14005. {
  14006. // var obj = (TModel)instance;
  14007. RuntimeObject** L_8 = ___1_instance;
  14008. RuntimeObject* L_9 = *((RuntimeObject**)L_8);
  14009. V_1 = ((*(Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)((Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)(Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)UnBox(L_9, il2cpp_rgctx_data(method->klass->rgctx_data, 1)))));
  14010. // result += DoDeserialize(data.AsDictionary, ref obj);
  14011. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_10 = V_0;
  14012. fsData_t6E144EC58C6E449805AB7BF77BCDAB7230BBFA23* L_11 = ___0_data;
  14013. NullCheck(L_11);
  14014. Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3* L_12;
  14015. L_12 = fsData_get_AsDictionary_m51779E71BBC994A7F5036BFB43F61B28C0817D86(L_11, NULL);
  14016. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_13;
  14017. L_13 = VirtualFuncInvoker2< fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974, Dictionary_2_t9D50BDE1AE9A04E8610682F97C4DB702D3A9B4D3*, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* >::Invoke(11 /* Unity.VisualScripting.FullSerializer.fsResult Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>::DoDeserialize(System.Collections.Generic.Dictionary`2<System.String,Unity.VisualScripting.FullSerializer.fsData>,TModel&) */, __this, L_12, (&V_1));
  14018. il2cpp_codegen_runtime_class_init_inline(fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974_il2cpp_TypeInfo_var);
  14019. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_14;
  14020. L_14 = fsResult_op_Addition_mA94A4AD68668E539DEFE1255DC72B9D11A6DE41C(L_10, L_13, NULL);
  14021. V_0 = L_14;
  14022. // instance = obj;
  14023. RuntimeObject** L_15 = ___1_instance;
  14024. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_16 = V_1;
  14025. Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_17 = L_16;
  14026. RuntimeObject* L_18 = Box(il2cpp_rgctx_data(method->klass->rgctx_data, 1), &L_17);
  14027. *((RuntimeObject**)L_15) = (RuntimeObject*)L_18;
  14028. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_15, (void*)(RuntimeObject*)L_18);
  14029. // return result;
  14030. fsResult_tEB0578624BDC55E2B1775451433E6E3CBDA8D974 L_19 = V_0;
  14031. return L_19;
  14032. }
  14033. }
  14034. // System.Void Unity.VisualScripting.FullSerializer.fsDirectConverter`1<UnityEngine.Rect>::.ctor()
  14035. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsDirectConverter_1__ctor_m74EBB5195DD5F746EE58C2B7FE7E20A93E44DFE8_gshared (fsDirectConverter_1_t8DF7EDE51D153578D3AC20C59C648308A99EA12A* __this, const RuntimeMethod* method)
  14036. {
  14037. {
  14038. fsDirectConverter__ctor_mCE6F7898DA2A3FBE101F5939D06A809E3164ABE1((fsDirectConverter_t9EE506A371C95C62E21CA6586396D7B3BD55F668*)__this, NULL);
  14039. return;
  14040. }
  14041. }
  14042. #ifdef __clang__
  14043. #pragma clang diagnostic pop
  14044. #endif
  14045. #ifdef __clang__
  14046. #pragma clang diagnostic push
  14047. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  14048. #pragma clang diagnostic ignored "-Wunused-variable"
  14049. #endif
  14050. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_HasValue()
  14051. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool fsOption_1_get_HasValue_m0EE517C63CCC2EB7F9323634BCC0B6D05A3E1ED3_gshared (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method)
  14052. {
  14053. {
  14054. // public bool HasValue => _hasValue;
  14055. bool L_0 = (bool)__this->____hasValue_0;
  14056. return L_0;
  14057. }
  14058. }
  14059. IL2CPP_EXTERN_C bool fsOption_1_get_HasValue_m0EE517C63CCC2EB7F9323634BCC0B6D05A3E1ED3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  14060. {
  14061. fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* _thisAdjusted;
  14062. int32_t _offset = 1;
  14063. _thisAdjusted = reinterpret_cast<fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*>(__this + _offset);
  14064. bool _returnValue;
  14065. _returnValue = fsOption_1_get_HasValue_m0EE517C63CCC2EB7F9323634BCC0B6D05A3E1ED3_inline(_thisAdjusted, method);
  14066. return _returnValue;
  14067. }
  14068. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_IsEmpty()
  14069. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool fsOption_1_get_IsEmpty_m7509A7114E8516228E8A7EE55378407191AA79AC_gshared (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method)
  14070. {
  14071. {
  14072. // public bool IsEmpty => _hasValue == false;
  14073. bool L_0 = (bool)__this->____hasValue_0;
  14074. return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  14075. }
  14076. }
  14077. IL2CPP_EXTERN_C bool fsOption_1_get_IsEmpty_m7509A7114E8516228E8A7EE55378407191AA79AC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  14078. {
  14079. fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* _thisAdjusted;
  14080. int32_t _offset = 1;
  14081. _thisAdjusted = reinterpret_cast<fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*>(__this + _offset);
  14082. bool _returnValue;
  14083. _returnValue = fsOption_1_get_IsEmpty_m7509A7114E8516228E8A7EE55378407191AA79AC(_thisAdjusted, method);
  14084. return _returnValue;
  14085. }
  14086. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::get_Value()
  14087. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41_gshared (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method)
  14088. {
  14089. {
  14090. // if (IsEmpty)
  14091. bool L_0;
  14092. L_0 = fsOption_1_get_IsEmpty_m7509A7114E8516228E8A7EE55378407191AA79AC(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
  14093. if (!L_0)
  14094. {
  14095. goto IL_0013;
  14096. }
  14097. }
  14098. {
  14099. // throw new InvalidOperationException("fsOption is empty");
  14100. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  14101. NullCheck(L_1);
  14102. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0A7D3B18DF4F9238A50A156FF06A5A7E794C1C7F)), NULL);
  14103. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41_RuntimeMethod_var)));
  14104. }
  14105. IL_0013:
  14106. {
  14107. // return _value;
  14108. RuntimeObject* L_2 = (RuntimeObject*)__this->____value_1;
  14109. return L_2;
  14110. }
  14111. }
  14112. IL2CPP_EXTERN_C RuntimeObject* fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  14113. {
  14114. fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* _thisAdjusted;
  14115. int32_t _offset = 1;
  14116. _thisAdjusted = reinterpret_cast<fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*>(__this + _offset);
  14117. RuntimeObject* _returnValue;
  14118. _returnValue = fsOption_1_get_Value_m9D62AA6B5C87DA1161FF87FAFD1CAC9DCB2C7D41(_thisAdjusted, method);
  14119. return _returnValue;
  14120. }
  14121. // System.Void Unity.VisualScripting.FullSerializer.Internal.fsOption`1<System.Object>::.ctor(T)
  14122. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsOption_1__ctor_m7F96B2B092F9644737D70EDA54F6B15A499EDBA8_gshared (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  14123. {
  14124. {
  14125. // _hasValue = true;
  14126. __this->____hasValue_0 = (bool)1;
  14127. // _value = value;
  14128. RuntimeObject* L_0 = ___0_value;
  14129. __this->____value_1 = L_0;
  14130. Il2CppCodeGenWriteBarrier((void**)(&__this->____value_1), (void*)L_0);
  14131. // }
  14132. return;
  14133. }
  14134. }
  14135. IL2CPP_EXTERN_C void fsOption_1__ctor_m7F96B2B092F9644737D70EDA54F6B15A499EDBA8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  14136. {
  14137. fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* _thisAdjusted;
  14138. int32_t _offset = 1;
  14139. _thisAdjusted = reinterpret_cast<fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39*>(__this + _offset);
  14140. fsOption_1__ctor_m7F96B2B092F9644737D70EDA54F6B15A499EDBA8(_thisAdjusted, ___0_value, method);
  14141. }
  14142. #ifdef __clang__
  14143. #pragma clang diagnostic pop
  14144. #endif
  14145. #ifdef __clang__
  14146. #pragma clang diagnostic push
  14147. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  14148. #pragma clang diagnostic ignored "-Wunused-variable"
  14149. #endif
  14150. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_HasValue()
  14151. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool fsOption_1_get_HasValue_mA83E56B4674C678E7C760EABB73397EF37356E6F_gshared (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method)
  14152. {
  14153. {
  14154. // public bool HasValue => _hasValue;
  14155. bool L_0 = (bool)__this->____hasValue_0;
  14156. return L_0;
  14157. }
  14158. }
  14159. IL2CPP_EXTERN_C bool fsOption_1_get_HasValue_mA83E56B4674C678E7C760EABB73397EF37356E6F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  14160. {
  14161. fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* _thisAdjusted;
  14162. int32_t _offset = 1;
  14163. _thisAdjusted = reinterpret_cast<fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*>(__this + _offset);
  14164. bool _returnValue;
  14165. _returnValue = fsOption_1_get_HasValue_mA83E56B4674C678E7C760EABB73397EF37356E6F_inline(_thisAdjusted, method);
  14166. return _returnValue;
  14167. }
  14168. // System.Boolean Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_IsEmpty()
  14169. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool fsOption_1_get_IsEmpty_m95C6343EC3B5E180C487DF2F28019391A5B6672E_gshared (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method)
  14170. {
  14171. {
  14172. // public bool IsEmpty => _hasValue == false;
  14173. bool L_0 = (bool)__this->____hasValue_0;
  14174. return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  14175. }
  14176. }
  14177. IL2CPP_EXTERN_C bool fsOption_1_get_IsEmpty_m95C6343EC3B5E180C487DF2F28019391A5B6672E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  14178. {
  14179. fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* _thisAdjusted;
  14180. int32_t _offset = 1;
  14181. _thisAdjusted = reinterpret_cast<fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*>(__this + _offset);
  14182. bool _returnValue;
  14183. _returnValue = fsOption_1_get_IsEmpty_m95C6343EC3B5E180C487DF2F28019391A5B6672E(_thisAdjusted, method);
  14184. return _returnValue;
  14185. }
  14186. // T Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::get_Value()
  14187. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241_gshared (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method)
  14188. {
  14189. {
  14190. // if (IsEmpty)
  14191. bool L_0;
  14192. L_0 = fsOption_1_get_IsEmpty_m95C6343EC3B5E180C487DF2F28019391A5B6672E(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
  14193. if (!L_0)
  14194. {
  14195. goto IL_0013;
  14196. }
  14197. }
  14198. {
  14199. // throw new InvalidOperationException("fsOption is empty");
  14200. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  14201. NullCheck(L_1);
  14202. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0A7D3B18DF4F9238A50A156FF06A5A7E794C1C7F)), NULL);
  14203. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241_RuntimeMethod_var)));
  14204. }
  14205. IL_0013:
  14206. {
  14207. // return _value;
  14208. fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 L_2 = (fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8)__this->____value_1;
  14209. return L_2;
  14210. }
  14211. }
  14212. IL2CPP_EXTERN_C fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  14213. {
  14214. fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* _thisAdjusted;
  14215. int32_t _offset = 1;
  14216. _thisAdjusted = reinterpret_cast<fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*>(__this + _offset);
  14217. fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 _returnValue;
  14218. _returnValue = fsOption_1_get_Value_m06DFFCCEB8E41DDEAEC89C3133DC3E75E3EA2241(_thisAdjusted, method);
  14219. return _returnValue;
  14220. }
  14221. // System.Void Unity.VisualScripting.FullSerializer.Internal.fsOption`1<Unity.VisualScripting.FullSerializer.Internal.fsVersionedType>::.ctor(T)
  14222. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void fsOption_1__ctor_m22E0CD4999637C5B1CCFAD980FD29F2FFE3963B6_gshared (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 ___0_value, const RuntimeMethod* method)
  14223. {
  14224. {
  14225. // _hasValue = true;
  14226. __this->____hasValue_0 = (bool)1;
  14227. // _value = value;
  14228. fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 L_0 = ___0_value;
  14229. __this->____value_1 = L_0;
  14230. Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value_1))->___Ancestors_0), (void*)NULL);
  14231. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  14232. Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value_1))->___VersionString_1), (void*)NULL);
  14233. #endif
  14234. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  14235. Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value_1))->___ModelType_2), (void*)NULL);
  14236. #endif
  14237. // }
  14238. return;
  14239. }
  14240. }
  14241. IL2CPP_EXTERN_C void fsOption_1__ctor_m22E0CD4999637C5B1CCFAD980FD29F2FFE3963B6_AdjustorThunk (RuntimeObject* __this, fsVersionedType_tE569BD045F7DEDEC2122CC6CC0023B62B95332E8 ___0_value, const RuntimeMethod* method)
  14242. {
  14243. fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* _thisAdjusted;
  14244. int32_t _offset = 1;
  14245. _thisAdjusted = reinterpret_cast<fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A*>(__this + _offset);
  14246. fsOption_1__ctor_m22E0CD4999637C5B1CCFAD980FD29F2FFE3963B6(_thisAdjusted, ___0_value, method);
  14247. }
  14248. #ifdef __clang__
  14249. #pragma clang diagnostic pop
  14250. #endif
  14251. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_m2E99DFD369025C91E4B23FA90EE17A41271106A4_gshared_inline (Enumerator_t81E3046D0BB629D86FAC325CBBF319731C3E36A4* __this, const RuntimeMethod* method)
  14252. {
  14253. {
  14254. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_0 = (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230)__this->____current_3;
  14255. return L_0;
  14256. }
  14257. }
  14258. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_gshared_inline (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method)
  14259. {
  14260. {
  14261. int32_t L_0 = (int32_t)__this->____current_3;
  14262. return L_0;
  14263. }
  14264. }
  14265. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
  14266. {
  14267. {
  14268. RuntimeObject* L_0 = (RuntimeObject*)__this->____current_3;
  14269. return L_0;
  14270. }
  14271. }
  14272. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 Enumerator_get_Current_m4E279E6389EB06C5DBE88A74E3BD3F23FB2B17E4_gshared_inline (Enumerator_t55FB90597665ED8BB37C633F6FD72EFAD48FE20F* __this, const RuntimeMethod* method)
  14273. {
  14274. {
  14275. StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_0 = (StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470)__this->____current_3;
  14276. return L_0;
  14277. }
  14278. }
  14279. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool fsOption_1_get_HasValue_m0EE517C63CCC2EB7F9323634BCC0B6D05A3E1ED3_gshared_inline (fsOption_1_t7DDA3DF5DAF6CDF69D53C005B31129C07A4ECD39* __this, const RuntimeMethod* method)
  14280. {
  14281. {
  14282. // public bool HasValue => _hasValue;
  14283. bool L_0 = (bool)__this->____hasValue_0;
  14284. return L_0;
  14285. }
  14286. }
  14287. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool fsOption_1_get_HasValue_mA83E56B4674C678E7C760EABB73397EF37356E6F_gshared_inline (fsOption_1_t5307CE32C845EE97F1173CDBB2385C4B81D2A28A* __this, const RuntimeMethod* method)
  14288. {
  14289. {
  14290. // public bool HasValue => _hasValue;
  14291. bool L_0 = (bool)__this->____hasValue_0;
  14292. return L_0;
  14293. }
  14294. }