No Description
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.

UnityEngine.UnityWebRequestModule.cpp 373KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044
  1. #include "pch-cpp.hpp"
  2. struct VirtualActionInvoker0
  3. {
  4. typedef void (*Action)(void*, const RuntimeMethod*);
  5. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  6. {
  7. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  8. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  9. }
  10. };
  11. template <typename T1>
  12. struct VirtualActionInvoker1
  13. {
  14. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  15. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  16. {
  17. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  18. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  19. }
  20. };
  21. template <typename T1, typename T2, typename T3>
  22. struct VirtualActionInvoker3
  23. {
  24. typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
  25. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  26. {
  27. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  28. ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  29. }
  30. };
  31. template <typename R>
  32. struct VirtualFuncInvoker0
  33. {
  34. typedef R (*Func)(void*, const RuntimeMethod*);
  35. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  36. {
  37. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  38. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  39. }
  40. };
  41. template <typename R, typename T1>
  42. struct VirtualFuncInvoker1
  43. {
  44. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  45. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  46. {
  47. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  48. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  49. }
  50. };
  51. template <typename R, typename T1, typename T2, typename T3>
  52. struct VirtualFuncInvoker3
  53. {
  54. typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
  55. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  56. {
  57. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  58. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  59. }
  60. };
  61. template <typename R, typename T1, typename T2, typename T3, typename T4>
  62. struct VirtualFuncInvoker4
  63. {
  64. typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
  65. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
  66. {
  67. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  68. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
  69. }
  70. };
  71. struct InterfaceActionInvoker0
  72. {
  73. typedef void (*Action)(void*, const RuntimeMethod*);
  74. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  75. {
  76. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  77. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  78. }
  79. };
  80. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB;
  81. struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
  82. struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
  83. struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
  84. struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7;
  85. struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
  86. struct KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342;
  87. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4;
  88. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  89. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
  90. struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
  91. struct ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76;
  92. struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257;
  93. struct EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7;
  94. struct ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA;
  95. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  96. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  97. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  98. struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
  99. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  100. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  101. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  102. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  103. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
  104. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C;
  105. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;
  106. struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
  107. struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
  108. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  109. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;
  110. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974;
  111. struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
  112. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
  113. struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837;
  114. struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B;
  115. struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
  116. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  117. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  118. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2;
  119. struct MethodInfo_t;
  120. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
  121. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
  122. struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7;
  123. struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7;
  124. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  125. struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
  126. struct String_t;
  127. struct StringBuilder_t;
  128. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;
  129. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C;
  130. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;
  131. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A;
  132. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
  133. struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
  134. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  135. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045;
  136. struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39;
  137. struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
  138. struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
  139. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
  140. IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
  141. IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
  142. IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
  143. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var;
  144. IL2CPP_EXTERN_C RuntimeClass* DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var;
  145. IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
  146. IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
  147. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
  148. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  149. IL2CPP_EXTERN_C RuntimeClass* List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var;
  150. IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
  151. IL2CPP_EXTERN_C RuntimeClass* MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var;
  152. IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
  153. IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
  154. IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
  155. IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
  156. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_il2cpp_TypeInfo_var;
  157. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var;
  158. IL2CPP_EXTERN_C RuntimeClass* UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var;
  159. IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var;
  160. IL2CPP_EXTERN_C RuntimeClass* WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var;
  161. IL2CPP_EXTERN_C RuntimeClass* WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var;
  162. IL2CPP_EXTERN_C RuntimeClass* WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var;
  163. IL2CPP_EXTERN_C String_t* _stringLiteral0202811166757AF262261201E48B89F6244FAE6C;
  164. IL2CPP_EXTERN_C String_t* _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708;
  165. IL2CPP_EXTERN_C String_t* _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05;
  166. IL2CPP_EXTERN_C String_t* _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90;
  167. IL2CPP_EXTERN_C String_t* _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE;
  168. IL2CPP_EXTERN_C String_t* _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D;
  169. IL2CPP_EXTERN_C String_t* _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E;
  170. IL2CPP_EXTERN_C String_t* _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA;
  171. IL2CPP_EXTERN_C String_t* _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D;
  172. IL2CPP_EXTERN_C String_t* _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317;
  173. IL2CPP_EXTERN_C String_t* _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86;
  174. IL2CPP_EXTERN_C String_t* _stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5;
  175. IL2CPP_EXTERN_C String_t* _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6;
  176. IL2CPP_EXTERN_C String_t* _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5;
  177. IL2CPP_EXTERN_C String_t* _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA;
  178. IL2CPP_EXTERN_C String_t* _stringLiteral507C09453B68D2470A05E9CAF736D11F39257A38;
  179. IL2CPP_EXTERN_C String_t* _stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02;
  180. IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84;
  181. IL2CPP_EXTERN_C String_t* _stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6;
  182. IL2CPP_EXTERN_C String_t* _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18;
  183. IL2CPP_EXTERN_C String_t* _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571;
  184. IL2CPP_EXTERN_C String_t* _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F;
  185. IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
  186. IL2CPP_EXTERN_C String_t* _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A;
  187. IL2CPP_EXTERN_C String_t* _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710;
  188. IL2CPP_EXTERN_C String_t* _stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E;
  189. IL2CPP_EXTERN_C String_t* _stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843;
  190. IL2CPP_EXTERN_C String_t* _stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E;
  191. IL2CPP_EXTERN_C String_t* _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15;
  192. IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
  193. IL2CPP_EXTERN_C String_t* _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E;
  194. IL2CPP_EXTERN_C String_t* _stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C;
  195. IL2CPP_EXTERN_C String_t* _stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2;
  196. IL2CPP_EXTERN_C String_t* _stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39;
  197. IL2CPP_EXTERN_C String_t* _stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C;
  198. IL2CPP_EXTERN_C String_t* _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E;
  199. IL2CPP_EXTERN_C String_t* _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D;
  200. IL2CPP_EXTERN_C String_t* _stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36;
  201. IL2CPP_EXTERN_C String_t* _stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69;
  202. IL2CPP_EXTERN_C String_t* _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536;
  203. IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
  204. IL2CPP_EXTERN_C String_t* _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50;
  205. IL2CPP_EXTERN_C String_t* _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF;
  206. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  207. IL2CPP_EXTERN_C String_t* _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A;
  208. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var;
  209. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var;
  210. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var;
  211. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var;
  212. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var;
  213. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var;
  214. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var;
  215. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var;
  216. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var;
  217. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
  218. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var;
  219. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
  220. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var;
  221. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var;
  222. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var;
  223. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var;
  224. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var;
  225. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var;
  226. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var;
  227. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var;
  228. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var;
  229. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
  230. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var;
  231. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var;
  232. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var;
  233. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var;
  234. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var;
  235. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var;
  236. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var;
  237. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var;
  238. IL2CPP_EXTERN_C const RuntimeMethod* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var;
  239. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;;
  240. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;
  241. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;;
  242. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;
  243. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;;
  244. struct Delegate_t_marshaled_com;
  245. struct Delegate_t_marshaled_pinvoke;
  246. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;;
  247. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;
  248. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;;
  249. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;
  250. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;;
  251. struct Exception_t_marshaled_com;
  252. struct Exception_t_marshaled_pinvoke;
  253. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;;
  254. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;
  255. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;;
  256. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;
  257. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;;
  258. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;;
  259. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;
  260. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;;
  261. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;
  262. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;;
  263. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  264. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  265. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  266. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  267. IL2CPP_EXTERN_C_BEGIN
  268. IL2CPP_EXTERN_C_END
  269. #ifdef __clang__
  270. #pragma clang diagnostic push
  271. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  272. #pragma clang diagnostic ignored "-Wunused-variable"
  273. #endif
  274. struct U3CModuleU3E_t42F165DEA2597BD5AB2C914FCF80349ECF878162
  275. {
  276. };
  277. struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83 : public RuntimeObject
  278. {
  279. Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
  280. EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7* ____entries;
  281. int32_t ____count;
  282. int32_t ____freeList;
  283. int32_t ____freeCount;
  284. int32_t ____version;
  285. RuntimeObject* ____comparer;
  286. KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* ____keys;
  287. ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76* ____values;
  288. RuntimeObject* ____syncRoot;
  289. };
  290. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4 : public RuntimeObject
  291. {
  292. ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ____items;
  293. int32_t ____size;
  294. int32_t ____version;
  295. RuntimeObject* ____syncRoot;
  296. };
  297. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  298. {
  299. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
  300. int32_t ____size;
  301. int32_t ____version;
  302. RuntimeObject* ____syncRoot;
  303. };
  304. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
  305. {
  306. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items;
  307. int32_t ____size;
  308. int32_t ____version;
  309. RuntimeObject* ____syncRoot;
  310. };
  311. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
  312. {
  313. int32_t ___m_codePage;
  314. CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem;
  315. bool ___m_deserializedFromEverett;
  316. bool ___m_isReadOnly;
  317. EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback;
  318. DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback;
  319. };
  320. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
  321. {
  322. RuntimeObject* ____identity;
  323. };
  324. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
  325. {
  326. Il2CppIUnknown* ____identity;
  327. };
  328. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
  329. {
  330. Il2CppIUnknown* ____identity;
  331. };
  332. struct String_t : public RuntimeObject
  333. {
  334. int32_t ____stringLength;
  335. Il2CppChar ____firstChar;
  336. };
  337. struct StringBuilder_t : public RuntimeObject
  338. {
  339. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars;
  340. StringBuilder_t* ___m_ChunkPrevious;
  341. int32_t ___m_ChunkLength;
  342. int32_t ___m_ChunkOffset;
  343. int32_t ___m_MaxCapacity;
  344. };
  345. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  346. {
  347. };
  348. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  349. {
  350. };
  351. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  352. {
  353. };
  354. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045 : public RuntimeObject
  355. {
  356. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* ___formData;
  357. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___fieldNames;
  358. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___fileNames;
  359. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___types;
  360. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___boundary;
  361. bool ___containsFiles;
  362. };
  363. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B : public RuntimeObject
  364. {
  365. };
  366. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443 : public RuntimeObject
  367. {
  368. };
  369. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
  370. {
  371. };
  372. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  373. {
  374. };
  375. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  376. {
  377. };
  378. struct BindingsMarshaller_t167C4F7F00F3AF5CBC1BC90CDC2A035E02B39F5C : public RuntimeObject
  379. {
  380. };
  381. struct BindingsMarshaller_t5C272BF9AD5616D87959F9BD5767F2FF159E7C83 : public RuntimeObject
  382. {
  383. };
  384. struct BindingsMarshaller_t691BC6DD6926DEDAF7ADF1E3647128657E65747E : public RuntimeObject
  385. {
  386. };
  387. struct BindingsMarshaller_tD0BF40CCE3EC41823960F5FA57E2C728623A5C64 : public RuntimeObject
  388. {
  389. };
  390. struct BindingsMarshaller_t32D0012375DDCE50C6552AA78583C1256BBEC3BA : public RuntimeObject
  391. {
  392. };
  393. struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
  394. {
  395. RuntimeObject* ___key;
  396. RuntimeObject* ___value;
  397. };
  398. struct KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A
  399. {
  400. String_t* ___key;
  401. String_t* ___value;
  402. };
  403. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  404. {
  405. bool ___m_value;
  406. };
  407. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  408. {
  409. uint8_t ___m_value;
  410. };
  411. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  412. {
  413. Il2CppChar ___m_value;
  414. };
  415. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  416. {
  417. };
  418. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  419. {
  420. };
  421. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  422. {
  423. };
  424. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  425. {
  426. int32_t ___m_value;
  427. };
  428. struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
  429. {
  430. int64_t ___m_value;
  431. };
  432. struct IntPtr_t
  433. {
  434. void* ___m_value;
  435. };
  436. struct ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E
  437. {
  438. void* ___begin;
  439. int32_t ___length;
  440. };
  441. struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
  442. {
  443. int8_t ___m_value;
  444. };
  445. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  446. {
  447. float ___m_value;
  448. };
  449. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
  450. {
  451. ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask;
  452. SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore;
  453. };
  454. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
  455. {
  456. int64_t ____ticks;
  457. };
  458. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
  459. {
  460. uint64_t ___m_value;
  461. };
  462. struct UIntPtr_t
  463. {
  464. void* ____pointer;
  465. };
  466. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  467. {
  468. union
  469. {
  470. struct
  471. {
  472. };
  473. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  474. };
  475. };
  476. struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
  477. {
  478. intptr_t ____value;
  479. };
  480. struct Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9
  481. {
  482. Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary;
  483. int32_t ____version;
  484. int32_t ____index;
  485. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current;
  486. int32_t ____getEnumeratorRetType;
  487. };
  488. struct Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562
  489. {
  490. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ____dictionary;
  491. int32_t ____version;
  492. int32_t ____index;
  493. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A ____current;
  494. int32_t ____getEnumeratorRetType;
  495. };
  496. struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
  497. {
  498. int32_t ___value__;
  499. };
  500. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
  501. {
  502. intptr_t ___m_Ptr;
  503. Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB* ___m_completeCallback;
  504. };
  505. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  506. {
  507. intptr_t ___m_Ptr;
  508. Il2CppMethodPointer ___m_completeCallback;
  509. };
  510. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  511. {
  512. intptr_t ___m_Ptr;
  513. Il2CppMethodPointer ___m_completeCallback;
  514. };
  515. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804 : public RuntimeObject
  516. {
  517. intptr_t ___m_Ptr;
  518. };
  519. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke
  520. {
  521. intptr_t ___m_Ptr;
  522. };
  523. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com
  524. {
  525. intptr_t ___m_Ptr;
  526. };
  527. struct Delegate_t : public RuntimeObject
  528. {
  529. intptr_t ___method_ptr;
  530. intptr_t ___invoke_impl;
  531. RuntimeObject* ___m_target;
  532. intptr_t ___method;
  533. intptr_t ___delegate_trampoline;
  534. intptr_t ___extra_arg;
  535. intptr_t ___method_code;
  536. intptr_t ___interp_method;
  537. intptr_t ___interp_invoke_impl;
  538. MethodInfo_t* ___method_info;
  539. MethodInfo_t* ___original_method_info;
  540. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  541. bool ___method_is_virtual;
  542. };
  543. struct Delegate_t_marshaled_pinvoke
  544. {
  545. intptr_t ___method_ptr;
  546. intptr_t ___invoke_impl;
  547. Il2CppIUnknown* ___m_target;
  548. intptr_t ___method;
  549. intptr_t ___delegate_trampoline;
  550. intptr_t ___extra_arg;
  551. intptr_t ___method_code;
  552. intptr_t ___interp_method;
  553. intptr_t ___interp_invoke_impl;
  554. MethodInfo_t* ___method_info;
  555. MethodInfo_t* ___original_method_info;
  556. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  557. int32_t ___method_is_virtual;
  558. };
  559. struct Delegate_t_marshaled_com
  560. {
  561. intptr_t ___method_ptr;
  562. intptr_t ___invoke_impl;
  563. Il2CppIUnknown* ___m_target;
  564. intptr_t ___method;
  565. intptr_t ___delegate_trampoline;
  566. intptr_t ___extra_arg;
  567. intptr_t ___method_code;
  568. intptr_t ___interp_method;
  569. intptr_t ___interp_invoke_impl;
  570. MethodInfo_t* ___method_info;
  571. MethodInfo_t* ___original_method_info;
  572. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
  573. int32_t ___method_is_virtual;
  574. };
  575. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB : public RuntimeObject
  576. {
  577. intptr_t ___m_Ptr;
  578. };
  579. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  580. {
  581. intptr_t ___m_Ptr;
  582. };
  583. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  584. {
  585. intptr_t ___m_Ptr;
  586. };
  587. struct Exception_t : public RuntimeObject
  588. {
  589. String_t* ____className;
  590. String_t* ____message;
  591. RuntimeObject* ____data;
  592. Exception_t* ____innerException;
  593. String_t* ____helpURL;
  594. RuntimeObject* ____stackTrace;
  595. String_t* ____stackTraceString;
  596. String_t* ____remoteStackTraceString;
  597. int32_t ____remoteStackIndex;
  598. RuntimeObject* ____dynamicMethods;
  599. int32_t ____HResult;
  600. String_t* ____source;
  601. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  602. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  603. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  604. int32_t ___caught_in_unmanaged;
  605. };
  606. struct Exception_t_marshaled_pinvoke
  607. {
  608. char* ____className;
  609. char* ____message;
  610. RuntimeObject* ____data;
  611. Exception_t_marshaled_pinvoke* ____innerException;
  612. char* ____helpURL;
  613. Il2CppIUnknown* ____stackTrace;
  614. char* ____stackTraceString;
  615. char* ____remoteStackTraceString;
  616. int32_t ____remoteStackIndex;
  617. Il2CppIUnknown* ____dynamicMethods;
  618. int32_t ____HResult;
  619. char* ____source;
  620. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  621. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  622. Il2CppSafeArray* ___native_trace_ips;
  623. int32_t ___caught_in_unmanaged;
  624. };
  625. struct Exception_t_marshaled_com
  626. {
  627. Il2CppChar* ____className;
  628. Il2CppChar* ____message;
  629. RuntimeObject* ____data;
  630. Exception_t_marshaled_com* ____innerException;
  631. Il2CppChar* ____helpURL;
  632. Il2CppIUnknown* ____stackTrace;
  633. Il2CppChar* ____stackTraceString;
  634. Il2CppChar* ____remoteStackTraceString;
  635. int32_t ____remoteStackIndex;
  636. Il2CppIUnknown* ____dynamicMethods;
  637. int32_t ____HResult;
  638. Il2CppChar* ____source;
  639. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  640. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  641. Il2CppSafeArray* ___native_trace_ips;
  642. int32_t ___caught_in_unmanaged;
  643. };
  644. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
  645. {
  646. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer;
  647. int32_t ____origin;
  648. int32_t ____position;
  649. int32_t ____length;
  650. int32_t ____capacity;
  651. bool ____expandable;
  652. bool ____writable;
  653. bool ____exposable;
  654. bool ____isOpen;
  655. Task_1_t4C228DE57804012969575431CFF12D57C875552D* ____lastReadTask;
  656. };
  657. struct RegexOptions_tE9DA9C4DF8FB26DD1C7E0F8AA022C1164A423F6B
  658. {
  659. int32_t ___value__;
  660. };
  661. struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
  662. {
  663. int32_t ___value__;
  664. };
  665. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6 : public RuntimeObject
  666. {
  667. intptr_t ___m_Ptr;
  668. };
  669. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke
  670. {
  671. intptr_t ___m_Ptr;
  672. };
  673. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com
  674. {
  675. intptr_t ___m_Ptr;
  676. };
  677. struct UriIdnScope_t001CC97A6F977E9BB7DB855CC6BA415A7F47491F
  678. {
  679. int32_t ___value__;
  680. };
  681. struct UriKind_t6597BD6BF48C695D63244DF8541B5EA48FF7F9E7
  682. {
  683. int32_t ___value__;
  684. };
  685. struct Result_tFB98154F15BF37A66902802D441FEFADC68D4C87
  686. {
  687. int32_t ___value__;
  688. };
  689. struct UnityWebRequestError_t7CF32767F0B965DF6DF5FA7A6E2E59A7C662A1E5
  690. {
  691. int32_t ___value__;
  692. };
  693. struct UnityWebRequestMethod_tF87F2372BD1188EDFA1122DC4A809B345440778D
  694. {
  695. int32_t ___value__;
  696. };
  697. struct Flags_t47CF4DB4036A6A539AFA6EE39C75F772E865E897
  698. {
  699. uint64_t ___value__;
  700. };
  701. struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
  702. {
  703. void* ___m_Buffer;
  704. int32_t ___m_Length;
  705. int32_t ___m_AllocatorLabel;
  706. };
  707. struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
  708. {
  709. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer;
  710. int32_t ____length;
  711. };
  712. struct MulticastDelegate_t : public Delegate_t
  713. {
  714. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
  715. };
  716. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  717. {
  718. Delegate_t_marshaled_pinvoke** ___delegates;
  719. };
  720. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  721. {
  722. Delegate_t_marshaled_com** ___delegates;
  723. };
  724. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772 : public RuntimeObject
  725. {
  726. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___internalMatchTimeout;
  727. String_t* ___pattern;
  728. int32_t ___roptions;
  729. RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* ___factory;
  730. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps;
  731. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames;
  732. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist;
  733. int32_t ___capsize;
  734. ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ____runnerref;
  735. WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ____replref;
  736. RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code;
  737. bool ____refsInitialized;
  738. };
  739. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  740. {
  741. };
  742. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F : public RuntimeObject
  743. {
  744. intptr_t ___m_Ptr;
  745. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___m_DownloadHandler;
  746. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___m_UploadHandler;
  747. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___m_CertificateHandler;
  748. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri;
  749. bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  750. bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  751. bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  752. };
  753. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke
  754. {
  755. intptr_t ___m_Ptr;
  756. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke ___m_DownloadHandler;
  757. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke ___m_UploadHandler;
  758. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke ___m_CertificateHandler;
  759. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri;
  760. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  761. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  762. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  763. };
  764. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com
  765. {
  766. intptr_t ___m_Ptr;
  767. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com* ___m_DownloadHandler;
  768. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com* ___m_UploadHandler;
  769. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com* ___m_CertificateHandler;
  770. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri;
  771. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  772. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  773. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  774. };
  775. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C
  776. {
  777. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___U3CwebRequestU3Ek__BackingField;
  778. };
  779. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke
  780. {
  781. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke* ___U3CwebRequestU3Ek__BackingField;
  782. };
  783. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com
  784. {
  785. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com* ___U3CwebRequestU3Ek__BackingField;
  786. };
  787. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject
  788. {
  789. String_t* ___m_String;
  790. String_t* ___m_originalUnicodeString;
  791. UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax;
  792. String_t* ___m_DnsSafeHost;
  793. uint64_t ___m_Flags;
  794. UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info;
  795. bool ___m_iriParsing;
  796. };
  797. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB : public MulticastDelegate_t
  798. {
  799. };
  800. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  801. {
  802. String_t* ____paramName;
  803. };
  804. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974 : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB
  805. {
  806. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData;
  807. };
  808. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  809. {
  810. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData;
  811. };
  812. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  813. {
  814. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData;
  815. };
  816. struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  817. {
  818. };
  819. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  820. {
  821. };
  822. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  823. {
  824. };
  825. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6
  826. {
  827. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload;
  828. };
  829. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke
  830. {
  831. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload;
  832. };
  833. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com
  834. {
  835. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload;
  836. };
  837. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_StaticFields
  838. {
  839. ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ___s_emptyArray;
  840. };
  841. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  842. {
  843. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
  844. };
  845. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
  846. {
  847. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray;
  848. };
  849. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
  850. {
  851. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding;
  852. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding;
  853. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode;
  854. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding;
  855. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding;
  856. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding;
  857. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding;
  858. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding;
  859. Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings;
  860. RuntimeObject* ___s_InternalSyncObject;
  861. };
  862. struct String_t_StaticFields
  863. {
  864. String_t* ___Empty;
  865. };
  866. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields
  867. {
  868. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dDash;
  869. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___crlf;
  870. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___contentTypeHeader;
  871. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dispositionHeader;
  872. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___endQuote;
  873. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___fileNameField;
  874. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ampersand;
  875. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___equal;
  876. };
  877. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields
  878. {
  879. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ucHexChars;
  880. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lcHexChars;
  881. uint8_t ___urlEscapeChar;
  882. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlSpace;
  883. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dataSpace;
  884. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlForbidden;
  885. uint8_t ___qpEscapeChar;
  886. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpSpace;
  887. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpForbidden;
  888. };
  889. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields
  890. {
  891. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___domainRegex;
  892. };
  893. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  894. {
  895. String_t* ___TrueString;
  896. String_t* ___FalseString;
  897. };
  898. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  899. {
  900. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
  901. };
  902. struct IntPtr_t_StaticFields
  903. {
  904. intptr_t ___Zero;
  905. };
  906. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
  907. {
  908. Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null;
  909. };
  910. struct UIntPtr_t_StaticFields
  911. {
  912. uintptr_t ___Zero;
  913. };
  914. struct Exception_t_StaticFields
  915. {
  916. RuntimeObject* ___s_EDILock;
  917. };
  918. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields
  919. {
  920. int32_t ___s_cacheSize;
  921. Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* ___s_cache;
  922. int32_t ___s_cacheCount;
  923. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheFirst;
  924. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheLast;
  925. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maximumMatchTimeout;
  926. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_defaultMatchTimeout;
  927. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteMatchTimeout;
  928. };
  929. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields
  930. {
  931. String_t* ___UriSchemeFile;
  932. String_t* ___UriSchemeFtp;
  933. String_t* ___UriSchemeGopher;
  934. String_t* ___UriSchemeHttp;
  935. String_t* ___UriSchemeHttps;
  936. String_t* ___UriSchemeWs;
  937. String_t* ___UriSchemeWss;
  938. String_t* ___UriSchemeMailto;
  939. String_t* ___UriSchemeNews;
  940. String_t* ___UriSchemeNntp;
  941. String_t* ___UriSchemeNetTcp;
  942. String_t* ___UriSchemeNetPipe;
  943. String_t* ___SchemeDelimiter;
  944. bool ___s_ConfigInitialized;
  945. bool ___s_ConfigInitializing;
  946. int32_t ___s_IdnScope;
  947. bool ___s_IriParsing;
  948. bool ___useDotNetRelativeOrAbsolute;
  949. bool ___IsWindowsFileSystem;
  950. RuntimeObject* ___s_initLock;
  951. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars;
  952. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars;
  953. };
  954. #ifdef __clang__
  955. #pragma clang diagnostic pop
  956. #endif
  957. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
  958. {
  959. ALIGN_FIELD (8) uint8_t m_Items[1];
  960. inline uint8_t GetAt(il2cpp_array_size_t index) const
  961. {
  962. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  963. return m_Items[index];
  964. }
  965. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  966. {
  967. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  968. return m_Items + index;
  969. }
  970. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  971. {
  972. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  973. m_Items[index] = value;
  974. }
  975. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  976. {
  977. return m_Items[index];
  978. }
  979. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  980. {
  981. return m_Items + index;
  982. }
  983. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  984. {
  985. m_Items[index] = value;
  986. }
  987. };
  988. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
  989. {
  990. ALIGN_FIELD (8) String_t* m_Items[1];
  991. inline String_t* GetAt(il2cpp_array_size_t index) const
  992. {
  993. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  994. return m_Items[index];
  995. }
  996. inline String_t** GetAddressAt(il2cpp_array_size_t index)
  997. {
  998. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  999. return m_Items + index;
  1000. }
  1001. inline void SetAt(il2cpp_array_size_t index, String_t* value)
  1002. {
  1003. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1004. m_Items[index] = value;
  1005. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1006. }
  1007. inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
  1008. {
  1009. return m_Items[index];
  1010. }
  1011. inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1012. {
  1013. return m_Items + index;
  1014. }
  1015. inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
  1016. {
  1017. m_Items[index] = value;
  1018. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1019. }
  1020. };
  1021. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
  1022. {
  1023. ALIGN_FIELD (8) Il2CppChar m_Items[1];
  1024. inline Il2CppChar GetAt(il2cpp_array_size_t index) const
  1025. {
  1026. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1027. return m_Items[index];
  1028. }
  1029. inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
  1030. {
  1031. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1032. return m_Items + index;
  1033. }
  1034. inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
  1035. {
  1036. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1037. m_Items[index] = value;
  1038. }
  1039. inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
  1040. {
  1041. return m_Items[index];
  1042. }
  1043. inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1044. {
  1045. return m_Items + index;
  1046. }
  1047. inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
  1048. {
  1049. m_Items[index] = value;
  1050. }
  1051. };
  1052. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
  1053. {
  1054. ALIGN_FIELD (8) RuntimeObject* m_Items[1];
  1055. inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
  1056. {
  1057. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1058. return m_Items[index];
  1059. }
  1060. inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
  1061. {
  1062. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1063. return m_Items + index;
  1064. }
  1065. inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
  1066. {
  1067. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1068. m_Items[index] = value;
  1069. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1070. }
  1071. inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
  1072. {
  1073. return m_Items[index];
  1074. }
  1075. inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1076. {
  1077. return m_Items + index;
  1078. }
  1079. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
  1080. {
  1081. m_Items[index] = value;
  1082. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1083. }
  1084. };
  1085. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  1086. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  1087. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  1088. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  1089. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  1090. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  1091. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  1092. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  1093. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  1094. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  1095. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  1096. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  1097. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  1098. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  1099. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  1100. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  1101. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  1102. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  1103. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  1104. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  1105. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  1106. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  1107. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  1108. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  1109. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  1110. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
  1111. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
  1112. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
  1113. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1114. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  1115. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  1116. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method) ;
  1117. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
  1118. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
  1119. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
  1120. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
  1121. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1122. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1123. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
  1124. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
  1125. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1126. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_allocator, const RuntimeMethod* method) ;
  1127. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  1128. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
  1129. IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
  1130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1131. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, int32_t ___1_uriKind, const RuntimeMethod* method) ;
  1132. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1133. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1134. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_relativeUri, const RuntimeMethod* method) ;
  1135. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
  1136. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, const RuntimeMethod* method) ;
  1137. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, String_t* ___1_relativeUri, const RuntimeMethod* method) ;
  1138. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_uri1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_uri2, const RuntimeMethod* method) ;
  1139. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_input, const RuntimeMethod* method) ;
  1140. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1141. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
  1142. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_targetUri, String_t* ___1_targetUrl, bool ___2_prependProtocol, const RuntimeMethod* method) ;
  1143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1144. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1145. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1146. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1147. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1148. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_mC67F1B9E92187E2BB125A560160DA30A5BA703F2 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  1149. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1150. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
  1151. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method) ;
  1152. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
  1153. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619 (StringBuilder_t* __this, String_t* ___0_value, int32_t ___1_capacity, const RuntimeMethod* method) ;
  1154. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  1155. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
  1156. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1157. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method) ;
  1158. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1159. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1160. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9 (const RuntimeMethod* method) ;
  1161. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1162. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_pattern, const RuntimeMethod* method) ;
  1163. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65 (const RuntimeMethod* method) ;
  1164. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  1165. inline void List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4 (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, const RuntimeMethod* method)
  1166. {
  1167. (( void (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  1168. }
  1169. inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
  1170. {
  1171. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  1172. }
  1173. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Random_Range_m6763D9767F033357F88B6637F048F4ACA4123B68 (int32_t ___0_minInclusive, int32_t ___1_maxExclusive, const RuntimeMethod* method) ;
  1174. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___2_e, const RuntimeMethod* method) ;
  1175. inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___0_item, const RuntimeMethod* method)
  1176. {
  1177. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
  1178. }
  1179. inline void List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_inline (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_item, const RuntimeMethod* method)
  1180. {
  1181. (( void (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
  1182. }
  1183. inline void Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
  1184. {
  1185. (( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
  1186. }
  1187. inline void Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___0_key, String_t* ___1_value, const RuntimeMethod* method)
  1188. {
  1189. (( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___0_key, ___1_value, method);
  1190. }
  1191. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8 (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
  1192. inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___0_index, const RuntimeMethod* method)
  1193. {
  1194. return (( String_t* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  1195. }
  1196. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1197. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1198. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A (String_t* ___0_toEncode, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1199. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ;
  1200. inline ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6 (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, int32_t ___0_index, const RuntimeMethod* method)
  1201. {
  1202. return (( ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  1203. }
  1204. inline int32_t List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, const RuntimeMethod* method)
  1205. {
  1206. return (( int32_t (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
  1207. }
  1208. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1209. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method) ;
  1210. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_forbidden, bool ___4_uppercase, const RuntimeMethod* method) ;
  1211. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method) ;
  1212. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651 (uint8_t ___0_b, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_hexChars, uint8_t* ___2_byte0, uint8_t* ___3_byte1, const RuntimeMethod* method) ;
  1213. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, const RuntimeMethod* method) ;
  1214. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_comperand, const RuntimeMethod* method) ;
  1215. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method) ;
  1216. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD (const RuntimeMethod* method) ;
  1217. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F (uint8_t* ___0_input, int32_t ___1_inputLength, const RuntimeMethod* method) ;
  1218. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD_inline (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___0_handler, const RuntimeMethod* method) ;
  1219. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  1220. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1221. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  1222. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_mA6FB8BD8311B029689E2A7FC86E06475FF60010D (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  1223. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_handler, const RuntimeMethod* method) ;
  1224. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1225. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  1226. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_m286AFAC5F442211CA34E6E3BEAB79CD585EC9DF2 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1227. inline bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  1228. {
  1229. return (( bool (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline)(__this, method);
  1230. }
  1231. inline void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method)
  1232. {
  1233. return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared)(___0_nativeArray, method);
  1234. }
  1235. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1236. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339 (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method) ;
  1237. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1238. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ;
  1239. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4 (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ;
  1240. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
  1241. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_trimChars, const RuntimeMethod* method) ;
  1242. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  1243. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
  1244. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187 (String_t* ___0_name, const RuntimeMethod* method) ;
  1245. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
  1246. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
  1247. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062 (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E ___0_managedSpan, const RuntimeMethod* method) ;
  1248. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method) ;
  1249. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E (intptr_t ___0_dh, int32_t* ___1_length, const RuntimeMethod* method) ;
  1250. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method) ;
  1251. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method) ;
  1252. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, uint8_t* ___1_bytes, int32_t ___2_length, const RuntimeMethod* method) ;
  1253. inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
  1254. {
  1255. return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
  1256. }
  1257. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method) ;
  1258. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1259. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  1260. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method) ;
  1261. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1262. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperation__ctor_m7D2C724BC0CC2C320E5A9357418BB639E5F74475 (AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
  1263. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_m4F125AF4AF1E13484E55EAA64570FA3967117F64 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, intptr_t ___0_ptr, const RuntimeMethod* method) ;
  1264. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6 (int32_t ___0_err, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method) ;
  1265. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7 (int64_t ___0_responseCode, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method) ;
  1266. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_unityWebRequest, const RuntimeMethod* method) ;
  1267. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1268. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1269. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1270. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1271. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1272. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1273. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method) ;
  1274. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1275. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1276. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1277. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1278. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1279. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65 (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  1280. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1281. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1282. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1283. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1284. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1285. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1286. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  1287. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1288. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* BindingsMarshaller_ConvertToManaged_m46517862C68703D5EBFDF6A2B6C7B10BE0AE54C8 (intptr_t ___0_ptr, const RuntimeMethod* method) ;
  1289. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1290. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method) ;
  1291. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1292. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF (intptr_t ___0__unity_self, int32_t ___1_methodType, const RuntimeMethod* method) ;
  1293. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1294. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1295. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1296. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method) ;
  1297. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline (String_t* ___0_s, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_managedSpanWrapper, const RuntimeMethod* method) ;
  1298. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method) ;
  1299. inline Il2CppChar* ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  1300. {
  1301. return (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_gshared)(__this, method);
  1302. }
  1303. inline int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  1304. {
  1305. return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline)(__this, method);
  1306. }
  1307. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2 (ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* __this, void* ___0_begin, int32_t ___1_length, const RuntimeMethod* method) ;
  1308. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_customMethodName, const RuntimeMethod* method) ;
  1309. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1310. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1311. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49 (String_t* __this, const RuntimeMethod* method) ;
  1312. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1313. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1314. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1315. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1316. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1317. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method) ;
  1318. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1319. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method) ;
  1320. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1321. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_url, const RuntimeMethod* method) ;
  1322. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1323. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1324. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1325. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9 (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1326. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_Injected_mFA4A70E1530E65713B4EA8895C61161D3C620C85 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_name, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___2_value, const RuntimeMethod* method) ;
  1327. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method) ;
  1328. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uploadHandler, const RuntimeMethod* method) ;
  1329. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF (intptr_t ___0__unity_self, intptr_t ___1_uh, const RuntimeMethod* method) ;
  1330. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method) ;
  1331. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77 (intptr_t ___0__unity_self, intptr_t ___1_dh, const RuntimeMethod* method) ;
  1332. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method) ;
  1333. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method) ;
  1334. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_request, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method) ;
  1335. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  1336. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method) ;
  1337. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method) ;
  1338. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method) ;
  1339. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method) ;
  1340. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method) ;
  1341. inline Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
  1342. {
  1343. return (( Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method);
  1344. }
  1345. inline void Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1346. {
  1347. (( void (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared)(__this, method);
  1348. }
  1349. inline KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_inline (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1350. {
  1351. return (( KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline)(__this, method);
  1352. }
  1353. inline String_t* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
  1354. {
  1355. return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline)(__this, method);
  1356. }
  1357. inline String_t* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
  1358. {
  1359. return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
  1360. }
  1361. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method) ;
  1362. inline bool Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438 (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1363. {
  1364. return (( bool (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared)(__this, method);
  1365. }
  1366. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A (intptr_t ___0__unity_self, const RuntimeMethod* method) ;
  1367. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_m3CA892EE57ADFDEF86A3CD9AC35EF50848C178D3 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1368. inline void NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_allocator, const RuntimeMethod* method)
  1369. {
  1370. (( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_gshared)(__this, ___0_array, ___1_allocator, method);
  1371. }
  1372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_data, bool ___1_transferOwnership, const RuntimeMethod* method) ;
  1373. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1374. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* ___0_self, uint8_t* ___1_data, int32_t ___2_dataLength, const RuntimeMethod* method) ;
  1375. inline void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  1376. {
  1377. (( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared)(__this, method);
  1378. }
  1379. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1380. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t UIntPtr_op_Explicit_mF1E7911DD5AC13B5E59EE8C7903469D12A3861E8 (uint64_t ___0_value, const RuntimeMethod* method) ;
  1381. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* UIntPtr_op_Explicit_m42C3EA82465934F505B4274A7CE320550A48B7B9 (uintptr_t ___0_value, const RuntimeMethod* method) ;
  1382. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ;
  1383. inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
  1384. {
  1385. (( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___0_ptr, ___1_length, method);
  1386. }
  1387. inline void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
  1388. {
  1389. (( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared)(__this, ___0_item, method);
  1390. }
  1391. #ifdef __clang__
  1392. #pragma clang diagnostic push
  1393. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1394. #pragma clang diagnostic ignored "-Wunused-variable"
  1395. #endif
  1396. #ifdef __clang__
  1397. #pragma clang diagnostic pop
  1398. #endif
  1399. #ifdef __clang__
  1400. #pragma clang diagnostic push
  1401. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1402. #pragma clang diagnostic ignored "-Wunused-variable"
  1403. #endif
  1404. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m63855E63B6B6EAFD4BCE65395BB744AAF5BD6AB4 (String_t* ___0_baseUri, String_t* ___1_redirectUri, const RuntimeMethod* method)
  1405. {
  1406. static bool s_Il2CppMethodInitialized;
  1407. if (!s_Il2CppMethodInitialized)
  1408. {
  1409. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1410. s_Il2CppMethodInitialized = true;
  1411. }
  1412. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL;
  1413. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  1414. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  1415. bool V_3 = false;
  1416. bool V_4 = false;
  1417. String_t* V_5 = NULL;
  1418. {
  1419. String_t* L_0 = ___1_redirectUri;
  1420. NullCheck(L_0);
  1421. Il2CppChar L_1;
  1422. L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL);
  1423. V_3 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)47)))? 1 : 0);
  1424. bool L_2 = V_3;
  1425. if (!L_2)
  1426. {
  1427. goto IL_001a;
  1428. }
  1429. }
  1430. {
  1431. String_t* L_3 = ___1_redirectUri;
  1432. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1433. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_4, L_3, 2, NULL);
  1434. V_0 = L_4;
  1435. goto IL_0022;
  1436. }
  1437. IL_001a:
  1438. {
  1439. String_t* L_5 = ___1_redirectUri;
  1440. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1441. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_6, L_5, 0, NULL);
  1442. V_0 = L_6;
  1443. }
  1444. IL_0022:
  1445. {
  1446. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7 = V_0;
  1447. NullCheck(L_7);
  1448. bool L_8;
  1449. L_8 = Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF(L_7, NULL);
  1450. V_4 = L_8;
  1451. bool L_9 = V_4;
  1452. if (!L_9)
  1453. {
  1454. goto IL_0038;
  1455. }
  1456. }
  1457. {
  1458. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = V_0;
  1459. NullCheck(L_10);
  1460. String_t* L_11;
  1461. L_11 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_10, NULL);
  1462. V_5 = L_11;
  1463. goto IL_0052;
  1464. }
  1465. IL_0038:
  1466. {
  1467. String_t* L_12 = ___0_baseUri;
  1468. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1469. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_13, L_12, 1, NULL);
  1470. V_1 = L_13;
  1471. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_14 = V_1;
  1472. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15 = V_0;
  1473. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1474. Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F(L_16, L_14, L_15, NULL);
  1475. V_2 = L_16;
  1476. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_2;
  1477. NullCheck(L_17);
  1478. String_t* L_18;
  1479. L_18 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_17, NULL);
  1480. V_5 = L_18;
  1481. goto IL_0052;
  1482. }
  1483. IL_0052:
  1484. {
  1485. String_t* L_19 = V_5;
  1486. return L_19;
  1487. }
  1488. }
  1489. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method)
  1490. {
  1491. static bool s_Il2CppMethodInitialized;
  1492. if (!s_Il2CppMethodInitialized)
  1493. {
  1494. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1495. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1496. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A);
  1497. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  1498. s_Il2CppMethodInitialized = true;
  1499. }
  1500. bool V_0 = false;
  1501. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  1502. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  1503. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_3 = NULL;
  1504. bool V_4 = false;
  1505. String_t* V_5 = NULL;
  1506. bool V_6 = false;
  1507. bool V_7 = false;
  1508. bool V_8 = false;
  1509. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_9 = NULL;
  1510. bool V_10 = false;
  1511. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  1512. int32_t G_B7_0 = 0;
  1513. int32_t G_B13_0 = 0;
  1514. {
  1515. String_t* L_0 = ___0_targetUrl;
  1516. bool L_1;
  1517. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  1518. V_4 = L_1;
  1519. bool L_2 = V_4;
  1520. if (!L_2)
  1521. {
  1522. goto IL_0019;
  1523. }
  1524. }
  1525. {
  1526. V_5 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  1527. goto IL_00d6;
  1528. }
  1529. IL_0019:
  1530. {
  1531. V_0 = (bool)0;
  1532. String_t* L_3 = ___1_localUrl;
  1533. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1534. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_4, L_3, NULL);
  1535. V_1 = L_4;
  1536. V_2 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL;
  1537. String_t* L_5 = ___0_targetUrl;
  1538. NullCheck(L_5);
  1539. Il2CppChar L_6;
  1540. L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL);
  1541. V_6 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)47)))? 1 : 0);
  1542. bool L_7 = V_6;
  1543. if (!L_7)
  1544. {
  1545. goto IL_0041;
  1546. }
  1547. }
  1548. {
  1549. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = V_1;
  1550. String_t* L_9 = ___0_targetUrl;
  1551. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1552. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_10, L_8, L_9, NULL);
  1553. V_2 = L_10;
  1554. V_0 = (bool)1;
  1555. }
  1556. IL_0041:
  1557. {
  1558. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11 = V_2;
  1559. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1560. bool L_12;
  1561. L_12 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_11, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  1562. if (!L_12)
  1563. {
  1564. goto IL_0057;
  1565. }
  1566. }
  1567. {
  1568. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1569. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_13 = ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex;
  1570. String_t* L_14 = ___0_targetUrl;
  1571. NullCheck(L_13);
  1572. bool L_15;
  1573. L_15 = Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49(L_13, L_14, NULL);
  1574. G_B7_0 = ((int32_t)(L_15));
  1575. goto IL_0058;
  1576. }
  1577. IL_0057:
  1578. {
  1579. G_B7_0 = 0;
  1580. }
  1581. IL_0058:
  1582. {
  1583. V_7 = (bool)G_B7_0;
  1584. bool L_16 = V_7;
  1585. if (!L_16)
  1586. {
  1587. goto IL_0075;
  1588. }
  1589. }
  1590. {
  1591. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_1;
  1592. NullCheck(L_17);
  1593. String_t* L_18;
  1594. L_18 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_17, NULL);
  1595. String_t* L_19 = ___0_targetUrl;
  1596. String_t* L_20;
  1597. L_20 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_18, _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A, L_19, NULL);
  1598. ___0_targetUrl = L_20;
  1599. V_0 = (bool)1;
  1600. }
  1601. IL_0075:
  1602. {
  1603. V_3 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)NULL;
  1604. }
  1605. try
  1606. {
  1607. {
  1608. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_21 = V_2;
  1609. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1610. bool L_22;
  1611. L_22 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_21, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  1612. if (!L_22)
  1613. {
  1614. goto IL_0091_1;
  1615. }
  1616. }
  1617. {
  1618. String_t* L_23 = ___0_targetUrl;
  1619. NullCheck(L_23);
  1620. Il2CppChar L_24;
  1621. L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, 0, NULL);
  1622. G_B13_0 = ((((int32_t)((((int32_t)L_24) == ((int32_t)((int32_t)46)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1623. goto IL_0092_1;
  1624. }
  1625. IL_0091_1:
  1626. {
  1627. G_B13_0 = 0;
  1628. }
  1629. IL_0092_1:
  1630. {
  1631. V_8 = (bool)G_B13_0;
  1632. bool L_25 = V_8;
  1633. if (!L_25)
  1634. {
  1635. goto IL_009f_1;
  1636. }
  1637. }
  1638. {
  1639. String_t* L_26 = ___0_targetUrl;
  1640. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_27 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1641. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_27, L_26, NULL);
  1642. V_2 = L_27;
  1643. }
  1644. IL_009f_1:
  1645. {
  1646. goto IL_00ab;
  1647. }
  1648. }
  1649. catch(Il2CppExceptionWrapper& e)
  1650. {
  1651. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  1652. {
  1653. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  1654. goto CATCH_00a2;
  1655. }
  1656. throw e;
  1657. }
  1658. CATCH_00a2:
  1659. {
  1660. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_28 = ((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*));;
  1661. V_9 = L_28;
  1662. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_29 = V_9;
  1663. V_3 = L_29;
  1664. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  1665. goto IL_00ab;
  1666. }
  1667. IL_00ab:
  1668. {
  1669. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_30 = V_2;
  1670. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1671. bool L_31;
  1672. L_31 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_30, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  1673. V_10 = L_31;
  1674. bool L_32 = V_10;
  1675. if (!L_32)
  1676. {
  1677. goto IL_00ca;
  1678. }
  1679. }
  1680. try
  1681. {
  1682. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_33 = V_1;
  1683. String_t* L_34 = ___0_targetUrl;
  1684. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_35 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1685. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_35, L_33, L_34, NULL);
  1686. V_2 = L_35;
  1687. V_0 = (bool)1;
  1688. goto IL_00ca;
  1689. }
  1690. catch(Il2CppExceptionWrapper& e)
  1691. {
  1692. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  1693. {
  1694. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  1695. goto CATCH_00c6;
  1696. }
  1697. throw e;
  1698. }
  1699. CATCH_00c6:
  1700. {
  1701. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_36 = ((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*));;
  1702. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_37 = V_3;
  1703. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  1704. IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var)));
  1705. }
  1706. IL_00ca:
  1707. {
  1708. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_38 = V_2;
  1709. String_t* L_39 = ___0_targetUrl;
  1710. bool L_40 = V_0;
  1711. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1712. String_t* L_41;
  1713. L_41 = WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837(L_38, L_39, L_40, NULL);
  1714. V_5 = L_41;
  1715. goto IL_00d6;
  1716. }
  1717. IL_00d6:
  1718. {
  1719. String_t* L_42 = V_5;
  1720. return L_42;
  1721. }
  1722. }
  1723. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_targetUri, String_t* ___1_targetUrl, bool ___2_prependProtocol, const RuntimeMethod* method)
  1724. {
  1725. static bool s_Il2CppMethodInitialized;
  1726. if (!s_Il2CppMethodInitialized)
  1727. {
  1728. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
  1729. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1730. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA);
  1731. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D);
  1732. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710);
  1733. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
  1734. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E);
  1735. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A);
  1736. s_Il2CppMethodInitialized = true;
  1737. }
  1738. String_t* V_0 = NULL;
  1739. bool V_1 = false;
  1740. String_t* V_2 = NULL;
  1741. bool V_3 = false;
  1742. String_t* V_4 = NULL;
  1743. bool V_5 = false;
  1744. bool V_6 = false;
  1745. String_t* V_7 = NULL;
  1746. bool V_8 = false;
  1747. bool V_9 = false;
  1748. bool V_10 = false;
  1749. StringBuilder_t* V_11 = NULL;
  1750. bool V_12 = false;
  1751. String_t* V_13 = NULL;
  1752. bool V_14 = false;
  1753. bool V_15 = false;
  1754. bool V_16 = false;
  1755. int32_t G_B12_0 = 0;
  1756. int32_t G_B19_0 = 0;
  1757. int32_t G_B27_0 = 0;
  1758. {
  1759. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___0_targetUri;
  1760. NullCheck(L_0);
  1761. bool L_1;
  1762. L_1 = Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F(L_0, NULL);
  1763. V_1 = L_1;
  1764. bool L_2 = V_1;
  1765. if (!L_2)
  1766. {
  1767. goto IL_00c9;
  1768. }
  1769. }
  1770. {
  1771. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___0_targetUri;
  1772. NullCheck(L_3);
  1773. bool L_4;
  1774. L_4 = Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A(L_3, NULL);
  1775. V_3 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  1776. bool L_5 = V_3;
  1777. if (!L_5)
  1778. {
  1779. goto IL_0029;
  1780. }
  1781. }
  1782. {
  1783. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = ___0_targetUri;
  1784. NullCheck(L_6);
  1785. String_t* L_7;
  1786. L_7 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_6, NULL);
  1787. V_4 = L_7;
  1788. goto IL_0207;
  1789. }
  1790. IL_0029:
  1791. {
  1792. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = ___0_targetUri;
  1793. NullCheck(L_8);
  1794. String_t* L_9;
  1795. L_9 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_8, NULL);
  1796. V_2 = L_9;
  1797. String_t* L_10 = V_2;
  1798. NullCheck(L_10);
  1799. bool L_11;
  1800. L_11 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_10, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  1801. V_5 = L_11;
  1802. bool L_12 = V_5;
  1803. if (!L_12)
  1804. {
  1805. goto IL_008b;
  1806. }
  1807. }
  1808. {
  1809. String_t* L_13 = V_2;
  1810. NullCheck(L_13);
  1811. bool L_14;
  1812. L_14 = String_Contains_mC67F1B9E92187E2BB125A560160DA30A5BA703F2(L_13, ((int32_t)43), NULL);
  1813. V_6 = L_14;
  1814. bool L_15 = V_6;
  1815. if (!L_15)
  1816. {
  1817. goto IL_0083;
  1818. }
  1819. }
  1820. {
  1821. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = ___0_targetUri;
  1822. NullCheck(L_16);
  1823. String_t* L_17;
  1824. L_17 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_16, NULL);
  1825. V_7 = L_17;
  1826. String_t* L_18 = V_7;
  1827. NullCheck(L_18);
  1828. bool L_19;
  1829. L_19 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_18, _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E, NULL);
  1830. V_8 = (bool)((((int32_t)L_19) == ((int32_t)0))? 1 : 0);
  1831. bool L_20 = V_8;
  1832. if (!L_20)
  1833. {
  1834. goto IL_0082;
  1835. }
  1836. }
  1837. {
  1838. String_t* L_21 = V_7;
  1839. String_t* L_22;
  1840. L_22 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_21, NULL);
  1841. V_4 = L_22;
  1842. goto IL_0207;
  1843. }
  1844. IL_0082:
  1845. {
  1846. }
  1847. IL_0083:
  1848. {
  1849. String_t* L_23 = V_2;
  1850. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1851. String_t* L_24;
  1852. L_24 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_23, NULL);
  1853. V_2 = L_24;
  1854. }
  1855. IL_008b:
  1856. {
  1857. String_t* L_25 = V_2;
  1858. NullCheck(L_25);
  1859. int32_t L_26;
  1860. L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
  1861. if ((((int32_t)L_26) <= ((int32_t)0)))
  1862. {
  1863. goto IL_00a4;
  1864. }
  1865. }
  1866. {
  1867. String_t* L_27 = V_2;
  1868. NullCheck(L_27);
  1869. Il2CppChar L_28;
  1870. L_28 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, 0, NULL);
  1871. G_B12_0 = ((((int32_t)((((int32_t)L_28) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1872. goto IL_00a5;
  1873. }
  1874. IL_00a4:
  1875. {
  1876. G_B12_0 = 0;
  1877. }
  1878. IL_00a5:
  1879. {
  1880. V_9 = (bool)G_B12_0;
  1881. bool L_29 = V_9;
  1882. if (!L_29)
  1883. {
  1884. goto IL_00b7;
  1885. }
  1886. }
  1887. {
  1888. String_t* L_30 = V_2;
  1889. String_t* L_31;
  1890. L_31 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_30, NULL);
  1891. V_2 = L_31;
  1892. }
  1893. IL_00b7:
  1894. {
  1895. String_t* L_32 = V_2;
  1896. String_t* L_33;
  1897. L_33 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_32, NULL);
  1898. V_4 = L_33;
  1899. goto IL_0207;
  1900. }
  1901. IL_00c9:
  1902. {
  1903. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_34 = ___0_targetUri;
  1904. NullCheck(L_34);
  1905. String_t* L_35;
  1906. L_35 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_34, NULL);
  1907. V_0 = L_35;
  1908. bool L_36 = ___2_prependProtocol;
  1909. if (L_36)
  1910. {
  1911. goto IL_00fa;
  1912. }
  1913. }
  1914. {
  1915. String_t* L_37 = ___1_targetUrl;
  1916. NullCheck(L_37);
  1917. int32_t L_38;
  1918. L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_37, NULL);
  1919. String_t* L_39 = V_0;
  1920. NullCheck(L_39);
  1921. int32_t L_40;
  1922. L_40 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_39, NULL);
  1923. if ((((int32_t)L_38) < ((int32_t)((int32_t)il2cpp_codegen_add(L_40, 2)))))
  1924. {
  1925. goto IL_00fa;
  1926. }
  1927. }
  1928. {
  1929. String_t* L_41 = ___1_targetUrl;
  1930. String_t* L_42 = V_0;
  1931. NullCheck(L_42);
  1932. int32_t L_43;
  1933. L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
  1934. NullCheck(L_41);
  1935. Il2CppChar L_44;
  1936. L_44 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_41, ((int32_t)il2cpp_codegen_add(L_43, 1)), NULL);
  1937. G_B19_0 = ((((int32_t)((((int32_t)L_44) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  1938. goto IL_00fb;
  1939. }
  1940. IL_00fa:
  1941. {
  1942. G_B19_0 = 0;
  1943. }
  1944. IL_00fb:
  1945. {
  1946. V_10 = (bool)G_B19_0;
  1947. bool L_45 = V_10;
  1948. if (!L_45)
  1949. {
  1950. goto IL_01e2;
  1951. }
  1952. }
  1953. {
  1954. String_t* L_46 = V_0;
  1955. String_t* L_47 = ___1_targetUrl;
  1956. NullCheck(L_47);
  1957. int32_t L_48;
  1958. L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
  1959. StringBuilder_t* L_49 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
  1960. StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619(L_49, L_46, L_48, NULL);
  1961. V_11 = L_49;
  1962. StringBuilder_t* L_50 = V_11;
  1963. NullCheck(L_50);
  1964. StringBuilder_t* L_51;
  1965. L_51 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_50, ((int32_t)58), NULL);
  1966. String_t* L_52 = V_0;
  1967. bool L_53;
  1968. L_53 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_52, _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A, NULL);
  1969. V_12 = L_53;
  1970. bool L_54 = V_12;
  1971. if (!L_54)
  1972. {
  1973. goto IL_01bb;
  1974. }
  1975. }
  1976. {
  1977. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_55 = ___0_targetUri;
  1978. NullCheck(L_55);
  1979. String_t* L_56;
  1980. L_56 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_55, NULL);
  1981. V_13 = L_56;
  1982. String_t* L_57 = V_13;
  1983. NullCheck(L_57);
  1984. bool L_58;
  1985. L_58 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_57, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  1986. V_14 = L_58;
  1987. bool L_59 = V_14;
  1988. if (!L_59)
  1989. {
  1990. goto IL_0155;
  1991. }
  1992. }
  1993. {
  1994. String_t* L_60 = V_13;
  1995. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  1996. String_t* L_61;
  1997. L_61 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_60, NULL);
  1998. V_13 = L_61;
  1999. }
  2000. IL_0155:
  2001. {
  2002. String_t* L_62 = V_13;
  2003. NullCheck(L_62);
  2004. bool L_63;
  2005. L_63 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_62, _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D, NULL);
  2006. if (!L_63)
  2007. {
  2008. goto IL_017e;
  2009. }
  2010. }
  2011. {
  2012. String_t* L_64 = V_13;
  2013. NullCheck(L_64);
  2014. int32_t L_65;
  2015. L_65 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_64, NULL);
  2016. if ((((int32_t)L_65) <= ((int32_t)6)))
  2017. {
  2018. goto IL_017e;
  2019. }
  2020. }
  2021. {
  2022. String_t* L_66 = V_13;
  2023. NullCheck(L_66);
  2024. Il2CppChar L_67;
  2025. L_67 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_66, 6, NULL);
  2026. G_B27_0 = ((((int32_t)((((int32_t)L_67) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2027. goto IL_017f;
  2028. }
  2029. IL_017e:
  2030. {
  2031. G_B27_0 = 0;
  2032. }
  2033. IL_017f:
  2034. {
  2035. V_15 = (bool)G_B27_0;
  2036. bool L_68 = V_15;
  2037. if (!L_68)
  2038. {
  2039. goto IL_01a6;
  2040. }
  2041. }
  2042. {
  2043. StringBuilder_t* L_69 = V_11;
  2044. NullCheck(L_69);
  2045. StringBuilder_t* L_70;
  2046. L_70 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_69, _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, NULL);
  2047. StringBuilder_t* L_71 = V_11;
  2048. String_t* L_72 = V_13;
  2049. NullCheck(L_72);
  2050. String_t* L_73;
  2051. L_73 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_72, 5, NULL);
  2052. NullCheck(L_71);
  2053. StringBuilder_t* L_74;
  2054. L_74 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_71, L_73, NULL);
  2055. goto IL_01b0;
  2056. }
  2057. IL_01a6:
  2058. {
  2059. StringBuilder_t* L_75 = V_11;
  2060. String_t* L_76 = V_13;
  2061. NullCheck(L_75);
  2062. StringBuilder_t* L_77;
  2063. L_77 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_75, L_76, NULL);
  2064. }
  2065. IL_01b0:
  2066. {
  2067. StringBuilder_t* L_78 = V_11;
  2068. NullCheck(L_78);
  2069. String_t* L_79;
  2070. L_79 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_78);
  2071. V_4 = L_79;
  2072. goto IL_0207;
  2073. }
  2074. IL_01bb:
  2075. {
  2076. StringBuilder_t* L_80 = V_11;
  2077. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_81 = ___0_targetUri;
  2078. NullCheck(L_81);
  2079. String_t* L_82;
  2080. L_82 = Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C(L_81, NULL);
  2081. NullCheck(L_80);
  2082. StringBuilder_t* L_83;
  2083. L_83 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_80, L_82, NULL);
  2084. StringBuilder_t* L_84 = V_11;
  2085. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_85 = ___0_targetUri;
  2086. NullCheck(L_85);
  2087. String_t* L_86;
  2088. L_86 = Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835(L_85, NULL);
  2089. NullCheck(L_84);
  2090. StringBuilder_t* L_87;
  2091. L_87 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_84, L_86, NULL);
  2092. StringBuilder_t* L_88 = V_11;
  2093. NullCheck(L_88);
  2094. String_t* L_89;
  2095. L_89 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_88);
  2096. V_4 = L_89;
  2097. goto IL_0207;
  2098. }
  2099. IL_01e2:
  2100. {
  2101. String_t* L_90 = ___1_targetUrl;
  2102. NullCheck(L_90);
  2103. bool L_91;
  2104. L_91 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_90, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  2105. V_16 = L_91;
  2106. bool L_92 = V_16;
  2107. if (!L_92)
  2108. {
  2109. goto IL_01fd;
  2110. }
  2111. }
  2112. {
  2113. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_93 = ___0_targetUri;
  2114. NullCheck(L_93);
  2115. String_t* L_94;
  2116. L_94 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_93, NULL);
  2117. V_4 = L_94;
  2118. goto IL_0207;
  2119. }
  2120. IL_01fd:
  2121. {
  2122. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_95 = ___0_targetUri;
  2123. NullCheck(L_95);
  2124. String_t* L_96;
  2125. L_96 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_95, NULL);
  2126. V_4 = L_96;
  2127. goto IL_0207;
  2128. }
  2129. IL_0207:
  2130. {
  2131. String_t* L_97 = V_4;
  2132. return L_97;
  2133. }
  2134. }
  2135. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method)
  2136. {
  2137. static bool s_Il2CppMethodInitialized;
  2138. if (!s_Il2CppMethodInitialized)
  2139. {
  2140. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2141. s_Il2CppMethodInitialized = true;
  2142. }
  2143. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  2144. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  2145. String_t* V_2 = NULL;
  2146. {
  2147. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2148. L_0 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2149. String_t* L_1 = ___0_encoded;
  2150. NullCheck(L_0);
  2151. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  2152. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_0, L_1);
  2153. V_0 = L_2;
  2154. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_0;
  2155. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2156. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  2157. L_4 = WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704(L_3, NULL);
  2158. V_1 = L_4;
  2159. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5;
  2160. L_5 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2161. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_1;
  2162. NullCheck(L_5);
  2163. String_t* L_7;
  2164. L_7 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(44, L_5, L_6);
  2165. V_2 = L_7;
  2166. goto IL_0022;
  2167. }
  2168. IL_0022:
  2169. {
  2170. String_t* L_8 = V_2;
  2171. return L_8;
  2172. }
  2173. }
  2174. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_m31ADEB75E00368144C8F223647D81A3B5ADD3D69 (const RuntimeMethod* method)
  2175. {
  2176. static bool s_Il2CppMethodInitialized;
  2177. if (!s_Il2CppMethodInitialized)
  2178. {
  2179. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  2180. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2181. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F);
  2182. s_Il2CppMethodInitialized = true;
  2183. }
  2184. {
  2185. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  2186. Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD(L_0, _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F, NULL);
  2187. ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex = L_0;
  2188. Il2CppCodeGenWriteBarrier((void**)(&((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex), (void*)L_0);
  2189. return;
  2190. }
  2191. }
  2192. #ifdef __clang__
  2193. #pragma clang diagnostic pop
  2194. #endif
  2195. #ifdef __clang__
  2196. #pragma clang diagnostic push
  2197. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2198. #pragma clang diagnostic ignored "-Wunused-variable"
  2199. #endif
  2200. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method)
  2201. {
  2202. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL;
  2203. {
  2204. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2205. L_0 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
  2206. V_0 = L_0;
  2207. goto IL_0009;
  2208. }
  2209. IL_0009:
  2210. {
  2211. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = V_0;
  2212. return L_1;
  2213. }
  2214. }
  2215. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__ctor_mB1AA4D4BE7011A371B590332CC65794270F269F6 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2216. {
  2217. static bool s_Il2CppMethodInitialized;
  2218. if (!s_Il2CppMethodInitialized)
  2219. {
  2220. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
  2221. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var);
  2222. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2223. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var);
  2224. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2225. s_Il2CppMethodInitialized = true;
  2226. }
  2227. int32_t V_0 = 0;
  2228. int32_t V_1 = 0;
  2229. bool V_2 = false;
  2230. bool V_3 = false;
  2231. bool V_4 = false;
  2232. {
  2233. __this->___containsFiles = (bool)0;
  2234. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  2235. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_0 = (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*)il2cpp_codegen_object_new(List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var);
  2236. List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4(L_0, List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var);
  2237. __this->___formData = L_0;
  2238. Il2CppCodeGenWriteBarrier((void**)(&__this->___formData), (void*)L_0);
  2239. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_1 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2240. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_1, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2241. __this->___fieldNames = L_1;
  2242. Il2CppCodeGenWriteBarrier((void**)(&__this->___fieldNames), (void*)L_1);
  2243. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2244. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_2, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2245. __this->___fileNames = L_2;
  2246. Il2CppCodeGenWriteBarrier((void**)(&__this->___fileNames), (void*)L_2);
  2247. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_3 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2248. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_3, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2249. __this->___types = L_3;
  2250. Il2CppCodeGenWriteBarrier((void**)(&__this->___types), (void*)L_3);
  2251. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)40));
  2252. __this->___boundary = L_4;
  2253. Il2CppCodeGenWriteBarrier((void**)(&__this->___boundary), (void*)L_4);
  2254. V_0 = 0;
  2255. goto IL_0080;
  2256. }
  2257. IL_004c:
  2258. {
  2259. int32_t L_5;
  2260. L_5 = Random_Range_m6763D9767F033357F88B6637F048F4ACA4123B68(((int32_t)48), ((int32_t)110), NULL);
  2261. V_1 = L_5;
  2262. int32_t L_6 = V_1;
  2263. V_2 = (bool)((((int32_t)L_6) > ((int32_t)((int32_t)57)))? 1 : 0);
  2264. bool L_7 = V_2;
  2265. if (!L_7)
  2266. {
  2267. goto IL_0064;
  2268. }
  2269. }
  2270. {
  2271. int32_t L_8 = V_1;
  2272. V_1 = ((int32_t)il2cpp_codegen_add(L_8, 7));
  2273. }
  2274. IL_0064:
  2275. {
  2276. int32_t L_9 = V_1;
  2277. V_3 = (bool)((((int32_t)L_9) > ((int32_t)((int32_t)90)))? 1 : 0);
  2278. bool L_10 = V_3;
  2279. if (!L_10)
  2280. {
  2281. goto IL_0071;
  2282. }
  2283. }
  2284. {
  2285. int32_t L_11 = V_1;
  2286. V_1 = ((int32_t)il2cpp_codegen_add(L_11, 6));
  2287. }
  2288. IL_0071:
  2289. {
  2290. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___boundary;
  2291. int32_t L_13 = V_0;
  2292. int32_t L_14 = V_1;
  2293. NullCheck(L_12);
  2294. (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)((int32_t)(uint8_t)L_14));
  2295. int32_t L_15 = V_0;
  2296. V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1));
  2297. }
  2298. IL_0080:
  2299. {
  2300. int32_t L_16 = V_0;
  2301. V_4 = (bool)((((int32_t)L_16) < ((int32_t)((int32_t)40)))? 1 : 0);
  2302. bool L_17 = V_4;
  2303. if (L_17)
  2304. {
  2305. goto IL_004c;
  2306. }
  2307. }
  2308. {
  2309. return;
  2310. }
  2311. }
  2312. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m6315BDFDEA6F0F57ABCBCF4B1AE482E1893BEB8D (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, const RuntimeMethod* method)
  2313. {
  2314. {
  2315. String_t* L_0 = ___0_fieldName;
  2316. String_t* L_1 = ___1_value;
  2317. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  2318. L_2 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2319. WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E(__this, L_0, L_1, L_2, NULL);
  2320. return;
  2321. }
  2322. }
  2323. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___2_e, const RuntimeMethod* method)
  2324. {
  2325. static bool s_Il2CppMethodInitialized;
  2326. if (!s_Il2CppMethodInitialized)
  2327. {
  2328. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var);
  2329. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2330. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843);
  2331. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  2332. s_Il2CppMethodInitialized = true;
  2333. }
  2334. {
  2335. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___fieldNames;
  2336. String_t* L_1 = ___0_fieldName;
  2337. NullCheck(L_0);
  2338. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_0, L_1, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2339. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = __this->___fileNames;
  2340. NullCheck(L_2);
  2341. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_2, (String_t*)NULL, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2342. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_3 = __this->___formData;
  2343. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4 = ___2_e;
  2344. String_t* L_5 = ___1_value;
  2345. NullCheck(L_4);
  2346. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6;
  2347. L_6 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_4, L_5);
  2348. NullCheck(L_3);
  2349. List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_inline(L_3, L_6, List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var);
  2350. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_7 = __this->___types;
  2351. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8 = ___2_e;
  2352. NullCheck(L_8);
  2353. String_t* L_9;
  2354. L_9 = VirtualFuncInvoker0< String_t* >::Invoke(11, L_8);
  2355. String_t* L_10;
  2356. L_10 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843, L_9, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
  2357. NullCheck(L_7);
  2358. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_7, L_10, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2359. return;
  2360. }
  2361. }
  2362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2363. {
  2364. static bool s_Il2CppMethodInitialized;
  2365. if (!s_Il2CppMethodInitialized)
  2366. {
  2367. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
  2368. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2369. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
  2370. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE);
  2371. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02);
  2372. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18);
  2373. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  2374. s_Il2CppMethodInitialized = true;
  2375. }
  2376. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_0 = NULL;
  2377. bool V_1 = false;
  2378. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_2 = NULL;
  2379. {
  2380. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_0 = (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*)il2cpp_codegen_object_new(Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
  2381. Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052(L_0, Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
  2382. V_0 = L_0;
  2383. bool L_1 = __this->___containsFiles;
  2384. V_1 = L_1;
  2385. bool L_2 = V_1;
  2386. if (!L_2)
  2387. {
  2388. goto IL_0047;
  2389. }
  2390. }
  2391. {
  2392. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_3 = V_0;
  2393. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4;
  2394. L_4 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2395. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___boundary;
  2396. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = __this->___boundary;
  2397. NullCheck(L_6);
  2398. NullCheck(L_4);
  2399. String_t* L_7;
  2400. L_7 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(45, L_4, L_5, 0, ((int32_t)(((RuntimeArray*)L_6)->max_length)));
  2401. String_t* L_8;
  2402. L_8 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02, L_7, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
  2403. NullCheck(L_3);
  2404. Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2(L_3, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, L_8, Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2405. goto IL_0058;
  2406. }
  2407. IL_0047:
  2408. {
  2409. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_9 = V_0;
  2410. NullCheck(L_9);
  2411. Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2(L_9, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE, Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2412. }
  2413. IL_0058:
  2414. {
  2415. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_10 = V_0;
  2416. V_2 = L_10;
  2417. goto IL_005c;
  2418. }
  2419. IL_005c:
  2420. {
  2421. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_11 = V_2;
  2422. return L_11;
  2423. }
  2424. }
  2425. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2426. {
  2427. static bool s_Il2CppMethodInitialized;
  2428. if (!s_Il2CppMethodInitialized)
  2429. {
  2430. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  2431. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  2432. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2433. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  2434. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2435. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
  2436. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2437. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2438. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  2439. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  2440. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  2441. s_Il2CppMethodInitialized = true;
  2442. }
  2443. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  2444. bool V_1 = false;
  2445. int32_t V_2 = 0;
  2446. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
  2447. String_t* V_4 = NULL;
  2448. String_t* V_5 = NULL;
  2449. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_6 = NULL;
  2450. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_7 = NULL;
  2451. bool V_8 = false;
  2452. bool V_9 = false;
  2453. String_t* V_10 = NULL;
  2454. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_11 = NULL;
  2455. bool V_12 = false;
  2456. bool V_13 = false;
  2457. int32_t V_14 = 0;
  2458. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_15 = NULL;
  2459. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_16 = NULL;
  2460. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_17 = NULL;
  2461. bool V_18 = false;
  2462. bool V_19 = false;
  2463. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_20 = NULL;
  2464. int32_t G_B6_0 = 0;
  2465. int32_t G_B12_0 = 0;
  2466. {
  2467. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_0 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2468. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_0, ((int32_t)1024), NULL);
  2469. V_0 = L_0;
  2470. }
  2471. {
  2472. auto __finallyBlock = il2cpp::utils::Finally([&]
  2473. {
  2474. FINALLY_03d1:
  2475. {
  2476. {
  2477. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = V_0;
  2478. if (!L_1)
  2479. {
  2480. goto IL_03db;
  2481. }
  2482. }
  2483. {
  2484. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  2485. NullCheck(L_2);
  2486. InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_2);
  2487. }
  2488. IL_03db:
  2489. {
  2490. return;
  2491. }
  2492. }
  2493. });
  2494. try
  2495. {
  2496. {
  2497. bool L_3 = __this->___containsFiles;
  2498. V_1 = L_3;
  2499. bool L_4 = V_1;
  2500. if (!L_4)
  2501. {
  2502. goto IL_0318_1;
  2503. }
  2504. }
  2505. {
  2506. V_2 = 0;
  2507. goto IL_0295_1;
  2508. }
  2509. IL_0022_1:
  2510. {
  2511. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_5 = V_0;
  2512. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2513. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2514. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2515. NullCheck(L_7);
  2516. NullCheck(L_5);
  2517. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_5, L_6, 0, ((int32_t)(((RuntimeArray*)L_7)->max_length)));
  2518. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_8 = V_0;
  2519. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash;
  2520. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash;
  2521. NullCheck(L_10);
  2522. NullCheck(L_8);
  2523. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_8, L_9, 0, ((int32_t)(((RuntimeArray*)L_10)->max_length)));
  2524. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_11 = V_0;
  2525. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___boundary;
  2526. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = __this->___boundary;
  2527. NullCheck(L_13);
  2528. NullCheck(L_11);
  2529. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_11, L_12, 0, ((int32_t)(((RuntimeArray*)L_13)->max_length)));
  2530. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_14 = V_0;
  2531. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2532. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2533. NullCheck(L_16);
  2534. NullCheck(L_14);
  2535. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_14, L_15, 0, ((int32_t)(((RuntimeArray*)L_16)->max_length)));
  2536. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_17 = V_0;
  2537. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader;
  2538. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader;
  2539. NullCheck(L_19);
  2540. NullCheck(L_17);
  2541. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_17, L_18, 0, ((int32_t)(((RuntimeArray*)L_19)->max_length)));
  2542. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_20;
  2543. L_20 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2544. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_21 = __this->___types;
  2545. int32_t L_22 = V_2;
  2546. NullCheck(L_21);
  2547. String_t* L_23;
  2548. L_23 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_21, L_22, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2549. NullCheck(L_20);
  2550. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24;
  2551. L_24 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_20, L_23);
  2552. V_3 = L_24;
  2553. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_25 = V_0;
  2554. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = V_3;
  2555. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = V_3;
  2556. NullCheck(L_27);
  2557. NullCheck(L_25);
  2558. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_25, L_26, 0, ((int32_t)(((RuntimeArray*)L_27)->max_length)));
  2559. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_28 = V_0;
  2560. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2561. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2562. NullCheck(L_30);
  2563. NullCheck(L_28);
  2564. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_28, L_29, 0, ((int32_t)(((RuntimeArray*)L_30)->max_length)));
  2565. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_31 = V_0;
  2566. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader;
  2567. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader;
  2568. NullCheck(L_33);
  2569. NullCheck(L_31);
  2570. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_31, L_32, 0, ((int32_t)(((RuntimeArray*)L_33)->max_length)));
  2571. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_34;
  2572. L_34 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2573. NullCheck(L_34);
  2574. String_t* L_35;
  2575. L_35 = VirtualFuncInvoker0< String_t* >::Invoke(10, L_34);
  2576. V_4 = L_35;
  2577. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_36 = __this->___fieldNames;
  2578. int32_t L_37 = V_2;
  2579. NullCheck(L_36);
  2580. String_t* L_38;
  2581. L_38 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_36, L_37, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2582. V_5 = L_38;
  2583. String_t* L_39 = V_5;
  2584. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_40;
  2585. L_40 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2586. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2587. bool L_41;
  2588. L_41 = WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7(L_39, L_40, NULL);
  2589. if (!L_41)
  2590. {
  2591. goto IL_010d_1;
  2592. }
  2593. }
  2594. {
  2595. String_t* L_42 = V_5;
  2596. NullCheck(L_42);
  2597. int32_t L_43;
  2598. L_43 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_42, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, NULL);
  2599. G_B6_0 = ((((int32_t)L_43) > ((int32_t)(-1)))? 1 : 0);
  2600. goto IL_010e_1;
  2601. }
  2602. IL_010d_1:
  2603. {
  2604. G_B6_0 = 1;
  2605. }
  2606. IL_010e_1:
  2607. {
  2608. V_8 = (bool)G_B6_0;
  2609. bool L_44 = V_8;
  2610. if (!L_44)
  2611. {
  2612. goto IL_014f_1;
  2613. }
  2614. }
  2615. {
  2616. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_45 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)5);
  2617. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_46 = L_45;
  2618. NullCheck(L_46);
  2619. (L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  2620. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_47 = L_46;
  2621. String_t* L_48 = V_4;
  2622. NullCheck(L_47);
  2623. (L_47)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_48);
  2624. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_49 = L_47;
  2625. NullCheck(L_49);
  2626. (L_49)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  2627. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_50 = L_49;
  2628. String_t* L_51 = V_5;
  2629. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_52;
  2630. L_52 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2631. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2632. String_t* L_53;
  2633. L_53 = WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A(L_51, L_52, NULL);
  2634. NullCheck(L_50);
  2635. (L_50)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_53);
  2636. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_50;
  2637. NullCheck(L_54);
  2638. (L_54)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  2639. String_t* L_55;
  2640. L_55 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_54, NULL);
  2641. V_5 = L_55;
  2642. }
  2643. IL_014f_1:
  2644. {
  2645. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_56;
  2646. L_56 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2647. String_t* L_57 = V_5;
  2648. NullCheck(L_56);
  2649. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_58;
  2650. L_58 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_56, L_57);
  2651. V_6 = L_58;
  2652. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_59 = V_0;
  2653. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_60 = V_6;
  2654. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_61 = V_6;
  2655. NullCheck(L_61);
  2656. NullCheck(L_59);
  2657. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_59, L_60, 0, ((int32_t)(((RuntimeArray*)L_61)->max_length)));
  2658. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_62 = V_0;
  2659. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2660. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_63 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote;
  2661. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_64 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote;
  2662. NullCheck(L_64);
  2663. NullCheck(L_62);
  2664. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_62, L_63, 0, ((int32_t)(((RuntimeArray*)L_64)->max_length)));
  2665. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_65 = __this->___fileNames;
  2666. int32_t L_66 = V_2;
  2667. NullCheck(L_65);
  2668. String_t* L_67;
  2669. L_67 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_65, L_66, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2670. V_9 = (bool)((!(((RuntimeObject*)(String_t*)L_67) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  2671. bool L_68 = V_9;
  2672. if (!L_68)
  2673. {
  2674. goto IL_024c_1;
  2675. }
  2676. }
  2677. {
  2678. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_69 = __this->___fileNames;
  2679. int32_t L_70 = V_2;
  2680. NullCheck(L_69);
  2681. String_t* L_71;
  2682. L_71 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_69, L_70, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2683. V_10 = L_71;
  2684. String_t* L_72 = V_10;
  2685. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_73;
  2686. L_73 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2687. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2688. bool L_74;
  2689. L_74 = WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7(L_72, L_73, NULL);
  2690. if (!L_74)
  2691. {
  2692. goto IL_01c5_1;
  2693. }
  2694. }
  2695. {
  2696. String_t* L_75 = V_10;
  2697. NullCheck(L_75);
  2698. int32_t L_76;
  2699. L_76 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_75, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, NULL);
  2700. G_B12_0 = ((((int32_t)L_76) > ((int32_t)(-1)))? 1 : 0);
  2701. goto IL_01c6_1;
  2702. }
  2703. IL_01c5_1:
  2704. {
  2705. G_B12_0 = 1;
  2706. }
  2707. IL_01c6_1:
  2708. {
  2709. V_12 = (bool)G_B12_0;
  2710. bool L_77 = V_12;
  2711. if (!L_77)
  2712. {
  2713. goto IL_0207_1;
  2714. }
  2715. }
  2716. {
  2717. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_78 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)5);
  2718. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_79 = L_78;
  2719. NullCheck(L_79);
  2720. (L_79)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  2721. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = L_79;
  2722. String_t* L_81 = V_4;
  2723. NullCheck(L_80);
  2724. (L_80)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_81);
  2725. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_82 = L_80;
  2726. NullCheck(L_82);
  2727. (L_82)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  2728. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_83 = L_82;
  2729. String_t* L_84 = V_10;
  2730. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_85;
  2731. L_85 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2732. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2733. String_t* L_86;
  2734. L_86 = WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A(L_84, L_85, NULL);
  2735. NullCheck(L_83);
  2736. (L_83)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_86);
  2737. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = L_83;
  2738. NullCheck(L_87);
  2739. (L_87)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  2740. String_t* L_88;
  2741. L_88 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_87, NULL);
  2742. V_10 = L_88;
  2743. }
  2744. IL_0207_1:
  2745. {
  2746. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_89;
  2747. L_89 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2748. String_t* L_90 = V_10;
  2749. NullCheck(L_89);
  2750. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_91;
  2751. L_91 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_89, L_90);
  2752. V_11 = L_91;
  2753. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_92 = V_0;
  2754. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2755. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_93 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField;
  2756. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_94 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField;
  2757. NullCheck(L_94);
  2758. NullCheck(L_92);
  2759. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_92, L_93, 0, ((int32_t)(((RuntimeArray*)L_94)->max_length)));
  2760. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_95 = V_0;
  2761. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_96 = V_11;
  2762. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_97 = V_11;
  2763. NullCheck(L_97);
  2764. NullCheck(L_95);
  2765. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_95, L_96, 0, ((int32_t)(((RuntimeArray*)L_97)->max_length)));
  2766. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_98 = V_0;
  2767. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_99 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote;
  2768. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_100 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote;
  2769. NullCheck(L_100);
  2770. NullCheck(L_98);
  2771. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_98, L_99, 0, ((int32_t)(((RuntimeArray*)L_100)->max_length)));
  2772. }
  2773. IL_024c_1:
  2774. {
  2775. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_101 = V_0;
  2776. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2777. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_102 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2778. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_103 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2779. NullCheck(L_103);
  2780. NullCheck(L_101);
  2781. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_101, L_102, 0, ((int32_t)(((RuntimeArray*)L_103)->max_length)));
  2782. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_104 = V_0;
  2783. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_105 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2784. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_106 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2785. NullCheck(L_106);
  2786. NullCheck(L_104);
  2787. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_104, L_105, 0, ((int32_t)(((RuntimeArray*)L_106)->max_length)));
  2788. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_107 = __this->___formData;
  2789. int32_t L_108 = V_2;
  2790. NullCheck(L_107);
  2791. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_109;
  2792. L_109 = List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6(L_107, L_108, List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  2793. V_7 = L_109;
  2794. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_110 = V_0;
  2795. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_111 = V_7;
  2796. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_112 = V_7;
  2797. NullCheck(L_112);
  2798. NullCheck(L_110);
  2799. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_110, L_111, 0, ((int32_t)(((RuntimeArray*)L_112)->max_length)));
  2800. int32_t L_113 = V_2;
  2801. V_2 = ((int32_t)il2cpp_codegen_add(L_113, 1));
  2802. }
  2803. IL_0295_1:
  2804. {
  2805. int32_t L_114 = V_2;
  2806. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_115 = __this->___formData;
  2807. NullCheck(L_115);
  2808. int32_t L_116;
  2809. L_116 = List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline(L_115, List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  2810. V_13 = (bool)((((int32_t)L_114) < ((int32_t)L_116))? 1 : 0);
  2811. bool L_117 = V_13;
  2812. if (L_117)
  2813. {
  2814. goto IL_0022_1;
  2815. }
  2816. }
  2817. {
  2818. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_118 = V_0;
  2819. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2820. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_119 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2821. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_120 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2822. NullCheck(L_120);
  2823. NullCheck(L_118);
  2824. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_118, L_119, 0, ((int32_t)(((RuntimeArray*)L_120)->max_length)));
  2825. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_121 = V_0;
  2826. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_122 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash;
  2827. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_123 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash;
  2828. NullCheck(L_123);
  2829. NullCheck(L_121);
  2830. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_121, L_122, 0, ((int32_t)(((RuntimeArray*)L_123)->max_length)));
  2831. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_124 = V_0;
  2832. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_125 = __this->___boundary;
  2833. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_126 = __this->___boundary;
  2834. NullCheck(L_126);
  2835. NullCheck(L_124);
  2836. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_124, L_125, 0, ((int32_t)(((RuntimeArray*)L_126)->max_length)));
  2837. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_127 = V_0;
  2838. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_128 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash;
  2839. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_129 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash;
  2840. NullCheck(L_129);
  2841. NullCheck(L_127);
  2842. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_127, L_128, 0, ((int32_t)(((RuntimeArray*)L_129)->max_length)));
  2843. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_130 = V_0;
  2844. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_131 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2845. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_132 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf;
  2846. NullCheck(L_132);
  2847. NullCheck(L_130);
  2848. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_130, L_131, 0, ((int32_t)(((RuntimeArray*)L_132)->max_length)));
  2849. goto IL_03c7_1;
  2850. }
  2851. IL_0318_1:
  2852. {
  2853. V_14 = 0;
  2854. goto IL_03ae_1;
  2855. }
  2856. IL_0321_1:
  2857. {
  2858. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_133;
  2859. L_133 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2860. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_134 = __this->___fieldNames;
  2861. int32_t L_135 = V_14;
  2862. NullCheck(L_134);
  2863. String_t* L_136;
  2864. L_136 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_134, L_135, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2865. NullCheck(L_133);
  2866. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_137;
  2867. L_137 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_133, L_136);
  2868. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2869. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_138;
  2870. L_138 = WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E(L_137, NULL);
  2871. V_15 = L_138;
  2872. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_139 = __this->___formData;
  2873. int32_t L_140 = V_14;
  2874. NullCheck(L_139);
  2875. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_141;
  2876. L_141 = List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6(L_139, L_140, List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  2877. V_16 = L_141;
  2878. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_142 = V_16;
  2879. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_143;
  2880. L_143 = WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E(L_142, NULL);
  2881. V_17 = L_143;
  2882. int32_t L_144 = V_14;
  2883. V_18 = (bool)((((int32_t)L_144) > ((int32_t)0))? 1 : 0);
  2884. bool L_145 = V_18;
  2885. if (!L_145)
  2886. {
  2887. goto IL_0377_1;
  2888. }
  2889. }
  2890. {
  2891. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_146 = V_0;
  2892. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2893. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_147 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand;
  2894. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_148 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand;
  2895. NullCheck(L_148);
  2896. NullCheck(L_146);
  2897. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_146, L_147, 0, ((int32_t)(((RuntimeArray*)L_148)->max_length)));
  2898. }
  2899. IL_0377_1:
  2900. {
  2901. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_149 = V_0;
  2902. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_150 = V_15;
  2903. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_151 = V_15;
  2904. NullCheck(L_151);
  2905. NullCheck(L_149);
  2906. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_149, L_150, 0, ((int32_t)(((RuntimeArray*)L_151)->max_length)));
  2907. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_152 = V_0;
  2908. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2909. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_153 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal;
  2910. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_154 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal;
  2911. NullCheck(L_154);
  2912. NullCheck(L_152);
  2913. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_152, L_153, 0, ((int32_t)(((RuntimeArray*)L_154)->max_length)));
  2914. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_155 = V_0;
  2915. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_156 = V_17;
  2916. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_157 = V_17;
  2917. NullCheck(L_157);
  2918. NullCheck(L_155);
  2919. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_155, L_156, 0, ((int32_t)(((RuntimeArray*)L_157)->max_length)));
  2920. int32_t L_158 = V_14;
  2921. V_14 = ((int32_t)il2cpp_codegen_add(L_158, 1));
  2922. }
  2923. IL_03ae_1:
  2924. {
  2925. int32_t L_159 = V_14;
  2926. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_160 = __this->___formData;
  2927. NullCheck(L_160);
  2928. int32_t L_161;
  2929. L_161 = List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline(L_160, List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  2930. V_19 = (bool)((((int32_t)L_159) < ((int32_t)L_161))? 1 : 0);
  2931. bool L_162 = V_19;
  2932. if (L_162)
  2933. {
  2934. goto IL_0321_1;
  2935. }
  2936. }
  2937. {
  2938. }
  2939. IL_03c7_1:
  2940. {
  2941. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_163 = V_0;
  2942. NullCheck(L_163);
  2943. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_164;
  2944. L_164 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41, L_163);
  2945. V_20 = L_164;
  2946. goto IL_03dc;
  2947. }
  2948. }
  2949. catch(Il2CppExceptionWrapper& e)
  2950. {
  2951. __finallyBlock.StoreException(e.ex);
  2952. }
  2953. }
  2954. IL_03dc:
  2955. {
  2956. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_165 = V_20;
  2957. return L_165;
  2958. }
  2959. }
  2960. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__cctor_m272C4A10B85A1DEC11809F9EEADD0B2DE9166B5F (const RuntimeMethod* method)
  2961. {
  2962. static bool s_Il2CppMethodInitialized;
  2963. if (!s_Il2CppMethodInitialized)
  2964. {
  2965. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2966. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  2967. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  2968. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  2969. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  2970. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  2971. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  2972. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  2973. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  2974. s_Il2CppMethodInitialized = true;
  2975. }
  2976. {
  2977. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2978. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2979. NullCheck(L_0);
  2980. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  2981. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_0, _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  2982. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash = L_1;
  2983. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash), (void*)L_1);
  2984. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  2985. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2986. NullCheck(L_2);
  2987. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  2988. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_2, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  2989. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf = L_3;
  2990. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf), (void*)L_3);
  2991. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4;
  2992. L_4 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  2993. NullCheck(L_4);
  2994. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5;
  2995. L_5 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_4, _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  2996. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader = L_5;
  2997. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader), (void*)L_5);
  2998. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  2999. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3000. NullCheck(L_6);
  3001. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  3002. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_6, _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  3003. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader = L_7;
  3004. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader), (void*)L_7);
  3005. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  3006. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3007. NullCheck(L_8);
  3008. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  3009. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_8, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  3010. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote = L_9;
  3011. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote), (void*)L_9);
  3012. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10;
  3013. L_10 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3014. NullCheck(L_10);
  3015. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  3016. L_11 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_10, _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  3017. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField = L_11;
  3018. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField), (void*)L_11);
  3019. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  3020. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3021. NullCheck(L_12);
  3022. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  3023. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_12, _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  3024. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand = L_13;
  3025. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand), (void*)L_13);
  3026. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_14;
  3027. L_14 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3028. NullCheck(L_14);
  3029. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15;
  3030. L_15 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_14, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  3031. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal = L_15;
  3032. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal), (void*)L_15);
  3033. return;
  3034. }
  3035. }
  3036. #ifdef __clang__
  3037. #pragma clang diagnostic pop
  3038. #endif
  3039. #ifdef __clang__
  3040. #pragma clang diagnostic push
  3041. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3042. #pragma clang diagnostic ignored "-Wunused-variable"
  3043. #endif
  3044. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method)
  3045. {
  3046. uint8_t V_0 = 0x0;
  3047. int32_t V_1 = 0;
  3048. int32_t V_2 = 0;
  3049. bool V_3 = false;
  3050. bool V_4 = false;
  3051. bool V_5 = false;
  3052. bool V_6 = false;
  3053. uint8_t V_7 = 0x0;
  3054. bool V_8 = false;
  3055. int32_t G_B4_0 = 0;
  3056. int32_t G_B9_0 = 0;
  3057. int32_t G_B14_0 = 0;
  3058. {
  3059. V_0 = (uint8_t)0;
  3060. int32_t L_0 = ___1_offset;
  3061. V_1 = L_0;
  3062. goto IL_0082;
  3063. }
  3064. IL_0007:
  3065. {
  3066. uint8_t L_1 = V_0;
  3067. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, ((int32_t)16))));
  3068. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_b;
  3069. int32_t L_3 = V_1;
  3070. NullCheck(L_2);
  3071. int32_t L_4 = L_3;
  3072. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  3073. V_2 = L_5;
  3074. int32_t L_6 = V_2;
  3075. if ((((int32_t)L_6) < ((int32_t)((int32_t)48))))
  3076. {
  3077. goto IL_0021;
  3078. }
  3079. }
  3080. {
  3081. int32_t L_7 = V_2;
  3082. G_B4_0 = ((((int32_t)((((int32_t)L_7) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3083. goto IL_0022;
  3084. }
  3085. IL_0021:
  3086. {
  3087. G_B4_0 = 0;
  3088. }
  3089. IL_0022:
  3090. {
  3091. V_3 = (bool)G_B4_0;
  3092. bool L_8 = V_3;
  3093. if (!L_8)
  3094. {
  3095. goto IL_002d;
  3096. }
  3097. }
  3098. {
  3099. int32_t L_9 = V_2;
  3100. V_2 = ((int32_t)il2cpp_codegen_subtract(L_9, ((int32_t)48)));
  3101. goto IL_0065;
  3102. }
  3103. IL_002d:
  3104. {
  3105. int32_t L_10 = V_2;
  3106. if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
  3107. {
  3108. goto IL_003c;
  3109. }
  3110. }
  3111. {
  3112. int32_t L_11 = V_2;
  3113. G_B9_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)75)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3114. goto IL_003d;
  3115. }
  3116. IL_003c:
  3117. {
  3118. G_B9_0 = 0;
  3119. }
  3120. IL_003d:
  3121. {
  3122. V_4 = (bool)G_B9_0;
  3123. bool L_12 = V_4;
  3124. if (!L_12)
  3125. {
  3126. goto IL_004a;
  3127. }
  3128. }
  3129. {
  3130. int32_t L_13 = V_2;
  3131. V_2 = ((int32_t)il2cpp_codegen_subtract(L_13, ((int32_t)55)));
  3132. goto IL_0065;
  3133. }
  3134. IL_004a:
  3135. {
  3136. int32_t L_14 = V_2;
  3137. if ((((int32_t)L_14) < ((int32_t)((int32_t)97))))
  3138. {
  3139. goto IL_0059;
  3140. }
  3141. }
  3142. {
  3143. int32_t L_15 = V_2;
  3144. G_B14_0 = ((((int32_t)((((int32_t)L_15) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3145. goto IL_005a;
  3146. }
  3147. IL_0059:
  3148. {
  3149. G_B14_0 = 0;
  3150. }
  3151. IL_005a:
  3152. {
  3153. V_5 = (bool)G_B14_0;
  3154. bool L_16 = V_5;
  3155. if (!L_16)
  3156. {
  3157. goto IL_0065;
  3158. }
  3159. }
  3160. {
  3161. int32_t L_17 = V_2;
  3162. V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)87)));
  3163. }
  3164. IL_0065:
  3165. {
  3166. int32_t L_18 = V_2;
  3167. V_6 = (bool)((((int32_t)L_18) > ((int32_t)((int32_t)15)))? 1 : 0);
  3168. bool L_19 = V_6;
  3169. if (!L_19)
  3170. {
  3171. goto IL_0077;
  3172. }
  3173. }
  3174. {
  3175. V_7 = (uint8_t)((int32_t)63);
  3176. goto IL_0096;
  3177. }
  3178. IL_0077:
  3179. {
  3180. uint8_t L_20 = V_0;
  3181. int32_t L_21 = V_2;
  3182. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, ((int32_t)(uint8_t)L_21))));
  3183. int32_t L_22 = V_1;
  3184. V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
  3185. }
  3186. IL_0082:
  3187. {
  3188. int32_t L_23 = V_1;
  3189. int32_t L_24 = ___1_offset;
  3190. V_8 = (bool)((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_add(L_24, 2))))? 1 : 0);
  3191. bool L_25 = V_8;
  3192. if (L_25)
  3193. {
  3194. goto IL_0007;
  3195. }
  3196. }
  3197. {
  3198. uint8_t L_26 = V_0;
  3199. V_7 = L_26;
  3200. goto IL_0096;
  3201. }
  3202. IL_0096:
  3203. {
  3204. uint8_t L_27 = V_7;
  3205. return L_27;
  3206. }
  3207. }
  3208. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651 (uint8_t ___0_b, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_hexChars, uint8_t* ___2_byte0, uint8_t* ___3_byte1, const RuntimeMethod* method)
  3209. {
  3210. {
  3211. uint8_t* L_0 = ___2_byte0;
  3212. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___1_hexChars;
  3213. uint8_t L_2 = ___0_b;
  3214. NullCheck(L_1);
  3215. int32_t L_3 = ((int32_t)((int32_t)L_2>>4));
  3216. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  3217. *((int8_t*)L_0) = (int8_t)L_4;
  3218. uint8_t* L_5 = ___3_byte1;
  3219. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___1_hexChars;
  3220. uint8_t L_7 = ___0_b;
  3221. NullCheck(L_6);
  3222. int32_t L_8 = ((int32_t)((int32_t)L_7&((int32_t)15)));
  3223. uint8_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
  3224. *((int8_t*)L_5) = (int8_t)L_9;
  3225. return;
  3226. }
  3227. }
  3228. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  3229. {
  3230. static bool s_Il2CppMethodInitialized;
  3231. if (!s_Il2CppMethodInitialized)
  3232. {
  3233. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3234. s_Il2CppMethodInitialized = true;
  3235. }
  3236. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3237. {
  3238. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  3239. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3240. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar;
  3241. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace;
  3242. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden;
  3243. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  3244. L_4 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_0, L_1, L_2, L_3, (bool)0, NULL);
  3245. V_0 = L_4;
  3246. goto IL_001a;
  3247. }
  3248. IL_001a:
  3249. {
  3250. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_0;
  3251. return L_5;
  3252. }
  3253. }
  3254. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A (String_t* ___0_toEncode, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  3255. {
  3256. static bool s_Il2CppMethodInitialized;
  3257. if (!s_Il2CppMethodInitialized)
  3258. {
  3259. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3260. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3261. s_Il2CppMethodInitialized = true;
  3262. }
  3263. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3264. String_t* V_1 = NULL;
  3265. {
  3266. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___1_e;
  3267. String_t* L_1 = ___0_toEncode;
  3268. NullCheck(L_0);
  3269. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  3270. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_0, L_1);
  3271. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3272. uint8_t L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpEscapeChar;
  3273. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace;
  3274. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden;
  3275. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6;
  3276. L_6 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_2, L_3, L_4, L_5, (bool)1, NULL);
  3277. V_0 = L_6;
  3278. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3279. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7;
  3280. L_7 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3281. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_0;
  3282. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = V_0;
  3283. NullCheck(L_9);
  3284. NullCheck(L_7);
  3285. String_t* L_10;
  3286. L_10 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(45, L_7, L_8, 0, ((int32_t)(((RuntimeArray*)L_9)->max_length)));
  3287. V_1 = L_10;
  3288. goto IL_0030;
  3289. }
  3290. IL_0030:
  3291. {
  3292. String_t* L_11 = V_1;
  3293. return L_11;
  3294. }
  3295. }
  3296. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_forbidden, bool ___4_uppercase, const RuntimeMethod* method)
  3297. {
  3298. static bool s_Il2CppMethodInitialized;
  3299. if (!s_Il2CppMethodInitialized)
  3300. {
  3301. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3302. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3303. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3304. s_Il2CppMethodInitialized = true;
  3305. }
  3306. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  3307. int32_t V_1 = 0;
  3308. bool V_2 = false;
  3309. bool V_3 = false;
  3310. uint8_t V_4 = 0x0;
  3311. uint8_t V_5 = 0x0;
  3312. bool V_6 = false;
  3313. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_7 = NULL;
  3314. int32_t G_B8_0 = 0;
  3315. int32_t G_B11_0 = 0;
  3316. int32_t G_B10_0 = 0;
  3317. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B12_0 = NULL;
  3318. int32_t G_B12_1 = 0;
  3319. {
  3320. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  3321. NullCheck(L_0);
  3322. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3323. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2)), NULL);
  3324. V_0 = L_1;
  3325. }
  3326. {
  3327. auto __finallyBlock = il2cpp::utils::Finally([&]
  3328. {
  3329. FINALLY_00b3:
  3330. {
  3331. {
  3332. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  3333. if (!L_2)
  3334. {
  3335. goto IL_00bd;
  3336. }
  3337. }
  3338. {
  3339. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  3340. NullCheck(L_3);
  3341. InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  3342. }
  3343. IL_00bd:
  3344. {
  3345. return;
  3346. }
  3347. }
  3348. });
  3349. try
  3350. {
  3351. {
  3352. V_1 = 0;
  3353. goto IL_009a_1;
  3354. }
  3355. IL_0014_1:
  3356. {
  3357. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  3358. int32_t L_5 = V_1;
  3359. NullCheck(L_4);
  3360. int32_t L_6 = L_5;
  3361. uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
  3362. V_2 = (bool)((((int32_t)L_7) == ((int32_t)((int32_t)32)))? 1 : 0);
  3363. bool L_8 = V_2;
  3364. if (!L_8)
  3365. {
  3366. goto IL_0030_1;
  3367. }
  3368. }
  3369. {
  3370. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_9 = V_0;
  3371. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  3372. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___2_space;
  3373. NullCheck(L_11);
  3374. NullCheck(L_9);
  3375. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35, L_9, L_10, 0, ((int32_t)(((RuntimeArray*)L_11)->max_length)));
  3376. goto IL_0095_1;
  3377. }
  3378. IL_0030_1:
  3379. {
  3380. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  3381. int32_t L_13 = V_1;
  3382. NullCheck(L_12);
  3383. int32_t L_14 = L_13;
  3384. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  3385. if ((((int32_t)L_15) < ((int32_t)((int32_t)32))))
  3386. {
  3387. goto IL_0049_1;
  3388. }
  3389. }
  3390. {
  3391. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___0_input;
  3392. int32_t L_17 = V_1;
  3393. NullCheck(L_16);
  3394. int32_t L_18 = L_17;
  3395. uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
  3396. if ((((int32_t)L_19) > ((int32_t)((int32_t)126))))
  3397. {
  3398. goto IL_0049_1;
  3399. }
  3400. }
  3401. {
  3402. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = ___3_forbidden;
  3403. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___0_input;
  3404. int32_t L_22 = V_1;
  3405. NullCheck(L_21);
  3406. int32_t L_23 = L_22;
  3407. uint8_t L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
  3408. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3409. bool L_25;
  3410. L_25 = WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630(L_20, L_24, NULL);
  3411. G_B8_0 = ((int32_t)(L_25));
  3412. goto IL_004a_1;
  3413. }
  3414. IL_0049_1:
  3415. {
  3416. G_B8_0 = 1;
  3417. }
  3418. IL_004a_1:
  3419. {
  3420. V_3 = (bool)G_B8_0;
  3421. bool L_26 = V_3;
  3422. if (!L_26)
  3423. {
  3424. goto IL_0089_1;
  3425. }
  3426. }
  3427. {
  3428. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_27 = V_0;
  3429. uint8_t L_28 = ___1_escapeChar;
  3430. NullCheck(L_27);
  3431. VirtualActionInvoker1< uint8_t >::Invoke(37, L_27, L_28);
  3432. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ___0_input;
  3433. int32_t L_30 = V_1;
  3434. NullCheck(L_29);
  3435. int32_t L_31 = L_30;
  3436. uint8_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
  3437. bool L_33 = ___4_uppercase;
  3438. if (L_33)
  3439. {
  3440. G_B11_0 = ((int32_t)(L_32));
  3441. goto IL_0065_1;
  3442. }
  3443. G_B10_0 = ((int32_t)(L_32));
  3444. }
  3445. {
  3446. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3447. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars;
  3448. G_B12_0 = L_34;
  3449. G_B12_1 = G_B10_0;
  3450. goto IL_006a_1;
  3451. }
  3452. IL_0065_1:
  3453. {
  3454. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3455. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars;
  3456. G_B12_0 = L_35;
  3457. G_B12_1 = G_B11_0;
  3458. }
  3459. IL_006a_1:
  3460. {
  3461. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3462. WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651((uint8_t)G_B12_1, G_B12_0, (&V_4), (&V_5), NULL);
  3463. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_36 = V_0;
  3464. uint8_t L_37 = V_4;
  3465. NullCheck(L_36);
  3466. VirtualActionInvoker1< uint8_t >::Invoke(37, L_36, L_37);
  3467. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_38 = V_0;
  3468. uint8_t L_39 = V_5;
  3469. NullCheck(L_38);
  3470. VirtualActionInvoker1< uint8_t >::Invoke(37, L_38, L_39);
  3471. goto IL_0095_1;
  3472. }
  3473. IL_0089_1:
  3474. {
  3475. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_40 = V_0;
  3476. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = ___0_input;
  3477. int32_t L_42 = V_1;
  3478. NullCheck(L_41);
  3479. int32_t L_43 = L_42;
  3480. uint8_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
  3481. NullCheck(L_40);
  3482. VirtualActionInvoker1< uint8_t >::Invoke(37, L_40, L_44);
  3483. }
  3484. IL_0095_1:
  3485. {
  3486. int32_t L_45 = V_1;
  3487. V_1 = ((int32_t)il2cpp_codegen_add(L_45, 1));
  3488. }
  3489. IL_009a_1:
  3490. {
  3491. int32_t L_46 = V_1;
  3492. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_47 = ___0_input;
  3493. NullCheck(L_47);
  3494. V_6 = (bool)((((int32_t)L_46) < ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length))))? 1 : 0);
  3495. bool L_48 = V_6;
  3496. if (L_48)
  3497. {
  3498. goto IL_0014_1;
  3499. }
  3500. }
  3501. {
  3502. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_49 = V_0;
  3503. NullCheck(L_49);
  3504. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_50;
  3505. L_50 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41, L_49);
  3506. V_7 = L_50;
  3507. goto IL_00be;
  3508. }
  3509. }
  3510. catch(Il2CppExceptionWrapper& e)
  3511. {
  3512. __finallyBlock.StoreException(e.ex);
  3513. }
  3514. }
  3515. IL_00be:
  3516. {
  3517. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_51 = V_7;
  3518. return L_51;
  3519. }
  3520. }
  3521. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method)
  3522. {
  3523. int32_t V_0 = 0;
  3524. int32_t V_1 = 0;
  3525. bool V_2 = false;
  3526. bool V_3 = false;
  3527. bool V_4 = false;
  3528. {
  3529. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  3530. NullCheck(L_0);
  3531. V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
  3532. V_1 = 0;
  3533. goto IL_001d;
  3534. }
  3535. IL_0009:
  3536. {
  3537. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_array;
  3538. int32_t L_2 = V_1;
  3539. NullCheck(L_1);
  3540. int32_t L_3 = L_2;
  3541. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  3542. uint8_t L_5 = ___1_b;
  3543. V_2 = (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
  3544. bool L_6 = V_2;
  3545. if (!L_6)
  3546. {
  3547. goto IL_0018;
  3548. }
  3549. }
  3550. {
  3551. V_3 = (bool)1;
  3552. goto IL_002b;
  3553. }
  3554. IL_0018:
  3555. {
  3556. int32_t L_7 = V_1;
  3557. V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
  3558. }
  3559. IL_001d:
  3560. {
  3561. int32_t L_8 = V_1;
  3562. int32_t L_9 = V_0;
  3563. V_4 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  3564. bool L_10 = V_4;
  3565. if (L_10)
  3566. {
  3567. goto IL_0009;
  3568. }
  3569. }
  3570. {
  3571. V_3 = (bool)0;
  3572. goto IL_002b;
  3573. }
  3574. IL_002b:
  3575. {
  3576. bool L_11 = V_3;
  3577. return L_11;
  3578. }
  3579. }
  3580. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  3581. {
  3582. static bool s_Il2CppMethodInitialized;
  3583. if (!s_Il2CppMethodInitialized)
  3584. {
  3585. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3586. s_Il2CppMethodInitialized = true;
  3587. }
  3588. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3589. {
  3590. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  3591. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3592. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar;
  3593. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace;
  3594. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  3595. L_3 = WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B(L_0, L_1, L_2, NULL);
  3596. V_0 = L_3;
  3597. goto IL_0014;
  3598. }
  3599. IL_0014:
  3600. {
  3601. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_0;
  3602. return L_4;
  3603. }
  3604. }
  3605. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_comperand, const RuntimeMethod* method)
  3606. {
  3607. bool V_0 = false;
  3608. bool V_1 = false;
  3609. int32_t V_2 = 0;
  3610. bool V_3 = false;
  3611. bool V_4 = false;
  3612. {
  3613. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  3614. NullCheck(L_0);
  3615. int32_t L_1 = ___1_index;
  3616. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___2_comperand;
  3617. NullCheck(L_2);
  3618. V_0 = (bool)((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1))) < ((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))? 1 : 0);
  3619. bool L_3 = V_0;
  3620. if (!L_3)
  3621. {
  3622. goto IL_0013;
  3623. }
  3624. }
  3625. {
  3626. V_1 = (bool)0;
  3627. goto IL_0040;
  3628. }
  3629. IL_0013:
  3630. {
  3631. V_2 = 0;
  3632. goto IL_0030;
  3633. }
  3634. IL_0017:
  3635. {
  3636. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_array;
  3637. int32_t L_5 = ___1_index;
  3638. int32_t L_6 = V_2;
  3639. NullCheck(L_4);
  3640. int32_t L_7 = ((int32_t)il2cpp_codegen_add(L_5, L_6));
  3641. uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
  3642. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___2_comperand;
  3643. int32_t L_10 = V_2;
  3644. NullCheck(L_9);
  3645. int32_t L_11 = L_10;
  3646. uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
  3647. V_3 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3648. bool L_13 = V_3;
  3649. if (!L_13)
  3650. {
  3651. goto IL_002c;
  3652. }
  3653. }
  3654. {
  3655. V_1 = (bool)0;
  3656. goto IL_0040;
  3657. }
  3658. IL_002c:
  3659. {
  3660. int32_t L_14 = V_2;
  3661. V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
  3662. }
  3663. IL_0030:
  3664. {
  3665. int32_t L_15 = V_2;
  3666. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___2_comperand;
  3667. NullCheck(L_16);
  3668. V_4 = (bool)((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))? 1 : 0);
  3669. bool L_17 = V_4;
  3670. if (L_17)
  3671. {
  3672. goto IL_0017;
  3673. }
  3674. }
  3675. {
  3676. V_1 = (bool)1;
  3677. goto IL_0040;
  3678. }
  3679. IL_0040:
  3680. {
  3681. bool L_18 = V_1;
  3682. return L_18;
  3683. }
  3684. }
  3685. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, const RuntimeMethod* method)
  3686. {
  3687. static bool s_Il2CppMethodInitialized;
  3688. if (!s_Il2CppMethodInitialized)
  3689. {
  3690. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3691. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3692. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3693. s_Il2CppMethodInitialized = true;
  3694. }
  3695. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  3696. int32_t V_1 = 0;
  3697. bool V_2 = false;
  3698. bool V_3 = false;
  3699. bool V_4 = false;
  3700. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_5 = NULL;
  3701. int32_t G_B7_0 = 0;
  3702. {
  3703. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  3704. NullCheck(L_0);
  3705. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3706. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)(((RuntimeArray*)L_0)->max_length)), NULL);
  3707. V_0 = L_1;
  3708. }
  3709. {
  3710. auto __finallyBlock = il2cpp::utils::Finally([&]
  3711. {
  3712. FINALLY_0087:
  3713. {
  3714. {
  3715. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  3716. if (!L_2)
  3717. {
  3718. goto IL_0091;
  3719. }
  3720. }
  3721. {
  3722. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  3723. NullCheck(L_3);
  3724. InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  3725. }
  3726. IL_0091:
  3727. {
  3728. return;
  3729. }
  3730. }
  3731. });
  3732. try
  3733. {
  3734. {
  3735. V_1 = 0;
  3736. goto IL_0071_1;
  3737. }
  3738. IL_000f_1:
  3739. {
  3740. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  3741. int32_t L_5 = V_1;
  3742. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___2_space;
  3743. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3744. bool L_7;
  3745. L_7 = WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7(L_4, L_5, L_6, NULL);
  3746. V_2 = L_7;
  3747. bool L_8 = V_2;
  3748. if (!L_8)
  3749. {
  3750. goto IL_0031_1;
  3751. }
  3752. }
  3753. {
  3754. int32_t L_9 = V_1;
  3755. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  3756. NullCheck(L_10);
  3757. V_1 = ((int32_t)il2cpp_codegen_add(L_9, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_10)->max_length)), 1))));
  3758. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_11 = V_0;
  3759. NullCheck(L_11);
  3760. VirtualActionInvoker1< uint8_t >::Invoke(37, L_11, (uint8_t)((int32_t)32));
  3761. goto IL_006c_1;
  3762. }
  3763. IL_0031_1:
  3764. {
  3765. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  3766. int32_t L_13 = V_1;
  3767. NullCheck(L_12);
  3768. int32_t L_14 = L_13;
  3769. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  3770. uint8_t L_16 = ___1_escapeChar;
  3771. if ((!(((uint32_t)L_15) == ((uint32_t)L_16))))
  3772. {
  3773. goto IL_0041_1;
  3774. }
  3775. }
  3776. {
  3777. int32_t L_17 = V_1;
  3778. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ___0_input;
  3779. NullCheck(L_18);
  3780. G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add(L_17, 2))) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))))? 1 : 0);
  3781. goto IL_0042_1;
  3782. }
  3783. IL_0041_1:
  3784. {
  3785. G_B7_0 = 0;
  3786. }
  3787. IL_0042_1:
  3788. {
  3789. V_3 = (bool)G_B7_0;
  3790. bool L_19 = V_3;
  3791. if (!L_19)
  3792. {
  3793. goto IL_0060_1;
  3794. }
  3795. }
  3796. {
  3797. int32_t L_20 = V_1;
  3798. V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
  3799. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_21 = V_0;
  3800. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = ___0_input;
  3801. int32_t L_23 = V_1;
  3802. int32_t L_24 = L_23;
  3803. V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1));
  3804. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3805. uint8_t L_25;
  3806. L_25 = WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88(L_22, L_24, NULL);
  3807. NullCheck(L_21);
  3808. VirtualActionInvoker1< uint8_t >::Invoke(37, L_21, L_25);
  3809. goto IL_006c_1;
  3810. }
  3811. IL_0060_1:
  3812. {
  3813. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_26 = V_0;
  3814. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = ___0_input;
  3815. int32_t L_28 = V_1;
  3816. NullCheck(L_27);
  3817. int32_t L_29 = L_28;
  3818. uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
  3819. NullCheck(L_26);
  3820. VirtualActionInvoker1< uint8_t >::Invoke(37, L_26, L_30);
  3821. }
  3822. IL_006c_1:
  3823. {
  3824. int32_t L_31 = V_1;
  3825. V_1 = ((int32_t)il2cpp_codegen_add(L_31, 1));
  3826. }
  3827. IL_0071_1:
  3828. {
  3829. int32_t L_32 = V_1;
  3830. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ___0_input;
  3831. NullCheck(L_33);
  3832. V_4 = (bool)((((int32_t)L_32) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))))? 1 : 0);
  3833. bool L_34 = V_4;
  3834. if (L_34)
  3835. {
  3836. goto IL_000f_1;
  3837. }
  3838. }
  3839. {
  3840. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_35 = V_0;
  3841. NullCheck(L_35);
  3842. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36;
  3843. L_36 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41, L_35);
  3844. V_5 = L_36;
  3845. goto IL_0092;
  3846. }
  3847. }
  3848. catch(Il2CppExceptionWrapper& e)
  3849. {
  3850. __finallyBlock.StoreException(e.ex);
  3851. }
  3852. }
  3853. IL_0092:
  3854. {
  3855. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = V_5;
  3856. return L_37;
  3857. }
  3858. }
  3859. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  3860. {
  3861. static bool s_Il2CppMethodInitialized;
  3862. if (!s_Il2CppMethodInitialized)
  3863. {
  3864. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3865. s_Il2CppMethodInitialized = true;
  3866. }
  3867. int32_t V_0 = 0;
  3868. uint8_t* V_1 = NULL;
  3869. int32_t V_2 = 0;
  3870. bool V_3 = false;
  3871. bool V_4 = false;
  3872. Il2CppChar* V_5 = NULL;
  3873. String_t* V_6 = NULL;
  3874. {
  3875. String_t* L_0 = ___0_s;
  3876. bool L_1;
  3877. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  3878. V_3 = L_1;
  3879. bool L_2 = V_3;
  3880. if (!L_2)
  3881. {
  3882. goto IL_0011;
  3883. }
  3884. }
  3885. {
  3886. V_4 = (bool)1;
  3887. goto IL_0056;
  3888. }
  3889. IL_0011:
  3890. {
  3891. String_t* L_3 = ___0_s;
  3892. NullCheck(L_3);
  3893. int32_t L_4;
  3894. L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
  3895. V_0 = ((int32_t)il2cpp_codegen_multiply(L_4, 2));
  3896. int32_t L_5 = V_0;
  3897. uintptr_t L_6 = ((uintptr_t)L_5);
  3898. int8_t* L_7 = (int8_t*) (L_6 ? alloca(L_6) : NULL);
  3899. memset(L_7, 0, L_6);
  3900. V_1 = (uint8_t*)(L_7);
  3901. String_t* L_8 = ___0_s;
  3902. V_6 = L_8;
  3903. String_t* L_9 = V_6;
  3904. V_5 = (Il2CppChar*)((uintptr_t)L_9);
  3905. Il2CppChar* L_10 = V_5;
  3906. if (!L_10)
  3907. {
  3908. goto IL_0035;
  3909. }
  3910. }
  3911. {
  3912. Il2CppChar* L_11 = V_5;
  3913. int32_t L_12;
  3914. L_12 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
  3915. V_5 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, L_12));
  3916. }
  3917. IL_0035:
  3918. {
  3919. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_13 = ___1_e;
  3920. Il2CppChar* L_14 = V_5;
  3921. String_t* L_15 = ___0_s;
  3922. NullCheck(L_15);
  3923. int32_t L_16;
  3924. L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
  3925. uint8_t* L_17 = V_1;
  3926. int32_t L_18 = V_0;
  3927. NullCheck(L_13);
  3928. int32_t L_19;
  3929. L_19 = VirtualFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(29, L_13, L_14, L_16, L_17, L_18);
  3930. V_2 = L_19;
  3931. V_6 = (String_t*)NULL;
  3932. uint8_t* L_20 = V_1;
  3933. int32_t L_21 = V_2;
  3934. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3935. bool L_22;
  3936. L_22 = WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F(L_20, L_21, NULL);
  3937. V_4 = L_22;
  3938. goto IL_0056;
  3939. }
  3940. IL_0056:
  3941. {
  3942. bool L_23 = V_4;
  3943. return L_23;
  3944. }
  3945. }
  3946. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F (uint8_t* ___0_input, int32_t ___1_inputLength, const RuntimeMethod* method)
  3947. {
  3948. int32_t V_0 = 0;
  3949. bool V_1 = false;
  3950. bool V_2 = false;
  3951. bool V_3 = false;
  3952. int32_t G_B4_0 = 0;
  3953. {
  3954. V_0 = 0;
  3955. goto IL_0026;
  3956. }
  3957. IL_0005:
  3958. {
  3959. uint8_t* L_0 = ___0_input;
  3960. int32_t L_1 = V_0;
  3961. int32_t L_2 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_1))));
  3962. if ((((int32_t)L_2) < ((int32_t)((int32_t)32))))
  3963. {
  3964. goto IL_0018;
  3965. }
  3966. }
  3967. {
  3968. uint8_t* L_3 = ___0_input;
  3969. int32_t L_4 = V_0;
  3970. int32_t L_5 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, L_4))));
  3971. G_B4_0 = ((((int32_t)L_5) > ((int32_t)((int32_t)126)))? 1 : 0);
  3972. goto IL_0019;
  3973. }
  3974. IL_0018:
  3975. {
  3976. G_B4_0 = 1;
  3977. }
  3978. IL_0019:
  3979. {
  3980. V_1 = (bool)G_B4_0;
  3981. bool L_6 = V_1;
  3982. if (!L_6)
  3983. {
  3984. goto IL_0021;
  3985. }
  3986. }
  3987. {
  3988. V_2 = (bool)0;
  3989. goto IL_0032;
  3990. }
  3991. IL_0021:
  3992. {
  3993. int32_t L_7 = V_0;
  3994. V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
  3995. }
  3996. IL_0026:
  3997. {
  3998. int32_t L_8 = V_0;
  3999. int32_t L_9 = ___1_inputLength;
  4000. V_3 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  4001. bool L_10 = V_3;
  4002. if (L_10)
  4003. {
  4004. goto IL_0005;
  4005. }
  4006. }
  4007. {
  4008. V_2 = (bool)1;
  4009. goto IL_0032;
  4010. }
  4011. IL_0032:
  4012. {
  4013. bool L_11 = V_2;
  4014. return L_11;
  4015. }
  4016. }
  4017. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder__cctor_m105AD5C901F1A72DCDD5956E3FDDE83B65AB0152 (const RuntimeMethod* method)
  4018. {
  4019. static bool s_Il2CppMethodInitialized;
  4020. if (!s_Il2CppMethodInitialized)
  4021. {
  4022. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
  4023. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  4024. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4025. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  4026. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  4027. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  4028. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  4029. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  4030. s_Il2CppMethodInitialized = true;
  4031. }
  4032. {
  4033. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  4034. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  4035. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4036. NullCheck(L_0);
  4037. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  4038. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_0, _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  4039. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars = L_1;
  4040. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars), (void*)L_1);
  4041. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  4042. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4043. NullCheck(L_2);
  4044. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  4045. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_2, _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  4046. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars = L_3;
  4047. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars), (void*)L_3);
  4048. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar = (uint8_t)((int32_t)37);
  4049. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  4050. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = L_4;
  4051. NullCheck(L_5);
  4052. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)43));
  4053. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace = L_5;
  4054. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace), (void*)L_5);
  4055. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  4056. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4057. NullCheck(L_6);
  4058. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  4059. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_6, _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  4060. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace = L_7;
  4061. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace), (void*)L_7);
  4062. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  4063. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4064. NullCheck(L_8);
  4065. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  4066. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_8, _stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  4067. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden = L_9;
  4068. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden), (void*)L_9);
  4069. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpEscapeChar = (uint8_t)((int32_t)61);
  4070. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  4071. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10;
  4072. NullCheck(L_11);
  4073. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)95));
  4074. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace = L_11;
  4075. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace), (void*)L_11);
  4076. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  4077. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4078. NullCheck(L_12);
  4079. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  4080. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26, L_12, _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  4081. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden = L_13;
  4082. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden), (void*)L_13);
  4083. return;
  4084. }
  4085. }
  4086. #ifdef __clang__
  4087. #pragma clang diagnostic pop
  4088. #endif
  4089. #ifdef __clang__
  4090. #pragma clang diagnostic push
  4091. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4092. #pragma clang diagnostic ignored "-Wunused-variable"
  4093. #endif
  4094. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  4095. {
  4096. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  4097. }
  4098. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  4099. {
  4100. intptr_t unmarshaledm_Ptr_temp_0;
  4101. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  4102. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  4103. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  4104. }
  4105. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  4106. {
  4107. }
  4108. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  4109. {
  4110. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  4111. }
  4112. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  4113. {
  4114. intptr_t unmarshaledm_Ptr_temp_0;
  4115. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  4116. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  4117. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  4118. }
  4119. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  4120. {
  4121. }
  4122. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_mA6FB8BD8311B029689E2A7FC86E06475FF60010D (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  4123. {
  4124. intptr_t G_B2_0;
  4125. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4126. intptr_t G_B1_0;
  4127. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4128. {
  4129. intptr_t L_0;
  4130. L_0 = BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD_inline(__this, NULL);
  4131. intptr_t L_1 = L_0;
  4132. if (L_1)
  4133. {
  4134. G_B2_0 = L_1;
  4135. goto IL_000f;
  4136. }
  4137. G_B1_0 = L_1;
  4138. }
  4139. {
  4140. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4141. G_B2_0 = G_B1_0;
  4142. }
  4143. IL_000f:
  4144. {
  4145. CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755(G_B2_0, NULL);
  4146. return;
  4147. }
  4148. }
  4149. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_m81E194684391CA512FFC7C3A9172B56D6A1E2752 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  4150. {
  4151. bool V_0 = false;
  4152. {
  4153. V_0 = (bool)0;
  4154. goto IL_0005;
  4155. }
  4156. IL_0005:
  4157. {
  4158. bool L_0 = V_0;
  4159. return L_0;
  4160. }
  4161. }
  4162. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_m73467B32D9B40F6897951F71F80CDDA92F5FD785 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  4163. {
  4164. bool V_0 = false;
  4165. {
  4166. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_certificateData;
  4167. bool L_1;
  4168. L_1 = VirtualFuncInvoker1< bool, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(4, __this, L_0);
  4169. V_0 = L_1;
  4170. goto IL_000b;
  4171. }
  4172. IL_000b:
  4173. {
  4174. bool L_2 = V_0;
  4175. return L_2;
  4176. }
  4177. }
  4178. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  4179. {
  4180. bool V_0 = false;
  4181. {
  4182. intptr_t L_0 = __this->___m_Ptr;
  4183. bool L_1;
  4184. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  4185. V_0 = L_1;
  4186. bool L_2 = V_0;
  4187. if (!L_2)
  4188. {
  4189. goto IL_0029;
  4190. }
  4191. }
  4192. {
  4193. CertificateHandler_ReleaseFromScripting_mA6FB8BD8311B029689E2A7FC86E06475FF60010D(__this, NULL);
  4194. __this->___m_Ptr = 0;
  4195. }
  4196. IL_0029:
  4197. {
  4198. return;
  4199. }
  4200. }
  4201. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  4202. {
  4203. typedef void (*CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755_ftn) (intptr_t);
  4204. static CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755_ftn _il2cpp_icall_func;
  4205. if (!_il2cpp_icall_func)
  4206. _il2cpp_icall_func = (CertificateHandler_ReleaseFromScripting_Injected_m81EA95DF674981D44F04E4D0E8092B628CC56755_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.CertificateHandler::ReleaseFromScripting_Injected(System.IntPtr)");
  4207. _il2cpp_icall_func(___0__unity_self);
  4208. }
  4209. #ifdef __clang__
  4210. #pragma clang diagnostic pop
  4211. #endif
  4212. #ifdef __clang__
  4213. #pragma clang diagnostic push
  4214. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4215. #pragma clang diagnostic ignored "-Wunused-variable"
  4216. #endif
  4217. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___0_handler, const RuntimeMethod* method)
  4218. {
  4219. {
  4220. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = ___0_handler;
  4221. NullCheck(L_0);
  4222. intptr_t L_1 = L_0->___m_Ptr;
  4223. return L_1;
  4224. }
  4225. }
  4226. #ifdef __clang__
  4227. #pragma clang diagnostic pop
  4228. #endif
  4229. #ifdef __clang__
  4230. #pragma clang diagnostic push
  4231. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4232. #pragma clang diagnostic ignored "-Wunused-variable"
  4233. #endif
  4234. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  4235. {
  4236. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  4237. }
  4238. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  4239. {
  4240. intptr_t unmarshaledm_Ptr_temp_0;
  4241. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  4242. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  4243. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  4244. }
  4245. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  4246. {
  4247. }
  4248. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  4249. {
  4250. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  4251. }
  4252. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  4253. {
  4254. intptr_t unmarshaledm_Ptr_temp_0;
  4255. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  4256. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  4257. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  4258. }
  4259. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  4260. {
  4261. }
  4262. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_m286AFAC5F442211CA34E6E3BEAB79CD585EC9DF2 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4263. {
  4264. intptr_t G_B2_0;
  4265. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4266. intptr_t G_B1_0;
  4267. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4268. {
  4269. intptr_t L_0;
  4270. L_0 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(__this, NULL);
  4271. intptr_t L_1 = L_0;
  4272. if (L_1)
  4273. {
  4274. G_B2_0 = L_1;
  4275. goto IL_000f;
  4276. }
  4277. G_B1_0 = L_1;
  4278. }
  4279. {
  4280. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4281. G_B2_0 = G_B1_0;
  4282. }
  4283. IL_000f:
  4284. {
  4285. DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B(G_B2_0, NULL);
  4286. return;
  4287. }
  4288. }
  4289. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4290. {
  4291. {
  4292. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4293. return;
  4294. }
  4295. }
  4296. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Finalize_m21F7E76D39E0CBF30890C6A0C8EDBF049AFFBB14 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4297. {
  4298. {
  4299. }
  4300. {
  4301. auto __finallyBlock = il2cpp::utils::Finally([&]
  4302. {
  4303. FINALLY_000b:
  4304. {
  4305. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  4306. return;
  4307. }
  4308. });
  4309. try
  4310. {
  4311. VirtualActionInvoker0::Invoke(5, __this);
  4312. goto IL_0013;
  4313. }
  4314. catch(Il2CppExceptionWrapper& e)
  4315. {
  4316. __finallyBlock.StoreException(e.ex);
  4317. }
  4318. }
  4319. IL_0013:
  4320. {
  4321. return;
  4322. }
  4323. }
  4324. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4325. {
  4326. bool V_0 = false;
  4327. {
  4328. intptr_t L_0 = __this->___m_Ptr;
  4329. bool L_1;
  4330. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  4331. V_0 = L_1;
  4332. bool L_2 = V_0;
  4333. if (!L_2)
  4334. {
  4335. goto IL_0029;
  4336. }
  4337. }
  4338. {
  4339. DownloadHandler_ReleaseFromScripting_m286AFAC5F442211CA34E6E3BEAB79CD585EC9DF2(__this, NULL);
  4340. __this->___m_Ptr = 0;
  4341. }
  4342. IL_0029:
  4343. {
  4344. return;
  4345. }
  4346. }
  4347. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_get_text_mA6DE5CB2647A21E577B963708DC3D0DA4DBFE7D8 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4348. {
  4349. String_t* V_0 = NULL;
  4350. {
  4351. String_t* L_0;
  4352. L_0 = VirtualFuncInvoker0< String_t* >::Invoke(7, __this);
  4353. V_0 = L_0;
  4354. goto IL_000a;
  4355. }
  4356. IL_000a:
  4357. {
  4358. String_t* L_1 = V_0;
  4359. return L_1;
  4360. }
  4361. }
  4362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_GetNativeData_m884DE3A326286BFE7B26098CD55D6DCD7D146E23 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4363. {
  4364. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  4365. memset((&V_0), 0, sizeof(V_0));
  4366. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
  4367. memset((&V_1), 0, sizeof(V_1));
  4368. {
  4369. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  4370. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = V_0;
  4371. V_1 = L_0;
  4372. goto IL_000d;
  4373. }
  4374. IL_000d:
  4375. {
  4376. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1 = V_1;
  4377. return L_1;
  4378. }
  4379. }
  4380. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetText_m19ABD4540E4BE6A4D4340933E01D5DE687020E85 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4381. {
  4382. static bool s_Il2CppMethodInitialized;
  4383. if (!s_Il2CppMethodInitialized)
  4384. {
  4385. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  4386. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  4387. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  4388. s_Il2CppMethodInitialized = true;
  4389. }
  4390. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  4391. memset((&V_0), 0, sizeof(V_0));
  4392. bool V_1 = false;
  4393. String_t* V_2 = NULL;
  4394. int32_t G_B3_0 = 0;
  4395. {
  4396. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0;
  4397. L_0 = VirtualFuncInvoker0< NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF >::Invoke(6, __this);
  4398. V_0 = L_0;
  4399. bool L_1;
  4400. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&V_0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  4401. if (!L_1)
  4402. {
  4403. goto IL_001d;
  4404. }
  4405. }
  4406. {
  4407. int32_t L_2;
  4408. L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length);
  4409. G_B3_0 = ((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
  4410. goto IL_001e;
  4411. }
  4412. IL_001d:
  4413. {
  4414. G_B3_0 = 0;
  4415. }
  4416. IL_001e:
  4417. {
  4418. V_1 = (bool)G_B3_0;
  4419. bool L_3 = V_1;
  4420. if (!L_3)
  4421. {
  4422. goto IL_003f;
  4423. }
  4424. }
  4425. {
  4426. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
  4427. void* L_5;
  4428. L_5 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF(L_4, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  4429. int32_t L_6;
  4430. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length);
  4431. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7;
  4432. L_7 = DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5(__this, NULL);
  4433. String_t* L_8;
  4434. L_8 = String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339(NULL, (int8_t*)L_5, 0, L_6, L_7, NULL);
  4435. V_2 = L_8;
  4436. goto IL_0047;
  4437. }
  4438. IL_003f:
  4439. {
  4440. V_2 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  4441. goto IL_0047;
  4442. }
  4443. IL_0047:
  4444. {
  4445. String_t* L_9 = V_2;
  4446. return L_9;
  4447. }
  4448. }
  4449. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4450. {
  4451. static bool s_Il2CppMethodInitialized;
  4452. if (!s_Il2CppMethodInitialized)
  4453. {
  4454. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
  4455. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571);
  4456. s_Il2CppMethodInitialized = true;
  4457. }
  4458. String_t* V_0 = NULL;
  4459. bool V_1 = false;
  4460. int32_t V_2 = 0;
  4461. bool V_3 = false;
  4462. int32_t V_4 = 0;
  4463. bool V_5 = false;
  4464. String_t* V_6 = NULL;
  4465. int32_t V_7 = 0;
  4466. bool V_8 = false;
  4467. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_9 = NULL;
  4468. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_10 = NULL;
  4469. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* V_11 = NULL;
  4470. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  4471. {
  4472. String_t* L_0;
  4473. L_0 = DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC(__this, NULL);
  4474. V_0 = L_0;
  4475. String_t* L_1 = V_0;
  4476. bool L_2;
  4477. L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL);
  4478. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  4479. bool L_3 = V_1;
  4480. if (!L_3)
  4481. {
  4482. goto IL_00e7;
  4483. }
  4484. }
  4485. {
  4486. String_t* L_4 = V_0;
  4487. NullCheck(L_4);
  4488. int32_t L_5;
  4489. L_5 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_4, _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571, 5, NULL);
  4490. V_2 = L_5;
  4491. int32_t L_6 = V_2;
  4492. V_3 = (bool)((((int32_t)L_6) > ((int32_t)(-1)))? 1 : 0);
  4493. bool L_7 = V_3;
  4494. if (!L_7)
  4495. {
  4496. goto IL_00e6;
  4497. }
  4498. }
  4499. {
  4500. String_t* L_8 = V_0;
  4501. int32_t L_9 = V_2;
  4502. NullCheck(L_8);
  4503. int32_t L_10;
  4504. L_10 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_8, ((int32_t)61), L_9, NULL);
  4505. V_4 = L_10;
  4506. int32_t L_11 = V_4;
  4507. V_5 = (bool)((((int32_t)L_11) > ((int32_t)(-1)))? 1 : 0);
  4508. bool L_12 = V_5;
  4509. if (!L_12)
  4510. {
  4511. goto IL_00e5;
  4512. }
  4513. }
  4514. {
  4515. String_t* L_13 = V_0;
  4516. int32_t L_14 = V_4;
  4517. NullCheck(L_13);
  4518. String_t* L_15;
  4519. L_15 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
  4520. NullCheck(L_15);
  4521. String_t* L_16;
  4522. L_16 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_15, NULL);
  4523. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
  4524. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17;
  4525. NullCheck(L_18);
  4526. (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39));
  4527. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = L_18;
  4528. NullCheck(L_19);
  4529. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)34));
  4530. NullCheck(L_16);
  4531. String_t* L_20;
  4532. L_20 = String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5(L_16, L_19, NULL);
  4533. NullCheck(L_20);
  4534. String_t* L_21;
  4535. L_21 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_20, NULL);
  4536. V_6 = L_21;
  4537. String_t* L_22 = V_6;
  4538. NullCheck(L_22);
  4539. int32_t L_23;
  4540. L_23 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_22, ((int32_t)59), NULL);
  4541. V_7 = L_23;
  4542. int32_t L_24 = V_7;
  4543. V_8 = (bool)((((int32_t)L_24) > ((int32_t)(-1)))? 1 : 0);
  4544. bool L_25 = V_8;
  4545. if (!L_25)
  4546. {
  4547. goto IL_0099;
  4548. }
  4549. }
  4550. {
  4551. String_t* L_26 = V_6;
  4552. int32_t L_27 = V_7;
  4553. NullCheck(L_26);
  4554. String_t* L_28;
  4555. L_28 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_26, 0, L_27, NULL);
  4556. V_6 = L_28;
  4557. }
  4558. IL_0099:
  4559. {
  4560. }
  4561. try
  4562. {
  4563. String_t* L_29 = V_6;
  4564. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_30;
  4565. L_30 = Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187(L_29, NULL);
  4566. V_9 = L_30;
  4567. goto IL_00f0;
  4568. }
  4569. catch(Il2CppExceptionWrapper& e)
  4570. {
  4571. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  4572. {
  4573. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  4574. goto CATCH_00a6;
  4575. }
  4576. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  4577. {
  4578. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  4579. goto CATCH_00c5;
  4580. }
  4581. throw e;
  4582. }
  4583. CATCH_00a6:
  4584. {
  4585. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_31 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));;
  4586. V_10 = L_31;
  4587. String_t* L_32 = V_6;
  4588. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_33 = V_10;
  4589. NullCheck(L_33);
  4590. String_t* L_34;
  4591. L_34 = VirtualFuncInvoker0< String_t* >::Invoke(5, L_33);
  4592. String_t* L_35;
  4593. L_35 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_32, L_34, NULL);
  4594. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  4595. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_35, NULL);
  4596. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  4597. goto IL_00e4;
  4598. }
  4599. CATCH_00c5:
  4600. {
  4601. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_36 = ((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IL2CPP_GET_ACTIVE_EXCEPTION(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*));;
  4602. V_11 = L_36;
  4603. String_t* L_37 = V_6;
  4604. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_38 = V_11;
  4605. NullCheck(L_38);
  4606. String_t* L_39;
  4607. L_39 = VirtualFuncInvoker0< String_t* >::Invoke(5, L_38);
  4608. String_t* L_40;
  4609. L_40 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_37, L_39, NULL);
  4610. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  4611. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_40, NULL);
  4612. IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
  4613. goto IL_00e4;
  4614. }
  4615. IL_00e4:
  4616. {
  4617. }
  4618. IL_00e5:
  4619. {
  4620. }
  4621. IL_00e6:
  4622. {
  4623. }
  4624. IL_00e7:
  4625. {
  4626. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41;
  4627. L_41 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  4628. V_9 = L_41;
  4629. goto IL_00f0;
  4630. }
  4631. IL_00f0:
  4632. {
  4633. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_42 = V_9;
  4634. return L_42;
  4635. }
  4636. }
  4637. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4638. {
  4639. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_0;
  4640. memset((&V_0), 0, sizeof(V_0));
  4641. String_t* V_1 = NULL;
  4642. intptr_t G_B2_0;
  4643. memset((&G_B2_0), 0, sizeof(G_B2_0));
  4644. intptr_t G_B1_0;
  4645. memset((&G_B1_0), 0, sizeof(G_B1_0));
  4646. {
  4647. auto __finallyBlock = il2cpp::utils::Finally([&]
  4648. {
  4649. FINALLY_0019:
  4650. {
  4651. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_0 = V_0;
  4652. String_t* L_1;
  4653. L_1 = OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062(L_0, NULL);
  4654. V_1 = L_1;
  4655. return;
  4656. }
  4657. });
  4658. try
  4659. {
  4660. {
  4661. intptr_t L_2;
  4662. L_2 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(__this, NULL);
  4663. intptr_t L_3 = L_2;
  4664. if (L_3)
  4665. {
  4666. G_B2_0 = L_3;
  4667. goto IL_000f_1;
  4668. }
  4669. G_B1_0 = L_3;
  4670. }
  4671. {
  4672. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  4673. G_B2_0 = G_B1_0;
  4674. }
  4675. IL_000f_1:
  4676. {
  4677. DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9(G_B2_0, (&V_0), NULL);
  4678. goto IL_0021;
  4679. }
  4680. }
  4681. catch(Il2CppExceptionWrapper& e)
  4682. {
  4683. __finallyBlock.StoreException(e.ex);
  4684. }
  4685. }
  4686. IL_0021:
  4687. {
  4688. String_t* L_4 = V_1;
  4689. return L_4;
  4690. }
  4691. }
  4692. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DownloadHandler_ReceiveData_mF892EB77524A60DF1F82A2DA00F17BECB480CD93 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, int32_t ___1_dataLength, const RuntimeMethod* method)
  4693. {
  4694. bool V_0 = false;
  4695. {
  4696. V_0 = (bool)1;
  4697. goto IL_0005;
  4698. }
  4699. IL_0005:
  4700. {
  4701. bool L_0 = V_0;
  4702. return L_0;
  4703. }
  4704. }
  4705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLengthHeader_m545073C4FB5AB9BB6640D24FC2F32070E5FE3F17 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, uint64_t ___0_contentLength, const RuntimeMethod* method)
  4706. {
  4707. {
  4708. uint64_t L_0 = ___0_contentLength;
  4709. VirtualActionInvoker1< int32_t >::Invoke(10, __this, ((int32_t)L_0));
  4710. return;
  4711. }
  4712. }
  4713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLength_m058DE0B56C3EBE8ECE3F9570852024EE2A84DE4F (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, int32_t ___0_contentLength, const RuntimeMethod* method)
  4714. {
  4715. {
  4716. return;
  4717. }
  4718. }
  4719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CompleteContent_m0FFC337906FF9BF8BDD546906D48DA57F52F81CA (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4720. {
  4721. {
  4722. return;
  4723. }
  4724. }
  4725. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DownloadHandler_GetProgress_mB440AC38C72F2E14DD53259E1D0C9D7612F0791F (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  4726. {
  4727. float V_0 = 0.0f;
  4728. {
  4729. V_0 = (0.0f);
  4730. goto IL_0009;
  4731. }
  4732. IL_0009:
  4733. {
  4734. float L_0 = V_0;
  4735. return L_0;
  4736. }
  4737. }
  4738. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method)
  4739. {
  4740. intptr_t G_B3_0;
  4741. memset((&G_B3_0), 0, sizeof(G_B3_0));
  4742. {
  4743. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  4744. if (!L_0)
  4745. {
  4746. goto IL_000b;
  4747. }
  4748. }
  4749. {
  4750. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_1 = ___0_dh;
  4751. intptr_t L_2;
  4752. L_2 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(L_1, NULL);
  4753. G_B3_0 = L_2;
  4754. goto IL_000e;
  4755. }
  4756. IL_000b:
  4757. {
  4758. G_B3_0 = ((intptr_t)0);
  4759. }
  4760. IL_000e:
  4761. {
  4762. int32_t* L_3 = ___1_length;
  4763. uint8_t* L_4;
  4764. L_4 = DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E(G_B3_0, L_3, NULL);
  4765. return L_4;
  4766. }
  4767. }
  4768. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method)
  4769. {
  4770. static bool s_Il2CppMethodInitialized;
  4771. if (!s_Il2CppMethodInitialized)
  4772. {
  4773. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  4774. s_Il2CppMethodInitialized = true;
  4775. }
  4776. int32_t V_0 = 0;
  4777. uint8_t* V_1 = NULL;
  4778. bool V_2 = false;
  4779. bool V_3 = false;
  4780. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
  4781. memset((&V_4), 0, sizeof(V_4));
  4782. {
  4783. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  4784. uint8_t* L_1;
  4785. L_1 = DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302(L_0, (&V_0), NULL);
  4786. V_1 = L_1;
  4787. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_2 = ___1_nativeArray;
  4788. bool L_3;
  4789. L_3 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_2, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  4790. V_2 = L_3;
  4791. bool L_4 = V_2;
  4792. if (!L_4)
  4793. {
  4794. goto IL_0035;
  4795. }
  4796. }
  4797. {
  4798. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_5 = ___1_nativeArray;
  4799. int32_t L_6;
  4800. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_5)->___m_Length);
  4801. int32_t L_7 = V_0;
  4802. V_3 = (bool)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0);
  4803. bool L_8 = V_3;
  4804. if (!L_8)
  4805. {
  4806. goto IL_002d;
  4807. }
  4808. }
  4809. {
  4810. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_9 = ___1_nativeArray;
  4811. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_10 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_9);
  4812. V_4 = L_10;
  4813. goto IL_0048;
  4814. }
  4815. IL_002d:
  4816. {
  4817. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_11 = ___1_nativeArray;
  4818. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_11, NULL);
  4819. }
  4820. IL_0035:
  4821. {
  4822. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_12 = ___1_nativeArray;
  4823. uint8_t* L_13 = V_1;
  4824. int32_t L_14 = V_0;
  4825. DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE(L_12, L_13, L_14, NULL);
  4826. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_15 = ___1_nativeArray;
  4827. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_16 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_15);
  4828. V_4 = L_16;
  4829. goto IL_0048;
  4830. }
  4831. IL_0048:
  4832. {
  4833. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_17 = V_4;
  4834. return L_17;
  4835. }
  4836. }
  4837. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method)
  4838. {
  4839. static bool s_Il2CppMethodInitialized;
  4840. if (!s_Il2CppMethodInitialized)
  4841. {
  4842. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  4843. s_Il2CppMethodInitialized = true;
  4844. }
  4845. bool V_0 = false;
  4846. {
  4847. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  4848. bool L_1;
  4849. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  4850. V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  4851. bool L_2 = V_0;
  4852. if (!L_2)
  4853. {
  4854. goto IL_0010;
  4855. }
  4856. }
  4857. {
  4858. goto IL_0017;
  4859. }
  4860. IL_0010:
  4861. {
  4862. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = ___0_data;
  4863. il2cpp_codegen_initobj(L_3, sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  4864. }
  4865. IL_0017:
  4866. {
  4867. return;
  4868. }
  4869. }
  4870. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, uint8_t* ___1_bytes, int32_t ___2_length, const RuntimeMethod* method)
  4871. {
  4872. static bool s_Il2CppMethodInitialized;
  4873. if (!s_Il2CppMethodInitialized)
  4874. {
  4875. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  4876. s_Il2CppMethodInitialized = true;
  4877. }
  4878. {
  4879. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  4880. uint8_t* L_1 = ___1_bytes;
  4881. int32_t L_2 = ___2_length;
  4882. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
  4883. L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA((void*)L_1, L_2, 4, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  4884. *(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_0 = L_3;
  4885. return;
  4886. }
  4887. }
  4888. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B (intptr_t ___0__unity_self, const RuntimeMethod* method)
  4889. {
  4890. typedef void (*DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B_ftn) (intptr_t);
  4891. static DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B_ftn _il2cpp_icall_func;
  4892. if (!_il2cpp_icall_func)
  4893. _il2cpp_icall_func = (DownloadHandler_ReleaseFromScripting_Injected_m58D4660921050A173147221836BBECDFB83CC22B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::ReleaseFromScripting_Injected(System.IntPtr)");
  4894. _il2cpp_icall_func(___0__unity_self);
  4895. }
  4896. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method)
  4897. {
  4898. typedef void (*DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  4899. static DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9_ftn _il2cpp_icall_func;
  4900. if (!_il2cpp_icall_func)
  4901. _il2cpp_icall_func = (DownloadHandler_GetContentType_Injected_m11E7081CBE3683EA2B82AD09571D01D5427223E9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::GetContentType_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  4902. _il2cpp_icall_func(___0__unity_self, ___1_ret);
  4903. }
  4904. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E (intptr_t ___0_dh, int32_t* ___1_length, const RuntimeMethod* method)
  4905. {
  4906. typedef uint8_t* (*DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E_ftn) (intptr_t, int32_t*);
  4907. static DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E_ftn _il2cpp_icall_func;
  4908. if (!_il2cpp_icall_func)
  4909. _il2cpp_icall_func = (DownloadHandler_InternalGetByteArray_Injected_m6CAB496A84019E22EA4E6A12DA24C15663271F5E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::InternalGetByteArray_Injected(System.IntPtr,System.Int32&)");
  4910. uint8_t* icallRetVal = _il2cpp_icall_func(___0_dh, ___1_length);
  4911. return icallRetVal;
  4912. }
  4913. #ifdef __clang__
  4914. #pragma clang diagnostic pop
  4915. #endif
  4916. #ifdef __clang__
  4917. #pragma clang diagnostic push
  4918. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4919. #pragma clang diagnostic ignored "-Wunused-variable"
  4920. #endif
  4921. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_handler, const RuntimeMethod* method)
  4922. {
  4923. {
  4924. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_handler;
  4925. NullCheck(L_0);
  4926. intptr_t L_1 = L_0->___m_Ptr;
  4927. return L_1;
  4928. }
  4929. }
  4930. #ifdef __clang__
  4931. #pragma clang diagnostic pop
  4932. #endif
  4933. #ifdef __clang__
  4934. #pragma clang diagnostic push
  4935. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4936. #pragma clang diagnostic ignored "-Wunused-variable"
  4937. #endif
  4938. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  4939. {
  4940. marshaled.___m_NativeData = unmarshaled.___m_NativeData;
  4941. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  4942. }
  4943. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  4944. {
  4945. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  4946. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  4947. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData;
  4948. unmarshaled.___m_NativeData = unmarshaledm_NativeData_temp_0;
  4949. intptr_t unmarshaledm_Ptr_temp_1;
  4950. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  4951. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr;
  4952. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_1;
  4953. }
  4954. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  4955. {
  4956. }
  4957. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  4958. {
  4959. marshaled.___m_NativeData = unmarshaled.___m_NativeData;
  4960. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  4961. }
  4962. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  4963. {
  4964. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  4965. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  4966. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData;
  4967. unmarshaled.___m_NativeData = unmarshaledm_NativeData_temp_0;
  4968. intptr_t unmarshaledm_Ptr_temp_1;
  4969. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  4970. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr;
  4971. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_1;
  4972. }
  4973. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  4974. {
  4975. }
  4976. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method)
  4977. {
  4978. typedef intptr_t (*DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn) (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*);
  4979. static DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn _il2cpp_icall_func;
  4980. if (!_il2cpp_icall_func)
  4981. _il2cpp_icall_func = (DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)");
  4982. intptr_t icallRetVal = _il2cpp_icall_func(___0_obj);
  4983. return icallRetVal;
  4984. }
  4985. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  4986. {
  4987. {
  4988. intptr_t L_0;
  4989. L_0 = DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985(__this, NULL);
  4990. ((DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)__this)->___m_Ptr = L_0;
  4991. return;
  4992. }
  4993. }
  4994. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  4995. {
  4996. {
  4997. DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496(__this, NULL);
  4998. DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053(__this, NULL);
  4999. return;
  5000. }
  5001. }
  5002. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandlerBuffer_GetNativeData_m0CA5C7DDC84622499CFED57069526BCDD240C28F (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  5003. {
  5004. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  5005. memset((&V_0), 0, sizeof(V_0));
  5006. {
  5007. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_NativeData);
  5008. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
  5009. L_1 = DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89(__this, L_0, NULL);
  5010. V_0 = L_1;
  5011. goto IL_0010;
  5012. }
  5013. IL_0010:
  5014. {
  5015. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2 = V_0;
  5016. return L_2;
  5017. }
  5018. }
  5019. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_Dispose_m5B47B0183194D920B76BDC9001C3FE81A73D9D39 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  5020. {
  5021. {
  5022. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_NativeData);
  5023. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_0, NULL);
  5024. DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607(__this, NULL);
  5025. return;
  5026. }
  5027. }
  5028. #ifdef __clang__
  5029. #pragma clang diagnostic pop
  5030. #endif
  5031. #ifdef __clang__
  5032. #pragma clang diagnostic push
  5033. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5034. #pragma clang diagnostic ignored "-Wunused-variable"
  5035. #endif
  5036. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  5037. {
  5038. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  5039. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  5040. }
  5041. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  5042. {
  5043. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  5044. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  5045. }
  5046. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  5047. {
  5048. }
  5049. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  5050. {
  5051. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  5052. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  5053. }
  5054. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  5055. {
  5056. Exception_t* ___U3CwebRequestU3Ek__BackingFieldException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  5057. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingFieldException, NULL);
  5058. }
  5059. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  5060. {
  5061. }
  5062. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_m4F125AF4AF1E13484E55EAA64570FA3967117F64 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, intptr_t ___0_ptr, const RuntimeMethod* method)
  5063. {
  5064. {
  5065. intptr_t L_0 = ___0_ptr;
  5066. AsyncOperation__ctor_m7D2C724BC0CC2C320E5A9357418BB639E5F74475(__this, L_0, NULL);
  5067. return;
  5068. }
  5069. }
  5070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  5071. {
  5072. {
  5073. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  5074. __this->___U3CwebRequestU3Ek__BackingField = L_0;
  5075. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField), (void*)L_0);
  5076. return;
  5077. }
  5078. }
  5079. #ifdef __clang__
  5080. #pragma clang diagnostic pop
  5081. #endif
  5082. #ifdef __clang__
  5083. #pragma clang diagnostic push
  5084. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5085. #pragma clang diagnostic ignored "-Wunused-variable"
  5086. #endif
  5087. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* BindingsMarshaller_ConvertToManaged_m46517862C68703D5EBFDF6A2B6C7B10BE0AE54C8 (intptr_t ___0_ptr, const RuntimeMethod* method)
  5088. {
  5089. static bool s_Il2CppMethodInitialized;
  5090. if (!s_Il2CppMethodInitialized)
  5091. {
  5092. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_il2cpp_TypeInfo_var);
  5093. s_Il2CppMethodInitialized = true;
  5094. }
  5095. {
  5096. intptr_t L_0 = ___0_ptr;
  5097. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_1 = (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)il2cpp_codegen_object_new(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_il2cpp_TypeInfo_var);
  5098. UnityWebRequestAsyncOperation__ctor_m4F125AF4AF1E13484E55EAA64570FA3967117F64(L_1, L_0, NULL);
  5099. return L_1;
  5100. }
  5101. }
  5102. #ifdef __clang__
  5103. #pragma clang diagnostic pop
  5104. #endif
  5105. #ifdef __clang__
  5106. #pragma clang diagnostic push
  5107. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5108. #pragma clang diagnostic ignored "-Wunused-variable"
  5109. #endif
  5110. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  5111. {
  5112. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  5113. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  5114. }
  5115. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  5116. {
  5117. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  5118. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  5119. }
  5120. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  5121. {
  5122. }
  5123. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  5124. {
  5125. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  5126. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  5127. }
  5128. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  5129. {
  5130. Exception_t* ___m_UriException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  5131. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_UriException, NULL);
  5132. }
  5133. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  5134. {
  5135. }
  5136. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method)
  5137. {
  5138. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_0;
  5139. memset((&V_0), 0, sizeof(V_0));
  5140. String_t* V_1 = NULL;
  5141. {
  5142. auto __finallyBlock = il2cpp::utils::Finally([&]
  5143. {
  5144. FINALLY_000a:
  5145. {
  5146. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_0 = V_0;
  5147. String_t* L_1;
  5148. L_1 = OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062(L_0, NULL);
  5149. V_1 = L_1;
  5150. return;
  5151. }
  5152. });
  5153. try
  5154. {
  5155. int32_t L_2 = ___0_err;
  5156. UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6(L_2, (&V_0), NULL);
  5157. goto IL_0012;
  5158. }
  5159. catch(Il2CppExceptionWrapper& e)
  5160. {
  5161. __finallyBlock.StoreException(e.ex);
  5162. }
  5163. }
  5164. IL_0012:
  5165. {
  5166. String_t* L_3 = V_1;
  5167. return L_3;
  5168. }
  5169. }
  5170. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method)
  5171. {
  5172. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_0;
  5173. memset((&V_0), 0, sizeof(V_0));
  5174. String_t* V_1 = NULL;
  5175. {
  5176. auto __finallyBlock = il2cpp::utils::Finally([&]
  5177. {
  5178. FINALLY_000a:
  5179. {
  5180. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_0 = V_0;
  5181. String_t* L_1;
  5182. L_1 = OutStringMarshaller_GetStringAndDispose_mB15D41A9893BBC55074D4910259FA722129DB062(L_0, NULL);
  5183. V_1 = L_1;
  5184. return;
  5185. }
  5186. });
  5187. try
  5188. {
  5189. int64_t L_2 = ___0_responseCode;
  5190. UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7(L_2, (&V_0), NULL);
  5191. goto IL_0012;
  5192. }
  5193. catch(Il2CppExceptionWrapper& e)
  5194. {
  5195. __finallyBlock.StoreException(e.ex);
  5196. }
  5197. }
  5198. IL_0012:
  5199. {
  5200. String_t* L_3 = V_1;
  5201. return L_3;
  5202. }
  5203. }
  5204. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5205. {
  5206. {
  5207. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  5208. return L_0;
  5209. }
  5210. }
  5211. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  5212. {
  5213. {
  5214. bool L_0 = ___0_value;
  5215. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField = L_0;
  5216. return;
  5217. }
  5218. }
  5219. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5220. {
  5221. {
  5222. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  5223. return L_0;
  5224. }
  5225. }
  5226. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  5227. {
  5228. {
  5229. bool L_0 = ___0_value;
  5230. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField = L_0;
  5231. return;
  5232. }
  5233. }
  5234. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5235. {
  5236. {
  5237. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  5238. return L_0;
  5239. }
  5240. }
  5241. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  5242. {
  5243. {
  5244. bool L_0 = ___0_value;
  5245. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField = L_0;
  5246. return;
  5247. }
  5248. }
  5249. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method)
  5250. {
  5251. typedef intptr_t (*UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn) ();
  5252. static UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn _il2cpp_icall_func;
  5253. if (!_il2cpp_icall_func)
  5254. _il2cpp_icall_func = (UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Create()");
  5255. intptr_t icallRetVal = _il2cpp_icall_func();
  5256. return icallRetVal;
  5257. }
  5258. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5259. {
  5260. intptr_t G_B2_0;
  5261. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5262. intptr_t G_B1_0;
  5263. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5264. {
  5265. intptr_t L_0;
  5266. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5267. intptr_t L_1 = L_0;
  5268. if (L_1)
  5269. {
  5270. G_B2_0 = L_1;
  5271. goto IL_000f;
  5272. }
  5273. G_B1_0 = L_1;
  5274. }
  5275. {
  5276. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5277. G_B2_0 = G_B1_0;
  5278. }
  5279. IL_000f:
  5280. {
  5281. UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991(G_B2_0, NULL);
  5282. return;
  5283. }
  5284. }
  5285. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5286. {
  5287. bool V_0 = false;
  5288. {
  5289. intptr_t L_0 = __this->___m_Ptr;
  5290. bool L_1;
  5291. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  5292. V_0 = L_1;
  5293. bool L_2 = V_0;
  5294. if (!L_2)
  5295. {
  5296. goto IL_0030;
  5297. }
  5298. }
  5299. {
  5300. UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B(__this, NULL);
  5301. UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2(__this, NULL);
  5302. __this->___m_Ptr = 0;
  5303. }
  5304. IL_0030:
  5305. {
  5306. return;
  5307. }
  5308. }
  5309. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5310. {
  5311. {
  5312. UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline(__this, (bool)1, NULL);
  5313. UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline(__this, (bool)1, NULL);
  5314. UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline(__this, (bool)1, NULL);
  5315. return;
  5316. }
  5317. }
  5318. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method)
  5319. {
  5320. {
  5321. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  5322. intptr_t L_0;
  5323. L_0 = UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9(NULL);
  5324. __this->___m_Ptr = L_0;
  5325. UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0(__this, NULL);
  5326. String_t* L_1 = ___0_url;
  5327. UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC(__this, L_1, NULL);
  5328. String_t* L_2 = ___1_method;
  5329. UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88(__this, L_2, NULL);
  5330. return;
  5331. }
  5332. }
  5333. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Finalize_m7F9D075432280A6CFF21BC2B5C35BFA752FF6ED8 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5334. {
  5335. {
  5336. }
  5337. {
  5338. auto __finallyBlock = il2cpp::utils::Finally([&]
  5339. {
  5340. FINALLY_0012:
  5341. {
  5342. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  5343. return;
  5344. }
  5345. });
  5346. try
  5347. {
  5348. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  5349. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  5350. goto IL_001a;
  5351. }
  5352. catch(Il2CppExceptionWrapper& e)
  5353. {
  5354. __finallyBlock.StoreException(e.ex);
  5355. }
  5356. }
  5357. IL_001a:
  5358. {
  5359. return;
  5360. }
  5361. }
  5362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m9F43494C0FEA530A97D3F2AF3D425CCC7670753A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5363. {
  5364. static bool s_Il2CppMethodInitialized;
  5365. if (!s_Il2CppMethodInitialized)
  5366. {
  5367. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  5368. s_Il2CppMethodInitialized = true;
  5369. }
  5370. {
  5371. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  5372. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  5373. il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  5374. GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
  5375. return;
  5376. }
  5377. }
  5378. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5379. {
  5380. bool V_0 = false;
  5381. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_1 = NULL;
  5382. bool V_2 = false;
  5383. bool V_3 = false;
  5384. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_4 = NULL;
  5385. bool V_5 = false;
  5386. bool V_6 = false;
  5387. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_7 = NULL;
  5388. bool V_8 = false;
  5389. {
  5390. bool L_0;
  5391. L_0 = UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline(__this, NULL);
  5392. V_0 = L_0;
  5393. bool L_1 = V_0;
  5394. if (!L_1)
  5395. {
  5396. goto IL_0025;
  5397. }
  5398. }
  5399. {
  5400. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_2;
  5401. L_2 = UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5(__this, NULL);
  5402. V_1 = L_2;
  5403. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = V_1;
  5404. V_2 = (bool)((!(((RuntimeObject*)(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5405. bool L_4 = V_2;
  5406. if (!L_4)
  5407. {
  5408. goto IL_0024;
  5409. }
  5410. }
  5411. {
  5412. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_5 = V_1;
  5413. NullCheck(L_5);
  5414. VirtualActionInvoker0::Invoke(5, L_5);
  5415. }
  5416. IL_0024:
  5417. {
  5418. }
  5419. IL_0025:
  5420. {
  5421. bool L_6;
  5422. L_6 = UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline(__this, NULL);
  5423. V_3 = L_6;
  5424. bool L_7 = V_3;
  5425. if (!L_7)
  5426. {
  5427. goto IL_004e;
  5428. }
  5429. }
  5430. {
  5431. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_8;
  5432. L_8 = UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5(__this, NULL);
  5433. V_4 = L_8;
  5434. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_9 = V_4;
  5435. V_5 = (bool)((!(((RuntimeObject*)(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5436. bool L_10 = V_5;
  5437. if (!L_10)
  5438. {
  5439. goto IL_004d;
  5440. }
  5441. }
  5442. {
  5443. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_11 = V_4;
  5444. NullCheck(L_11);
  5445. VirtualActionInvoker0::Invoke(5, L_11);
  5446. }
  5447. IL_004d:
  5448. {
  5449. }
  5450. IL_004e:
  5451. {
  5452. bool L_12;
  5453. L_12 = UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline(__this, NULL);
  5454. V_6 = L_12;
  5455. bool L_13 = V_6;
  5456. if (!L_13)
  5457. {
  5458. goto IL_0079;
  5459. }
  5460. }
  5461. {
  5462. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_14;
  5463. L_14 = UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D(__this, NULL);
  5464. V_7 = L_14;
  5465. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_15 = V_7;
  5466. V_8 = (bool)((!(((RuntimeObject*)(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5467. bool L_16 = V_8;
  5468. if (!L_16)
  5469. {
  5470. goto IL_0078;
  5471. }
  5472. }
  5473. {
  5474. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_17 = V_7;
  5475. NullCheck(L_17);
  5476. CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43(L_17, NULL);
  5477. }
  5478. IL_0078:
  5479. {
  5480. }
  5481. IL_0079:
  5482. {
  5483. return;
  5484. }
  5485. }
  5486. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5487. {
  5488. intptr_t G_B2_0;
  5489. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5490. intptr_t G_B1_0;
  5491. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5492. intptr_t G_B4_0;
  5493. memset((&G_B4_0), 0, sizeof(G_B4_0));
  5494. intptr_t G_B3_0;
  5495. memset((&G_B3_0), 0, sizeof(G_B3_0));
  5496. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* G_B5_0 = NULL;
  5497. {
  5498. intptr_t L_0;
  5499. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5500. intptr_t L_1 = L_0;
  5501. if (L_1)
  5502. {
  5503. G_B2_0 = L_1;
  5504. goto IL_000f;
  5505. }
  5506. G_B1_0 = L_1;
  5507. }
  5508. {
  5509. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5510. G_B2_0 = G_B1_0;
  5511. }
  5512. IL_000f:
  5513. {
  5514. intptr_t L_2;
  5515. L_2 = UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629(G_B2_0, NULL);
  5516. intptr_t L_3 = L_2;
  5517. if (!L_3)
  5518. {
  5519. G_B4_0 = L_3;
  5520. goto IL_001f;
  5521. }
  5522. G_B3_0 = L_3;
  5523. }
  5524. {
  5525. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_4;
  5526. L_4 = BindingsMarshaller_ConvertToManaged_m46517862C68703D5EBFDF6A2B6C7B10BE0AE54C8(G_B3_0, NULL);
  5527. G_B5_0 = L_4;
  5528. goto IL_0022;
  5529. }
  5530. IL_001f:
  5531. {
  5532. G_B5_0 = ((UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)(NULL));
  5533. }
  5534. IL_0022:
  5535. {
  5536. return G_B5_0;
  5537. }
  5538. }
  5539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_SendWebRequest_mA3CD13983BAA5074A0640EDD661B1E46E6DB6C13 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5540. {
  5541. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_0 = NULL;
  5542. bool V_1 = false;
  5543. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_2 = NULL;
  5544. {
  5545. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_0;
  5546. L_0 = UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D(__this, NULL);
  5547. V_0 = L_0;
  5548. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_1 = V_0;
  5549. V_1 = (bool)((!(((RuntimeObject*)(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5550. bool L_2 = V_1;
  5551. if (!L_2)
  5552. {
  5553. goto IL_0018;
  5554. }
  5555. }
  5556. {
  5557. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_3 = V_0;
  5558. NullCheck(L_3);
  5559. UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline(L_3, __this, NULL);
  5560. }
  5561. IL_0018:
  5562. {
  5563. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_4 = V_0;
  5564. V_2 = L_4;
  5565. goto IL_001c;
  5566. }
  5567. IL_001c:
  5568. {
  5569. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_5 = V_2;
  5570. return L_5;
  5571. }
  5572. }
  5573. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5574. {
  5575. intptr_t G_B2_0;
  5576. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5577. intptr_t G_B1_0;
  5578. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5579. {
  5580. intptr_t L_0;
  5581. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5582. intptr_t L_1 = L_0;
  5583. if (L_1)
  5584. {
  5585. G_B2_0 = L_1;
  5586. goto IL_000f;
  5587. }
  5588. G_B1_0 = L_1;
  5589. }
  5590. {
  5591. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5592. G_B2_0 = G_B1_0;
  5593. }
  5594. IL_000f:
  5595. {
  5596. UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01(G_B2_0, NULL);
  5597. return;
  5598. }
  5599. }
  5600. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  5601. {
  5602. intptr_t G_B2_0;
  5603. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5604. intptr_t G_B1_0;
  5605. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5606. {
  5607. intptr_t L_0;
  5608. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5609. intptr_t L_1 = L_0;
  5610. if (L_1)
  5611. {
  5612. G_B2_0 = L_1;
  5613. goto IL_000f;
  5614. }
  5615. G_B1_0 = L_1;
  5616. }
  5617. {
  5618. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5619. G_B2_0 = G_B1_0;
  5620. }
  5621. IL_000f:
  5622. {
  5623. int32_t L_2 = ___0_methodType;
  5624. int32_t L_3;
  5625. L_3 = UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF(G_B2_0, L_2, NULL);
  5626. return L_3;
  5627. }
  5628. }
  5629. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  5630. {
  5631. int32_t V_0 = 0;
  5632. bool V_1 = false;
  5633. bool V_2 = false;
  5634. {
  5635. bool L_0;
  5636. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5637. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5638. bool L_1 = V_1;
  5639. if (!L_1)
  5640. {
  5641. goto IL_0019;
  5642. }
  5643. }
  5644. {
  5645. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5646. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  5647. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  5648. }
  5649. IL_0019:
  5650. {
  5651. int32_t L_3 = ___0_methodType;
  5652. int32_t L_4;
  5653. L_4 = UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238(__this, L_3, NULL);
  5654. V_0 = L_4;
  5655. int32_t L_5 = V_0;
  5656. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5657. bool L_6 = V_2;
  5658. if (!L_6)
  5659. {
  5660. goto IL_0035;
  5661. }
  5662. }
  5663. {
  5664. int32_t L_7 = V_0;
  5665. String_t* L_8;
  5666. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5667. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5668. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5669. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  5670. }
  5671. IL_0035:
  5672. {
  5673. return;
  5674. }
  5675. }
  5676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  5677. {
  5678. static bool s_Il2CppMethodInitialized;
  5679. if (!s_Il2CppMethodInitialized)
  5680. {
  5681. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  5682. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  5683. s_Il2CppMethodInitialized = true;
  5684. }
  5685. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  5686. memset((&V_0), 0, sizeof(V_0));
  5687. Il2CppChar* V_1 = NULL;
  5688. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  5689. memset((&V_2), 0, sizeof(V_2));
  5690. int32_t V_3 = 0;
  5691. intptr_t G_B2_0;
  5692. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5693. intptr_t G_B1_0;
  5694. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5695. intptr_t G_B4_0;
  5696. memset((&G_B4_0), 0, sizeof(G_B4_0));
  5697. intptr_t G_B3_0;
  5698. memset((&G_B3_0), 0, sizeof(G_B3_0));
  5699. {
  5700. auto __finallyBlock = il2cpp::utils::Finally([&]
  5701. {
  5702. FINALLY_0044:
  5703. {
  5704. V_1 = (Il2CppChar*)((uintptr_t)0);
  5705. return;
  5706. }
  5707. });
  5708. try
  5709. {
  5710. {
  5711. intptr_t L_0;
  5712. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5713. intptr_t L_1 = L_0;
  5714. if (L_1)
  5715. {
  5716. G_B2_0 = L_1;
  5717. goto IL_000f_1;
  5718. }
  5719. G_B1_0 = L_1;
  5720. }
  5721. {
  5722. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5723. G_B2_0 = G_B1_0;
  5724. }
  5725. IL_000f_1:
  5726. {
  5727. String_t* L_2 = ___0_customMethodName;
  5728. bool L_3;
  5729. L_3 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_2, (&V_2), NULL);
  5730. if (L_3)
  5731. {
  5732. G_B4_0 = G_B2_0;
  5733. goto IL_0039_1;
  5734. }
  5735. G_B3_0 = G_B2_0;
  5736. }
  5737. {
  5738. String_t* L_4 = ___0_customMethodName;
  5739. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
  5740. L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_4, NULL);
  5741. V_0 = L_5;
  5742. Il2CppChar* L_6;
  5743. L_6 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  5744. V_1 = L_6;
  5745. Il2CppChar* L_7 = V_1;
  5746. int32_t L_8;
  5747. L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  5748. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_7), L_8, NULL);
  5749. G_B4_0 = G_B3_0;
  5750. }
  5751. IL_0039_1:
  5752. {
  5753. int32_t L_9;
  5754. L_9 = UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322(G_B4_0, (&V_2), NULL);
  5755. V_3 = L_9;
  5756. goto IL_0048;
  5757. }
  5758. }
  5759. catch(Il2CppExceptionWrapper& e)
  5760. {
  5761. __finallyBlock.StoreException(e.ex);
  5762. }
  5763. }
  5764. IL_0048:
  5765. {
  5766. int32_t L_10 = V_3;
  5767. return L_10;
  5768. }
  5769. }
  5770. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  5771. {
  5772. int32_t V_0 = 0;
  5773. bool V_1 = false;
  5774. bool V_2 = false;
  5775. {
  5776. bool L_0;
  5777. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5778. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5779. bool L_1 = V_1;
  5780. if (!L_1)
  5781. {
  5782. goto IL_0019;
  5783. }
  5784. }
  5785. {
  5786. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5787. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  5788. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  5789. }
  5790. IL_0019:
  5791. {
  5792. String_t* L_3 = ___0_customMethodName;
  5793. int32_t L_4;
  5794. L_4 = UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB(__this, L_3, NULL);
  5795. V_0 = L_4;
  5796. int32_t L_5 = V_0;
  5797. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5798. bool L_6 = V_2;
  5799. if (!L_6)
  5800. {
  5801. goto IL_0035;
  5802. }
  5803. }
  5804. {
  5805. int32_t L_7 = V_0;
  5806. String_t* L_8;
  5807. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5808. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5809. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5810. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  5811. }
  5812. IL_0035:
  5813. {
  5814. return;
  5815. }
  5816. }
  5817. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  5818. {
  5819. static bool s_Il2CppMethodInitialized;
  5820. if (!s_Il2CppMethodInitialized)
  5821. {
  5822. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708);
  5823. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  5824. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  5825. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  5826. s_Il2CppMethodInitialized = true;
  5827. }
  5828. bool V_0 = false;
  5829. String_t* V_1 = NULL;
  5830. String_t* V_2 = NULL;
  5831. {
  5832. String_t* L_0 = ___0_value;
  5833. bool L_1;
  5834. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  5835. V_0 = L_1;
  5836. bool L_2 = V_0;
  5837. if (!L_2)
  5838. {
  5839. goto IL_0017;
  5840. }
  5841. }
  5842. {
  5843. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5844. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E)), NULL);
  5845. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var)));
  5846. }
  5847. IL_0017:
  5848. {
  5849. String_t* L_4 = ___0_value;
  5850. NullCheck(L_4);
  5851. String_t* L_5;
  5852. L_5 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_4, NULL);
  5853. V_2 = L_5;
  5854. String_t* L_6 = V_2;
  5855. V_1 = L_6;
  5856. String_t* L_7 = V_1;
  5857. bool L_8;
  5858. L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, NULL);
  5859. if (L_8)
  5860. {
  5861. goto IL_0056;
  5862. }
  5863. }
  5864. {
  5865. String_t* L_9 = V_1;
  5866. bool L_10;
  5867. L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_9, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, NULL);
  5868. if (L_10)
  5869. {
  5870. goto IL_0060;
  5871. }
  5872. }
  5873. {
  5874. String_t* L_11 = V_1;
  5875. bool L_12;
  5876. L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708, NULL);
  5877. if (L_12)
  5878. {
  5879. goto IL_006a;
  5880. }
  5881. }
  5882. {
  5883. String_t* L_13 = V_1;
  5884. bool L_14;
  5885. L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_13, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, NULL);
  5886. if (L_14)
  5887. {
  5888. goto IL_0074;
  5889. }
  5890. }
  5891. {
  5892. goto IL_007e;
  5893. }
  5894. IL_0056:
  5895. {
  5896. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 0, NULL);
  5897. goto IL_008d;
  5898. }
  5899. IL_0060:
  5900. {
  5901. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 1, NULL);
  5902. goto IL_008d;
  5903. }
  5904. IL_006a:
  5905. {
  5906. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 2, NULL);
  5907. goto IL_008d;
  5908. }
  5909. IL_0074:
  5910. {
  5911. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 3, NULL);
  5912. goto IL_008d;
  5913. }
  5914. IL_007e:
  5915. {
  5916. String_t* L_15 = ___0_value;
  5917. NullCheck(L_15);
  5918. String_t* L_16;
  5919. L_16 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_15, NULL);
  5920. UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40(__this, L_16, NULL);
  5921. goto IL_008d;
  5922. }
  5923. IL_008d:
  5924. {
  5925. return;
  5926. }
  5927. }
  5928. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5929. {
  5930. intptr_t G_B2_0;
  5931. memset((&G_B2_0), 0, sizeof(G_B2_0));
  5932. intptr_t G_B1_0;
  5933. memset((&G_B1_0), 0, sizeof(G_B1_0));
  5934. {
  5935. intptr_t L_0;
  5936. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  5937. intptr_t L_1 = L_0;
  5938. if (L_1)
  5939. {
  5940. G_B2_0 = L_1;
  5941. goto IL_000f;
  5942. }
  5943. G_B1_0 = L_1;
  5944. }
  5945. {
  5946. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  5947. G_B2_0 = G_B1_0;
  5948. }
  5949. IL_000f:
  5950. {
  5951. int32_t L_2;
  5952. L_2 = UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C(G_B2_0, NULL);
  5953. return L_2;
  5954. }
  5955. }
  5956. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_error_m20A5D813ED59118B7AA1D1E2EB5250178B1F5B6F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5957. {
  5958. static bool s_Il2CppMethodInitialized;
  5959. if (!s_Il2CppMethodInitialized)
  5960. {
  5961. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C);
  5962. s_Il2CppMethodInitialized = true;
  5963. }
  5964. int32_t V_0 = 0;
  5965. int32_t V_1 = 0;
  5966. String_t* V_2 = NULL;
  5967. {
  5968. int32_t L_0;
  5969. L_0 = UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449(__this, NULL);
  5970. V_1 = L_0;
  5971. int32_t L_1 = V_1;
  5972. V_0 = L_1;
  5973. int32_t L_2 = V_0;
  5974. if ((!(((uint32_t)L_2) > ((uint32_t)1))))
  5975. {
  5976. goto IL_0016;
  5977. }
  5978. }
  5979. {
  5980. goto IL_0010;
  5981. }
  5982. IL_0010:
  5983. {
  5984. int32_t L_3 = V_0;
  5985. if ((((int32_t)L_3) == ((int32_t)3)))
  5986. {
  5987. goto IL_001a;
  5988. }
  5989. }
  5990. {
  5991. goto IL_003d;
  5992. }
  5993. IL_0016:
  5994. {
  5995. V_2 = (String_t*)NULL;
  5996. goto IL_004b;
  5997. }
  5998. IL_001a:
  5999. {
  6000. int64_t L_4;
  6001. L_4 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  6002. int64_t L_5 = L_4;
  6003. RuntimeObject* L_6 = Box(il2cpp_defaults.int64_class, &L_5);
  6004. int64_t L_7;
  6005. L_7 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  6006. String_t* L_8;
  6007. L_8 = UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D(L_7, NULL);
  6008. String_t* L_9;
  6009. L_9 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C, L_6, L_8, NULL);
  6010. V_2 = L_9;
  6011. goto IL_004b;
  6012. }
  6013. IL_003d:
  6014. {
  6015. int32_t L_10;
  6016. L_10 = UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86(__this, NULL);
  6017. String_t* L_11;
  6018. L_11 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_10, NULL);
  6019. V_2 = L_11;
  6020. goto IL_004b;
  6021. }
  6022. IL_004b:
  6023. {
  6024. String_t* L_12 = V_2;
  6025. return L_12;
  6026. }
  6027. }
  6028. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  6029. {
  6030. static bool s_Il2CppMethodInitialized;
  6031. if (!s_Il2CppMethodInitialized)
  6032. {
  6033. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  6034. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral507C09453B68D2470A05E9CAF736D11F39257A38);
  6035. s_Il2CppMethodInitialized = true;
  6036. }
  6037. String_t* V_0 = NULL;
  6038. {
  6039. V_0 = _stringLiteral507C09453B68D2470A05E9CAF736D11F39257A38;
  6040. String_t* L_0 = ___0_value;
  6041. String_t* L_1 = V_0;
  6042. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  6043. String_t* L_2;
  6044. L_2 = WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C(L_0, L_1, NULL);
  6045. UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9(__this, L_2, NULL);
  6046. return;
  6047. }
  6048. }
  6049. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  6050. {
  6051. static bool s_Il2CppMethodInitialized;
  6052. if (!s_Il2CppMethodInitialized)
  6053. {
  6054. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  6055. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  6056. s_Il2CppMethodInitialized = true;
  6057. }
  6058. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  6059. memset((&V_0), 0, sizeof(V_0));
  6060. Il2CppChar* V_1 = NULL;
  6061. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  6062. memset((&V_2), 0, sizeof(V_2));
  6063. int32_t V_3 = 0;
  6064. intptr_t G_B2_0;
  6065. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6066. intptr_t G_B1_0;
  6067. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6068. intptr_t G_B4_0;
  6069. memset((&G_B4_0), 0, sizeof(G_B4_0));
  6070. intptr_t G_B3_0;
  6071. memset((&G_B3_0), 0, sizeof(G_B3_0));
  6072. {
  6073. auto __finallyBlock = il2cpp::utils::Finally([&]
  6074. {
  6075. FINALLY_0044:
  6076. {
  6077. V_1 = (Il2CppChar*)((uintptr_t)0);
  6078. return;
  6079. }
  6080. });
  6081. try
  6082. {
  6083. {
  6084. intptr_t L_0;
  6085. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  6086. intptr_t L_1 = L_0;
  6087. if (L_1)
  6088. {
  6089. G_B2_0 = L_1;
  6090. goto IL_000f_1;
  6091. }
  6092. G_B1_0 = L_1;
  6093. }
  6094. {
  6095. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6096. G_B2_0 = G_B1_0;
  6097. }
  6098. IL_000f_1:
  6099. {
  6100. String_t* L_2 = ___0_url;
  6101. bool L_3;
  6102. L_3 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_2, (&V_2), NULL);
  6103. if (L_3)
  6104. {
  6105. G_B4_0 = G_B2_0;
  6106. goto IL_0039_1;
  6107. }
  6108. G_B3_0 = G_B2_0;
  6109. }
  6110. {
  6111. String_t* L_4 = ___0_url;
  6112. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
  6113. L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_4, NULL);
  6114. V_0 = L_5;
  6115. Il2CppChar* L_6;
  6116. L_6 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  6117. V_1 = L_6;
  6118. Il2CppChar* L_7 = V_1;
  6119. int32_t L_8;
  6120. L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  6121. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_7), L_8, NULL);
  6122. G_B4_0 = G_B3_0;
  6123. }
  6124. IL_0039_1:
  6125. {
  6126. int32_t L_9;
  6127. L_9 = UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B(G_B4_0, (&V_2), NULL);
  6128. V_3 = L_9;
  6129. goto IL_0048;
  6130. }
  6131. }
  6132. catch(Il2CppExceptionWrapper& e)
  6133. {
  6134. __finallyBlock.StoreException(e.ex);
  6135. }
  6136. }
  6137. IL_0048:
  6138. {
  6139. int32_t L_10 = V_3;
  6140. return L_10;
  6141. }
  6142. }
  6143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  6144. {
  6145. int32_t V_0 = 0;
  6146. bool V_1 = false;
  6147. bool V_2 = false;
  6148. {
  6149. bool L_0;
  6150. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  6151. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  6152. bool L_1 = V_1;
  6153. if (!L_1)
  6154. {
  6155. goto IL_0019;
  6156. }
  6157. }
  6158. {
  6159. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6160. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6)), NULL);
  6161. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  6162. }
  6163. IL_0019:
  6164. {
  6165. String_t* L_3 = ___0_url;
  6166. int32_t L_4;
  6167. L_4 = UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5(__this, L_3, NULL);
  6168. V_0 = L_4;
  6169. int32_t L_5 = V_0;
  6170. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  6171. bool L_6 = V_2;
  6172. if (!L_6)
  6173. {
  6174. goto IL_0035;
  6175. }
  6176. }
  6177. {
  6178. int32_t L_7 = V_0;
  6179. String_t* L_8;
  6180. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  6181. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6182. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  6183. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  6184. }
  6185. IL_0035:
  6186. {
  6187. return;
  6188. }
  6189. }
  6190. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6191. {
  6192. intptr_t G_B2_0;
  6193. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6194. intptr_t G_B1_0;
  6195. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6196. {
  6197. intptr_t L_0;
  6198. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  6199. intptr_t L_1 = L_0;
  6200. if (L_1)
  6201. {
  6202. G_B2_0 = L_1;
  6203. goto IL_000f;
  6204. }
  6205. G_B1_0 = L_1;
  6206. }
  6207. {
  6208. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6209. G_B2_0 = G_B1_0;
  6210. }
  6211. IL_000f:
  6212. {
  6213. int64_t L_2;
  6214. L_2 = UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0(G_B2_0, NULL);
  6215. return L_2;
  6216. }
  6217. }
  6218. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6219. {
  6220. intptr_t G_B2_0;
  6221. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6222. intptr_t G_B1_0;
  6223. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6224. {
  6225. intptr_t L_0;
  6226. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  6227. intptr_t L_1 = L_0;
  6228. if (L_1)
  6229. {
  6230. G_B2_0 = L_1;
  6231. goto IL_000f;
  6232. }
  6233. G_B1_0 = L_1;
  6234. }
  6235. {
  6236. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6237. G_B2_0 = G_B1_0;
  6238. }
  6239. IL_000f:
  6240. {
  6241. bool L_2;
  6242. L_2 = UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF(G_B2_0, NULL);
  6243. return L_2;
  6244. }
  6245. }
  6246. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6247. {
  6248. intptr_t G_B2_0;
  6249. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6250. intptr_t G_B1_0;
  6251. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6252. {
  6253. intptr_t L_0;
  6254. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  6255. intptr_t L_1 = L_0;
  6256. if (L_1)
  6257. {
  6258. G_B2_0 = L_1;
  6259. goto IL_000f;
  6260. }
  6261. G_B1_0 = L_1;
  6262. }
  6263. {
  6264. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6265. G_B2_0 = G_B1_0;
  6266. }
  6267. IL_000f:
  6268. {
  6269. int32_t L_2;
  6270. L_2 = UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9(G_B2_0, NULL);
  6271. return L_2;
  6272. }
  6273. }
  6274. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method)
  6275. {
  6276. static bool s_Il2CppMethodInitialized;
  6277. if (!s_Il2CppMethodInitialized)
  6278. {
  6279. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  6280. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  6281. s_Il2CppMethodInitialized = true;
  6282. }
  6283. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  6284. memset((&V_0), 0, sizeof(V_0));
  6285. Il2CppChar* V_1 = NULL;
  6286. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_2;
  6287. memset((&V_2), 0, sizeof(V_2));
  6288. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_3;
  6289. memset((&V_3), 0, sizeof(V_3));
  6290. Il2CppChar* V_4 = NULL;
  6291. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E V_5;
  6292. memset((&V_5), 0, sizeof(V_5));
  6293. int32_t V_6 = 0;
  6294. intptr_t G_B2_0;
  6295. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6296. intptr_t G_B1_0;
  6297. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6298. intptr_t G_B4_0;
  6299. memset((&G_B4_0), 0, sizeof(G_B4_0));
  6300. intptr_t G_B3_0;
  6301. memset((&G_B3_0), 0, sizeof(G_B3_0));
  6302. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* G_B6_0 = NULL;
  6303. intptr_t G_B6_1;
  6304. memset((&G_B6_1), 0, sizeof(G_B6_1));
  6305. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* G_B5_0 = NULL;
  6306. intptr_t G_B5_1;
  6307. memset((&G_B5_1), 0, sizeof(G_B5_1));
  6308. {
  6309. auto __finallyBlock = il2cpp::utils::Finally([&]
  6310. {
  6311. FINALLY_0073:
  6312. {
  6313. V_1 = (Il2CppChar*)((uintptr_t)0);
  6314. V_4 = (Il2CppChar*)((uintptr_t)0);
  6315. return;
  6316. }
  6317. });
  6318. try
  6319. {
  6320. {
  6321. intptr_t L_0;
  6322. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  6323. intptr_t L_1 = L_0;
  6324. if (L_1)
  6325. {
  6326. G_B2_0 = L_1;
  6327. goto IL_000f_1;
  6328. }
  6329. G_B1_0 = L_1;
  6330. }
  6331. {
  6332. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6333. G_B2_0 = G_B1_0;
  6334. }
  6335. IL_000f_1:
  6336. {
  6337. String_t* L_2 = ___0_name;
  6338. bool L_3;
  6339. L_3 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_2, (&V_2), NULL);
  6340. if (L_3)
  6341. {
  6342. G_B4_0 = G_B2_0;
  6343. goto IL_0039_1;
  6344. }
  6345. G_B3_0 = G_B2_0;
  6346. }
  6347. {
  6348. String_t* L_4 = ___0_name;
  6349. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
  6350. L_5 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_4, NULL);
  6351. V_0 = L_5;
  6352. Il2CppChar* L_6;
  6353. L_6 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_0), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  6354. V_1 = L_6;
  6355. Il2CppChar* L_7 = V_1;
  6356. int32_t L_8;
  6357. L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  6358. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_2), (void*)((uintptr_t)L_7), L_8, NULL);
  6359. G_B4_0 = G_B3_0;
  6360. }
  6361. IL_0039_1:
  6362. {
  6363. String_t* L_9 = ___1_value;
  6364. bool L_10;
  6365. L_10 = StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline(L_9, (&V_5), NULL);
  6366. if (L_10)
  6367. {
  6368. G_B6_0 = (&V_2);
  6369. G_B6_1 = G_B4_0;
  6370. goto IL_0067_1;
  6371. }
  6372. G_B5_0 = (&V_2);
  6373. G_B5_1 = G_B4_0;
  6374. }
  6375. {
  6376. String_t* L_11 = ___1_value;
  6377. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_12;
  6378. L_12 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_11, NULL);
  6379. V_3 = L_12;
  6380. Il2CppChar* L_13;
  6381. L_13 = ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638((&V_3), ReadOnlySpan_1_GetPinnableReference_mB710059C1A1A30270065958DE8345808C6683638_RuntimeMethod_var);
  6382. V_4 = L_13;
  6383. Il2CppChar* L_14 = V_4;
  6384. int32_t L_15;
  6385. L_15 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_3), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
  6386. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&V_5), (void*)((uintptr_t)L_14), L_15, NULL);
  6387. G_B6_0 = G_B5_0;
  6388. G_B6_1 = G_B5_1;
  6389. }
  6390. IL_0067_1:
  6391. {
  6392. int32_t L_16;
  6393. L_16 = UnityWebRequest_InternalSetRequestHeader_Injected_mFA4A70E1530E65713B4EA8895C61161D3C620C85(G_B6_1, G_B6_0, (&V_5), NULL);
  6394. V_6 = L_16;
  6395. goto IL_007b;
  6396. }
  6397. }
  6398. catch(Il2CppExceptionWrapper& e)
  6399. {
  6400. __finallyBlock.StoreException(e.ex);
  6401. }
  6402. }
  6403. IL_007b:
  6404. {
  6405. int32_t L_17 = V_6;
  6406. return L_17;
  6407. }
  6408. }
  6409. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method)
  6410. {
  6411. int32_t V_0 = 0;
  6412. bool V_1 = false;
  6413. bool V_2 = false;
  6414. bool V_3 = false;
  6415. bool V_4 = false;
  6416. {
  6417. String_t* L_0 = ___0_name;
  6418. bool L_1;
  6419. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  6420. V_1 = L_1;
  6421. bool L_2 = V_1;
  6422. if (!L_2)
  6423. {
  6424. goto IL_0016;
  6425. }
  6426. }
  6427. {
  6428. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  6429. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5)), NULL);
  6430. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  6431. }
  6432. IL_0016:
  6433. {
  6434. String_t* L_4 = ___1_value;
  6435. V_2 = (bool)((((RuntimeObject*)(String_t*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6436. bool L_5 = V_2;
  6437. if (!L_5)
  6438. {
  6439. goto IL_0029;
  6440. }
  6441. }
  6442. {
  6443. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  6444. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2)), NULL);
  6445. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  6446. }
  6447. IL_0029:
  6448. {
  6449. bool L_7;
  6450. L_7 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  6451. V_3 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
  6452. bool L_8 = V_3;
  6453. if (!L_8)
  6454. {
  6455. goto IL_0041;
  6456. }
  6457. }
  6458. {
  6459. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6460. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69)), NULL);
  6461. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  6462. }
  6463. IL_0041:
  6464. {
  6465. String_t* L_10 = ___0_name;
  6466. String_t* L_11 = ___1_value;
  6467. int32_t L_12;
  6468. L_12 = UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353(__this, L_10, L_11, NULL);
  6469. V_0 = L_12;
  6470. int32_t L_13 = V_0;
  6471. V_4 = (bool)((!(((uint32_t)L_13) <= ((uint32_t)0)))? 1 : 0);
  6472. bool L_14 = V_4;
  6473. if (!L_14)
  6474. {
  6475. goto IL_0060;
  6476. }
  6477. }
  6478. {
  6479. int32_t L_15 = V_0;
  6480. String_t* L_16;
  6481. L_16 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_15, NULL);
  6482. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_17 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6483. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_17, L_16, NULL);
  6484. IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  6485. }
  6486. IL_0060:
  6487. {
  6488. return;
  6489. }
  6490. }
  6491. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method)
  6492. {
  6493. intptr_t G_B2_0;
  6494. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6495. intptr_t G_B1_0;
  6496. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6497. intptr_t G_B4_0;
  6498. memset((&G_B4_0), 0, sizeof(G_B4_0));
  6499. intptr_t G_B3_0;
  6500. memset((&G_B3_0), 0, sizeof(G_B3_0));
  6501. intptr_t G_B5_0;
  6502. memset((&G_B5_0), 0, sizeof(G_B5_0));
  6503. intptr_t G_B5_1;
  6504. memset((&G_B5_1), 0, sizeof(G_B5_1));
  6505. {
  6506. intptr_t L_0;
  6507. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  6508. intptr_t L_1 = L_0;
  6509. if (L_1)
  6510. {
  6511. G_B2_0 = L_1;
  6512. goto IL_000f;
  6513. }
  6514. G_B1_0 = L_1;
  6515. }
  6516. {
  6517. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6518. G_B2_0 = G_B1_0;
  6519. }
  6520. IL_000f:
  6521. {
  6522. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_2 = ___0_uh;
  6523. if (!L_2)
  6524. {
  6525. G_B4_0 = G_B2_0;
  6526. goto IL_001b;
  6527. }
  6528. G_B3_0 = G_B2_0;
  6529. }
  6530. {
  6531. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_3 = ___0_uh;
  6532. intptr_t L_4;
  6533. L_4 = BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline(L_3, NULL);
  6534. G_B5_0 = L_4;
  6535. G_B5_1 = G_B3_0;
  6536. goto IL_001e;
  6537. }
  6538. IL_001b:
  6539. {
  6540. G_B5_0 = ((intptr_t)0);
  6541. G_B5_1 = G_B4_0;
  6542. }
  6543. IL_001e:
  6544. {
  6545. int32_t L_5;
  6546. L_5 = UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF(G_B5_1, G_B5_0, NULL);
  6547. return L_5;
  6548. }
  6549. }
  6550. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6551. {
  6552. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_0 = NULL;
  6553. {
  6554. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = __this->___m_UploadHandler;
  6555. V_0 = L_0;
  6556. goto IL_000a;
  6557. }
  6558. IL_000a:
  6559. {
  6560. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_1 = V_0;
  6561. return L_1;
  6562. }
  6563. }
  6564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method)
  6565. {
  6566. int32_t V_0 = 0;
  6567. bool V_1 = false;
  6568. bool V_2 = false;
  6569. {
  6570. bool L_0;
  6571. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  6572. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  6573. bool L_1 = V_1;
  6574. if (!L_1)
  6575. {
  6576. goto IL_0019;
  6577. }
  6578. }
  6579. {
  6580. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6581. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39)), NULL);
  6582. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  6583. }
  6584. IL_0019:
  6585. {
  6586. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_3 = ___0_value;
  6587. int32_t L_4;
  6588. L_4 = UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973(__this, L_3, NULL);
  6589. V_0 = L_4;
  6590. int32_t L_5 = V_0;
  6591. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  6592. bool L_6 = V_2;
  6593. if (!L_6)
  6594. {
  6595. goto IL_0035;
  6596. }
  6597. }
  6598. {
  6599. int32_t L_7 = V_0;
  6600. String_t* L_8;
  6601. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  6602. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6603. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  6604. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  6605. }
  6606. IL_0035:
  6607. {
  6608. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_10 = ___0_value;
  6609. __this->___m_UploadHandler = L_10;
  6610. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UploadHandler), (void*)L_10);
  6611. return;
  6612. }
  6613. }
  6614. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method)
  6615. {
  6616. intptr_t G_B2_0;
  6617. memset((&G_B2_0), 0, sizeof(G_B2_0));
  6618. intptr_t G_B1_0;
  6619. memset((&G_B1_0), 0, sizeof(G_B1_0));
  6620. intptr_t G_B4_0;
  6621. memset((&G_B4_0), 0, sizeof(G_B4_0));
  6622. intptr_t G_B3_0;
  6623. memset((&G_B3_0), 0, sizeof(G_B3_0));
  6624. intptr_t G_B5_0;
  6625. memset((&G_B5_0), 0, sizeof(G_B5_0));
  6626. intptr_t G_B5_1;
  6627. memset((&G_B5_1), 0, sizeof(G_B5_1));
  6628. {
  6629. intptr_t L_0;
  6630. L_0 = BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline(__this, NULL);
  6631. intptr_t L_1 = L_0;
  6632. if (L_1)
  6633. {
  6634. G_B2_0 = L_1;
  6635. goto IL_000f;
  6636. }
  6637. G_B1_0 = L_1;
  6638. }
  6639. {
  6640. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  6641. G_B2_0 = G_B1_0;
  6642. }
  6643. IL_000f:
  6644. {
  6645. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_2 = ___0_dh;
  6646. if (!L_2)
  6647. {
  6648. G_B4_0 = G_B2_0;
  6649. goto IL_001b;
  6650. }
  6651. G_B3_0 = G_B2_0;
  6652. }
  6653. {
  6654. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___0_dh;
  6655. intptr_t L_4;
  6656. L_4 = BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline(L_3, NULL);
  6657. G_B5_0 = L_4;
  6658. G_B5_1 = G_B3_0;
  6659. goto IL_001e;
  6660. }
  6661. IL_001b:
  6662. {
  6663. G_B5_0 = ((intptr_t)0);
  6664. G_B5_1 = G_B4_0;
  6665. }
  6666. IL_001e:
  6667. {
  6668. int32_t L_5;
  6669. L_5 = UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77(G_B5_1, G_B5_0, NULL);
  6670. return L_5;
  6671. }
  6672. }
  6673. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6674. {
  6675. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_0 = NULL;
  6676. {
  6677. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = __this->___m_DownloadHandler;
  6678. V_0 = L_0;
  6679. goto IL_000a;
  6680. }
  6681. IL_000a:
  6682. {
  6683. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_1 = V_0;
  6684. return L_1;
  6685. }
  6686. }
  6687. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method)
  6688. {
  6689. int32_t V_0 = 0;
  6690. bool V_1 = false;
  6691. bool V_2 = false;
  6692. {
  6693. bool L_0;
  6694. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  6695. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  6696. bool L_1 = V_1;
  6697. if (!L_1)
  6698. {
  6699. goto IL_0019;
  6700. }
  6701. }
  6702. {
  6703. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6704. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36)), NULL);
  6705. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  6706. }
  6707. IL_0019:
  6708. {
  6709. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___0_value;
  6710. int32_t L_4;
  6711. L_4 = UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515(__this, L_3, NULL);
  6712. V_0 = L_4;
  6713. int32_t L_5 = V_0;
  6714. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  6715. bool L_6 = V_2;
  6716. if (!L_6)
  6717. {
  6718. goto IL_0035;
  6719. }
  6720. }
  6721. {
  6722. int32_t L_7 = V_0;
  6723. String_t* L_8;
  6724. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  6725. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  6726. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  6727. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  6728. }
  6729. IL_0035:
  6730. {
  6731. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_10 = ___0_value;
  6732. __this->___m_DownloadHandler = L_10;
  6733. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DownloadHandler), (void*)L_10);
  6734. return;
  6735. }
  6736. }
  6737. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  6738. {
  6739. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_0 = NULL;
  6740. {
  6741. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = __this->___m_CertificateHandler;
  6742. V_0 = L_0;
  6743. goto IL_000a;
  6744. }
  6745. IL_000a:
  6746. {
  6747. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_1 = V_0;
  6748. return L_1;
  6749. }
  6750. }
  6751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Post_m90D1692FE21DF17CB3DEB0948D0359B778404373 (String_t* ___0_uri, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method)
  6752. {
  6753. static bool s_Il2CppMethodInitialized;
  6754. if (!s_Il2CppMethodInitialized)
  6755. {
  6756. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6757. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  6758. s_Il2CppMethodInitialized = true;
  6759. }
  6760. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  6761. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  6762. {
  6763. String_t* L_0 = ___0_uri;
  6764. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_1 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6765. UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E(L_1, L_0, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, NULL);
  6766. V_0 = L_1;
  6767. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = V_0;
  6768. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_3 = ___1_formData;
  6769. UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B(L_2, L_3, NULL);
  6770. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_4 = V_0;
  6771. V_1 = L_4;
  6772. goto IL_0019;
  6773. }
  6774. IL_0019:
  6775. {
  6776. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_5 = V_1;
  6777. return L_5;
  6778. }
  6779. }
  6780. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_request, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method)
  6781. {
  6782. static bool s_Il2CppMethodInitialized;
  6783. if (!s_Il2CppMethodInitialized)
  6784. {
  6785. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var);
  6786. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  6787. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var);
  6788. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var);
  6789. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var);
  6790. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
  6791. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
  6792. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var);
  6793. s_Il2CppMethodInitialized = true;
  6794. }
  6795. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6796. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_1 = NULL;
  6797. bool V_2 = false;
  6798. bool V_3 = false;
  6799. bool V_4 = false;
  6800. Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 V_5;
  6801. memset((&V_5), 0, sizeof(V_5));
  6802. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A V_6;
  6803. memset((&V_6), 0, sizeof(V_6));
  6804. {
  6805. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_request;
  6806. DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* L_1 = (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*)il2cpp_codegen_object_new(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  6807. DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF(L_1, NULL);
  6808. NullCheck(L_0);
  6809. UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F(L_0, L_1, NULL);
  6810. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_2 = ___1_formData;
  6811. V_2 = (bool)((((RuntimeObject*)(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6812. bool L_3 = V_2;
  6813. if (!L_3)
  6814. {
  6815. goto IL_0017;
  6816. }
  6817. }
  6818. {
  6819. goto IL_008c;
  6820. }
  6821. IL_0017:
  6822. {
  6823. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  6824. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_4 = ___1_formData;
  6825. NullCheck(L_4);
  6826. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5;
  6827. L_5 = WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145(L_4, NULL);
  6828. V_0 = L_5;
  6829. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_0;
  6830. NullCheck(L_6);
  6831. V_3 = (bool)((((int32_t)(((RuntimeArray*)L_6)->max_length)) == ((int32_t)0))? 1 : 0);
  6832. bool L_7 = V_3;
  6833. if (!L_7)
  6834. {
  6835. goto IL_002b;
  6836. }
  6837. }
  6838. {
  6839. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  6840. }
  6841. IL_002b:
  6842. {
  6843. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_0;
  6844. V_4 = (bool)((!(((RuntimeObject*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)L_8) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  6845. bool L_9 = V_4;
  6846. if (!L_9)
  6847. {
  6848. goto IL_0042;
  6849. }
  6850. }
  6851. {
  6852. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_10 = ___0_request;
  6853. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_0;
  6854. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* L_12 = (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A*)il2cpp_codegen_object_new(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var);
  6855. UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7(L_12, L_11, NULL);
  6856. NullCheck(L_10);
  6857. UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE(L_10, L_12, NULL);
  6858. }
  6859. IL_0042:
  6860. {
  6861. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_13 = ___1_formData;
  6862. NullCheck(L_13);
  6863. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_14;
  6864. L_14 = WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E(L_13, NULL);
  6865. V_1 = L_14;
  6866. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_15 = V_1;
  6867. NullCheck(L_15);
  6868. Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 L_16;
  6869. L_16 = Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6(L_15, Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var);
  6870. V_5 = L_16;
  6871. }
  6872. {
  6873. auto __finallyBlock = il2cpp::utils::Finally([&]
  6874. {
  6875. FINALLY_007d:
  6876. {
  6877. Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD((&V_5), Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var);
  6878. return;
  6879. }
  6880. });
  6881. try
  6882. {
  6883. {
  6884. goto IL_0072_1;
  6885. }
  6886. IL_0054_1:
  6887. {
  6888. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_17;
  6889. L_17 = Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_inline((&V_5), Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var);
  6890. V_6 = L_17;
  6891. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_18 = ___0_request;
  6892. String_t* L_19;
  6893. L_19 = KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline((&V_6), KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
  6894. String_t* L_20;
  6895. L_20 = KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline((&V_6), KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
  6896. NullCheck(L_18);
  6897. UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5(L_18, L_19, L_20, NULL);
  6898. }
  6899. IL_0072_1:
  6900. {
  6901. bool L_21;
  6902. L_21 = Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438((&V_5), Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var);
  6903. if (L_21)
  6904. {
  6905. goto IL_0054_1;
  6906. }
  6907. }
  6908. {
  6909. goto IL_008c;
  6910. }
  6911. }
  6912. catch(Il2CppExceptionWrapper& e)
  6913. {
  6914. __finallyBlock.StoreException(e.ex);
  6915. }
  6916. }
  6917. IL_008c:
  6918. {
  6919. return;
  6920. }
  6921. }
  6922. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6 (int32_t ___0_err, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method)
  6923. {
  6924. typedef void (*UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6_ftn) (int32_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  6925. static UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6_ftn _il2cpp_icall_func;
  6926. if (!_il2cpp_icall_func)
  6927. _il2cpp_icall_func = (UnityWebRequest_GetWebErrorString_Injected_mC196A95CAC9FB28CFFE83D756BF942C0AA9D29B6_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetWebErrorString_Injected(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError,UnityEngine.Bindings.ManagedSpanWrapper&)");
  6928. _il2cpp_icall_func(___0_err, ___1_ret);
  6929. }
  6930. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7 (int64_t ___0_responseCode, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_ret, const RuntimeMethod* method)
  6931. {
  6932. typedef void (*UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7_ftn) (int64_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  6933. static UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7_ftn _il2cpp_icall_func;
  6934. if (!_il2cpp_icall_func)
  6935. _il2cpp_icall_func = (UnityWebRequest_GetHTTPStatusString_Injected_m3031BB056CD4FD5EB87073171DFB6164051A05B7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString_Injected(System.Int64,UnityEngine.Bindings.ManagedSpanWrapper&)");
  6936. _il2cpp_icall_func(___0_responseCode, ___1_ret);
  6937. }
  6938. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  6939. {
  6940. typedef void (*UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991_ftn) (intptr_t);
  6941. static UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991_ftn _il2cpp_icall_func;
  6942. if (!_il2cpp_icall_func)
  6943. _il2cpp_icall_func = (UnityWebRequest_Release_Injected_m0FFC15CBADE5CACD96040C33D5E367630893D991_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Release_Injected(System.IntPtr)");
  6944. _il2cpp_icall_func(___0__unity_self);
  6945. }
  6946. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  6947. {
  6948. typedef intptr_t (*UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629_ftn) (intptr_t);
  6949. static UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629_ftn _il2cpp_icall_func;
  6950. if (!_il2cpp_icall_func)
  6951. _il2cpp_icall_func = (UnityWebRequest_BeginWebRequest_Injected_m87ED6BD69C7E8FB634574054C126478B4253A629_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::BeginWebRequest_Injected(System.IntPtr)");
  6952. intptr_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  6953. return icallRetVal;
  6954. }
  6955. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  6956. {
  6957. typedef void (*UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01_ftn) (intptr_t);
  6958. static UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01_ftn _il2cpp_icall_func;
  6959. if (!_il2cpp_icall_func)
  6960. _il2cpp_icall_func = (UnityWebRequest_Abort_Injected_m4108EF0777C12995F2ECA76F24D9BE98D22F6D01_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Abort_Injected(System.IntPtr)");
  6961. _il2cpp_icall_func(___0__unity_self);
  6962. }
  6963. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF (intptr_t ___0__unity_self, int32_t ___1_methodType, const RuntimeMethod* method)
  6964. {
  6965. typedef int32_t (*UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF_ftn) (intptr_t, int32_t);
  6966. static UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF_ftn _il2cpp_icall_func;
  6967. if (!_il2cpp_icall_func)
  6968. _il2cpp_icall_func = (UnityWebRequest_SetMethod_Injected_mCD77BA1D99B3B2161CD367AD884927C4DAFE5BAF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetMethod_Injected(System.IntPtr,UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)");
  6969. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_methodType);
  6970. return icallRetVal;
  6971. }
  6972. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_customMethodName, const RuntimeMethod* method)
  6973. {
  6974. typedef int32_t (*UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  6975. static UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322_ftn _il2cpp_icall_func;
  6976. if (!_il2cpp_icall_func)
  6977. _il2cpp_icall_func = (UnityWebRequest_SetCustomMethod_Injected_mB0F91159F5E53C60C16223A814CE0D5DC28FE322_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetCustomMethod_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  6978. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_customMethodName);
  6979. return icallRetVal;
  6980. }
  6981. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C (intptr_t ___0__unity_self, const RuntimeMethod* method)
  6982. {
  6983. typedef int32_t (*UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C_ftn) (intptr_t);
  6984. static UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C_ftn _il2cpp_icall_func;
  6985. if (!_il2cpp_icall_func)
  6986. _il2cpp_icall_func = (UnityWebRequest_GetError_Injected_mAC8F4853BAB30F535A7228F301D2F95ACE3BA61C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetError_Injected(System.IntPtr)");
  6987. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  6988. return icallRetVal;
  6989. }
  6990. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_url, const RuntimeMethod* method)
  6991. {
  6992. typedef int32_t (*UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  6993. static UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B_ftn _il2cpp_icall_func;
  6994. if (!_il2cpp_icall_func)
  6995. _il2cpp_icall_func = (UnityWebRequest_SetUrl_Injected_m2428B181C35FC2D61121DD8A231B09BB4002A15B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUrl_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&)");
  6996. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_url);
  6997. return icallRetVal;
  6998. }
  6999. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  7000. {
  7001. typedef int64_t (*UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0_ftn) (intptr_t);
  7002. static UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0_ftn _il2cpp_icall_func;
  7003. if (!_il2cpp_icall_func)
  7004. _il2cpp_icall_func = (UnityWebRequest_get_responseCode_Injected_mC1153EF1D079A7F24314CE1C609A93171D805BB0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_responseCode_Injected(System.IntPtr)");
  7005. int64_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  7006. return icallRetVal;
  7007. }
  7008. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF (intptr_t ___0__unity_self, const RuntimeMethod* method)
  7009. {
  7010. typedef bool (*UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF_ftn) (intptr_t);
  7011. static UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF_ftn _il2cpp_icall_func;
  7012. if (!_il2cpp_icall_func)
  7013. _il2cpp_icall_func = (UnityWebRequest_get_isModifiable_Injected_mBB454C8FA89CDF5A390712E2C0CB26C31507DDFF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isModifiable_Injected(System.IntPtr)");
  7014. bool icallRetVal = _il2cpp_icall_func(___0__unity_self);
  7015. return icallRetVal;
  7016. }
  7017. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9 (intptr_t ___0__unity_self, const RuntimeMethod* method)
  7018. {
  7019. typedef int32_t (*UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9_ftn) (intptr_t);
  7020. static UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9_ftn _il2cpp_icall_func;
  7021. if (!_il2cpp_icall_func)
  7022. _il2cpp_icall_func = (UnityWebRequest_get_result_Injected_m0ED910F3F3676B6A729DF54FF0B34320FE98D5E9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_result_Injected(System.IntPtr)");
  7023. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self);
  7024. return icallRetVal;
  7025. }
  7026. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_Injected_mFA4A70E1530E65713B4EA8895C61161D3C620C85 (intptr_t ___0__unity_self, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_name, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___2_value, const RuntimeMethod* method)
  7027. {
  7028. typedef int32_t (*UnityWebRequest_InternalSetRequestHeader_Injected_mFA4A70E1530E65713B4EA8895C61161D3C620C85_ftn) (intptr_t, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*);
  7029. static UnityWebRequest_InternalSetRequestHeader_Injected_mFA4A70E1530E65713B4EA8895C61161D3C620C85_ftn _il2cpp_icall_func;
  7030. if (!_il2cpp_icall_func)
  7031. _il2cpp_icall_func = (UnityWebRequest_InternalSetRequestHeader_Injected_mFA4A70E1530E65713B4EA8895C61161D3C620C85_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader_Injected(System.IntPtr,UnityEngine.Bindings.ManagedSpanWrapper&,UnityEngine.Bindings.ManagedSpanWrapper&)");
  7032. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_name, ___2_value);
  7033. return icallRetVal;
  7034. }
  7035. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF (intptr_t ___0__unity_self, intptr_t ___1_uh, const RuntimeMethod* method)
  7036. {
  7037. typedef int32_t (*UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF_ftn) (intptr_t, intptr_t);
  7038. static UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF_ftn _il2cpp_icall_func;
  7039. if (!_il2cpp_icall_func)
  7040. _il2cpp_icall_func = (UnityWebRequest_SetUploadHandler_Injected_m4C99ECAC0BA66598289FA21834CCC5313CC641AF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUploadHandler_Injected(System.IntPtr,System.IntPtr)");
  7041. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_uh);
  7042. return icallRetVal;
  7043. }
  7044. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77 (intptr_t ___0__unity_self, intptr_t ___1_dh, const RuntimeMethod* method)
  7045. {
  7046. typedef int32_t (*UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77_ftn) (intptr_t, intptr_t);
  7047. static UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77_ftn _il2cpp_icall_func;
  7048. if (!_il2cpp_icall_func)
  7049. _il2cpp_icall_func = (UnityWebRequest_SetDownloadHandler_Injected_mC943C5613B3E7F6AB241102058F31A4A2A673B77_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetDownloadHandler_Injected(System.IntPtr,System.IntPtr)");
  7050. int32_t icallRetVal = _il2cpp_icall_func(___0__unity_self, ___1_dh);
  7051. return icallRetVal;
  7052. }
  7053. #ifdef __clang__
  7054. #pragma clang diagnostic pop
  7055. #endif
  7056. #ifdef __clang__
  7057. #pragma clang diagnostic push
  7058. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7059. #pragma clang diagnostic ignored "-Wunused-variable"
  7060. #endif
  7061. #ifdef __clang__
  7062. #pragma clang diagnostic pop
  7063. #endif
  7064. #ifdef __clang__
  7065. #pragma clang diagnostic push
  7066. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7067. #pragma clang diagnostic ignored "-Wunused-variable"
  7068. #endif
  7069. #ifdef __clang__
  7070. #pragma clang diagnostic pop
  7071. #endif
  7072. #ifdef __clang__
  7073. #pragma clang diagnostic push
  7074. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7075. #pragma clang diagnostic ignored "-Wunused-variable"
  7076. #endif
  7077. #ifdef __clang__
  7078. #pragma clang diagnostic pop
  7079. #endif
  7080. #ifdef __clang__
  7081. #pragma clang diagnostic push
  7082. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7083. #pragma clang diagnostic ignored "-Wunused-variable"
  7084. #endif
  7085. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_unityWebRequest, const RuntimeMethod* method)
  7086. {
  7087. {
  7088. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_unityWebRequest;
  7089. NullCheck(L_0);
  7090. intptr_t L_1 = L_0->___m_Ptr;
  7091. return L_1;
  7092. }
  7093. }
  7094. #ifdef __clang__
  7095. #pragma clang diagnostic pop
  7096. #endif
  7097. #ifdef __clang__
  7098. #pragma clang diagnostic push
  7099. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7100. #pragma clang diagnostic ignored "-Wunused-variable"
  7101. #endif
  7102. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  7103. {
  7104. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  7105. }
  7106. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  7107. {
  7108. intptr_t unmarshaledm_Ptr_temp_0;
  7109. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7110. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  7111. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  7112. }
  7113. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  7114. {
  7115. }
  7116. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  7117. {
  7118. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  7119. }
  7120. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  7121. {
  7122. intptr_t unmarshaledm_Ptr_temp_0;
  7123. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7124. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr;
  7125. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_0;
  7126. }
  7127. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  7128. {
  7129. }
  7130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_m3CA892EE57ADFDEF86A3CD9AC35EF50848C178D3 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7131. {
  7132. intptr_t G_B2_0;
  7133. memset((&G_B2_0), 0, sizeof(G_B2_0));
  7134. intptr_t G_B1_0;
  7135. memset((&G_B1_0), 0, sizeof(G_B1_0));
  7136. {
  7137. intptr_t L_0;
  7138. L_0 = BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline(__this, NULL);
  7139. intptr_t L_1 = L_0;
  7140. if (L_1)
  7141. {
  7142. G_B2_0 = L_1;
  7143. goto IL_000f;
  7144. }
  7145. G_B1_0 = L_1;
  7146. }
  7147. {
  7148. ThrowHelper_ThrowNullReferenceException_mA9C7629D32240EE0218631933DAC647668CA63CF(__this, NULL);
  7149. G_B2_0 = G_B1_0;
  7150. }
  7151. IL_000f:
  7152. {
  7153. UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A(G_B2_0, NULL);
  7154. return;
  7155. }
  7156. }
  7157. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7158. {
  7159. {
  7160. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  7161. return;
  7162. }
  7163. }
  7164. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Finalize_m8769706C9DA361C89C42AEFE2F3F11549AEF4E4A (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7165. {
  7166. {
  7167. }
  7168. {
  7169. auto __finallyBlock = il2cpp::utils::Finally([&]
  7170. {
  7171. FINALLY_000b:
  7172. {
  7173. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  7174. return;
  7175. }
  7176. });
  7177. try
  7178. {
  7179. VirtualActionInvoker0::Invoke(5, __this);
  7180. goto IL_0013;
  7181. }
  7182. catch(Il2CppExceptionWrapper& e)
  7183. {
  7184. __finallyBlock.StoreException(e.ex);
  7185. }
  7186. }
  7187. IL_0013:
  7188. {
  7189. return;
  7190. }
  7191. }
  7192. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7193. {
  7194. bool V_0 = false;
  7195. {
  7196. intptr_t L_0 = __this->___m_Ptr;
  7197. bool L_1;
  7198. L_1 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline(L_0, 0, NULL);
  7199. V_0 = L_1;
  7200. bool L_2 = V_0;
  7201. if (!L_2)
  7202. {
  7203. goto IL_0029;
  7204. }
  7205. }
  7206. {
  7207. UploadHandler_ReleaseFromScripting_m3CA892EE57ADFDEF86A3CD9AC35EF50848C178D3(__this, NULL);
  7208. __this->___m_Ptr = 0;
  7209. }
  7210. IL_0029:
  7211. {
  7212. return;
  7213. }
  7214. }
  7215. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A (intptr_t ___0__unity_self, const RuntimeMethod* method)
  7216. {
  7217. typedef void (*UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A_ftn) (intptr_t);
  7218. static UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A_ftn _il2cpp_icall_func;
  7219. if (!_il2cpp_icall_func)
  7220. _il2cpp_icall_func = (UploadHandler_ReleaseFromScripting_Injected_m3D0A5BB5C2E43B12CB06166F7FD022B2093A1A1A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::ReleaseFromScripting_Injected(System.IntPtr)");
  7221. _il2cpp_icall_func(___0__unity_self);
  7222. }
  7223. #ifdef __clang__
  7224. #pragma clang diagnostic pop
  7225. #endif
  7226. #ifdef __clang__
  7227. #pragma clang diagnostic push
  7228. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7229. #pragma clang diagnostic ignored "-Wunused-variable"
  7230. #endif
  7231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uploadHandler, const RuntimeMethod* method)
  7232. {
  7233. {
  7234. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = ___0_uploadHandler;
  7235. NullCheck(L_0);
  7236. intptr_t L_1 = L_0->___m_Ptr;
  7237. return L_1;
  7238. }
  7239. }
  7240. #ifdef __clang__
  7241. #pragma clang diagnostic pop
  7242. #endif
  7243. #ifdef __clang__
  7244. #pragma clang diagnostic push
  7245. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7246. #pragma clang diagnostic ignored "-Wunused-variable"
  7247. #endif
  7248. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled)
  7249. {
  7250. marshaled.___m_Payload = unmarshaled.___m_Payload;
  7251. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  7252. }
  7253. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke_back(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled)
  7254. {
  7255. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Payload_temp_0;
  7256. memset((&unmarshaledm_Payload_temp_0), 0, sizeof(unmarshaledm_Payload_temp_0));
  7257. unmarshaledm_Payload_temp_0 = marshaled.___m_Payload;
  7258. unmarshaled.___m_Payload = unmarshaledm_Payload_temp_0;
  7259. intptr_t unmarshaledm_Ptr_temp_1;
  7260. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7261. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr;
  7262. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_1;
  7263. }
  7264. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke_cleanup(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled)
  7265. {
  7266. }
  7267. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled)
  7268. {
  7269. marshaled.___m_Payload = unmarshaled.___m_Payload;
  7270. marshaled.___m_Ptr = unmarshaled.___m_Ptr;
  7271. }
  7272. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com_back(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled)
  7273. {
  7274. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Payload_temp_0;
  7275. memset((&unmarshaledm_Payload_temp_0), 0, sizeof(unmarshaledm_Payload_temp_0));
  7276. unmarshaledm_Payload_temp_0 = marshaled.___m_Payload;
  7277. unmarshaled.___m_Payload = unmarshaledm_Payload_temp_0;
  7278. intptr_t unmarshaledm_Ptr_temp_1;
  7279. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7280. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr;
  7281. unmarshaled.___m_Ptr = unmarshaledm_Ptr_temp_1;
  7282. }
  7283. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com_cleanup(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled)
  7284. {
  7285. }
  7286. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* ___0_self, uint8_t* ___1_data, int32_t ___2_dataLength, const RuntimeMethod* method)
  7287. {
  7288. typedef intptr_t (*UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn) (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A*, uint8_t*, int32_t);
  7289. static UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn _il2cpp_icall_func;
  7290. if (!_il2cpp_icall_func)
  7291. _il2cpp_icall_func = (UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)");
  7292. intptr_t icallRetVal = _il2cpp_icall_func(___0_self, ___1_data, ___2_dataLength);
  7293. return icallRetVal;
  7294. }
  7295. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method)
  7296. {
  7297. static bool s_Il2CppMethodInitialized;
  7298. if (!s_Il2CppMethodInitialized)
  7299. {
  7300. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var);
  7301. s_Il2CppMethodInitialized = true;
  7302. }
  7303. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  7304. memset((&V_0), 0, sizeof(V_0));
  7305. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B3_0 = NULL;
  7306. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B1_0 = NULL;
  7307. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B2_0 = NULL;
  7308. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF G_B4_0;
  7309. memset((&G_B4_0), 0, sizeof(G_B4_0));
  7310. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B4_1 = NULL;
  7311. {
  7312. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data;
  7313. if (!L_0)
  7314. {
  7315. G_B3_0 = __this;
  7316. goto IL_0011;
  7317. }
  7318. G_B1_0 = __this;
  7319. }
  7320. {
  7321. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_data;
  7322. NullCheck(L_1);
  7323. if (!(((RuntimeArray*)L_1)->max_length))
  7324. {
  7325. G_B3_0 = G_B1_0;
  7326. goto IL_0011;
  7327. }
  7328. G_B2_0 = G_B1_0;
  7329. }
  7330. {
  7331. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_data;
  7332. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
  7333. memset((&L_3), 0, sizeof(L_3));
  7334. NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262((&L_3), L_2, 4, NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var);
  7335. G_B4_0 = L_3;
  7336. G_B4_1 = G_B2_0;
  7337. goto IL_001a;
  7338. }
  7339. IL_0011:
  7340. {
  7341. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  7342. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
  7343. G_B4_0 = L_4;
  7344. G_B4_1 = G_B3_0;
  7345. }
  7346. IL_001a:
  7347. {
  7348. UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF(G_B4_1, G_B4_0, (bool)1, NULL);
  7349. return;
  7350. }
  7351. }
  7352. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_data, bool ___1_transferOwnership, const RuntimeMethod* method)
  7353. {
  7354. static bool s_Il2CppMethodInitialized;
  7355. if (!s_Il2CppMethodInitialized)
  7356. {
  7357. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  7358. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7359. s_Il2CppMethodInitialized = true;
  7360. }
  7361. bool V_0 = false;
  7362. bool V_1 = false;
  7363. int32_t G_B3_0 = 0;
  7364. {
  7365. UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA(__this, NULL);
  7366. bool L_0;
  7367. L_0 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&___0_data), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7368. if (!L_0)
  7369. {
  7370. goto IL_001e;
  7371. }
  7372. }
  7373. {
  7374. int32_t L_1;
  7375. L_1 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_data))->___m_Length);
  7376. G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  7377. goto IL_001f;
  7378. }
  7379. IL_001e:
  7380. {
  7381. G_B3_0 = 1;
  7382. }
  7383. IL_001f:
  7384. {
  7385. V_0 = (bool)G_B3_0;
  7386. bool L_2 = V_0;
  7387. if (!L_2)
  7388. {
  7389. goto IL_0034;
  7390. }
  7391. }
  7392. {
  7393. intptr_t L_3;
  7394. L_3 = UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075(__this, (uint8_t*)((uintptr_t)0), 0, NULL);
  7395. ((UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)__this)->___m_Ptr = L_3;
  7396. goto IL_005b;
  7397. }
  7398. IL_0034:
  7399. {
  7400. bool L_4 = ___1_transferOwnership;
  7401. V_1 = L_4;
  7402. bool L_5 = V_1;
  7403. if (!L_5)
  7404. {
  7405. goto IL_0041;
  7406. }
  7407. }
  7408. {
  7409. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_6 = ___0_data;
  7410. __this->___m_Payload = L_6;
  7411. }
  7412. IL_0041:
  7413. {
  7414. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_7 = ___0_data;
  7415. void* L_8;
  7416. L_8 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF(L_7, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  7417. int32_t L_9;
  7418. L_9 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_data))->___m_Length);
  7419. intptr_t L_10;
  7420. L_10 = UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075(__this, (uint8_t*)L_8, L_9, NULL);
  7421. ((UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)__this)->___m_Ptr = L_10;
  7422. }
  7423. IL_005b:
  7424. {
  7425. return;
  7426. }
  7427. }
  7428. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw_Dispose_m7BC523C04CD5582382B23AF4FC019149DE328A1B (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, const RuntimeMethod* method)
  7429. {
  7430. static bool s_Il2CppMethodInitialized;
  7431. if (!s_Il2CppMethodInitialized)
  7432. {
  7433. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
  7434. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7435. s_Il2CppMethodInitialized = true;
  7436. }
  7437. bool V_0 = false;
  7438. {
  7439. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Payload);
  7440. bool L_1;
  7441. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7442. V_0 = L_1;
  7443. bool L_2 = V_0;
  7444. if (!L_2)
  7445. {
  7446. goto IL_001c;
  7447. }
  7448. }
  7449. {
  7450. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Payload);
  7451. NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA(L_3, NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
  7452. }
  7453. IL_001c:
  7454. {
  7455. UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109(__this, NULL);
  7456. return;
  7457. }
  7458. }
  7459. #ifdef __clang__
  7460. #pragma clang diagnostic pop
  7461. #endif
  7462. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
  7463. {
  7464. {
  7465. int32_t L_0 = __this->____stringLength;
  7466. return L_0;
  7467. }
  7468. }
  7469. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m14A0BC92E1856C4CEE7D6F16A9F0FBACA41F18AD_inline (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___0_handler, const RuntimeMethod* method)
  7470. {
  7471. {
  7472. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = ___0_handler;
  7473. NullCheck(L_0);
  7474. intptr_t L_1 = L_0->___m_Ptr;
  7475. return L_1;
  7476. }
  7477. }
  7478. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B_inline (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method)
  7479. {
  7480. {
  7481. intptr_t L_0 = ___0_value1;
  7482. intptr_t L_1 = ___1_value2;
  7483. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  7484. }
  7485. }
  7486. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mF982DE80FF446BC654CB8CB6A775E312AE1F3DAE_inline (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_handler, const RuntimeMethod* method)
  7487. {
  7488. {
  7489. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_handler;
  7490. NullCheck(L_0);
  7491. intptr_t L_1 = L_0->___m_Ptr;
  7492. return L_1;
  7493. }
  7494. }
  7495. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_mA66C9FA951E8595D50DA107F5881C9BF15579BCB_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_unityWebRequest, const RuntimeMethod* method)
  7496. {
  7497. {
  7498. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_unityWebRequest;
  7499. NullCheck(L_0);
  7500. intptr_t L_1 = L_0->___m_Ptr;
  7501. return L_1;
  7502. }
  7503. }
  7504. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7505. {
  7506. {
  7507. bool L_0 = ___0_value;
  7508. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField = L_0;
  7509. return;
  7510. }
  7511. }
  7512. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7513. {
  7514. {
  7515. bool L_0 = ___0_value;
  7516. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField = L_0;
  7517. return;
  7518. }
  7519. }
  7520. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7521. {
  7522. {
  7523. bool L_0 = ___0_value;
  7524. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField = L_0;
  7525. return;
  7526. }
  7527. }
  7528. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7529. {
  7530. {
  7531. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField;
  7532. return L_0;
  7533. }
  7534. }
  7535. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7536. {
  7537. {
  7538. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField;
  7539. return L_0;
  7540. }
  7541. }
  7542. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7543. {
  7544. {
  7545. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField;
  7546. return L_0;
  7547. }
  7548. }
  7549. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  7550. {
  7551. {
  7552. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  7553. __this->___U3CwebRequestU3Ek__BackingField = L_0;
  7554. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField), (void*)L_0);
  7555. return;
  7556. }
  7557. }
  7558. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool StringMarshaller_TryMarshalEmptyOrNullString_m615203C511071D59295D889AB136575DFFEA90A6_inline (String_t* ___0_s, ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* ___1_managedSpanWrapper, const RuntimeMethod* method)
  7559. {
  7560. bool V_0 = false;
  7561. bool V_1 = false;
  7562. bool V_2 = false;
  7563. {
  7564. String_t* L_0 = ___0_s;
  7565. V_0 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  7566. bool L_1 = V_0;
  7567. if (!L_1)
  7568. {
  7569. goto IL_0015;
  7570. }
  7571. }
  7572. {
  7573. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* L_2 = ___1_managedSpanWrapper;
  7574. il2cpp_codegen_initobj(L_2, sizeof(ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E));
  7575. V_1 = (bool)1;
  7576. goto IL_0043;
  7577. }
  7578. IL_0015:
  7579. {
  7580. String_t* L_3 = ___0_s;
  7581. NullCheck(L_3);
  7582. int32_t L_4;
  7583. L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
  7584. V_2 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  7585. bool L_5 = V_2;
  7586. if (!L_5)
  7587. {
  7588. goto IL_003f;
  7589. }
  7590. }
  7591. {
  7592. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E* L_6 = ___1_managedSpanWrapper;
  7593. uintptr_t L_7;
  7594. L_7 = UIntPtr_op_Explicit_mF1E7911DD5AC13B5E59EE8C7903469D12A3861E8(((int64_t)1), NULL);
  7595. void* L_8;
  7596. L_8 = UIntPtr_op_Explicit_m42C3EA82465934F505B4274A7CE320550A48B7B9(L_7, NULL);
  7597. ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E L_9;
  7598. memset((&L_9), 0, sizeof(L_9));
  7599. ManagedSpanWrapper__ctor_mB29647A21BB87EA4DF859E5C2FA2207F47E525D2((&L_9), L_8, 0, NULL);
  7600. *(ManagedSpanWrapper_tE7FC4BBB631B130757F8DEB15853D98FD3D5DC0E*)L_6 = L_9;
  7601. V_1 = (bool)1;
  7602. goto IL_0043;
  7603. }
  7604. IL_003f:
  7605. {
  7606. V_1 = (bool)0;
  7607. goto IL_0043;
  7608. }
  7609. IL_0043:
  7610. {
  7611. bool L_10 = V_1;
  7612. return L_10;
  7613. }
  7614. }
  7615. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method)
  7616. {
  7617. static bool s_Il2CppMethodInitialized;
  7618. if (!s_Il2CppMethodInitialized)
  7619. {
  7620. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
  7621. s_Il2CppMethodInitialized = true;
  7622. }
  7623. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
  7624. memset((&V_0), 0, sizeof(V_0));
  7625. {
  7626. String_t* L_0 = ___0_text;
  7627. if (L_0)
  7628. {
  7629. goto IL_000d;
  7630. }
  7631. }
  7632. {
  7633. il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
  7634. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0;
  7635. return L_1;
  7636. }
  7637. IL_000d:
  7638. {
  7639. String_t* L_2 = ___0_text;
  7640. NullCheck(L_2);
  7641. Il2CppChar* L_3;
  7642. L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL);
  7643. String_t* L_4 = ___0_text;
  7644. NullCheck(L_4);
  7645. int32_t L_5;
  7646. L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
  7647. ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
  7648. memset((&L_6), 0, sizeof(L_6));
  7649. ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
  7650. return L_6;
  7651. }
  7652. }
  7653. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BindingsMarshaller_ConvertToNative_m4520B52F497C3D16FB3E6ADB12DE939EF6494D56_inline (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uploadHandler, const RuntimeMethod* method)
  7654. {
  7655. {
  7656. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = ___0_uploadHandler;
  7657. NullCheck(L_0);
  7658. intptr_t L_1 = L_0->___m_Ptr;
  7659. return L_1;
  7660. }
  7661. }
  7662. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
  7663. {
  7664. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
  7665. int32_t V_1 = 0;
  7666. {
  7667. int32_t L_0 = __this->____version;
  7668. __this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
  7669. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->____items;
  7670. V_0 = L_1;
  7671. int32_t L_2 = __this->____size;
  7672. V_1 = L_2;
  7673. int32_t L_3 = V_1;
  7674. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
  7675. NullCheck(L_4);
  7676. if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
  7677. {
  7678. goto IL_0034;
  7679. }
  7680. }
  7681. {
  7682. int32_t L_5 = V_1;
  7683. __this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
  7684. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
  7685. int32_t L_7 = V_1;
  7686. RuntimeObject* L_8 = ___0_item;
  7687. NullCheck(L_6);
  7688. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
  7689. return;
  7690. }
  7691. IL_0034:
  7692. {
  7693. RuntimeObject* L_9 = ___0_item;
  7694. List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
  7695. return;
  7696. }
  7697. }
  7698. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
  7699. {
  7700. {
  7701. int32_t L_0 = __this->____size;
  7702. return L_0;
  7703. }
  7704. }
  7705. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  7706. {
  7707. {
  7708. void* L_0 = __this->___m_Buffer;
  7709. return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  7710. }
  7711. }
  7712. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
  7713. {
  7714. {
  7715. int32_t L_0 = __this->____length;
  7716. return L_0;
  7717. }
  7718. }
  7719. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method)
  7720. {
  7721. {
  7722. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_0 = __this->____current;
  7723. return L_0;
  7724. }
  7725. }
  7726. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
  7727. {
  7728. {
  7729. RuntimeObject* L_0 = __this->___key;
  7730. return L_0;
  7731. }
  7732. }
  7733. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
  7734. {
  7735. {
  7736. RuntimeObject* L_0 = __this->___value;
  7737. return L_0;
  7738. }
  7739. }
  7740. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
  7741. {
  7742. {
  7743. Il2CppChar* L_0 = ___0_ptr;
  7744. ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
  7745. memset((&L_1), 0, sizeof(L_1));
  7746. il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
  7747. __this->____pointer = L_1;
  7748. int32_t L_2 = ___1_length;
  7749. __this->____length = L_2;
  7750. return;
  7751. }
  7752. }