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.

backend3.traceevents 976KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818
  1. { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } }
  2. ,{ "pid":12345, "tid":0, "ts":1718093281706436, "dur":73, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }}
  3. ,{ "pid":12345, "tid":0, "ts":1718093281706545, "dur":86446, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }}
  4. ,{ "pid":12345, "tid":0, "ts":1718093281793018, "dur":1714, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }}
  5. ,{ "pid":12345, "tid":0, "ts":1718093281795023, "dur":397, "ph":"X", "name": "Tundra", "args": { "detail":"PrepareNodes" }}
  6. ,{ "pid":12345, "tid":0, "ts":1718093281795420, "dur":193, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }}
  7. ,{ "pid":12345, "tid":0, "ts":1718093281818898, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.DiagnosticSource.dll" }}
  8. ,{ "pid":12345, "tid":0, "ts":1718093281819050, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Diagnostics.TextWriterTraceListener.dll" }}
  9. ,{ "pid":12345, "tid":0, "ts":1718093281819190, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.dll" }}
  10. ,{ "pid":12345, "tid":0, "ts":1718093281819579, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.AccessControl.dll" }}
  11. ,{ "pid":12345, "tid":0, "ts":1718093281819691, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.IO.FileSystem.Primitives.dll" }}
  12. ,{ "pid":12345, "tid":0, "ts":1718093281819941, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_arm64/System.Linq.Expressions.dll" }}
  13. ,{ "pid":12345, "tid":0, "ts":1718093281828743, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.Ping.dll" }}
  14. ,{ "pid":12345, "tid":0, "ts":1718093281828897, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.ServicePoint.dll" }}
  15. ,{ "pid":12345, "tid":0, "ts":1718093281829062, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Net.WebSockets.Client.dll" }}
  16. ,{ "pid":12345, "tid":0, "ts":1718093281829170, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Numerics.Vectors.dll" }}
  17. ,{ "pid":12345, "tid":0, "ts":1718093281829230, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.ObjectModel.dll" }}
  18. ,{ "pid":12345, "tid":0, "ts":1718093281829464, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Reflection.Emit.dll" }}
  19. ,{ "pid":12345, "tid":0, "ts":1718093281829752, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Resources.Writer.dll" }}
  20. ,{ "pid":12345, "tid":0, "ts":1718093281829960, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/System.Runtime.Handles.dll" }}
  21. ,{ "pid":12345, "tid":0, "ts":1718093281842518, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gfile.c" }}
  22. ,{ "pid":12345, "tid":0, "ts":1718093281843596, "dur":58, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/boehm-gc.c" }}
  23. ,{ "pid":12345, "tid":0, "ts":1718093281843769, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-inlines.h" }}
  24. ,{ "pid":12345, "tid":0, "ts":1718093281844387, "dur":59, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/custom-attrs.c" }}
  25. ,{ "pid":12345, "tid":0, "ts":1718093281795626, "dur":83394, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }}
  26. ,{ "pid":12345, "tid":0, "ts":1718093281879039, "dur":11531807, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  27. ,{ "pid":12345, "tid":0, "ts":1718093293410880, "dur":69, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }}
  28. ,{ "pid":12345, "tid":0, "ts":1718093293411236, "dur":3994, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }}
  29. ,{ "pid":12345, "tid":1, "ts":1718093281795486, "dur":83564, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  30. ,{ "pid":12345, "tid":1, "ts":1718093281879054, "dur":27545, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }}
  31. ,{ "pid":12345, "tid":1, "ts":1718093281906947, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ProfilerModule.dll" }}
  32. ,{ "pid":12345, "tid":1, "ts":1718093281907135, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.SpriteShapeModule.dll" }}
  33. ,{ "pid":12345, "tid":1, "ts":1718093281907270, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.SubsystemsModule.dll" }}
  34. ,{ "pid":12345, "tid":1, "ts":1718093281907371, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TerrainModule.dll" }}
  35. ,{ "pid":12345, "tid":1, "ts":1718093281907481, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TextCoreFontEngineModule.dll" }}
  36. ,{ "pid":12345, "tid":1, "ts":1718093281907583, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TextCoreTextEngineModule.dll" }}
  37. ,{ "pid":12345, "tid":1, "ts":1718093281907853, "dur":166, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityTestProtocolModule.dll" }}
  38. ,{ "pid":12345, "tid":1, "ts":1718093281908073, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityWebRequestAudioModule.dll" }}
  39. ,{ "pid":12345, "tid":1, "ts":1718093281908391, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Environments.Internal.dll" }}
  40. ,{ "pid":12345, "tid":1, "ts":1718093281908501, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Networking.dll" }}
  41. ,{ "pid":12345, "tid":1, "ts":1718093281908604, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Scheduler.dll" }}
  42. ,{ "pid":12345, "tid":1, "ts":1718093281908681, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Environments.dll" }}
  43. ,{ "pid":12345, "tid":1, "ts":1718093281908774, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Configuration.dll" }}
  44. ,{ "pid":12345, "tid":1, "ts":1718093281909019, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.TextMeshPro.dll" }}
  45. ,{ "pid":12345, "tid":1, "ts":1718093281909174, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.AppleCore.dll" }}
  46. ,{ "pid":12345, "tid":1, "ts":1718093281909227, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.WinRTCore.dll" }}
  47. ,{ "pid":12345, "tid":1, "ts":1718093281909371, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Advertisements.dll" }}
  48. ,{ "pid":12345, "tid":1, "ts":1718093281909510, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Internal.dll" }}
  49. ,{ "pid":12345, "tid":1, "ts":1718093281909585, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.Apple.dll" }}
  50. ,{ "pid":12345, "tid":1, "ts":1718093281909715, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Threading.dll" }}
  51. ,{ "pid":12345, "tid":1, "ts":1718093281909788, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.Core.dll" }}
  52. ,{ "pid":12345, "tid":1, "ts":1718093281909908, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Purchasing.Common.dll" }}
  53. ,{ "pid":12345, "tid":1, "ts":1718093281910058, "dur":155, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.Tilemap.Extras.dll" }}
  54. ,{ "pid":12345, "tid":1, "ts":1718093281910241, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Telemetry.dll" }}
  55. ,{ "pid":12345, "tid":1, "ts":1718093281910332, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" }}
  56. ,{ "pid":12345, "tid":1, "ts":1718093281910461, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.2D.Common.Runtime.dll" }}
  57. ,{ "pid":12345, "tid":1, "ts":1718093281910590, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Mathematics.dll" }}
  58. ,{ "pid":12345, "tid":1, "ts":1718093281910702, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Registration.dll" }}
  59. ,{ "pid":12345, "tid":1, "ts":1718093281910757, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.VisualScripting.State.dll" }}
  60. ,{ "pid":12345, "tid":1, "ts":1718093281910912, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll" }}
  61. ,{ "pid":12345, "tid":1, "ts":1718093281911245, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll" }}
  62. ,{ "pid":12345, "tid":1, "ts":1718093281911344, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" }}
  63. ,{ "pid":12345, "tid":1, "ts":1718093281911459, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/PackageCache/com.unity.burst@1.8.13/Unity.Burst.Unsafe.dll" }}
  64. ,{ "pid":12345, "tid":1, "ts":1718093281911564, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/Firebase.Platform.dll" }}
  65. ,{ "pid":12345, "tid":1, "ts":1718093281911765, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.AppContext.dll" }}
  66. ,{ "pid":12345, "tid":1, "ts":1718093281911989, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.dll" }}
  67. ,{ "pid":12345, "tid":1, "ts":1718093281912086, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.Annotations.dll" }}
  68. ,{ "pid":12345, "tid":1, "ts":1718093281912144, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.EventBasedAsync.dll" }}
  69. ,{ "pid":12345, "tid":1, "ts":1718093281912571, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.Process.dll" }}
  70. ,{ "pid":12345, "tid":1, "ts":1718093281912778, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.TraceSource.dll" }}
  71. ,{ "pid":12345, "tid":1, "ts":1718093281912879, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Drawing.Primitives.dll" }}
  72. ,{ "pid":12345, "tid":1, "ts":1718093281912952, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Dynamic.Runtime.dll" }}
  73. ,{ "pid":12345, "tid":1, "ts":1718093281913236, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.FileSystem.Watcher.dll" }}
  74. ,{ "pid":12345, "tid":1, "ts":1718093281913307, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.FileSystem.dll" }}
  75. ,{ "pid":12345, "tid":1, "ts":1718093281913423, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.UnmanagedMemoryStream.dll" }}
  76. ,{ "pid":12345, "tid":1, "ts":1718093281913505, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.dll" }}
  77. ,{ "pid":12345, "tid":1, "ts":1718093281913573, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Linq.Expressions.dll" }}
  78. ,{ "pid":12345, "tid":1, "ts":1718093281914038, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.WebHeaderCollection.dll" }}
  79. ,{ "pid":12345, "tid":1, "ts":1718093281914147, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Reflection.DispatchProxy.dll" }}
  80. ,{ "pid":12345, "tid":1, "ts":1718093281914467, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Resources.ResourceManager.dll" }}
  81. ,{ "pid":12345, "tid":1, "ts":1718093281914525, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Resources.Writer.dll" }}
  82. ,{ "pid":12345, "tid":1, "ts":1718093281914653, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Handles.dll" }}
  83. ,{ "pid":12345, "tid":1, "ts":1718093281914781, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.InteropServices.dll" }}
  84. ,{ "pid":12345, "tid":1, "ts":1718093281914896, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Numerics.dll" }}
  85. ,{ "pid":12345, "tid":1, "ts":1718093281915056, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Runtime.Serialization.Xml.dll" }}
  86. ,{ "pid":12345, "tid":1, "ts":1718093281915177, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Claims.dll" }}
  87. ,{ "pid":12345, "tid":1, "ts":1718093281915357, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Encoding.dll" }}
  88. ,{ "pid":12345, "tid":1, "ts":1718093281915413, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Encryption.Aes.dll" }}
  89. ,{ "pid":12345, "tid":1, "ts":1718093281915517, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Encryption.ECDsa.dll" }}
  90. ,{ "pid":12345, "tid":1, "ts":1718093281915673, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.OpenSsl.dll" }}
  91. ,{ "pid":12345, "tid":1, "ts":1718093281915926, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Principal.Windows.dll" }}
  92. ,{ "pid":12345, "tid":1, "ts":1718093281916224, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceModel.Security.dll" }}
  93. ,{ "pid":12345, "tid":1, "ts":1718093281916387, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Text.Encoding.dll" }}
  94. ,{ "pid":12345, "tid":1, "ts":1718093281916768, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.ReaderWriter.dll" }}
  95. ,{ "pid":12345, "tid":1, "ts":1718093281916908, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.XPath.XmlDocument.dll" }}
  96. ,{ "pid":12345, "tid":1, "ts":1718093281916976, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.XPath.dll" }}
  97. ,{ "pid":12345, "tid":1, "ts":1718093281917146, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.Xsl.Primitives.dll" }}
  98. ,{ "pid":12345, "tid":1, "ts":1718093281917207, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/netstandard.dll" }}
  99. ,{ "pid":12345, "tid":1, "ts":1718093281917356, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ComponentModel.DataAnnotations.dll" }}
  100. ,{ "pid":12345, "tid":1, "ts":1718093281917691, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Data.dll" }}
  101. ,{ "pid":12345, "tid":1, "ts":1718093281917879, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Drawing.Design.dll" }}
  102. ,{ "pid":12345, "tid":1, "ts":1718093281918484, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Runtime.Caching.dll" }}
  103. ,{ "pid":12345, "tid":1, "ts":1718093281918852, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceModel.Routing.dll" }}
  104. ,{ "pid":12345, "tid":1, "ts":1718093281919433, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Xml.Linq.dll" }}
  105. ,{ "pid":12345, "tid":1, "ts":1718093281919610, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/MethodsToPreserve.xml" }}
  106. ,{ "pid":12345, "tid":1, "ts":1718093281919697, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/TypesInScenes.xml" }}
  107. ,{ "pid":12345, "tid":1, "ts":1718093281919821, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Temp/StagingArea/Data/Managed/SerializedTypes.xml" }}
  108. ,{ "pid":12345, "tid":1, "ts":1718093281919909, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/link.xml" }}
  109. ,{ "pid":12345, "tid":1, "ts":1718093281920201, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Analytics.deps.json" }}
  110. ,{ "pid":12345, "tid":1, "ts":1718093281920531, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Core.dll" }}
  111. ,{ "pid":12345, "tid":1, "ts":1718093281920696, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.DotNet.dll" }}
  112. ,{ "pid":12345, "tid":1, "ts":1718093281920813, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.DotNet.pdb" }}
  113. ,{ "pid":12345, "tid":1, "ts":1718093281920865, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.NativeProgramSupport.dll" }}
  114. ,{ "pid":12345, "tid":1, "ts":1718093281920936, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.NativeProgramSupport.pdb" }}
  115. ,{ "pid":12345, "tid":1, "ts":1718093281921109, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.TinyProfiler2.pdb" }}
  116. ,{ "pid":12345, "tid":1, "ts":1718093281921230, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Toolchain.Android.pdb" }}
  117. ,{ "pid":12345, "tid":1, "ts":1718093281921518, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Toolchain.Linux.dll" }}
  118. ,{ "pid":12345, "tid":1, "ts":1718093281921941, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Toolchain.VisionOS.pdb" }}
  119. ,{ "pid":12345, "tid":1, "ts":1718093281922075, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Toolchain.VisualStudio.pdb" }}
  120. ,{ "pid":12345, "tid":1, "ts":1718093281922329, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.TundraBackend.dll" }}
  121. ,{ "pid":12345, "tid":1, "ts":1718093281922459, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.VisualStudioSolution.dll" }}
  122. ,{ "pid":12345, "tid":1, "ts":1718093281922758, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/il2cpp.dll.config" }}
  123. ,{ "pid":12345, "tid":1, "ts":1718093281922861, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/il2cpp.pdb" }}
  124. ,{ "pid":12345, "tid":1, "ts":1718093281922927, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/il2cpp.runtimeconfig.json" }}
  125. ,{ "pid":12345, "tid":1, "ts":1718093281922986, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/JetBrains.Profiler.Api.dll" }}
  126. ,{ "pid":12345, "tid":1, "ts":1718093281923403, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Microsoft.VisualBasic.Core.dll" }}
  127. ,{ "pid":12345, "tid":1, "ts":1718093281923902, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.AppContext.dll" }}
  128. ,{ "pid":12345, "tid":1, "ts":1718093281924168, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.ComponentModel.Annotations.dll" }}
  129. ,{ "pid":12345, "tid":1, "ts":1718093281924314, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Configuration.dll" }}
  130. ,{ "pid":12345, "tid":1, "ts":1718093281924664, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Diagnostics.Process.dll" }}
  131. ,{ "pid":12345, "tid":1, "ts":1718093281924829, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Diagnostics.Tools.dll" }}
  132. ,{ "pid":12345, "tid":1, "ts":1718093281924973, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Drawing.Primitives.dll" }}
  133. ,{ "pid":12345, "tid":1, "ts":1718093281925069, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Formats.Asn1.dll" }}
  134. ,{ "pid":12345, "tid":1, "ts":1718093281925184, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Globalization.dll" }}
  135. ,{ "pid":12345, "tid":1, "ts":1718093281925303, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.Compression.Brotli.dll" }}
  136. ,{ "pid":12345, "tid":1, "ts":1718093281925386, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.Compression.FileSystem.dll" }}
  137. ,{ "pid":12345, "tid":1, "ts":1718093281925494, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.FileSystem.AccessControl.dll" }}
  138. ,{ "pid":12345, "tid":1, "ts":1718093281925699, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.IO.IsolatedStorage.dll" }}
  139. ,{ "pid":12345, "tid":1, "ts":1718093281925999, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Linq.Queryable.dll" }}
  140. ,{ "pid":12345, "tid":1, "ts":1718093281926087, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Memory.dll" }}
  141. ,{ "pid":12345, "tid":1, "ts":1718093281926169, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.dll" }}
  142. ,{ "pid":12345, "tid":1, "ts":1718093281926225, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Http.dll" }}
  143. ,{ "pid":12345, "tid":1, "ts":1718093281926291, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Http.Json.dll" }}
  144. ,{ "pid":12345, "tid":1, "ts":1718093281926507, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Ping.dll" }}
  145. ,{ "pid":12345, "tid":1, "ts":1718093281926803, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.WebClient.dll" }}
  146. ,{ "pid":12345, "tid":1, "ts":1718093281926876, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.WebHeaderCollection.dll" }}
  147. ,{ "pid":12345, "tid":1, "ts":1718093281926944, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.WebProxy.dll" }}
  148. ,{ "pid":12345, "tid":1, "ts":1718093281927040, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.WebSockets.dll" }}
  149. ,{ "pid":12345, "tid":1, "ts":1718093281927139, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Numerics.Vectors.dll" }}
  150. ,{ "pid":12345, "tid":1, "ts":1718093281927329, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Private.Xml.dll" }}
  151. ,{ "pid":12345, "tid":1, "ts":1718093281927415, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Private.Xml.Linq.dll" }}
  152. ,{ "pid":12345, "tid":1, "ts":1718093281927549, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Reflection.Emit.dll" }}
  153. ,{ "pid":12345, "tid":1, "ts":1718093281927632, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Reflection.Emit.ILGeneration.dll" }}
  154. ,{ "pid":12345, "tid":1, "ts":1718093281927880, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Resources.Reader.dll" }}
  155. ,{ "pid":12345, "tid":1, "ts":1718093281928279, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Runtime.Numerics.dll" }}
  156. ,{ "pid":12345, "tid":1, "ts":1718093281928696, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Security.Cryptography.Encoding.dll" }}
  157. ,{ "pid":12345, "tid":1, "ts":1718093281929152, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Text.RegularExpressions.dll" }}
  158. ,{ "pid":12345, "tid":1, "ts":1718093281929476, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Transactions.dll" }}
  159. ,{ "pid":12345, "tid":1, "ts":1718093281929600, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Xml.dll" }}
  160. ,{ "pid":12345, "tid":1, "ts":1718093281929702, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Xml.XDocument.dll" }}
  161. ,{ "pid":12345, "tid":1, "ts":1718093281929908, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.Cecil.Awesome.dll" }}
  162. ,{ "pid":12345, "tid":1, "ts":1718093281931335, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.pdb" }}
  163. ,{ "pid":12345, "tid":1, "ts":1718093281931471, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.Linker.Api.dll" }}
  164. ,{ "pid":12345, "tid":1, "ts":1718093281931529, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.Linker.Api.Output.dll" }}
  165. ,{ "pid":12345, "tid":1, "ts":1718093281906604, "dur":25470, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"UnityLinker /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/unitylinker_fi2v.traceevents" }}
  166. ,{ "pid":12345, "tid":1, "ts":1718093281932074, "dur":11497, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  167. ,{ "pid":12345, "tid":1, "ts":1718093281948586, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Bee.Toolchain.VisionOS.pdb" }}
  168. ,{ "pid":12345, "tid":1, "ts":1718093281948902, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Buffers.dll" }}
  169. ,{ "pid":12345, "tid":1, "ts":1718093281949595, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.NetworkInformation.dll" }}
  170. ,{ "pid":12345, "tid":1, "ts":1718093281949700, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Ping.dll" }}
  171. ,{ "pid":12345, "tid":1, "ts":1718093281949763, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Primitives.dll" }}
  172. ,{ "pid":12345, "tid":1, "ts":1718093281949821, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Net.Quic.dll" }}
  173. ,{ "pid":12345, "tid":1, "ts":1718093281950185, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Runtime.Serialization.dll" }}
  174. ,{ "pid":12345, "tid":1, "ts":1718093281950278, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Runtime.Serialization.Formatters.dll" }}
  175. ,{ "pid":12345, "tid":1, "ts":1718093281950520, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/System.Transactions.Local.dll" }}
  176. ,{ "pid":12345, "tid":1, "ts":1718093281950770, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/il2cpp/build/deploy/Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.pdb" }}
  177. ,{ "pid":12345, "tid":1, "ts":1718093281951039, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/AppleAuth.dll" }}
  178. ,{ "pid":12345, "tid":1, "ts":1718093281951095, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Firebase.App.dll" }}
  179. ,{ "pid":12345, "tid":1, "ts":1718093281951173, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Firebase.Auth.dll" }}
  180. ,{ "pid":12345, "tid":1, "ts":1718093281951247, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Firebase.Platform.dll" }}
  181. ,{ "pid":12345, "tid":1, "ts":1718093281951303, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.Common.dll" }}
  182. ,{ "pid":12345, "tid":1, "ts":1718093281951424, "dur":395, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/I18N.CJK.dll" }}
  183. ,{ "pid":12345, "tid":1, "ts":1718093281951823, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/I18N.West.dll" }}
  184. ,{ "pid":12345, "tid":1, "ts":1718093281951892, "dur":1342, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/mscorlib.dll" }}
  185. ,{ "pid":12345, "tid":1, "ts":1718093281953255, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Purchasing.Common.dll" }}
  186. ,{ "pid":12345, "tid":1, "ts":1718093281953406, "dur":293, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Drawing.dll" }}
  187. ,{ "pid":12345, "tid":1, "ts":1718093281953749, "dur":1021, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Xml.dll" }}
  188. ,{ "pid":12345, "tid":1, "ts":1718093281954778, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Collections.dll" }}
  189. ,{ "pid":12345, "tid":1, "ts":1718093281954866, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Mathematics.dll" }}
  190. ,{ "pid":12345, "tid":1, "ts":1718093281954949, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Internal.dll" }}
  191. ,{ "pid":12345, "tid":1, "ts":1718093281955027, "dur":377, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.TextMeshPro.dll" }}
  192. ,{ "pid":12345, "tid":1, "ts":1718093281955449, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.Apple.dll" }}
  193. ,{ "pid":12345, "tid":1, "ts":1718093281955604, "dur":820, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UIElementsModule.dll" }}
  194. ,{ "pid":12345, "tid":1, "ts":1718093281948481, "dur":8000, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"IL2CPP_CodeGen /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/il2cpp_conv_ztz6.traceevents" }}
  195. ,{ "pid":12345, "tid":1, "ts":1718093281957081, "dur":154, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
  196. ,{ "pid":12345, "tid":1, "ts":1718093282623025, "dur":9110595, "ph":"X", "name": "IL2CPP_CodeGen", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/il2cpp_conv_ztz6.traceevents" }}
  197. ,{ "pid":12345, "tid":1, "ts":1718093291738414, "dur":1671723, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  198. ,{ "pid":12345, "tid":1, "ts":1718093293410141, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/AsyncPluginsFromLinker/lib_burst_generated.cpp" }}
  199. ,{ "pid":12345, "tid":1, "ts":1718093293410140, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Libraries/lib_burst_generated.cpp" }}
  200. ,{ "pid":12345, "tid":2, "ts":1718093281795506, "dur":83554, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  201. ,{ "pid":12345, "tid":2, "ts":1718093281879066, "dur":994, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  202. ,{ "pid":12345, "tid":2, "ts":1718093281880060, "dur":1027, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  203. ,{ "pid":12345, "tid":2, "ts":1718093281881088, "dur":940, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  204. ,{ "pid":12345, "tid":2, "ts":1718093281882028, "dur":964, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  205. ,{ "pid":12345, "tid":2, "ts":1718093281882992, "dur":1111, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  206. ,{ "pid":12345, "tid":2, "ts":1718093281884103, "dur":22554, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  207. ,{ "pid":12345, "tid":2, "ts":1718093281906980, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  208. ,{ "pid":12345, "tid":2, "ts":1718093281907137, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  209. ,{ "pid":12345, "tid":2, "ts":1718093281907280, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  210. ,{ "pid":12345, "tid":2, "ts":1718093281907438, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  211. ,{ "pid":12345, "tid":2, "ts":1718093281907573, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  212. ,{ "pid":12345, "tid":2, "ts":1718093281907843, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  213. ,{ "pid":12345, "tid":2, "ts":1718093281908036, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  214. ,{ "pid":12345, "tid":2, "ts":1718093281908406, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftdoc" }}
  215. ,{ "pid":12345, "tid":2, "ts":1718093281908516, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  216. ,{ "pid":12345, "tid":2, "ts":1718093281908748, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftdoc" }}
  217. ,{ "pid":12345, "tid":2, "ts":1718093281908888, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  218. ,{ "pid":12345, "tid":2, "ts":1718093281909037, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  219. ,{ "pid":12345, "tid":2, "ts":1718093281909136, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasing.h" }}
  220. ,{ "pid":12345, "tid":2, "ts":1718093281909130, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasing.h" }}
  221. ,{ "pid":12345, "tid":2, "ts":1718093281909250, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  222. ,{ "pid":12345, "tid":2, "ts":1718093281909466, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURProduct.h" }}
  223. ,{ "pid":12345, "tid":2, "ts":1718093281909465, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURProduct.h" }}
  224. ,{ "pid":12345, "tid":2, "ts":1718093281909523, "dur":186, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  225. ,{ "pid":12345, "tid":2, "ts":1718093281909718, "dur":160, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h" }}
  226. ,{ "pid":12345, "tid":2, "ts":1718093281909717, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAnalyticsAcquisitionType.h" }}
  227. ,{ "pid":12345, "tid":2, "ts":1718093281909879, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  228. ,{ "pid":12345, "tid":2, "ts":1718093281909936, "dur":259, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerView.h" }}
  229. ,{ "pid":12345, "tid":2, "ts":1718093281909936, "dur":260, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerView.h" }}
  230. ,{ "pid":12345, "tid":2, "ts":1718093281910196, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  231. ,{ "pid":12345, "tid":2, "ts":1718093281910305, "dur":240, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsCore.h" }}
  232. ,{ "pid":12345, "tid":2, "ts":1718093281910304, "dur":242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsCore.h" }}
  233. ,{ "pid":12345, "tid":2, "ts":1718093281910546, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  234. ,{ "pid":12345, "tid":2, "ts":1718093281910681, "dur":193, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPromoAdPlacementContent.h" }}
  235. ,{ "pid":12345, "tid":2, "ts":1718093281910680, "dur":195, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoAdPlacementContent.h" }}
  236. ,{ "pid":12345, "tid":2, "ts":1718093281910875, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  237. ,{ "pid":12345, "tid":2, "ts":1718093281911008, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSPurchasing.h" }}
  238. ,{ "pid":12345, "tid":2, "ts":1718093281911007, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSPurchasing.h" }}
  239. ,{ "pid":12345, "tid":2, "ts":1718093281911088, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  240. ,{ "pid":12345, "tid":2, "ts":1718093281911166, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBaseOptions.h" }}
  241. ,{ "pid":12345, "tid":2, "ts":1718093281911166, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBaseOptions.h" }}
  242. ,{ "pid":12345, "tid":2, "ts":1718093281911260, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  243. ,{ "pid":12345, "tid":2, "ts":1718093281911338, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/NativeSymbol.h" }}
  244. ,{ "pid":12345, "tid":2, "ts":1718093281911336, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/NativeSymbol.h" }}
  245. ,{ "pid":12345, "tid":2, "ts":1718093281911484, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.cpp" }}
  246. ,{ "pid":12345, "tid":2, "ts":1718093281911482, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.cpp" }}
  247. ,{ "pid":12345, "tid":2, "ts":1718093281911588, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  248. ,{ "pid":12345, "tid":2, "ts":1718093281911668, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Finally.cpp" }}
  249. ,{ "pid":12345, "tid":2, "ts":1718093281911667, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Finally.cpp" }}
  250. ,{ "pid":12345, "tid":2, "ts":1718093281911731, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  251. ,{ "pid":12345, "tid":2, "ts":1718093281911826, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/BlobReader.cpp" }}
  252. ,{ "pid":12345, "tid":2, "ts":1718093281911825, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/BlobReader.cpp" }}
  253. ,{ "pid":12345, "tid":2, "ts":1718093281911929, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  254. ,{ "pid":12345, "tid":2, "ts":1718093281912031, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/TemplateUtils.h" }}
  255. ,{ "pid":12345, "tid":2, "ts":1718093281912030, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/TemplateUtils.h" }}
  256. ,{ "pid":12345, "tid":2, "ts":1718093281912170, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  257. ,{ "pid":12345, "tid":2, "ts":1718093281912321, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/sha1.cpp" }}
  258. ,{ "pid":12345, "tid":2, "ts":1718093281912319, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/sha1.cpp" }}
  259. ,{ "pid":12345, "tid":2, "ts":1718093281912378, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  260. ,{ "pid":12345, "tid":2, "ts":1718093281912441, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Output.cpp" }}
  261. ,{ "pid":12345, "tid":2, "ts":1718093281912439, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Output.cpp" }}
  262. ,{ "pid":12345, "tid":2, "ts":1718093281912536, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  263. ,{ "pid":12345, "tid":2, "ts":1718093281912601, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryRead.cpp" }}
  264. ,{ "pid":12345, "tid":2, "ts":1718093281912599, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryRead.cpp" }}
  265. ,{ "pid":12345, "tid":2, "ts":1718093281912719, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  266. ,{ "pid":12345, "tid":2, "ts":1718093281912844, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryMappedFile.cpp" }}
  267. ,{ "pid":12345, "tid":2, "ts":1718093281912843, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryMappedFile.cpp" }}
  268. ,{ "pid":12345, "tid":2, "ts":1718093281912914, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  269. ,{ "pid":12345, "tid":2, "ts":1718093281913033, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Logging.h" }}
  270. ,{ "pid":12345, "tid":2, "ts":1718093281913031, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Logging.h" }}
  271. ,{ "pid":12345, "tid":2, "ts":1718093281913117, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  272. ,{ "pid":12345, "tid":2, "ts":1718093281913177, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppError.h" }}
  273. ,{ "pid":12345, "tid":2, "ts":1718093281913175, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppError.h" }}
  274. ,{ "pid":12345, "tid":2, "ts":1718093281913236, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  275. ,{ "pid":12345, "tid":2, "ts":1718093281913348, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ExceptionSupportStack.h" }}
  276. ,{ "pid":12345, "tid":2, "ts":1718093281913347, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ExceptionSupportStack.h" }}
  277. ,{ "pid":12345, "tid":2, "ts":1718093281913429, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  278. ,{ "pid":12345, "tid":2, "ts":1718093281913544, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/dynamic_array.h" }}
  279. ,{ "pid":12345, "tid":2, "ts":1718093281913542, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/dynamic_array.h" }}
  280. ,{ "pid":12345, "tid":2, "ts":1718093281913601, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  281. ,{ "pid":12345, "tid":2, "ts":1718093281913751, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  282. ,{ "pid":12345, "tid":2, "ts":1718093281913909, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  283. ,{ "pid":12345, "tid":2, "ts":1718093281914000, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Process.cpp" }}
  284. ,{ "pid":12345, "tid":2, "ts":1718093281914101, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/File.cpp" }}
  285. ,{ "pid":12345, "tid":2, "ts":1718093281914100, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/File.cpp" }}
  286. ,{ "pid":12345, "tid":2, "ts":1718093281914236, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  287. ,{ "pid":12345, "tid":2, "ts":1718093281914320, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHelpers.cpp" }}
  288. ,{ "pid":12345, "tid":2, "ts":1718093281914318, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHelpers.cpp" }}
  289. ,{ "pid":12345, "tid":2, "ts":1718093281914385, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  290. ,{ "pid":12345, "tid":2, "ts":1718093281914460, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadImpl.cpp" }}
  291. ,{ "pid":12345, "tid":2, "ts":1718093281914459, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadImpl.cpp" }}
  292. ,{ "pid":12345, "tid":2, "ts":1718093281914563, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  293. ,{ "pid":12345, "tid":2, "ts":1718093281914640, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SocketImpl.cpp" }}
  294. ,{ "pid":12345, "tid":2, "ts":1718093281914639, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SocketImpl.cpp" }}
  295. ,{ "pid":12345, "tid":2, "ts":1718093281914713, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  296. ,{ "pid":12345, "tid":2, "ts":1718093281914808, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Memory.cpp" }}
  297. ,{ "pid":12345, "tid":2, "ts":1718093281914807, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Memory.cpp" }}
  298. ,{ "pid":12345, "tid":2, "ts":1718093281914871, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  299. ,{ "pid":12345, "tid":2, "ts":1718093281914963, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/LastError.cpp" }}
  300. ,{ "pid":12345, "tid":2, "ts":1718093281914962, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/LastError.cpp" }}
  301. ,{ "pid":12345, "tid":2, "ts":1718093281915056, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  302. ,{ "pid":12345, "tid":2, "ts":1718093281915171, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Environment.cpp" }}
  303. ,{ "pid":12345, "tid":2, "ts":1718093281915170, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Environment.cpp" }}
  304. ,{ "pid":12345, "tid":2, "ts":1718093281915274, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  305. ,{ "pid":12345, "tid":2, "ts":1718093281915346, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Cryptography.cpp" }}
  306. ,{ "pid":12345, "tid":2, "ts":1718093281915345, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Cryptography.cpp" }}
  307. ,{ "pid":12345, "tid":2, "ts":1718093281915416, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  308. ,{ "pid":12345, "tid":2, "ts":1718093281915525, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/COM.cpp" }}
  309. ,{ "pid":12345, "tid":2, "ts":1718093281915524, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/COM.cpp" }}
  310. ,{ "pid":12345, "tid":2, "ts":1718093281915606, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  311. ,{ "pid":12345, "tid":2, "ts":1718093281915696, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Thread.h" }}
  312. ,{ "pid":12345, "tid":2, "ts":1718093281915695, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Thread.h" }}
  313. ,{ "pid":12345, "tid":2, "ts":1718093281915774, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  314. ,{ "pid":12345, "tid":2, "ts":1718093281915853, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/StackTrace.h" }}
  315. ,{ "pid":12345, "tid":2, "ts":1718093281915851, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/StackTrace.h" }}
  316. ,{ "pid":12345, "tid":2, "ts":1718093281915921, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  317. ,{ "pid":12345, "tid":2, "ts":1718093281916057, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Semaphore.cpp" }}
  318. ,{ "pid":12345, "tid":2, "ts":1718093281916056, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Semaphore.cpp" }}
  319. ,{ "pid":12345, "tid":2, "ts":1718093281916120, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  320. ,{ "pid":12345, "tid":2, "ts":1718093281916210, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Time.cpp" }}
  321. ,{ "pid":12345, "tid":2, "ts":1718093281916208, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Time.cpp" }}
  322. ,{ "pid":12345, "tid":2, "ts":1718093281916315, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  323. ,{ "pid":12345, "tid":2, "ts":1718093281916385, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/StackTrace.cpp" }}
  324. ,{ "pid":12345, "tid":2, "ts":1718093281916383, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/StackTrace.cpp" }}
  325. ,{ "pid":12345, "tid":2, "ts":1718093281916493, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  326. ,{ "pid":12345, "tid":2, "ts":1718093281916573, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/PosixHelpers.cpp" }}
  327. ,{ "pid":12345, "tid":2, "ts":1718093281916572, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/PosixHelpers.cpp" }}
  328. ,{ "pid":12345, "tid":2, "ts":1718093281916635, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  329. ,{ "pid":12345, "tid":2, "ts":1718093281916724, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Memory.cpp" }}
  330. ,{ "pid":12345, "tid":2, "ts":1718093281916722, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Memory.cpp" }}
  331. ,{ "pid":12345, "tid":2, "ts":1718093281916792, "dur":172, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  332. ,{ "pid":12345, "tid":2, "ts":1718093281916971, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FileHandle.h" }}
  333. ,{ "pid":12345, "tid":2, "ts":1718093281916970, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FileHandle.h" }}
  334. ,{ "pid":12345, "tid":2, "ts":1718093281917093, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  335. ,{ "pid":12345, "tid":2, "ts":1718093281917165, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Encoding.cpp" }}
  336. ,{ "pid":12345, "tid":2, "ts":1718093281917163, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Encoding.cpp" }}
  337. ,{ "pid":12345, "tid":2, "ts":1718093281917282, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  338. ,{ "pid":12345, "tid":2, "ts":1718093281917342, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Console.cpp" }}
  339. ,{ "pid":12345, "tid":2, "ts":1718093281917340, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Console.cpp" }}
  340. ,{ "pid":12345, "tid":2, "ts":1718093281917454, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  341. ,{ "pid":12345, "tid":2, "ts":1718093281917514, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/SystemCertificates.cpp" }}
  342. ,{ "pid":12345, "tid":2, "ts":1718093281917512, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/SystemCertificates.cpp" }}
  343. ,{ "pid":12345, "tid":2, "ts":1718093281917584, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  344. ,{ "pid":12345, "tid":2, "ts":1718093281917646, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Mutex.cpp" }}
  345. ,{ "pid":12345, "tid":2, "ts":1718093281917645, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Mutex.cpp" }}
  346. ,{ "pid":12345, "tid":2, "ts":1718093281917705, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  347. ,{ "pid":12345, "tid":2, "ts":1718093281917825, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MarshalAlloc.h" }}
  348. ,{ "pid":12345, "tid":2, "ts":1718093281917824, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MarshalAlloc.h" }}
  349. ,{ "pid":12345, "tid":2, "ts":1718093281917948, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  350. ,{ "pid":12345, "tid":2, "ts":1718093281918051, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Initialize.h" }}
  351. ,{ "pid":12345, "tid":2, "ts":1718093281918050, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Initialize.h" }}
  352. ,{ "pid":12345, "tid":2, "ts":1718093281918123, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  353. ,{ "pid":12345, "tid":2, "ts":1718093281918200, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WaitObject.cpp" }}
  354. ,{ "pid":12345, "tid":2, "ts":1718093281918198, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WaitObject.cpp" }}
  355. ,{ "pid":12345, "tid":2, "ts":1718093281918265, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  356. ,{ "pid":12345, "tid":2, "ts":1718093281918343, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SemaphoreImpl.h" }}
  357. ,{ "pid":12345, "tid":2, "ts":1718093281918342, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SemaphoreImpl.h" }}
  358. ,{ "pid":12345, "tid":2, "ts":1718093281918433, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  359. ,{ "pid":12345, "tid":2, "ts":1718093281918572, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/File.cpp" }}
  360. ,{ "pid":12345, "tid":2, "ts":1718093281918571, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/File.cpp" }}
  361. ,{ "pid":12345, "tid":2, "ts":1718093281918667, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  362. ,{ "pid":12345, "tid":2, "ts":1718093281918745, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/BrokeredFileSystem.cpp" }}
  363. ,{ "pid":12345, "tid":2, "ts":1718093281918743, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/BrokeredFileSystem.cpp" }}
  364. ,{ "pid":12345, "tid":2, "ts":1718093281918830, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  365. ,{ "pid":12345, "tid":2, "ts":1718093281918928, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLock.cpp" }}
  366. ,{ "pid":12345, "tid":2, "ts":1718093281918927, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLock.cpp" }}
  367. ,{ "pid":12345, "tid":2, "ts":1718093281918990, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  368. ,{ "pid":12345, "tid":2, "ts":1718093281919084, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Environment.h" }}
  369. ,{ "pid":12345, "tid":2, "ts":1718093281919083, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Environment.h" }}
  370. ,{ "pid":12345, "tid":2, "ts":1718093281919160, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  371. ,{ "pid":12345, "tid":2, "ts":1718093281919253, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Cryptography.h" }}
  372. ,{ "pid":12345, "tid":2, "ts":1718093281919252, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Cryptography.h" }}
  373. ,{ "pid":12345, "tid":2, "ts":1718093281919335, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  374. ,{ "pid":12345, "tid":2, "ts":1718093281919411, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConditionVariable.cpp" }}
  375. ,{ "pid":12345, "tid":2, "ts":1718093281919410, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConditionVariable.cpp" }}
  376. ,{ "pid":12345, "tid":2, "ts":1718093281919517, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  377. ,{ "pid":12345, "tid":2, "ts":1718093281919591, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.cpp" }}
  378. ,{ "pid":12345, "tid":2, "ts":1718093281919590, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.cpp" }}
  379. ,{ "pid":12345, "tid":2, "ts":1718093281919668, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  380. ,{ "pid":12345, "tid":2, "ts":1718093281919814, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_errno.cpp" }}
  381. ,{ "pid":12345, "tid":2, "ts":1718093281919812, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_errno.cpp" }}
  382. ,{ "pid":12345, "tid":2, "ts":1718093281919892, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  383. ,{ "pid":12345, "tid":2, "ts":1718093281920034, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.h" }}
  384. ,{ "pid":12345, "tid":2, "ts":1718093281920032, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.h" }}
  385. ,{ "pid":12345, "tid":2, "ts":1718093281920096, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  386. ,{ "pid":12345, "tid":2, "ts":1718093281920178, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/quality.h" }}
  387. ,{ "pid":12345, "tid":2, "ts":1718093281920175, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/quality.h" }}
  388. ,{ "pid":12345, "tid":2, "ts":1718093281920314, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  389. ,{ "pid":12345, "tid":2, "ts":1718093281920388, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.h" }}
  390. ,{ "pid":12345, "tid":2, "ts":1718093281920387, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.h" }}
  391. ,{ "pid":12345, "tid":2, "ts":1718093281920476, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  392. ,{ "pid":12345, "tid":2, "ts":1718093281920604, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_to_binary_tree_inc.h" }}
  393. ,{ "pid":12345, "tid":2, "ts":1718093281920602, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_to_binary_tree_inc.h" }}
  394. ,{ "pid":12345, "tid":2, "ts":1718093281920688, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  395. ,{ "pid":12345, "tid":2, "ts":1718093281920822, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match64_inc.h" }}
  396. ,{ "pid":12345, "tid":2, "ts":1718093281920821, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match64_inc.h" }}
  397. ,{ "pid":12345, "tid":2, "ts":1718093281920900, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  398. ,{ "pid":12345, "tid":2, "ts":1718093281921029, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.c" }}
  399. ,{ "pid":12345, "tid":2, "ts":1718093281921027, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.c" }}
  400. ,{ "pid":12345, "tid":2, "ts":1718093281921101, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  401. ,{ "pid":12345, "tid":2, "ts":1718093281921237, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.h" }}
  402. ,{ "pid":12345, "tid":2, "ts":1718093281921235, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.h" }}
  403. ,{ "pid":12345, "tid":2, "ts":1718093281921320, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  404. ,{ "pid":12345, "tid":2, "ts":1718093281921395, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.h" }}
  405. ,{ "pid":12345, "tid":2, "ts":1718093281921393, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.h" }}
  406. ,{ "pid":12345, "tid":2, "ts":1718093281921451, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  407. ,{ "pid":12345, "tid":2, "ts":1718093281921528, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.c" }}
  408. ,{ "pid":12345, "tid":2, "ts":1718093281921527, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.c" }}
  409. ,{ "pid":12345, "tid":2, "ts":1718093281921647, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  410. ,{ "pid":12345, "tid":2, "ts":1718093281921722, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost_inc.h" }}
  411. ,{ "pid":12345, "tid":2, "ts":1718093281921721, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost_inc.h" }}
  412. ,{ "pid":12345, "tid":2, "ts":1718093281921797, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  413. ,{ "pid":12345, "tid":2, "ts":1718093281921891, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.c" }}
  414. ,{ "pid":12345, "tid":2, "ts":1718093281921889, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.c" }}
  415. ,{ "pid":12345, "tid":2, "ts":1718093281922014, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  416. ,{ "pid":12345, "tid":2, "ts":1718093281922124, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.h" }}
  417. ,{ "pid":12345, "tid":2, "ts":1718093281922123, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.h" }}
  418. ,{ "pid":12345, "tid":2, "ts":1718093281922188, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  419. ,{ "pid":12345, "tid":2, "ts":1718093281922260, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.h" }}
  420. ,{ "pid":12345, "tid":2, "ts":1718093281922259, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.h" }}
  421. ,{ "pid":12345, "tid":2, "ts":1718093281922330, "dur":168, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  422. ,{ "pid":12345, "tid":2, "ts":1718093281922505, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.h" }}
  423. ,{ "pid":12345, "tid":2, "ts":1718093281922504, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.h" }}
  424. ,{ "pid":12345, "tid":2, "ts":1718093281922623, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  425. ,{ "pid":12345, "tid":2, "ts":1718093281922707, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Thread-c-api.h" }}
  426. ,{ "pid":12345, "tid":2, "ts":1718093281922706, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Thread-c-api.h" }}
  427. ,{ "pid":12345, "tid":2, "ts":1718093281922800, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  428. ,{ "pid":12345, "tid":2, "ts":1718093281922969, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Locale.cpp" }}
  429. ,{ "pid":12345, "tid":2, "ts":1718093281922968, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Locale.cpp" }}
  430. ,{ "pid":12345, "tid":2, "ts":1718093281923100, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  431. ,{ "pid":12345, "tid":2, "ts":1718093281923178, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Error-c-api.h" }}
  432. ,{ "pid":12345, "tid":2, "ts":1718093281923177, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Error-c-api.h" }}
  433. ,{ "pid":12345, "tid":2, "ts":1718093281923255, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  434. ,{ "pid":12345, "tid":2, "ts":1718093281923361, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Allocator.cpp" }}
  435. ,{ "pid":12345, "tid":2, "ts":1718093281923425, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  436. ,{ "pid":12345, "tid":2, "ts":1718093281923507, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Assert.h" }}
  437. ,{ "pid":12345, "tid":2, "ts":1718093281923506, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Assert.h" }}
  438. ,{ "pid":12345, "tid":2, "ts":1718093281923577, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  439. ,{ "pid":12345, "tid":2, "ts":1718093281923657, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.cpp" }}
  440. ,{ "pid":12345, "tid":2, "ts":1718093281923656, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.cpp" }}
  441. ,{ "pid":12345, "tid":2, "ts":1718093281923831, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  442. ,{ "pid":12345, "tid":2, "ts":1718093281923918, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/MonoPosixHelper.h" }}
  443. ,{ "pid":12345, "tid":2, "ts":1718093281923917, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/MonoPosixHelper.h" }}
  444. ,{ "pid":12345, "tid":2, "ts":1718093281923989, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  445. ,{ "pid":12345, "tid":2, "ts":1718093281924061, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeHash.cpp" }}
  446. ,{ "pid":12345, "tid":2, "ts":1718093281924060, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeHash.cpp" }}
  447. ,{ "pid":12345, "tid":2, "ts":1718093281924119, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  448. ,{ "pid":12345, "tid":2, "ts":1718093281924254, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodHash.cpp" }}
  449. ,{ "pid":12345, "tid":2, "ts":1718093281924252, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodHash.cpp" }}
  450. ,{ "pid":12345, "tid":2, "ts":1718093281924307, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  451. ,{ "pid":12345, "tid":2, "ts":1718093281924412, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstCompare.cpp" }}
  452. ,{ "pid":12345, "tid":2, "ts":1718093281924411, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.cpp" }}
  453. ,{ "pid":12345, "tid":2, "ts":1718093281924483, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  454. ,{ "pid":12345, "tid":2, "ts":1718093281924553, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassHash.cpp" }}
  455. ,{ "pid":12345, "tid":2, "ts":1718093281924551, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.cpp" }}
  456. ,{ "pid":12345, "tid":2, "ts":1718093281924614, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  457. ,{ "pid":12345, "tid":2, "ts":1718093281924739, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMethod.cpp" }}
  458. ,{ "pid":12345, "tid":2, "ts":1718093281924737, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMethod.cpp" }}
  459. ,{ "pid":12345, "tid":2, "ts":1718093281924905, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeDataReader.cpp" }}
  460. ,{ "pid":12345, "tid":2, "ts":1718093281924904, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.cpp" }}
  461. ,{ "pid":12345, "tid":2, "ts":1718093281925002, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  462. ,{ "pid":12345, "tid":2, "ts":1718093281925138, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-tabledefs.h" }}
  463. ,{ "pid":12345, "tid":2, "ts":1718093281925137, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-tabledefs.h" }}
  464. ,{ "pid":12345, "tid":2, "ts":1718093281925263, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  465. ,{ "pid":12345, "tid":2, "ts":1718093281925404, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-object-internals.h" }}
  466. ,{ "pid":12345, "tid":2, "ts":1718093281925401, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-object-internals.h" }}
  467. ,{ "pid":12345, "tid":2, "ts":1718093281925479, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  468. ,{ "pid":12345, "tid":2, "ts":1718093281925599, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-config-api.h" }}
  469. ,{ "pid":12345, "tid":2, "ts":1718093281925598, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-config-api.h" }}
  470. ,{ "pid":12345, "tid":2, "ts":1718093281925660, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  471. ,{ "pid":12345, "tid":2, "ts":1718093281925774, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api.cpp" }}
  472. ,{ "pid":12345, "tid":2, "ts":1718093281925773, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api.cpp" }}
  473. ,{ "pid":12345, "tid":2, "ts":1718093281925857, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  474. ,{ "pid":12345, "tid":2, "ts":1718093281925928, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/SocketException.h" }}
  475. ,{ "pid":12345, "tid":2, "ts":1718093281925926, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/SocketException.h" }}
  476. ,{ "pid":12345, "tid":2, "ts":1718093281926025, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  477. ,{ "pid":12345, "tid":2, "ts":1718093281926190, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.cpp" }}
  478. ,{ "pid":12345, "tid":2, "ts":1718093281926188, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.cpp" }}
  479. ,{ "pid":12345, "tid":2, "ts":1718093281926296, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  480. ,{ "pid":12345, "tid":2, "ts":1718093281926414, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.h" }}
  481. ,{ "pid":12345, "tid":2, "ts":1718093281926413, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.h" }}
  482. ,{ "pid":12345, "tid":2, "ts":1718093281926487, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  483. ,{ "pid":12345, "tid":2, "ts":1718093281926600, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.cpp" }}
  484. ,{ "pid":12345, "tid":2, "ts":1718093281926599, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.cpp" }}
  485. ,{ "pid":12345, "tid":2, "ts":1718093281926668, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  486. ,{ "pid":12345, "tid":2, "ts":1718093281926746, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Type.h" }}
  487. ,{ "pid":12345, "tid":2, "ts":1718093281926745, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Type.h" }}
  488. ,{ "pid":12345, "tid":2, "ts":1718093281926817, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  489. ,{ "pid":12345, "tid":2, "ts":1718093281926978, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeType.cpp" }}
  490. ,{ "pid":12345, "tid":2, "ts":1718093281926977, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeType.cpp" }}
  491. ,{ "pid":12345, "tid":2, "ts":1718093281927069, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  492. ,{ "pid":12345, "tid":2, "ts":1718093281927177, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Object.cpp" }}
  493. ,{ "pid":12345, "tid":2, "ts":1718093281927176, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Object.cpp" }}
  494. ,{ "pid":12345, "tid":2, "ts":1718093281927268, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  495. ,{ "pid":12345, "tid":2, "ts":1718093281927342, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/GC.cpp" }}
  496. ,{ "pid":12345, "tid":2, "ts":1718093281927341, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/GC.cpp" }}
  497. ,{ "pid":12345, "tid":2, "ts":1718093281927481, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  498. ,{ "pid":12345, "tid":2, "ts":1718093281927574, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Delegate.h" }}
  499. ,{ "pid":12345, "tid":2, "ts":1718093281927573, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Delegate.h" }}
  500. ,{ "pid":12345, "tid":2, "ts":1718093281927701, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  501. ,{ "pid":12345, "tid":2, "ts":1718093281927773, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ConsoleDriver.cpp" }}
  502. ,{ "pid":12345, "tid":2, "ts":1718093281927772, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ConsoleDriver.cpp" }}
  503. ,{ "pid":12345, "tid":2, "ts":1718093281927853, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  504. ,{ "pid":12345, "tid":2, "ts":1718093281927948, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ArgIterator.h" }}
  505. ,{ "pid":12345, "tid":2, "ts":1718093281927947, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ArgIterator.h" }}
  506. ,{ "pid":12345, "tid":2, "ts":1718093281928029, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  507. ,{ "pid":12345, "tid":2, "ts":1718093281928086, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Timer.cpp" }}
  508. ,{ "pid":12345, "tid":2, "ts":1718093281928085, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Timer.cpp" }}
  509. ,{ "pid":12345, "tid":2, "ts":1718093281928149, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  510. ,{ "pid":12345, "tid":2, "ts":1718093281928241, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Mutex.h" }}
  511. ,{ "pid":12345, "tid":2, "ts":1718093281928240, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Mutex.h" }}
  512. ,{ "pid":12345, "tid":2, "ts":1718093281928369, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  513. ,{ "pid":12345, "tid":2, "ts":1718093281928429, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/Normalization.h" }}
  514. ,{ "pid":12345, "tid":2, "ts":1718093281928428, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/Normalization.h" }}
  515. ,{ "pid":12345, "tid":2, "ts":1718093281928492, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  516. ,{ "pid":12345, "tid":2, "ts":1718093281928596, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.cpp" }}
  517. ,{ "pid":12345, "tid":2, "ts":1718093281928594, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.cpp" }}
  518. ,{ "pid":12345, "tid":2, "ts":1718093281928663, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  519. ,{ "pid":12345, "tid":2, "ts":1718093281928731, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.h" }}
  520. ,{ "pid":12345, "tid":2, "ts":1718093281928730, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.h" }}
  521. ,{ "pid":12345, "tid":2, "ts":1718093281928860, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.cpp" }}
  522. ,{ "pid":12345, "tid":2, "ts":1718093281928859, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting/RemotingServices.cpp" }}
  523. ,{ "pid":12345, "tid":2, "ts":1718093281928911, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  524. ,{ "pid":12345, "tid":2, "ts":1718093281928985, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.h" }}
  525. ,{ "pid":12345, "tid":2, "ts":1718093281928984, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.h" }}
  526. ,{ "pid":12345, "tid":2, "ts":1718093281929080, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  527. ,{ "pid":12345, "tid":2, "ts":1718093281929153, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.cpp" }}
  528. ,{ "pid":12345, "tid":2, "ts":1718093281929151, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.cpp" }}
  529. ,{ "pid":12345, "tid":2, "ts":1718093281929261, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  530. ,{ "pid":12345, "tid":2, "ts":1718093281929377, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  531. ,{ "pid":12345, "tid":2, "ts":1718093281929452, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.h" }}
  532. ,{ "pid":12345, "tid":2, "ts":1718093281929451, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.h" }}
  533. ,{ "pid":12345, "tid":2, "ts":1718093281929576, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.cpp" }}
  534. ,{ "pid":12345, "tid":2, "ts":1718093281929574, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeAssembly.cpp" }}
  535. ,{ "pid":12345, "tid":2, "ts":1718093281929645, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  536. ,{ "pid":12345, "tid":2, "ts":1718093281929776, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.cpp" }}
  537. ,{ "pid":12345, "tid":2, "ts":1718093281929774, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.cpp" }}
  538. ,{ "pid":12345, "tid":2, "ts":1718093281929849, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  539. ,{ "pid":12345, "tid":2, "ts":1718093281929963, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.h" }}
  540. ,{ "pid":12345, "tid":2, "ts":1718093281929962, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.h" }}
  541. ,{ "pid":12345, "tid":2, "ts":1718093281930035, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  542. ,{ "pid":12345, "tid":2, "ts":1718093281930120, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/MonoIO.cpp" }}
  543. ,{ "pid":12345, "tid":2, "ts":1718093281930118, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/MonoIO.cpp" }}
  544. ,{ "pid":12345, "tid":2, "ts":1718093281930197, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  545. ,{ "pid":12345, "tid":2, "ts":1718093281930295, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoTablesNet_4_0.h" }}
  546. ,{ "pid":12345, "tid":2, "ts":1718093281930293, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoTablesNet_4_0.h" }}
  547. ,{ "pid":12345, "tid":2, "ts":1718093281930373, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  548. ,{ "pid":12345, "tid":2, "ts":1718093281930460, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.cpp" }}
  549. ,{ "pid":12345, "tid":2, "ts":1718093281930458, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.cpp" }}
  550. ,{ "pid":12345, "tid":2, "ts":1718093281930528, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  551. ,{ "pid":12345, "tid":2, "ts":1718093281930622, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.h" }}
  552. ,{ "pid":12345, "tid":2, "ts":1718093281930620, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.h" }}
  553. ,{ "pid":12345, "tid":2, "ts":1718093281930681, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  554. ,{ "pid":12345, "tid":2, "ts":1718093281930752, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.cpp" }}
  555. ,{ "pid":12345, "tid":2, "ts":1718093281930751, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeMarshal.cpp" }}
  556. ,{ "pid":12345, "tid":2, "ts":1718093281930806, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  557. ,{ "pid":12345, "tid":2, "ts":1718093281930891, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.h" }}
  558. ,{ "pid":12345, "tid":2, "ts":1718093281930890, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.h" }}
  559. ,{ "pid":12345, "tid":2, "ts":1718093281930966, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  560. ,{ "pid":12345, "tid":2, "ts":1718093281931043, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Interop.cpp" }}
  561. ,{ "pid":12345, "tid":2, "ts":1718093281931042, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Interop.cpp" }}
  562. ,{ "pid":12345, "tid":2, "ts":1718093281931127, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  563. ,{ "pid":12345, "tid":2, "ts":1718093281931195, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GCHandle.cpp" }}
  564. ,{ "pid":12345, "tid":2, "ts":1718093281931193, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GCHandle.cpp" }}
  565. ,{ "pid":12345, "tid":2, "ts":1718093281931261, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  566. ,{ "pid":12345, "tid":2, "ts":1718093281931394, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-tiny.h" }}
  567. ,{ "pid":12345, "tid":2, "ts":1718093281931392, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-tiny.h" }}
  568. ,{ "pid":12345, "tid":2, "ts":1718093281931462, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  569. ,{ "pid":12345, "tid":2, "ts":1718093281931625, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/char-conversions.h" }}
  570. ,{ "pid":12345, "tid":2, "ts":1718093281931624, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/char-conversions.h" }}
  571. ,{ "pid":12345, "tid":2, "ts":1718093281931695, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  572. ,{ "pid":12345, "tid":2, "ts":1718093281931811, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  573. ,{ "pid":12345, "tid":2, "ts":1718093281931902, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inflate.h" }}
  574. ,{ "pid":12345, "tid":2, "ts":1718093281931900, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inflate.h" }}
  575. ,{ "pid":12345, "tid":2, "ts":1718093281931962, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  576. ,{ "pid":12345, "tid":2, "ts":1718093281932036, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzread.c" }}
  577. ,{ "pid":12345, "tid":2, "ts":1718093281932035, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzread.c" }}
  578. ,{ "pid":12345, "tid":2, "ts":1718093281932115, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  579. ,{ "pid":12345, "tid":2, "ts":1718093281932204, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/crc32.c" }}
  580. ,{ "pid":12345, "tid":2, "ts":1718093281932203, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/crc32.c" }}
  581. ,{ "pid":12345, "tid":2, "ts":1718093281932266, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  582. ,{ "pid":12345, "tid":2, "ts":1718093281932330, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/xamarin_getifaddrs.h" }}
  583. ,{ "pid":12345, "tid":2, "ts":1718093281932328, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/xamarin_getifaddrs.h" }}
  584. ,{ "pid":12345, "tid":2, "ts":1718093281932387, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  585. ,{ "pid":12345, "tid":2, "ts":1718093281932514, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/complex.c" }}
  586. ,{ "pid":12345, "tid":2, "ts":1718093281932513, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/complex.c" }}
  587. ,{ "pid":12345, "tid":2, "ts":1718093281932606, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  588. ,{ "pid":12345, "tid":2, "ts":1718093281932678, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc.h" }}
  589. ,{ "pid":12345, "tid":2, "ts":1718093281932677, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc.h" }}
  590. ,{ "pid":12345, "tid":2, "ts":1718093281932772, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  591. ,{ "pid":12345, "tid":2, "ts":1718093281932843, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-win32.c" }}
  592. ,{ "pid":12345, "tid":2, "ts":1718093281932842, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-win32.c" }}
  593. ,{ "pid":12345, "tid":2, "ts":1718093281932925, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  594. ,{ "pid":12345, "tid":2, "ts":1718093281933019, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-posix.c" }}
  595. ,{ "pid":12345, "tid":2, "ts":1718093281933019, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-posix.c" }}
  596. ,{ "pid":12345, "tid":2, "ts":1718093281933102, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  597. ,{ "pid":12345, "tid":2, "ts":1718093281933180, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-uri.c" }}
  598. ,{ "pid":12345, "tid":2, "ts":1718093281933178, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-uri.c" }}
  599. ,{ "pid":12345, "tid":2, "ts":1718093281933258, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  600. ,{ "pid":12345, "tid":2, "ts":1718093281933345, "dur":722, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-windows.c" }}
  601. ,{ "pid":12345, "tid":2, "ts":1718093281933344, "dur":724, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-windows.c" }}
  602. ,{ "pid":12345, "tid":2, "ts":1718093281934068, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  603. ,{ "pid":12345, "tid":2, "ts":1718093281934161, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-debug.h" }}
  604. ,{ "pid":12345, "tid":2, "ts":1718093281934160, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-debug.h" }}
  605. ,{ "pid":12345, "tid":2, "ts":1718093281934259, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  606. ,{ "pid":12345, "tid":2, "ts":1718093281934378, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stdlib.h" }}
  607. ,{ "pid":12345, "tid":2, "ts":1718093281934377, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stdlib.h" }}
  608. ,{ "pid":12345, "tid":2, "ts":1718093281934444, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  609. ,{ "pid":12345, "tid":2, "ts":1718093281934521, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-publib.h" }}
  610. ,{ "pid":12345, "tid":2, "ts":1718093281934520, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-publib.h" }}
  611. ,{ "pid":12345, "tid":2, "ts":1718093281934613, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  612. ,{ "pid":12345, "tid":2, "ts":1718093281934707, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-poll.h" }}
  613. ,{ "pid":12345, "tid":2, "ts":1718093281934707, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-poll.h" }}
  614. ,{ "pid":12345, "tid":2, "ts":1718093281934800, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  615. ,{ "pid":12345, "tid":2, "ts":1718093281934863, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-semaphore.h" }}
  616. ,{ "pid":12345, "tid":2, "ts":1718093281934862, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-semaphore.h" }}
  617. ,{ "pid":12345, "tid":2, "ts":1718093281934928, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  618. ,{ "pid":12345, "tid":2, "ts":1718093281935005, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-networkinterfaces.c" }}
  619. ,{ "pid":12345, "tid":2, "ts":1718093281935003, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-networkinterfaces.c" }}
  620. ,{ "pid":12345, "tid":2, "ts":1718093281935073, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  621. ,{ "pid":12345, "tid":2, "ts":1718093281935174, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-membar.h" }}
  622. ,{ "pid":12345, "tid":2, "ts":1718093281935172, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-membar.h" }}
  623. ,{ "pid":12345, "tid":2, "ts":1718093281935235, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  624. ,{ "pid":12345, "tid":2, "ts":1718093281935309, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger-internals.h" }}
  625. ,{ "pid":12345, "tid":2, "ts":1718093281935307, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger-internals.h" }}
  626. ,{ "pid":12345, "tid":2, "ts":1718093281935374, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  627. ,{ "pid":12345, "tid":2, "ts":1718093281935435, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-linked-list-set.h" }}
  628. ,{ "pid":12345, "tid":2, "ts":1718093281935435, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-linked-list-set.h" }}
  629. ,{ "pid":12345, "tid":2, "ts":1718093281935502, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  630. ,{ "pid":12345, "tid":2, "ts":1718093281935586, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap.h" }}
  631. ,{ "pid":12345, "tid":2, "ts":1718093281935584, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap.h" }}
  632. ,{ "pid":12345, "tid":2, "ts":1718093281935657, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  633. ,{ "pid":12345, "tid":2, "ts":1718093281935738, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-forward.h" }}
  634. ,{ "pid":12345, "tid":2, "ts":1718093281935737, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-forward.h" }}
  635. ,{ "pid":12345, "tid":2, "ts":1718093281935810, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  636. ,{ "pid":12345, "tid":2, "ts":1718093281935946, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-embed.h" }}
  637. ,{ "pid":12345, "tid":2, "ts":1718093281935944, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-embed.h" }}
  638. ,{ "pid":12345, "tid":2, "ts":1718093281936013, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  639. ,{ "pid":12345, "tid":2, "ts":1718093281936093, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-posix.c" }}
  640. ,{ "pid":12345, "tid":2, "ts":1718093281936092, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-posix.c" }}
  641. ,{ "pid":12345, "tid":2, "ts":1718093281936165, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  642. ,{ "pid":12345, "tid":2, "ts":1718093281936246, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-coop-mutex.h" }}
  643. ,{ "pid":12345, "tid":2, "ts":1718093281936246, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-coop-mutex.h" }}
  644. ,{ "pid":12345, "tid":2, "ts":1718093281936329, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  645. ,{ "pid":12345, "tid":2, "ts":1718093281936388, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-compiler.h" }}
  646. ,{ "pid":12345, "tid":2, "ts":1718093281936387, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-compiler.h" }}
  647. ,{ "pid":12345, "tid":2, "ts":1718093281936475, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  648. ,{ "pid":12345, "tid":2, "ts":1718093281936556, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-x86.c" }}
  649. ,{ "pid":12345, "tid":2, "ts":1718093281936554, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-x86.c" }}
  650. ,{ "pid":12345, "tid":2, "ts":1718093281936622, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  651. ,{ "pid":12345, "tid":2, "ts":1718093281936723, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-alloc.h" }}
  652. ,{ "pid":12345, "tid":2, "ts":1718093281936722, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-alloc.h" }}
  653. ,{ "pid":12345, "tid":2, "ts":1718093281936816, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  654. ,{ "pid":12345, "tid":2, "ts":1718093281936888, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/gc_wrapper.h" }}
  655. ,{ "pid":12345, "tid":2, "ts":1718093281936886, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/gc_wrapper.h" }}
  656. ,{ "pid":12345, "tid":2, "ts":1718093281936958, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  657. ,{ "pid":12345, "tid":2, "ts":1718093281937054, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dlmalloc.c" }}
  658. ,{ "pid":12345, "tid":2, "ts":1718093281937053, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dlmalloc.c" }}
  659. ,{ "pid":12345, "tid":2, "ts":1718093281937135, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  660. ,{ "pid":12345, "tid":2, "ts":1718093281937228, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-workers.c" }}
  661. ,{ "pid":12345, "tid":2, "ts":1718093281937215, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-workers.c" }}
  662. ,{ "pid":12345, "tid":2, "ts":1718093281937295, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  663. ,{ "pid":12345, "tid":2, "ts":1718093281937386, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-qsort.h" }}
  664. ,{ "pid":12345, "tid":2, "ts":1718093281937384, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-qsort.h" }}
  665. ,{ "pid":12345, "tid":2, "ts":1718093281937472, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  666. ,{ "pid":12345, "tid":2, "ts":1718093281937619, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning.h" }}
  667. ,{ "pid":12345, "tid":2, "ts":1718093281937618, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning.h" }}
  668. ,{ "pid":12345, "tid":2, "ts":1718093281937695, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  669. ,{ "pid":12345, "tid":2, "ts":1718093281937770, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-memory-governor.c" }}
  670. ,{ "pid":12345, "tid":2, "ts":1718093281937769, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-memory-governor.c" }}
  671. ,{ "pid":12345, "tid":2, "ts":1718093281937831, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  672. ,{ "pid":12345, "tid":2, "ts":1718093281937907, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-internal.c" }}
  673. ,{ "pid":12345, "tid":2, "ts":1718093281937905, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-internal.c" }}
  674. ,{ "pid":12345, "tid":2, "ts":1718093281937983, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  675. ,{ "pid":12345, "tid":2, "ts":1718093281938079, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gc.c" }}
  676. ,{ "pid":12345, "tid":2, "ts":1718093281938076, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gc.c" }}
  677. ,{ "pid":12345, "tid":2, "ts":1718093281938152, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  678. ,{ "pid":12345, "tid":2, "ts":1718093281938230, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-client.h" }}
  679. ,{ "pid":12345, "tid":2, "ts":1718093281938229, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-client.h" }}
  680. ,{ "pid":12345, "tid":2, "ts":1718093281938304, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  681. ,{ "pid":12345, "tid":2, "ts":1718093281938387, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/gc-internal-agnostic.h" }}
  682. ,{ "pid":12345, "tid":2, "ts":1718093281938385, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/gc-internal-agnostic.h" }}
  683. ,{ "pid":12345, "tid":2, "ts":1718093281938460, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  684. ,{ "pid":12345, "tid":2, "ts":1718093281938530, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-agent.h" }}
  685. ,{ "pid":12345, "tid":2, "ts":1718093281938529, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-agent.h" }}
  686. ,{ "pid":12345, "tid":2, "ts":1718093281938599, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  687. ,{ "pid":12345, "tid":2, "ts":1718093281938686, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-internals.h" }}
  688. ,{ "pid":12345, "tid":2, "ts":1718093281938685, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-internals.h" }}
  689. ,{ "pid":12345, "tid":2, "ts":1718093281938775, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  690. ,{ "pid":12345, "tid":2, "ts":1718093281938856, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-win32-internals.h" }}
  691. ,{ "pid":12345, "tid":2, "ts":1718093281938854, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-win32-internals.h" }}
  692. ,{ "pid":12345, "tid":2, "ts":1718093281938935, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  693. ,{ "pid":12345, "tid":2, "ts":1718093281939030, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex-win32.c" }}
  694. ,{ "pid":12345, "tid":2, "ts":1718093281939029, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex-win32.c" }}
  695. ,{ "pid":12345, "tid":2, "ts":1718093281939121, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  696. ,{ "pid":12345, "tid":2, "ts":1718093281939199, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file.c" }}
  697. ,{ "pid":12345, "tid":2, "ts":1718093281939197, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file.c" }}
  698. ,{ "pid":12345, "tid":2, "ts":1718093281939261, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  699. ,{ "pid":12345, "tid":2, "ts":1718093281939355, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event.h" }}
  700. ,{ "pid":12345, "tid":2, "ts":1718093281939353, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event.h" }}
  701. ,{ "pid":12345, "tid":2, "ts":1718093281939430, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  702. ,{ "pid":12345, "tid":2, "ts":1718093281939527, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/verify-internals.h" }}
  703. ,{ "pid":12345, "tid":2, "ts":1718093281939525, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/verify-internals.h" }}
  704. ,{ "pid":12345, "tid":2, "ts":1718093281939590, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  705. ,{ "pid":12345, "tid":2, "ts":1718093281939677, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads.h" }}
  706. ,{ "pid":12345, "tid":2, "ts":1718093281939675, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads.h" }}
  707. ,{ "pid":12345, "tid":2, "ts":1718093281939750, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  708. ,{ "pid":12345, "tid":2, "ts":1718093281939824, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-io.h" }}
  709. ,{ "pid":12345, "tid":2, "ts":1718093281939822, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-io.h" }}
  710. ,{ "pid":12345, "tid":2, "ts":1718093281939901, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  711. ,{ "pid":12345, "tid":2, "ts":1718093281939980, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre.c" }}
  712. ,{ "pid":12345, "tid":2, "ts":1718093281939979, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre.c" }}
  713. ,{ "pid":12345, "tid":2, "ts":1718093281940055, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  714. ,{ "pid":12345, "tid":2, "ts":1718093281940149, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-old-bridge.c" }}
  715. ,{ "pid":12345, "tid":2, "ts":1718093281940148, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-old-bridge.c" }}
  716. ,{ "pid":12345, "tid":2, "ts":1718093281940212, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  717. ,{ "pid":12345, "tid":2, "ts":1718093281940276, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge-internals.h" }}
  718. ,{ "pid":12345, "tid":2, "ts":1718093281940275, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge-internals.h" }}
  719. ,{ "pid":12345, "tid":2, "ts":1718093281940345, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  720. ,{ "pid":12345, "tid":2, "ts":1718093281940443, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-core-clr.c" }}
  721. ,{ "pid":12345, "tid":2, "ts":1718093281940441, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-core-clr.c" }}
  722. ,{ "pid":12345, "tid":2, "ts":1718093281940536, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  723. ,{ "pid":12345, "tid":2, "ts":1718093281940623, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection.c" }}
  724. ,{ "pid":12345, "tid":2, "ts":1718093281940622, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection.c" }}
  725. ,{ "pid":12345, "tid":2, "ts":1718093281940706, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  726. ,{ "pid":12345, "tid":2, "ts":1718093281940795, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler.h" }}
  727. ,{ "pid":12345, "tid":2, "ts":1718093281940793, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler.h" }}
  728. ,{ "pid":12345, "tid":2, "ts":1718093281940875, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  729. ,{ "pid":12345, "tid":2, "ts":1718093281940949, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-epoll.c" }}
  730. ,{ "pid":12345, "tid":2, "ts":1718093281940948, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-epoll.c" }}
  731. ,{ "pid":12345, "tid":2, "ts":1718093281941020, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  732. ,{ "pid":12345, "tid":2, "ts":1718093281941094, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-forward.h" }}
  733. ,{ "pid":12345, "tid":2, "ts":1718093281941092, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-forward.h" }}
  734. ,{ "pid":12345, "tid":2, "ts":1718093281941178, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  735. ,{ "pid":12345, "tid":2, "ts":1718093281941263, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security.c" }}
  736. ,{ "pid":12345, "tid":2, "ts":1718093281941262, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security.c" }}
  737. ,{ "pid":12345, "tid":2, "ts":1718093281941352, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  738. ,{ "pid":12345, "tid":2, "ts":1718093281941425, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters.c" }}
  739. ,{ "pid":12345, "tid":2, "ts":1718093281941424, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters.c" }}
  740. ,{ "pid":12345, "tid":2, "ts":1718093281941501, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  741. ,{ "pid":12345, "tid":2, "ts":1718093281941613, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-endian.h" }}
  742. ,{ "pid":12345, "tid":2, "ts":1718093281941610, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-endian.h" }}
  743. ,{ "pid":12345, "tid":2, "ts":1718093281941684, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  744. ,{ "pid":12345, "tid":2, "ts":1718093281941775, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config-dirs.c" }}
  745. ,{ "pid":12345, "tid":2, "ts":1718093281941774, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config-dirs.c" }}
  746. ,{ "pid":12345, "tid":2, "ts":1718093281941862, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  747. ,{ "pid":12345, "tid":2, "ts":1718093281941941, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/method-builder.h" }}
  748. ,{ "pid":12345, "tid":2, "ts":1718093281941940, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/method-builder.h" }}
  749. ,{ "pid":12345, "tid":2, "ts":1718093281942030, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  750. ,{ "pid":12345, "tid":2, "ts":1718093281942123, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool.h" }}
  751. ,{ "pid":12345, "tid":2, "ts":1718093281942122, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool.h" }}
  752. ,{ "pid":12345, "tid":2, "ts":1718093281942199, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  753. ,{ "pid":12345, "tid":2, "ts":1718093281942279, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-internals.h" }}
  754. ,{ "pid":12345, "tid":2, "ts":1718093281942278, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-internals.h" }}
  755. ,{ "pid":12345, "tid":2, "ts":1718093281942360, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  756. ,{ "pid":12345, "tid":2, "ts":1718093281942442, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader-internals.h" }}
  757. ,{ "pid":12345, "tid":2, "ts":1718093281942441, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader-internals.h" }}
  758. ,{ "pid":12345, "tid":2, "ts":1718093281942525, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  759. ,{ "pid":12345, "tid":2, "ts":1718093281942622, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-windows.c" }}
  760. ,{ "pid":12345, "tid":2, "ts":1718093281942621, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-windows.c" }}
  761. ,{ "pid":12345, "tid":2, "ts":1718093281942690, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  762. ,{ "pid":12345, "tid":2, "ts":1718093281942764, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/gc.c" }}
  763. ,{ "pid":12345, "tid":2, "ts":1718093281942763, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/gc.c" }}
  764. ,{ "pid":12345, "tid":2, "ts":1718093281942829, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  765. ,{ "pid":12345, "tid":2, "ts":1718093281942896, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap-posix.c" }}
  766. ,{ "pid":12345, "tid":2, "ts":1718093281942895, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap-posix.c" }}
  767. ,{ "pid":12345, "tid":2, "ts":1718093281942980, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  768. ,{ "pid":12345, "tid":2, "ts":1718093281943061, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/environment.c" }}
  769. ,{ "pid":12345, "tid":2, "ts":1718093281943060, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/environment.c" }}
  770. ,{ "pid":12345, "tid":2, "ts":1718093281943139, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  771. ,{ "pid":12345, "tid":2, "ts":1718093281943219, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/domain-internals.h" }}
  772. ,{ "pid":12345, "tid":2, "ts":1718093281943218, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/domain-internals.h" }}
  773. ,{ "pid":12345, "tid":2, "ts":1718093281943304, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  774. ,{ "pid":12345, "tid":2, "ts":1718093281943415, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-helpers.c" }}
  775. ,{ "pid":12345, "tid":2, "ts":1718093281943413, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-helpers.c" }}
  776. ,{ "pid":12345, "tid":2, "ts":1718093281943542, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  777. ,{ "pid":12345, "tid":2, "ts":1718093281943677, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree-internals.h" }}
  778. ,{ "pid":12345, "tid":2, "ts":1718093281943657, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree-internals.h" }}
  779. ,{ "pid":12345, "tid":2, "ts":1718093281943769, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  780. ,{ "pid":12345, "tid":2, "ts":1718093281943885, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-private-definition.h" }}
  781. ,{ "pid":12345, "tid":2, "ts":1718093281943883, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-private-definition.h" }}
  782. ,{ "pid":12345, "tid":2, "ts":1718093281944012, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-accessors.c" }}
  783. ,{ "pid":12345, "tid":2, "ts":1718093281944011, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-accessors.c" }}
  784. ,{ "pid":12345, "tid":2, "ts":1718093281944091, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  785. ,{ "pid":12345, "tid":2, "ts":1718093281944200, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly.c" }}
  786. ,{ "pid":12345, "tid":2, "ts":1718093281944179, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly.c" }}
  787. ,{ "pid":12345, "tid":2, "ts":1718093281944325, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  788. ,{ "pid":12345, "tid":2, "ts":1718093281944472, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gutf8.c" }}
  789. ,{ "pid":12345, "tid":2, "ts":1718093281944471, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gutf8.c" }}
  790. ,{ "pid":12345, "tid":2, "ts":1718093281944604, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  791. ,{ "pid":12345, "tid":2, "ts":1718093281944692, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gslist.c" }}
  792. ,{ "pid":12345, "tid":2, "ts":1718093281944690, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gslist.c" }}
  793. ,{ "pid":12345, "tid":2, "ts":1718093281944751, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  794. ,{ "pid":12345, "tid":2, "ts":1718093281944840, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/goutput.c" }}
  795. ,{ "pid":12345, "tid":2, "ts":1718093281944838, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/goutput.c" }}
  796. ,{ "pid":12345, "tid":2, "ts":1718093281944913, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  797. ,{ "pid":12345, "tid":2, "ts":1718093281945005, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/giconv.c" }}
  798. ,{ "pid":12345, "tid":2, "ts":1718093281945002, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/giconv.c" }}
  799. ,{ "pid":12345, "tid":2, "ts":1718093281945069, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  800. ,{ "pid":12345, "tid":2, "ts":1718093281945154, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gbytearray.c" }}
  801. ,{ "pid":12345, "tid":2, "ts":1718093281945152, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gbytearray.c" }}
  802. ,{ "pid":12345, "tid":2, "ts":1718093281945217, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  803. ,{ "pid":12345, "tid":2, "ts":1718093281945302, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm_vfpmacros.h" }}
  804. ,{ "pid":12345, "tid":2, "ts":1718093281945300, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm_vfpmacros.h" }}
  805. ,{ "pid":12345, "tid":2, "ts":1718093281945385, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  806. ,{ "pid":12345, "tid":2, "ts":1718093281945491, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparse_hash_set.h" }}
  807. ,{ "pid":12345, "tid":2, "ts":1718093281945489, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparse_hash_set.h" }}
  808. ,{ "pid":12345, "tid":2, "ts":1718093281945561, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  809. ,{ "pid":12345, "tid":2, "ts":1718093281945628, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/densehashtable.h" }}
  810. ,{ "pid":12345, "tid":2, "ts":1718093281945626, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/densehashtable.h" }}
  811. ,{ "pid":12345, "tid":2, "ts":1718093281945694, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  812. ,{ "pid":12345, "tid":2, "ts":1718093281945792, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/typd_mlc.c" }}
  813. ,{ "pid":12345, "tid":2, "ts":1718093281945790, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/typd_mlc.c" }}
  814. ,{ "pid":12345, "tid":2, "ts":1718093281945882, "dur":203, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  815. ,{ "pid":12345, "tid":2, "ts":1718093281946099, "dur":239, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/thread_leak_test.c" }}
  816. ,{ "pid":12345, "tid":2, "ts":1718093281946097, "dur":246, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/thread_leak_test.c" }}
  817. ,{ "pid":12345, "tid":2, "ts":1718093281946344, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  818. ,{ "pid":12345, "tid":2, "ts":1718093281946520, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/smash_test.c" }}
  819. ,{ "pid":12345, "tid":2, "ts":1718093281946518, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/smash_test.c" }}
  820. ,{ "pid":12345, "tid":2, "ts":1718093281946587, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  821. ,{ "pid":12345, "tid":2, "ts":1718093281946686, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/disclaim_bench.c" }}
  822. ,{ "pid":12345, "tid":2, "ts":1718093281946684, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/disclaim_bench.c" }}
  823. ,{ "pid":12345, "tid":2, "ts":1718093281946752, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  824. ,{ "pid":12345, "tid":2, "ts":1718093281946832, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_stop_world.c" }}
  825. ,{ "pid":12345, "tid":2, "ts":1718093281946830, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_stop_world.c" }}
  826. ,{ "pid":12345, "tid":2, "ts":1718093281946909, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  827. ,{ "pid":12345, "tid":2, "ts":1718093281946982, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mark.c" }}
  828. ,{ "pid":12345, "tid":2, "ts":1718093281946980, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mark.c" }}
  829. ,{ "pid":12345, "tid":2, "ts":1718093281947073, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  830. ,{ "pid":12345, "tid":2, "ts":1718093281947160, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/standard_ao_double_t.h" }}
  831. ,{ "pid":12345, "tid":2, "ts":1718093281947158, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/standard_ao_double_t.h" }}
  832. ,{ "pid":12345, "tid":2, "ts":1718093281947249, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  833. ,{ "pid":12345, "tid":2, "ts":1718093281947381, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  834. ,{ "pid":12345, "tid":2, "ts":1718093281947458, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_store.h" }}
  835. ,{ "pid":12345, "tid":2, "ts":1718093281947456, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_store.h" }}
  836. ,{ "pid":12345, "tid":2, "ts":1718093281947588, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_store.h" }}
  837. ,{ "pid":12345, "tid":2, "ts":1718093281947586, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_store.h" }}
  838. ,{ "pid":12345, "tid":2, "ts":1718093281947654, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  839. ,{ "pid":12345, "tid":2, "ts":1718093281947737, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/ia64.h" }}
  840. ,{ "pid":12345, "tid":2, "ts":1718093281947735, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/ia64.h" }}
  841. ,{ "pid":12345, "tid":2, "ts":1718093281947816, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  842. ,{ "pid":12345, "tid":2, "ts":1718093281947900, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/powerpc.h" }}
  843. ,{ "pid":12345, "tid":2, "ts":1718093281947898, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/powerpc.h" }}
  844. ,{ "pid":12345, "tid":2, "ts":1718093281947955, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  845. ,{ "pid":12345, "tid":2, "ts":1718093281948008, "dur":71, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/powerpc.h" }}
  846. ,{ "pid":12345, "tid":2, "ts":1718093281948083, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/cris.h" }}
  847. ,{ "pid":12345, "tid":2, "ts":1718093281948081, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/cris.h" }}
  848. ,{ "pid":12345, "tid":2, "ts":1718093281948143, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  849. ,{ "pid":12345, "tid":2, "ts":1718093281948212, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/armcc/arm_v6.h" }}
  850. ,{ "pid":12345, "tid":2, "ts":1718093281948211, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/armcc/arm_v6.h" }}
  851. ,{ "pid":12345, "tid":2, "ts":1718093281948296, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  852. ,{ "pid":12345, "tid":2, "ts":1718093281948373, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-small.h" }}
  853. ,{ "pid":12345, "tid":2, "ts":1718093281948370, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize-small.h" }}
  854. ,{ "pid":12345, "tid":2, "ts":1718093281948521, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.iOS.dll" }}
  855. ,{ "pid":12345, "tid":2, "ts":1718093281948519, "dur":369, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.iOS-FeaturesChecked.txt" }}
  856. ,{ "pid":12345, "tid":2, "ts":1718093281948929, "dur":153, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UnityAnalyticsModule.dll" }}
  857. ,{ "pid":12345, "tid":2, "ts":1718093281949092, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.DotNet.dll" }}
  858. ,{ "pid":12345, "tid":2, "ts":1718093281949214, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.VisualStudioSolution.dll" }}
  859. ,{ "pid":12345, "tid":2, "ts":1718093281949353, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.dll" }}
  860. ,{ "pid":12345, "tid":2, "ts":1718093281949423, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.pdb" }}
  861. ,{ "pid":12345, "tid":2, "ts":1718093281949530, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.pdb" }}
  862. ,{ "pid":12345, "tid":2, "ts":1718093281949626, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.exe" }}
  863. ,{ "pid":12345, "tid":2, "ts":1718093281949708, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.pdb" }}
  864. ,{ "pid":12345, "tid":2, "ts":1718093281949822, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Api.Attributes.dll" }}
  865. ,{ "pid":12345, "tid":2, "ts":1718093281949903, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Cecil.dll" }}
  866. ,{ "pid":12345, "tid":2, "ts":1718093281948927, "dur":1193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UnityAnalyticsModule-FeaturesChecked.txt" }}
  867. ,{ "pid":12345, "tid":2, "ts":1718093281950170, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.AppleMacosStub.dll" }}
  868. ,{ "pid":12345, "tid":2, "ts":1718093281950168, "dur":277, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.AppleMacosStub-FeaturesChecked.txt" }}
  869. ,{ "pid":12345, "tid":2, "ts":1718093281950523, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.dll" }}
  870. ,{ "pid":12345, "tid":2, "ts":1718093281950521, "dur":214, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds-FeaturesChecked.txt" }}
  871. ,{ "pid":12345, "tid":2, "ts":1718093281950797, "dur":740, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.dll" }}
  872. ,{ "pid":12345, "tid":2, "ts":1718093281950795, "dur":849, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System-FeaturesChecked.txt" }}
  873. ,{ "pid":12345, "tid":2, "ts":1718093281951665, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Core-FeaturesChecked.txt" }}
  874. ,{ "pid":12345, "tid":2, "ts":1718093281951794, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/I18N.West.dll" }}
  875. ,{ "pid":12345, "tid":2, "ts":1718093281951792, "dur":210, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N.West-FeaturesChecked.txt" }}
  876. ,{ "pid":12345, "tid":2, "ts":1718093281952024, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.Platform-FeaturesChecked.txt" }}
  877. ,{ "pid":12345, "tid":2, "ts":1718093281952180, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.ScreenCaptureModule.dll" }}
  878. ,{ "pid":12345, "tid":2, "ts":1718093281952179, "dur":222, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.ScreenCaptureModule-FeaturesChecked.txt" }}
  879. ,{ "pid":12345, "tid":2, "ts":1718093281952450, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.SecurityCore.dll" }}
  880. ,{ "pid":12345, "tid":2, "ts":1718093281952448, "dur":245, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.SecurityCore-FeaturesChecked.txt" }}
  881. ,{ "pid":12345, "tid":2, "ts":1718093281952735, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.InputLegacyModule.dll" }}
  882. ,{ "pid":12345, "tid":2, "ts":1718093281952843, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll" }}
  883. ,{ "pid":12345, "tid":2, "ts":1718093281952733, "dur":260, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.InputLegacyModule-FeaturesChecked.txt" }}
  884. ,{ "pid":12345, "tid":2, "ts":1718093281953057, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.SpriteShapeModule.dll" }}
  885. ,{ "pid":12345, "tid":2, "ts":1718093281953056, "dur":329, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.SpriteShapeModule-FeaturesChecked.txt" }}
  886. ,{ "pid":12345, "tid":2, "ts":1718093281953465, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Device.dll" }}
  887. ,{ "pid":12345, "tid":2, "ts":1718093281953602, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll" }}
  888. ,{ "pid":12345, "tid":2, "ts":1718093281953452, "dur":275, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Device-FeaturesChecked.txt" }}
  889. ,{ "pid":12345, "tid":2, "ts":1718093281953785, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.GridModule-FeaturesChecked.txt" }}
  890. ,{ "pid":12345, "tid":2, "ts":1718093281953959, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Common-FeaturesChecked.txt" }}
  891. ,{ "pid":12345, "tid":2, "ts":1718093281954295, "dur":295111, "ph":"X", "name": "ExtractUsedFeatures", "args": { "detail":"Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Common-FeaturesChecked.txt" }}
  892. ,{ "pid":12345, "tid":2, "ts":1718093282249630, "dur":9488879, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  893. ,{ "pid":12345, "tid":2, "ts":1718093291738521, "dur":1672289, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  894. ,{ "pid":12345, "tid":3, "ts":1718093281795570, "dur":83500, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  895. ,{ "pid":12345, "tid":3, "ts":1718093281879074, "dur":937, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  896. ,{ "pid":12345, "tid":3, "ts":1718093281880012, "dur":1037, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  897. ,{ "pid":12345, "tid":3, "ts":1718093281881049, "dur":939, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  898. ,{ "pid":12345, "tid":3, "ts":1718093281881989, "dur":939, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  899. ,{ "pid":12345, "tid":3, "ts":1718093281882928, "dur":1107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  900. ,{ "pid":12345, "tid":3, "ts":1718093281884035, "dur":195, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  901. ,{ "pid":12345, "tid":3, "ts":1718093281884230, "dur":22475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  902. ,{ "pid":12345, "tid":3, "ts":1718093281906907, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  903. ,{ "pid":12345, "tid":3, "ts":1718093281907777, "dur":738, "ph":"X", "name": "WriteText", "args": { "detail":"Library/Bee/artifacts/csharpactions/UnityEngine.ImageConversionModule-FeaturesChecked.txt_e27z.info" }}
  904. ,{ "pid":12345, "tid":3, "ts":1718093281908517, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftmodule" }}
  905. ,{ "pid":12345, "tid":3, "ts":1718093281908642, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  906. ,{ "pid":12345, "tid":3, "ts":1718093281908860, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftinterface" }}
  907. ,{ "pid":12345, "tid":3, "ts":1718093281908976, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  908. ,{ "pid":12345, "tid":3, "ts":1718093281909094, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Info.plist" }}
  909. ,{ "pid":12345, "tid":3, "ts":1718093281909150, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  910. ,{ "pid":12345, "tid":3, "ts":1718093281909360, "dur":173, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionDetails.h" }}
  911. ,{ "pid":12345, "tid":3, "ts":1718093281909359, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionDetails.h" }}
  912. ,{ "pid":12345, "tid":3, "ts":1718093281909534, "dur":196, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  913. ,{ "pid":12345, "tid":3, "ts":1718093281909755, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdvertisement.h" }}
  914. ,{ "pid":12345, "tid":3, "ts":1718093281909753, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdvertisement.h" }}
  915. ,{ "pid":12345, "tid":3, "ts":1718093281909820, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  916. ,{ "pid":12345, "tid":3, "ts":1718093281909958, "dur":153, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  917. ,{ "pid":12345, "tid":3, "ts":1718093281909958, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadDelegate.h" }}
  918. ,{ "pid":12345, "tid":3, "ts":1718093281910112, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  919. ,{ "pid":12345, "tid":3, "ts":1718093281910257, "dur":240, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegate.h" }}
  920. ,{ "pid":12345, "tid":3, "ts":1718093281910256, "dur":241, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegate.h" }}
  921. ,{ "pid":12345, "tid":3, "ts":1718093281910516, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  922. ,{ "pid":12345, "tid":3, "ts":1718093281910619, "dur":191, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONRewardablePlacementContent.h" }}
  923. ,{ "pid":12345, "tid":3, "ts":1718093281910619, "dur":192, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONRewardablePlacementContent.h" }}
  924. ,{ "pid":12345, "tid":3, "ts":1718093281910811, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  925. ,{ "pid":12345, "tid":3, "ts":1718093281910976, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSShowOptions.h" }}
  926. ,{ "pid":12345, "tid":3, "ts":1718093281910975, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSShowOptions.h" }}
  927. ,{ "pid":12345, "tid":3, "ts":1718093281911068, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  928. ,{ "pid":12345, "tid":3, "ts":1718093281911130, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h" }}
  929. ,{ "pid":12345, "tid":3, "ts":1718093281911129, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSInAppPurchaseMetaData.h" }}
  930. ,{ "pid":12345, "tid":3, "ts":1718093281911210, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  931. ,{ "pid":12345, "tid":3, "ts":1718093281911307, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmStringUtils.cpp" }}
  932. ,{ "pid":12345, "tid":3, "ts":1718093281911306, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmStringUtils.cpp" }}
  933. ,{ "pid":12345, "tid":3, "ts":1718093281911420, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  934. ,{ "pid":12345, "tid":3, "ts":1718093281911532, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/Math.h" }}
  935. ,{ "pid":12345, "tid":3, "ts":1718093281911531, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/Math.h" }}
  936. ,{ "pid":12345, "tid":3, "ts":1718093281911617, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  937. ,{ "pid":12345, "tid":3, "ts":1718093281911699, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/DebugSymbolReader.h" }}
  938. ,{ "pid":12345, "tid":3, "ts":1718093281911751, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  939. ,{ "pid":12345, "tid":3, "ts":1718093281911865, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/unchecked.h" }}
  940. ,{ "pid":12345, "tid":3, "ts":1718093281911864, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/unchecked.h" }}
  941. ,{ "pid":12345, "tid":3, "ts":1718093281911943, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  942. ,{ "pid":12345, "tid":3, "ts":1718093281912084, "dur":146, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringViewUtils.h" }}
  943. ,{ "pid":12345, "tid":3, "ts":1718093281912083, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringViewUtils.h" }}
  944. ,{ "pid":12345, "tid":3, "ts":1718093281912231, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  945. ,{ "pid":12345, "tid":3, "ts":1718093281912328, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Runtime.h" }}
  946. ,{ "pid":12345, "tid":3, "ts":1718093281912326, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Runtime.h" }}
  947. ,{ "pid":12345, "tid":3, "ts":1718093281912380, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  948. ,{ "pid":12345, "tid":3, "ts":1718093281912456, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/NonCopyable.h" }}
  949. ,{ "pid":12345, "tid":3, "ts":1718093281912454, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/NonCopyable.h" }}
  950. ,{ "pid":12345, "tid":3, "ts":1718093281912521, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  951. ,{ "pid":12345, "tid":3, "ts":1718093281912636, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPoolAddressSanitizer.h" }}
  952. ,{ "pid":12345, "tid":3, "ts":1718093281912634, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPoolAddressSanitizer.h" }}
  953. ,{ "pid":12345, "tid":3, "ts":1718093281912710, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  954. ,{ "pid":12345, "tid":3, "ts":1718093281912866, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Memory.h" }}
  955. ,{ "pid":12345, "tid":3, "ts":1718093281912864, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Memory.h" }}
  956. ,{ "pid":12345, "tid":3, "ts":1718093281912981, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  957. ,{ "pid":12345, "tid":3, "ts":1718093281913069, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Logging.cpp" }}
  958. ,{ "pid":12345, "tid":3, "ts":1718093281913067, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Logging.cpp" }}
  959. ,{ "pid":12345, "tid":3, "ts":1718093281913146, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  960. ,{ "pid":12345, "tid":3, "ts":1718093281913215, "dur":190, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppError.cpp" }}
  961. ,{ "pid":12345, "tid":3, "ts":1718093281913213, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppError.cpp" }}
  962. ,{ "pid":12345, "tid":3, "ts":1718093281913458, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Exception.cpp" }}
  963. ,{ "pid":12345, "tid":3, "ts":1718093281913457, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Exception.cpp" }}
  964. ,{ "pid":12345, "tid":3, "ts":1718093281913513, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  965. ,{ "pid":12345, "tid":3, "ts":1718093281913591, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/DirectoryUtils.cpp" }}
  966. ,{ "pid":12345, "tid":3, "ts":1718093281913590, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/DirectoryUtils.cpp" }}
  967. ,{ "pid":12345, "tid":3, "ts":1718093281913705, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  968. ,{ "pid":12345, "tid":3, "ts":1718093281913785, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-c.c" }}
  969. ,{ "pid":12345, "tid":3, "ts":1718093281913784, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-c.c" }}
  970. ,{ "pid":12345, "tid":3, "ts":1718093281913887, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  971. ,{ "pid":12345, "tid":3, "ts":1718093281913956, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/SynchronousOperation.h" }}
  972. ,{ "pid":12345, "tid":3, "ts":1718093281913955, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/SynchronousOperation.h" }}
  973. ,{ "pid":12345, "tid":3, "ts":1718093281914049, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  974. ,{ "pid":12345, "tid":3, "ts":1718093281914106, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Environment.cpp" }}
  975. ,{ "pid":12345, "tid":3, "ts":1718093281914105, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Environment.cpp" }}
  976. ,{ "pid":12345, "tid":3, "ts":1718093281914214, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  977. ,{ "pid":12345, "tid":3, "ts":1718093281914301, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHelpers.h" }}
  978. ,{ "pid":12345, "tid":3, "ts":1718093281914300, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHelpers.h" }}
  979. ,{ "pid":12345, "tid":3, "ts":1718093281914370, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  980. ,{ "pid":12345, "tid":3, "ts":1718093281914432, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ThreadLocalValueImpl.h" }}
  981. ,{ "pid":12345, "tid":3, "ts":1718093281914430, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ThreadLocalValueImpl.h" }}
  982. ,{ "pid":12345, "tid":3, "ts":1718093281914489, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  983. ,{ "pid":12345, "tid":3, "ts":1718093281914601, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SocketImpl.h" }}
  984. ,{ "pid":12345, "tid":3, "ts":1718093281914600, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SocketImpl.h" }}
  985. ,{ "pid":12345, "tid":3, "ts":1718093281914661, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  986. ,{ "pid":12345, "tid":3, "ts":1718093281914717, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Path.cpp" }}
  987. ,{ "pid":12345, "tid":3, "ts":1718093281914715, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Path.cpp" }}
  988. ,{ "pid":12345, "tid":3, "ts":1718093281914771, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  989. ,{ "pid":12345, "tid":3, "ts":1718093281914887, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MarshalAlloc.cpp" }}
  990. ,{ "pid":12345, "tid":3, "ts":1718093281914885, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MarshalAlloc.cpp" }}
  991. ,{ "pid":12345, "tid":3, "ts":1718093281914985, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  992. ,{ "pid":12345, "tid":3, "ts":1718093281915072, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Image.cpp" }}
  993. ,{ "pid":12345, "tid":3, "ts":1718093281915071, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Image.cpp" }}
  994. ,{ "pid":12345, "tid":3, "ts":1718093281915178, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  995. ,{ "pid":12345, "tid":3, "ts":1718093281915291, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/DllMain.h" }}
  996. ,{ "pid":12345, "tid":3, "ts":1718093281915290, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/DllMain.h" }}
  997. ,{ "pid":12345, "tid":3, "ts":1718093281915375, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  998. ,{ "pid":12345, "tid":3, "ts":1718093281915456, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/CpuInfo.cpp" }}
  999. ,{ "pid":12345, "tid":3, "ts":1718093281915455, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/CpuInfo.cpp" }}
  1000. ,{ "pid":12345, "tid":3, "ts":1718093281915548, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1001. ,{ "pid":12345, "tid":3, "ts":1718093281915630, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WaitStatus.h" }}
  1002. ,{ "pid":12345, "tid":3, "ts":1718093281915629, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WaitStatus.h" }}
  1003. ,{ "pid":12345, "tid":3, "ts":1718093281915710, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1004. ,{ "pid":12345, "tid":3, "ts":1718093281915797, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SynchronizationContext.h" }}
  1005. ,{ "pid":12345, "tid":3, "ts":1718093281915795, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SynchronizationContext.h" }}
  1006. ,{ "pid":12345, "tid":3, "ts":1718093281915871, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1007. ,{ "pid":12345, "tid":3, "ts":1718093281915957, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Socket.h" }}
  1008. ,{ "pid":12345, "tid":3, "ts":1718093281915956, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Socket.h" }}
  1009. ,{ "pid":12345, "tid":3, "ts":1718093281916067, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1010. ,{ "pid":12345, "tid":3, "ts":1718093281916150, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLock.cpp" }}
  1011. ,{ "pid":12345, "tid":3, "ts":1718093281916149, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLock.cpp" }}
  1012. ,{ "pid":12345, "tid":3, "ts":1718093281916244, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1013. ,{ "pid":12345, "tid":3, "ts":1718093281916354, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Thread.cpp" }}
  1014. ,{ "pid":12345, "tid":3, "ts":1718093281916353, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Thread.cpp" }}
  1015. ,{ "pid":12345, "tid":3, "ts":1718093281916473, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1016. ,{ "pid":12345, "tid":3, "ts":1718093281916550, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/PosixHelpers.h" }}
  1017. ,{ "pid":12345, "tid":3, "ts":1718093281916548, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/PosixHelpers.h" }}
  1018. ,{ "pid":12345, "tid":3, "ts":1718093281916601, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1019. ,{ "pid":12345, "tid":3, "ts":1718093281916669, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/NativeMethods.cpp" }}
  1020. ,{ "pid":12345, "tid":3, "ts":1718093281916667, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/NativeMethods.cpp" }}
  1021. ,{ "pid":12345, "tid":3, "ts":1718093281916744, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1022. ,{ "pid":12345, "tid":3, "ts":1718093281916855, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/LastError.cpp" }}
  1023. ,{ "pid":12345, "tid":3, "ts":1718093281916854, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/LastError.cpp" }}
  1024. ,{ "pid":12345, "tid":3, "ts":1718093281916956, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1025. ,{ "pid":12345, "tid":3, "ts":1718093281917080, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Error.cpp" }}
  1026. ,{ "pid":12345, "tid":3, "ts":1718093281917079, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Error.cpp" }}
  1027. ,{ "pid":12345, "tid":3, "ts":1718093281917184, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1028. ,{ "pid":12345, "tid":3, "ts":1718093281917345, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1029. ,{ "pid":12345, "tid":3, "ts":1718093281917446, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Path.cpp" }}
  1030. ,{ "pid":12345, "tid":3, "ts":1718093281917444, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Path.cpp" }}
  1031. ,{ "pid":12345, "tid":3, "ts":1718093281917499, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1032. ,{ "pid":12345, "tid":3, "ts":1718093281917613, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1033. ,{ "pid":12345, "tid":3, "ts":1718093281917685, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MemoryMappedFile.h" }}
  1034. ,{ "pid":12345, "tid":3, "ts":1718093281917683, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MemoryMappedFile.h" }}
  1035. ,{ "pid":12345, "tid":3, "ts":1718093281917785, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1036. ,{ "pid":12345, "tid":3, "ts":1718093281917890, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Linux/pal_linux.h" }}
  1037. ,{ "pid":12345, "tid":3, "ts":1718093281917889, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Linux/pal_linux.h" }}
  1038. ,{ "pid":12345, "tid":3, "ts":1718093281918017, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1039. ,{ "pid":12345, "tid":3, "ts":1718093281918103, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Handle.h" }}
  1040. ,{ "pid":12345, "tid":3, "ts":1718093281918102, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Handle.h" }}
  1041. ,{ "pid":12345, "tid":3, "ts":1718093281918163, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1042. ,{ "pid":12345, "tid":3, "ts":1718093281918230, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketImpl.h" }}
  1043. ,{ "pid":12345, "tid":3, "ts":1718093281918229, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketImpl.h" }}
  1044. ,{ "pid":12345, "tid":3, "ts":1718093281918304, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1045. ,{ "pid":12345, "tid":3, "ts":1718093281918389, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MarshalStringAlloc.cpp" }}
  1046. ,{ "pid":12345, "tid":3, "ts":1718093281918387, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MarshalStringAlloc.cpp" }}
  1047. ,{ "pid":12345, "tid":3, "ts":1718093281918472, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1048. ,{ "pid":12345, "tid":3, "ts":1718093281918613, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Environment.cpp" }}
  1049. ,{ "pid":12345, "tid":3, "ts":1718093281918611, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Environment.cpp" }}
  1050. ,{ "pid":12345, "tid":3, "ts":1718093281918686, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1051. ,{ "pid":12345, "tid":3, "ts":1718093281918761, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Assert.cpp" }}
  1052. ,{ "pid":12345, "tid":3, "ts":1718093281918759, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Assert.cpp" }}
  1053. ,{ "pid":12345, "tid":3, "ts":1718093281918844, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1054. ,{ "pid":12345, "tid":3, "ts":1718093281918937, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Event.h" }}
  1055. ,{ "pid":12345, "tid":3, "ts":1718093281918936, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Event.h" }}
  1056. ,{ "pid":12345, "tid":3, "ts":1718093281919005, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1057. ,{ "pid":12345, "tid":3, "ts":1718093281919106, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Encoding.h" }}
  1058. ,{ "pid":12345, "tid":3, "ts":1718093281919097, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Encoding.h" }}
  1059. ,{ "pid":12345, "tid":3, "ts":1718093281919175, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1060. ,{ "pid":12345, "tid":3, "ts":1718093281919264, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CrashHelpers.h" }}
  1061. ,{ "pid":12345, "tid":3, "ts":1718093281919263, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CrashHelpers.h" }}
  1062. ,{ "pid":12345, "tid":3, "ts":1718093281919322, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1063. ,{ "pid":12345, "tid":3, "ts":1718093281919380, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConditionVariable.h" }}
  1064. ,{ "pid":12345, "tid":3, "ts":1718093281919380, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConditionVariable.h" }}
  1065. ,{ "pid":12345, "tid":3, "ts":1718093281919500, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1066. ,{ "pid":12345, "tid":3, "ts":1718093281919571, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.h" }}
  1067. ,{ "pid":12345, "tid":3, "ts":1718093281919569, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_sizecheck.h" }}
  1068. ,{ "pid":12345, "tid":3, "ts":1718093281919637, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1069. ,{ "pid":12345, "tid":3, "ts":1718093281919758, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_networking.cpp" }}
  1070. ,{ "pid":12345, "tid":3, "ts":1718093281919757, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_networking.cpp" }}
  1071. ,{ "pid":12345, "tid":3, "ts":1718093281919861, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1072. ,{ "pid":12345, "tid":3, "ts":1718093281919990, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/decode.h" }}
  1073. ,{ "pid":12345, "tid":3, "ts":1718093281919989, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/decode.h" }}
  1074. ,{ "pid":12345, "tid":3, "ts":1718093281920068, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1075. ,{ "pid":12345, "tid":3, "ts":1718093281920138, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.c" }}
  1076. ,{ "pid":12345, "tid":3, "ts":1718093281920137, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.c" }}
  1077. ,{ "pid":12345, "tid":3, "ts":1718093281920266, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1078. ,{ "pid":12345, "tid":3, "ts":1718093281920368, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.c" }}
  1079. ,{ "pid":12345, "tid":3, "ts":1718093281920367, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.c" }}
  1080. ,{ "pid":12345, "tid":3, "ts":1718093281920445, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1081. ,{ "pid":12345, "tid":3, "ts":1718093281920589, "dur":157, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.h" }}
  1082. ,{ "pid":12345, "tid":3, "ts":1718093281920587, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.h" }}
  1083. ,{ "pid":12345, "tid":3, "ts":1718093281920748, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1084. ,{ "pid":12345, "tid":3, "ts":1718093281920870, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash.h" }}
  1085. ,{ "pid":12345, "tid":3, "ts":1718093281920868, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash.h" }}
  1086. ,{ "pid":12345, "tid":3, "ts":1718093281920998, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1087. ,{ "pid":12345, "tid":3, "ts":1718093281921076, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.c" }}
  1088. ,{ "pid":12345, "tid":3, "ts":1718093281921074, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.c" }}
  1089. ,{ "pid":12345, "tid":3, "ts":1718093281921185, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1090. ,{ "pid":12345, "tid":3, "ts":1718093281921291, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.h" }}
  1091. ,{ "pid":12345, "tid":3, "ts":1718093281921289, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.h" }}
  1092. ,{ "pid":12345, "tid":3, "ts":1718093281921351, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1093. ,{ "pid":12345, "tid":3, "ts":1718093281921424, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster_inc.h" }}
  1094. ,{ "pid":12345, "tid":3, "ts":1718093281921422, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster_inc.h" }}
  1095. ,{ "pid":12345, "tid":3, "ts":1718093281921488, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1096. ,{ "pid":12345, "tid":3, "ts":1718093281921599, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter_inc.h" }}
  1097. ,{ "pid":12345, "tid":3, "ts":1718093281921597, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter_inc.h" }}
  1098. ,{ "pid":12345, "tid":3, "ts":1718093281921665, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1099. ,{ "pid":12345, "tid":3, "ts":1718093281921741, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.c" }}
  1100. ,{ "pid":12345, "tid":3, "ts":1718093281921740, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.c" }}
  1101. ,{ "pid":12345, "tid":3, "ts":1718093281921819, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1102. ,{ "pid":12345, "tid":3, "ts":1718093281921895, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.h" }}
  1103. ,{ "pid":12345, "tid":3, "ts":1718093281921894, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.h" }}
  1104. ,{ "pid":12345, "tid":3, "ts":1718093281921996, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1105. ,{ "pid":12345, "tid":3, "ts":1718093281922110, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/decode.c" }}
  1106. ,{ "pid":12345, "tid":3, "ts":1718093281922109, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/decode.c" }}
  1107. ,{ "pid":12345, "tid":3, "ts":1718093281922201, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1108. ,{ "pid":12345, "tid":3, "ts":1718093281922276, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.c" }}
  1109. ,{ "pid":12345, "tid":3, "ts":1718093281922275, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/platform.c" }}
  1110. ,{ "pid":12345, "tid":3, "ts":1718093281922394, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1111. ,{ "pid":12345, "tid":3, "ts":1718093281922517, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.c" }}
  1112. ,{ "pid":12345, "tid":3, "ts":1718093281922516, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/constants.c" }}
  1113. ,{ "pid":12345, "tid":3, "ts":1718093281922628, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1114. ,{ "pid":12345, "tid":3, "ts":1718093281922714, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Socket.cpp" }}
  1115. ,{ "pid":12345, "tid":3, "ts":1718093281922714, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Socket.cpp" }}
  1116. ,{ "pid":12345, "tid":3, "ts":1718093281922838, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1117. ,{ "pid":12345, "tid":3, "ts":1718093281922986, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Locale-c-api.h" }}
  1118. ,{ "pid":12345, "tid":3, "ts":1718093281922984, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Locale-c-api.h" }}
  1119. ,{ "pid":12345, "tid":3, "ts":1718093281923120, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1120. ,{ "pid":12345, "tid":3, "ts":1718093281923192, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Environment.cpp" }}
  1121. ,{ "pid":12345, "tid":3, "ts":1718093281923190, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Environment.cpp" }}
  1122. ,{ "pid":12345, "tid":3, "ts":1718093281923332, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/CultureInfo.cpp" }}
  1123. ,{ "pid":12345, "tid":3, "ts":1718093281923331, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/CultureInfo.cpp" }}
  1124. ,{ "pid":12345, "tid":3, "ts":1718093281923489, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/baselib/FastReaderReaderWriterLockImpl.h" }}
  1125. ,{ "pid":12345, "tid":3, "ts":1718093281923488, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/baselib/FastReaderReaderWriterLockImpl.h" }}
  1126. ,{ "pid":12345, "tid":3, "ts":1718093281923567, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1127. ,{ "pid":12345, "tid":3, "ts":1718093281923648, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/ConsoleExtension.cpp" }}
  1128. ,{ "pid":12345, "tid":3, "ts":1718093281923647, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/ConsoleExtension.cpp" }}
  1129. ,{ "pid":12345, "tid":3, "ts":1718093281923780, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms.h" }}
  1130. ,{ "pid":12345, "tid":3, "ts":1718093281923778, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms.h" }}
  1131. ,{ "pid":12345, "tid":3, "ts":1718093281923859, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1132. ,{ "pid":12345, "tid":3, "ts":1718093281923943, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono-structs.h" }}
  1133. ,{ "pid":12345, "tid":3, "ts":1718093281923942, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono-structs.h" }}
  1134. ,{ "pid":12345, "tid":3, "ts":1718093281924041, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1135. ,{ "pid":12345, "tid":3, "ts":1718093281924106, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppSignature.cpp" }}
  1136. ,{ "pid":12345, "tid":3, "ts":1718093281924104, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppSignature.cpp" }}
  1137. ,{ "pid":12345, "tid":3, "ts":1718093281924181, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1138. ,{ "pid":12345, "tid":3, "ts":1718093281924292, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstHash.cpp" }}
  1139. ,{ "pid":12345, "tid":3, "ts":1718093281924290, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstHash.cpp" }}
  1140. ,{ "pid":12345, "tid":3, "ts":1718093281924347, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1141. ,{ "pid":12345, "tid":3, "ts":1718093281924440, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextHash.cpp" }}
  1142. ,{ "pid":12345, "tid":3, "ts":1718093281924439, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.cpp" }}
  1143. ,{ "pid":12345, "tid":3, "ts":1718093281924513, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1144. ,{ "pid":12345, "tid":3, "ts":1718093281924577, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassCompare.cpp" }}
  1145. ,{ "pid":12345, "tid":3, "ts":1718093281924576, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.cpp" }}
  1146. ,{ "pid":12345, "tid":3, "ts":1718093281924643, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1147. ,{ "pid":12345, "tid":3, "ts":1718093281924754, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMetadata.h" }}
  1148. ,{ "pid":12345, "tid":3, "ts":1718093281924753, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.h" }}
  1149. ,{ "pid":12345, "tid":3, "ts":1718093281924912, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeCreator.h" }}
  1150. ,{ "pid":12345, "tid":3, "ts":1718093281924911, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeCreator.h" }}
  1151. ,{ "pid":12345, "tid":3, "ts":1718093281925029, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1152. ,{ "pid":12345, "tid":3, "ts":1718093281925170, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-sanitizers.h" }}
  1153. ,{ "pid":12345, "tid":3, "ts":1718093281925168, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-sanitizers.h" }}
  1154. ,{ "pid":12345, "tid":3, "ts":1718093281925270, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1155. ,{ "pid":12345, "tid":3, "ts":1718093281925412, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-number-formatter.h" }}
  1156. ,{ "pid":12345, "tid":3, "ts":1718093281925411, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-number-formatter.h" }}
  1157. ,{ "pid":12345, "tid":3, "ts":1718093281925484, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1158. ,{ "pid":12345, "tid":3, "ts":1718093281925586, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-config.h" }}
  1159. ,{ "pid":12345, "tid":3, "ts":1718093281925585, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-config.h" }}
  1160. ,{ "pid":12345, "tid":3, "ts":1718093281925667, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1161. ,{ "pid":12345, "tid":3, "ts":1718093281925789, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api-types.h" }}
  1162. ,{ "pid":12345, "tid":3, "ts":1718093281925787, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api-types.h" }}
  1163. ,{ "pid":12345, "tid":3, "ts":1718093281925876, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1164. ,{ "pid":12345, "tid":3, "ts":1718093281925969, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/Socket.h" }}
  1165. ,{ "pid":12345, "tid":3, "ts":1718093281925968, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/Socket.h" }}
  1166. ,{ "pid":12345, "tid":3, "ts":1718093281926078, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1167. ,{ "pid":12345, "tid":3, "ts":1718093281926215, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.IO/FileSystemWatcher.cpp" }}
  1168. ,{ "pid":12345, "tid":3, "ts":1718093281926214, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.IO/FileSystemWatcher.cpp" }}
  1169. ,{ "pid":12345, "tid":3, "ts":1718093281926348, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1170. ,{ "pid":12345, "tid":3, "ts":1718093281926431, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.h" }}
  1171. ,{ "pid":12345, "tid":3, "ts":1718093281926430, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.h" }}
  1172. ,{ "pid":12345, "tid":3, "ts":1718093281926503, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1173. ,{ "pid":12345, "tid":3, "ts":1718093281926610, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.cpp" }}
  1174. ,{ "pid":12345, "tid":3, "ts":1718093281926609, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.cpp" }}
  1175. ,{ "pid":12345, "tid":3, "ts":1718093281926681, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1176. ,{ "pid":12345, "tid":3, "ts":1718093281926770, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/String.h" }}
  1177. ,{ "pid":12345, "tid":3, "ts":1718093281926769, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/String.h" }}
  1178. ,{ "pid":12345, "tid":3, "ts":1718093281926877, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1179. ,{ "pid":12345, "tid":3, "ts":1718093281927017, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.cpp" }}
  1180. ,{ "pid":12345, "tid":3, "ts":1718093281927016, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.cpp" }}
  1181. ,{ "pid":12345, "tid":3, "ts":1718093281927124, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1182. ,{ "pid":12345, "tid":3, "ts":1718093281927254, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Number.cpp" }}
  1183. ,{ "pid":12345, "tid":3, "ts":1718093281927252, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Number.cpp" }}
  1184. ,{ "pid":12345, "tid":3, "ts":1718093281927314, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1185. ,{ "pid":12345, "tid":3, "ts":1718093281927429, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Environment.h" }}
  1186. ,{ "pid":12345, "tid":3, "ts":1718093281927428, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Environment.h" }}
  1187. ,{ "pid":12345, "tid":3, "ts":1718093281927538, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1188. ,{ "pid":12345, "tid":3, "ts":1718093281927681, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/DateTime.cpp" }}
  1189. ,{ "pid":12345, "tid":3, "ts":1718093281927679, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/DateTime.cpp" }}
  1190. ,{ "pid":12345, "tid":3, "ts":1718093281927745, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1191. ,{ "pid":12345, "tid":3, "ts":1718093281927821, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Buffer.h" }}
  1192. ,{ "pid":12345, "tid":3, "ts":1718093281927819, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Buffer.h" }}
  1193. ,{ "pid":12345, "tid":3, "ts":1718093281927884, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1194. ,{ "pid":12345, "tid":3, "ts":1718093281927989, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/AppDomain.cpp" }}
  1195. ,{ "pid":12345, "tid":3, "ts":1718093281927989, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/AppDomain.cpp" }}
  1196. ,{ "pid":12345, "tid":3, "ts":1718093281928064, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1197. ,{ "pid":12345, "tid":3, "ts":1718093281928136, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.h" }}
  1198. ,{ "pid":12345, "tid":3, "ts":1718093281928135, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.h" }}
  1199. ,{ "pid":12345, "tid":3, "ts":1718093281928194, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1200. ,{ "pid":12345, "tid":3, "ts":1718093281928360, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.h" }}
  1201. ,{ "pid":12345, "tid":3, "ts":1718093281928359, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.h" }}
  1202. ,{ "pid":12345, "tid":3, "ts":1718093281928416, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1203. ,{ "pid":12345, "tid":3, "ts":1718093281928488, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.cpp" }}
  1204. ,{ "pid":12345, "tid":3, "ts":1718093281928487, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.cpp" }}
  1205. ,{ "pid":12345, "tid":3, "ts":1718093281928584, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1206. ,{ "pid":12345, "tid":3, "ts":1718093281928661, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.h" }}
  1207. ,{ "pid":12345, "tid":3, "ts":1718093281928659, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.h" }}
  1208. ,{ "pid":12345, "tid":3, "ts":1718093281928758, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1209. ,{ "pid":12345, "tid":3, "ts":1718093281928815, "dur":52, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.h" }}
  1210. ,{ "pid":12345, "tid":3, "ts":1718093281928870, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.h" }}
  1211. ,{ "pid":12345, "tid":3, "ts":1718093281928869, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.h" }}
  1212. ,{ "pid":12345, "tid":3, "ts":1718093281928944, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1213. ,{ "pid":12345, "tid":3, "ts":1718093281929027, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.cpp" }}
  1214. ,{ "pid":12345, "tid":3, "ts":1718093281929026, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Contexts/Context.cpp" }}
  1215. ,{ "pid":12345, "tid":3, "ts":1718093281929118, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1216. ,{ "pid":12345, "tid":3, "ts":1718093281929238, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.h" }}
  1217. ,{ "pid":12345, "tid":3, "ts":1718093281929236, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.h" }}
  1218. ,{ "pid":12345, "tid":3, "ts":1718093281929307, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1219. ,{ "pid":12345, "tid":3, "ts":1718093281929416, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1220. ,{ "pid":12345, "tid":3, "ts":1718093281929486, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.h" }}
  1221. ,{ "pid":12345, "tid":3, "ts":1718093281929485, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeEventInfo.h" }}
  1222. ,{ "pid":12345, "tid":3, "ts":1718093281929589, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1223. ,{ "pid":12345, "tid":3, "ts":1718093281929693, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1224. ,{ "pid":12345, "tid":3, "ts":1718093281929831, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.cpp" }}
  1225. ,{ "pid":12345, "tid":3, "ts":1718093281929830, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.cpp" }}
  1226. ,{ "pid":12345, "tid":3, "ts":1718093281929901, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1227. ,{ "pid":12345, "tid":3, "ts":1718093281930011, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.h" }}
  1228. ,{ "pid":12345, "tid":3, "ts":1718093281930009, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.h" }}
  1229. ,{ "pid":12345, "tid":3, "ts":1718093281930079, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1230. ,{ "pid":12345, "tid":3, "ts":1718093281930160, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.cpp" }}
  1231. ,{ "pid":12345, "tid":3, "ts":1718093281930158, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.cpp" }}
  1232. ,{ "pid":12345, "tid":3, "ts":1718093281930243, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1233. ,{ "pid":12345, "tid":3, "ts":1718093281930325, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoTables.h" }}
  1234. ,{ "pid":12345, "tid":3, "ts":1718093281930324, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoTables.h" }}
  1235. ,{ "pid":12345, "tid":3, "ts":1718093281930409, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1236. ,{ "pid":12345, "tid":3, "ts":1718093281930480, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareOptions.h" }}
  1237. ,{ "pid":12345, "tid":3, "ts":1718093281930479, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareOptions.h" }}
  1238. ,{ "pid":12345, "tid":3, "ts":1718093281930543, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1239. ,{ "pid":12345, "tid":3, "ts":1718093281930605, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.cpp" }}
  1240. ,{ "pid":12345, "tid":3, "ts":1718093281930604, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.cpp" }}
  1241. ,{ "pid":12345, "tid":3, "ts":1718093281930666, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1242. ,{ "pid":12345, "tid":3, "ts":1718093281930785, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1243. ,{ "pid":12345, "tid":3, "ts":1718093281930878, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/Runtime.cpp" }}
  1244. ,{ "pid":12345, "tid":3, "ts":1718093281930877, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/Runtime.cpp" }}
  1245. ,{ "pid":12345, "tid":3, "ts":1718093281930946, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1246. ,{ "pid":12345, "tid":3, "ts":1718093281931013, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.cpp" }}
  1247. ,{ "pid":12345, "tid":3, "ts":1718093281931011, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.cpp" }}
  1248. ,{ "pid":12345, "tid":3, "ts":1718093281931085, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1249. ,{ "pid":12345, "tid":3, "ts":1718093281931178, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1250. ,{ "pid":12345, "tid":3, "ts":1718093281931253, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/BoehmGC.cpp" }}
  1251. ,{ "pid":12345, "tid":3, "ts":1718093281931252, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/BoehmGC.cpp" }}
  1252. ,{ "pid":12345, "tid":3, "ts":1718093281931326, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1253. ,{ "pid":12345, "tid":3, "ts":1718093281931438, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-tiny.cpp" }}
  1254. ,{ "pid":12345, "tid":3, "ts":1718093281931436, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-tiny.cpp" }}
  1255. ,{ "pid":12345, "tid":3, "ts":1718093281931537, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1256. ,{ "pid":12345, "tid":3, "ts":1718093281931655, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/char-conversions.cpp" }}
  1257. ,{ "pid":12345, "tid":3, "ts":1718093281931654, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/char-conversions.cpp" }}
  1258. ,{ "pid":12345, "tid":3, "ts":1718093281931772, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/trees.c" }}
  1259. ,{ "pid":12345, "tid":3, "ts":1718093281931771, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/trees.c" }}
  1260. ,{ "pid":12345, "tid":3, "ts":1718093281931824, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1261. ,{ "pid":12345, "tid":3, "ts":1718093281931908, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inflate.c" }}
  1262. ,{ "pid":12345, "tid":3, "ts":1718093281931906, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inflate.c" }}
  1263. ,{ "pid":12345, "tid":3, "ts":1718093281931989, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1264. ,{ "pid":12345, "tid":3, "ts":1718093281932056, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzlib.c" }}
  1265. ,{ "pid":12345, "tid":3, "ts":1718093281932055, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzlib.c" }}
  1266. ,{ "pid":12345, "tid":3, "ts":1718093281932149, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1267. ,{ "pid":12345, "tid":3, "ts":1718093281932253, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxhash.h" }}
  1268. ,{ "pid":12345, "tid":3, "ts":1718093281932305, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1269. ,{ "pid":12345, "tid":3, "ts":1718093281932374, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/README" }}
  1270. ,{ "pid":12345, "tid":3, "ts":1718093281932480, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1271. ,{ "pid":12345, "tid":3, "ts":1718093281932587, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/w32subset.h" }}
  1272. ,{ "pid":12345, "tid":3, "ts":1718093281932586, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/w32subset.h" }}
  1273. ,{ "pid":12345, "tid":3, "ts":1718093281932672, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1274. ,{ "pid":12345, "tid":3, "ts":1718093281932749, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc-internals.h" }}
  1275. ,{ "pid":12345, "tid":3, "ts":1718093281932748, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc-internals.h" }}
  1276. ,{ "pid":12345, "tid":3, "ts":1718093281932821, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1277. ,{ "pid":12345, "tid":3, "ts":1718093281932889, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-unity.c" }}
  1278. ,{ "pid":12345, "tid":3, "ts":1718093281932888, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-unity.c" }}
  1279. ,{ "pid":12345, "tid":3, "ts":1718093281932975, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1280. ,{ "pid":12345, "tid":3, "ts":1718093281933076, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/monobitset.h" }}
  1281. ,{ "pid":12345, "tid":3, "ts":1718093281933075, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/monobitset.h" }}
  1282. ,{ "pid":12345, "tid":3, "ts":1718093281933148, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1283. ,{ "pid":12345, "tid":3, "ts":1718093281933234, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls.c" }}
  1284. ,{ "pid":12345, "tid":3, "ts":1718093281933233, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls.c" }}
  1285. ,{ "pid":12345, "tid":3, "ts":1718093281933312, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1286. ,{ "pid":12345, "tid":3, "ts":1718093281933397, "dur":726, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-state-machine.c" }}
  1287. ,{ "pid":12345, "tid":3, "ts":1718093281933389, "dur":735, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-state-machine.c" }}
  1288. ,{ "pid":12345, "tid":3, "ts":1718093281934124, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1289. ,{ "pid":12345, "tid":3, "ts":1718093281934244, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-api.h" }}
  1290. ,{ "pid":12345, "tid":3, "ts":1718093281934242, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-api.h" }}
  1291. ,{ "pid":12345, "tid":3, "ts":1718093281934358, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1292. ,{ "pid":12345, "tid":3, "ts":1718093281934448, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-sigcontext.h" }}
  1293. ,{ "pid":12345, "tid":3, "ts":1718093281934447, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-sigcontext.h" }}
  1294. ,{ "pid":12345, "tid":3, "ts":1718093281934522, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1295. ,{ "pid":12345, "tid":3, "ts":1718093281934611, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib.h" }}
  1296. ,{ "pid":12345, "tid":3, "ts":1718093281934610, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib.h" }}
  1297. ,{ "pid":12345, "tid":3, "ts":1718093281934700, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1298. ,{ "pid":12345, "tid":3, "ts":1718093281934799, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait.h" }}
  1299. ,{ "pid":12345, "tid":3, "ts":1718093281934798, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait.h" }}
  1300. ,{ "pid":12345, "tid":3, "ts":1718093281934869, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1301. ,{ "pid":12345, "tid":3, "ts":1718093281934945, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-mutex.c" }}
  1302. ,{ "pid":12345, "tid":3, "ts":1718093281934943, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-mutex.c" }}
  1303. ,{ "pid":12345, "tid":3, "ts":1718093281935022, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1304. ,{ "pid":12345, "tid":3, "ts":1718093281935096, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-internals.h" }}
  1305. ,{ "pid":12345, "tid":3, "ts":1718093281935095, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-internals.h" }}
  1306. ,{ "pid":12345, "tid":3, "ts":1718093281935179, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1307. ,{ "pid":12345, "tid":3, "ts":1718093281935262, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger.h" }}
  1308. ,{ "pid":12345, "tid":3, "ts":1718093281935261, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger.h" }}
  1309. ,{ "pid":12345, "tid":3, "ts":1718093281935323, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1310. ,{ "pid":12345, "tid":3, "ts":1718093281935396, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-common.c" }}
  1311. ,{ "pid":12345, "tid":3, "ts":1718093281935394, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-common.c" }}
  1312. ,{ "pid":12345, "tid":3, "ts":1718093281935458, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1313. ,{ "pid":12345, "tid":3, "ts":1718093281935530, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-io-portability.c" }}
  1314. ,{ "pid":12345, "tid":3, "ts":1718093281935528, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-io-portability.c" }}
  1315. ,{ "pid":12345, "tid":3, "ts":1718093281935597, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1316. ,{ "pid":12345, "tid":3, "ts":1718093281935684, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-web.c" }}
  1317. ,{ "pid":12345, "tid":3, "ts":1718093281935683, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-web.c" }}
  1318. ,{ "pid":12345, "tid":3, "ts":1718093281935751, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1319. ,{ "pid":12345, "tid":3, "ts":1718093281935874, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error-internals.h" }}
  1320. ,{ "pid":12345, "tid":3, "ts":1718093281935872, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error-internals.h" }}
  1321. ,{ "pid":12345, "tid":3, "ts":1718093281935971, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1322. ,{ "pid":12345, "tid":3, "ts":1718093281936060, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-unity.c" }}
  1323. ,{ "pid":12345, "tid":3, "ts":1718093281936058, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-unity.c" }}
  1324. ,{ "pid":12345, "tid":3, "ts":1718093281936136, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1325. ,{ "pid":12345, "tid":3, "ts":1718093281936205, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-counters.c" }}
  1326. ,{ "pid":12345, "tid":3, "ts":1718093281936204, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-counters.c" }}
  1327. ,{ "pid":12345, "tid":3, "ts":1718093281936296, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1328. ,{ "pid":12345, "tid":3, "ts":1718093281936375, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-complex.h" }}
  1329. ,{ "pid":12345, "tid":3, "ts":1718093281936374, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-complex.h" }}
  1330. ,{ "pid":12345, "tid":3, "ts":1718093281936460, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1331. ,{ "pid":12345, "tid":3, "ts":1718093281936528, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support.h" }}
  1332. ,{ "pid":12345, "tid":3, "ts":1718093281936527, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support.h" }}
  1333. ,{ "pid":12345, "tid":3, "ts":1718093281936595, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1334. ,{ "pid":12345, "tid":3, "ts":1718093281936665, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-array-queue.h" }}
  1335. ,{ "pid":12345, "tid":3, "ts":1718093281936664, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-array-queue.h" }}
  1336. ,{ "pid":12345, "tid":3, "ts":1718093281936779, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1337. ,{ "pid":12345, "tid":3, "ts":1718093281936868, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/hazard-pointer.c" }}
  1338. ,{ "pid":12345, "tid":3, "ts":1718093281936866, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/hazard-pointer.c" }}
  1339. ,{ "pid":12345, "tid":3, "ts":1718093281936927, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1340. ,{ "pid":12345, "tid":3, "ts":1718093281937005, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dlmalloc.h" }}
  1341. ,{ "pid":12345, "tid":3, "ts":1718093281937004, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dlmalloc.h" }}
  1342. ,{ "pid":12345, "tid":3, "ts":1718093281937115, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1343. ,{ "pid":12345, "tid":3, "ts":1718093281937203, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-workers.h" }}
  1344. ,{ "pid":12345, "tid":3, "ts":1718093281937201, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-workers.h" }}
  1345. ,{ "pid":12345, "tid":3, "ts":1718093281937284, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1346. ,{ "pid":12345, "tid":3, "ts":1718093281937353, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-scan-object.h" }}
  1347. ,{ "pid":12345, "tid":3, "ts":1718093281937352, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-scan-object.h" }}
  1348. ,{ "pid":12345, "tid":3, "ts":1718093281937435, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1349. ,{ "pid":12345, "tid":3, "ts":1718093281937576, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pointer-queue.c" }}
  1350. ,{ "pid":12345, "tid":3, "ts":1718093281937575, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pointer-queue.c" }}
  1351. ,{ "pid":12345, "tid":3, "ts":1718093281937664, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1352. ,{ "pid":12345, "tid":3, "ts":1718093281937744, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-minor-copy-object.h" }}
  1353. ,{ "pid":12345, "tid":3, "ts":1718093281937743, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-minor-copy-object.h" }}
  1354. ,{ "pid":12345, "tid":3, "ts":1718093281937799, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1355. ,{ "pid":12345, "tid":3, "ts":1718093281937884, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-layout-stats.h" }}
  1356. ,{ "pid":12345, "tid":3, "ts":1718093281937876, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-layout-stats.h" }}
  1357. ,{ "pid":12345, "tid":3, "ts":1718093281937946, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1358. ,{ "pid":12345, "tid":3, "ts":1718093281938035, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gchandles.c" }}
  1359. ,{ "pid":12345, "tid":3, "ts":1718093281938034, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gchandles.c" }}
  1360. ,{ "pid":12345, "tid":3, "ts":1718093281938117, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1361. ,{ "pid":12345, "tid":3, "ts":1718093281938195, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-copy-object.h" }}
  1362. ,{ "pid":12345, "tid":3, "ts":1718093281938193, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-copy-object.h" }}
  1363. ,{ "pid":12345, "tid":3, "ts":1718093281938266, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1364. ,{ "pid":12345, "tid":3, "ts":1718093281938359, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-archdep.h" }}
  1365. ,{ "pid":12345, "tid":3, "ts":1718093281938358, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-archdep.h" }}
  1366. ,{ "pid":12345, "tid":3, "ts":1718093281938432, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1367. ,{ "pid":12345, "tid":3, "ts":1718093281938503, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-engine.h" }}
  1368. ,{ "pid":12345, "tid":3, "ts":1718093281938501, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-engine.h" }}
  1369. ,{ "pid":12345, "tid":3, "ts":1718093281938567, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1370. ,{ "pid":12345, "tid":3, "ts":1718093281938649, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-win32.c" }}
  1371. ,{ "pid":12345, "tid":3, "ts":1718093281938648, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-win32.c" }}
  1372. ,{ "pid":12345, "tid":3, "ts":1718093281938740, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1373. ,{ "pid":12345, "tid":3, "ts":1718093281938824, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-win32.c" }}
  1374. ,{ "pid":12345, "tid":3, "ts":1718093281938823, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-win32.c" }}
  1375. ,{ "pid":12345, "tid":3, "ts":1718093281938896, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1376. ,{ "pid":12345, "tid":3, "ts":1718093281938984, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-internals.h" }}
  1377. ,{ "pid":12345, "tid":3, "ts":1718093281938983, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-internals.h" }}
  1378. ,{ "pid":12345, "tid":3, "ts":1718093281939075, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1379. ,{ "pid":12345, "tid":3, "ts":1718093281939176, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle-namespace.c" }}
  1380. ,{ "pid":12345, "tid":3, "ts":1718093281939175, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle-namespace.c" }}
  1381. ,{ "pid":12345, "tid":3, "ts":1718093281939242, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1382. ,{ "pid":12345, "tid":3, "ts":1718093281939326, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix-glob.c" }}
  1383. ,{ "pid":12345, "tid":3, "ts":1718093281939325, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix-glob.c" }}
  1384. ,{ "pid":12345, "tid":3, "ts":1718093281939411, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1385. ,{ "pid":12345, "tid":3, "ts":1718093281939498, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/verify.h" }}
  1386. ,{ "pid":12345, "tid":3, "ts":1718093281939497, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/verify.h" }}
  1387. ,{ "pid":12345, "tid":3, "ts":1718093281939582, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1388. ,{ "pid":12345, "tid":3, "ts":1718093281939664, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/tokentype.h" }}
  1389. ,{ "pid":12345, "tid":3, "ts":1718093281939663, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/tokentype.h" }}
  1390. ,{ "pid":12345, "tid":3, "ts":1718093281939739, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1391. ,{ "pid":12345, "tid":3, "ts":1718093281939808, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-worker-default.c" }}
  1392. ,{ "pid":12345, "tid":3, "ts":1718093281939807, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-worker-default.c" }}
  1393. ,{ "pid":12345, "tid":3, "ts":1718093281939883, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1394. ,{ "pid":12345, "tid":3, "ts":1718093281939965, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/string-icalls.c" }}
  1395. ,{ "pid":12345, "tid":3, "ts":1718093281939964, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/string-icalls.c" }}
  1396. ,{ "pid":12345, "tid":3, "ts":1718093281940031, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1397. ,{ "pid":12345, "tid":3, "ts":1718093281940112, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-tarjan-bridge.c" }}
  1398. ,{ "pid":12345, "tid":3, "ts":1718093281940111, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-tarjan-bridge.c" }}
  1399. ,{ "pid":12345, "tid":3, "ts":1718093281940176, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1400. ,{ "pid":12345, "tid":3, "ts":1718093281940250, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge.h" }}
  1401. ,{ "pid":12345, "tid":3, "ts":1718093281940249, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge.h" }}
  1402. ,{ "pid":12345, "tid":3, "ts":1718093281940313, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1403. ,{ "pid":12345, "tid":3, "ts":1718093281940410, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-manager.c" }}
  1404. ,{ "pid":12345, "tid":3, "ts":1718093281940409, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-manager.c" }}
  1405. ,{ "pid":12345, "tid":3, "ts":1718093281940493, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1406. ,{ "pid":12345, "tid":3, "ts":1718093281940573, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/remoting.c" }}
  1407. ,{ "pid":12345, "tid":3, "ts":1718093281940572, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/remoting.c" }}
  1408. ,{ "pid":12345, "tid":3, "ts":1718093281940646, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1409. ,{ "pid":12345, "tid":3, "ts":1718093281940727, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/property-bag.h" }}
  1410. ,{ "pid":12345, "tid":3, "ts":1718093281940726, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/property-bag.h" }}
  1411. ,{ "pid":12345, "tid":3, "ts":1718093281940805, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1412. ,{ "pid":12345, "tid":3, "ts":1718093281940887, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-poll.c" }}
  1413. ,{ "pid":12345, "tid":3, "ts":1718093281940886, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-poll.c" }}
  1414. ,{ "pid":12345, "tid":3, "ts":1718093281940956, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1415. ,{ "pid":12345, "tid":3, "ts":1718093281941032, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-offsets.h" }}
  1416. ,{ "pid":12345, "tid":3, "ts":1718093281941031, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-offsets.h" }}
  1417. ,{ "pid":12345, "tid":3, "ts":1718093281941104, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1418. ,{ "pid":12345, "tid":3, "ts":1718093281941200, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/normalization-tables.h" }}
  1419. ,{ "pid":12345, "tid":3, "ts":1718093281941199, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/normalization-tables.h" }}
  1420. ,{ "pid":12345, "tid":3, "ts":1718093281941279, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1421. ,{ "pid":12345, "tid":3, "ts":1718093281941371, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters.h" }}
  1422. ,{ "pid":12345, "tid":3, "ts":1718093281941370, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters.h" }}
  1423. ,{ "pid":12345, "tid":3, "ts":1718093281941441, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1424. ,{ "pid":12345, "tid":3, "ts":1718093281941538, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash-internals.h" }}
  1425. ,{ "pid":12345, "tid":3, "ts":1718093281941536, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash-internals.h" }}
  1426. ,{ "pid":12345, "tid":3, "ts":1718093281941616, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1427. ,{ "pid":12345, "tid":3, "ts":1718093281941703, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config.c" }}
  1428. ,{ "pid":12345, "tid":3, "ts":1718093281941701, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config.c" }}
  1429. ,{ "pid":12345, "tid":3, "ts":1718093281941791, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1430. ,{ "pid":12345, "tid":3, "ts":1718093281941875, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/monitor.h" }}
  1431. ,{ "pid":12345, "tid":3, "ts":1718093281941874, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/monitor.h" }}
  1432. ,{ "pid":12345, "tid":3, "ts":1718093281941964, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1433. ,{ "pid":12345, "tid":3, "ts":1718093281942062, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-internals.h" }}
  1434. ,{ "pid":12345, "tid":3, "ts":1718093281942061, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-internals.h" }}
  1435. ,{ "pid":12345, "tid":3, "ts":1718093281942134, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1436. ,{ "pid":12345, "tid":3, "ts":1718093281942209, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-windows.c" }}
  1437. ,{ "pid":12345, "tid":3, "ts":1718093281942208, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-windows.c" }}
  1438. ,{ "pid":12345, "tid":3, "ts":1718093281942341, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader.h" }}
  1439. ,{ "pid":12345, "tid":3, "ts":1718093281942340, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader.h" }}
  1440. ,{ "pid":12345, "tid":3, "ts":1718093281942422, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1441. ,{ "pid":12345, "tid":3, "ts":1718093281942501, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image-internals.h" }}
  1442. ,{ "pid":12345, "tid":3, "ts":1718093281942494, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image-internals.h" }}
  1443. ,{ "pid":12345, "tid":3, "ts":1718093281942579, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1444. ,{ "pid":12345, "tid":3, "ts":1718093281942664, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle.h" }}
  1445. ,{ "pid":12345, "tid":3, "ts":1718093281942662, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle.h" }}
  1446. ,{ "pid":12345, "tid":3, "ts":1718093281942734, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1447. ,{ "pid":12345, "tid":3, "ts":1718093281942807, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/filewatcher.c" }}
  1448. ,{ "pid":12345, "tid":3, "ts":1718093281942806, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/filewatcher.c" }}
  1449. ,{ "pid":12345, "tid":3, "ts":1718093281942873, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1450. ,{ "pid":12345, "tid":3, "ts":1718093281942956, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception.c" }}
  1451. ,{ "pid":12345, "tid":3, "ts":1718093281942955, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception.c" }}
  1452. ,{ "pid":12345, "tid":3, "ts":1718093281943034, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1453. ,{ "pid":12345, "tid":3, "ts":1718093281943123, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-image-internals.h" }}
  1454. ,{ "pid":12345, "tid":3, "ts":1718093281943121, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-image-internals.h" }}
  1455. ,{ "pid":12345, "tid":3, "ts":1718093281943204, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1456. ,{ "pid":12345, "tid":3, "ts":1718093281943301, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-ppdb.h" }}
  1457. ,{ "pid":12345, "tid":3, "ts":1718093281943299, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-ppdb.h" }}
  1458. ,{ "pid":12345, "tid":3, "ts":1718093281943387, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1459. ,{ "pid":12345, "tid":3, "ts":1718093281943490, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/culture-info.h" }}
  1460. ,{ "pid":12345, "tid":3, "ts":1718093281943482, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/culture-info.h" }}
  1461. ,{ "pid":12345, "tid":3, "ts":1718093281943624, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1462. ,{ "pid":12345, "tid":3, "ts":1718093281943744, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/console-io.h" }}
  1463. ,{ "pid":12345, "tid":3, "ts":1718093281943742, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/console-io.h" }}
  1464. ,{ "pid":12345, "tid":3, "ts":1718093281943832, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1465. ,{ "pid":12345, "tid":3, "ts":1718093281943964, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-internals.h" }}
  1466. ,{ "pid":12345, "tid":3, "ts":1718093281943961, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-internals.h" }}
  1467. ,{ "pid":12345, "tid":3, "ts":1718093281944087, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/blob.h" }}
  1468. ,{ "pid":12345, "tid":3, "ts":1718093281944086, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/blob.h" }}
  1469. ,{ "pid":12345, "tid":3, "ts":1718093281944160, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1470. ,{ "pid":12345, "tid":3, "ts":1718093281944289, "dur":165, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain.h" }}
  1471. ,{ "pid":12345, "tid":3, "ts":1718093281944288, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain.h" }}
  1472. ,{ "pid":12345, "tid":3, "ts":1718093281944455, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1473. ,{ "pid":12345, "tid":3, "ts":1718093281944579, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode.c" }}
  1474. ,{ "pid":12345, "tid":3, "ts":1718093281944577, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode.c" }}
  1475. ,{ "pid":12345, "tid":3, "ts":1718093281944664, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1476. ,{ "pid":12345, "tid":3, "ts":1718093281944737, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gshell.c" }}
  1477. ,{ "pid":12345, "tid":3, "ts":1718093281944735, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gshell.c" }}
  1478. ,{ "pid":12345, "tid":3, "ts":1718093281944800, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1479. ,{ "pid":12345, "tid":3, "ts":1718093281944875, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmodule.h" }}
  1480. ,{ "pid":12345, "tid":3, "ts":1718093281944873, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmodule.h" }}
  1481. ,{ "pid":12345, "tid":3, "ts":1718093281944951, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1482. ,{ "pid":12345, "tid":3, "ts":1718093281945038, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gfile.c" }}
  1483. ,{ "pid":12345, "tid":3, "ts":1718093281945036, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gfile.c" }}
  1484. ,{ "pid":12345, "tid":3, "ts":1718093281945095, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1485. ,{ "pid":12345, "tid":3, "ts":1718093281945175, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/eglib-remap.h" }}
  1486. ,{ "pid":12345, "tid":3, "ts":1718093281945173, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/eglib-remap.h" }}
  1487. ,{ "pid":12345, "tid":3, "ts":1718093281945233, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1488. ,{ "pid":12345, "tid":3, "ts":1718093281945325, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm_dpimacros.h" }}
  1489. ,{ "pid":12345, "tid":3, "ts":1718093281945323, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm_dpimacros.h" }}
  1490. ,{ "pid":12345, "tid":3, "ts":1718093281945393, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1491. ,{ "pid":12345, "tid":3, "ts":1718093281945500, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparse_hash_map.h" }}
  1492. ,{ "pid":12345, "tid":3, "ts":1718093281945499, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparse_hash_map.h" }}
  1493. ,{ "pid":12345, "tid":3, "ts":1718093281945579, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1494. ,{ "pid":12345, "tid":3, "ts":1718093281945662, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/dense_hash_set.h" }}
  1495. ,{ "pid":12345, "tid":3, "ts":1718093281945660, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/dense_hash_set.h" }}
  1496. ,{ "pid":12345, "tid":3, "ts":1718093281945727, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1497. ,{ "pid":12345, "tid":3, "ts":1718093281945836, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/threadlibs.c" }}
  1498. ,{ "pid":12345, "tid":3, "ts":1718093281945834, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/threadlibs.c" }}
  1499. ,{ "pid":12345, "tid":3, "ts":1718093281945920, "dur":306, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1500. ,{ "pid":12345, "tid":3, "ts":1718093281946269, "dur":207, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/threadkey_test.c" }}
  1501. ,{ "pid":12345, "tid":3, "ts":1718093281946234, "dur":243, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/threadkey_test.c" }}
  1502. ,{ "pid":12345, "tid":3, "ts":1718093281946478, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1503. ,{ "pid":12345, "tid":3, "ts":1718093281946555, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/realloc_test.c" }}
  1504. ,{ "pid":12345, "tid":3, "ts":1718093281946553, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/realloc_test.c" }}
  1505. ,{ "pid":12345, "tid":3, "ts":1718093281946651, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1506. ,{ "pid":12345, "tid":3, "ts":1718093281946752, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/reclaim.c" }}
  1507. ,{ "pid":12345, "tid":3, "ts":1718093281946750, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/reclaim.c" }}
  1508. ,{ "pid":12345, "tid":3, "ts":1718093281946830, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1509. ,{ "pid":12345, "tid":3, "ts":1718093281946944, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/new_hblk.c" }}
  1510. ,{ "pid":12345, "tid":3, "ts":1718093281946943, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/new_hblk.c" }}
  1511. ,{ "pid":12345, "tid":3, "ts":1718093281947027, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1512. ,{ "pid":12345, "tid":3, "ts":1718093281947116, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_char.h" }}
  1513. ,{ "pid":12345, "tid":3, "ts":1718093281947113, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_char.h" }}
  1514. ,{ "pid":12345, "tid":3, "ts":1718093281947202, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1515. ,{ "pid":12345, "tid":3, "ts":1718093281947329, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/common32_defs.h" }}
  1516. ,{ "pid":12345, "tid":3, "ts":1718093281947326, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/common32_defs.h" }}
  1517. ,{ "pid":12345, "tid":3, "ts":1718093281947388, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1518. ,{ "pid":12345, "tid":3, "ts":1718093281947465, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_load.h" }}
  1519. ,{ "pid":12345, "tid":3, "ts":1718093281947463, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_atomic_load.h" }}
  1520. ,{ "pid":12345, "tid":3, "ts":1718093281947543, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1521. ,{ "pid":12345, "tid":3, "ts":1718093281947640, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_load.h" }}
  1522. ,{ "pid":12345, "tid":3, "ts":1718093281947637, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_load.h" }}
  1523. ,{ "pid":12345, "tid":3, "ts":1718093281947711, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1524. ,{ "pid":12345, "tid":3, "ts":1718093281947802, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86.h" }}
  1525. ,{ "pid":12345, "tid":3, "ts":1718093281947800, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/x86.h" }}
  1526. ,{ "pid":12345, "tid":3, "ts":1718093281947878, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1527. ,{ "pid":12345, "tid":3, "ts":1718093281948043, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1528. ,{ "pid":12345, "tid":3, "ts":1718093281948102, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/arm.h" }}
  1529. ,{ "pid":12345, "tid":3, "ts":1718093281948100, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/arm.h" }}
  1530. ,{ "pid":12345, "tid":3, "ts":1718093281948162, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1531. ,{ "pid":12345, "tid":3, "ts":1718093281948259, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_only_load.h" }}
  1532. ,{ "pid":12345, "tid":3, "ts":1718093281948256, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_only_load.h" }}
  1533. ,{ "pid":12345, "tid":3, "ts":1718093281948320, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1534. ,{ "pid":12345, "tid":3, "ts":1718093281948521, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.dll" }}
  1535. ,{ "pid":12345, "tid":3, "ts":1718093281948589, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.DotNet.dll" }}
  1536. ,{ "pid":12345, "tid":3, "ts":1718093281948694, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Stevedore.Program.exe" }}
  1537. ,{ "pid":12345, "tid":3, "ts":1718093281949021, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Cecil.Mdb.dll" }}
  1538. ,{ "pid":12345, "tid":3, "ts":1718093281948519, "dur":718, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core-FeaturesChecked.txt" }}
  1539. ,{ "pid":12345, "tid":3, "ts":1718093281949288, "dur":145, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.AudioModule.dll" }}
  1540. ,{ "pid":12345, "tid":3, "ts":1718093281949285, "dur":274, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AudioModule-FeaturesChecked.txt" }}
  1541. ,{ "pid":12345, "tid":3, "ts":1718093281949564, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1542. ,{ "pid":12345, "tid":3, "ts":1718093281949693, "dur":208, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.dll" }}
  1543. ,{ "pid":12345, "tid":3, "ts":1718093281949692, "dur":570, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine-FeaturesChecked.txt" }}
  1544. ,{ "pid":12345, "tid":3, "ts":1718093281950367, "dur":59, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
  1545. ,{ "pid":12345, "tid":3, "ts":1718093281951468, "dur":250742, "ph":"X", "name": "ExtractUsedFeatures", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine-FeaturesChecked.txt" }}
  1546. ,{ "pid":12345, "tid":3, "ts":1718093282202451, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityLinkerToEditorData.json" }}
  1547. ,{ "pid":12345, "tid":3, "ts":1718093282202448, "dur":213, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ClassRegistrationGenerator /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityClassRegistration.cpp" }}
  1548. ,{ "pid":12345, "tid":3, "ts":1718093282202700, "dur":1318, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1549. ,{ "pid":12345, "tid":3, "ts":1718093282204228, "dur":703, "ph":"X", "name": "CopyFiles", "args": { "detail":"Temp/EditorBuildOutput/UnityLinkerToEditorData.json" }}
  1550. ,{ "pid":12345, "tid":3, "ts":1718093282214574, "dur":153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/build/deploy_x86_64/bee_backend/mac-x64/bee_backend" }}
  1551. ,{ "pid":12345, "tid":3, "ts":1718093282223916, "dur":288, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm/Event.h" }}
  1552. ,{ "pid":12345, "tid":3, "ts":1718093282226260, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone/Images.xcassets/AppIcon.appiconset/Icon-iPhone-180.png" }}
  1553. ,{ "pid":12345, "tid":3, "ts":1718093282226598, "dur":185, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText /Users/apple/GCMDownFloor-IOS-appstore/Unity-iPhone.xcodeproj/project.pbxproj" }}
  1554. ,{ "pid":12345, "tid":3, "ts":1718093282227447, "dur":9511012, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1555. ,{ "pid":12345, "tid":3, "ts":1718093291738472, "dur":1672314, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1556. ,{ "pid":12345, "tid":4, "ts":1718093281795577, "dur":83503, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  1557. ,{ "pid":12345, "tid":4, "ts":1718093281879085, "dur":946, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1558. ,{ "pid":12345, "tid":4, "ts":1718093281880031, "dur":1026, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1559. ,{ "pid":12345, "tid":4, "ts":1718093281881057, "dur":944, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1560. ,{ "pid":12345, "tid":4, "ts":1718093281882001, "dur":964, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1561. ,{ "pid":12345, "tid":4, "ts":1718093281882965, "dur":1110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1562. ,{ "pid":12345, "tid":4, "ts":1718093281884076, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  1563. ,{ "pid":12345, "tid":4, "ts":1718093281884205, "dur":22497, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  1564. ,{ "pid":12345, "tid":4, "ts":1718093281906775, "dur":80, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.TextRenderingModule-FeaturesChecked.txt_4zn4.info" }}
  1565. ,{ "pid":12345, "tid":4, "ts":1718093281906865, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1566. ,{ "pid":12345, "tid":4, "ts":1718093281906938, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1567. ,{ "pid":12345, "tid":4, "ts":1718093281907098, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1568. ,{ "pid":12345, "tid":4, "ts":1718093281907218, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1569. ,{ "pid":12345, "tid":4, "ts":1718093281907315, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1570. ,{ "pid":12345, "tid":4, "ts":1718093281907451, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1571. ,{ "pid":12345, "tid":4, "ts":1718093281907591, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1572. ,{ "pid":12345, "tid":4, "ts":1718093281907743, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1573. ,{ "pid":12345, "tid":4, "ts":1718093281907807, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1574. ,{ "pid":12345, "tid":4, "ts":1718093281907884, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1575. ,{ "pid":12345, "tid":4, "ts":1718093281908071, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1576. ,{ "pid":12345, "tid":4, "ts":1718093281908222, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MergeApplePrivacyManifests Library/Bee/artifacts/iOS/PrivacyInfo.xcprivacy (+1 other)" }}
  1577. ,{ "pid":12345, "tid":4, "ts":1718093281908357, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1578. ,{ "pid":12345, "tid":4, "ts":1718093281908546, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadError.h" }}
  1579. ,{ "pid":12345, "tid":4, "ts":1718093281908526, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsLoadError.h" }}
  1580. ,{ "pid":12345, "tid":4, "ts":1718093281908637, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1581. ,{ "pid":12345, "tid":4, "ts":1718093281908811, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftmodule" }}
  1582. ,{ "pid":12345, "tid":4, "ts":1718093281908961, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1583. ,{ "pid":12345, "tid":4, "ts":1718093281909075, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftdoc" }}
  1584. ,{ "pid":12345, "tid":4, "ts":1718093281909136, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1585. ,{ "pid":12345, "tid":4, "ts":1718093281909298, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionError.h" }}
  1586. ,{ "pid":12345, "tid":4, "ts":1718093281909297, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionError.h" }}
  1587. ,{ "pid":12345, "tid":4, "ts":1718093281909455, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1588. ,{ "pid":12345, "tid":4, "ts":1718093281909645, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetization.h" }}
  1589. ,{ "pid":12345, "tid":4, "ts":1718093281909644, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetization.h" }}
  1590. ,{ "pid":12345, "tid":4, "ts":1718093281909709, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1591. ,{ "pid":12345, "tid":4, "ts":1718093281909899, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1592. ,{ "pid":12345, "tid":4, "ts":1718093281910073, "dur":162, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h" }}
  1593. ,{ "pid":12345, "tid":4, "ts":1718093281910072, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationDelegate.h" }}
  1594. ,{ "pid":12345, "tid":4, "ts":1718093281910236, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1595. ,{ "pid":12345, "tid":4, "ts":1718093281910429, "dur":161, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsBannerDelegate.h" }}
  1596. ,{ "pid":12345, "tid":4, "ts":1718093281910413, "dur":178, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsBannerDelegate.h" }}
  1597. ,{ "pid":12345, "tid":4, "ts":1718093281910591, "dur":170, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1598. ,{ "pid":12345, "tid":4, "ts":1718093281910766, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPlacementContent.h" }}
  1599. ,{ "pid":12345, "tid":4, "ts":1718093281910766, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPlacementContent.h" }}
  1600. ,{ "pid":12345, "tid":4, "ts":1718093281910914, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1601. ,{ "pid":12345, "tid":4, "ts":1718093281911058, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSPlayerMetaData.h" }}
  1602. ,{ "pid":12345, "tid":4, "ts":1718093281911058, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSPlayerMetaData.h" }}
  1603. ,{ "pid":12345, "tid":4, "ts":1718093281911144, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1604. ,{ "pid":12345, "tid":4, "ts":1718093281911231, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerViewDelegate.h" }}
  1605. ,{ "pid":12345, "tid":4, "ts":1718093281911230, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerViewDelegate.h" }}
  1606. ,{ "pid":12345, "tid":4, "ts":1718093281911451, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1607. ,{ "pid":12345, "tid":4, "ts":1718093281911561, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/Math.cpp" }}
  1608. ,{ "pid":12345, "tid":4, "ts":1718093281911560, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/Math.cpp" }}
  1609. ,{ "pid":12345, "tid":4, "ts":1718093281911641, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1610. ,{ "pid":12345, "tid":4, "ts":1718093281911729, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/DebugSymbolReader.cpp" }}
  1611. ,{ "pid":12345, "tid":4, "ts":1718093281911727, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/DebugSymbolReader.cpp" }}
  1612. ,{ "pid":12345, "tid":4, "ts":1718093281911878, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1613. ,{ "pid":12345, "tid":4, "ts":1718093281911958, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/checked.h" }}
  1614. ,{ "pid":12345, "tid":4, "ts":1718093281911957, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/checked.h" }}
  1615. ,{ "pid":12345, "tid":4, "ts":1718093281912091, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1616. ,{ "pid":12345, "tid":4, "ts":1718093281912263, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringUtils.h" }}
  1617. ,{ "pid":12345, "tid":4, "ts":1718093281912261, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringUtils.h" }}
  1618. ,{ "pid":12345, "tid":4, "ts":1718093281912330, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1619. ,{ "pid":12345, "tid":4, "ts":1718093281912404, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Output.h" }}
  1620. ,{ "pid":12345, "tid":4, "ts":1718093281912402, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Output.h" }}
  1621. ,{ "pid":12345, "tid":4, "ts":1718093281912470, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1622. ,{ "pid":12345, "tid":4, "ts":1718093281912564, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryRead.h" }}
  1623. ,{ "pid":12345, "tid":4, "ts":1718093281912563, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryRead.h" }}
  1624. ,{ "pid":12345, "tid":4, "ts":1718093281912657, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1625. ,{ "pid":12345, "tid":4, "ts":1718093281912740, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryMappedFile.h" }}
  1626. ,{ "pid":12345, "tid":4, "ts":1718093281912738, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryMappedFile.h" }}
  1627. ,{ "pid":12345, "tid":4, "ts":1718093281912877, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1628. ,{ "pid":12345, "tid":4, "ts":1718093281912994, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MarshalingUtils.cpp" }}
  1629. ,{ "pid":12345, "tid":4, "ts":1718093281912993, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MarshalingUtils.cpp" }}
  1630. ,{ "pid":12345, "tid":4, "ts":1718093281913075, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1631. ,{ "pid":12345, "tid":4, "ts":1718093281913204, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1632. ,{ "pid":12345, "tid":4, "ts":1718093281913326, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Expected.h" }}
  1633. ,{ "pid":12345, "tid":4, "ts":1718093281913325, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Expected.h" }}
  1634. ,{ "pid":12345, "tid":4, "ts":1718093281913459, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1635. ,{ "pid":12345, "tid":4, "ts":1718093281913574, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1636. ,{ "pid":12345, "tid":4, "ts":1718093281913688, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/BaselibHandleUtils.h" }}
  1637. ,{ "pid":12345, "tid":4, "ts":1718093281913687, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/BaselibHandleUtils.h" }}
  1638. ,{ "pid":12345, "tid":4, "ts":1718093281913852, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/WinRTVector.h" }}
  1639. ,{ "pid":12345, "tid":4, "ts":1718093281913851, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/WinRTVector.h" }}
  1640. ,{ "pid":12345, "tid":4, "ts":1718093281913939, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1641. ,{ "pid":12345, "tid":4, "ts":1718093281914017, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/MarshalAlloc.cpp" }}
  1642. ,{ "pid":12345, "tid":4, "ts":1718093281914015, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/MarshalAlloc.cpp" }}
  1643. ,{ "pid":12345, "tid":4, "ts":1718093281914119, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Cryptography.cpp" }}
  1644. ,{ "pid":12345, "tid":4, "ts":1718093281914118, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Cryptography.cpp" }}
  1645. ,{ "pid":12345, "tid":4, "ts":1718093281914293, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsRuntime.cpp" }}
  1646. ,{ "pid":12345, "tid":4, "ts":1718093281914292, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsRuntime.cpp" }}
  1647. ,{ "pid":12345, "tid":4, "ts":1718093281914358, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1648. ,{ "pid":12345, "tid":4, "ts":1718093281914483, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1649. ,{ "pid":12345, "tid":4, "ts":1718093281914587, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/StackTrace.cpp" }}
  1650. ,{ "pid":12345, "tid":4, "ts":1718093281914586, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/StackTrace.cpp" }}
  1651. ,{ "pid":12345, "tid":4, "ts":1718093281914665, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1652. ,{ "pid":12345, "tid":4, "ts":1718093281914727, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/NativeMethods.cpp" }}
  1653. ,{ "pid":12345, "tid":4, "ts":1718093281914726, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/NativeMethods.cpp" }}
  1654. ,{ "pid":12345, "tid":4, "ts":1718093281914832, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1655. ,{ "pid":12345, "tid":4, "ts":1718093281914890, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Locale.cpp" }}
  1656. ,{ "pid":12345, "tid":4, "ts":1718093281914889, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Locale.cpp" }}
  1657. ,{ "pid":12345, "tid":4, "ts":1718093281915007, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1658. ,{ "pid":12345, "tid":4, "ts":1718093281915121, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/FileSystemWatcher.cpp" }}
  1659. ,{ "pid":12345, "tid":4, "ts":1718093281915120, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/FileSystemWatcher.cpp" }}
  1660. ,{ "pid":12345, "tid":4, "ts":1718093281915237, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1661. ,{ "pid":12345, "tid":4, "ts":1718093281915300, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/DllMain.cpp" }}
  1662. ,{ "pid":12345, "tid":4, "ts":1718093281915299, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/DllMain.cpp" }}
  1663. ,{ "pid":12345, "tid":4, "ts":1718093281915368, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1664. ,{ "pid":12345, "tid":4, "ts":1718093281915483, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ConditionVariableImpl.h" }}
  1665. ,{ "pid":12345, "tid":4, "ts":1718093281915482, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ConditionVariableImpl.h" }}
  1666. ,{ "pid":12345, "tid":4, "ts":1718093281915569, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1667. ,{ "pid":12345, "tid":4, "ts":1718093281915638, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/TimeZone.h" }}
  1668. ,{ "pid":12345, "tid":4, "ts":1718093281915637, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/TimeZone.h" }}
  1669. ,{ "pid":12345, "tid":4, "ts":1718093281915725, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1670. ,{ "pid":12345, "tid":4, "ts":1718093281915784, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SystemCertificates.h" }}
  1671. ,{ "pid":12345, "tid":4, "ts":1718093281915783, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SystemCertificates.h" }}
  1672. ,{ "pid":12345, "tid":4, "ts":1718093281915858, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1673. ,{ "pid":12345, "tid":4, "ts":1718093281915949, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/SocketBridge.h" }}
  1674. ,{ "pid":12345, "tid":4, "ts":1718093281915948, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/SocketBridge.h" }}
  1675. ,{ "pid":12345, "tid":4, "ts":1718093281916050, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1676. ,{ "pid":12345, "tid":4, "ts":1718093281916140, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLock.h" }}
  1677. ,{ "pid":12345, "tid":4, "ts":1718093281916139, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLock.h" }}
  1678. ,{ "pid":12345, "tid":4, "ts":1718093281916219, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1679. ,{ "pid":12345, "tid":4, "ts":1718093281916336, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadImpl.h" }}
  1680. ,{ "pid":12345, "tid":4, "ts":1718093281916335, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadImpl.h" }}
  1681. ,{ "pid":12345, "tid":4, "ts":1718093281916423, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1682. ,{ "pid":12345, "tid":4, "ts":1718093281916526, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ReaderWriterLockImpl.h" }}
  1683. ,{ "pid":12345, "tid":4, "ts":1718093281916525, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ReaderWriterLockImpl.h" }}
  1684. ,{ "pid":12345, "tid":4, "ts":1718093281916587, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1685. ,{ "pid":12345, "tid":4, "ts":1718093281916678, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MutexImpl.h" }}
  1686. ,{ "pid":12345, "tid":4, "ts":1718093281916677, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MutexImpl.h" }}
  1687. ,{ "pid":12345, "tid":4, "ts":1718093281916734, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1688. ,{ "pid":12345, "tid":4, "ts":1718093281916905, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1689. ,{ "pid":12345, "tid":4, "ts":1718093281917065, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Error.h" }}
  1690. ,{ "pid":12345, "tid":4, "ts":1718093281917064, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Error.h" }}
  1691. ,{ "pid":12345, "tid":4, "ts":1718093281917133, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1692. ,{ "pid":12345, "tid":4, "ts":1718093281917267, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Directory.cpp" }}
  1693. ,{ "pid":12345, "tid":4, "ts":1718093281917265, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Directory.cpp" }}
  1694. ,{ "pid":12345, "tid":4, "ts":1718093281917388, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1695. ,{ "pid":12345, "tid":4, "ts":1718093281917487, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Thread.cpp" }}
  1696. ,{ "pid":12345, "tid":4, "ts":1718093281917485, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Thread.cpp" }}
  1697. ,{ "pid":12345, "tid":4, "ts":1718093281917545, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1698. ,{ "pid":12345, "tid":4, "ts":1718093281917639, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Mutex.h" }}
  1699. ,{ "pid":12345, "tid":4, "ts":1718093281917638, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Mutex.h" }}
  1700. ,{ "pid":12345, "tid":4, "ts":1718093281917699, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1701. ,{ "pid":12345, "tid":4, "ts":1718093281917806, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/MarshalStringAlloc.h" }}
  1702. ,{ "pid":12345, "tid":4, "ts":1718093281917805, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/MarshalStringAlloc.h" }}
  1703. ,{ "pid":12345, "tid":4, "ts":1718093281917899, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1704. ,{ "pid":12345, "tid":4, "ts":1718093281918017, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LastError.h" }}
  1705. ,{ "pid":12345, "tid":4, "ts":1718093281918016, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LastError.h" }}
  1706. ,{ "pid":12345, "tid":4, "ts":1718093281918094, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1707. ,{ "pid":12345, "tid":4, "ts":1718093281918179, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WaitObject.h" }}
  1708. ,{ "pid":12345, "tid":4, "ts":1718093281918178, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WaitObject.h" }}
  1709. ,{ "pid":12345, "tid":4, "ts":1718093281918245, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1710. ,{ "pid":12345, "tid":4, "ts":1718093281918321, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketBridge.cpp" }}
  1711. ,{ "pid":12345, "tid":4, "ts":1718093281918320, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketBridge.cpp" }}
  1712. ,{ "pid":12345, "tid":4, "ts":1718093281918408, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1713. ,{ "pid":12345, "tid":4, "ts":1718093281918493, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Initialize.cpp" }}
  1714. ,{ "pid":12345, "tid":4, "ts":1718093281918492, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Initialize.cpp" }}
  1715. ,{ "pid":12345, "tid":4, "ts":1718093281918619, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1716. ,{ "pid":12345, "tid":4, "ts":1718093281918698, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/CrashHelpers.cpp" }}
  1717. ,{ "pid":12345, "tid":4, "ts":1718093281918697, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/CrashHelpers.cpp" }}
  1718. ,{ "pid":12345, "tid":4, "ts":1718093281918754, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1719. ,{ "pid":12345, "tid":4, "ts":1718093281918828, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/File.h" }}
  1720. ,{ "pid":12345, "tid":4, "ts":1718093281918827, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/File.h" }}
  1721. ,{ "pid":12345, "tid":4, "ts":1718093281918911, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1722. ,{ "pid":12345, "tid":4, "ts":1718093281918974, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ErrorCodes.h" }}
  1723. ,{ "pid":12345, "tid":4, "ts":1718093281918973, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ErrorCodes.h" }}
  1724. ,{ "pid":12345, "tid":4, "ts":1718093281919050, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1725. ,{ "pid":12345, "tid":4, "ts":1718093281919140, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Emscripten/pal_emscripten.h" }}
  1726. ,{ "pid":12345, "tid":4, "ts":1718093281919138, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Emscripten/pal_emscripten.h" }}
  1727. ,{ "pid":12345, "tid":4, "ts":1718093281919229, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1728. ,{ "pid":12345, "tid":4, "ts":1718093281919304, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CpuInfo.h" }}
  1729. ,{ "pid":12345, "tid":4, "ts":1718093281919303, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CpuInfo.h" }}
  1730. ,{ "pid":12345, "tid":4, "ts":1718093281919384, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1731. ,{ "pid":12345, "tid":4, "ts":1718093281919482, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_unused.cpp" }}
  1732. ,{ "pid":12345, "tid":4, "ts":1718093281919481, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_unused.cpp" }}
  1733. ,{ "pid":12345, "tid":4, "ts":1718093281919619, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_platform.h" }}
  1734. ,{ "pid":12345, "tid":4, "ts":1718093281919618, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_platform.h" }}
  1735. ,{ "pid":12345, "tid":4, "ts":1718093281919750, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1736. ,{ "pid":12345, "tid":4, "ts":1718093281919870, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/port.h" }}
  1737. ,{ "pid":12345, "tid":4, "ts":1718093281919868, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/port.h" }}
  1738. ,{ "pid":12345, "tid":4, "ts":1718093281919992, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1739. ,{ "pid":12345, "tid":4, "ts":1718093281920092, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict_lut.h" }}
  1740. ,{ "pid":12345, "tid":4, "ts":1718093281920090, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict_lut.h" }}
  1741. ,{ "pid":12345, "tid":4, "ts":1718093281920151, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1742. ,{ "pid":12345, "tid":4, "ts":1718093281920252, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/params.h" }}
  1743. ,{ "pid":12345, "tid":4, "ts":1718093281920250, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/params.h" }}
  1744. ,{ "pid":12345, "tid":4, "ts":1718093281920351, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1745. ,{ "pid":12345, "tid":4, "ts":1718093281920409, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.h" }}
  1746. ,{ "pid":12345, "tid":4, "ts":1718093281920408, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.h" }}
  1747. ,{ "pid":12345, "tid":4, "ts":1718093281920495, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1748. ,{ "pid":12345, "tid":4, "ts":1718093281920620, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_rolling_inc.h" }}
  1749. ,{ "pid":12345, "tid":4, "ts":1718093281920619, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_rolling_inc.h" }}
  1750. ,{ "pid":12345, "tid":4, "ts":1718093281920765, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1751. ,{ "pid":12345, "tid":4, "ts":1718093281920836, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_forgetful_chain_inc.h" }}
  1752. ,{ "pid":12345, "tid":4, "ts":1718093281920834, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_forgetful_chain_inc.h" }}
  1753. ,{ "pid":12345, "tid":4, "ts":1718093281920933, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1754. ,{ "pid":12345, "tid":4, "ts":1718093281921037, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode_static.h" }}
  1755. ,{ "pid":12345, "tid":4, "ts":1718093281921036, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode_static.h" }}
  1756. ,{ "pid":12345, "tid":4, "ts":1718093281921094, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1757. ,{ "pid":12345, "tid":4, "ts":1718093281921216, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encode.c" }}
  1758. ,{ "pid":12345, "tid":4, "ts":1718093281921215, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encode.c" }}
  1759. ,{ "pid":12345, "tid":4, "ts":1718093281921369, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.c" }}
  1760. ,{ "pid":12345, "tid":4, "ts":1718093281921368, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.c" }}
  1761. ,{ "pid":12345, "tid":4, "ts":1718093281921432, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1762. ,{ "pid":12345, "tid":4, "ts":1718093281921518, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.h" }}
  1763. ,{ "pid":12345, "tid":4, "ts":1718093281921515, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/brotli_bit_stream.h" }}
  1764. ,{ "pid":12345, "tid":4, "ts":1718093281921655, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1765. ,{ "pid":12345, "tid":4, "ts":1718093281921729, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.h" }}
  1766. ,{ "pid":12345, "tid":4, "ts":1718093281921728, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/bit_cost.h" }}
  1767. ,{ "pid":12345, "tid":4, "ts":1718093281921789, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1768. ,{ "pid":12345, "tid":4, "ts":1718093281921873, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.h" }}
  1769. ,{ "pid":12345, "tid":4, "ts":1718093281921871, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references.h" }}
  1770. ,{ "pid":12345, "tid":4, "ts":1718093281921937, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1771. ,{ "pid":12345, "tid":4, "ts":1718093281922076, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.c" }}
  1772. ,{ "pid":12345, "tid":4, "ts":1718093281922075, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.c" }}
  1773. ,{ "pid":12345, "tid":4, "ts":1718093281922164, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1774. ,{ "pid":12345, "tid":4, "ts":1718093281922241, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.c" }}
  1775. ,{ "pid":12345, "tid":4, "ts":1718093281922240, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.c" }}
  1776. ,{ "pid":12345, "tid":4, "ts":1718093281922318, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1777. ,{ "pid":12345, "tid":4, "ts":1718093281922442, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/context.c" }}
  1778. ,{ "pid":12345, "tid":4, "ts":1718093281922441, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/context.c" }}
  1779. ,{ "pid":12345, "tid":4, "ts":1718093281922556, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1780. ,{ "pid":12345, "tid":4, "ts":1718093281922687, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Thread.cpp" }}
  1781. ,{ "pid":12345, "tid":4, "ts":1718093281922685, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Thread.cpp" }}
  1782. ,{ "pid":12345, "tid":4, "ts":1718093281922751, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1783. ,{ "pid":12345, "tid":4, "ts":1718093281922911, "dur":167, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/OSGlobalEnums.h" }}
  1784. ,{ "pid":12345, "tid":4, "ts":1718093281922910, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/OSGlobalEnums.h" }}
  1785. ,{ "pid":12345, "tid":4, "ts":1718093281923080, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1786. ,{ "pid":12345, "tid":4, "ts":1718093281923144, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/File-c-api.h" }}
  1787. ,{ "pid":12345, "tid":4, "ts":1718093281923143, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/File-c-api.h" }}
  1788. ,{ "pid":12345, "tid":4, "ts":1718093281923248, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Directory-c-api.h" }}
  1789. ,{ "pid":12345, "tid":4, "ts":1718093281923247, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Directory-c-api.h" }}
  1790. ,{ "pid":12345, "tid":4, "ts":1718093281923388, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1791. ,{ "pid":12345, "tid":4, "ts":1718093281923495, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Atomic.h" }}
  1792. ,{ "pid":12345, "tid":4, "ts":1718093281923494, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Atomic.h" }}
  1793. ,{ "pid":12345, "tid":4, "ts":1718093281923551, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1794. ,{ "pid":12345, "tid":4, "ts":1718093281923630, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/Initialize.cpp" }}
  1795. ,{ "pid":12345, "tid":4, "ts":1718093281923628, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/Initialize.cpp" }}
  1796. ,{ "pid":12345, "tid":4, "ts":1718093281923702, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1797. ,{ "pid":12345, "tid":4, "ts":1718093281923767, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMacros.h" }}
  1798. ,{ "pid":12345, "tid":4, "ts":1718093281923761, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMacros.h" }}
  1799. ,{ "pid":12345, "tid":4, "ts":1718093281923835, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1800. ,{ "pid":12345, "tid":4, "ts":1718093281923900, "dur":116, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.cpp" }}
  1801. ,{ "pid":12345, "tid":4, "ts":1718093281923898, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.cpp" }}
  1802. ,{ "pid":12345, "tid":4, "ts":1718093281924016, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1803. ,{ "pid":12345, "tid":4, "ts":1718093281924073, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeCompare.cpp" }}
  1804. ,{ "pid":12345, "tid":4, "ts":1718093281924072, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeCompare.cpp" }}
  1805. ,{ "pid":12345, "tid":4, "ts":1718093281924132, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1806. ,{ "pid":12345, "tid":4, "ts":1718093281924267, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodCompare.cpp" }}
  1807. ,{ "pid":12345, "tid":4, "ts":1718093281924265, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodCompare.cpp" }}
  1808. ,{ "pid":12345, "tid":4, "ts":1718093281924427, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextHash.h" }}
  1809. ,{ "pid":12345, "tid":4, "ts":1718093281924425, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextHash.h" }}
  1810. ,{ "pid":12345, "tid":4, "ts":1718093281924495, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1811. ,{ "pid":12345, "tid":4, "ts":1718093281924571, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassCompare.h" }}
  1812. ,{ "pid":12345, "tid":4, "ts":1718093281924569, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassCompare.h" }}
  1813. ,{ "pid":12345, "tid":4, "ts":1718093281924648, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1814. ,{ "pid":12345, "tid":4, "ts":1718093281924785, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/FieldLayout.h" }}
  1815. ,{ "pid":12345, "tid":4, "ts":1718093281924783, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/FieldLayout.h" }}
  1816. ,{ "pid":12345, "tid":4, "ts":1718093281924977, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1817. ,{ "pid":12345, "tid":4, "ts":1718093281925145, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-string-types.h" }}
  1818. ,{ "pid":12345, "tid":4, "ts":1718093281925143, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-string-types.h" }}
  1819. ,{ "pid":12345, "tid":4, "ts":1718093281925211, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1820. ,{ "pid":12345, "tid":4, "ts":1718093281925376, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-pinvoke-support.h" }}
  1821. ,{ "pid":12345, "tid":4, "ts":1718093281925375, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-pinvoke-support.h" }}
  1822. ,{ "pid":12345, "tid":4, "ts":1718093281925457, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1823. ,{ "pid":12345, "tid":4, "ts":1718093281925567, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-metadata.h" }}
  1824. ,{ "pid":12345, "tid":4, "ts":1718093281925565, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-metadata.h" }}
  1825. ,{ "pid":12345, "tid":4, "ts":1718093281925644, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1826. ,{ "pid":12345, "tid":4, "ts":1718093281925764, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api.h" }}
  1827. ,{ "pid":12345, "tid":4, "ts":1718093281925762, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api.h" }}
  1828. ,{ "pid":12345, "tid":4, "ts":1718093281925843, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1829. ,{ "pid":12345, "tid":4, "ts":1718093281925904, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net/Dns.h" }}
  1830. ,{ "pid":12345, "tid":4, "ts":1718093281925902, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net/Dns.h" }}
  1831. ,{ "pid":12345, "tid":4, "ts":1718093281925992, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1832. ,{ "pid":12345, "tid":4, "ts":1718093281926153, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.cpp" }}
  1833. ,{ "pid":12345, "tid":4, "ts":1718093281926152, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.cpp" }}
  1834. ,{ "pid":12345, "tid":4, "ts":1718093281926262, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1835. ,{ "pid":12345, "tid":4, "ts":1718093281926389, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Process.h" }}
  1836. ,{ "pid":12345, "tid":4, "ts":1718093281926388, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Process.h" }}
  1837. ,{ "pid":12345, "tid":4, "ts":1718093281926461, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1838. ,{ "pid":12345, "tid":4, "ts":1718093281926569, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.cpp" }}
  1839. ,{ "pid":12345, "tid":4, "ts":1718093281926566, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.cpp" }}
  1840. ,{ "pid":12345, "tid":4, "ts":1718093281926658, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1841. ,{ "pid":12345, "tid":4, "ts":1718093281926739, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/TypedReference.cpp" }}
  1842. ,{ "pid":12345, "tid":4, "ts":1718093281926738, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/TypedReference.cpp" }}
  1843. ,{ "pid":12345, "tid":4, "ts":1718093281926808, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1844. ,{ "pid":12345, "tid":4, "ts":1718093281926974, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeType.h" }}
  1845. ,{ "pid":12345, "tid":4, "ts":1718093281926973, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeType.h" }}
  1846. ,{ "pid":12345, "tid":4, "ts":1718093281927075, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1847. ,{ "pid":12345, "tid":4, "ts":1718093281927195, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/NumberFormatter.h" }}
  1848. ,{ "pid":12345, "tid":4, "ts":1718093281927194, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/NumberFormatter.h" }}
  1849. ,{ "pid":12345, "tid":4, "ts":1718093281927279, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1850. ,{ "pid":12345, "tid":4, "ts":1718093281927364, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Exception.h" }}
  1851. ,{ "pid":12345, "tid":4, "ts":1718093281927363, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Exception.h" }}
  1852. ,{ "pid":12345, "tid":4, "ts":1718093281927490, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1853. ,{ "pid":12345, "tid":4, "ts":1718093281927595, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Delegate.cpp" }}
  1854. ,{ "pid":12345, "tid":4, "ts":1718093281927594, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Delegate.cpp" }}
  1855. ,{ "pid":12345, "tid":4, "ts":1718093281927710, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1856. ,{ "pid":12345, "tid":4, "ts":1718093281927791, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CLRConfig.h" }}
  1857. ,{ "pid":12345, "tid":4, "ts":1718093281927790, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CLRConfig.h" }}
  1858. ,{ "pid":12345, "tid":4, "ts":1718093281927862, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1859. ,{ "pid":12345, "tid":4, "ts":1718093281927965, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ArgIterator.cpp" }}
  1860. ,{ "pid":12345, "tid":4, "ts":1718093281927963, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ArgIterator.cpp" }}
  1861. ,{ "pid":12345, "tid":4, "ts":1718093281928039, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1862. ,{ "pid":12345, "tid":4, "ts":1718093281928110, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.h" }}
  1863. ,{ "pid":12345, "tid":4, "ts":1718093281928108, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Thread.h" }}
  1864. ,{ "pid":12345, "tid":4, "ts":1718093281928173, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1865. ,{ "pid":12345, "tid":4, "ts":1718093281928278, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Mutex.cpp" }}
  1866. ,{ "pid":12345, "tid":4, "ts":1718093281928277, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Mutex.cpp" }}
  1867. ,{ "pid":12345, "tid":4, "ts":1718093281928382, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1868. ,{ "pid":12345, "tid":4, "ts":1718093281928450, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.h" }}
  1869. ,{ "pid":12345, "tid":4, "ts":1718093281928448, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.h" }}
  1870. ,{ "pid":12345, "tid":4, "ts":1718093281928519, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1871. ,{ "pid":12345, "tid":4, "ts":1718093281928622, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.cpp" }}
  1872. ,{ "pid":12345, "tid":4, "ts":1718093281928621, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.cpp" }}
  1873. ,{ "pid":12345, "tid":4, "ts":1718093281928686, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1874. ,{ "pid":12345, "tid":4, "ts":1718093281928789, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.cpp" }}
  1875. ,{ "pid":12345, "tid":4, "ts":1718093281928787, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime/RuntimeImports.cpp" }}
  1876. ,{ "pid":12345, "tid":4, "ts":1718093281928864, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1877. ,{ "pid":12345, "tid":4, "ts":1718093281928931, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.cpp" }}
  1878. ,{ "pid":12345, "tid":4, "ts":1718093281928929, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.cpp" }}
  1879. ,{ "pid":12345, "tid":4, "ts":1718093281929012, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1880. ,{ "pid":12345, "tid":4, "ts":1718093281929111, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.cpp" }}
  1881. ,{ "pid":12345, "tid":4, "ts":1718093281929110, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.cpp" }}
  1882. ,{ "pid":12345, "tid":4, "ts":1718093281929202, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1883. ,{ "pid":12345, "tid":4, "ts":1718093281929306, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.h" }}
  1884. ,{ "pid":12345, "tid":4, "ts":1718093281929305, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimePropertyInfo.h" }}
  1885. ,{ "pid":12345, "tid":4, "ts":1718093281929360, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1886. ,{ "pid":12345, "tid":4, "ts":1718093281929429, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.h" }}
  1887. ,{ "pid":12345, "tid":4, "ts":1718093281929428, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.h" }}
  1888. ,{ "pid":12345, "tid":4, "ts":1718093281929495, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1889. ,{ "pid":12345, "tid":4, "ts":1718093281929606, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1890. ,{ "pid":12345, "tid":4, "ts":1718093281929772, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.h" }}
  1891. ,{ "pid":12345, "tid":4, "ts":1718093281929769, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MethodBase.h" }}
  1892. ,{ "pid":12345, "tid":4, "ts":1718093281929840, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1893. ,{ "pid":12345, "tid":4, "ts":1718093281929939, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.cpp" }}
  1894. ,{ "pid":12345, "tid":4, "ts":1718093281929924, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.cpp" }}
  1895. ,{ "pid":12345, "tid":4, "ts":1718093281930025, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1896. ,{ "pid":12345, "tid":4, "ts":1718093281930107, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/MonoIO.h" }}
  1897. ,{ "pid":12345, "tid":4, "ts":1718093281930106, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/MonoIO.h" }}
  1898. ,{ "pid":12345, "tid":4, "ts":1718093281930180, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1899. ,{ "pid":12345, "tid":4, "ts":1718093281930277, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.cpp" }}
  1900. ,{ "pid":12345, "tid":4, "ts":1718093281930276, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.cpp" }}
  1901. ,{ "pid":12345, "tid":4, "ts":1718093281930352, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1902. ,{ "pid":12345, "tid":4, "ts":1718093281930446, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.h" }}
  1903. ,{ "pid":12345, "tid":4, "ts":1718093281930444, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureData.h" }}
  1904. ,{ "pid":12345, "tid":4, "ts":1718093281930509, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1905. ,{ "pid":12345, "tid":4, "ts":1718093281930591, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.h" }}
  1906. ,{ "pid":12345, "tid":4, "ts":1718093281930589, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackTrace.h" }}
  1907. ,{ "pid":12345, "tid":4, "ts":1718093281930641, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1908. ,{ "pid":12345, "tid":4, "ts":1718093281930723, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.cpp" }}
  1909. ,{ "pid":12345, "tid":4, "ts":1718093281930721, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.cpp" }}
  1910. ,{ "pid":12345, "tid":4, "ts":1718093281930779, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1911. ,{ "pid":12345, "tid":4, "ts":1718093281930843, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/Runtime.h" }}
  1912. ,{ "pid":12345, "tid":4, "ts":1718093281930841, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/Runtime.h" }}
  1913. ,{ "pid":12345, "tid":4, "ts":1718093281930921, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1914. ,{ "pid":12345, "tid":4, "ts":1718093281931024, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Interop.h" }}
  1915. ,{ "pid":12345, "tid":4, "ts":1718093281931022, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Interop.h" }}
  1916. ,{ "pid":12345, "tid":4, "ts":1718093281931075, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1917. ,{ "pid":12345, "tid":4, "ts":1718093281931147, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/gc_wrapper.h" }}
  1918. ,{ "pid":12345, "tid":4, "ts":1718093281931146, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/gc_wrapper.h" }}
  1919. ,{ "pid":12345, "tid":4, "ts":1718093281931216, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1920. ,{ "pid":12345, "tid":4, "ts":1718093281931313, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/Allocator.h" }}
  1921. ,{ "pid":12345, "tid":4, "ts":1718093281931311, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/Allocator.h" }}
  1922. ,{ "pid":12345, "tid":4, "ts":1718093281931414, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1923. ,{ "pid":12345, "tid":4, "ts":1718093281931485, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-metadata.h" }}
  1924. ,{ "pid":12345, "tid":4, "ts":1718093281931484, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-metadata.h" }}
  1925. ,{ "pid":12345, "tid":4, "ts":1718093281931619, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1926. ,{ "pid":12345, "tid":4, "ts":1718093281931703, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zutil.h" }}
  1927. ,{ "pid":12345, "tid":4, "ts":1718093281931702, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zutil.h" }}
  1928. ,{ "pid":12345, "tid":4, "ts":1718093281931764, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1929. ,{ "pid":12345, "tid":4, "ts":1718093281931824, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/README" }}
  1930. ,{ "pid":12345, "tid":4, "ts":1718093281931911, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1931. ,{ "pid":12345, "tid":4, "ts":1718093281931985, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffast.c" }}
  1932. ,{ "pid":12345, "tid":4, "ts":1718093281931984, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffast.c" }}
  1933. ,{ "pid":12345, "tid":4, "ts":1718093281932073, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1934. ,{ "pid":12345, "tid":4, "ts":1718093281932148, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/deflate.h" }}
  1935. ,{ "pid":12345, "tid":4, "ts":1718093281932147, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/deflate.h" }}
  1936. ,{ "pid":12345, "tid":4, "ts":1718093281932215, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1937. ,{ "pid":12345, "tid":4, "ts":1718093281932275, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxh3.h" }}
  1938. ,{ "pid":12345, "tid":4, "ts":1718093281932274, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxh3.h" }}
  1939. ,{ "pid":12345, "tid":4, "ts":1718093281932331, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1940. ,{ "pid":12345, "tid":4, "ts":1718093281932445, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/math_private.h" }}
  1941. ,{ "pid":12345, "tid":4, "ts":1718093281932444, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/math_private.h" }}
  1942. ,{ "pid":12345, "tid":4, "ts":1718093281932532, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1943. ,{ "pid":12345, "tid":4, "ts":1718093281932658, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/unlocked.h" }}
  1944. ,{ "pid":12345, "tid":4, "ts":1718093281932655, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/unlocked.h" }}
  1945. ,{ "pid":12345, "tid":4, "ts":1718093281932729, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1946. ,{ "pid":12345, "tid":4, "ts":1718093281932800, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/parse.c" }}
  1947. ,{ "pid":12345, "tid":4, "ts":1718093281932799, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/parse.c" }}
  1948. ,{ "pid":12345, "tid":4, "ts":1718093281932868, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1949. ,{ "pid":12345, "tid":4, "ts":1718093281932959, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-windows.c" }}
  1950. ,{ "pid":12345, "tid":4, "ts":1718093281932957, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-windows.c" }}
  1951. ,{ "pid":12345, "tid":4, "ts":1718093281933037, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1952. ,{ "pid":12345, "tid":4, "ts":1718093281933135, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-value-hash.c" }}
  1953. ,{ "pid":12345, "tid":4, "ts":1718093281933134, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-value-hash.c" }}
  1954. ,{ "pid":12345, "tid":4, "ts":1718093281933207, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1955. ,{ "pid":12345, "tid":4, "ts":1718093281933295, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads.h" }}
  1956. ,{ "pid":12345, "tid":4, "ts":1718093281933293, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads.h" }}
  1957. ,{ "pid":12345, "tid":4, "ts":1718093281933371, "dur":728, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1958. ,{ "pid":12345, "tid":4, "ts":1718093281934105, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-mach.c" }}
  1959. ,{ "pid":12345, "tid":4, "ts":1718093281934104, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-mach.c" }}
  1960. ,{ "pid":12345, "tid":4, "ts":1718093281934222, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1961. ,{ "pid":12345, "tid":4, "ts":1718093281934344, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-string.h" }}
  1962. ,{ "pid":12345, "tid":4, "ts":1718093281934343, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-string.h" }}
  1963. ,{ "pid":12345, "tid":4, "ts":1718093281934417, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1964. ,{ "pid":12345, "tid":4, "ts":1718093281934489, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-rand.h" }}
  1965. ,{ "pid":12345, "tid":4, "ts":1718093281934488, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-rand.h" }}
  1966. ,{ "pid":12345, "tid":4, "ts":1718093281934579, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1967. ,{ "pid":12345, "tid":4, "ts":1718093281934678, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib-windows.c" }}
  1968. ,{ "pid":12345, "tid":4, "ts":1718093281934677, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib-windows.c" }}
  1969. ,{ "pid":12345, "tid":4, "ts":1718093281934748, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1970. ,{ "pid":12345, "tid":4, "ts":1718093281934848, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait-win32-uwp.c" }}
  1971. ,{ "pid":12345, "tid":4, "ts":1718093281934847, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait-win32-uwp.c" }}
  1972. ,{ "pid":12345, "tid":4, "ts":1718093281934931, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1973. ,{ "pid":12345, "tid":4, "ts":1718093281935018, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap.h" }}
  1974. ,{ "pid":12345, "tid":4, "ts":1718093281935017, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap.h" }}
  1975. ,{ "pid":12345, "tid":4, "ts":1718093281935105, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1976. ,{ "pid":12345, "tid":4, "ts":1718093281935189, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-md5.c" }}
  1977. ,{ "pid":12345, "tid":4, "ts":1718093281935189, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-md5.c" }}
  1978. ,{ "pid":12345, "tid":4, "ts":1718093281935250, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1979. ,{ "pid":12345, "tid":4, "ts":1718093281935321, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-windows.c" }}
  1980. ,{ "pid":12345, "tid":4, "ts":1718093281935320, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-windows.c" }}
  1981. ,{ "pid":12345, "tid":4, "ts":1718093281935402, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1982. ,{ "pid":12345, "tid":4, "ts":1718093281935480, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-linked-list-set.c" }}
  1983. ,{ "pid":12345, "tid":4, "ts":1718093281935479, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-linked-list-set.c" }}
  1984. ,{ "pid":12345, "tid":4, "ts":1718093281935554, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1985. ,{ "pid":12345, "tid":4, "ts":1718093281935629, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-x86.c" }}
  1986. ,{ "pid":12345, "tid":4, "ts":1718093281935628, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-x86.c" }}
  1987. ,{ "pid":12345, "tid":4, "ts":1718093281935705, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1988. ,{ "pid":12345, "tid":4, "ts":1718093281935788, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-filemap.c" }}
  1989. ,{ "pid":12345, "tid":4, "ts":1718093281935787, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-filemap.c" }}
  1990. ,{ "pid":12345, "tid":4, "ts":1718093281935903, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1991. ,{ "pid":12345, "tid":4, "ts":1718093281936007, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl.c" }}
  1992. ,{ "pid":12345, "tid":4, "ts":1718093281935999, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl.c" }}
  1993. ,{ "pid":12345, "tid":4, "ts":1718093281936107, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1994. ,{ "pid":12345, "tid":4, "ts":1718093281936183, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-counters.h" }}
  1995. ,{ "pid":12345, "tid":4, "ts":1718093281936182, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-counters.h" }}
  1996. ,{ "pid":12345, "tid":4, "ts":1718093281936256, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  1997. ,{ "pid":12345, "tid":4, "ts":1718093281936348, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-conc-hashtable.c" }}
  1998. ,{ "pid":12345, "tid":4, "ts":1718093281936346, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-conc-hashtable.c" }}
  1999. ,{ "pid":12345, "tid":4, "ts":1718093281936411, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2000. ,{ "pid":12345, "tid":4, "ts":1718093281936474, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/memfuncs.c" }}
  2001. ,{ "pid":12345, "tid":4, "ts":1718093281936473, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/memfuncs.c" }}
  2002. ,{ "pid":12345, "tid":4, "ts":1718093281936580, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-arm64.c" }}
  2003. ,{ "pid":12345, "tid":4, "ts":1718093281936579, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-arm64.c" }}
  2004. ,{ "pid":12345, "tid":4, "ts":1718093281936636, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2005. ,{ "pid":12345, "tid":4, "ts":1718093281936755, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-alloc.c" }}
  2006. ,{ "pid":12345, "tid":4, "ts":1718093281936754, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-alloc.c" }}
  2007. ,{ "pid":12345, "tid":4, "ts":1718093281936831, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2008. ,{ "pid":12345, "tid":4, "ts":1718093281936896, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf_common.h" }}
  2009. ,{ "pid":12345, "tid":4, "ts":1718093281936895, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf_common.h" }}
  2010. ,{ "pid":12345, "tid":4, "ts":1718093281936965, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2011. ,{ "pid":12345, "tid":4, "ts":1718093281937076, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/checked-build.h" }}
  2012. ,{ "pid":12345, "tid":4, "ts":1718093281937075, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/checked-build.h" }}
  2013. ,{ "pid":12345, "tid":4, "ts":1718093281937168, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2014. ,{ "pid":12345, "tid":4, "ts":1718093281937248, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-thread-pool.h" }}
  2015. ,{ "pid":12345, "tid":4, "ts":1718093281937247, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-thread-pool.h" }}
  2016. ,{ "pid":12345, "tid":4, "ts":1718093281937322, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2017. ,{ "pid":12345, "tid":4, "ts":1718093281937415, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol.h" }}
  2018. ,{ "pid":12345, "tid":4, "ts":1718093281937414, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol.h" }}
  2019. ,{ "pid":12345, "tid":4, "ts":1718093281937501, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2020. ,{ "pid":12345, "tid":4, "ts":1718093281937656, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-nursery-allocator.c" }}
  2021. ,{ "pid":12345, "tid":4, "ts":1718093281937654, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-nursery-allocator.c" }}
  2022. ,{ "pid":12345, "tid":4, "ts":1718093281937717, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2023. ,{ "pid":12345, "tid":4, "ts":1718093281937785, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-marksweep-drain-gray-stack.h" }}
  2024. ,{ "pid":12345, "tid":4, "ts":1718093281937784, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-marksweep-drain-gray-stack.h" }}
  2025. ,{ "pid":12345, "tid":4, "ts":1718093281937846, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2026. ,{ "pid":12345, "tid":4, "ts":1718093281937928, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-hash-table.c" }}
  2027. ,{ "pid":12345, "tid":4, "ts":1718093281937927, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-hash-table.c" }}
  2028. ,{ "pid":12345, "tid":4, "ts":1718093281937995, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2029. ,{ "pid":12345, "tid":4, "ts":1718093281938096, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-descriptor.h" }}
  2030. ,{ "pid":12345, "tid":4, "ts":1718093281938095, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-descriptor.h" }}
  2031. ,{ "pid":12345, "tid":4, "ts":1718093281938172, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2032. ,{ "pid":12345, "tid":4, "ts":1718093281938243, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-cardtable.c" }}
  2033. ,{ "pid":12345, "tid":4, "ts":1718093281938243, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-cardtable.c" }}
  2034. ,{ "pid":12345, "tid":4, "ts":1718093281938323, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2035. ,{ "pid":12345, "tid":4, "ts":1718093281938437, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/mini-arm.h" }}
  2036. ,{ "pid":12345, "tid":4, "ts":1718093281938434, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/mini-arm.h" }}
  2037. ,{ "pid":12345, "tid":4, "ts":1718093281938509, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2038. ,{ "pid":12345, "tid":4, "ts":1718093281938576, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/wrapper-types.h" }}
  2039. ,{ "pid":12345, "tid":4, "ts":1718093281938575, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/wrapper-types.h" }}
  2040. ,{ "pid":12345, "tid":4, "ts":1718093281938679, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2041. ,{ "pid":12345, "tid":4, "ts":1718093281938764, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore-unix.c" }}
  2042. ,{ "pid":12345, "tid":4, "ts":1718093281938762, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore-unix.c" }}
  2043. ,{ "pid":12345, "tid":4, "ts":1718093281938836, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2044. ,{ "pid":12345, "tid":4, "ts":1718093281938910, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-osx.c" }}
  2045. ,{ "pid":12345, "tid":4, "ts":1718093281938909, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-osx.c" }}
  2046. ,{ "pid":12345, "tid":4, "ts":1718093281939007, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2047. ,{ "pid":12345, "tid":4, "ts":1718093281939128, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle.c" }}
  2048. ,{ "pid":12345, "tid":4, "ts":1718093281939126, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle.c" }}
  2049. ,{ "pid":12345, "tid":4, "ts":1718093281939196, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2050. ,{ "pid":12345, "tid":4, "ts":1718093281939274, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix.c" }}
  2051. ,{ "pid":12345, "tid":4, "ts":1718093281939272, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix.c" }}
  2052. ,{ "pid":12345, "tid":4, "ts":1718093281939342, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2053. ,{ "pid":12345, "tid":4, "ts":1718093281939418, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error.h" }}
  2054. ,{ "pid":12345, "tid":4, "ts":1718093281939417, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error.h" }}
  2055. ,{ "pid":12345, "tid":4, "ts":1718093281939489, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2056. ,{ "pid":12345, "tid":4, "ts":1718093281939581, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-utils.c" }}
  2057. ,{ "pid":12345, "tid":4, "ts":1718093281939580, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-utils.c" }}
  2058. ,{ "pid":12345, "tid":4, "ts":1718093281939650, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2059. ,{ "pid":12345, "tid":4, "ts":1718093281939740, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool.h" }}
  2060. ,{ "pid":12345, "tid":4, "ts":1718093281939739, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool.h" }}
  2061. ,{ "pid":12345, "tid":4, "ts":1718093281939801, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2062. ,{ "pid":12345, "tid":4, "ts":1718093281939883, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/tabledefs.h" }}
  2063. ,{ "pid":12345, "tid":4, "ts":1718093281939875, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/tabledefs.h" }}
  2064. ,{ "pid":12345, "tid":4, "ts":1718093281939968, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2065. ,{ "pid":12345, "tid":4, "ts":1718093281940040, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-internals.h" }}
  2066. ,{ "pid":12345, "tid":4, "ts":1718093281940039, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-internals.h" }}
  2067. ,{ "pid":12345, "tid":4, "ts":1718093281940102, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2068. ,{ "pid":12345, "tid":4, "ts":1718093281940206, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-mono.c" }}
  2069. ,{ "pid":12345, "tid":4, "ts":1718093281940204, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-mono.c" }}
  2070. ,{ "pid":12345, "tid":4, "ts":1718093281940261, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2071. ,{ "pid":12345, "tid":4, "ts":1718093281940334, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/seq-points-data.h" }}
  2072. ,{ "pid":12345, "tid":4, "ts":1718093281940332, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/seq-points-data.h" }}
  2073. ,{ "pid":12345, "tid":4, "ts":1718093281940422, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2074. ,{ "pid":12345, "tid":4, "ts":1718093281940500, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/runtime.h" }}
  2075. ,{ "pid":12345, "tid":4, "ts":1718093281940499, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/runtime.h" }}
  2076. ,{ "pid":12345, "tid":4, "ts":1718093281940595, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2077. ,{ "pid":12345, "tid":4, "ts":1718093281940689, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection-cache.h" }}
  2078. ,{ "pid":12345, "tid":4, "ts":1718093281940687, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection-cache.h" }}
  2079. ,{ "pid":12345, "tid":4, "ts":1718093281940755, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2080. ,{ "pid":12345, "tid":4, "ts":1718093281940829, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-private.h" }}
  2081. ,{ "pid":12345, "tid":4, "ts":1718093281940828, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-private.h" }}
  2082. ,{ "pid":12345, "tid":4, "ts":1718093281940915, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2083. ,{ "pid":12345, "tid":4, "ts":1718093281940990, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object.h" }}
  2084. ,{ "pid":12345, "tid":4, "ts":1718093281940989, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object.h" }}
  2085. ,{ "pid":12345, "tid":4, "ts":1718093281941059, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2086. ,{ "pid":12345, "tid":4, "ts":1718093281941148, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-formatter.h" }}
  2087. ,{ "pid":12345, "tid":4, "ts":1718093281941146, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-formatter.h" }}
  2088. ,{ "pid":12345, "tid":4, "ts":1718093281941230, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2089. ,{ "pid":12345, "tid":4, "ts":1718093281941316, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-route.h" }}
  2090. ,{ "pid":12345, "tid":4, "ts":1718093281941315, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-route.h" }}
  2091. ,{ "pid":12345, "tid":4, "ts":1718093281941392, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2092. ,{ "pid":12345, "tid":4, "ts":1718093281941482, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-mlist.c" }}
  2093. ,{ "pid":12345, "tid":4, "ts":1718093281941481, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-mlist.c" }}
  2094. ,{ "pid":12345, "tid":4, "ts":1718093281941573, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2095. ,{ "pid":12345, "tid":4, "ts":1718093281941644, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-debug.h" }}
  2096. ,{ "pid":12345, "tid":4, "ts":1718093281941644, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-debug.h" }}
  2097. ,{ "pid":12345, "tid":4, "ts":1718093281941719, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2098. ,{ "pid":12345, "tid":4, "ts":1718093281941808, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-conc-hash.c" }}
  2099. ,{ "pid":12345, "tid":4, "ts":1718093281941807, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-conc-hash.c" }}
  2100. ,{ "pid":12345, "tid":4, "ts":1718093281941892, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2101. ,{ "pid":12345, "tid":4, "ts":1718093281941978, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata.h" }}
  2102. ,{ "pid":12345, "tid":4, "ts":1718093281941977, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata.h" }}
  2103. ,{ "pid":12345, "tid":4, "ts":1718093281942072, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2104. ,{ "pid":12345, "tid":4, "ts":1718093281942148, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool-internals.h" }}
  2105. ,{ "pid":12345, "tid":4, "ts":1718093281942147, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool-internals.h" }}
  2106. ,{ "pid":12345, "tid":4, "ts":1718093281942210, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2107. ,{ "pid":12345, "tid":4, "ts":1718093281942303, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/lock-tracer.c" }}
  2108. ,{ "pid":12345, "tid":4, "ts":1718093281942302, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/lock-tracer.c" }}
  2109. ,{ "pid":12345, "tid":4, "ts":1718093281942378, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2110. ,{ "pid":12345, "tid":4, "ts":1718093281942446, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/jit-info.c" }}
  2111. ,{ "pid":12345, "tid":4, "ts":1718093281942445, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/jit-info.c" }}
  2112. ,{ "pid":12345, "tid":4, "ts":1718093281942515, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2113. ,{ "pid":12345, "tid":4, "ts":1718093281942599, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall.c" }}
  2114. ,{ "pid":12345, "tid":4, "ts":1718093281942598, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall.c" }}
  2115. ,{ "pid":12345, "tid":4, "ts":1718093281942680, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2116. ,{ "pid":12345, "tid":4, "ts":1718093281942754, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle-decl.h" }}
  2117. ,{ "pid":12345, "tid":4, "ts":1718093281942753, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle-decl.h" }}
  2118. ,{ "pid":12345, "tid":4, "ts":1718093281942819, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2119. ,{ "pid":12345, "tid":4, "ts":1718093281942886, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap.h" }}
  2120. ,{ "pid":12345, "tid":4, "ts":1718093281942885, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap.h" }}
  2121. ,{ "pid":12345, "tid":4, "ts":1718093281942961, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2122. ,{ "pid":12345, "tid":4, "ts":1718093281943045, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/environment.h" }}
  2123. ,{ "pid":12345, "tid":4, "ts":1718093281943044, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/environment.h" }}
  2124. ,{ "pid":12345, "tid":4, "ts":1718093281943102, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2125. ,{ "pid":12345, "tid":4, "ts":1718093281943192, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/domain.c" }}
  2126. ,{ "pid":12345, "tid":4, "ts":1718093281943190, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/domain.c" }}
  2127. ,{ "pid":12345, "tid":4, "ts":1718093281943281, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2128. ,{ "pid":12345, "tid":4, "ts":1718093281943360, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-ppdb.c" }}
  2129. ,{ "pid":12345, "tid":4, "ts":1718093281943359, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-ppdb.c" }}
  2130. ,{ "pid":12345, "tid":4, "ts":1718093281943459, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2131. ,{ "pid":12345, "tid":4, "ts":1718093281943584, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/culture-info-tables.h" }}
  2132. ,{ "pid":12345, "tid":4, "ts":1718093281943582, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/culture-info-tables.h" }}
  2133. ,{ "pid":12345, "tid":4, "ts":1718093281943697, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2134. ,{ "pid":12345, "tid":4, "ts":1718093281943809, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cominterop.h" }}
  2135. ,{ "pid":12345, "tid":4, "ts":1718093281943806, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cominterop.h" }}
  2136. ,{ "pid":12345, "tid":4, "ts":1718093281943899, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2137. ,{ "pid":12345, "tid":4, "ts":1718093281944003, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-inlines.h" }}
  2138. ,{ "pid":12345, "tid":4, "ts":1718093281944001, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-inlines.h" }}
  2139. ,{ "pid":12345, "tid":4, "ts":1718093281944093, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2140. ,{ "pid":12345, "tid":4, "ts":1718093281944174, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/assembly.h" }}
  2141. ,{ "pid":12345, "tid":4, "ts":1718093281944173, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/assembly.h" }}
  2142. ,{ "pid":12345, "tid":4, "ts":1718093281944231, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2143. ,{ "pid":12345, "tid":4, "ts":1718093281944342, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain.c" }}
  2144. ,{ "pid":12345, "tid":4, "ts":1718093281944341, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain.c" }}
  2145. ,{ "pid":12345, "tid":4, "ts":1718093281944473, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2146. ,{ "pid":12345, "tid":4, "ts":1718093281944599, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode-win32.c" }}
  2147. ,{ "pid":12345, "tid":4, "ts":1718093281944598, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode-win32.c" }}
  2148. ,{ "pid":12345, "tid":4, "ts":1718093281944674, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2149. ,{ "pid":12345, "tid":4, "ts":1718093281944747, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gqueue.c" }}
  2150. ,{ "pid":12345, "tid":4, "ts":1718093281944745, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gqueue.c" }}
  2151. ,{ "pid":12345, "tid":4, "ts":1718093281944811, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2152. ,{ "pid":12345, "tid":4, "ts":1718093281944907, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmisc-unity.c" }}
  2153. ,{ "pid":12345, "tid":4, "ts":1718093281944905, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmisc-unity.c" }}
  2154. ,{ "pid":12345, "tid":4, "ts":1718093281944981, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2155. ,{ "pid":12345, "tid":4, "ts":1718093281945055, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gfile-unity.c" }}
  2156. ,{ "pid":12345, "tid":4, "ts":1718093281945053, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gfile-unity.c" }}
  2157. ,{ "pid":12345, "tid":4, "ts":1718093281945119, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2158. ,{ "pid":12345, "tid":4, "ts":1718093281945196, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/cil/tables.def" }}
  2159. ,{ "pid":12345, "tid":4, "ts":1718093281945271, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2160. ,{ "pid":12345, "tid":4, "ts":1718093281945349, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm-codegen.h" }}
  2161. ,{ "pid":12345, "tid":4, "ts":1718093281945348, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm-codegen.h" }}
  2162. ,{ "pid":12345, "tid":4, "ts":1718093281945442, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2163. ,{ "pid":12345, "tid":4, "ts":1718093281945522, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/sparsetable.h" }}
  2164. ,{ "pid":12345, "tid":4, "ts":1718093281945521, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/sparsetable.h" }}
  2165. ,{ "pid":12345, "tid":4, "ts":1718093281945587, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2166. ,{ "pid":12345, "tid":4, "ts":1718093281945672, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/dense_hash_map.h" }}
  2167. ,{ "pid":12345, "tid":4, "ts":1718093281945670, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/dense_hash_map.h" }}
  2168. ,{ "pid":12345, "tid":4, "ts":1718093281945733, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2169. ,{ "pid":12345, "tid":4, "ts":1718093281945847, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/setjmp_t.c" }}
  2170. ,{ "pid":12345, "tid":4, "ts":1718093281945845, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/setjmp_t.c" }}
  2171. ,{ "pid":12345, "tid":4, "ts":1718093281945922, "dur":343, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2172. ,{ "pid":12345, "tid":4, "ts":1718093281946280, "dur":169, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/test_atomic_ops.c" }}
  2173. ,{ "pid":12345, "tid":4, "ts":1718093281946277, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/test_atomic_ops.c" }}
  2174. ,{ "pid":12345, "tid":4, "ts":1718093281946455, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2175. ,{ "pid":12345, "tid":4, "ts":1718093281946564, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/middle.c" }}
  2176. ,{ "pid":12345, "tid":4, "ts":1718093281946562, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/middle.c" }}
  2177. ,{ "pid":12345, "tid":4, "ts":1718093281946625, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2178. ,{ "pid":12345, "tid":4, "ts":1718093281946730, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/specific.c" }}
  2179. ,{ "pid":12345, "tid":4, "ts":1718093281946728, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/specific.c" }}
  2180. ,{ "pid":12345, "tid":4, "ts":1718093281946797, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2181. ,{ "pid":12345, "tid":4, "ts":1718093281946901, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/os_dep.c" }}
  2182. ,{ "pid":12345, "tid":4, "ts":1718093281946899, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/os_dep.c" }}
  2183. ,{ "pid":12345, "tid":4, "ts":1718093281946982, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2184. ,{ "pid":12345, "tid":4, "ts":1718093281947058, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/malloc.c" }}
  2185. ,{ "pid":12345, "tid":4, "ts":1718093281947056, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/malloc.c" }}
  2186. ,{ "pid":12345, "tid":4, "ts":1718093281947180, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2187. ,{ "pid":12345, "tid":4, "ts":1718093281947278, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered_except_wr.h" }}
  2188. ,{ "pid":12345, "tid":4, "ts":1718093281947276, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered_except_wr.h" }}
  2189. ,{ "pid":12345, "tid":4, "ts":1718093281947339, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2190. ,{ "pid":12345, "tid":4, "ts":1718093281947431, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2191. ,{ "pid":12345, "tid":4, "ts":1718093281947520, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_acquire_release_volatile.h" }}
  2192. ,{ "pid":12345, "tid":4, "ts":1718093281947518, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/int_acquire_release_volatile.h" }}
  2193. ,{ "pid":12345, "tid":4, "ts":1718093281947614, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2194. ,{ "pid":12345, "tid":4, "ts":1718093281947695, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.h" }}
  2195. ,{ "pid":12345, "tid":4, "ts":1718093281947693, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.h" }}
  2196. ,{ "pid":12345, "tid":4, "ts":1718093281947751, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2197. ,{ "pid":12345, "tid":4, "ts":1718093281947842, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h" }}
  2198. ,{ "pid":12345, "tid":4, "ts":1718093281947840, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sh.h" }}
  2199. ,{ "pid":12345, "tid":4, "ts":1718093281947939, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2200. ,{ "pid":12345, "tid":4, "ts":1718093281948077, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2201. ,{ "pid":12345, "tid":4, "ts":1718093281948169, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/alpha.h" }}
  2202. ,{ "pid":12345, "tid":4, "ts":1718093281948166, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/alpha.h" }}
  2203. ,{ "pid":12345, "tid":4, "ts":1718093281948249, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2204. ,{ "pid":12345, "tid":4, "ts":1718093281948331, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h" }}
  2205. ,{ "pid":12345, "tid":4, "ts":1718093281948328, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h" }}
  2206. ,{ "pid":12345, "tid":4, "ts":1718093281948399, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2207. ,{ "pid":12345, "tid":4, "ts":1718093281948597, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Transactions.dll" }}
  2208. ,{ "pid":12345, "tid":4, "ts":1718093281948595, "dur":250, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Transactions-FeaturesChecked.txt" }}
  2209. ,{ "pid":12345, "tid":4, "ts":1718093281948892, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.PhysicsModule.dll" }}
  2210. ,{ "pid":12345, "tid":4, "ts":1718093281948891, "dur":290, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.PhysicsModule-FeaturesChecked.txt" }}
  2211. ,{ "pid":12345, "tid":4, "ts":1718093281949259, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Burst.Unsafe.dll" }}
  2212. ,{ "pid":12345, "tid":4, "ts":1718093281949257, "dur":276, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Burst.Unsafe-FeaturesChecked.txt" }}
  2213. ,{ "pid":12345, "tid":4, "ts":1718093281949534, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2214. ,{ "pid":12345, "tid":4, "ts":1718093281949732, "dur":825, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Data.dll" }}
  2215. ,{ "pid":12345, "tid":4, "ts":1718093281950613, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.VisualStudio.dll" }}
  2216. ,{ "pid":12345, "tid":4, "ts":1718093281949731, "dur":1004, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Data-FeaturesChecked.txt" }}
  2217. ,{ "pid":12345, "tid":4, "ts":1718093281950798, "dur":1751, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/mscorlib.dll" }}
  2218. ,{ "pid":12345, "tid":4, "ts":1718093281950796, "dur":1899, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/mscorlib-FeaturesChecked.txt" }}
  2219. ,{ "pid":12345, "tid":4, "ts":1718093281952707, "dur":155, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/mscorlib-FeaturesChecked.txt" }}
  2220. ,{ "pid":12345, "tid":4, "ts":1718093281952877, "dur":150, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.Stores.dll" }}
  2221. ,{ "pid":12345, "tid":4, "ts":1718093281952875, "dur":350, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Stores-FeaturesChecked.txt" }}
  2222. ,{ "pid":12345, "tid":4, "ts":1718093281953280, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Advertisements.dll" }}
  2223. ,{ "pid":12345, "tid":4, "ts":1718093281953277, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Advertisements-FeaturesChecked.txt" }}
  2224. ,{ "pid":12345, "tid":4, "ts":1718093281953819, "dur":304197, "ph":"X", "name": "ExtractUsedFeatures", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.Advertisements-FeaturesChecked.txt" }}
  2225. ,{ "pid":12345, "tid":4, "ts":1718093282258198, "dur":9480277, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2226. ,{ "pid":12345, "tid":4, "ts":1718093291738487, "dur":1672309, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2227. ,{ "pid":12345, "tid":5, "ts":1718093281795582, "dur":83507, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  2228. ,{ "pid":12345, "tid":5, "ts":1718093281879095, "dur":976, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2229. ,{ "pid":12345, "tid":5, "ts":1718093281880072, "dur":1050, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2230. ,{ "pid":12345, "tid":5, "ts":1718093281881123, "dur":944, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2231. ,{ "pid":12345, "tid":5, "ts":1718093281882067, "dur":985, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2232. ,{ "pid":12345, "tid":5, "ts":1718093281883052, "dur":1096, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2233. ,{ "pid":12345, "tid":5, "ts":1718093281884148, "dur":22517, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2234. ,{ "pid":12345, "tid":5, "ts":1718093281906699, "dur":60, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/Firebase.Platform-FeaturesChecked.txt_urse.info" }}
  2235. ,{ "pid":12345, "tid":5, "ts":1718093281906792, "dur":97, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.TextCoreTextEngineModule-FeaturesChecked.txt_4y5l.info" }}
  2236. ,{ "pid":12345, "tid":5, "ts":1718093281906959, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2237. ,{ "pid":12345, "tid":5, "ts":1718093281907081, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2238. ,{ "pid":12345, "tid":5, "ts":1718093281907149, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2239. ,{ "pid":12345, "tid":5, "ts":1718093281907259, "dur":138, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2240. ,{ "pid":12345, "tid":5, "ts":1718093281907403, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2241. ,{ "pid":12345, "tid":5, "ts":1718093281907506, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2242. ,{ "pid":12345, "tid":5, "ts":1718093281907752, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2243. ,{ "pid":12345, "tid":5, "ts":1718093281907831, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2244. ,{ "pid":12345, "tid":5, "ts":1718093281908000, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2245. ,{ "pid":12345, "tid":5, "ts":1718093281908348, "dur":943, "ph":"X", "name": "WriteText", "args": { "detail":"Library/Bee/artifacts/csharpactions/AppleRequiredReasonCSharpAPIs.txt_kfm7.info" }}
  2246. ,{ "pid":12345, "tid":5, "ts":1718093281909294, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionErrorDetails.h" }}
  2247. ,{ "pid":12345, "tid":5, "ts":1718093281909292, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURTransactionErrorDetails.h" }}
  2248. ,{ "pid":12345, "tid":5, "ts":1718093281909397, "dur":187, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2249. ,{ "pid":12345, "tid":5, "ts":1718093281909592, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationPlacementContentState.h" }}
  2250. ,{ "pid":12345, "tid":5, "ts":1718093281909591, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationPlacementContentState.h" }}
  2251. ,{ "pid":12345, "tid":5, "ts":1718093281909735, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2252. ,{ "pid":12345, "tid":5, "ts":1718093281909882, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h" }}
  2253. ,{ "pid":12345, "tid":5, "ts":1718093281909880, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerAdRefreshViewDelegate.h" }}
  2254. ,{ "pid":12345, "tid":5, "ts":1718093281910003, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2255. ,{ "pid":12345, "tid":5, "ts":1718093281910155, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsFinishState.h" }}
  2256. ,{ "pid":12345, "tid":5, "ts":1718093281910154, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsFinishState.h" }}
  2257. ,{ "pid":12345, "tid":5, "ts":1718093281910278, "dur":243, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2258. ,{ "pid":12345, "tid":5, "ts":1718093281910527, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAds.h" }}
  2259. ,{ "pid":12345, "tid":5, "ts":1718093281910526, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAds.h" }}
  2260. ,{ "pid":12345, "tid":5, "ts":1718093281910654, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2261. ,{ "pid":12345, "tid":5, "ts":1718093281910789, "dur":148, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONNativePromoAdapter.h" }}
  2262. ,{ "pid":12345, "tid":5, "ts":1718093281910789, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONNativePromoAdapter.h" }}
  2263. ,{ "pid":12345, "tid":5, "ts":1718093281910938, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2264. ,{ "pid":12345, "tid":5, "ts":1718093281911073, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSMetaData.h" }}
  2265. ,{ "pid":12345, "tid":5, "ts":1718093281911072, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSMetaData.h" }}
  2266. ,{ "pid":12345, "tid":5, "ts":1718093281911145, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2267. ,{ "pid":12345, "tid":5, "ts":1718093281911769, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ARModule.dll" }}
  2268. ,{ "pid":12345, "tid":5, "ts":1718093281912002, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.AudioModule.dll" }}
  2269. ,{ "pid":12345, "tid":5, "ts":1718093281912103, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ClothModule.dll" }}
  2270. ,{ "pid":12345, "tid":5, "ts":1718093281912174, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ContentLoadModule.dll" }}
  2271. ,{ "pid":12345, "tid":5, "ts":1718093281912354, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.DirectorModule.dll" }}
  2272. ,{ "pid":12345, "tid":5, "ts":1718093281912667, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.JSONSerializeModule.dll" }}
  2273. ,{ "pid":12345, "tid":5, "ts":1718093281912742, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.ParticleSystemModule.dll" }}
  2274. ,{ "pid":12345, "tid":5, "ts":1718093281913219, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.SubsystemsModule.dll" }}
  2275. ,{ "pid":12345, "tid":5, "ts":1718093281913315, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TLSModule.dll" }}
  2276. ,{ "pid":12345, "tid":5, "ts":1718093281913425, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.TextCoreTextEngineModule.dll" }}
  2277. ,{ "pid":12345, "tid":5, "ts":1718093281913737, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed/UnityEngine.UnityWebRequestModule.dll" }}
  2278. ,{ "pid":12345, "tid":5, "ts":1718093281914146, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Scheduler.dll" }}
  2279. ,{ "pid":12345, "tid":5, "ts":1718093281914527, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/AppleAuth.dll" }}
  2280. ,{ "pid":12345, "tid":5, "ts":1718093281914643, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/UnityEngine.Purchasing.WinRTCore.dll" }}
  2281. ,{ "pid":12345, "tid":5, "ts":1718093281914776, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Threading.dll" }}
  2282. ,{ "pid":12345, "tid":5, "ts":1718093281915055, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Services.Core.Telemetry.dll" }}
  2283. ,{ "pid":12345, "tid":5, "ts":1718093281915171, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/PlayerScriptAssemblies/Unity.Timeline.dll" }}
  2284. ,{ "pid":12345, "tid":5, "ts":1718093281915423, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/GoogleMobileAds/GoogleMobileAds.dll" }}
  2285. ,{ "pid":12345, "tid":5, "ts":1718093281915905, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Assets/Firebase/Plugins/Google.MiniJson.dll" }}
  2286. ,{ "pid":12345, "tid":5, "ts":1718093281915963, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Accessibility.dll" }}
  2287. ,{ "pid":12345, "tid":5, "ts":1718093281916210, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Collections.Concurrent.dll" }}
  2288. ,{ "pid":12345, "tid":5, "ts":1718093281916419, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ComponentModel.EventBasedAsync.dll" }}
  2289. ,{ "pid":12345, "tid":5, "ts":1718093281916911, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.TraceEvent.dll" }}
  2290. ,{ "pid":12345, "tid":5, "ts":1718093281916977, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Diagnostics.TraceSource.dll" }}
  2291. ,{ "pid":12345, "tid":5, "ts":1718093281917166, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Globalization.Calendars.dll" }}
  2292. ,{ "pid":12345, "tid":5, "ts":1718093281917322, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.IO.Compression.ZipFile.dll" }}
  2293. ,{ "pid":12345, "tid":5, "ts":1718093281917872, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Net.Sockets.dll" }}
  2294. ,{ "pid":12345, "tid":5, "ts":1718093281918477, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Resources.ResourceManager.dll" }}
  2295. ,{ "pid":12345, "tid":5, "ts":1718093281918548, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Resources.Writer.dll" }}
  2296. ,{ "pid":12345, "tid":5, "ts":1718093281919396, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Encryption.ECDsa.dll" }}
  2297. ,{ "pid":12345, "tid":5, "ts":1718093281919619, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.Primitives.dll" }}
  2298. ,{ "pid":12345, "tid":5, "ts":1718093281919671, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.ProtectedData.dll" }}
  2299. ,{ "pid":12345, "tid":5, "ts":1718093281919731, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Cryptography.RSA.dll" }}
  2300. ,{ "pid":12345, "tid":5, "ts":1718093281919899, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Security.Principal.Windows.dll" }}
  2301. ,{ "pid":12345, "tid":5, "ts":1718093281920203, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.ServiceProcess.ServiceController.dll" }}
  2302. ,{ "pid":12345, "tid":5, "ts":1718093281920491, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.Overlapped.dll" }}
  2303. ,{ "pid":12345, "tid":5, "ts":1718093281920573, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.Tasks.Extensions.dll" }}
  2304. ,{ "pid":12345, "tid":5, "ts":1718093281920678, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.Tasks.Parallel.dll" }}
  2305. ,{ "pid":12345, "tid":5, "ts":1718093281920756, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.Tasks.dll" }}
  2306. ,{ "pid":12345, "tid":5, "ts":1718093281920861, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.ThreadPool.dll" }}
  2307. ,{ "pid":12345, "tid":5, "ts":1718093281920912, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Threading.Timer.dll" }}
  2308. ,{ "pid":12345, "tid":5, "ts":1718093281921119, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.XPath.XDocument.dll" }}
  2309. ,{ "pid":12345, "tid":5, "ts":1718093281921194, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/Facades/System.Xml.XPath.XmlDocument.dll" }}
  2310. ,{ "pid":12345, "tid":5, "ts":1718093281921528, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ComponentModel.DataAnnotations.dll" }}
  2311. ,{ "pid":12345, "tid":5, "ts":1718093281921973, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Design.dll" }}
  2312. ,{ "pid":12345, "tid":5, "ts":1718093281922080, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.DirectoryServices.dll" }}
  2313. ,{ "pid":12345, "tid":5, "ts":1718093281922309, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.IdentityModel.Selectors.dll" }}
  2314. ,{ "pid":12345, "tid":5, "ts":1718093281922459, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Json.dll" }}
  2315. ,{ "pid":12345, "tid":5, "ts":1718093281922547, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Messaging.dll" }}
  2316. ,{ "pid":12345, "tid":5, "ts":1718093281922617, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Net.Http.WebRequest.dll" }}
  2317. ,{ "pid":12345, "tid":5, "ts":1718093281922772, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Numerics.dll" }}
  2318. ,{ "pid":12345, "tid":5, "ts":1718093281922931, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Runtime.Caching.dll" }}
  2319. ,{ "pid":12345, "tid":5, "ts":1718093281923008, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.Runtime.DurableInstancing.dll" }}
  2320. ,{ "pid":12345, "tid":5, "ts":1718093281923239, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceModel.Discovery.dll" }}
  2321. ,{ "pid":12345, "tid":5, "ts":1718093281923393, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityaot-macos/System.ServiceModel.Web.dll" }}
  2322. ,{ "pid":12345, "tid":5, "ts":1718093281923898, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  2323. ,{ "pid":12345, "tid":5, "ts":1718093281924148, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.Xcode.dll" }}
  2324. ,{ "pid":12345, "tid":5, "ts":1718093281924205, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Tools.dll" }}
  2325. ,{ "pid":12345, "tid":5, "ts":1718093281924323, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.Data.dll" }}
  2326. ,{ "pid":12345, "tid":5, "ts":1718093281924696, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll" }}
  2327. ,{ "pid":12345, "tid":5, "ts":1718093281924755, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.pdb" }}
  2328. ,{ "pid":12345, "tid":5, "ts":1718093281911242, "dur":13834, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"AddBootConfigGUID Library/Bee/artifacts/iOS/boot.config" }}
  2329. ,{ "pid":12345, "tid":5, "ts":1718093281925077, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2330. ,{ "pid":12345, "tid":5, "ts":1718093281925232, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/boot.config" }}
  2331. ,{ "pid":12345, "tid":5, "ts":1718093281925218, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Data/boot.config" }}
  2332. ,{ "pid":12345, "tid":5, "ts":1718093281925287, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2333. ,{ "pid":12345, "tid":5, "ts":1718093281925422, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-normalization-tables.h" }}
  2334. ,{ "pid":12345, "tid":5, "ts":1718093281925420, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-normalization-tables.h" }}
  2335. ,{ "pid":12345, "tid":5, "ts":1718093281925488, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2336. ,{ "pid":12345, "tid":5, "ts":1718093281925604, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-class-internals.h" }}
  2337. ,{ "pid":12345, "tid":5, "ts":1718093281925603, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-class-internals.h" }}
  2338. ,{ "pid":12345, "tid":5, "ts":1718093281925678, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2339. ,{ "pid":12345, "tid":5, "ts":1718093281925808, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-api-functions.h" }}
  2340. ,{ "pid":12345, "tid":5, "ts":1718093281925806, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-api-functions.h" }}
  2341. ,{ "pid":12345, "tid":5, "ts":1718093281925869, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2342. ,{ "pid":12345, "tid":5, "ts":1718093281925951, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/SocketException.cpp" }}
  2343. ,{ "pid":12345, "tid":5, "ts":1718093281925950, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/SocketException.cpp" }}
  2344. ,{ "pid":12345, "tid":5, "ts":1718093281926050, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2345. ,{ "pid":12345, "tid":5, "ts":1718093281926210, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.IO/FileSystemWatcher.h" }}
  2346. ,{ "pid":12345, "tid":5, "ts":1718093281926208, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.IO/FileSystemWatcher.h" }}
  2347. ,{ "pid":12345, "tid":5, "ts":1718093281926330, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2348. ,{ "pid":12345, "tid":5, "ts":1718093281926419, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.cpp" }}
  2349. ,{ "pid":12345, "tid":5, "ts":1718093281926418, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/FileVersionInfo.cpp" }}
  2350. ,{ "pid":12345, "tid":5, "ts":1718093281926493, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2351. ,{ "pid":12345, "tid":5, "ts":1718093281926605, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.h" }}
  2352. ,{ "pid":12345, "tid":5, "ts":1718093281926604, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System.Core/System.IO.MemoryMappedFiles/MemoryMapImpl.h" }}
  2353. ,{ "pid":12345, "tid":5, "ts":1718093281926676, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2354. ,{ "pid":12345, "tid":5, "ts":1718093281926754, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Type.cpp" }}
  2355. ,{ "pid":12345, "tid":5, "ts":1718093281926752, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Type.cpp" }}
  2356. ,{ "pid":12345, "tid":5, "ts":1718093281926850, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2357. ,{ "pid":12345, "tid":5, "ts":1718093281927002, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.h" }}
  2358. ,{ "pid":12345, "tid":5, "ts":1718093281927001, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeMethodHandle.h" }}
  2359. ,{ "pid":12345, "tid":5, "ts":1718093281927101, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2360. ,{ "pid":12345, "tid":5, "ts":1718093281927221, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/NumberFormatter.cpp" }}
  2361. ,{ "pid":12345, "tid":5, "ts":1718093281927219, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/NumberFormatter.cpp" }}
  2362. ,{ "pid":12345, "tid":5, "ts":1718093281927298, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2363. ,{ "pid":12345, "tid":5, "ts":1718093281927412, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Exception.cpp" }}
  2364. ,{ "pid":12345, "tid":5, "ts":1718093281927410, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Exception.cpp" }}
  2365. ,{ "pid":12345, "tid":5, "ts":1718093281927500, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2366. ,{ "pid":12345, "tid":5, "ts":1718093281927631, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/DateTime.h" }}
  2367. ,{ "pid":12345, "tid":5, "ts":1718093281927630, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/DateTime.h" }}
  2368. ,{ "pid":12345, "tid":5, "ts":1718093281927732, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2369. ,{ "pid":12345, "tid":5, "ts":1718093281927810, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CLRConfig.cpp" }}
  2370. ,{ "pid":12345, "tid":5, "ts":1718093281927809, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CLRConfig.cpp" }}
  2371. ,{ "pid":12345, "tid":5, "ts":1718093281927872, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2372. ,{ "pid":12345, "tid":5, "ts":1718093281927978, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/AppDomain.h" }}
  2373. ,{ "pid":12345, "tid":5, "ts":1718093281927976, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/AppDomain.h" }}
  2374. ,{ "pid":12345, "tid":5, "ts":1718093281928052, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2375. ,{ "pid":12345, "tid":5, "ts":1718093281928126, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp" }}
  2376. ,{ "pid":12345, "tid":5, "ts":1718093281928125, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp" }}
  2377. ,{ "pid":12345, "tid":5, "ts":1718093281928209, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2378. ,{ "pid":12345, "tid":5, "ts":1718093281928325, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Monitor.cpp" }}
  2379. ,{ "pid":12345, "tid":5, "ts":1718093281928324, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Monitor.cpp" }}
  2380. ,{ "pid":12345, "tid":5, "ts":1718093281928392, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2381. ,{ "pid":12345, "tid":5, "ts":1718093281928466, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.cpp" }}
  2382. ,{ "pid":12345, "tid":5, "ts":1718093281928463, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/EncodingHelper.cpp" }}
  2383. ,{ "pid":12345, "tid":5, "ts":1718093281928529, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2384. ,{ "pid":12345, "tid":5, "ts":1718093281928643, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.cpp" }}
  2385. ,{ "pid":12345, "tid":5, "ts":1718093281928642, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.cpp" }}
  2386. ,{ "pid":12345, "tid":5, "ts":1718093281928702, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2387. ,{ "pid":12345, "tid":5, "ts":1718093281928798, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.h" }}
  2388. ,{ "pid":12345, "tid":5, "ts":1718093281928797, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.h" }}
  2389. ,{ "pid":12345, "tid":5, "ts":1718093281928857, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2390. ,{ "pid":12345, "tid":5, "ts":1718093281928918, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.h" }}
  2391. ,{ "pid":12345, "tid":5, "ts":1718093281928917, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/MonoMethodMessage.h" }}
  2392. ,{ "pid":12345, "tid":5, "ts":1718093281928995, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2393. ,{ "pid":12345, "tid":5, "ts":1718093281929093, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.cpp" }}
  2394. ,{ "pid":12345, "tid":5, "ts":1718093281929090, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.cpp" }}
  2395. ,{ "pid":12345, "tid":5, "ts":1718093281929159, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2396. ,{ "pid":12345, "tid":5, "ts":1718093281929298, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.h" }}
  2397. ,{ "pid":12345, "tid":5, "ts":1718093281929295, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.h" }}
  2398. ,{ "pid":12345, "tid":5, "ts":1718093281929371, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2399. ,{ "pid":12345, "tid":5, "ts":1718093281929464, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeFieldInfo.cpp" }}
  2400. ,{ "pid":12345, "tid":5, "ts":1718093281929610, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2401. ,{ "pid":12345, "tid":5, "ts":1718093281929702, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethod.cpp" }}
  2402. ,{ "pid":12345, "tid":5, "ts":1718093281929701, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethod.cpp" }}
  2403. ,{ "pid":12345, "tid":5, "ts":1718093281929790, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2404. ,{ "pid":12345, "tid":5, "ts":1718093281929873, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.cpp" }}
  2405. ,{ "pid":12345, "tid":5, "ts":1718093281929872, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.cpp" }}
  2406. ,{ "pid":12345, "tid":5, "ts":1718093281929986, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2407. ,{ "pid":12345, "tid":5, "ts":1718093281930061, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/Path.h" }}
  2408. ,{ "pid":12345, "tid":5, "ts":1718093281930061, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/Path.h" }}
  2409. ,{ "pid":12345, "tid":5, "ts":1718093281930131, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2410. ,{ "pid":12345, "tid":5, "ts":1718093281930232, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.cpp" }}
  2411. ,{ "pid":12345, "tid":5, "ts":1718093281930230, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.cpp" }}
  2412. ,{ "pid":12345, "tid":5, "ts":1718093281930307, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2413. ,{ "pid":12345, "tid":5, "ts":1718093281930402, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.h" }}
  2414. ,{ "pid":12345, "tid":5, "ts":1718093281930401, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.h" }}
  2415. ,{ "pid":12345, "tid":5, "ts":1718093281930465, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2416. ,{ "pid":12345, "tid":5, "ts":1718093281930526, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.cpp" }}
  2417. ,{ "pid":12345, "tid":5, "ts":1718093281930524, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.cpp" }}
  2418. ,{ "pid":12345, "tid":5, "ts":1718093281930612, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2419. ,{ "pid":12345, "tid":5, "ts":1718093281930680, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.cpp" }}
  2420. ,{ "pid":12345, "tid":5, "ts":1718093281930679, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.cpp" }}
  2421. ,{ "pid":12345, "tid":5, "ts":1718093281930737, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2422. ,{ "pid":12345, "tid":5, "ts":1718093281930807, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.h" }}
  2423. ,{ "pid":12345, "tid":5, "ts":1718093281930806, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.h" }}
  2424. ,{ "pid":12345, "tid":5, "ts":1718093281930860, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2425. ,{ "pid":12345, "tid":5, "ts":1718093281930935, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.cpp" }}
  2426. ,{ "pid":12345, "tid":5, "ts":1718093281930934, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Unity/UnityTls.cpp" }}
  2427. ,{ "pid":12345, "tid":5, "ts":1718093281931001, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2428. ,{ "pid":12345, "tid":5, "ts":1718093281931077, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrierValidation.h" }}
  2429. ,{ "pid":12345, "tid":5, "ts":1718093281931075, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrierValidation.h" }}
  2430. ,{ "pid":12345, "tid":5, "ts":1718093281931154, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2431. ,{ "pid":12345, "tid":5, "ts":1718093281931230, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GarbageCollector.cpp" }}
  2432. ,{ "pid":12345, "tid":5, "ts":1718093281931228, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GarbageCollector.cpp" }}
  2433. ,{ "pid":12345, "tid":5, "ts":1718093281931291, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2434. ,{ "pid":12345, "tid":5, "ts":1718093281931365, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/debugger/il2cpp-api-debugger.cpp" }}
  2435. ,{ "pid":12345, "tid":5, "ts":1718093281931364, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/debugger/il2cpp-api-debugger.cpp" }}
  2436. ,{ "pid":12345, "tid":5, "ts":1718093281931446, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2437. ,{ "pid":12345, "tid":5, "ts":1718093281931570, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-il2cpp.cpp" }}
  2438. ,{ "pid":12345, "tid":5, "ts":1718093281931569, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-il2cpp.cpp" }}
  2439. ,{ "pid":12345, "tid":5, "ts":1718093281931667, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2440. ,{ "pid":12345, "tid":5, "ts":1718093281931744, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zlib.h" }}
  2441. ,{ "pid":12345, "tid":5, "ts":1718093281931742, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zlib.h" }}
  2442. ,{ "pid":12345, "tid":5, "ts":1718093281931800, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2443. ,{ "pid":12345, "tid":5, "ts":1718093281931876, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inftrees.c" }}
  2444. ,{ "pid":12345, "tid":5, "ts":1718093281931875, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inftrees.c" }}
  2445. ,{ "pid":12345, "tid":5, "ts":1718093281931952, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2446. ,{ "pid":12345, "tid":5, "ts":1718093281932027, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzwrite.c" }}
  2447. ,{ "pid":12345, "tid":5, "ts":1718093281932026, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzwrite.c" }}
  2448. ,{ "pid":12345, "tid":5, "ts":1718093281932107, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2449. ,{ "pid":12345, "tid":5, "ts":1718093281932192, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/crc32.h" }}
  2450. ,{ "pid":12345, "tid":5, "ts":1718093281932191, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/crc32.h" }}
  2451. ,{ "pid":12345, "tid":5, "ts":1718093281932260, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2452. ,{ "pid":12345, "tid":5, "ts":1718093281932324, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/cmake_unofficial/README.md" }}
  2453. ,{ "pid":12345, "tid":5, "ts":1718093281932381, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2454. ,{ "pid":12345, "tid":5, "ts":1718093281932490, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/support/libm/complex.h" }}
  2455. ,{ "pid":12345, "tid":5, "ts":1718093281932489, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/support/libm/complex.h" }}
  2456. ,{ "pid":12345, "tid":5, "ts":1718093281932589, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2457. ,{ "pid":12345, "tid":5, "ts":1718093281932662, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/unity-time.c" }}
  2458. ,{ "pid":12345, "tid":5, "ts":1718093281932661, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/unity-time.c" }}
  2459. ,{ "pid":12345, "tid":5, "ts":1718093281932742, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2460. ,{ "pid":12345, "tid":5, "ts":1718093281932818, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event.h" }}
  2461. ,{ "pid":12345, "tid":5, "ts":1718093281932816, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event.h" }}
  2462. ,{ "pid":12345, "tid":5, "ts":1718093281932900, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2463. ,{ "pid":12345, "tid":5, "ts":1718093281932990, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-unity.c" }}
  2464. ,{ "pid":12345, "tid":5, "ts":1718093281932989, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-unity.c" }}
  2465. ,{ "pid":12345, "tid":5, "ts":1718093281933081, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2466. ,{ "pid":12345, "tid":5, "ts":1718093281933162, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-uri.h" }}
  2467. ,{ "pid":12345, "tid":5, "ts":1718093281933161, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-uri.h" }}
  2468. ,{ "pid":12345, "tid":5, "ts":1718093281933249, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2469. ,{ "pid":12345, "tid":5, "ts":1718093281933329, "dur":712, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads.c" }}
  2470. ,{ "pid":12345, "tid":5, "ts":1718093281933328, "dur":714, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads.c" }}
  2471. ,{ "pid":12345, "tid":5, "ts":1718093281934042, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2472. ,{ "pid":12345, "tid":5, "ts":1718093281934145, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-mach-helper.c" }}
  2473. ,{ "pid":12345, "tid":5, "ts":1718093281934144, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-mach-helper.c" }}
  2474. ,{ "pid":12345, "tid":5, "ts":1718093281934254, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2475. ,{ "pid":12345, "tid":5, "ts":1718093281934383, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stdlib.c" }}
  2476. ,{ "pid":12345, "tid":5, "ts":1718093281934381, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stdlib.c" }}
  2477. ,{ "pid":12345, "tid":5, "ts":1718093281934453, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2478. ,{ "pid":12345, "tid":5, "ts":1718093281934538, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-publib.c" }}
  2479. ,{ "pid":12345, "tid":5, "ts":1718093281934537, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-publib.c" }}
  2480. ,{ "pid":12345, "tid":5, "ts":1718093281934625, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2481. ,{ "pid":12345, "tid":5, "ts":1718093281934715, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-poll.c" }}
  2482. ,{ "pid":12345, "tid":5, "ts":1718093281934714, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-poll.c" }}
  2483. ,{ "pid":12345, "tid":5, "ts":1718093281934807, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2484. ,{ "pid":12345, "tid":5, "ts":1718093281934881, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-semaphore-win32.c" }}
  2485. ,{ "pid":12345, "tid":5, "ts":1718093281934880, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-semaphore-win32.c" }}
  2486. ,{ "pid":12345, "tid":5, "ts":1718093281934980, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2487. ,{ "pid":12345, "tid":5, "ts":1718093281935044, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap.c" }}
  2488. ,{ "pid":12345, "tid":5, "ts":1718093281935043, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap.c" }}
  2489. ,{ "pid":12345, "tid":5, "ts":1718093281935130, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2490. ,{ "pid":12345, "tid":5, "ts":1718093281935216, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-math.h" }}
  2491. ,{ "pid":12345, "tid":5, "ts":1718093281935215, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-math.h" }}
  2492. ,{ "pid":12345, "tid":5, "ts":1718093281935281, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2493. ,{ "pid":12345, "tid":5, "ts":1718093281935345, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-unity.c" }}
  2494. ,{ "pid":12345, "tid":5, "ts":1718093281935344, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-unity.c" }}
  2495. ,{ "pid":12345, "tid":5, "ts":1718093281935412, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2496. ,{ "pid":12345, "tid":5, "ts":1718093281935493, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-lazy-init.h" }}
  2497. ,{ "pid":12345, "tid":5, "ts":1718093281935492, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-lazy-init.h" }}
  2498. ,{ "pid":12345, "tid":5, "ts":1718093281935560, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2499. ,{ "pid":12345, "tid":5, "ts":1718093281935623, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap.c" }}
  2500. ,{ "pid":12345, "tid":5, "ts":1718093281935622, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap.c" }}
  2501. ,{ "pid":12345, "tid":5, "ts":1718093281935698, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2502. ,{ "pid":12345, "tid":5, "ts":1718093281935777, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-forward-internal.h" }}
  2503. ,{ "pid":12345, "tid":5, "ts":1718093281935776, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-forward-internal.h" }}
  2504. ,{ "pid":12345, "tid":5, "ts":1718093281935833, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2505. ,{ "pid":12345, "tid":5, "ts":1718093281935956, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl.h" }}
  2506. ,{ "pid":12345, "tid":5, "ts":1718093281935955, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl.h" }}
  2507. ,{ "pid":12345, "tid":5, "ts":1718093281936048, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2508. ,{ "pid":12345, "tid":5, "ts":1718093281936123, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-fallback.h" }}
  2509. ,{ "pid":12345, "tid":5, "ts":1718093281936121, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-fallback.h" }}
  2510. ,{ "pid":12345, "tid":5, "ts":1718093281936193, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2511. ,{ "pid":12345, "tid":5, "ts":1718093281936303, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-context.h" }}
  2512. ,{ "pid":12345, "tid":5, "ts":1718093281936296, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-context.h" }}
  2513. ,{ "pid":12345, "tid":5, "ts":1718093281936375, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2514. ,{ "pid":12345, "tid":5, "ts":1718093281936455, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-codeman.c" }}
  2515. ,{ "pid":12345, "tid":5, "ts":1718093281936453, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-codeman.c" }}
  2516. ,{ "pid":12345, "tid":5, "ts":1718093281936519, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2517. ,{ "pid":12345, "tid":5, "ts":1718093281936607, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-queue.h" }}
  2518. ,{ "pid":12345, "tid":5, "ts":1718093281936606, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-queue.h" }}
  2519. ,{ "pid":12345, "tid":5, "ts":1718093281936679, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2520. ,{ "pid":12345, "tid":5, "ts":1718093281936792, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/json.h" }}
  2521. ,{ "pid":12345, "tid":5, "ts":1718093281936790, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/json.h" }}
  2522. ,{ "pid":12345, "tid":5, "ts":1718093281936855, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2523. ,{ "pid":12345, "tid":5, "ts":1718093281936925, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf32.h" }}
  2524. ,{ "pid":12345, "tid":5, "ts":1718093281936923, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf32.h" }}
  2525. ,{ "pid":12345, "tid":5, "ts":1718093281936990, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2526. ,{ "pid":12345, "tid":5, "ts":1718093281937093, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/bsearch.h" }}
  2527. ,{ "pid":12345, "tid":5, "ts":1718093281937092, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/bsearch.h" }}
  2528. ,{ "pid":12345, "tid":5, "ts":1718093281937180, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2529. ,{ "pid":12345, "tid":5, "ts":1718093281937259, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-tagged-pointer.h" }}
  2530. ,{ "pid":12345, "tid":5, "ts":1718093281937258, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-tagged-pointer.h" }}
  2531. ,{ "pid":12345, "tid":5, "ts":1718093281937337, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2532. ,{ "pid":12345, "tid":5, "ts":1718093281937423, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol.c" }}
  2533. ,{ "pid":12345, "tid":5, "ts":1718093281937421, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol.c" }}
  2534. ,{ "pid":12345, "tid":5, "ts":1718093281937530, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2535. ,{ "pid":12345, "tid":5, "ts":1718093281937644, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning-stats.c" }}
  2536. ,{ "pid":12345, "tid":5, "ts":1718093281937644, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning-stats.c" }}
  2537. ,{ "pid":12345, "tid":5, "ts":1718093281937727, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2538. ,{ "pid":12345, "tid":5, "ts":1718093281937789, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-major-copy-object.h" }}
  2539. ,{ "pid":12345, "tid":5, "ts":1718093281937788, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-major-copy-object.h" }}
  2540. ,{ "pid":12345, "tid":5, "ts":1718093281937856, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2541. ,{ "pid":12345, "tid":5, "ts":1718093281937940, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gray.h" }}
  2542. ,{ "pid":12345, "tid":5, "ts":1718093281937938, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gray.h" }}
  2543. ,{ "pid":12345, "tid":5, "ts":1718093281938022, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2544. ,{ "pid":12345, "tid":5, "ts":1718093281938111, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-descriptor.c" }}
  2545. ,{ "pid":12345, "tid":5, "ts":1718093281938110, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-descriptor.c" }}
  2546. ,{ "pid":12345, "tid":5, "ts":1718093281938195, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2547. ,{ "pid":12345, "tid":5, "ts":1718093281938278, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-array-list.h" }}
  2548. ,{ "pid":12345, "tid":5, "ts":1718093281938277, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-array-list.h" }}
  2549. ,{ "pid":12345, "tid":5, "ts":1718093281938350, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2550. ,{ "pid":12345, "tid":5, "ts":1718093281938445, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-state-machine.h" }}
  2551. ,{ "pid":12345, "tid":5, "ts":1718093281938442, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-state-machine.h" }}
  2552. ,{ "pid":12345, "tid":5, "ts":1718093281938514, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2553. ,{ "pid":12345, "tid":5, "ts":1718093281938583, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket.h" }}
  2554. ,{ "pid":12345, "tid":5, "ts":1718093281938581, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket.h" }}
  2555. ,{ "pid":12345, "tid":5, "ts":1718093281938646, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2556. ,{ "pid":12345, "tid":5, "ts":1718093281938739, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore-win32.c" }}
  2557. ,{ "pid":12345, "tid":5, "ts":1718093281938738, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore-win32.c" }}
  2558. ,{ "pid":12345, "tid":5, "ts":1718093281938830, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2559. ,{ "pid":12345, "tid":5, "ts":1718093281938915, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-internals.h" }}
  2560. ,{ "pid":12345, "tid":5, "ts":1718093281938914, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-internals.h" }}
  2561. ,{ "pid":12345, "tid":5, "ts":1718093281939020, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2562. ,{ "pid":12345, "tid":5, "ts":1718093281939103, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle.h" }}
  2563. ,{ "pid":12345, "tid":5, "ts":1718093281939102, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle.h" }}
  2564. ,{ "pid":12345, "tid":5, "ts":1718093281939175, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2565. ,{ "pid":12345, "tid":5, "ts":1718093281939241, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-win32-internals.h" }}
  2566. ,{ "pid":12345, "tid":5, "ts":1718093281939240, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-win32-internals.h" }}
  2567. ,{ "pid":12345, "tid":5, "ts":1718093281939321, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2568. ,{ "pid":12345, "tid":5, "ts":1718093281939408, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event-unix.c" }}
  2569. ,{ "pid":12345, "tid":5, "ts":1718093281939406, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event-unix.c" }}
  2570. ,{ "pid":12345, "tid":5, "ts":1718093281939472, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2571. ,{ "pid":12345, "tid":5, "ts":1718093281939572, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-utils.h" }}
  2572. ,{ "pid":12345, "tid":5, "ts":1718093281939570, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-utils.h" }}
  2573. ,{ "pid":12345, "tid":5, "ts":1718093281939642, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2574. ,{ "pid":12345, "tid":5, "ts":1718093281939725, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads-types.h" }}
  2575. ,{ "pid":12345, "tid":5, "ts":1718093281939724, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads-types.h" }}
  2576. ,{ "pid":12345, "tid":5, "ts":1718093281939809, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2577. ,{ "pid":12345, "tid":5, "ts":1718093281939901, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sysmath.h" }}
  2578. ,{ "pid":12345, "tid":5, "ts":1718093281939900, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sysmath.h" }}
  2579. ,{ "pid":12345, "tid":5, "ts":1718093281939993, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2580. ,{ "pid":12345, "tid":5, "ts":1718093281940047, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-encode.c" }}
  2581. ,{ "pid":12345, "tid":5, "ts":1718093281940046, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-encode.c" }}
  2582. ,{ "pid":12345, "tid":5, "ts":1718093281940098, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2583. ,{ "pid":12345, "tid":5, "ts":1718093281940228, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-dynarray.h" }}
  2584. ,{ "pid":12345, "tid":5, "ts":1718093281940212, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-dynarray.h" }}
  2585. ,{ "pid":12345, "tid":5, "ts":1718093281940291, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2586. ,{ "pid":12345, "tid":5, "ts":1718093281940375, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-manager.h" }}
  2587. ,{ "pid":12345, "tid":5, "ts":1718093281940373, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-manager.h" }}
  2588. ,{ "pid":12345, "tid":5, "ts":1718093281940458, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2589. ,{ "pid":12345, "tid":5, "ts":1718093281940531, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/remoting.h" }}
  2590. ,{ "pid":12345, "tid":5, "ts":1718093281940530, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/remoting.h" }}
  2591. ,{ "pid":12345, "tid":5, "ts":1718093281940600, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2592. ,{ "pid":12345, "tid":5, "ts":1718093281940669, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection-internals.h" }}
  2593. ,{ "pid":12345, "tid":5, "ts":1718093281940669, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection-internals.h" }}
  2594. ,{ "pid":12345, "tid":5, "ts":1718093281940751, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2595. ,{ "pid":12345, "tid":5, "ts":1718093281940822, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler.c" }}
  2596. ,{ "pid":12345, "tid":5, "ts":1718093281940821, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler.c" }}
  2597. ,{ "pid":12345, "tid":5, "ts":1718093281940905, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2598. ,{ "pid":12345, "tid":5, "ts":1718093281940975, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/opcodes.h" }}
  2599. ,{ "pid":12345, "tid":5, "ts":1718093281940974, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/opcodes.h" }}
  2600. ,{ "pid":12345, "tid":5, "ts":1718093281941045, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2601. ,{ "pid":12345, "tid":5, "ts":1718093281941122, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-ms.h" }}
  2602. ,{ "pid":12345, "tid":5, "ts":1718093281941120, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-ms.h" }}
  2603. ,{ "pid":12345, "tid":5, "ts":1718093281941207, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2604. ,{ "pid":12345, "tid":5, "ts":1718093281941291, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security-windows.c" }}
  2605. ,{ "pid":12345, "tid":5, "ts":1718093281941289, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security-windows.c" }}
  2606. ,{ "pid":12345, "tid":5, "ts":1718093281941360, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2607. ,{ "pid":12345, "tid":5, "ts":1718093281941430, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-perfcounters-def.h" }}
  2608. ,{ "pid":12345, "tid":5, "ts":1718093281941429, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-perfcounters-def.h" }}
  2609. ,{ "pid":12345, "tid":5, "ts":1718093281941513, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2610. ,{ "pid":12345, "tid":5, "ts":1718093281941603, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-gc.h" }}
  2611. ,{ "pid":12345, "tid":5, "ts":1718093281941602, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-gc.h" }}
  2612. ,{ "pid":12345, "tid":5, "ts":1718093281941667, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2613. ,{ "pid":12345, "tid":5, "ts":1718093281941745, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config-dirs.h" }}
  2614. ,{ "pid":12345, "tid":5, "ts":1718093281941744, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config-dirs.h" }}
  2615. ,{ "pid":12345, "tid":5, "ts":1718093281941836, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2616. ,{ "pid":12345, "tid":5, "ts":1718093281941936, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/monitor.c" }}
  2617. ,{ "pid":12345, "tid":5, "ts":1718093281941935, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/monitor.c" }}
  2618. ,{ "pid":12345, "tid":5, "ts":1718093281942035, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2619. ,{ "pid":12345, "tid":5, "ts":1718093281942120, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-cross-helpers.c" }}
  2620. ,{ "pid":12345, "tid":5, "ts":1718093281942119, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-cross-helpers.c" }}
  2621. ,{ "pid":12345, "tid":5, "ts":1718093281942202, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2622. ,{ "pid":12345, "tid":5, "ts":1718093281942289, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/lock-tracer.h" }}
  2623. ,{ "pid":12345, "tid":5, "ts":1718093281942288, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/lock-tracer.h" }}
  2624. ,{ "pid":12345, "tid":5, "ts":1718093281942368, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2625. ,{ "pid":12345, "tid":5, "ts":1718093281942470, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/jit-icall-reg.h" }}
  2626. ,{ "pid":12345, "tid":5, "ts":1718093281942467, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/jit-icall-reg.h" }}
  2627. ,{ "pid":12345, "tid":5, "ts":1718093281942546, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2628. ,{ "pid":12345, "tid":5, "ts":1718093281942635, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-windows-internals.h" }}
  2629. ,{ "pid":12345, "tid":5, "ts":1718093281942633, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-windows-internals.h" }}
  2630. ,{ "pid":12345, "tid":5, "ts":1718093281942705, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2631. ,{ "pid":12345, "tid":5, "ts":1718093281942779, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/gc-stats.c" }}
  2632. ,{ "pid":12345, "tid":5, "ts":1718093281942778, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/gc-stats.c" }}
  2633. ,{ "pid":12345, "tid":5, "ts":1718093281942843, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2634. ,{ "pid":12345, "tid":5, "ts":1718093281942918, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/fdhandle.h" }}
  2635. ,{ "pid":12345, "tid":5, "ts":1718093281942917, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/fdhandle.h" }}
  2636. ,{ "pid":12345, "tid":5, "ts":1718093281943004, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2637. ,{ "pid":12345, "tid":5, "ts":1718093281943078, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-stream.c" }}
  2638. ,{ "pid":12345, "tid":5, "ts":1718093281943076, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-stream.c" }}
  2639. ,{ "pid":12345, "tid":5, "ts":1718093281943160, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2640. ,{ "pid":12345, "tid":5, "ts":1718093281943247, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/decimal-ms.c" }}
  2641. ,{ "pid":12345, "tid":5, "ts":1718093281943245, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/decimal-ms.c" }}
  2642. ,{ "pid":12345, "tid":5, "ts":1718093281943323, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2643. ,{ "pid":12345, "tid":5, "ts":1718093281943391, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-helpers.h" }}
  2644. ,{ "pid":12345, "tid":5, "ts":1718093281943389, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-helpers.h" }}
  2645. ,{ "pid":12345, "tid":5, "ts":1718093281943485, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2646. ,{ "pid":12345, "tid":5, "ts":1718093281943645, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree.c" }}
  2647. ,{ "pid":12345, "tid":5, "ts":1718093281943643, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree.c" }}
  2648. ,{ "pid":12345, "tid":5, "ts":1718093281943751, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2649. ,{ "pid":12345, "tid":5, "ts":1718093281943844, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cominterop-win32-internals.h" }}
  2650. ,{ "pid":12345, "tid":5, "ts":1718093281943842, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cominterop-win32-internals.h" }}
  2651. ,{ "pid":12345, "tid":5, "ts":1718093281943926, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2652. ,{ "pid":12345, "tid":5, "ts":1718093281944018, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cil-coff.h" }}
  2653. ,{ "pid":12345, "tid":5, "ts":1718093281944016, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cil-coff.h" }}
  2654. ,{ "pid":12345, "tid":5, "ts":1718093281944079, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2655. ,{ "pid":12345, "tid":5, "ts":1718093281944160, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attach.h" }}
  2656. ,{ "pid":12345, "tid":5, "ts":1718093281944214, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2657. ,{ "pid":12345, "tid":5, "ts":1718093281944353, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/appdomain-icalls.h" }}
  2658. ,{ "pid":12345, "tid":5, "ts":1718093281944351, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/appdomain-icalls.h" }}
  2659. ,{ "pid":12345, "tid":5, "ts":1718093281944518, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2660. ,{ "pid":12345, "tid":5, "ts":1718093281944620, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gunicode-win32-uwp.c" }}
  2661. ,{ "pid":12345, "tid":5, "ts":1718093281944618, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gunicode-win32-uwp.c" }}
  2662. ,{ "pid":12345, "tid":5, "ts":1718093281944696, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2663. ,{ "pid":12345, "tid":5, "ts":1718093281944765, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gqsort.c" }}
  2664. ,{ "pid":12345, "tid":5, "ts":1718093281944763, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gqsort.c" }}
  2665. ,{ "pid":12345, "tid":5, "ts":1718093281944828, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2666. ,{ "pid":12345, "tid":5, "ts":1718093281944910, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmem.c" }}
  2667. ,{ "pid":12345, "tid":5, "ts":1718093281944909, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmem.c" }}
  2668. ,{ "pid":12345, "tid":5, "ts":1718093281944968, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2669. ,{ "pid":12345, "tid":5, "ts":1718093281945034, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/ghashtable.c" }}
  2670. ,{ "pid":12345, "tid":5, "ts":1718093281945033, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/ghashtable.c" }}
  2671. ,{ "pid":12345, "tid":5, "ts":1718093281945090, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2672. ,{ "pid":12345, "tid":5, "ts":1718093281945169, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/garray.c" }}
  2673. ,{ "pid":12345, "tid":5, "ts":1718093281945167, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/garray.c" }}
  2674. ,{ "pid":12345, "tid":5, "ts":1718093281945239, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2675. ,{ "pid":12345, "tid":5, "ts":1718093281945336, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm/arm-vfp-codegen.h" }}
  2676. ,{ "pid":12345, "tid":5, "ts":1718093281945335, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm/arm-vfp-codegen.h" }}
  2677. ,{ "pid":12345, "tid":5, "ts":1718093281945427, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2678. ,{ "pid":12345, "tid":5, "ts":1718093281945598, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2679. ,{ "pid":12345, "tid":5, "ts":1718093281945688, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/windows-untested/stdafx.h" }}
  2680. ,{ "pid":12345, "tid":5, "ts":1718093281945687, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/windows-untested/stdafx.h" }}
  2681. ,{ "pid":12345, "tid":5, "ts":1718093281945751, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2682. ,{ "pid":12345, "tid":5, "ts":1718093281945904, "dur":224, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/if_mach.c" }}
  2683. ,{ "pid":12345, "tid":5, "ts":1718093281945902, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/if_mach.c" }}
  2684. ,{ "pid":12345, "tid":5, "ts":1718093281946144, "dur":177, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2685. ,{ "pid":12345, "tid":5, "ts":1718093281946328, "dur":173, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/test.c" }}
  2686. ,{ "pid":12345, "tid":5, "ts":1718093281946326, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/test.c" }}
  2687. ,{ "pid":12345, "tid":5, "ts":1718093281946503, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2688. ,{ "pid":12345, "tid":5, "ts":1718093281946576, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/leak_test.c" }}
  2689. ,{ "pid":12345, "tid":5, "ts":1718093281946575, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/leak_test.c" }}
  2690. ,{ "pid":12345, "tid":5, "ts":1718093281946662, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2691. ,{ "pid":12345, "tid":5, "ts":1718093281946767, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/README.md" }}
  2692. ,{ "pid":12345, "tid":5, "ts":1718093281946857, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2693. ,{ "pid":12345, "tid":5, "ts":1718093281946935, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/obj_map.c" }}
  2694. ,{ "pid":12345, "tid":5, "ts":1718093281946934, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/obj_map.c" }}
  2695. ,{ "pid":12345, "tid":5, "ts":1718093281947004, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2696. ,{ "pid":12345, "tid":5, "ts":1718093281947093, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mach_dep.c" }}
  2697. ,{ "pid":12345, "tid":5, "ts":1718093281947091, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mach_dep.c" }}
  2698. ,{ "pid":12345, "tid":5, "ts":1718093281947180, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2699. ,{ "pid":12345, "tid":5, "ts":1718093281947268, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/read_ordered.h" }}
  2700. ,{ "pid":12345, "tid":5, "ts":1718093281947266, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/read_ordered.h" }}
  2701. ,{ "pid":12345, "tid":5, "ts":1718093281947334, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2702. ,{ "pid":12345, "tid":5, "ts":1718093281947416, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_load.h" }}
  2703. ,{ "pid":12345, "tid":5, "ts":1718093281947414, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_atomic_load.h" }}
  2704. ,{ "pid":12345, "tid":5, "ts":1718093281947474, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2705. ,{ "pid":12345, "tid":5, "ts":1718093281947561, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/double_atomic_load_store.h" }}
  2706. ,{ "pid":12345, "tid":5, "ts":1718093281947559, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/double_atomic_load_store.h" }}
  2707. ,{ "pid":12345, "tid":5, "ts":1718093281947617, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2708. ,{ "pid":12345, "tid":5, "ts":1718093281947700, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/icc/ia64.h" }}
  2709. ,{ "pid":12345, "tid":5, "ts":1718093281947698, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/icc/ia64.h" }}
  2710. ,{ "pid":12345, "tid":5, "ts":1718093281947759, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2711. ,{ "pid":12345, "tid":5, "ts":1718093281947834, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sparc.h" }}
  2712. ,{ "pid":12345, "tid":5, "ts":1718093281947832, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/sparc.h" }}
  2713. ,{ "pid":12345, "tid":5, "ts":1718093281947968, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/ia64.h" }}
  2714. ,{ "pid":12345, "tid":5, "ts":1718093281947966, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/ia64.h" }}
  2715. ,{ "pid":12345, "tid":5, "ts":1718093281948049, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic.h" }}
  2716. ,{ "pid":12345, "tid":5, "ts":1718093281948047, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic.h" }}
  2717. ,{ "pid":12345, "tid":5, "ts":1718093281948108, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2718. ,{ "pid":12345, "tid":5, "ts":1718093281948196, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/aarch64.h" }}
  2719. ,{ "pid":12345, "tid":5, "ts":1718093281948185, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/aarch64.h" }}
  2720. ,{ "pid":12345, "tid":5, "ts":1718093281948271, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2721. ,{ "pid":12345, "tid":5, "ts":1718093281948364, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/generalize.h" }}
  2722. ,{ "pid":12345, "tid":5, "ts":1718093281948362, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/generalize.h" }}
  2723. ,{ "pid":12345, "tid":5, "ts":1718093281948658, "dur":241, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.TextCoreTextEngineModule.dll" }}
  2724. ,{ "pid":12345, "tid":5, "ts":1718093281948656, "dur":478, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreTextEngineModule-FeaturesChecked.txt" }}
  2725. ,{ "pid":12345, "tid":5, "ts":1718093281949135, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2726. ,{ "pid":12345, "tid":5, "ts":1718093281949220, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.AppleCore.dll" }}
  2727. ,{ "pid":12345, "tid":5, "ts":1718093281949424, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Core.dll" }}
  2728. ,{ "pid":12345, "tid":5, "ts":1718093281949527, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.VisualStudio.dll" }}
  2729. ,{ "pid":12345, "tid":5, "ts":1718093281949626, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Toolchain.Xcode.dll" }}
  2730. ,{ "pid":12345, "tid":5, "ts":1718093281949705, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Tools.dll" }}
  2731. ,{ "pid":12345, "tid":5, "ts":1718093281949816, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.VisualStudioSolution.dll" }}
  2732. ,{ "pid":12345, "tid":5, "ts":1718093281949218, "dur":762, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.AppleCore-FeaturesChecked.txt" }}
  2733. ,{ "pid":12345, "tid":5, "ts":1718093281950025, "dur":371, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Core.dll" }}
  2734. ,{ "pid":12345, "tid":5, "ts":1718093281950461, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  2735. ,{ "pid":12345, "tid":5, "ts":1718093281950675, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll" }}
  2736. ,{ "pid":12345, "tid":5, "ts":1718093281950757, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.pdb" }}
  2737. ,{ "pid":12345, "tid":5, "ts":1718093281950024, "dur":822, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Core-FeaturesChecked.txt" }}
  2738. ,{ "pid":12345, "tid":5, "ts":1718093281950847, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2739. ,{ "pid":12345, "tid":5, "ts":1718093281950958, "dur":537, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/I18N.CJK.dll" }}
  2740. ,{ "pid":12345, "tid":5, "ts":1718093281950955, "dur":653, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N.CJK-FeaturesChecked.txt" }}
  2741. ,{ "pid":12345, "tid":5, "ts":1718093281951632, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.InternalAPIEngineBridge.001-FeaturesChecked.txt" }}
  2742. ,{ "pid":12345, "tid":5, "ts":1718093281951803, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/AppleAuth-FeaturesChecked.txt" }}
  2743. ,{ "pid":12345, "tid":5, "ts":1718093281951973, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Physics2DModule.dll" }}
  2744. ,{ "pid":12345, "tid":5, "ts":1718093281951971, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Physics2DModule-FeaturesChecked.txt" }}
  2745. ,{ "pid":12345, "tid":5, "ts":1718093281952165, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.Security.dll" }}
  2746. ,{ "pid":12345, "tid":5, "ts":1718093281952163, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Security-FeaturesChecked.txt" }}
  2747. ,{ "pid":12345, "tid":5, "ts":1718093281952434, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.TextRenderingModule.dll" }}
  2748. ,{ "pid":12345, "tid":5, "ts":1718093281952599, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.pdb" }}
  2749. ,{ "pid":12345, "tid":5, "ts":1718093281952431, "dur":336, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextRenderingModule-FeaturesChecked.txt" }}
  2750. ,{ "pid":12345, "tid":5, "ts":1718093281952794, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Threading.dll" }}
  2751. ,{ "pid":12345, "tid":5, "ts":1718093281952793, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Threading-FeaturesChecked.txt" }}
  2752. ,{ "pid":12345, "tid":5, "ts":1718093281953011, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Telemetry.dll" }}
  2753. ,{ "pid":12345, "tid":5, "ts":1718093281953009, "dur":284, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Telemetry-FeaturesChecked.txt" }}
  2754. ,{ "pid":12345, "tid":5, "ts":1718093281953319, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.2D.Animation.Runtime.dll" }}
  2755. ,{ "pid":12345, "tid":5, "ts":1718093281953318, "dur":232, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.2D.Animation.Runtime-FeaturesChecked.txt" }}
  2756. ,{ "pid":12345, "tid":5, "ts":1718093281953575, "dur":326, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UI.dll" }}
  2757. ,{ "pid":12345, "tid":5, "ts":1718093281953574, "dur":427, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UI-FeaturesChecked.txt" }}
  2758. ,{ "pid":12345, "tid":5, "ts":1718093281954026, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.dll" }}
  2759. ,{ "pid":12345, "tid":5, "ts":1718093281954025, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing-FeaturesChecked.txt" }}
  2760. ,{ "pid":12345, "tid":5, "ts":1718093281954232, "dur":954, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Xml.dll" }}
  2761. ,{ "pid":12345, "tid":5, "ts":1718093281954231, "dur":1086, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Xml-FeaturesChecked.txt" }}
  2762. ,{ "pid":12345, "tid":5, "ts":1718093281955354, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.GameCenterModule.dll" }}
  2763. ,{ "pid":12345, "tid":5, "ts":1718093281955353, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.GameCenterModule-FeaturesChecked.txt" }}
  2764. ,{ "pid":12345, "tid":5, "ts":1718093281955521, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Internal-FeaturesChecked.txt" }}
  2765. ,{ "pid":12345, "tid":5, "ts":1718093281955622, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.Apple-FeaturesChecked.txt" }}
  2766. ,{ "pid":12345, "tid":5, "ts":1718093281955722, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Collections-FeaturesChecked.txt" }}
  2767. ,{ "pid":12345, "tid":5, "ts":1718093281955824, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.TextMeshPro-FeaturesChecked.txt" }}
  2768. ,{ "pid":12345, "tid":5, "ts":1718093281955954, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Mathematics-FeaturesChecked.txt" }}
  2769. ,{ "pid":12345, "tid":5, "ts":1718093281956036, "dur":266, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2770. ,{ "pid":12345, "tid":5, "ts":1718093281956303, "dur":84, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Mathematics-FeaturesChecked.txt" }}
  2771. ,{ "pid":12345, "tid":5, "ts":1718093281956400, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"GenerateNativePluginsForAssemblies Library/Bee/artifacts/iOS/AsyncPluginsFromLinker" }}
  2772. ,{ "pid":12345, "tid":5, "ts":1718093281959148, "dur":11450806, "ph":"X", "name": "GenerateNativePluginsForAssemblies", "args": { "detail":"Library/Bee/artifacts/iOS/AsyncPluginsFromLinker" }}
  2773. ,{ "pid":12345, "tid":5, "ts":1718093293410178, "dur":611, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2774. ,{ "pid":12345, "tid":6, "ts":1718093281795587, "dur":83511, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  2775. ,{ "pid":12345, "tid":6, "ts":1718093281879102, "dur":989, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2776. ,{ "pid":12345, "tid":6, "ts":1718093281880091, "dur":1050, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2777. ,{ "pid":12345, "tid":6, "ts":1718093281881142, "dur":960, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2778. ,{ "pid":12345, "tid":6, "ts":1718093281882103, "dur":965, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2779. ,{ "pid":12345, "tid":6, "ts":1718093281883069, "dur":1095, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  2780. ,{ "pid":12345, "tid":6, "ts":1718093281884164, "dur":22505, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  2781. ,{ "pid":12345, "tid":6, "ts":1718093281906699, "dur":72, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/GoogleMobileAds.Core-FeaturesChecked.txt_6k95.info" }}
  2782. ,{ "pid":12345, "tid":6, "ts":1718093281906787, "dur":51, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.TextCoreFontEngineModule-FeaturesChecked.txt_u5c4.info" }}
  2783. ,{ "pid":12345, "tid":6, "ts":1718093281906940, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2784. ,{ "pid":12345, "tid":6, "ts":1718093281907046, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2785. ,{ "pid":12345, "tid":6, "ts":1718093281907120, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2786. ,{ "pid":12345, "tid":6, "ts":1718093281907244, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2787. ,{ "pid":12345, "tid":6, "ts":1718093281907366, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2788. ,{ "pid":12345, "tid":6, "ts":1718093281907474, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2789. ,{ "pid":12345, "tid":6, "ts":1718093281907667, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2790. ,{ "pid":12345, "tid":6, "ts":1718093281907820, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2791. ,{ "pid":12345, "tid":6, "ts":1718093281907908, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2792. ,{ "pid":12345, "tid":6, "ts":1718093281908068, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2793. ,{ "pid":12345, "tid":6, "ts":1718093281908215, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2794. ,{ "pid":12345, "tid":6, "ts":1718093281908278, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowCompletionState.h" }}
  2795. ,{ "pid":12345, "tid":6, "ts":1718093281908379, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftinterface" }}
  2796. ,{ "pid":12345, "tid":6, "ts":1718093281908489, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2797. ,{ "pid":12345, "tid":6, "ts":1718093281908601, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64.swiftinterface" }}
  2798. ,{ "pid":12345, "tid":6, "ts":1718093281908766, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2799. ,{ "pid":12345, "tid":6, "ts":1718093281908945, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm.swiftmodule" }}
  2800. ,{ "pid":12345, "tid":6, "ts":1718093281909017, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2801. ,{ "pid":12345, "tid":6, "ts":1718093281909117, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasingDelegate.h" }}
  2802. ,{ "pid":12345, "tid":6, "ts":1718093281909115, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVUnityPurchasingDelegate.h" }}
  2803. ,{ "pid":12345, "tid":6, "ts":1718093281909219, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2804. ,{ "pid":12345, "tid":6, "ts":1718093281909374, "dur":183, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UPURStore.h" }}
  2805. ,{ "pid":12345, "tid":6, "ts":1718093281909373, "dur":185, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UPURStore.h" }}
  2806. ,{ "pid":12345, "tid":6, "ts":1718093281909558, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2807. ,{ "pid":12345, "tid":6, "ts":1718093281909723, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAnalytics.h" }}
  2808. ,{ "pid":12345, "tid":6, "ts":1718093281909722, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAnalytics.h" }}
  2809. ,{ "pid":12345, "tid":6, "ts":1718093281909857, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2810. ,{ "pid":12345, "tid":6, "ts":1718093281909991, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationError.h" }}
  2811. ,{ "pid":12345, "tid":6, "ts":1718093281909991, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsInitializationError.h" }}
  2812. ,{ "pid":12345, "tid":6, "ts":1718093281910105, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2813. ,{ "pid":12345, "tid":6, "ts":1718093281910251, "dur":244, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegateUtil.h" }}
  2814. ,{ "pid":12345, "tid":6, "ts":1718093281910250, "dur":246, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsDelegateUtil.h" }}
  2815. ,{ "pid":12345, "tid":6, "ts":1718093281910497, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2816. ,{ "pid":12345, "tid":6, "ts":1718093281910625, "dur":199, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  2817. ,{ "pid":12345, "tid":6, "ts":1718093281910624, "dur":216, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONPromoMetaData.h" }}
  2818. ,{ "pid":12345, "tid":6, "ts":1718093281910840, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2819. ,{ "pid":12345, "tid":6, "ts":1718093281910970, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UANAApiAnalytics.h" }}
  2820. ,{ "pid":12345, "tid":6, "ts":1718093281910969, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UANAApiAnalytics.h" }}
  2821. ,{ "pid":12345, "tid":6, "ts":1718093281911061, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2822. ,{ "pid":12345, "tid":6, "ts":1718093281911134, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSDictionaryConvertible.h" }}
  2823. ,{ "pid":12345, "tid":6, "ts":1718093281911134, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSDictionaryConvertible.h" }}
  2824. ,{ "pid":12345, "tid":6, "ts":1718093281911222, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2825. ,{ "pid":12345, "tid":6, "ts":1718093281911319, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/VmMethod.h" }}
  2826. ,{ "pid":12345, "tid":6, "ts":1718093281911318, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/VmMethod.h" }}
  2827. ,{ "pid":12345, "tid":6, "ts":1718093281911409, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2828. ,{ "pid":12345, "tid":6, "ts":1718093281911474, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.h" }}
  2829. ,{ "pid":12345, "tid":6, "ts":1718093281911473, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System/MathF.h" }}
  2830. ,{ "pid":12345, "tid":6, "ts":1718093281911575, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2831. ,{ "pid":12345, "tid":6, "ts":1718093281911654, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Finally.h" }}
  2832. ,{ "pid":12345, "tid":6, "ts":1718093281911652, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Finally.h" }}
  2833. ,{ "pid":12345, "tid":6, "ts":1718093281911778, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/BlobReader.h" }}
  2834. ,{ "pid":12345, "tid":6, "ts":1718093281911776, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/BlobReader.h" }}
  2835. ,{ "pid":12345, "tid":6, "ts":1718093281911904, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2836. ,{ "pid":12345, "tid":6, "ts":1718093281911989, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ThreadSafeFreeList.h" }}
  2837. ,{ "pid":12345, "tid":6, "ts":1718093281911988, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ThreadSafeFreeList.h" }}
  2838. ,{ "pid":12345, "tid":6, "ts":1718093281912123, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2839. ,{ "pid":12345, "tid":6, "ts":1718093281912384, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/PathUtils.h" }}
  2840. ,{ "pid":12345, "tid":6, "ts":1718093281912381, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/PathUtils.h" }}
  2841. ,{ "pid":12345, "tid":6, "ts":1718093281912451, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2842. ,{ "pid":12345, "tid":6, "ts":1718093281912521, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryUtils.h" }}
  2843. ,{ "pid":12345, "tid":6, "ts":1718093281912520, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryUtils.h" }}
  2844. ,{ "pid":12345, "tid":6, "ts":1718093281912624, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2845. ,{ "pid":12345, "tid":6, "ts":1718093281912692, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPool.cpp" }}
  2846. ,{ "pid":12345, "tid":6, "ts":1718093281912688, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPool.cpp" }}
  2847. ,{ "pid":12345, "tid":6, "ts":1718093281912800, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2848. ,{ "pid":12345, "tid":6, "ts":1718093281912945, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MarshalingUtils.h" }}
  2849. ,{ "pid":12345, "tid":6, "ts":1718093281912930, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MarshalingUtils.h" }}
  2850. ,{ "pid":12345, "tid":6, "ts":1718093281913051, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2851. ,{ "pid":12345, "tid":6, "ts":1718093281913130, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Il2CppHashSet.h" }}
  2852. ,{ "pid":12345, "tid":6, "ts":1718093281913129, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Il2CppHashSet.h" }}
  2853. ,{ "pid":12345, "tid":6, "ts":1718093281913191, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2854. ,{ "pid":12345, "tid":6, "ts":1718093281913311, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/ExtendedAtomicTypes.h" }}
  2855. ,{ "pid":12345, "tid":6, "ts":1718093281913309, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/ExtendedAtomicTypes.h" }}
  2856. ,{ "pid":12345, "tid":6, "ts":1718093281913418, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2857. ,{ "pid":12345, "tid":6, "ts":1718093281913548, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/DirectoryUtils.h" }}
  2858. ,{ "pid":12345, "tid":6, "ts":1718093281913547, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/DirectoryUtils.h" }}
  2859. ,{ "pid":12345, "tid":6, "ts":1718093281913613, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2860. ,{ "pid":12345, "tid":6, "ts":1718093281913776, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2861. ,{ "pid":12345, "tid":6, "ts":1718093281913865, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.cpp" }}
  2862. ,{ "pid":12345, "tid":6, "ts":1718093281913864, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiWinRTEmulation.cpp" }}
  2863. ,{ "pid":12345, "tid":6, "ts":1718093281913921, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2864. ,{ "pid":12345, "tid":6, "ts":1718093281913992, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/ReferenceCounter.h" }}
  2865. ,{ "pid":12345, "tid":6, "ts":1718093281913991, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/ReferenceCounter.h" }}
  2866. ,{ "pid":12345, "tid":6, "ts":1718093281914057, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2867. ,{ "pid":12345, "tid":6, "ts":1718093281914158, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2868. ,{ "pid":12345, "tid":6, "ts":1718093281914276, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.cpp" }}
  2869. ,{ "pid":12345, "tid":6, "ts":1718093281914275, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.cpp" }}
  2870. ,{ "pid":12345, "tid":6, "ts":1718093281914343, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2871. ,{ "pid":12345, "tid":6, "ts":1718093281914404, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Time.cpp" }}
  2872. ,{ "pid":12345, "tid":6, "ts":1718093281914402, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Time.cpp" }}
  2873. ,{ "pid":12345, "tid":6, "ts":1718093281914463, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2874. ,{ "pid":12345, "tid":6, "ts":1718093281914578, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SynchronizationContext.cpp" }}
  2875. ,{ "pid":12345, "tid":6, "ts":1718093281914576, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SynchronizationContext.cpp" }}
  2876. ,{ "pid":12345, "tid":6, "ts":1718093281914652, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2877. ,{ "pid":12345, "tid":6, "ts":1718093281914765, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2878. ,{ "pid":12345, "tid":6, "ts":1718093281914873, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MarshalStringAlloc.cpp" }}
  2879. ,{ "pid":12345, "tid":6, "ts":1718093281914871, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MarshalStringAlloc.cpp" }}
  2880. ,{ "pid":12345, "tid":6, "ts":1718093281914996, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2881. ,{ "pid":12345, "tid":6, "ts":1718093281915136, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/File.cpp" }}
  2882. ,{ "pid":12345, "tid":6, "ts":1718093281915135, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/File.cpp" }}
  2883. ,{ "pid":12345, "tid":6, "ts":1718093281915189, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2884. ,{ "pid":12345, "tid":6, "ts":1718093281915310, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Directory.cpp" }}
  2885. ,{ "pid":12345, "tid":6, "ts":1718093281915309, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Directory.cpp" }}
  2886. ,{ "pid":12345, "tid":6, "ts":1718093281915362, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2887. ,{ "pid":12345, "tid":6, "ts":1718093281915461, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Console.cpp" }}
  2888. ,{ "pid":12345, "tid":6, "ts":1718093281915459, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Console.cpp" }}
  2889. ,{ "pid":12345, "tid":6, "ts":1718093281915557, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2890. ,{ "pid":12345, "tid":6, "ts":1718093281915652, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Time.h" }}
  2891. ,{ "pid":12345, "tid":6, "ts":1718093281915651, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Time.h" }}
  2892. ,{ "pid":12345, "tid":6, "ts":1718093281915736, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2893. ,{ "pid":12345, "tid":6, "ts":1718093281915813, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Std/ThreadImpl.h" }}
  2894. ,{ "pid":12345, "tid":6, "ts":1718093281915812, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Std/ThreadImpl.h" }}
  2895. ,{ "pid":12345, "tid":6, "ts":1718093281915882, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2896. ,{ "pid":12345, "tid":6, "ts":1718093281915974, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Socket.cpp" }}
  2897. ,{ "pid":12345, "tid":6, "ts":1718093281915973, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Socket.cpp" }}
  2898. ,{ "pid":12345, "tid":6, "ts":1718093281916080, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2899. ,{ "pid":12345, "tid":6, "ts":1718093281916156, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Process.h" }}
  2900. ,{ "pid":12345, "tid":6, "ts":1718093281916155, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Process.h" }}
  2901. ,{ "pid":12345, "tid":6, "ts":1718093281916277, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2902. ,{ "pid":12345, "tid":6, "ts":1718093281916339, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadImpl.cpp" }}
  2903. ,{ "pid":12345, "tid":6, "ts":1718093281916338, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadImpl.cpp" }}
  2904. ,{ "pid":12345, "tid":6, "ts":1718093281916400, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2905. ,{ "pid":12345, "tid":6, "ts":1718093281916513, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/SocketImpl.cpp" }}
  2906. ,{ "pid":12345, "tid":6, "ts":1718093281916512, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/SocketImpl.cpp" }}
  2907. ,{ "pid":12345, "tid":6, "ts":1718093281916582, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2908. ,{ "pid":12345, "tid":6, "ts":1718093281916662, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/NetworkAccessHandlerStub.h" }}
  2909. ,{ "pid":12345, "tid":6, "ts":1718093281916661, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/NetworkAccessHandlerStub.h" }}
  2910. ,{ "pid":12345, "tid":6, "ts":1718093281916724, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2911. ,{ "pid":12345, "tid":6, "ts":1718093281916843, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/LibraryLoader.cpp" }}
  2912. ,{ "pid":12345, "tid":6, "ts":1718093281916842, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/LibraryLoader.cpp" }}
  2913. ,{ "pid":12345, "tid":6, "ts":1718093281916931, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2914. ,{ "pid":12345, "tid":6, "ts":1718093281917006, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/File.cpp" }}
  2915. ,{ "pid":12345, "tid":6, "ts":1718093281917005, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/File.cpp" }}
  2916. ,{ "pid":12345, "tid":6, "ts":1718093281917133, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2917. ,{ "pid":12345, "tid":6, "ts":1718093281917325, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2918. ,{ "pid":12345, "tid":6, "ts":1718093281917437, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Path.h" }}
  2919. ,{ "pid":12345, "tid":6, "ts":1718093281917435, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Path.h" }}
  2920. ,{ "pid":12345, "tid":6, "ts":1718093281917488, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2921. ,{ "pid":12345, "tid":6, "ts":1718093281917556, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/pal_darwin.h" }}
  2922. ,{ "pid":12345, "tid":6, "ts":1718093281917555, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/pal_darwin.h" }}
  2923. ,{ "pid":12345, "tid":6, "ts":1718093281917675, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Messages.cpp" }}
  2924. ,{ "pid":12345, "tid":6, "ts":1718093281917674, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Messages.cpp" }}
  2925. ,{ "pid":12345, "tid":6, "ts":1718093281917783, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2926. ,{ "pid":12345, "tid":6, "ts":1718093281917902, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LibraryLoader.h" }}
  2927. ,{ "pid":12345, "tid":6, "ts":1718093281917901, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LibraryLoader.h" }}
  2928. ,{ "pid":12345, "tid":6, "ts":1718093281917997, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2929. ,{ "pid":12345, "tid":6, "ts":1718093281918084, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Image.cpp" }}
  2930. ,{ "pid":12345, "tid":6, "ts":1718093281918083, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Image.cpp" }}
  2931. ,{ "pid":12345, "tid":6, "ts":1718093281918148, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2932. ,{ "pid":12345, "tid":6, "ts":1718093281918217, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SystemCertificates.cpp" }}
  2933. ,{ "pid":12345, "tid":6, "ts":1718093281918216, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SystemCertificates.cpp" }}
  2934. ,{ "pid":12345, "tid":6, "ts":1718093281918288, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2935. ,{ "pid":12345, "tid":6, "ts":1718093281918375, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MemoryMappedFile.cpp" }}
  2936. ,{ "pid":12345, "tid":6, "ts":1718093281918374, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MemoryMappedFile.cpp" }}
  2937. ,{ "pid":12345, "tid":6, "ts":1718093281918457, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2938. ,{ "pid":12345, "tid":6, "ts":1718093281918585, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/EventImpl.h" }}
  2939. ,{ "pid":12345, "tid":6, "ts":1718093281918584, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/EventImpl.h" }}
  2940. ,{ "pid":12345, "tid":6, "ts":1718093281918659, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2941. ,{ "pid":12345, "tid":6, "ts":1718093281918725, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/COM.cpp" }}
  2942. ,{ "pid":12345, "tid":6, "ts":1718093281918724, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/COM.cpp" }}
  2943. ,{ "pid":12345, "tid":6, "ts":1718093281918807, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2944. ,{ "pid":12345, "tid":6, "ts":1718093281918917, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLock.h" }}
  2945. ,{ "pid":12345, "tid":6, "ts":1718093281918902, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLock.h" }}
  2946. ,{ "pid":12345, "tid":6, "ts":1718093281918980, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2947. ,{ "pid":12345, "tid":6, "ts":1718093281919073, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Error.cpp" }}
  2948. ,{ "pid":12345, "tid":6, "ts":1718093281919072, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Error.cpp" }}
  2949. ,{ "pid":12345, "tid":6, "ts":1718093281919141, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2950. ,{ "pid":12345, "tid":6, "ts":1718093281919239, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Debug.h" }}
  2951. ,{ "pid":12345, "tid":6, "ts":1718093281919237, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Debug.h" }}
  2952. ,{ "pid":12345, "tid":6, "ts":1718093281919366, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ConsoleExtension.h" }}
  2953. ,{ "pid":12345, "tid":6, "ts":1718093281919366, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ConsoleExtension.h" }}
  2954. ,{ "pid":12345, "tid":6, "ts":1718093281919476, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2955. ,{ "pid":12345, "tid":6, "ts":1718093281919565, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_time.cpp" }}
  2956. ,{ "pid":12345, "tid":6, "ts":1718093281919564, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_time.cpp" }}
  2957. ,{ "pid":12345, "tid":6, "ts":1718093281919631, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2958. ,{ "pid":12345, "tid":6, "ts":1718093281919785, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_mirror_structs.h" }}
  2959. ,{ "pid":12345, "tid":6, "ts":1718093281919784, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_mirror_structs.h" }}
  2960. ,{ "pid":12345, "tid":6, "ts":1718093281919839, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2961. ,{ "pid":12345, "tid":6, "ts":1718093281919975, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/encode.h" }}
  2962. ,{ "pid":12345, "tid":6, "ts":1718093281919973, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/encode.h" }}
  2963. ,{ "pid":12345, "tid":6, "ts":1718093281920061, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2964. ,{ "pid":12345, "tid":6, "ts":1718093281920121, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.h" }}
  2965. ,{ "pid":12345, "tid":6, "ts":1718093281920119, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/static_dict.h" }}
  2966. ,{ "pid":12345, "tid":6, "ts":1718093281920197, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2967. ,{ "pid":12345, "tid":6, "ts":1718093281920357, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.h" }}
  2968. ,{ "pid":12345, "tid":6, "ts":1718093281920356, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock.h" }}
  2969. ,{ "pid":12345, "tid":6, "ts":1718093281920416, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2970. ,{ "pid":12345, "tid":6, "ts":1718093281920508, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.c" }}
  2971. ,{ "pid":12345, "tid":6, "ts":1718093281920506, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/literal_cost.c" }}
  2972. ,{ "pid":12345, "tid":6, "ts":1718093281920618, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2973. ,{ "pid":12345, "tid":6, "ts":1718093281920723, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_inc.h" }}
  2974. ,{ "pid":12345, "tid":6, "ts":1718093281920722, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_inc.h" }}
  2975. ,{ "pid":12345, "tid":6, "ts":1718093281920882, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/find_match_length.h" }}
  2976. ,{ "pid":12345, "tid":6, "ts":1718093281920880, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/find_match_length.h" }}
  2977. ,{ "pid":12345, "tid":6, "ts":1718093281921009, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2978. ,{ "pid":12345, "tid":6, "ts":1718093281921097, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.h" }}
  2979. ,{ "pid":12345, "tid":6, "ts":1718093281921095, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.h" }}
  2980. ,{ "pid":12345, "tid":6, "ts":1718093281921213, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2981. ,{ "pid":12345, "tid":6, "ts":1718093281921315, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.c" }}
  2982. ,{ "pid":12345, "tid":6, "ts":1718093281921314, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment_two_pass.c" }}
  2983. ,{ "pid":12345, "tid":6, "ts":1718093281921373, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2984. ,{ "pid":12345, "tid":6, "ts":1718093281921439, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.h" }}
  2985. ,{ "pid":12345, "tid":6, "ts":1718093281921437, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.h" }}
  2986. ,{ "pid":12345, "tid":6, "ts":1718093281921506, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2987. ,{ "pid":12345, "tid":6, "ts":1718093281921634, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.c" }}
  2988. ,{ "pid":12345, "tid":6, "ts":1718093281921633, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.c" }}
  2989. ,{ "pid":12345, "tid":6, "ts":1718093281921700, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2990. ,{ "pid":12345, "tid":6, "ts":1718093281921779, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.h" }}
  2991. ,{ "pid":12345, "tid":6, "ts":1718093281921778, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.h" }}
  2992. ,{ "pid":12345, "tid":6, "ts":1718093281921857, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2993. ,{ "pid":12345, "tid":6, "ts":1718093281921935, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/prefix.h" }}
  2994. ,{ "pid":12345, "tid":6, "ts":1718093281921934, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/prefix.h" }}
  2995. ,{ "pid":12345, "tid":6, "ts":1718093281922050, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2996. ,{ "pid":12345, "tid":6, "ts":1718093281922154, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/version.h" }}
  2997. ,{ "pid":12345, "tid":6, "ts":1718093281922153, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/version.h" }}
  2998. ,{ "pid":12345, "tid":6, "ts":1718093281922222, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  2999. ,{ "pid":12345, "tid":6, "ts":1718093281922304, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.c" }}
  3000. ,{ "pid":12345, "tid":6, "ts":1718093281922302, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.c" }}
  3001. ,{ "pid":12345, "tid":6, "ts":1718093281922424, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3002. ,{ "pid":12345, "tid":6, "ts":1718093281922546, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Time.cpp" }}
  3003. ,{ "pid":12345, "tid":6, "ts":1718093281922545, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Time.cpp" }}
  3004. ,{ "pid":12345, "tid":6, "ts":1718093281922661, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3005. ,{ "pid":12345, "tid":6, "ts":1718093281922727, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Socket-c-api.h" }}
  3006. ,{ "pid":12345, "tid":6, "ts":1718093281922726, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Socket-c-api.h" }}
  3007. ,{ "pid":12345, "tid":6, "ts":1718093281922866, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3008. ,{ "pid":12345, "tid":6, "ts":1718093281923024, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/il2cpp-config-api-platforms.h" }}
  3009. ,{ "pid":12345, "tid":6, "ts":1718093281923023, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/il2cpp-config-api-platforms.h" }}
  3010. ,{ "pid":12345, "tid":6, "ts":1718093281923174, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Error.cpp" }}
  3011. ,{ "pid":12345, "tid":6, "ts":1718093281923172, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Error.cpp" }}
  3012. ,{ "pid":12345, "tid":6, "ts":1718093281923235, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3013. ,{ "pid":12345, "tid":6, "ts":1718093281923344, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Console.cpp" }}
  3014. ,{ "pid":12345, "tid":6, "ts":1718093281923343, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Console.cpp" }}
  3015. ,{ "pid":12345, "tid":6, "ts":1718093281923429, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3016. ,{ "pid":12345, "tid":6, "ts":1718093281923544, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/pal_android.h" }}
  3017. ,{ "pid":12345, "tid":6, "ts":1718093281923543, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/pal_android.h" }}
  3018. ,{ "pid":12345, "tid":6, "ts":1718093281923610, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3019. ,{ "pid":12345, "tid":6, "ts":1718093281923714, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3020. ,{ "pid":12345, "tid":6, "ts":1718093281923792, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io.h" }}
  3021. ,{ "pid":12345, "tid":6, "ts":1718093281923790, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io.h" }}
  3022. ,{ "pid":12345, "tid":6, "ts":1718093281923855, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3023. ,{ "pid":12345, "tid":6, "ts":1718093281923941, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/MonoPosixHelper.cpp" }}
  3024. ,{ "pid":12345, "tid":6, "ts":1718093281923926, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/MonoPosixHelper.cpp" }}
  3025. ,{ "pid":12345, "tid":6, "ts":1718093281924013, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3026. ,{ "pid":12345, "tid":6, "ts":1718093281924070, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeCompare.h" }}
  3027. ,{ "pid":12345, "tid":6, "ts":1718093281924069, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeCompare.h" }}
  3028. ,{ "pid":12345, "tid":6, "ts":1718093281924165, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3029. ,{ "pid":12345, "tid":6, "ts":1718093281924269, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstHash.h" }}
  3030. ,{ "pid":12345, "tid":6, "ts":1718093281924268, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstHash.h" }}
  3031. ,{ "pid":12345, "tid":6, "ts":1718093281924390, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3032. ,{ "pid":12345, "tid":6, "ts":1718093281924455, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.h" }}
  3033. ,{ "pid":12345, "tid":6, "ts":1718093281924510, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3034. ,{ "pid":12345, "tid":6, "ts":1718093281924585, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericSharing.h" }}
  3035. ,{ "pid":12345, "tid":6, "ts":1718093281924584, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.h" }}
  3036. ,{ "pid":12345, "tid":6, "ts":1718093281924654, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3037. ,{ "pid":12345, "tid":6, "ts":1718093281924778, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMetadata.cpp" }}
  3038. ,{ "pid":12345, "tid":6, "ts":1718093281924777, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMetadata.cpp" }}
  3039. ,{ "pid":12345, "tid":6, "ts":1718093281924848, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3040. ,{ "pid":12345, "tid":6, "ts":1718093281924995, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3041. ,{ "pid":12345, "tid":6, "ts":1718093281925115, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-tokentype.h" }}
  3042. ,{ "pid":12345, "tid":6, "ts":1718093281925114, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-tokentype.h" }}
  3043. ,{ "pid":12345, "tid":6, "ts":1718093281925202, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3044. ,{ "pid":12345, "tid":6, "ts":1718093281925359, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-metadata.h" }}
  3045. ,{ "pid":12345, "tid":6, "ts":1718093281925358, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-metadata.h" }}
  3046. ,{ "pid":12345, "tid":6, "ts":1718093281925440, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3047. ,{ "pid":12345, "tid":6, "ts":1718093281925502, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api.cpp" }}
  3048. ,{ "pid":12345, "tid":6, "ts":1718093281925501, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api.cpp" }}
  3049. ,{ "pid":12345, "tid":6, "ts":1718093281925623, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3050. ,{ "pid":12345, "tid":6, "ts":1718093281925701, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-benchmark-support.h" }}
  3051. ,{ "pid":12345, "tid":6, "ts":1718093281925700, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-benchmark-support.h" }}
  3052. ,{ "pid":12345, "tid":6, "ts":1718093281925819, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3053. ,{ "pid":12345, "tid":6, "ts":1718093281925889, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Threading/Semaphore.cpp" }}
  3054. ,{ "pid":12345, "tid":6, "ts":1718093281925887, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Threading/Semaphore.cpp" }}
  3055. ,{ "pid":12345, "tid":6, "ts":1718093281925976, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3056. ,{ "pid":12345, "tid":6, "ts":1718093281926094, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.h" }}
  3057. ,{ "pid":12345, "tid":6, "ts":1718093281926093, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/MacOsIPInterfaceProperties.h" }}
  3058. ,{ "pid":12345, "tid":6, "ts":1718093281926229, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3059. ,{ "pid":12345, "tid":6, "ts":1718093281926362, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.cpp" }}
  3060. ,{ "pid":12345, "tid":6, "ts":1718093281926361, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.cpp" }}
  3061. ,{ "pid":12345, "tid":6, "ts":1718093281926443, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3062. ,{ "pid":12345, "tid":6, "ts":1718093281926554, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.h" }}
  3063. ,{ "pid":12345, "tid":6, "ts":1718093281926553, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Mono.Net.Security/MonoTlsProviderFactory.h" }}
  3064. ,{ "pid":12345, "tid":6, "ts":1718093281926632, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3065. ,{ "pid":12345, "tid":6, "ts":1718093281926715, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ValueType.cpp" }}
  3066. ,{ "pid":12345, "tid":6, "ts":1718093281926714, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ValueType.cpp" }}
  3067. ,{ "pid":12345, "tid":6, "ts":1718093281926796, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3068. ,{ "pid":12345, "tid":6, "ts":1718093281926930, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.cpp" }}
  3069. ,{ "pid":12345, "tid":6, "ts":1718093281926929, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.cpp" }}
  3070. ,{ "pid":12345, "tid":6, "ts":1718093281927044, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3071. ,{ "pid":12345, "tid":6, "ts":1718093281927147, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.cpp" }}
  3072. ,{ "pid":12345, "tid":6, "ts":1718093281927146, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.cpp" }}
  3073. ,{ "pid":12345, "tid":6, "ts":1718093281927248, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3074. ,{ "pid":12345, "tid":6, "ts":1718093281927314, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.cpp" }}
  3075. ,{ "pid":12345, "tid":6, "ts":1718093281927312, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.cpp" }}
  3076. ,{ "pid":12345, "tid":6, "ts":1718093281927420, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3077. ,{ "pid":12345, "tid":6, "ts":1718093281927525, "dur":150, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Enum.h" }}
  3078. ,{ "pid":12345, "tid":6, "ts":1718093281927524, "dur":151, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Enum.h" }}
  3079. ,{ "pid":12345, "tid":6, "ts":1718093281927675, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3080. ,{ "pid":12345, "tid":6, "ts":1718093281927753, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.cpp" }}
  3081. ,{ "pid":12345, "tid":6, "ts":1718093281927752, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.cpp" }}
  3082. ,{ "pid":12345, "tid":6, "ts":1718093281927828, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3083. ,{ "pid":12345, "tid":6, "ts":1718093281927916, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Array.cpp" }}
  3084. ,{ "pid":12345, "tid":6, "ts":1718093281927915, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Array.cpp" }}
  3085. ,{ "pid":12345, "tid":6, "ts":1718093281928014, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3086. ,{ "pid":12345, "tid":6, "ts":1718093281928077, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Timer.h" }}
  3087. ,{ "pid":12345, "tid":6, "ts":1718093281928076, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Timer.h" }}
  3088. ,{ "pid":12345, "tid":6, "ts":1718093281928157, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3089. ,{ "pid":12345, "tid":6, "ts":1718093281928218, "dur":145, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.h" }}
  3090. ,{ "pid":12345, "tid":6, "ts":1718093281928217, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.h" }}
  3091. ,{ "pid":12345, "tid":6, "ts":1718093281928413, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.cpp" }}
  3092. ,{ "pid":12345, "tid":6, "ts":1718093281928412, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/InternalThread.cpp" }}
  3093. ,{ "pid":12345, "tid":6, "ts":1718093281928474, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3094. ,{ "pid":12345, "tid":6, "ts":1718093281928566, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.h" }}
  3095. ,{ "pid":12345, "tid":6, "ts":1718093281928564, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsImpersonationContext.h" }}
  3096. ,{ "pid":12345, "tid":6, "ts":1718093281928645, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3097. ,{ "pid":12345, "tid":6, "ts":1718093281928711, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.cpp" }}
  3098. ,{ "pid":12345, "tid":6, "ts":1718093281928710, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.cpp" }}
  3099. ,{ "pid":12345, "tid":6, "ts":1718093281928835, "dur":56, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Cryptography/RNGCryptoServiceProvider.cpp" }}
  3100. ,{ "pid":12345, "tid":6, "ts":1718093281928894, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.cpp" }}
  3101. ,{ "pid":12345, "tid":6, "ts":1718093281928892, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.cpp" }}
  3102. ,{ "pid":12345, "tid":6, "ts":1718093281928962, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3103. ,{ "pid":12345, "tid":6, "ts":1718093281929048, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.h" }}
  3104. ,{ "pid":12345, "tid":6, "ts":1718093281929045, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Activation/ActivationServices.h" }}
  3105. ,{ "pid":12345, "tid":6, "ts":1718093281929129, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3106. ,{ "pid":12345, "tid":6, "ts":1718093281929247, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.cpp" }}
  3107. ,{ "pid":12345, "tid":6, "ts":1718093281929245, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/GCHandle.cpp" }}
  3108. ,{ "pid":12345, "tid":6, "ts":1718093281929318, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3109. ,{ "pid":12345, "tid":6, "ts":1718093281929402, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.h" }}
  3110. ,{ "pid":12345, "tid":6, "ts":1718093281929400, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.h" }}
  3111. ,{ "pid":12345, "tid":6, "ts":1718093281929453, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3112. ,{ "pid":12345, "tid":6, "ts":1718093281929623, "dur":136, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.h" }}
  3113. ,{ "pid":12345, "tid":6, "ts":1718093281929622, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/MonoMethodInfo.h" }}
  3114. ,{ "pid":12345, "tid":6, "ts":1718093281929804, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.h" }}
  3115. ,{ "pid":12345, "tid":6, "ts":1718093281929803, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/FieldInfo.h" }}
  3116. ,{ "pid":12345, "tid":6, "ts":1718093281929884, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3117. ,{ "pid":12345, "tid":6, "ts":1718093281929993, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.cpp" }}
  3118. ,{ "pid":12345, "tid":6, "ts":1718093281929992, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/AssemblyName.cpp" }}
  3119. ,{ "pid":12345, "tid":6, "ts":1718093281930068, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3120. ,{ "pid":12345, "tid":6, "ts":1718093281930150, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.h" }}
  3121. ,{ "pid":12345, "tid":6, "ts":1718093281930149, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/DriveInfo.h" }}
  3122. ,{ "pid":12345, "tid":6, "ts":1718093281930232, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3123. ,{ "pid":12345, "tid":6, "ts":1718093281930315, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoInternalsNet_4_0.h" }}
  3124. ,{ "pid":12345, "tid":6, "ts":1718093281930314, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/Generated/CultureInfoInternalsNet_4_0.h" }}
  3125. ,{ "pid":12345, "tid":6, "ts":1718093281930388, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3126. ,{ "pid":12345, "tid":6, "ts":1718093281930489, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.h" }}
  3127. ,{ "pid":12345, "tid":6, "ts":1718093281930488, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CompareInfo.h" }}
  3128. ,{ "pid":12345, "tid":6, "ts":1718093281930570, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3129. ,{ "pid":12345, "tid":6, "ts":1718093281930626, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.cpp" }}
  3130. ,{ "pid":12345, "tid":6, "ts":1718093281930625, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/StackFrame.cpp" }}
  3131. ,{ "pid":12345, "tid":6, "ts":1718093281930706, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3132. ,{ "pid":12345, "tid":6, "ts":1718093281930788, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.h" }}
  3133. ,{ "pid":12345, "tid":6, "ts":1718093281930781, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.h" }}
  3134. ,{ "pid":12345, "tid":6, "ts":1718093281930869, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3135. ,{ "pid":12345, "tid":6, "ts":1718093281930958, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.cpp" }}
  3136. ,{ "pid":12345, "tid":6, "ts":1718093281930956, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.cpp" }}
  3137. ,{ "pid":12345, "tid":6, "ts":1718093281931036, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3138. ,{ "pid":12345, "tid":6, "ts":1718093281931095, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrierValidation.cpp" }}
  3139. ,{ "pid":12345, "tid":6, "ts":1718093281931094, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrierValidation.cpp" }}
  3140. ,{ "pid":12345, "tid":6, "ts":1718093281931200, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GarbageCollector.h" }}
  3141. ,{ "pid":12345, "tid":6, "ts":1718093281931199, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GarbageCollector.h" }}
  3142. ,{ "pid":12345, "tid":6, "ts":1718093281931284, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3143. ,{ "pid":12345, "tid":6, "ts":1718093281931386, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen.h" }}
  3144. ,{ "pid":12345, "tid":6, "ts":1718093281931385, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen.h" }}
  3145. ,{ "pid":12345, "tid":6, "ts":1718093281931468, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3146. ,{ "pid":12345, "tid":6, "ts":1718093281931603, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-common.h" }}
  3147. ,{ "pid":12345, "tid":6, "ts":1718093281931601, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-common.h" }}
  3148. ,{ "pid":12345, "tid":6, "ts":1718093281931680, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3149. ,{ "pid":12345, "tid":6, "ts":1718093281931754, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zconf.h" }}
  3150. ,{ "pid":12345, "tid":6, "ts":1718093281931753, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zconf.h" }}
  3151. ,{ "pid":12345, "tid":6, "ts":1718093281931830, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3152. ,{ "pid":12345, "tid":6, "ts":1718093281931911, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffixed.h" }}
  3153. ,{ "pid":12345, "tid":6, "ts":1718093281931909, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffixed.h" }}
  3154. ,{ "pid":12345, "tid":6, "ts":1718093281931976, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3155. ,{ "pid":12345, "tid":6, "ts":1718093281932060, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzguts.h" }}
  3156. ,{ "pid":12345, "tid":6, "ts":1718093281932059, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzguts.h" }}
  3157. ,{ "pid":12345, "tid":6, "ts":1718093281932125, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3158. ,{ "pid":12345, "tid":6, "ts":1718093281932224, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/adler32.c" }}
  3159. ,{ "pid":12345, "tid":6, "ts":1718093281932223, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/adler32.c" }}
  3160. ,{ "pid":12345, "tid":6, "ts":1718093281932295, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3161. ,{ "pid":12345, "tid":6, "ts":1718093281932360, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/xamarin_getifaddrs.c" }}
  3162. ,{ "pid":12345, "tid":6, "ts":1718093281932358, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/xamarin_getifaddrs.c" }}
  3163. ,{ "pid":12345, "tid":6, "ts":1718093281932454, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3164. ,{ "pid":12345, "tid":6, "ts":1718093281932567, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/ward.h" }}
  3165. ,{ "pid":12345, "tid":6, "ts":1718093281932567, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/ward.h" }}
  3166. ,{ "pid":12345, "tid":6, "ts":1718093281932653, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3167. ,{ "pid":12345, "tid":6, "ts":1718093281932723, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/strenc.c" }}
  3168. ,{ "pid":12345, "tid":6, "ts":1718093281932723, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/strenc.c" }}
  3169. ,{ "pid":12345, "tid":6, "ts":1718093281932785, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3170. ,{ "pid":12345, "tid":6, "ts":1718093281932855, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/os-event-unix.c" }}
  3171. ,{ "pid":12345, "tid":6, "ts":1718093281932854, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/os-event-unix.c" }}
  3172. ,{ "pid":12345, "tid":6, "ts":1718093281932943, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3173. ,{ "pid":12345, "tid":6, "ts":1718093281933029, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking-missing.c" }}
  3174. ,{ "pid":12345, "tid":6, "ts":1718093281933028, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking-missing.c" }}
  3175. ,{ "pid":12345, "tid":6, "ts":1718093281933119, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3176. ,{ "pid":12345, "tid":6, "ts":1718093281933201, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls.h" }}
  3177. ,{ "pid":12345, "tid":6, "ts":1718093281933200, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls.h" }}
  3178. ,{ "pid":12345, "tid":6, "ts":1718093281933275, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3179. ,{ "pid":12345, "tid":6, "ts":1718093281933361, "dur":727, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-unity.c" }}
  3180. ,{ "pid":12345, "tid":6, "ts":1718093281933360, "dur":729, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-unity.c" }}
  3181. ,{ "pid":12345, "tid":6, "ts":1718093281934090, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3182. ,{ "pid":12345, "tid":6, "ts":1718093281934189, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-coop.h" }}
  3183. ,{ "pid":12345, "tid":6, "ts":1718093281934188, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-coop.h" }}
  3184. ,{ "pid":12345, "tid":6, "ts":1718093281934313, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3185. ,{ "pid":12345, "tid":6, "ts":1718093281934400, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-stack-unwinding.h" }}
  3186. ,{ "pid":12345, "tid":6, "ts":1718093281934399, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-stack-unwinding.h" }}
  3187. ,{ "pid":12345, "tid":6, "ts":1718093281934477, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3188. ,{ "pid":12345, "tid":6, "ts":1718093281934563, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-property-hash.h" }}
  3189. ,{ "pid":12345, "tid":6, "ts":1718093281934562, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-property-hash.h" }}
  3190. ,{ "pid":12345, "tid":6, "ts":1718093281934658, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3191. ,{ "pid":12345, "tid":6, "ts":1718093281934740, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-path.h" }}
  3192. ,{ "pid":12345, "tid":6, "ts":1718093281934739, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-path.h" }}
  3193. ,{ "pid":12345, "tid":6, "ts":1718093281934826, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3194. ,{ "pid":12345, "tid":6, "ts":1718093281934914, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-mutex.h" }}
  3195. ,{ "pid":12345, "tid":6, "ts":1718093281934912, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-mutex.h" }}
  3196. ,{ "pid":12345, "tid":6, "ts":1718093281934988, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3197. ,{ "pid":12345, "tid":6, "ts":1718093281935063, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-windows.c" }}
  3198. ,{ "pid":12345, "tid":6, "ts":1718093281935062, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-windows.c" }}
  3199. ,{ "pid":12345, "tid":6, "ts":1718093281935155, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3200. ,{ "pid":12345, "tid":6, "ts":1718093281935227, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-math.c" }}
  3201. ,{ "pid":12345, "tid":6, "ts":1718093281935226, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-math.c" }}
  3202. ,{ "pid":12345, "tid":6, "ts":1718093281935292, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3203. ,{ "pid":12345, "tid":6, "ts":1718093281935375, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-posix.c" }}
  3204. ,{ "pid":12345, "tid":6, "ts":1718093281935373, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-posix.c" }}
  3205. ,{ "pid":12345, "tid":6, "ts":1718093281935437, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3206. ,{ "pid":12345, "tid":6, "ts":1718093281935524, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-io-portability.h" }}
  3207. ,{ "pid":12345, "tid":6, "ts":1718093281935523, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-io-portability.h" }}
  3208. ,{ "pid":12345, "tid":6, "ts":1718093281935603, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3209. ,{ "pid":12345, "tid":6, "ts":1718093281935687, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-vars.h" }}
  3210. ,{ "pid":12345, "tid":6, "ts":1718093281935686, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-vars.h" }}
  3211. ,{ "pid":12345, "tid":6, "ts":1718093281935746, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3212. ,{ "pid":12345, "tid":6, "ts":1718093281935842, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error.h" }}
  3213. ,{ "pid":12345, "tid":6, "ts":1718093281935841, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error.h" }}
  3214. ,{ "pid":12345, "tid":6, "ts":1718093281935955, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3215. ,{ "pid":12345, "tid":6, "ts":1718093281936077, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3216. ,{ "pid":12345, "tid":6, "ts":1718093281936149, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-darwin.c" }}
  3217. ,{ "pid":12345, "tid":6, "ts":1718093281936148, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-darwin.c" }}
  3218. ,{ "pid":12345, "tid":6, "ts":1718093281936214, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3219. ,{ "pid":12345, "tid":6, "ts":1718093281936310, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-context.c" }}
  3220. ,{ "pid":12345, "tid":6, "ts":1718093281936309, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-context.c" }}
  3221. ,{ "pid":12345, "tid":6, "ts":1718093281936389, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3222. ,{ "pid":12345, "tid":6, "ts":1718093281936505, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3223. ,{ "pid":12345, "tid":6, "ts":1718093281936614, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-queue.c" }}
  3224. ,{ "pid":12345, "tid":6, "ts":1718093281936612, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-queue.c" }}
  3225. ,{ "pid":12345, "tid":6, "ts":1718093281936695, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3226. ,{ "pid":12345, "tid":6, "ts":1718093281936803, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/json.c" }}
  3227. ,{ "pid":12345, "tid":6, "ts":1718093281936802, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/json.c" }}
  3228. ,{ "pid":12345, "tid":6, "ts":1718093281936874, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3229. ,{ "pid":12345, "tid":6, "ts":1718093281936945, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-dwarf.h" }}
  3230. ,{ "pid":12345, "tid":6, "ts":1718093281936944, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-dwarf.h" }}
  3231. ,{ "pid":12345, "tid":6, "ts":1718093281937015, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3232. ,{ "pid":12345, "tid":6, "ts":1718093281937123, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/atomic.h" }}
  3233. ,{ "pid":12345, "tid":6, "ts":1718093281937122, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/atomic.h" }}
  3234. ,{ "pid":12345, "tid":6, "ts":1718093281937186, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3235. ,{ "pid":12345, "tid":6, "ts":1718093281937271, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-split-nursery.c" }}
  3236. ,{ "pid":12345, "tid":6, "ts":1718093281937270, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-split-nursery.c" }}
  3237. ,{ "pid":12345, "tid":6, "ts":1718093281937342, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3238. ,{ "pid":12345, "tid":6, "ts":1718093281937435, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-protocol-def.h" }}
  3239. ,{ "pid":12345, "tid":6, "ts":1718093281937434, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-protocol-def.h" }}
  3240. ,{ "pid":12345, "tid":6, "ts":1718093281937578, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3241. ,{ "pid":12345, "tid":6, "ts":1718093281937671, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-minor-scan-object.h" }}
  3242. ,{ "pid":12345, "tid":6, "ts":1718093281937663, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-minor-scan-object.h" }}
  3243. ,{ "pid":12345, "tid":6, "ts":1718093281937753, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3244. ,{ "pid":12345, "tid":6, "ts":1718093281937824, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-los.c" }}
  3245. ,{ "pid":12345, "tid":6, "ts":1718093281937822, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-los.c" }}
  3246. ,{ "pid":12345, "tid":6, "ts":1718093281937894, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3247. ,{ "pid":12345, "tid":6, "ts":1718093281937971, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gray.c" }}
  3248. ,{ "pid":12345, "tid":6, "ts":1718093281937970, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gray.c" }}
  3249. ,{ "pid":12345, "tid":6, "ts":1718093281938056, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3250. ,{ "pid":12345, "tid":6, "ts":1718093281938146, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-debug.c" }}
  3251. ,{ "pid":12345, "tid":6, "ts":1718093281938145, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-debug.c" }}
  3252. ,{ "pid":12345, "tid":6, "ts":1718093281938217, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3253. ,{ "pid":12345, "tid":6, "ts":1718093281938304, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-array-list.c" }}
  3254. ,{ "pid":12345, "tid":6, "ts":1718093281938303, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-array-list.c" }}
  3255. ,{ "pid":12345, "tid":6, "ts":1718093281938373, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3256. ,{ "pid":12345, "tid":6, "ts":1718093281938456, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-state-machine.c" }}
  3257. ,{ "pid":12345, "tid":6, "ts":1718093281938455, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-state-machine.c" }}
  3258. ,{ "pid":12345, "tid":6, "ts":1718093281938536, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3259. ,{ "pid":12345, "tid":6, "ts":1718093281938610, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket.c" }}
  3260. ,{ "pid":12345, "tid":6, "ts":1718093281938609, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket.c" }}
  3261. ,{ "pid":12345, "tid":6, "ts":1718093281938695, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3262. ,{ "pid":12345, "tid":6, "ts":1718093281938774, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process.h" }}
  3263. ,{ "pid":12345, "tid":6, "ts":1718093281938772, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process.h" }}
  3264. ,{ "pid":12345, "tid":6, "ts":1718093281938843, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3265. ,{ "pid":12345, "tid":6, "ts":1718093281938926, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix-default.c" }}
  3266. ,{ "pid":12345, "tid":6, "ts":1718093281938925, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix-default.c" }}
  3267. ,{ "pid":12345, "tid":6, "ts":1718093281939033, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3268. ,{ "pid":12345, "tid":6, "ts":1718093281939139, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32handle-namespace.h" }}
  3269. ,{ "pid":12345, "tid":6, "ts":1718093281939137, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32handle-namespace.h" }}
  3270. ,{ "pid":12345, "tid":6, "ts":1718093281939208, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3271. ,{ "pid":12345, "tid":6, "ts":1718093281939288, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-unix-glob.h" }}
  3272. ,{ "pid":12345, "tid":6, "ts":1718093281939287, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-unix-glob.h" }}
  3273. ,{ "pid":12345, "tid":6, "ts":1718093281939367, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3274. ,{ "pid":12345, "tid":6, "ts":1718093281939446, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error-win32.c" }}
  3275. ,{ "pid":12345, "tid":6, "ts":1718093281939445, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error-win32.c" }}
  3276. ,{ "pid":12345, "tid":6, "ts":1718093281939538, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3277. ,{ "pid":12345, "tid":6, "ts":1718093281939616, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-liveness.c" }}
  3278. ,{ "pid":12345, "tid":6, "ts":1718093281939615, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-liveness.c" }}
  3279. ,{ "pid":12345, "tid":6, "ts":1718093281939688, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3280. ,{ "pid":12345, "tid":6, "ts":1718093281939763, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool.c" }}
  3281. ,{ "pid":12345, "tid":6, "ts":1718093281939762, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool.c" }}
  3282. ,{ "pid":12345, "tid":6, "ts":1718093281939843, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3283. ,{ "pid":12345, "tid":6, "ts":1718093281939923, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sysmath.c" }}
  3284. ,{ "pid":12345, "tid":6, "ts":1718093281939922, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sysmath.c" }}
  3285. ,{ "pid":12345, "tid":6, "ts":1718093281939982, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3286. ,{ "pid":12345, "tid":6, "ts":1718093281940113, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3287. ,{ "pid":12345, "tid":6, "ts":1718093281940206, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-new-bridge.c" }}
  3288. ,{ "pid":12345, "tid":6, "ts":1718093281940203, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-new-bridge.c" }}
  3289. ,{ "pid":12345, "tid":6, "ts":1718093281940266, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3290. ,{ "pid":12345, "tid":6, "ts":1718093281940344, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/seq-points-data.c" }}
  3291. ,{ "pid":12345, "tid":6, "ts":1718093281940342, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/seq-points-data.c" }}
  3292. ,{ "pid":12345, "tid":6, "ts":1718093281940432, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3293. ,{ "pid":12345, "tid":6, "ts":1718093281940520, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/row-indexes.h" }}
  3294. ,{ "pid":12345, "tid":6, "ts":1718093281940519, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/row-indexes.h" }}
  3295. ,{ "pid":12345, "tid":6, "ts":1718093281940609, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3296. ,{ "pid":12345, "tid":6, "ts":1718093281940707, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/rand.c" }}
  3297. ,{ "pid":12345, "tid":6, "ts":1718093281940705, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/rand.c" }}
  3298. ,{ "pid":12345, "tid":6, "ts":1718093281940773, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3299. ,{ "pid":12345, "tid":6, "ts":1718093281940849, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-events.h" }}
  3300. ,{ "pid":12345, "tid":6, "ts":1718093281940849, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-events.h" }}
  3301. ,{ "pid":12345, "tid":6, "ts":1718093281940937, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3302. ,{ "pid":12345, "tid":6, "ts":1718093281941004, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object.c" }}
  3303. ,{ "pid":12345, "tid":6, "ts":1718093281941004, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object.c" }}
  3304. ,{ "pid":12345, "tid":6, "ts":1718093281941084, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3305. ,{ "pid":12345, "tid":6, "ts":1718093281941176, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/null-gc.c" }}
  3306. ,{ "pid":12345, "tid":6, "ts":1718093281941175, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/null-gc.c" }}
  3307. ,{ "pid":12345, "tid":6, "ts":1718093281941253, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3308. ,{ "pid":12345, "tid":6, "ts":1718093281941340, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-route.c" }}
  3309. ,{ "pid":12345, "tid":6, "ts":1718093281941339, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-route.c" }}
  3310. ,{ "pid":12345, "tid":6, "ts":1718093281941408, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3311. ,{ "pid":12345, "tid":6, "ts":1718093281941496, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash.h" }}
  3312. ,{ "pid":12345, "tid":6, "ts":1718093281941494, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash.h" }}
  3313. ,{ "pid":12345, "tid":6, "ts":1718093281941581, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3314. ,{ "pid":12345, "tid":6, "ts":1718093281941661, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-debug.c" }}
  3315. ,{ "pid":12345, "tid":6, "ts":1718093281941660, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-debug.c" }}
  3316. ,{ "pid":12345, "tid":6, "ts":1718093281941732, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3317. ,{ "pid":12345, "tid":6, "ts":1718093281941826, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-basic-block.h" }}
  3318. ,{ "pid":12345, "tid":6, "ts":1718093281941825, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-basic-block.h" }}
  3319. ,{ "pid":12345, "tid":6, "ts":1718093281941906, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3320. ,{ "pid":12345, "tid":6, "ts":1718093281941989, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata.c" }}
  3321. ,{ "pid":12345, "tid":6, "ts":1718093281941987, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata.c" }}
  3322. ,{ "pid":12345, "tid":6, "ts":1718093281942082, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3323. ,{ "pid":12345, "tid":6, "ts":1718093281942153, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal.h" }}
  3324. ,{ "pid":12345, "tid":6, "ts":1718093281942152, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal.h" }}
  3325. ,{ "pid":12345, "tid":6, "ts":1718093281942224, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3326. ,{ "pid":12345, "tid":6, "ts":1718093281942315, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/locales.h" }}
  3327. ,{ "pid":12345, "tid":6, "ts":1718093281942313, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/locales.h" }}
  3328. ,{ "pid":12345, "tid":6, "ts":1718093281942398, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3329. ,{ "pid":12345, "tid":6, "ts":1718093281942475, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image.h" }}
  3330. ,{ "pid":12345, "tid":6, "ts":1718093281942472, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image.h" }}
  3331. ,{ "pid":12345, "tid":6, "ts":1718093281942552, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3332. ,{ "pid":12345, "tid":6, "ts":1718093281942640, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-internals.h" }}
  3333. ,{ "pid":12345, "tid":6, "ts":1718093281942639, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-internals.h" }}
  3334. ,{ "pid":12345, "tid":6, "ts":1718093281942715, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3335. ,{ "pid":12345, "tid":6, "ts":1718093281942791, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/gc-internals.h" }}
  3336. ,{ "pid":12345, "tid":6, "ts":1718093281942790, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/gc-internals.h" }}
  3337. ,{ "pid":12345, "tid":6, "ts":1718093281942858, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3338. ,{ "pid":12345, "tid":6, "ts":1718093281942929, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/fdhandle.c" }}
  3339. ,{ "pid":12345, "tid":6, "ts":1718093281942928, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/fdhandle.c" }}
  3340. ,{ "pid":12345, "tid":6, "ts":1718093281943018, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3341. ,{ "pid":12345, "tid":6, "ts":1718093281943087, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-stream-internals.h" }}
  3342. ,{ "pid":12345, "tid":6, "ts":1718093281943086, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-stream-internals.h" }}
  3343. ,{ "pid":12345, "tid":6, "ts":1718093281943170, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3344. ,{ "pid":12345, "tid":6, "ts":1718093281943260, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-symfile.h" }}
  3345. ,{ "pid":12345, "tid":6, "ts":1718093281943259, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-symfile.h" }}
  3346. ,{ "pid":12345, "tid":6, "ts":1718093281943340, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3347. ,{ "pid":12345, "tid":6, "ts":1718093281943430, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/custom-attrs.c" }}
  3348. ,{ "pid":12345, "tid":6, "ts":1718093281943428, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/custom-attrs.c" }}
  3349. ,{ "pid":12345, "tid":6, "ts":1718093281943550, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3350. ,{ "pid":12345, "tid":6, "ts":1718093281943665, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/console-win32.c" }}
  3351. ,{ "pid":12345, "tid":6, "ts":1718093281943664, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/console-win32.c" }}
  3352. ,{ "pid":12345, "tid":6, "ts":1718093281943762, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3353. ,{ "pid":12345, "tid":6, "ts":1718093281943855, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class.h" }}
  3354. ,{ "pid":12345, "tid":6, "ts":1718093281943853, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class.h" }}
  3355. ,{ "pid":12345, "tid":6, "ts":1718093281943945, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3356. ,{ "pid":12345, "tid":6, "ts":1718093281944034, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/boehm-gc.c" }}
  3357. ,{ "pid":12345, "tid":6, "ts":1718093281944033, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/boehm-gc.c" }}
  3358. ,{ "pid":12345, "tid":6, "ts":1718093281944154, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/attrdefs.h" }}
  3359. ,{ "pid":12345, "tid":6, "ts":1718093281944151, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attrdefs.h" }}
  3360. ,{ "pid":12345, "tid":6, "ts":1718093281944249, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3361. ,{ "pid":12345, "tid":6, "ts":1718093281944451, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/sort.frag.h" }}
  3362. ,{ "pid":12345, "tid":6, "ts":1718093281944449, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/sort.frag.h" }}
  3363. ,{ "pid":12345, "tid":6, "ts":1718093281944562, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3364. ,{ "pid":12345, "tid":6, "ts":1718093281944665, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gspawn.c" }}
  3365. ,{ "pid":12345, "tid":6, "ts":1718093281944663, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gspawn.c" }}
  3366. ,{ "pid":12345, "tid":6, "ts":1718093281944724, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3367. ,{ "pid":12345, "tid":6, "ts":1718093281944800, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gpath.c" }}
  3368. ,{ "pid":12345, "tid":6, "ts":1718093281944798, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gpath.c" }}
  3369. ,{ "pid":12345, "tid":6, "ts":1718093281944888, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3370. ,{ "pid":12345, "tid":6, "ts":1718093281944967, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/glib.h" }}
  3371. ,{ "pid":12345, "tid":6, "ts":1718093281944965, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/glib.h" }}
  3372. ,{ "pid":12345, "tid":6, "ts":1718093281945024, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3373. ,{ "pid":12345, "tid":6, "ts":1718093281945085, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gdir-unity.c" }}
  3374. ,{ "pid":12345, "tid":6, "ts":1718093281945083, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gdir-unity.c" }}
  3375. ,{ "pid":12345, "tid":6, "ts":1718093281945143, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3376. ,{ "pid":12345, "tid":6, "ts":1718093281945233, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/x86/x86-codegen.h" }}
  3377. ,{ "pid":12345, "tid":6, "ts":1718093281945231, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/x86/x86-codegen.h" }}
  3378. ,{ "pid":12345, "tid":6, "ts":1718093281945300, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3379. ,{ "pid":12345, "tid":6, "ts":1718093281945372, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/type_traits.h" }}
  3380. ,{ "pid":12345, "tid":6, "ts":1718093281945370, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/type_traits.h" }}
  3381. ,{ "pid":12345, "tid":6, "ts":1718093281945459, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3382. ,{ "pid":12345, "tid":6, "ts":1718093281945564, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/libc_allocator_with_realloc.h" }}
  3383. ,{ "pid":12345, "tid":6, "ts":1718093281945561, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/libc_allocator_with_realloc.h" }}
  3384. ,{ "pid":12345, "tid":6, "ts":1718093281945643, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3385. ,{ "pid":12345, "tid":6, "ts":1718093281945720, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/win32_threads.c" }}
  3386. ,{ "pid":12345, "tid":6, "ts":1718093281945719, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/win32_threads.c" }}
  3387. ,{ "pid":12345, "tid":6, "ts":1718093281945807, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3388. ,{ "pid":12345, "tid":6, "ts":1718093281945895, "dur":286, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tools/if_not_there.c" }}
  3389. ,{ "pid":12345, "tid":6, "ts":1718093281945893, "dur":295, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tools/if_not_there.c" }}
  3390. ,{ "pid":12345, "tid":6, "ts":1718093281946188, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3391. ,{ "pid":12345, "tid":6, "ts":1718093281946412, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/subthread_create.c" }}
  3392. ,{ "pid":12345, "tid":6, "ts":1718093281946410, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/subthread_create.c" }}
  3393. ,{ "pid":12345, "tid":6, "ts":1718093281946533, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3394. ,{ "pid":12345, "tid":6, "ts":1718093281946614, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/initsecondarythread.c" }}
  3395. ,{ "pid":12345, "tid":6, "ts":1718093281946612, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/initsecondarythread.c" }}
  3396. ,{ "pid":12345, "tid":6, "ts":1718093281946704, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3397. ,{ "pid":12345, "tid":6, "ts":1718093281946786, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/ptr_chck.c" }}
  3398. ,{ "pid":12345, "tid":6, "ts":1718093281946785, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/ptr_chck.c" }}
  3399. ,{ "pid":12345, "tid":6, "ts":1718093281946881, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3400. ,{ "pid":12345, "tid":6, "ts":1718093281946962, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/misc.c" }}
  3401. ,{ "pid":12345, "tid":6, "ts":1718093281946961, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/misc.c" }}
  3402. ,{ "pid":12345, "tid":6, "ts":1718093281947035, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3403. ,{ "pid":12345, "tid":6, "ts":1718093281947135, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_ao_t.h" }}
  3404. ,{ "pid":12345, "tid":6, "ts":1718093281947133, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/test_and_set_t_is_ao_t.h" }}
  3405. ,{ "pid":12345, "tid":6, "ts":1718093281947217, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3406. ,{ "pid":12345, "tid":6, "ts":1718093281947325, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86.h" }}
  3407. ,{ "pid":12345, "tid":6, "ts":1718093281947324, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86.h" }}
  3408. ,{ "pid":12345, "tid":6, "ts":1718093281947376, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3409. ,{ "pid":12345, "tid":6, "ts":1718093281947451, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h" }}
  3410. ,{ "pid":12345, "tid":6, "ts":1718093281947450, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h" }}
  3411. ,{ "pid":12345, "tid":6, "ts":1718093281947532, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3412. ,{ "pid":12345, "tid":6, "ts":1718093281947600, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_load.h" }}
  3413. ,{ "pid":12345, "tid":6, "ts":1718093281947591, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_atomic_load.h" }}
  3414. ,{ "pid":12345, "tid":6, "ts":1718093281947661, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3415. ,{ "pid":12345, "tid":6, "ts":1718093281947731, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ibmc/powerpc.h" }}
  3416. ,{ "pid":12345, "tid":6, "ts":1718093281947729, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ibmc/powerpc.h" }}
  3417. ,{ "pid":12345, "tid":6, "ts":1718093281947810, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3418. ,{ "pid":12345, "tid":6, "ts":1718093281947890, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/s390.h" }}
  3419. ,{ "pid":12345, "tid":6, "ts":1718093281947888, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/s390.h" }}
  3420. ,{ "pid":12345, "tid":6, "ts":1718093281947950, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3421. ,{ "pid":12345, "tid":6, "ts":1718093281948098, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/avr32.h" }}
  3422. ,{ "pid":12345, "tid":6, "ts":1718093281948096, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/avr32.h" }}
  3423. ,{ "pid":12345, "tid":6, "ts":1718093281948168, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3424. ,{ "pid":12345, "tid":6, "ts":1718093281948270, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_load_store.h" }}
  3425. ,{ "pid":12345, "tid":6, "ts":1718093281948267, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_atomic_load_store.h" }}
  3426. ,{ "pid":12345, "tid":6, "ts":1718093281948348, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3427. ,{ "pid":12345, "tid":6, "ts":1718093281948533, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.Ump.dll" }}
  3428. ,{ "pid":12345, "tid":6, "ts":1718093281948514, "dur":242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Ump-FeaturesChecked.txt" }}
  3429. ,{ "pid":12345, "tid":6, "ts":1718093281948780, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.TilemapModule.dll" }}
  3430. ,{ "pid":12345, "tid":6, "ts":1718093281948779, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TilemapModule-FeaturesChecked.txt" }}
  3431. ,{ "pid":12345, "tid":6, "ts":1718093281949028, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.WinRTStub.dll" }}
  3432. ,{ "pid":12345, "tid":6, "ts":1718093281949345, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.Data.pdb" }}
  3433. ,{ "pid":12345, "tid":6, "ts":1718093281949423, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/BeeBuildProgramCommon.dll" }}
  3434. ,{ "pid":12345, "tid":6, "ts":1718093281949573, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Linker.Api.dll" }}
  3435. ,{ "pid":12345, "tid":6, "ts":1718093281949026, "dur":693, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTStub-FeaturesChecked.txt" }}
  3436. ,{ "pid":12345, "tid":6, "ts":1718093281949719, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3437. ,{ "pid":12345, "tid":6, "ts":1718093281949802, "dur":190, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Burst.dll" }}
  3438. ,{ "pid":12345, "tid":6, "ts":1718093281949801, "dur":462, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Burst-FeaturesChecked.txt" }}
  3439. ,{ "pid":12345, "tid":6, "ts":1718093281950263, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3440. ,{ "pid":12345, "tid":6, "ts":1718093281950351, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Numerics.dll" }}
  3441. ,{ "pid":12345, "tid":6, "ts":1718093281950350, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Numerics-FeaturesChecked.txt" }}
  3442. ,{ "pid":12345, "tid":6, "ts":1718093281950693, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Xml.Linq.dll" }}
  3443. ,{ "pid":12345, "tid":6, "ts":1718093281950691, "dur":362, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Xml.Linq-FeaturesChecked.txt" }}
  3444. ,{ "pid":12345, "tid":6, "ts":1718093281951086, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/I18N.dll" }}
  3445. ,{ "pid":12345, "tid":6, "ts":1718093281951084, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/I18N-FeaturesChecked.txt" }}
  3446. ,{ "pid":12345, "tid":6, "ts":1718093281951370, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.SharedInternalsModule.dll" }}
  3447. ,{ "pid":12345, "tid":6, "ts":1718093281951367, "dur":188, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.SharedInternalsModule-FeaturesChecked.txt" }}
  3448. ,{ "pid":12345, "tid":6, "ts":1718093281951581, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Configuration.dll" }}
  3449. ,{ "pid":12345, "tid":6, "ts":1718093281951580, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Configuration-FeaturesChecked.txt" }}
  3450. ,{ "pid":12345, "tid":6, "ts":1718093281951758, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.Auth-FeaturesChecked.txt" }}
  3451. ,{ "pid":12345, "tid":6, "ts":1718093281951918, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.AnimationModule.dll" }}
  3452. ,{ "pid":12345, "tid":6, "ts":1718093281951916, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AnimationModule-FeaturesChecked.txt" }}
  3453. ,{ "pid":12345, "tid":6, "ts":1718093281952112, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Environments.Internal.dll" }}
  3454. ,{ "pid":12345, "tid":6, "ts":1718093281952110, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Environments.Internal-FeaturesChecked.txt" }}
  3455. ,{ "pid":12345, "tid":6, "ts":1718093281952278, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.JSONSerializeModule.dll" }}
  3456. ,{ "pid":12345, "tid":6, "ts":1718093281952366, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.CSharpSupport.dll" }}
  3457. ,{ "pid":12345, "tid":6, "ts":1718093281952455, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.NativeProgramSupport.dll" }}
  3458. ,{ "pid":12345, "tid":6, "ts":1718093281952603, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll" }}
  3459. ,{ "pid":12345, "tid":6, "ts":1718093281952277, "dur":478, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.JSONSerializeModule-FeaturesChecked.txt" }}
  3460. ,{ "pid":12345, "tid":6, "ts":1718093281952846, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.NativeProgramSupport.dll" }}
  3461. ,{ "pid":12345, "tid":6, "ts":1718093281952963, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Tools.dll" }}
  3462. ,{ "pid":12345, "tid":6, "ts":1718093281953069, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.dll" }}
  3463. ,{ "pid":12345, "tid":6, "ts":1718093281952782, "dur":412, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Scheduler-FeaturesChecked.txt" }}
  3464. ,{ "pid":12345, "tid":6, "ts":1718093281953236, "dur":241, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Firebase.App-FeaturesChecked.txt" }}
  3465. ,{ "pid":12345, "tid":6, "ts":1718093281953536, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Drawing.dll" }}
  3466. ,{ "pid":12345, "tid":6, "ts":1718093281953532, "dur":217, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Drawing-FeaturesChecked.txt" }}
  3467. ,{ "pid":12345, "tid":6, "ts":1718093281953759, "dur":154, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Drawing-FeaturesChecked.txt" }}
  3468. ,{ "pid":12345, "tid":6, "ts":1718093281953927, "dur":286, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.CoreModule.dll" }}
  3469. ,{ "pid":12345, "tid":6, "ts":1718093281953925, "dur":365, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.CoreModule-FeaturesChecked.txt" }}
  3470. ,{ "pid":12345, "tid":6, "ts":1718093281954317, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.AndroidJNIModule.dll" }}
  3471. ,{ "pid":12345, "tid":6, "ts":1718093281954315, "dur":192, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.AndroidJNIModule-FeaturesChecked.txt" }}
  3472. ,{ "pid":12345, "tid":6, "ts":1718093281954538, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.PropertiesModule.dll" }}
  3473. ,{ "pid":12345, "tid":6, "ts":1718093281954536, "dur":225, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.PropertiesModule-FeaturesChecked.txt" }}
  3474. ,{ "pid":12345, "tid":6, "ts":1718093281954790, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Runtime.Serialization-FeaturesChecked.txt" }}
  3475. ,{ "pid":12345, "tid":6, "ts":1718093281954897, "dur":804, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UIElementsModule.dll" }}
  3476. ,{ "pid":12345, "tid":6, "ts":1718093281954896, "dur":942, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UIElementsModule-FeaturesChecked.txt" }}
  3477. ,{ "pid":12345, "tid":6, "ts":1718093281956252, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Newtonsoft.Json.dll" }}
  3478. ,{ "pid":12345, "tid":6, "ts":1718093281955867, "dur":496, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Purchasing.Common-FeaturesChecked.txt" }}
  3479. ,{ "pid":12345, "tid":6, "ts":1718093281956446, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ICallRegistrationGenerator /Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityICallRegistration.cpp" }}
  3480. ,{ "pid":12345, "tid":6, "ts":1718093281956654, "dur":413506, "ph":"X", "name": "ICallRegistrationGenerator", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityICallRegistration.cpp" }}
  3481. ,{ "pid":12345, "tid":6, "ts":1718093282370183, "dur":162, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Users/apple/GCMDownFloor-IOS/Library/Bee/artifacts/iOS/il2cppOutput/UnityICallRegistration.cpp" }}
  3482. ,{ "pid":12345, "tid":6, "ts":1718093282370181, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityICallRegistration.cpp" }}
  3483. ,{ "pid":12345, "tid":6, "ts":1718093282370412, "dur":7276, "ph":"X", "name": "CopyFiles", "args": { "detail":"/Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/Source/il2cppOutput/UnityICallRegistration.cpp" }}
  3484. ,{ "pid":12345, "tid":6, "ts":1718093282377693, "dur":9360798, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  3485. ,{ "pid":12345, "tid":6, "ts":1718093291738505, "dur":1672297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  3486. ,{ "pid":12345, "tid":7, "ts":1718093281795617, "dur":83486, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  3487. ,{ "pid":12345, "tid":7, "ts":1718093281879108, "dur":915, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3488. ,{ "pid":12345, "tid":7, "ts":1718093281880024, "dur":1041, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3489. ,{ "pid":12345, "tid":7, "ts":1718093281881065, "dur":951, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3490. ,{ "pid":12345, "tid":7, "ts":1718093281882017, "dur":964, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3491. ,{ "pid":12345, "tid":7, "ts":1718093281882981, "dur":1103, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  3492. ,{ "pid":12345, "tid":7, "ts":1718093281884084, "dur":22565, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  3493. ,{ "pid":12345, "tid":7, "ts":1718093281907591, "dur":1665, "ph":"X", "name": "WriteResponseFile", "args": { "detail":"Library/Bee/artifacts/rsp/14484805942339754312.rsp" }}
  3494. ,{ "pid":12345, "tid":7, "ts":1718093281909277, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorage.h" }}
  3495. ,{ "pid":12345, "tid":7, "ts":1718093281909276, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorage.h" }}
  3496. ,{ "pid":12345, "tid":7, "ts":1718093281909422, "dur":168, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3497. ,{ "pid":12345, "tid":7, "ts":1718093281909596, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationDelegate.h" }}
  3498. ,{ "pid":12345, "tid":7, "ts":1718093281909595, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityMonetizationDelegate.h" }}
  3499. ,{ "pid":12345, "tid":7, "ts":1718093281909779, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3500. ,{ "pid":12345, "tid":7, "ts":1718093281909891, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsPlacementState.h" }}
  3501. ,{ "pid":12345, "tid":7, "ts":1718093281909888, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsPlacementState.h" }}
  3502. ,{ "pid":12345, "tid":7, "ts":1718093281910030, "dur":188, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3503. ,{ "pid":12345, "tid":7, "ts":1718093281910224, "dur":143, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsError.h" }}
  3504. ,{ "pid":12345, "tid":7, "ts":1718093281910223, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsError.h" }}
  3505. ,{ "pid":12345, "tid":7, "ts":1718093281910368, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3506. ,{ "pid":12345, "tid":7, "ts":1718093281910584, "dur":159, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONShowAdPlacementContent.h" }}
  3507. ,{ "pid":12345, "tid":7, "ts":1718093281910582, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONShowAdPlacementContent.h" }}
  3508. ,{ "pid":12345, "tid":7, "ts":1718093281910744, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3509. ,{ "pid":12345, "tid":7, "ts":1718093281910906, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONCustomEvent.h" }}
  3510. ,{ "pid":12345, "tid":7, "ts":1718093281910905, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONCustomEvent.h" }}
  3511. ,{ "pid":12345, "tid":7, "ts":1718093281911041, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3512. ,{ "pid":12345, "tid":7, "ts":1718093281911117, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSLoadOptions.h" }}
  3513. ,{ "pid":12345, "tid":7, "ts":1718093281911116, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSLoadOptions.h" }}
  3514. ,{ "pid":12345, "tid":7, "ts":1718093281911187, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3515. ,{ "pid":12345, "tid":7, "ts":1718093281911322, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3516. ,{ "pid":12345, "tid":7, "ts":1718093281911444, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/MethodDefinitionKey.h" }}
  3517. ,{ "pid":12345, "tid":7, "ts":1718093281911442, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/MethodDefinitionKey.h" }}
  3518. ,{ "pid":12345, "tid":7, "ts":1718093281911506, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3519. ,{ "pid":12345, "tid":7, "ts":1718093281911596, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.h" }}
  3520. ,{ "pid":12345, "tid":7, "ts":1718093281911595, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.h" }}
  3521. ,{ "pid":12345, "tid":7, "ts":1718093281911661, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3522. ,{ "pid":12345, "tid":7, "ts":1718093281911743, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Debugger.h" }}
  3523. ,{ "pid":12345, "tid":7, "ts":1718093281911741, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Debugger.h" }}
  3524. ,{ "pid":12345, "tid":7, "ts":1718093281911833, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3525. ,{ "pid":12345, "tid":7, "ts":1718093281911936, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8/core.h" }}
  3526. ,{ "pid":12345, "tid":7, "ts":1718093281911935, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8/core.h" }}
  3527. ,{ "pid":12345, "tid":7, "ts":1718093281912036, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3528. ,{ "pid":12345, "tid":7, "ts":1718093281912205, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/StringView.h" }}
  3529. ,{ "pid":12345, "tid":7, "ts":1718093281912204, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/StringView.h" }}
  3530. ,{ "pid":12345, "tid":7, "ts":1718093281912292, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3531. ,{ "pid":12345, "tid":7, "ts":1718093281912350, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Runtime.cpp" }}
  3532. ,{ "pid":12345, "tid":7, "ts":1718093281912348, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Runtime.cpp" }}
  3533. ,{ "pid":12345, "tid":7, "ts":1718093281912425, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3534. ,{ "pid":12345, "tid":7, "ts":1718093281912498, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/New.h" }}
  3535. ,{ "pid":12345, "tid":7, "ts":1718093281912497, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/New.h" }}
  3536. ,{ "pid":12345, "tid":7, "ts":1718093281912575, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3537. ,{ "pid":12345, "tid":7, "ts":1718093281912667, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPoolAddressSanitizer.cpp" }}
  3538. ,{ "pid":12345, "tid":7, "ts":1718093281912665, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPoolAddressSanitizer.cpp" }}
  3539. ,{ "pid":12345, "tid":7, "ts":1718093281912752, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3540. ,{ "pid":12345, "tid":7, "ts":1718093281912912, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MathUtils.h" }}
  3541. ,{ "pid":12345, "tid":7, "ts":1718093281912910, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MathUtils.h" }}
  3542. ,{ "pid":12345, "tid":7, "ts":1718093281913021, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3543. ,{ "pid":12345, "tid":7, "ts":1718093281913106, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/InitOnce.h" }}
  3544. ,{ "pid":12345, "tid":7, "ts":1718093281913105, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/InitOnce.h" }}
  3545. ,{ "pid":12345, "tid":7, "ts":1718093281913165, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3546. ,{ "pid":12345, "tid":7, "ts":1718093281913229, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/HashUtils.h" }}
  3547. ,{ "pid":12345, "tid":7, "ts":1718093281913228, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/HashUtils.h" }}
  3548. ,{ "pid":12345, "tid":7, "ts":1718093281913328, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3549. ,{ "pid":12345, "tid":7, "ts":1718093281913439, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Exception.h" }}
  3550. ,{ "pid":12345, "tid":7, "ts":1718093281913438, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Exception.h" }}
  3551. ,{ "pid":12345, "tid":7, "ts":1718093281913600, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Collections.h" }}
  3552. ,{ "pid":12345, "tid":7, "ts":1718093281913598, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Collections.h" }}
  3553. ,{ "pid":12345, "tid":7, "ts":1718093281913710, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3554. ,{ "pid":12345, "tid":7, "ts":1718093281913770, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/pch/pch-cpp.cpp" }}
  3555. ,{ "pid":12345, "tid":7, "ts":1718093281913770, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/pch/pch-cpp.cpp" }}
  3556. ,{ "pid":12345, "tid":7, "ts":1718093281913830, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3557. ,{ "pid":12345, "tid":7, "ts":1718093281913896, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiSharedEmulation.h" }}
  3558. ,{ "pid":12345, "tid":7, "ts":1718093281913895, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiSharedEmulation.h" }}
  3559. ,{ "pid":12345, "tid":7, "ts":1718093281913972, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3560. ,{ "pid":12345, "tid":7, "ts":1718093281914092, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3561. ,{ "pid":12345, "tid":7, "ts":1718093281914224, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.h" }}
  3562. ,{ "pid":12345, "tid":7, "ts":1718093281914223, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsGames/Win32ApiWindowsGamesEmulation.h" }}
  3563. ,{ "pid":12345, "tid":7, "ts":1718093281914366, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/TimeZone.cpp" }}
  3564. ,{ "pid":12345, "tid":7, "ts":1718093281914365, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/TimeZone.cpp" }}
  3565. ,{ "pid":12345, "tid":7, "ts":1718093281914424, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3566. ,{ "pid":12345, "tid":7, "ts":1718093281914522, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/SystemCertificates.cpp" }}
  3567. ,{ "pid":12345, "tid":7, "ts":1718093281914521, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/SystemCertificates.cpp" }}
  3568. ,{ "pid":12345, "tid":7, "ts":1718093281914612, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3569. ,{ "pid":12345, "tid":7, "ts":1718093281914702, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Process.cpp" }}
  3570. ,{ "pid":12345, "tid":7, "ts":1718093281914700, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Process.cpp" }}
  3571. ,{ "pid":12345, "tid":7, "ts":1718093281914796, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3572. ,{ "pid":12345, "tid":7, "ts":1718093281914925, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/LibraryLoader.cpp" }}
  3573. ,{ "pid":12345, "tid":7, "ts":1718093281914923, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/LibraryLoader.cpp" }}
  3574. ,{ "pid":12345, "tid":7, "ts":1718093281915041, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3575. ,{ "pid":12345, "tid":7, "ts":1718093281915155, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h" }}
  3576. ,{ "pid":12345, "tid":7, "ts":1718093281915153, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h" }}
  3577. ,{ "pid":12345, "tid":7, "ts":1718093281915253, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3578. ,{ "pid":12345, "tid":7, "ts":1718093281915332, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Debug.cpp" }}
  3579. ,{ "pid":12345, "tid":7, "ts":1718093281915330, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Debug.cpp" }}
  3580. ,{ "pid":12345, "tid":7, "ts":1718093281915407, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3581. ,{ "pid":12345, "tid":7, "ts":1718093281915516, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ConditionVariableImpl.cpp" }}
  3582. ,{ "pid":12345, "tid":7, "ts":1718093281915514, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ConditionVariableImpl.cpp" }}
  3583. ,{ "pid":12345, "tid":7, "ts":1718093281915593, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3584. ,{ "pid":12345, "tid":7, "ts":1718093281915684, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ThreadLocalValue.h" }}
  3585. ,{ "pid":12345, "tid":7, "ts":1718093281915683, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ThreadLocalValue.h" }}
  3586. ,{ "pid":12345, "tid":7, "ts":1718093281915769, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3587. ,{ "pid":12345, "tid":7, "ts":1718093281915839, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Std/ThreadImpl.cpp" }}
  3588. ,{ "pid":12345, "tid":7, "ts":1718093281915838, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Std/ThreadImpl.cpp" }}
  3589. ,{ "pid":12345, "tid":7, "ts":1718093281915938, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3590. ,{ "pid":12345, "tid":7, "ts":1718093281916040, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Semaphore.h" }}
  3591. ,{ "pid":12345, "tid":7, "ts":1718093281916039, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Semaphore.h" }}
  3592. ,{ "pid":12345, "tid":7, "ts":1718093281916110, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3593. ,{ "pid":12345, "tid":7, "ts":1718093281916193, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/TimeZone.cpp" }}
  3594. ,{ "pid":12345, "tid":7, "ts":1718093281916191, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/TimeZone.cpp" }}
  3595. ,{ "pid":12345, "tid":7, "ts":1718093281916305, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3596. ,{ "pid":12345, "tid":7, "ts":1718093281916374, "dur":108, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/SystemCertificates.cpp" }}
  3597. ,{ "pid":12345, "tid":7, "ts":1718093281916373, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/SystemCertificates.cpp" }}
  3598. ,{ "pid":12345, "tid":7, "ts":1718093281916483, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3599. ,{ "pid":12345, "tid":7, "ts":1718093281916543, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Process.cpp" }}
  3600. ,{ "pid":12345, "tid":7, "ts":1718093281916541, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Process.cpp" }}
  3601. ,{ "pid":12345, "tid":7, "ts":1718093281916616, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3602. ,{ "pid":12345, "tid":7, "ts":1718093281916694, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MemoryMappedFile.cpp" }}
  3603. ,{ "pid":12345, "tid":7, "ts":1718093281916692, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MemoryMappedFile.cpp" }}
  3604. ,{ "pid":12345, "tid":7, "ts":1718093281916759, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3605. ,{ "pid":12345, "tid":7, "ts":1718093281916840, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Locale.cpp" }}
  3606. ,{ "pid":12345, "tid":7, "ts":1718093281916839, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Locale.cpp" }}
  3607. ,{ "pid":12345, "tid":7, "ts":1718093281916934, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3608. ,{ "pid":12345, "tid":7, "ts":1718093281917053, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FastReaderReaderWriterLockImpl.h" }}
  3609. ,{ "pid":12345, "tid":7, "ts":1718093281917051, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FastReaderReaderWriterLockImpl.h" }}
  3610. ,{ "pid":12345, "tid":7, "ts":1718093281917138, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3611. ,{ "pid":12345, "tid":7, "ts":1718093281917271, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Cryptography.cpp" }}
  3612. ,{ "pid":12345, "tid":7, "ts":1718093281917270, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Cryptography.cpp" }}
  3613. ,{ "pid":12345, "tid":7, "ts":1718093281917355, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3614. ,{ "pid":12345, "tid":7, "ts":1718093281917423, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ConditionVariableImpl.cpp" }}
  3615. ,{ "pid":12345, "tid":7, "ts":1718093281917422, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ConditionVariableImpl.cpp" }}
  3616. ,{ "pid":12345, "tid":7, "ts":1718093281917521, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3617. ,{ "pid":12345, "tid":7, "ts":1718093281917580, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/NativeMethods.h" }}
  3618. ,{ "pid":12345, "tid":7, "ts":1718093281917579, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/NativeMethods.h" }}
  3619. ,{ "pid":12345, "tid":7, "ts":1718093281917654, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3620. ,{ "pid":12345, "tid":7, "ts":1718093281917754, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Memory.h" }}
  3621. ,{ "pid":12345, "tid":7, "ts":1718093281917752, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Memory.h" }}
  3622. ,{ "pid":12345, "tid":7, "ts":1718093281917830, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3623. ,{ "pid":12345, "tid":7, "ts":1718093281917968, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/LibraryLoader.cpp" }}
  3624. ,{ "pid":12345, "tid":7, "ts":1718093281917967, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/LibraryLoader.cpp" }}
  3625. ,{ "pid":12345, "tid":7, "ts":1718093281918035, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3626. ,{ "pid":12345, "tid":7, "ts":1718093281918113, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/WindowsRuntime.cpp" }}
  3627. ,{ "pid":12345, "tid":7, "ts":1718093281918112, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/WindowsRuntime.cpp" }}
  3628. ,{ "pid":12345, "tid":7, "ts":1718093281918190, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3629. ,{ "pid":12345, "tid":7, "ts":1718093281918261, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/SocketImpl.cpp" }}
  3630. ,{ "pid":12345, "tid":7, "ts":1718093281918259, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/SocketImpl.cpp" }}
  3631. ,{ "pid":12345, "tid":7, "ts":1718093281918332, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3632. ,{ "pid":12345, "tid":7, "ts":1718093281918426, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/LibraryLoader.cpp" }}
  3633. ,{ "pid":12345, "tid":7, "ts":1718093281918425, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/LibraryLoader.cpp" }}
  3634. ,{ "pid":12345, "tid":7, "ts":1718093281918499, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3635. ,{ "pid":12345, "tid":7, "ts":1718093281918638, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Debug.cpp" }}
  3636. ,{ "pid":12345, "tid":7, "ts":1718093281918636, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Debug.cpp" }}
  3637. ,{ "pid":12345, "tid":7, "ts":1718093281918704, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3638. ,{ "pid":12345, "tid":7, "ts":1718093281918776, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FileSystemWatcher.h" }}
  3639. ,{ "pid":12345, "tid":7, "ts":1718093281918775, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FileSystemWatcher.h" }}
  3640. ,{ "pid":12345, "tid":7, "ts":1718093281918868, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3641. ,{ "pid":12345, "tid":7, "ts":1718093281918951, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Event.cpp" }}
  3642. ,{ "pid":12345, "tid":7, "ts":1718093281918949, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Event.cpp" }}
  3643. ,{ "pid":12345, "tid":7, "ts":1718093281919014, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3644. ,{ "pid":12345, "tid":7, "ts":1718093281919117, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Emscripten/SocketBridge.cpp" }}
  3645. ,{ "pid":12345, "tid":7, "ts":1718093281919116, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Emscripten/SocketBridge.cpp" }}
  3646. ,{ "pid":12345, "tid":7, "ts":1718093281919193, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3647. ,{ "pid":12345, "tid":7, "ts":1718093281919284, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/CrashHelpers.cpp" }}
  3648. ,{ "pid":12345, "tid":7, "ts":1718093281919282, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/CrashHelpers.cpp" }}
  3649. ,{ "pid":12345, "tid":7, "ts":1718093281919352, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3650. ,{ "pid":12345, "tid":7, "ts":1718093281919467, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/COM.h" }}
  3651. ,{ "pid":12345, "tid":7, "ts":1718093281919466, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/COM.h" }}
  3652. ,{ "pid":12345, "tid":7, "ts":1718093281919540, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3653. ,{ "pid":12345, "tid":7, "ts":1718093281919610, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_random.cpp" }}
  3654. ,{ "pid":12345, "tid":7, "ts":1718093281919609, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_random.cpp" }}
  3655. ,{ "pid":12345, "tid":7, "ts":1718093281919720, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3656. ,{ "pid":12345, "tid":7, "ts":1718093281919831, "dur":130, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/types.h" }}
  3657. ,{ "pid":12345, "tid":7, "ts":1718093281919829, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/include/brotli/types.h" }}
  3658. ,{ "pid":12345, "tid":7, "ts":1718093281919965, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3659. ,{ "pid":12345, "tid":7, "ts":1718093281920051, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.c" }}
  3660. ,{ "pid":12345, "tid":7, "ts":1718093281920049, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/utf8_util.c" }}
  3661. ,{ "pid":12345, "tid":7, "ts":1718093281920104, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3662. ,{ "pid":12345, "tid":7, "ts":1718093281920184, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/prefix.h" }}
  3663. ,{ "pid":12345, "tid":7, "ts":1718093281920181, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/prefix.h" }}
  3664. ,{ "pid":12345, "tid":7, "ts":1718093281920318, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3665. ,{ "pid":12345, "tid":7, "ts":1718093281920399, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.c" }}
  3666. ,{ "pid":12345, "tid":7, "ts":1718093281920398, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/memory.c" }}
  3667. ,{ "pid":12345, "tid":7, "ts":1718093281920469, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3668. ,{ "pid":12345, "tid":7, "ts":1718093281920589, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.c" }}
  3669. ,{ "pid":12345, "tid":7, "ts":1718093281920588, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram.c" }}
  3670. ,{ "pid":12345, "tid":7, "ts":1718093281920701, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3671. ,{ "pid":12345, "tid":7, "ts":1718093281920860, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_composite_inc.h" }}
  3672. ,{ "pid":12345, "tid":7, "ts":1718093281920857, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_composite_inc.h" }}
  3673. ,{ "pid":12345, "tid":7, "ts":1718093281920988, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3674. ,{ "pid":12345, "tid":7, "ts":1718093281921060, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.h" }}
  3675. ,{ "pid":12345, "tid":7, "ts":1718093281921059, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/entropy_encode.h" }}
  3676. ,{ "pid":12345, "tid":7, "ts":1718093281921126, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3677. ,{ "pid":12345, "tid":7, "ts":1718093281921268, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.c" }}
  3678. ,{ "pid":12345, "tid":7, "ts":1718093281921267, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/dictionary_hash.c" }}
  3679. ,{ "pid":12345, "tid":7, "ts":1718093281921409, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.c" }}
  3680. ,{ "pid":12345, "tid":7, "ts":1718093281921406, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/command.c" }}
  3681. ,{ "pid":12345, "tid":7, "ts":1718093281921475, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3682. ,{ "pid":12345, "tid":7, "ts":1718093281921603, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.h" }}
  3683. ,{ "pid":12345, "tid":7, "ts":1718093281921601, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_splitter.h" }}
  3684. ,{ "pid":12345, "tid":7, "ts":1718093281921687, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3685. ,{ "pid":12345, "tid":7, "ts":1718093281921767, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_inc.h" }}
  3686. ,{ "pid":12345, "tid":7, "ts":1718093281921765, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_inc.h" }}
  3687. ,{ "pid":12345, "tid":7, "ts":1718093281921833, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3688. ,{ "pid":12345, "tid":7, "ts":1718093281921911, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.c" }}
  3689. ,{ "pid":12345, "tid":7, "ts":1718093281921910, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/state.c" }}
  3690. ,{ "pid":12345, "tid":7, "ts":1718093281922035, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3691. ,{ "pid":12345, "tid":7, "ts":1718093281922143, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.c" }}
  3692. ,{ "pid":12345, "tid":7, "ts":1718093281922141, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/bit_reader.c" }}
  3693. ,{ "pid":12345, "tid":7, "ts":1718093281922212, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3694. ,{ "pid":12345, "tid":7, "ts":1718093281922290, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.h" }}
  3695. ,{ "pid":12345, "tid":7, "ts":1718093281922289, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/dictionary.h" }}
  3696. ,{ "pid":12345, "tid":7, "ts":1718093281922412, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3697. ,{ "pid":12345, "tid":7, "ts":1718093281922530, "dur":114, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/WaitStatus-c-api.h" }}
  3698. ,{ "pid":12345, "tid":7, "ts":1718093281922529, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/WaitStatus-c-api.h" }}
  3699. ,{ "pid":12345, "tid":7, "ts":1718093281922646, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3700. ,{ "pid":12345, "tid":7, "ts":1718093281922740, "dur":152, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Path.cpp" }}
  3701. ,{ "pid":12345, "tid":7, "ts":1718093281922738, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Path.cpp" }}
  3702. ,{ "pid":12345, "tid":7, "ts":1718093281922892, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3703. ,{ "pid":12345, "tid":7, "ts":1718093281923007, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/il2cpp-config-platforms.h" }}
  3704. ,{ "pid":12345, "tid":7, "ts":1718093281923005, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/il2cpp-config-platforms.h" }}
  3705. ,{ "pid":12345, "tid":7, "ts":1718093281923116, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3706. ,{ "pid":12345, "tid":7, "ts":1718093281923195, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Environment-c-api.h" }}
  3707. ,{ "pid":12345, "tid":7, "ts":1718093281923194, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Environment-c-api.h" }}
  3708. ,{ "pid":12345, "tid":7, "ts":1718093281923251, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3709. ,{ "pid":12345, "tid":7, "ts":1718093281923358, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Allocator.h" }}
  3710. ,{ "pid":12345, "tid":7, "ts":1718093281923357, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Allocator.h" }}
  3711. ,{ "pid":12345, "tid":7, "ts":1718093281923453, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3712. ,{ "pid":12345, "tid":7, "ts":1718093281923520, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/StackTrace.cpp" }}
  3713. ,{ "pid":12345, "tid":7, "ts":1718093281923519, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/StackTrace.cpp" }}
  3714. ,{ "pid":12345, "tid":7, "ts":1718093281923587, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3715. ,{ "pid":12345, "tid":7, "ts":1718093281923651, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.h" }}
  3716. ,{ "pid":12345, "tid":7, "ts":1718093281923650, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolWorkerThread.h" }}
  3717. ,{ "pid":12345, "tid":7, "ts":1718093281923770, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolDataStructures.h" }}
  3718. ,{ "pid":12345, "tid":7, "ts":1718093281923769, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolDataStructures.h" }}
  3719. ,{ "pid":12345, "tid":7, "ts":1718093281923894, "dur":131, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.h" }}
  3720. ,{ "pid":12345, "tid":7, "ts":1718093281923893, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io-poll.h" }}
  3721. ,{ "pid":12345, "tid":7, "ts":1718093281924026, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3722. ,{ "pid":12345, "tid":7, "ts":1718093281924089, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppSignature.h" }}
  3723. ,{ "pid":12345, "tid":7, "ts":1718093281924088, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppSignature.h" }}
  3724. ,{ "pid":12345, "tid":7, "ts":1718093281924142, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3725. ,{ "pid":12345, "tid":7, "ts":1718093281924254, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodCompare.h" }}
  3726. ,{ "pid":12345, "tid":7, "ts":1718093281924252, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodCompare.h" }}
  3727. ,{ "pid":12345, "tid":7, "ts":1718093281924318, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3728. ,{ "pid":12345, "tid":7, "ts":1718093281924471, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericContextCompare.cpp" }}
  3729. ,{ "pid":12345, "tid":7, "ts":1718093281924469, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericContextCompare.cpp" }}
  3730. ,{ "pid":12345, "tid":7, "ts":1718093281924531, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3731. ,{ "pid":12345, "tid":7, "ts":1718093281924599, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericSharing.cpp" }}
  3732. ,{ "pid":12345, "tid":7, "ts":1718093281924598, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericSharing.cpp" }}
  3733. ,{ "pid":12345, "tid":7, "ts":1718093281924674, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3734. ,{ "pid":12345, "tid":7, "ts":1718093281924864, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3735. ,{ "pid":12345, "tid":7, "ts":1718093281924966, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3736. ,{ "pid":12345, "tid":7, "ts":1718093281925067, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-windowsruntime-types.h" }}
  3737. ,{ "pid":12345, "tid":7, "ts":1718093281925065, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-windowsruntime-types.h" }}
  3738. ,{ "pid":12345, "tid":7, "ts":1718093281925180, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3739. ,{ "pid":12345, "tid":7, "ts":1718093281925290, "dur":142, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-stats.cpp" }}
  3740. ,{ "pid":12345, "tid":7, "ts":1718093281925288, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-stats.cpp" }}
  3741. ,{ "pid":12345, "tid":7, "ts":1718093281925432, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3742. ,{ "pid":12345, "tid":7, "ts":1718093281925507, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api-functions.h" }}
  3743. ,{ "pid":12345, "tid":7, "ts":1718093281925506, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api-functions.h" }}
  3744. ,{ "pid":12345, "tid":7, "ts":1718093281925632, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3745. ,{ "pid":12345, "tid":7, "ts":1718093281925740, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-benchmark-support.cpp" }}
  3746. ,{ "pid":12345, "tid":7, "ts":1718093281925739, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-benchmark-support.cpp" }}
  3747. ,{ "pid":12345, "tid":7, "ts":1718093281925832, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3748. ,{ "pid":12345, "tid":7, "ts":1718093281925917, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net/Dns.cpp" }}
  3749. ,{ "pid":12345, "tid":7, "ts":1718093281925915, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net/Dns.cpp" }}
  3750. ,{ "pid":12345, "tid":7, "ts":1718093281926009, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3751. ,{ "pid":12345, "tid":7, "ts":1718093281926168, "dur":102, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.h" }}
  3752. ,{ "pid":12345, "tid":7, "ts":1718093281926167, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.NetworkInformation/LinuxNetworkInterface.h" }}
  3753. ,{ "pid":12345, "tid":7, "ts":1718093281926271, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3754. ,{ "pid":12345, "tid":7, "ts":1718093281926399, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Process.cpp" }}
  3755. ,{ "pid":12345, "tid":7, "ts":1718093281926398, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Process.cpp" }}
  3756. ,{ "pid":12345, "tid":7, "ts":1718093281926472, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3757. ,{ "pid":12345, "tid":7, "ts":1718093281926591, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.h" }}
  3758. ,{ "pid":12345, "tid":7, "ts":1718093281926589, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/Microsoft.Win32/NativeMethods.h" }}
  3759. ,{ "pid":12345, "tid":7, "ts":1718093281926652, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3760. ,{ "pid":12345, "tid":7, "ts":1718093281926729, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/TypedReference.h" }}
  3761. ,{ "pid":12345, "tid":7, "ts":1718093281926727, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/TypedReference.h" }}
  3762. ,{ "pid":12345, "tid":7, "ts":1718093281926792, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3763. ,{ "pid":12345, "tid":7, "ts":1718093281926926, "dur":124, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.h" }}
  3764. ,{ "pid":12345, "tid":7, "ts":1718093281926925, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeTypeHandle.h" }}
  3765. ,{ "pid":12345, "tid":7, "ts":1718093281927051, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3766. ,{ "pid":12345, "tid":7, "ts":1718093281927152, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Object.h" }}
  3767. ,{ "pid":12345, "tid":7, "ts":1718093281927151, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Object.h" }}
  3768. ,{ "pid":12345, "tid":7, "ts":1718093281927258, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3769. ,{ "pid":12345, "tid":7, "ts":1718093281927327, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/GC.h" }}
  3770. ,{ "pid":12345, "tid":7, "ts":1718093281927325, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/GC.h" }}
  3771. ,{ "pid":12345, "tid":7, "ts":1718093281927449, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3772. ,{ "pid":12345, "tid":7, "ts":1718093281927536, "dur":156, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Enum.cpp" }}
  3773. ,{ "pid":12345, "tid":7, "ts":1718093281927535, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Enum.cpp" }}
  3774. ,{ "pid":12345, "tid":7, "ts":1718093281927694, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3775. ,{ "pid":12345, "tid":7, "ts":1718093281927764, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ConsoleDriver.h" }}
  3776. ,{ "pid":12345, "tid":7, "ts":1718093281927763, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ConsoleDriver.h" }}
  3777. ,{ "pid":12345, "tid":7, "ts":1718093281927835, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3778. ,{ "pid":12345, "tid":7, "ts":1718093281927895, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Array.h" }}
  3779. ,{ "pid":12345, "tid":7, "ts":1718093281927894, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Array.h" }}
  3780. ,{ "pid":12345, "tid":7, "ts":1718093281927996, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3781. ,{ "pid":12345, "tid":7, "ts":1718093281928074, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.cpp" }}
  3782. ,{ "pid":12345, "tid":7, "ts":1718093281928072, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.cpp" }}
  3783. ,{ "pid":12345, "tid":7, "ts":1718093281928150, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3784. ,{ "pid":12345, "tid":7, "ts":1718093281928238, "dur":120, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.cpp" }}
  3785. ,{ "pid":12345, "tid":7, "ts":1718093281928236, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/NativeEventCalls.cpp" }}
  3786. ,{ "pid":12345, "tid":7, "ts":1718093281928359, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3787. ,{ "pid":12345, "tid":7, "ts":1718093281928438, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Text/Normalization.cpp" }}
  3788. ,{ "pid":12345, "tid":7, "ts":1718093281928437, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Text/Normalization.cpp" }}
  3789. ,{ "pid":12345, "tid":7, "ts":1718093281928513, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3790. ,{ "pid":12345, "tid":7, "ts":1718093281928618, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.h" }}
  3791. ,{ "pid":12345, "tid":7, "ts":1718093281928608, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.h" }}
  3792. ,{ "pid":12345, "tid":7, "ts":1718093281928692, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3793. ,{ "pid":12345, "tid":7, "ts":1718093281928790, "dur":52, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsIdentity.h" }}
  3794. ,{ "pid":12345, "tid":7, "ts":1718093281928897, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3795. ,{ "pid":12345, "tid":7, "ts":1718093281928956, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.cpp" }}
  3796. ,{ "pid":12345, "tid":7, "ts":1718093281928955, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.cpp" }}
  3797. ,{ "pid":12345, "tid":7, "ts":1718093281929066, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3798. ,{ "pid":12345, "tid":7, "ts":1718093281929139, "dur":110, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.h" }}
  3799. ,{ "pid":12345, "tid":7, "ts":1718093281929138, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/Marshal.h" }}
  3800. ,{ "pid":12345, "tid":7, "ts":1718093281929250, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3801. ,{ "pid":12345, "tid":7, "ts":1718093281929350, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3802. ,{ "pid":12345, "tid":7, "ts":1718093281929426, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.cpp" }}
  3803. ,{ "pid":12345, "tid":7, "ts":1718093281929425, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeModule.cpp" }}
  3804. ,{ "pid":12345, "tid":7, "ts":1718093281929491, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3805. ,{ "pid":12345, "tid":7, "ts":1718093281929554, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.cpp" }}
  3806. ,{ "pid":12345, "tid":7, "ts":1718093281929553, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.cpp" }}
  3807. ,{ "pid":12345, "tid":7, "ts":1718093281929741, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Module.h" }}
  3808. ,{ "pid":12345, "tid":7, "ts":1718093281929726, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Module.h" }}
  3809. ,{ "pid":12345, "tid":7, "ts":1718093281929814, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3810. ,{ "pid":12345, "tid":7, "ts":1718093281929899, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.h" }}
  3811. ,{ "pid":12345, "tid":7, "ts":1718093281929898, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/CustomAttributeData.h" }}
  3812. ,{ "pid":12345, "tid":7, "ts":1718093281930011, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3813. ,{ "pid":12345, "tid":7, "ts":1718093281930096, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/Path.cpp" }}
  3814. ,{ "pid":12345, "tid":7, "ts":1718093281930095, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/Path.cpp" }}
  3815. ,{ "pid":12345, "tid":7, "ts":1718093281930168, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3816. ,{ "pid":12345, "tid":7, "ts":1718093281930265, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.h" }}
  3817. ,{ "pid":12345, "tid":7, "ts":1718093281930264, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/RegionInfo.h" }}
  3818. ,{ "pid":12345, "tid":7, "ts":1718093281930338, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3819. ,{ "pid":12345, "tid":7, "ts":1718093281930428, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.cpp" }}
  3820. ,{ "pid":12345, "tid":7, "ts":1718093281930426, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfo.cpp" }}
  3821. ,{ "pid":12345, "tid":7, "ts":1718093281930495, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3822. ,{ "pid":12345, "tid":7, "ts":1718093281930564, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.cpp" }}
  3823. ,{ "pid":12345, "tid":7, "ts":1718093281930563, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.cpp" }}
  3824. ,{ "pid":12345, "tid":7, "ts":1718093281930633, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3825. ,{ "pid":12345, "tid":7, "ts":1718093281930693, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.h" }}
  3826. ,{ "pid":12345, "tid":7, "ts":1718093281930691, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/SafeStringMarshal.h" }}
  3827. ,{ "pid":12345, "tid":7, "ts":1718093281930757, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3828. ,{ "pid":12345, "tid":7, "ts":1718093281930828, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.cpp" }}
  3829. ,{ "pid":12345, "tid":7, "ts":1718093281930826, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeClassHandle.cpp" }}
  3830. ,{ "pid":12345, "tid":7, "ts":1718093281930901, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3831. ,{ "pid":12345, "tid":7, "ts":1718093281930987, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.h" }}
  3832. ,{ "pid":12345, "tid":7, "ts":1718093281930985, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Microsoft.Win32/NativeMethods.h" }}
  3833. ,{ "pid":12345, "tid":7, "ts":1718093281931059, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3834. ,{ "pid":12345, "tid":7, "ts":1718093281931137, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrier.cpp" }}
  3835. ,{ "pid":12345, "tid":7, "ts":1718093281931136, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrier.cpp" }}
  3836. ,{ "pid":12345, "tid":7, "ts":1718093281931231, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3837. ,{ "pid":12345, "tid":7, "ts":1718093281931306, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/AppendOnlyGCHashMap.h" }}
  3838. ,{ "pid":12345, "tid":7, "ts":1718093281931305, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/AppendOnlyGCHashMap.h" }}
  3839. ,{ "pid":12345, "tid":7, "ts":1718093281931402, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3840. ,{ "pid":12345, "tid":7, "ts":1718093281931525, "dur":109, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-il2cpp.h" }}
  3841. ,{ "pid":12345, "tid":7, "ts":1718093281931523, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-il2cpp.h" }}
  3842. ,{ "pid":12345, "tid":7, "ts":1718093281931635, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3843. ,{ "pid":12345, "tid":7, "ts":1718093281931713, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/zutil.c" }}
  3844. ,{ "pid":12345, "tid":7, "ts":1718093281931712, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/zutil.c" }}
  3845. ,{ "pid":12345, "tid":7, "ts":1718093281931783, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3846. ,{ "pid":12345, "tid":7, "ts":1718093281931843, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inftrees.h" }}
  3847. ,{ "pid":12345, "tid":7, "ts":1718093281931842, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inftrees.h" }}
  3848. ,{ "pid":12345, "tid":7, "ts":1718093281931924, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3849. ,{ "pid":12345, "tid":7, "ts":1718093281931995, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/infback.c" }}
  3850. ,{ "pid":12345, "tid":7, "ts":1718093281932046, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3851. ,{ "pid":12345, "tid":7, "ts":1718093281932156, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/deflate.c" }}
  3852. ,{ "pid":12345, "tid":7, "ts":1718093281932154, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/deflate.c" }}
  3853. ,{ "pid":12345, "tid":7, "ts":1718093281932278, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/README.md" }}
  3854. ,{ "pid":12345, "tid":7, "ts":1718093281932335, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3855. ,{ "pid":12345, "tid":7, "ts":1718093281932422, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/logger.h" }}
  3856. ,{ "pid":12345, "tid":7, "ts":1718093281932421, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/logger.h" }}
  3857. ,{ "pid":12345, "tid":7, "ts":1718093281932542, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3858. ,{ "pid":12345, "tid":7, "ts":1718093281932620, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/w32api.h" }}
  3859. ,{ "pid":12345, "tid":7, "ts":1718093281932619, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/w32api.h" }}
  3860. ,{ "pid":12345, "tid":7, "ts":1718093281932689, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3861. ,{ "pid":12345, "tid":7, "ts":1718093281932773, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/refcount.h" }}
  3862. ,{ "pid":12345, "tid":7, "ts":1718093281932772, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/refcount.h" }}
  3863. ,{ "pid":12345, "tid":7, "ts":1718093281932830, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3864. ,{ "pid":12345, "tid":7, "ts":1718093281932914, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking.h" }}
  3865. ,{ "pid":12345, "tid":7, "ts":1718093281932913, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking.h" }}
  3866. ,{ "pid":12345, "tid":7, "ts":1718093281933002, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3867. ,{ "pid":12345, "tid":7, "ts":1718093281933089, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/monobitset.c" }}
  3868. ,{ "pid":12345, "tid":7, "ts":1718093281933088, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/monobitset.c" }}
  3869. ,{ "pid":12345, "tid":7, "ts":1718093281933154, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3870. ,{ "pid":12345, "tid":7, "ts":1718093281933246, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-tls-inline.h" }}
  3871. ,{ "pid":12345, "tid":7, "ts":1718093281933245, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-tls-inline.h" }}
  3872. ,{ "pid":12345, "tid":7, "ts":1718093281933321, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3873. ,{ "pid":12345, "tid":7, "ts":1718093281933400, "dur":720, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-posix.c" }}
  3874. ,{ "pid":12345, "tid":7, "ts":1718093281933399, "dur":721, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-posix.c" }}
  3875. ,{ "pid":12345, "tid":7, "ts":1718093281934120, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3876. ,{ "pid":12345, "tid":7, "ts":1718093281934234, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-coop.c" }}
  3877. ,{ "pid":12345, "tid":7, "ts":1718093281934233, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-coop.c" }}
  3878. ,{ "pid":12345, "tid":7, "ts":1718093281934350, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3879. ,{ "pid":12345, "tid":7, "ts":1718093281934430, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-signal-handler.h" }}
  3880. ,{ "pid":12345, "tid":7, "ts":1718093281934429, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-signal-handler.h" }}
  3881. ,{ "pid":12345, "tid":7, "ts":1718093281934502, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3882. ,{ "pid":12345, "tid":7, "ts":1718093281934600, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-property-hash.c" }}
  3883. ,{ "pid":12345, "tid":7, "ts":1718093281934599, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-property-hash.c" }}
  3884. ,{ "pid":12345, "tid":7, "ts":1718093281934688, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3885. ,{ "pid":12345, "tid":7, "ts":1718093281934798, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-path.c" }}
  3886. ,{ "pid":12345, "tid":7, "ts":1718093281934796, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-path.c" }}
  3887. ,{ "pid":12345, "tid":7, "ts":1718093281934859, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3888. ,{ "pid":12345, "tid":7, "ts":1718093281934947, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-once.h" }}
  3889. ,{ "pid":12345, "tid":7, "ts":1718093281934946, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-once.h" }}
  3890. ,{ "pid":12345, "tid":7, "ts":1718093281935010, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3891. ,{ "pid":12345, "tid":7, "ts":1718093281935086, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-mmap-windows-internals.h" }}
  3892. ,{ "pid":12345, "tid":7, "ts":1718093281935085, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-mmap-windows-internals.h" }}
  3893. ,{ "pid":12345, "tid":7, "ts":1718093281935183, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3894. ,{ "pid":12345, "tid":7, "ts":1718093281935257, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-machine.h" }}
  3895. ,{ "pid":12345, "tid":7, "ts":1718093281935255, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-machine.h" }}
  3896. ,{ "pid":12345, "tid":7, "ts":1718093281935318, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3897. ,{ "pid":12345, "tid":7, "ts":1718093281935391, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-darwin.c" }}
  3898. ,{ "pid":12345, "tid":7, "ts":1718093281935390, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-darwin.c" }}
  3899. ,{ "pid":12345, "tid":7, "ts":1718093281935454, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3900. ,{ "pid":12345, "tid":7, "ts":1718093281935540, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-internal-hash.h" }}
  3901. ,{ "pid":12345, "tid":7, "ts":1718093281935539, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-internal-hash.h" }}
  3902. ,{ "pid":12345, "tid":7, "ts":1718093281935614, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3903. ,{ "pid":12345, "tid":7, "ts":1718093281935718, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-arm.c" }}
  3904. ,{ "pid":12345, "tid":7, "ts":1718093281935717, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-arm.c" }}
  3905. ,{ "pid":12345, "tid":7, "ts":1718093281935791, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3906. ,{ "pid":12345, "tid":7, "ts":1718093281935877, "dur":103, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-errno.h" }}
  3907. ,{ "pid":12345, "tid":7, "ts":1718093281935875, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-errno.h" }}
  3908. ,{ "pid":12345, "tid":7, "ts":1718093281936065, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows-internals.h" }}
  3909. ,{ "pid":12345, "tid":7, "ts":1718093281936056, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows-internals.h" }}
  3910. ,{ "pid":12345, "tid":7, "ts":1718093281936151, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3911. ,{ "pid":12345, "tid":7, "ts":1718093281936232, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-coop-semaphore.h" }}
  3912. ,{ "pid":12345, "tid":7, "ts":1718093281936230, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-coop-semaphore.h" }}
  3913. ,{ "pid":12345, "tid":7, "ts":1718093281936309, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3914. ,{ "pid":12345, "tid":7, "ts":1718093281936400, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-codeman.h" }}
  3915. ,{ "pid":12345, "tid":7, "ts":1718093281936399, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-codeman.h" }}
  3916. ,{ "pid":12345, "tid":7, "ts":1718093281936465, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3917. ,{ "pid":12345, "tid":7, "ts":1718093281936580, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3918. ,{ "pid":12345, "tid":7, "ts":1718093281936669, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/lock-free-array-queue.c" }}
  3919. ,{ "pid":12345, "tid":7, "ts":1718093281936668, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/lock-free-array-queue.c" }}
  3920. ,{ "pid":12345, "tid":7, "ts":1718093281936771, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3921. ,{ "pid":12345, "tid":7, "ts":1718093281936854, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/hazard-pointer.h" }}
  3922. ,{ "pid":12345, "tid":7, "ts":1718093281936853, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/hazard-pointer.h" }}
  3923. ,{ "pid":12345, "tid":7, "ts":1718093281936910, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3924. ,{ "pid":12345, "tid":7, "ts":1718093281936983, "dur":122, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/dtrace.h" }}
  3925. ,{ "pid":12345, "tid":7, "ts":1718093281936982, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/dtrace.h" }}
  3926. ,{ "pid":12345, "tid":7, "ts":1718093281937106, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3927. ,{ "pid":12345, "tid":7, "ts":1718093281937195, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/atomic.c" }}
  3928. ,{ "pid":12345, "tid":7, "ts":1718093281937194, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/atomic.c" }}
  3929. ,{ "pid":12345, "tid":7, "ts":1718093281937275, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3930. ,{ "pid":12345, "tid":7, "ts":1718093281937349, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-simple-nursery.c" }}
  3931. ,{ "pid":12345, "tid":7, "ts":1718093281937348, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-simple-nursery.c" }}
  3932. ,{ "pid":12345, "tid":7, "ts":1718093281937447, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3933. ,{ "pid":12345, "tid":7, "ts":1718093281937572, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pointer-queue.h" }}
  3934. ,{ "pid":12345, "tid":7, "ts":1718093281937571, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pointer-queue.h" }}
  3935. ,{ "pid":12345, "tid":7, "ts":1718093281937671, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3936. ,{ "pid":12345, "tid":7, "ts":1718093281937748, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-memory-governor.h" }}
  3937. ,{ "pid":12345, "tid":7, "ts":1718093281937747, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-memory-governor.h" }}
  3938. ,{ "pid":12345, "tid":7, "ts":1718093281937806, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3939. ,{ "pid":12345, "tid":7, "ts":1718093281937887, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-layout-stats.c" }}
  3940. ,{ "pid":12345, "tid":7, "ts":1718093281937885, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-layout-stats.c" }}
  3941. ,{ "pid":12345, "tid":7, "ts":1718093281937949, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3942. ,{ "pid":12345, "tid":7, "ts":1718093281938049, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-gc.h" }}
  3943. ,{ "pid":12345, "tid":7, "ts":1718093281938047, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-gc.h" }}
  3944. ,{ "pid":12345, "tid":7, "ts":1718093281938125, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3945. ,{ "pid":12345, "tid":7, "ts":1718093281938209, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-conf.h" }}
  3946. ,{ "pid":12345, "tid":7, "ts":1718093281938208, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-conf.h" }}
  3947. ,{ "pid":12345, "tid":7, "ts":1718093281938290, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3948. ,{ "pid":12345, "tid":7, "ts":1718093281938372, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-alloc.c" }}
  3949. ,{ "pid":12345, "tid":7, "ts":1718093281938371, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-alloc.c" }}
  3950. ,{ "pid":12345, "tid":7, "ts":1718093281938442, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3951. ,{ "pid":12345, "tid":7, "ts":1718093281938508, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-engine.c" }}
  3952. ,{ "pid":12345, "tid":7, "ts":1718093281938508, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-engine.c" }}
  3953. ,{ "pid":12345, "tid":7, "ts":1718093281938582, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3954. ,{ "pid":12345, "tid":7, "ts":1718093281938667, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32socket-unix.c" }}
  3955. ,{ "pid":12345, "tid":7, "ts":1718093281938666, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32socket-unix.c" }}
  3956. ,{ "pid":12345, "tid":7, "ts":1718093281938731, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3957. ,{ "pid":12345, "tid":7, "ts":1718093281938819, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process.c" }}
  3958. ,{ "pid":12345, "tid":7, "ts":1718093281938818, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process.c" }}
  3959. ,{ "pid":12345, "tid":7, "ts":1718093281938897, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3960. ,{ "pid":12345, "tid":7, "ts":1718093281938988, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex.h" }}
  3961. ,{ "pid":12345, "tid":7, "ts":1718093281938987, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex.h" }}
  3962. ,{ "pid":12345, "tid":7, "ts":1718093281939089, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3963. ,{ "pid":12345, "tid":7, "ts":1718093281939190, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file.h" }}
  3964. ,{ "pid":12345, "tid":7, "ts":1718093281939183, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file.h" }}
  3965. ,{ "pid":12345, "tid":7, "ts":1718093281939256, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3966. ,{ "pid":12345, "tid":7, "ts":1718093281939333, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-internals.h" }}
  3967. ,{ "pid":12345, "tid":7, "ts":1718093281939331, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-internals.h" }}
  3968. ,{ "pid":12345, "tid":7, "ts":1718093281939398, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3969. ,{ "pid":12345, "tid":7, "ts":1718093281939470, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32error-unix.c" }}
  3970. ,{ "pid":12345, "tid":7, "ts":1718093281939469, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32error-unix.c" }}
  3971. ,{ "pid":12345, "tid":7, "ts":1718093281939572, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3972. ,{ "pid":12345, "tid":7, "ts":1718093281939640, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/unity-icall.c" }}
  3973. ,{ "pid":12345, "tid":7, "ts":1718093281939639, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/unity-icall.c" }}
  3974. ,{ "pid":12345, "tid":7, "ts":1718093281939733, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3975. ,{ "pid":12345, "tid":7, "ts":1718093281939799, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-worker.h" }}
  3976. ,{ "pid":12345, "tid":7, "ts":1718093281939797, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-worker.h" }}
  3977. ,{ "pid":12345, "tid":7, "ts":1718093281939876, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3978. ,{ "pid":12345, "tid":7, "ts":1718093281939958, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/string-icalls.h" }}
  3979. ,{ "pid":12345, "tid":7, "ts":1718093281939956, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/string-icalls.h" }}
  3980. ,{ "pid":12345, "tid":7, "ts":1718093281940022, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3981. ,{ "pid":12345, "tid":7, "ts":1718093281940096, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-toggleref.c" }}
  3982. ,{ "pid":12345, "tid":7, "ts":1718093281940095, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-toggleref.c" }}
  3983. ,{ "pid":12345, "tid":7, "ts":1718093281940160, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3984. ,{ "pid":12345, "tid":7, "ts":1718093281940227, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-client-mono.h" }}
  3985. ,{ "pid":12345, "tid":7, "ts":1718093281940226, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-client-mono.h" }}
  3986. ,{ "pid":12345, "tid":7, "ts":1718093281940286, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3987. ,{ "pid":12345, "tid":7, "ts":1718093281940365, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security.h" }}
  3988. ,{ "pid":12345, "tid":7, "ts":1718093281940364, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security.h" }}
  3989. ,{ "pid":12345, "tid":7, "ts":1718093281940441, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3990. ,{ "pid":12345, "tid":7, "ts":1718093281940517, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/runtime.c" }}
  3991. ,{ "pid":12345, "tid":7, "ts":1718093281940516, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/runtime.c" }}
  3992. ,{ "pid":12345, "tid":7, "ts":1718093281940605, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3993. ,{ "pid":12345, "tid":7, "ts":1718093281940699, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/rand.h" }}
  3994. ,{ "pid":12345, "tid":7, "ts":1718093281940697, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/rand.h" }}
  3995. ,{ "pid":12345, "tid":7, "ts":1718093281940765, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3996. ,{ "pid":12345, "tid":7, "ts":1718093281940841, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/profiler-legacy.h" }}
  3997. ,{ "pid":12345, "tid":7, "ts":1718093281940839, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/profiler-legacy.h" }}
  3998. ,{ "pid":12345, "tid":7, "ts":1718093281940923, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  3999. ,{ "pid":12345, "tid":7, "ts":1718093281940983, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/opcodes.c" }}
  4000. ,{ "pid":12345, "tid":7, "ts":1718093281940982, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/opcodes.c" }}
  4001. ,{ "pid":12345, "tid":7, "ts":1718093281941054, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4002. ,{ "pid":12345, "tid":7, "ts":1718093281941140, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/number-ms.c" }}
  4003. ,{ "pid":12345, "tid":7, "ts":1718093281941138, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/number-ms.c" }}
  4004. ,{ "pid":12345, "tid":7, "ts":1718093281941218, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4005. ,{ "pid":12345, "tid":7, "ts":1718093281941303, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-security-windows-internals.h" }}
  4006. ,{ "pid":12345, "tid":7, "ts":1718093281941302, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-security-windows-internals.h" }}
  4007. ,{ "pid":12345, "tid":7, "ts":1718093281941375, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4008. ,{ "pid":12345, "tid":7, "ts":1718093281941460, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-mlist.h" }}
  4009. ,{ "pid":12345, "tid":7, "ts":1718093281941460, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-mlist.h" }}
  4010. ,{ "pid":12345, "tid":7, "ts":1718093281941545, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4011. ,{ "pid":12345, "tid":7, "ts":1718093281941633, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-endian.c" }}
  4012. ,{ "pid":12345, "tid":7, "ts":1718093281941632, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-endian.c" }}
  4013. ,{ "pid":12345, "tid":7, "ts":1718093281941712, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4014. ,{ "pid":12345, "tid":7, "ts":1718093281941789, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-conc-hash.h" }}
  4015. ,{ "pid":12345, "tid":7, "ts":1718093281941788, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-conc-hash.h" }}
  4016. ,{ "pid":12345, "tid":7, "ts":1718093281941877, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4017. ,{ "pid":12345, "tid":7, "ts":1718093281941953, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/method-builder.c" }}
  4018. ,{ "pid":12345, "tid":7, "ts":1718093281941953, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/method-builder.c" }}
  4019. ,{ "pid":12345, "tid":7, "ts":1718093281942040, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4020. ,{ "pid":12345, "tid":7, "ts":1718093281942127, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mempool.c" }}
  4021. ,{ "pid":12345, "tid":7, "ts":1718093281942126, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mempool.c" }}
  4022. ,{ "pid":12345, "tid":7, "ts":1718093281942187, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4023. ,{ "pid":12345, "tid":7, "ts":1718093281942274, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal-windows-internals.h" }}
  4024. ,{ "pid":12345, "tid":7, "ts":1718093281942273, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal-windows-internals.h" }}
  4025. ,{ "pid":12345, "tid":7, "ts":1718093281942353, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4026. ,{ "pid":12345, "tid":7, "ts":1718093281942435, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/loader.c" }}
  4027. ,{ "pid":12345, "tid":7, "ts":1718093281942434, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/loader.c" }}
  4028. ,{ "pid":12345, "tid":7, "ts":1718093281942502, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4029. ,{ "pid":12345, "tid":7, "ts":1718093281942580, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icalls.h" }}
  4030. ,{ "pid":12345, "tid":7, "ts":1718093281942579, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icalls.h" }}
  4031. ,{ "pid":12345, "tid":7, "ts":1718093281942664, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4032. ,{ "pid":12345, "tid":7, "ts":1718093281942746, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/handle.c" }}
  4033. ,{ "pid":12345, "tid":7, "ts":1718093281942745, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/handle.c" }}
  4034. ,{ "pid":12345, "tid":7, "ts":1718093281942814, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4035. ,{ "pid":12345, "tid":7, "ts":1718093281942892, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/file-mmap-windows.c" }}
  4036. ,{ "pid":12345, "tid":7, "ts":1718093281942892, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/file-mmap-windows.c" }}
  4037. ,{ "pid":12345, "tid":7, "ts":1718093281942969, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4038. ,{ "pid":12345, "tid":7, "ts":1718093281943042, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception-internals.h" }}
  4039. ,{ "pid":12345, "tid":7, "ts":1718093281943041, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception-internals.h" }}
  4040. ,{ "pid":12345, "tid":7, "ts":1718093281943128, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4041. ,{ "pid":12345, "tid":7, "ts":1718093281943228, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/decimal-ms.h" }}
  4042. ,{ "pid":12345, "tid":7, "ts":1718093281943227, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/decimal-ms.h" }}
  4043. ,{ "pid":12345, "tid":7, "ts":1718093281943315, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4044. ,{ "pid":12345, "tid":7, "ts":1718093281943380, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-internals.h" }}
  4045. ,{ "pid":12345, "tid":7, "ts":1718093281943378, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-internals.h" }}
  4046. ,{ "pid":12345, "tid":7, "ts":1718093281943477, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4047. ,{ "pid":12345, "tid":7, "ts":1718093281943608, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/coree.h" }}
  4048. ,{ "pid":12345, "tid":7, "ts":1718093281943606, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/coree.h" }}
  4049. ,{ "pid":12345, "tid":7, "ts":1718093281943705, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4050. ,{ "pid":12345, "tid":7, "ts":1718093281943830, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/cominterop.c" }}
  4051. ,{ "pid":12345, "tid":7, "ts":1718093281943828, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/cominterop.c" }}
  4052. ,{ "pid":12345, "tid":7, "ts":1718093281943920, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4053. ,{ "pid":12345, "tid":7, "ts":1718093281944030, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/callspec.h" }}
  4054. ,{ "pid":12345, "tid":7, "ts":1718093281944028, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/callspec.h" }}
  4055. ,{ "pid":12345, "tid":7, "ts":1718093281944104, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4056. ,{ "pid":12345, "tid":7, "ts":1718093281944237, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4057. ,{ "pid":12345, "tid":7, "ts":1718093281944389, "dur":164, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/unicode-data.h" }}
  4058. ,{ "pid":12345, "tid":7, "ts":1718093281944387, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/unicode-data.h" }}
  4059. ,{ "pid":12345, "tid":7, "ts":1718093281944554, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4060. ,{ "pid":12345, "tid":7, "ts":1718093281944657, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gstr.c" }}
  4061. ,{ "pid":12345, "tid":7, "ts":1718093281944654, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gstr.c" }}
  4062. ,{ "pid":12345, "tid":7, "ts":1718093281944713, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4063. ,{ "pid":12345, "tid":7, "ts":1718093281944786, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gpattern.c" }}
  4064. ,{ "pid":12345, "tid":7, "ts":1718093281944784, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gpattern.c" }}
  4065. ,{ "pid":12345, "tid":7, "ts":1718093281944856, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4066. ,{ "pid":12345, "tid":7, "ts":1718093281944947, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/glist.c" }}
  4067. ,{ "pid":12345, "tid":7, "ts":1718093281944945, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/glist.c" }}
  4068. ,{ "pid":12345, "tid":7, "ts":1718093281945014, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4069. ,{ "pid":12345, "tid":7, "ts":1718093281945108, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gdate-unity.c" }}
  4070. ,{ "pid":12345, "tid":7, "ts":1718093281945106, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gdate-unity.c" }}
  4071. ,{ "pid":12345, "tid":7, "ts":1718093281945180, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4072. ,{ "pid":12345, "tid":7, "ts":1718093281945263, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/arm64/arm64-codegen.h" }}
  4073. ,{ "pid":12345, "tid":7, "ts":1718093281945261, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/arm64/arm64-codegen.h" }}
  4074. ,{ "pid":12345, "tid":7, "ts":1718093281945335, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4075. ,{ "pid":12345, "tid":7, "ts":1718093281945428, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/template_util.h" }}
  4076. ,{ "pid":12345, "tid":7, "ts":1718093281945425, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/template_util.h" }}
  4077. ,{ "pid":12345, "tid":7, "ts":1718093281945505, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4078. ,{ "pid":12345, "tid":7, "ts":1718093281945598, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/hashtable-common.h" }}
  4079. ,{ "pid":12345, "tid":7, "ts":1718093281945597, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/hashtable-common.h" }}
  4080. ,{ "pid":12345, "tid":7, "ts":1718093281945680, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4081. ,{ "pid":12345, "tid":7, "ts":1718093281945744, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/vector_mlc.c" }}
  4082. ,{ "pid":12345, "tid":7, "ts":1718093281945743, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/vector_mlc.c" }}
  4083. ,{ "pid":12345, "tid":7, "ts":1718093281945853, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4084. ,{ "pid":12345, "tid":7, "ts":1718093281945959, "dur":355, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/trace_test.c" }}
  4085. ,{ "pid":12345, "tid":7, "ts":1718093281945957, "dur":358, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/trace_test.c" }}
  4086. ,{ "pid":12345, "tid":7, "ts":1718093281946316, "dur":179, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4087. ,{ "pid":12345, "tid":7, "ts":1718093281946505, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/staticrootslib.c" }}
  4088. ,{ "pid":12345, "tid":7, "ts":1718093281946504, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/staticrootslib.c" }}
  4089. ,{ "pid":12345, "tid":7, "ts":1718093281946579, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4090. ,{ "pid":12345, "tid":7, "ts":1718093281946674, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/disclaim_test.c" }}
  4091. ,{ "pid":12345, "tid":7, "ts":1718093281946673, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/disclaim_test.c" }}
  4092. ,{ "pid":12345, "tid":7, "ts":1718093281946758, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4093. ,{ "pid":12345, "tid":7, "ts":1718093281946846, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_start.c" }}
  4094. ,{ "pid":12345, "tid":7, "ts":1718093281946845, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_start.c" }}
  4095. ,{ "pid":12345, "tid":7, "ts":1718093281946926, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4096. ,{ "pid":12345, "tid":7, "ts":1718093281946998, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mallocx.c" }}
  4097. ,{ "pid":12345, "tid":7, "ts":1718093281946997, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mallocx.c" }}
  4098. ,{ "pid":12345, "tid":7, "ts":1718093281947057, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4099. ,{ "pid":12345, "tid":7, "ts":1718093281947142, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/x86.h" }}
  4100. ,{ "pid":12345, "tid":7, "ts":1718093281947140, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/x86.h" }}
  4101. ,{ "pid":12345, "tid":7, "ts":1718093281947226, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4102. ,{ "pid":12345, "tid":7, "ts":1718093281947313, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered.h" }}
  4103. ,{ "pid":12345, "tid":7, "ts":1718093281947311, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ordered.h" }}
  4104. ,{ "pid":12345, "tid":7, "ts":1718093281947366, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4105. ,{ "pid":12345, "tid":7, "ts":1718093281947432, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_acquire_release_volatile.h" }}
  4106. ,{ "pid":12345, "tid":7, "ts":1718093281947430, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/short_acquire_release_volatile.h" }}
  4107. ,{ "pid":12345, "tid":7, "ts":1718093281947503, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4108. ,{ "pid":12345, "tid":7, "ts":1718093281947626, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_store.h" }}
  4109. ,{ "pid":12345, "tid":7, "ts":1718093281947623, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/atomic_store.h" }}
  4110. ,{ "pid":12345, "tid":7, "ts":1718093281947683, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4111. ,{ "pid":12345, "tid":7, "ts":1718093281947781, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/generic_pthread.h" }}
  4112. ,{ "pid":12345, "tid":7, "ts":1718093281947778, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/generic_pthread.h" }}
  4113. ,{ "pid":12345, "tid":7, "ts":1718093281947870, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4114. ,{ "pid":12345, "tid":7, "ts":1718093281947964, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/m68k.h" }}
  4115. ,{ "pid":12345, "tid":7, "ts":1718093281947955, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/m68k.h" }}
  4116. ,{ "pid":12345, "tid":7, "ts":1718093281948057, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-small.h" }}
  4117. ,{ "pid":12345, "tid":7, "ts":1718093281948055, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-small.h" }}
  4118. ,{ "pid":12345, "tid":7, "ts":1718093281948125, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4119. ,{ "pid":12345, "tid":7, "ts":1718093281948198, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/emul_cas.h" }}
  4120. ,{ "pid":12345, "tid":7, "ts":1718093281948196, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/emul_cas.h" }}
  4121. ,{ "pid":12345, "tid":7, "ts":1718093281948272, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4122. ,{ "pid":12345, "tid":7, "ts":1718093281948342, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_acquire_release_volatile.h" }}
  4123. ,{ "pid":12345, "tid":7, "ts":1718093281948340, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/all_acquire_release_volatile.h" }}
  4124. ,{ "pid":12345, "tid":7, "ts":1718093281948399, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4125. ,{ "pid":12345, "tid":7, "ts":1718093281948598, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.TextCoreFontEngineModule.dll" }}
  4126. ,{ "pid":12345, "tid":7, "ts":1718093281948702, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  4127. ,{ "pid":12345, "tid":7, "ts":1718093281949034, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.dll" }}
  4128. ,{ "pid":12345, "tid":7, "ts":1718093281948596, "dur":585, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.TextCoreFontEngineModule-FeaturesChecked.txt" }}
  4129. ,{ "pid":12345, "tid":7, "ts":1718093281949245, "dur":115, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.Purchasing.WinRTCore.dll" }}
  4130. ,{ "pid":12345, "tid":7, "ts":1718093281949244, "dur":250, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.Purchasing.WinRTCore-FeaturesChecked.txt" }}
  4131. ,{ "pid":12345, "tid":7, "ts":1718093281949518, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/GoogleMobileAds.Ump.iOS.dll" }}
  4132. ,{ "pid":12345, "tid":7, "ts":1718093281949700, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  4133. ,{ "pid":12345, "tid":7, "ts":1718093281949855, "dur":59, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.DotNet.dll" }}
  4134. ,{ "pid":12345, "tid":7, "ts":1718093281949517, "dur":472, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/GoogleMobileAds.Ump.iOS-FeaturesChecked.txt" }}
  4135. ,{ "pid":12345, "tid":7, "ts":1718093281950049, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UIModule.dll" }}
  4136. ,{ "pid":12345, "tid":7, "ts":1718093281950188, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.Core.dll" }}
  4137. ,{ "pid":12345, "tid":7, "ts":1718093281950289, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.CSharpSupport.dll" }}
  4138. ,{ "pid":12345, "tid":7, "ts":1718093281950048, "dur":459, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UIModule-FeaturesChecked.txt" }}
  4139. ,{ "pid":12345, "tid":7, "ts":1718093281950576, "dur":344, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Newtonsoft.Json.dll" }}
  4140. ,{ "pid":12345, "tid":7, "ts":1718093281950573, "dur":484, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Newtonsoft.Json-FeaturesChecked.txt" }}
  4141. ,{ "pid":12345, "tid":7, "ts":1718093281951093, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.UnityWebRequestModule.dll" }}
  4142. ,{ "pid":12345, "tid":7, "ts":1718093281951091, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.UnityWebRequestModule-FeaturesChecked.txt" }}
  4143. ,{ "pid":12345, "tid":7, "ts":1718093281951269, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.ImageConversionModule-FeaturesChecked.txt" }}
  4144. ,{ "pid":12345, "tid":7, "ts":1718093281951471, "dur":314314, "ph":"X", "name": "ExtractUsedFeatures", "args": { "detail":"Library/Bee/artifacts/iOS/Features/UnityEngine.ImageConversionModule-FeaturesChecked.txt" }}
  4145. ,{ "pid":12345, "tid":7, "ts":1718093282266221, "dur":9472202, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4146. ,{ "pid":12345, "tid":7, "ts":1718093291738439, "dur":1672354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4147. ,{ "pid":12345, "tid":8, "ts":1718093281795625, "dur":83486, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
  4148. ,{ "pid":12345, "tid":8, "ts":1718093281879112, "dur":974, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4149. ,{ "pid":12345, "tid":8, "ts":1718093281880087, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4150. ,{ "pid":12345, "tid":8, "ts":1718093281881127, "dur":955, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4151. ,{ "pid":12345, "tid":8, "ts":1718093281882082, "dur":957, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4152. ,{ "pid":12345, "tid":8, "ts":1718093281883039, "dur":1102, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
  4153. ,{ "pid":12345, "tid":8, "ts":1718093281884141, "dur":22572, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4154. ,{ "pid":12345, "tid":8, "ts":1718093281906731, "dur":50, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/csharpactions/UnityEngine.UIModule-FeaturesChecked.txt_9bym.info" }}
  4155. ,{ "pid":12345, "tid":8, "ts":1718093281906929, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4156. ,{ "pid":12345, "tid":8, "ts":1718093281907083, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4157. ,{ "pid":12345, "tid":8, "ts":1718093281907206, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4158. ,{ "pid":12345, "tid":8, "ts":1718093281907273, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4159. ,{ "pid":12345, "tid":8, "ts":1718093281907401, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4160. ,{ "pid":12345, "tid":8, "ts":1718093281907497, "dur":175, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4161. ,{ "pid":12345, "tid":8, "ts":1718093281907685, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4162. ,{ "pid":12345, "tid":8, "ts":1718093281907843, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4163. ,{ "pid":12345, "tid":8, "ts":1718093281908047, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4164. ,{ "pid":12345, "tid":8, "ts":1718093281908361, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/armv7-apple-ios.swiftmodule" }}
  4165. ,{ "pid":12345, "tid":8, "ts":1718093281908433, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4166. ,{ "pid":12345, "tid":8, "ts":1718093281908582, "dur":150, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSBannerError.h" }}
  4167. ,{ "pid":12345, "tid":8, "ts":1718093281908577, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSBannerError.h" }}
  4168. ,{ "pid":12345, "tid":8, "ts":1718093281908734, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4169. ,{ "pid":12345, "tid":8, "ts":1718093281908886, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Modules/UnityAds.swiftmodule/arm64-apple-ios.swiftdoc" }}
  4170. ,{ "pid":12345, "tid":8, "ts":1718093281908988, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4171. ,{ "pid":12345, "tid":8, "ts":1718093281909107, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4172. ,{ "pid":12345, "tid":8, "ts":1718093281909216, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorageAggregator.h" }}
  4173. ,{ "pid":12345, "tid":8, "ts":1718093281909215, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/USRVJsonStorageAggregator.h" }}
  4174. ,{ "pid":12345, "tid":8, "ts":1718093281909365, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4175. ,{ "pid":12345, "tid":8, "ts":1718093281909535, "dur":193, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityServices.h" }}
  4176. ,{ "pid":12345, "tid":8, "ts":1718093281909534, "dur":195, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityServices.h" }}
  4177. ,{ "pid":12345, "tid":8, "ts":1718093281909729, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4178. ,{ "pid":12345, "tid":8, "ts":1718093281909868, "dur":145, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowDelegate.h" }}
  4179. ,{ "pid":12345, "tid":8, "ts":1718093281909868, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsShowDelegate.h" }}
  4180. ,{ "pid":12345, "tid":8, "ts":1718093281910014, "dur":190, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4181. ,{ "pid":12345, "tid":8, "ts":1718093281910210, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAdsExtendedDelegate.h" }}
  4182. ,{ "pid":12345, "tid":8, "ts":1718093281910209, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAdsExtendedDelegate.h" }}
  4183. ,{ "pid":12345, "tid":8, "ts":1718093281910334, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4184. ,{ "pid":12345, "tid":8, "ts":1718093281910568, "dur":144, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UnityAds-Swift.h" }}
  4185. ,{ "pid":12345, "tid":8, "ts":1718093281910567, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UnityAds-Swift.h" }}
  4186. ,{ "pid":12345, "tid":8, "ts":1718093281910714, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4187. ,{ "pid":12345, "tid":8, "ts":1718093281910893, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  4188. ,{ "pid":12345, "tid":8, "ts":1718093281910892, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UMONItem.h" }}
  4189. ,{ "pid":12345, "tid":8, "ts":1718093281911020, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4190. ,{ "pid":12345, "tid":8, "ts":1718093281911107, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAds.framework/Headers/UADSMediationMetaData.h" }}
  4191. ,{ "pid":12345, "tid":8, "ts":1718093281911106, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Frameworks/com.unity.ads/Plugins/iOS/UnityAds.framework/Headers/UADSMediationMetaData.h" }}
  4192. ,{ "pid":12345, "tid":8, "ts":1718093281911177, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4193. ,{ "pid":12345, "tid":8, "ts":1718093281911359, "dur":180, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/NativeSymbol.cpp" }}
  4194. ,{ "pid":12345, "tid":8, "ts":1718093281911358, "dur":182, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/NativeSymbol.cpp" }}
  4195. ,{ "pid":12345, "tid":8, "ts":1718093281911540, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4196. ,{ "pid":12345, "tid":8, "ts":1718093281911608, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.cpp" }}
  4197. ,{ "pid":12345, "tid":8, "ts":1718093281911606, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/icalls/mscorlib/System.Threading/Interlocked.cpp" }}
  4198. ,{ "pid":12345, "tid":8, "ts":1718093281911687, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4199. ,{ "pid":12345, "tid":8, "ts":1718093281911763, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/vm-utils/Debugger.cpp" }}
  4200. ,{ "pid":12345, "tid":8, "ts":1718093281911761, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/vm-utils/Debugger.cpp" }}
  4201. ,{ "pid":12345, "tid":8, "ts":1718093281911891, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4202. ,{ "pid":12345, "tid":8, "ts":1718093281911973, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/utf8-cpp/source/utf8.h" }}
  4203. ,{ "pid":12345, "tid":8, "ts":1718093281911972, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/utf8-cpp/source/utf8.h" }}
  4204. ,{ "pid":12345, "tid":8, "ts":1718093281912111, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4205. ,{ "pid":12345, "tid":8, "ts":1718093281912394, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/PathUtils.cpp" }}
  4206. ,{ "pid":12345, "tid":8, "ts":1718093281912392, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/PathUtils.cpp" }}
  4207. ,{ "pid":12345, "tid":8, "ts":1718093281912513, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/mono-structs.cpp" }}
  4208. ,{ "pid":12345, "tid":8, "ts":1718093281912512, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/mono-structs.cpp" }}
  4209. ,{ "pid":12345, "tid":8, "ts":1718093281912587, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4210. ,{ "pid":12345, "tid":8, "ts":1718093281912680, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/MemoryPool.h" }}
  4211. ,{ "pid":12345, "tid":8, "ts":1718093281912679, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/MemoryPool.h" }}
  4212. ,{ "pid":12345, "tid":8, "ts":1718093281912772, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4213. ,{ "pid":12345, "tid":8, "ts":1718093281912903, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Memory.cpp" }}
  4214. ,{ "pid":12345, "tid":8, "ts":1718093281912901, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Memory.cpp" }}
  4215. ,{ "pid":12345, "tid":8, "ts":1718093281913011, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4216. ,{ "pid":12345, "tid":8, "ts":1718093281913099, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/KeyWrapper.h" }}
  4217. ,{ "pid":12345, "tid":8, "ts":1718093281913097, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/KeyWrapper.h" }}
  4218. ,{ "pid":12345, "tid":8, "ts":1718093281913170, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4219. ,{ "pid":12345, "tid":8, "ts":1718093281913252, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/Functional.h" }}
  4220. ,{ "pid":12345, "tid":8, "ts":1718093281913251, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/Functional.h" }}
  4221. ,{ "pid":12345, "tid":8, "ts":1718093281913388, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4222. ,{ "pid":12345, "tid":8, "ts":1718093281913533, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4223. ,{ "pid":12345, "tid":8, "ts":1718093281913630, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/utils/CallOnce.h" }}
  4224. ,{ "pid":12345, "tid":8, "ts":1718093281913628, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/utils/CallOnce.h" }}
  4225. ,{ "pid":12345, "tid":8, "ts":1718093281913701, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4226. ,{ "pid":12345, "tid":8, "ts":1718093281913822, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4227. ,{ "pid":12345, "tid":8, "ts":1718093281913908, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Win32ApiSharedEmulation.cpp" }}
  4228. ,{ "pid":12345, "tid":8, "ts":1718093281913908, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Win32ApiSharedEmulation.cpp" }}
  4229. ,{ "pid":12345, "tid":8, "ts":1718093281913965, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4230. ,{ "pid":12345, "tid":8, "ts":1718093281914041, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WinRT/Locale.cpp" }}
  4231. ,{ "pid":12345, "tid":8, "ts":1718093281914039, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WinRT/Locale.cpp" }}
  4232. ,{ "pid":12345, "tid":8, "ts":1718093281914182, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/WindowsRuntime.h" }}
  4233. ,{ "pid":12345, "tid":8, "ts":1718093281914180, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/WindowsRuntime.h" }}
  4234. ,{ "pid":12345, "tid":8, "ts":1718093281914278, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4235. ,{ "pid":12345, "tid":8, "ts":1718093281914358, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/WindowsHeaders.h" }}
  4236. ,{ "pid":12345, "tid":8, "ts":1718093281914357, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/WindowsHeaders.h" }}
  4237. ,{ "pid":12345, "tid":8, "ts":1718093281914415, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4238. ,{ "pid":12345, "tid":8, "ts":1718093281914474, "dur":118, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Thread.cpp" }}
  4239. ,{ "pid":12345, "tid":8, "ts":1718093281914473, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Thread.cpp" }}
  4240. ,{ "pid":12345, "tid":8, "ts":1718093281914592, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4241. ,{ "pid":12345, "tid":8, "ts":1718093281914674, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/ReaderWriterLockImpl.h" }}
  4242. ,{ "pid":12345, "tid":8, "ts":1718093281914673, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/ReaderWriterLockImpl.h" }}
  4243. ,{ "pid":12345, "tid":8, "ts":1718093281914790, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/MemoryMappedFile.cpp" }}
  4244. ,{ "pid":12345, "tid":8, "ts":1718093281914789, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/MemoryMappedFile.cpp" }}
  4245. ,{ "pid":12345, "tid":8, "ts":1718093281914892, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4246. ,{ "pid":12345, "tid":8, "ts":1718093281914993, "dur":126, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Initialize.cpp" }}
  4247. ,{ "pid":12345, "tid":8, "ts":1718093281914992, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Initialize.cpp" }}
  4248. ,{ "pid":12345, "tid":8, "ts":1718093281915120, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4249. ,{ "pid":12345, "tid":8, "ts":1718093281915233, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Encoding.cpp" }}
  4250. ,{ "pid":12345, "tid":8, "ts":1718093281915232, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Encoding.cpp" }}
  4251. ,{ "pid":12345, "tid":8, "ts":1718093281915311, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4252. ,{ "pid":12345, "tid":8, "ts":1718093281915388, "dur":106, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/CrashHelpers.cpp" }}
  4253. ,{ "pid":12345, "tid":8, "ts":1718093281915387, "dur":108, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/CrashHelpers.cpp" }}
  4254. ,{ "pid":12345, "tid":8, "ts":1718093281915495, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4255. ,{ "pid":12345, "tid":8, "ts":1718093281915585, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Win32/Assert.cpp" }}
  4256. ,{ "pid":12345, "tid":8, "ts":1718093281915584, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Win32/Assert.cpp" }}
  4257. ,{ "pid":12345, "tid":8, "ts":1718093281915660, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4258. ,{ "pid":12345, "tid":8, "ts":1718093281915754, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Thread.cpp" }}
  4259. ,{ "pid":12345, "tid":8, "ts":1718093281915752, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Thread.cpp" }}
  4260. ,{ "pid":12345, "tid":8, "ts":1718093281915823, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4261. ,{ "pid":12345, "tid":8, "ts":1718093281915904, "dur":121, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/StackTrace.cpp" }}
  4262. ,{ "pid":12345, "tid":8, "ts":1718093281915903, "dur":122, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/StackTrace.cpp" }}
  4263. ,{ "pid":12345, "tid":8, "ts":1718093281916026, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4264. ,{ "pid":12345, "tid":8, "ts":1718093281916103, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ReaderWriterLockImpl.h" }}
  4265. ,{ "pid":12345, "tid":8, "ts":1718093281916102, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ReaderWriterLockImpl.h" }}
  4266. ,{ "pid":12345, "tid":8, "ts":1718093281916165, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4267. ,{ "pid":12345, "tid":8, "ts":1718093281916296, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ThreadLocalValueImpl.h" }}
  4268. ,{ "pid":12345, "tid":8, "ts":1718093281916294, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ThreadLocalValueImpl.h" }}
  4269. ,{ "pid":12345, "tid":8, "ts":1718093281916359, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4270. ,{ "pid":12345, "tid":8, "ts":1718093281916460, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/SocketImpl.h" }}
  4271. ,{ "pid":12345, "tid":8, "ts":1718093281916459, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/SocketImpl.h" }}
  4272. ,{ "pid":12345, "tid":8, "ts":1718093281916528, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4273. ,{ "pid":12345, "tid":8, "ts":1718093281916603, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Path.cpp" }}
  4274. ,{ "pid":12345, "tid":8, "ts":1718093281916602, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Path.cpp" }}
  4275. ,{ "pid":12345, "tid":8, "ts":1718093281916668, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4276. ,{ "pid":12345, "tid":8, "ts":1718093281916733, "dur":134, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/MarshalAlloc.cpp" }}
  4277. ,{ "pid":12345, "tid":8, "ts":1718093281916732, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/MarshalAlloc.cpp" }}
  4278. ,{ "pid":12345, "tid":8, "ts":1718093281916898, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/FileSystemWatcher.cpp" }}
  4279. ,{ "pid":12345, "tid":8, "ts":1718093281916897, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/FileSystemWatcher.cpp" }}
  4280. ,{ "pid":12345, "tid":8, "ts":1718093281916987, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4281. ,{ "pid":12345, "tid":8, "ts":1718093281917125, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/Environment.cpp" }}
  4282. ,{ "pid":12345, "tid":8, "ts":1718093281917123, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/Environment.cpp" }}
  4283. ,{ "pid":12345, "tid":8, "ts":1718093281917244, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4284. ,{ "pid":12345, "tid":8, "ts":1718093281917369, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Posix/ConditionVariableImpl.h" }}
  4285. ,{ "pid":12345, "tid":8, "ts":1718093281917367, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Posix/ConditionVariableImpl.h" }}
  4286. ,{ "pid":12345, "tid":8, "ts":1718093281917450, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4287. ,{ "pid":12345, "tid":8, "ts":1718093281917539, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/OSX/Process.cpp" }}
  4288. ,{ "pid":12345, "tid":8, "ts":1718093281917538, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/OSX/Process.cpp" }}
  4289. ,{ "pid":12345, "tid":8, "ts":1718093281917604, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4290. ,{ "pid":12345, "tid":8, "ts":1718093281917665, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Messages.h" }}
  4291. ,{ "pid":12345, "tid":8, "ts":1718093281917663, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Messages.h" }}
  4292. ,{ "pid":12345, "tid":8, "ts":1718093281917761, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4293. ,{ "pid":12345, "tid":8, "ts":1718093281917871, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Locale.h" }}
  4294. ,{ "pid":12345, "tid":8, "ts":1718093281917869, "dur":115, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Locale.h" }}
  4295. ,{ "pid":12345, "tid":8, "ts":1718093281917984, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4296. ,{ "pid":12345, "tid":8, "ts":1718093281918073, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Image.h" }}
  4297. ,{ "pid":12345, "tid":8, "ts":1718093281918072, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Image.h" }}
  4298. ,{ "pid":12345, "tid":8, "ts":1718093281918134, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4299. ,{ "pid":12345, "tid":8, "ts":1718093281918204, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Thread.cpp" }}
  4300. ,{ "pid":12345, "tid":8, "ts":1718093281918203, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Thread.cpp" }}
  4301. ,{ "pid":12345, "tid":8, "ts":1718093281918272, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4302. ,{ "pid":12345, "tid":8, "ts":1718093281918360, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/MutexImpl.h" }}
  4303. ,{ "pid":12345, "tid":8, "ts":1718093281918359, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/MutexImpl.h" }}
  4304. ,{ "pid":12345, "tid":8, "ts":1718093281918443, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4305. ,{ "pid":12345, "tid":8, "ts":1718093281918557, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/Handle.cpp" }}
  4306. ,{ "pid":12345, "tid":8, "ts":1718093281918555, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/Handle.cpp" }}
  4307. ,{ "pid":12345, "tid":8, "ts":1718093281918650, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4308. ,{ "pid":12345, "tid":8, "ts":1718093281918715, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Generic/CpuInfo.cpp" }}
  4309. ,{ "pid":12345, "tid":8, "ts":1718093281918714, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Generic/CpuInfo.cpp" }}
  4310. ,{ "pid":12345, "tid":8, "ts":1718093281918792, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4311. ,{ "pid":12345, "tid":8, "ts":1718093281918891, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/FastReaderReaderWriterLockImpl.h" }}
  4312. ,{ "pid":12345, "tid":8, "ts":1718093281918889, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/FastReaderReaderWriterLockImpl.h" }}
  4313. ,{ "pid":12345, "tid":8, "ts":1718093281918956, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4314. ,{ "pid":12345, "tid":8, "ts":1718093281919034, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Error.h" }}
  4315. ,{ "pid":12345, "tid":8, "ts":1718093281919033, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Error.h" }}
  4316. ,{ "pid":12345, "tid":8, "ts":1718093281919122, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4317. ,{ "pid":12345, "tid":8, "ts":1718093281919216, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Directory.h" }}
  4318. ,{ "pid":12345, "tid":8, "ts":1718093281919215, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Directory.h" }}
  4319. ,{ "pid":12345, "tid":8, "ts":1718093281919293, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4320. ,{ "pid":12345, "tid":8, "ts":1718093281919373, "dur":112, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Console.h" }}
  4321. ,{ "pid":12345, "tid":8, "ts":1718093281919372, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Console.h" }}
  4322. ,{ "pid":12345, "tid":8, "ts":1718093281919486, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4323. ,{ "pid":12345, "tid":8, "ts":1718093281919555, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_uid.cpp" }}
  4324. ,{ "pid":12345, "tid":8, "ts":1718093281919554, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_uid.cpp" }}
  4325. ,{ "pid":12345, "tid":8, "ts":1718093281919644, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4326. ,{ "pid":12345, "tid":8, "ts":1718093281919788, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/pal_io.cpp" }}
  4327. ,{ "pid":12345, "tid":8, "ts":1718093281919787, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/pal_io.cpp" }}
  4328. ,{ "pid":12345, "tid":8, "ts":1718093281919881, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4329. ,{ "pid":12345, "tid":8, "ts":1718093281920022, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/write_bits.h" }}
  4330. ,{ "pid":12345, "tid":8, "ts":1718093281920020, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/write_bits.h" }}
  4331. ,{ "pid":12345, "tid":8, "ts":1718093281920080, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4332. ,{ "pid":12345, "tid":8, "ts":1718093281920147, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/ringbuffer.h" }}
  4333. ,{ "pid":12345, "tid":8, "ts":1718093281920145, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/ringbuffer.h" }}
  4334. ,{ "pid":12345, "tid":8, "ts":1718093281920220, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4335. ,{ "pid":12345, "tid":8, "ts":1718093281920351, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock_inc.h" }}
  4336. ,{ "pid":12345, "tid":8, "ts":1718093281920350, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/metablock_inc.h" }}
  4337. ,{ "pid":12345, "tid":8, "ts":1718093281920412, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4338. ,{ "pid":12345, "tid":8, "ts":1718093281920511, "dur":129, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram_inc.h" }}
  4339. ,{ "pid":12345, "tid":8, "ts":1718093281920510, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/histogram_inc.h" }}
  4340. ,{ "pid":12345, "tid":8, "ts":1718093281920641, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4341. ,{ "pid":12345, "tid":8, "ts":1718093281920696, "dur":140, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_quickly_inc.h" }}
  4342. ,{ "pid":12345, "tid":8, "ts":1718093281920695, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/hash_longest_match_quickly_inc.h" }}
  4343. ,{ "pid":12345, "tid":8, "ts":1718093281920837, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4344. ,{ "pid":12345, "tid":8, "ts":1718093281920980, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.h" }}
  4345. ,{ "pid":12345, "tid":8, "ts":1718093281920978, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/fast_log.h" }}
  4346. ,{ "pid":12345, "tid":8, "ts":1718093281921044, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4347. ,{ "pid":12345, "tid":8, "ts":1718093281921116, "dur":119, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.c" }}
  4348. ,{ "pid":12345, "tid":8, "ts":1718093281921115, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/encoder_dict.c" }}
  4349. ,{ "pid":12345, "tid":8, "ts":1718093281921236, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4350. ,{ "pid":12345, "tid":8, "ts":1718093281921334, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.h" }}
  4351. ,{ "pid":12345, "tid":8, "ts":1718093281921333, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/compress_fragment.h" }}
  4352. ,{ "pid":12345, "tid":8, "ts":1718093281921401, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4353. ,{ "pid":12345, "tid":8, "ts":1718093281921463, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.c" }}
  4354. ,{ "pid":12345, "tid":8, "ts":1718093281921462, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/cluster.c" }}
  4355. ,{ "pid":12345, "tid":8, "ts":1718093281921533, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4356. ,{ "pid":12345, "tid":8, "ts":1718093281921654, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_encoder_inc.h" }}
  4357. ,{ "pid":12345, "tid":8, "ts":1718093281921653, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/block_encoder_inc.h" }}
  4358. ,{ "pid":12345, "tid":8, "ts":1718093281921754, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4359. ,{ "pid":12345, "tid":8, "ts":1718093281921817, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.c" }}
  4360. ,{ "pid":12345, "tid":8, "ts":1718093281921816, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/enc/backward_references_hq.c" }}
  4361. ,{ "pid":12345, "tid":8, "ts":1718093281921882, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4362. ,{ "pid":12345, "tid":8, "ts":1718093281921970, "dur":137, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.h" }}
  4363. ,{ "pid":12345, "tid":8, "ts":1718093281921969, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/dec/huffman.h" }}
  4364. ,{ "pid":12345, "tid":8, "ts":1718093281922111, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4365. ,{ "pid":12345, "tid":8, "ts":1718093281922180, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.h" }}
  4366. ,{ "pid":12345, "tid":8, "ts":1718093281922179, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/transform.h" }}
  4367. ,{ "pid":12345, "tid":8, "ts":1718093281922240, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4368. ,{ "pid":12345, "tid":8, "ts":1718093281922351, "dur":138, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/ClassLibraryPAL/brotli/common/context.h" }}
  4369. ,{ "pid":12345, "tid":8, "ts":1718093281922350, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/ClassLibraryPAL/brotli/common/context.h" }}
  4370. ,{ "pid":12345, "tid":8, "ts":1718093281922490, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4371. ,{ "pid":12345, "tid":8, "ts":1718093281922591, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Time-c-api.h" }}
  4372. ,{ "pid":12345, "tid":8, "ts":1718093281922590, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Time-c-api.h" }}
  4373. ,{ "pid":12345, "tid":8, "ts":1718093281922699, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4374. ,{ "pid":12345, "tid":8, "ts":1718093281922775, "dur":160, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Path-c-api.h" }}
  4375. ,{ "pid":12345, "tid":8, "ts":1718093281922774, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Path-c-api.h" }}
  4376. ,{ "pid":12345, "tid":8, "ts":1718093281922954, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4377. ,{ "pid":12345, "tid":8, "ts":1718093281923095, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/File.cpp" }}
  4378. ,{ "pid":12345, "tid":8, "ts":1718093281923093, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/File.cpp" }}
  4379. ,{ "pid":12345, "tid":8, "ts":1718093281923167, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4380. ,{ "pid":12345, "tid":8, "ts":1718093281923239, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/c-api/Directory.cpp" }}
  4381. ,{ "pid":12345, "tid":8, "ts":1718093281923238, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/c-api/Directory.cpp" }}
  4382. ,{ "pid":12345, "tid":8, "ts":1718093281923323, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4383. ,{ "pid":12345, "tid":8, "ts":1718093281923402, "dur":104, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/BrokeredFileSystem.h" }}
  4384. ,{ "pid":12345, "tid":8, "ts":1718093281923401, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/BrokeredFileSystem.h" }}
  4385. ,{ "pid":12345, "tid":8, "ts":1718093281923507, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4386. ,{ "pid":12345, "tid":8, "ts":1718093281923604, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/os/Android/Locale.cpp" }}
  4387. ,{ "pid":12345, "tid":8, "ts":1718093281923603, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/os/Android/Locale.cpp" }}
  4388. ,{ "pid":12345, "tid":8, "ts":1718093281923708, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.cpp" }}
  4389. ,{ "pid":12345, "tid":8, "ts":1718093281923706, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/ThreadPoolMonitorThread.cpp" }}
  4390. ,{ "pid":12345, "tid":8, "ts":1718093281923844, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/mono/ThreadPool/threadpool-ms-io.cpp" }}
  4391. ,{ "pid":12345, "tid":8, "ts":1718093281923843, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/mono/ThreadPool/threadpool-ms-io.cpp" }}
  4392. ,{ "pid":12345, "tid":8, "ts":1718093281923999, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppTypeHash.h" }}
  4393. ,{ "pid":12345, "tid":8, "ts":1718093281923998, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppTypeHash.h" }}
  4394. ,{ "pid":12345, "tid":8, "ts":1718093281924080, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4395. ,{ "pid":12345, "tid":8, "ts":1718093281924145, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericMethodHash.h" }}
  4396. ,{ "pid":12345, "tid":8, "ts":1718093281924143, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericMethodHash.h" }}
  4397. ,{ "pid":12345, "tid":8, "ts":1718093281924259, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4398. ,{ "pid":12345, "tid":8, "ts":1718093281924347, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericInstCompare.h" }}
  4399. ,{ "pid":12345, "tid":8, "ts":1718093281924345, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericInstCompare.h" }}
  4400. ,{ "pid":12345, "tid":8, "ts":1718093281924424, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4401. ,{ "pid":12345, "tid":8, "ts":1718093281924524, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/Il2CppGenericClassHash.h" }}
  4402. ,{ "pid":12345, "tid":8, "ts":1718093281924524, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/Il2CppGenericClassHash.h" }}
  4403. ,{ "pid":12345, "tid":8, "ts":1718093281924584, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4404. ,{ "pid":12345, "tid":8, "ts":1718093281924639, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/GenericMethod.h" }}
  4405. ,{ "pid":12345, "tid":8, "ts":1718093281924638, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/GenericMethod.h" }}
  4406. ,{ "pid":12345, "tid":8, "ts":1718093281924746, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4407. ,{ "pid":12345, "tid":8, "ts":1718093281924844, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/metadata/CustomAttributeDataReader.h" }}
  4408. ,{ "pid":12345, "tid":8, "ts":1718093281924843, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/metadata/CustomAttributeDataReader.h" }}
  4409. ,{ "pid":12345, "tid":8, "ts":1718093281924987, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/libil2cpp.icalls" }}
  4410. ,{ "pid":12345, "tid":8, "ts":1718093281925090, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4411. ,{ "pid":12345, "tid":8, "ts":1718093281925196, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-runtime-stats.h" }}
  4412. ,{ "pid":12345, "tid":8, "ts":1718093281925195, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-runtime-stats.h" }}
  4413. ,{ "pid":12345, "tid":8, "ts":1718093281925302, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4414. ,{ "pid":12345, "tid":8, "ts":1718093281925430, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-mono-api.h" }}
  4415. ,{ "pid":12345, "tid":8, "ts":1718093281925428, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-mono-api.h" }}
  4416. ,{ "pid":12345, "tid":8, "ts":1718093281925508, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4417. ,{ "pid":12345, "tid":8, "ts":1718093281925610, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/il2cpp-blob.h" }}
  4418. ,{ "pid":12345, "tid":8, "ts":1718093281925610, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/il2cpp-blob.h" }}
  4419. ,{ "pid":12345, "tid":8, "ts":1718093281925675, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4420. ,{ "pid":12345, "tid":8, "ts":1718093281925830, "dur":72, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Threading/Semaphore.h" }}
  4421. ,{ "pid":12345, "tid":8, "ts":1718093281925829, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Threading/Semaphore.h" }}
  4422. ,{ "pid":12345, "tid":8, "ts":1718093281925903, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4423. ,{ "pid":12345, "tid":8, "ts":1718093281925989, "dur":127, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Net.Sockets/Socket.cpp" }}
  4424. ,{ "pid":12345, "tid":8, "ts":1718093281925988, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Net.Sockets/Socket.cpp" }}
  4425. ,{ "pid":12345, "tid":8, "ts":1718093281926117, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4426. ,{ "pid":12345, "tid":8, "ts":1718093281926239, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.h" }}
  4427. ,{ "pid":12345, "tid":8, "ts":1718093281926238, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/Stopwatch.h" }}
  4428. ,{ "pid":12345, "tid":8, "ts":1718093281926365, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4429. ,{ "pid":12345, "tid":8, "ts":1718093281926439, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.cpp" }}
  4430. ,{ "pid":12345, "tid":8, "ts":1718093281926438, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/System/System.Diagnostics/DefaultTraceListener.cpp" }}
  4431. ,{ "pid":12345, "tid":8, "ts":1718093281926527, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4432. ,{ "pid":12345, "tid":8, "ts":1718093281926625, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/ValueType.h" }}
  4433. ,{ "pid":12345, "tid":8, "ts":1718093281926624, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/ValueType.h" }}
  4434. ,{ "pid":12345, "tid":8, "ts":1718093281926699, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4435. ,{ "pid":12345, "tid":8, "ts":1718093281926783, "dur":128, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/String.cpp" }}
  4436. ,{ "pid":12345, "tid":8, "ts":1718093281926781, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/String.cpp" }}
  4437. ,{ "pid":12345, "tid":8, "ts":1718093281926912, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4438. ,{ "pid":12345, "tid":8, "ts":1718093281927033, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.h" }}
  4439. ,{ "pid":12345, "tid":8, "ts":1718093281927032, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/RuntimeFieldHandle.h" }}
  4440. ,{ "pid":12345, "tid":8, "ts":1718093281927134, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4441. ,{ "pid":12345, "tid":8, "ts":1718093281927273, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.h" }}
  4442. ,{ "pid":12345, "tid":8, "ts":1718093281927271, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/MonoCustomAttrs.h" }}
  4443. ,{ "pid":12345, "tid":8, "ts":1718093281927369, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4444. ,{ "pid":12345, "tid":8, "ts":1718093281927472, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Environment.cpp" }}
  4445. ,{ "pid":12345, "tid":8, "ts":1718093281927471, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Environment.cpp" }}
  4446. ,{ "pid":12345, "tid":8, "ts":1718093281927551, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4447. ,{ "pid":12345, "tid":8, "ts":1718093281927708, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.h" }}
  4448. ,{ "pid":12345, "tid":8, "ts":1718093281927707, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/CurrentSystemTimeZone.h" }}
  4449. ,{ "pid":12345, "tid":8, "ts":1718093281927766, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4450. ,{ "pid":12345, "tid":8, "ts":1718093281927833, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System/Buffer.cpp" }}
  4451. ,{ "pid":12345, "tid":8, "ts":1718093281927832, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System/Buffer.cpp" }}
  4452. ,{ "pid":12345, "tid":8, "ts":1718093281927896, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4453. ,{ "pid":12345, "tid":8, "ts":1718093281928011, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.h" }}
  4454. ,{ "pid":12345, "tid":8, "ts":1718093281928009, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/WaitHandle.h" }}
  4455. ,{ "pid":12345, "tid":8, "ts":1718093281928142, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.cpp" }}
  4456. ,{ "pid":12345, "tid":8, "ts":1718093281928140, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/OSSpecificSynchronizationContext.cpp" }}
  4457. ,{ "pid":12345, "tid":8, "ts":1718093281928199, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4458. ,{ "pid":12345, "tid":8, "ts":1718093281928302, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Monitor.h" }}
  4459. ,{ "pid":12345, "tid":8, "ts":1718093281928301, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Threading/Monitor.h" }}
  4460. ,{ "pid":12345, "tid":8, "ts":1718093281928397, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4461. ,{ "pid":12345, "tid":8, "ts":1718093281928468, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.h" }}
  4462. ,{ "pid":12345, "tid":8, "ts":1718093281928467, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Principal/WindowsPrincipal.h" }}
  4463. ,{ "pid":12345, "tid":8, "ts":1718093281928535, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4464. ,{ "pid":12345, "tid":8, "ts":1718093281928634, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.h" }}
  4465. ,{ "pid":12345, "tid":8, "ts":1718093281928633, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Security.Policy/Evidence.h" }}
  4466. ,{ "pid":12345, "tid":8, "ts":1718093281928710, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4467. ,{ "pid":12345, "tid":8, "ts":1718093281928822, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.cpp" }}
  4468. ,{ "pid":12345, "tid":8, "ts":1718093281928820, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Versioning/VersioningHelper.cpp" }}
  4469. ,{ "pid":12345, "tid":8, "ts":1718093281928885, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4470. ,{ "pid":12345, "tid":8, "ts":1718093281928942, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.h" }}
  4471. ,{ "pid":12345, "tid":8, "ts":1718093281928941, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.h" }}
  4472. ,{ "pid":12345, "tid":8, "ts":1718093281929018, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4473. ,{ "pid":12345, "tid":8, "ts":1718093281929114, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.h" }}
  4474. ,{ "pid":12345, "tid":8, "ts":1718093281929107, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.InteropServices/RuntimeInformation.h" }}
  4475. ,{ "pid":12345, "tid":8, "ts":1718093281929220, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4476. ,{ "pid":12345, "tid":8, "ts":1718093281929297, "dur":85, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.cpp" }}
  4477. ,{ "pid":12345, "tid":8, "ts":1718093281929296, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Runtime.CompilerServices/RuntimeHelpers.cpp" }}
  4478. ,{ "pid":12345, "tid":8, "ts":1718093281929386, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4479. ,{ "pid":12345, "tid":8, "ts":1718093281929445, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp" }}
  4480. ,{ "pid":12345, "tid":8, "ts":1718093281929444, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp" }}
  4481. ,{ "pid":12345, "tid":8, "ts":1718093281929548, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.h" }}
  4482. ,{ "pid":12345, "tid":8, "ts":1718093281929547, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeConstructorInfo.h" }}
  4483. ,{ "pid":12345, "tid":8, "ts":1718093281929615, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4484. ,{ "pid":12345, "tid":8, "ts":1718093281929794, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4485. ,{ "pid":12345, "tid":8, "ts":1718093281929871, "dur":100, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.h" }}
  4486. ,{ "pid":12345, "tid":8, "ts":1718093281929870, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/EventInfo.h" }}
  4487. ,{ "pid":12345, "tid":8, "ts":1718093281929972, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4488. ,{ "pid":12345, "tid":8, "ts":1718093281930049, "dur":70, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.cpp" }}
  4489. ,{ "pid":12345, "tid":8, "ts":1718093281930048, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Reflection/Assembly.cpp" }}
  4490. ,{ "pid":12345, "tid":8, "ts":1718093281930120, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4491. ,{ "pid":12345, "tid":8, "ts":1718093281930223, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.h" }}
  4492. ,{ "pid":12345, "tid":8, "ts":1718093281930221, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.IO/BrokeredFileSystem.h" }}
  4493. ,{ "pid":12345, "tid":8, "ts":1718093281930293, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4494. ,{ "pid":12345, "tid":8, "ts":1718093281930374, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoInternals.h" }}
  4495. ,{ "pid":12345, "tid":8, "ts":1718093281930372, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CultureInfoInternals.h" }}
  4496. ,{ "pid":12345, "tid":8, "ts":1718093281930453, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4497. ,{ "pid":12345, "tid":8, "ts":1718093281930543, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.h" }}
  4498. ,{ "pid":12345, "tid":8, "ts":1718093281930542, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Globalization/CalendarData.h" }}
  4499. ,{ "pid":12345, "tid":8, "ts":1718093281930605, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4500. ,{ "pid":12345, "tid":8, "ts":1718093281930675, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.h" }}
  4501. ,{ "pid":12345, "tid":8, "ts":1718093281930666, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/System.Diagnostics/Debugger.h" }}
  4502. ,{ "pid":12345, "tid":8, "ts":1718093281930742, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4503. ,{ "pid":12345, "tid":8, "ts":1718093281930801, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono/RuntimeGPtrArrayHandle.cpp" }}
  4504. ,{ "pid":12345, "tid":8, "ts":1718093281930852, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4505. ,{ "pid":12345, "tid":8, "ts":1718093281930939, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.h" }}
  4506. ,{ "pid":12345, "tid":8, "ts":1718093281930938, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/icalls/mscorlib/Mono.Security.Cryptography/KeyPairPersistence.h" }}
  4507. ,{ "pid":12345, "tid":8, "ts":1718093281931024, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4508. ,{ "pid":12345, "tid":8, "ts":1718093281931105, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/WriteBarrier.h" }}
  4509. ,{ "pid":12345, "tid":8, "ts":1718093281931104, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/WriteBarrier.h" }}
  4510. ,{ "pid":12345, "tid":8, "ts":1718093281931187, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/gc/GCHandle.h" }}
  4511. ,{ "pid":12345, "tid":8, "ts":1718093281931186, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/gc/GCHandle.h" }}
  4512. ,{ "pid":12345, "tid":8, "ts":1718093281931266, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4513. ,{ "pid":12345, "tid":8, "ts":1718093281931361, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/debugger/il2cpp-api-debugger.h" }}
  4514. ,{ "pid":12345, "tid":8, "ts":1718093281931360, "dur":101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/debugger/il2cpp-api-debugger.h" }}
  4515. ,{ "pid":12345, "tid":8, "ts":1718093281931461, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4516. ,{ "pid":12345, "tid":8, "ts":1718093281931607, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/libil2cpp/codegen/il2cpp-codegen-common.cpp" }}
  4517. ,{ "pid":12345, "tid":8, "ts":1718093281931606, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/libil2cpp/codegen/il2cpp-codegen-common.cpp" }}
  4518. ,{ "pid":12345, "tid":8, "ts":1718093281931687, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4519. ,{ "pid":12345, "tid":8, "ts":1718093281931757, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/uncompr.c" }}
  4520. ,{ "pid":12345, "tid":8, "ts":1718093281931756, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/uncompr.c" }}
  4521. ,{ "pid":12345, "tid":8, "ts":1718093281931856, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4522. ,{ "pid":12345, "tid":8, "ts":1718093281931938, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/inffast.h" }}
  4523. ,{ "pid":12345, "tid":8, "ts":1718093281931937, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/inffast.h" }}
  4524. ,{ "pid":12345, "tid":8, "ts":1718093281932007, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4525. ,{ "pid":12345, "tid":8, "ts":1718093281932092, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/zlib/gzclose.c" }}
  4526. ,{ "pid":12345, "tid":8, "ts":1718093281932090, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/zlib/gzclose.c" }}
  4527. ,{ "pid":12345, "tid":8, "ts":1718093281932172, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4528. ,{ "pid":12345, "tid":8, "ts":1718093281932264, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xxHash/xxhash.c" }}
  4529. ,{ "pid":12345, "tid":8, "ts":1718093281932261, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xxHash/xxhash.c" }}
  4530. ,{ "pid":12345, "tid":8, "ts":1718093281932315, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4531. ,{ "pid":12345, "tid":8, "ts":1718093281932415, "dur":132, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/xamarin-android/monodroid.h" }}
  4532. ,{ "pid":12345, "tid":8, "ts":1718093281932401, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/xamarin-android/monodroid.h" }}
  4533. ,{ "pid":12345, "tid":8, "ts":1718093281932547, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4534. ,{ "pid":12345, "tid":8, "ts":1718093281932638, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/valgrind.h" }}
  4535. ,{ "pid":12345, "tid":8, "ts":1718093281932637, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/valgrind.h" }}
  4536. ,{ "pid":12345, "tid":8, "ts":1718093281932703, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4537. ,{ "pid":12345, "tid":8, "ts":1718093281932778, "dur":55, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/parse.h" }}
  4538. ,{ "pid":12345, "tid":8, "ts":1718093281932776, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/parse.h" }}
  4539. ,{ "pid":12345, "tid":8, "ts":1718093281932834, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4540. ,{ "pid":12345, "tid":8, "ts":1718093281932935, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/networking.c" }}
  4541. ,{ "pid":12345, "tid":8, "ts":1718093281932934, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/networking.c" }}
  4542. ,{ "pid":12345, "tid":8, "ts":1718093281933013, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4543. ,{ "pid":12345, "tid":8, "ts":1718093281933111, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-value-hash.h" }}
  4544. ,{ "pid":12345, "tid":8, "ts":1718093281933110, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-value-hash.h" }}
  4545. ,{ "pid":12345, "tid":8, "ts":1718093281933178, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4546. ,{ "pid":12345, "tid":8, "ts":1718093281933268, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-time.h" }}
  4547. ,{ "pid":12345, "tid":8, "ts":1718093281933267, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-time.h" }}
  4548. ,{ "pid":12345, "tid":8, "ts":1718093281933353, "dur":718, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4549. ,{ "pid":12345, "tid":8, "ts":1718093281934077, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-posix-signals.c" }}
  4550. ,{ "pid":12345, "tid":8, "ts":1718093281934076, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-posix-signals.c" }}
  4551. ,{ "pid":12345, "tid":8, "ts":1718093281934162, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4552. ,{ "pid":12345, "tid":8, "ts":1718093281934288, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-threads-android.c" }}
  4553. ,{ "pid":12345, "tid":8, "ts":1718093281934286, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-threads-android.c" }}
  4554. ,{ "pid":12345, "tid":8, "ts":1718093281934385, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4555. ,{ "pid":12345, "tid":8, "ts":1718093281934462, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-sha1.c" }}
  4556. ,{ "pid":12345, "tid":8, "ts":1718093281934460, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-sha1.c" }}
  4557. ,{ "pid":12345, "tid":8, "ts":1718093281934545, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4558. ,{ "pid":12345, "tid":8, "ts":1718093281934639, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-proclib.c" }}
  4559. ,{ "pid":12345, "tid":8, "ts":1718093281934638, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-proclib.c" }}
  4560. ,{ "pid":12345, "tid":8, "ts":1718093281934719, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4561. ,{ "pid":12345, "tid":8, "ts":1718093281934819, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-os-wait-win32.c" }}
  4562. ,{ "pid":12345, "tid":8, "ts":1718093281934818, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-os-wait-win32.c" }}
  4563. ,{ "pid":12345, "tid":8, "ts":1718093281934898, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4564. ,{ "pid":12345, "tid":8, "ts":1718093281934964, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-networkinterfaces.h" }}
  4565. ,{ "pid":12345, "tid":8, "ts":1718093281934963, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-networkinterfaces.h" }}
  4566. ,{ "pid":12345, "tid":8, "ts":1718093281935029, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4567. ,{ "pid":12345, "tid":8, "ts":1718093281935119, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-memory-model.h" }}
  4568. ,{ "pid":12345, "tid":8, "ts":1718093281935119, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-memory-model.h" }}
  4569. ,{ "pid":12345, "tid":8, "ts":1718093281935198, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4570. ,{ "pid":12345, "tid":8, "ts":1718093281935269, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-logger.c" }}
  4571. ,{ "pid":12345, "tid":8, "ts":1718093281935269, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-logger.c" }}
  4572. ,{ "pid":12345, "tid":8, "ts":1718093281935332, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4573. ,{ "pid":12345, "tid":8, "ts":1718093281935401, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-log-android.c" }}
  4574. ,{ "pid":12345, "tid":8, "ts":1718093281935400, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-log-android.c" }}
  4575. ,{ "pid":12345, "tid":8, "ts":1718093281935465, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4576. ,{ "pid":12345, "tid":8, "ts":1718093281935550, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-internal-hash.c" }}
  4577. ,{ "pid":12345, "tid":8, "ts":1718093281935549, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-internal-hash.c" }}
  4578. ,{ "pid":12345, "tid":8, "ts":1718093281935633, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4579. ,{ "pid":12345, "tid":8, "ts":1718093281935695, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-hwcap-arm64.c" }}
  4580. ,{ "pid":12345, "tid":8, "ts":1718093281935694, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-hwcap-arm64.c" }}
  4581. ,{ "pid":12345, "tid":8, "ts":1718093281935763, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4582. ,{ "pid":12345, "tid":8, "ts":1718093281935859, "dur":107, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-error.c" }}
  4583. ,{ "pid":12345, "tid":8, "ts":1718093281935857, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-error.c" }}
  4584. ,{ "pid":12345, "tid":8, "ts":1718093281936020, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-dl-windows.c" }}
  4585. ,{ "pid":12345, "tid":8, "ts":1718093281936020, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-dl-windows.c" }}
  4586. ,{ "pid":12345, "tid":8, "ts":1718093281936099, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4587. ,{ "pid":12345, "tid":8, "ts":1718093281936157, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-digest.h" }}
  4588. ,{ "pid":12345, "tid":8, "ts":1718093281936157, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-digest.h" }}
  4589. ,{ "pid":12345, "tid":8, "ts":1718093281936236, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4590. ,{ "pid":12345, "tid":8, "ts":1718093281936321, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mono-conc-hashtable.h" }}
  4591. ,{ "pid":12345, "tid":8, "ts":1718093281936320, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mono-conc-hashtable.h" }}
  4592. ,{ "pid":12345, "tid":8, "ts":1718093281936400, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4593. ,{ "pid":12345, "tid":8, "ts":1718093281936510, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4594. ,{ "pid":12345, "tid":8, "ts":1718093281936599, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/mach-support-amd64.c" }}
  4595. ,{ "pid":12345, "tid":8, "ts":1718093281936597, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/mach-support-amd64.c" }}
  4596. ,{ "pid":12345, "tid":8, "ts":1718093281936678, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4597. ,{ "pid":12345, "tid":8, "ts":1718093281936780, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/linux_magic.h" }}
  4598. ,{ "pid":12345, "tid":8, "ts":1718093281936779, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/linux_magic.h" }}
  4599. ,{ "pid":12345, "tid":8, "ts":1718093281936859, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4600. ,{ "pid":12345, "tid":8, "ts":1718093281936918, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/freebsd-elf64.h" }}
  4601. ,{ "pid":12345, "tid":8, "ts":1718093281936917, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/freebsd-elf64.h" }}
  4602. ,{ "pid":12345, "tid":8, "ts":1718093281936995, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4603. ,{ "pid":12345, "tid":8, "ts":1718093281937095, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/utils/bsearch.c" }}
  4604. ,{ "pid":12345, "tid":8, "ts":1718093281937094, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/utils/bsearch.c" }}
  4605. ,{ "pid":12345, "tid":8, "ts":1718093281937166, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4606. ,{ "pid":12345, "tid":8, "ts":1718093281937252, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-thread-pool.c" }}
  4607. ,{ "pid":12345, "tid":8, "ts":1718093281937251, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-thread-pool.c" }}
  4608. ,{ "pid":12345, "tid":8, "ts":1718093281937325, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4609. ,{ "pid":12345, "tid":8, "ts":1718093281937400, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-qsort.c" }}
  4610. ,{ "pid":12345, "tid":8, "ts":1718093281937399, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-qsort.c" }}
  4611. ,{ "pid":12345, "tid":8, "ts":1718093281937490, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4612. ,{ "pid":12345, "tid":8, "ts":1718093281937629, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-pinning.c" }}
  4613. ,{ "pid":12345, "tid":8, "ts":1718093281937628, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-pinning.c" }}
  4614. ,{ "pid":12345, "tid":8, "ts":1718093281937721, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4615. ,{ "pid":12345, "tid":8, "ts":1718093281937779, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-marksweep.c" }}
  4616. ,{ "pid":12345, "tid":8, "ts":1718093281937778, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-marksweep.c" }}
  4617. ,{ "pid":12345, "tid":8, "ts":1718093281937842, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4618. ,{ "pid":12345, "tid":8, "ts":1718093281937921, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-hash-table.h" }}
  4619. ,{ "pid":12345, "tid":8, "ts":1718093281937920, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-hash-table.h" }}
  4620. ,{ "pid":12345, "tid":8, "ts":1718093281937999, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4621. ,{ "pid":12345, "tid":8, "ts":1718093281938087, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-fin-weak-hash.c" }}
  4622. ,{ "pid":12345, "tid":8, "ts":1718093281938086, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-fin-weak-hash.c" }}
  4623. ,{ "pid":12345, "tid":8, "ts":1718093281938162, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4624. ,{ "pid":12345, "tid":8, "ts":1718093281938241, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/sgen/sgen-cardtable.h" }}
  4625. ,{ "pid":12345, "tid":8, "ts":1718093281938240, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/sgen/sgen-cardtable.h" }}
  4626. ,{ "pid":12345, "tid":8, "ts":1718093281938319, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4627. ,{ "pid":12345, "tid":8, "ts":1718093281938415, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/mini-arm64.h" }}
  4628. ,{ "pid":12345, "tid":8, "ts":1718093281938413, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/mini-arm64.h" }}
  4629. ,{ "pid":12345, "tid":8, "ts":1718093281938484, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4630. ,{ "pid":12345, "tid":8, "ts":1718093281938553, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/mini/debugger-agent.c" }}
  4631. ,{ "pid":12345, "tid":8, "ts":1718093281938552, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/mini/debugger-agent.c" }}
  4632. ,{ "pid":12345, "tid":8, "ts":1718093281938623, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4633. ,{ "pid":12345, "tid":8, "ts":1718093281938714, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32semaphore.h" }}
  4634. ,{ "pid":12345, "tid":8, "ts":1718093281938712, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32semaphore.h" }}
  4635. ,{ "pid":12345, "tid":8, "ts":1718093281938788, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4636. ,{ "pid":12345, "tid":8, "ts":1718093281938866, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32process-unix.c" }}
  4637. ,{ "pid":12345, "tid":8, "ts":1718093281938864, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32process-unix.c" }}
  4638. ,{ "pid":12345, "tid":8, "ts":1718093281938952, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4639. ,{ "pid":12345, "tid":8, "ts":1718093281939048, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32mutex-unix.c" }}
  4640. ,{ "pid":12345, "tid":8, "ts":1718093281939046, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32mutex-unix.c" }}
  4641. ,{ "pid":12345, "tid":8, "ts":1718093281939133, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4642. ,{ "pid":12345, "tid":8, "ts":1718093281939207, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32file-win32.c" }}
  4643. ,{ "pid":12345, "tid":8, "ts":1718093281939205, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32file-win32.c" }}
  4644. ,{ "pid":12345, "tid":8, "ts":1718093281939279, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4645. ,{ "pid":12345, "tid":8, "ts":1718093281939364, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/w32event-win32.c" }}
  4646. ,{ "pid":12345, "tid":8, "ts":1718093281939363, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/w32event-win32.c" }}
  4647. ,{ "pid":12345, "tid":8, "ts":1718093281939423, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4648. ,{ "pid":12345, "tid":8, "ts":1718093281939511, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/verify.c" }}
  4649. ,{ "pid":12345, "tid":8, "ts":1718093281939509, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/verify.c" }}
  4650. ,{ "pid":12345, "tid":8, "ts":1718093281939596, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4651. ,{ "pid":12345, "tid":8, "ts":1718093281939679, "dur":89, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threads.c" }}
  4652. ,{ "pid":12345, "tid":8, "ts":1718093281939678, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threads.c" }}
  4653. ,{ "pid":12345, "tid":8, "ts":1718093281939769, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4654. ,{ "pid":12345, "tid":8, "ts":1718093281939835, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/threadpool-io.c" }}
  4655. ,{ "pid":12345, "tid":8, "ts":1718093281939834, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/threadpool-io.c" }}
  4656. ,{ "pid":12345, "tid":8, "ts":1718093281939910, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4657. ,{ "pid":12345, "tid":8, "ts":1718093281939993, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sre-save.c" }}
  4658. ,{ "pid":12345, "tid":8, "ts":1718093281939992, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sre-save.c" }}
  4659. ,{ "pid":12345, "tid":8, "ts":1718093281940066, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4660. ,{ "pid":12345, "tid":8, "ts":1718093281940126, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-stw.c" }}
  4661. ,{ "pid":12345, "tid":8, "ts":1718093281940124, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-stw.c" }}
  4662. ,{ "pid":12345, "tid":8, "ts":1718093281940190, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4663. ,{ "pid":12345, "tid":8, "ts":1718093281940255, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/sgen-bridge.c" }}
  4664. ,{ "pid":12345, "tid":8, "ts":1718093281940254, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/sgen-bridge.c" }}
  4665. ,{ "pid":12345, "tid":8, "ts":1718093281940317, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4666. ,{ "pid":12345, "tid":8, "ts":1718093281940421, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/security-core-clr.h" }}
  4667. ,{ "pid":12345, "tid":8, "ts":1718093281940419, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/security-core-clr.h" }}
  4668. ,{ "pid":12345, "tid":8, "ts":1718093281940500, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4669. ,{ "pid":12345, "tid":8, "ts":1718093281940589, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/reflection.h" }}
  4670. ,{ "pid":12345, "tid":8, "ts":1718093281940587, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/reflection.h" }}
  4671. ,{ "pid":12345, "tid":8, "ts":1718093281940656, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4672. ,{ "pid":12345, "tid":8, "ts":1718093281940743, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/property-bag.c" }}
  4673. ,{ "pid":12345, "tid":8, "ts":1718093281940742, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/property-bag.c" }}
  4674. ,{ "pid":12345, "tid":8, "ts":1718093281940810, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4675. ,{ "pid":12345, "tid":8, "ts":1718093281940899, "dur":60, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/private/threadpool-io-kqueue.c" }}
  4676. ,{ "pid":12345, "tid":8, "ts":1718093281940898, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/private/threadpool-io-kqueue.c" }}
  4677. ,{ "pid":12345, "tid":8, "ts":1718093281940962, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4678. ,{ "pid":12345, "tid":8, "ts":1718093281941038, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/object-internals.h" }}
  4679. ,{ "pid":12345, "tid":8, "ts":1718093281941037, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/object-internals.h" }}
  4680. ,{ "pid":12345, "tid":8, "ts":1718093281941108, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4681. ,{ "pid":12345, "tid":8, "ts":1718093281941188, "dur":75, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/null-gc-handles.h" }}
  4682. ,{ "pid":12345, "tid":8, "ts":1718093281941187, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/null-gc-handles.h" }}
  4683. ,{ "pid":12345, "tid":8, "ts":1718093281941264, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4684. ,{ "pid":12345, "tid":8, "ts":1718093281941364, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-ptr-array.h" }}
  4685. ,{ "pid":12345, "tid":8, "ts":1718093281941362, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-ptr-array.h" }}
  4686. ,{ "pid":12345, "tid":8, "ts":1718093281941443, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4687. ,{ "pid":12345, "tid":8, "ts":1718093281941526, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-hash.c" }}
  4688. ,{ "pid":12345, "tid":8, "ts":1718093281941525, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-hash.c" }}
  4689. ,{ "pid":12345, "tid":8, "ts":1718093281941606, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4690. ,{ "pid":12345, "tid":8, "ts":1718093281941683, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-config.h" }}
  4691. ,{ "pid":12345, "tid":8, "ts":1718093281941682, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-config.h" }}
  4692. ,{ "pid":12345, "tid":8, "ts":1718093281941757, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4693. ,{ "pid":12345, "tid":8, "ts":1718093281941847, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/mono-basic-block.c" }}
  4694. ,{ "pid":12345, "tid":8, "ts":1718093281941846, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/mono-basic-block.c" }}
  4695. ,{ "pid":12345, "tid":8, "ts":1718093281941925, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4696. ,{ "pid":12345, "tid":8, "ts":1718093281942020, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/metadata-verify.c" }}
  4697. ,{ "pid":12345, "tid":8, "ts":1718093281942019, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/metadata-verify.c" }}
  4698. ,{ "pid":12345, "tid":8, "ts":1718093281942107, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4699. ,{ "pid":12345, "tid":8, "ts":1718093281942177, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/marshal.c" }}
  4700. ,{ "pid":12345, "tid":8, "ts":1718093281942175, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/marshal.c" }}
  4701. ,{ "pid":12345, "tid":8, "ts":1718093281942259, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4702. ,{ "pid":12345, "tid":8, "ts":1718093281942334, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/locales.c" }}
  4703. ,{ "pid":12345, "tid":8, "ts":1718093281942333, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/locales.c" }}
  4704. ,{ "pid":12345, "tid":8, "ts":1718093281942416, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4705. ,{ "pid":12345, "tid":8, "ts":1718093281942486, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/image.c" }}
  4706. ,{ "pid":12345, "tid":8, "ts":1718093281942485, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/image.c" }}
  4707. ,{ "pid":12345, "tid":8, "ts":1718093281942561, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4708. ,{ "pid":12345, "tid":8, "ts":1718093281942652, "dur":66, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/icall-def.h" }}
  4709. ,{ "pid":12345, "tid":8, "ts":1718093281942651, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/icall-def.h" }}
  4710. ,{ "pid":12345, "tid":8, "ts":1718093281942719, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4711. ,{ "pid":12345, "tid":8, "ts":1718093281942796, "dur":69, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/filewatcher.h" }}
  4712. ,{ "pid":12345, "tid":8, "ts":1718093281942795, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/filewatcher.h" }}
  4713. ,{ "pid":12345, "tid":8, "ts":1718093281942866, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4714. ,{ "pid":12345, "tid":8, "ts":1718093281942938, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/exception.h" }}
  4715. ,{ "pid":12345, "tid":8, "ts":1718093281942937, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/exception.h" }}
  4716. ,{ "pid":12345, "tid":8, "ts":1718093281943025, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4717. ,{ "pid":12345, "tid":8, "ts":1718093281943102, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/dynamic-image.c" }}
  4718. ,{ "pid":12345, "tid":8, "ts":1718093281943101, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/dynamic-image.c" }}
  4719. ,{ "pid":12345, "tid":8, "ts":1718093281943194, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4720. ,{ "pid":12345, "tid":8, "ts":1718093281943282, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/debug-mono-symfile.c" }}
  4721. ,{ "pid":12345, "tid":8, "ts":1718093281943280, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/debug-mono-symfile.c" }}
  4722. ,{ "pid":12345, "tid":8, "ts":1718093281943350, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4723. ,{ "pid":12345, "tid":8, "ts":1718093281943446, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/custom-attrs-internals.h" }}
  4724. ,{ "pid":12345, "tid":8, "ts":1718093281943444, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/custom-attrs-internals.h" }}
  4725. ,{ "pid":12345, "tid":8, "ts":1718093281943564, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4726. ,{ "pid":12345, "tid":8, "ts":1718093281943690, "dur":84, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/console-unix.c" }}
  4727. ,{ "pid":12345, "tid":8, "ts":1718093281943689, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/console-unix.c" }}
  4728. ,{ "pid":12345, "tid":8, "ts":1718093281943775, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4729. ,{ "pid":12345, "tid":8, "ts":1718093281943874, "dur":99, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class.c" }}
  4730. ,{ "pid":12345, "tid":8, "ts":1718093281943872, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class.c" }}
  4731. ,{ "pid":12345, "tid":8, "ts":1718093281944008, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/class-getters.h" }}
  4732. ,{ "pid":12345, "tid":8, "ts":1718093281944007, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/class-getters.h" }}
  4733. ,{ "pid":12345, "tid":8, "ts":1718093281944074, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4734. ,{ "pid":12345, "tid":8, "ts":1718093281944169, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/attach.c" }}
  4735. ,{ "pid":12345, "tid":8, "ts":1718093281944219, "dur":126, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4736. ,{ "pid":12345, "tid":8, "ts":1718093281944361, "dur":172, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/metadata/abi-details.h" }}
  4737. ,{ "pid":12345, "tid":8, "ts":1718093281944359, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/metadata/abi-details.h" }}
  4738. ,{ "pid":12345, "tid":8, "ts":1718093281944534, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4739. ,{ "pid":12345, "tid":8, "ts":1718093281944631, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gstring.c" }}
  4740. ,{ "pid":12345, "tid":8, "ts":1718093281944629, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gstring.c" }}
  4741. ,{ "pid":12345, "tid":8, "ts":1718093281944706, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4742. ,{ "pid":12345, "tid":8, "ts":1718093281944776, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gptrarray.c" }}
  4743. ,{ "pid":12345, "tid":8, "ts":1718093281944775, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gptrarray.c" }}
  4744. ,{ "pid":12345, "tid":8, "ts":1718093281944845, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4745. ,{ "pid":12345, "tid":8, "ts":1718093281944929, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gmarkup.c" }}
  4746. ,{ "pid":12345, "tid":8, "ts":1718093281944928, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gmarkup.c" }}
  4747. ,{ "pid":12345, "tid":8, "ts":1718093281945003, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4748. ,{ "pid":12345, "tid":8, "ts":1718093281945066, "dur":63, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/eglib/gerror.c" }}
  4749. ,{ "pid":12345, "tid":8, "ts":1718093281945064, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/eglib/gerror.c" }}
  4750. ,{ "pid":12345, "tid":8, "ts":1718093281945130, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4751. ,{ "pid":12345, "tid":8, "ts":1718093281945207, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/cil/opcode.def" }}
  4752. ,{ "pid":12345, "tid":8, "ts":1718093281945284, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4753. ,{ "pid":12345, "tid":8, "ts":1718093281945359, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/mono/mono/arch/amd64/amd64-codegen.h" }}
  4754. ,{ "pid":12345, "tid":8, "ts":1718093281945358, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/mono/mono/arch/amd64/amd64-codegen.h" }}
  4755. ,{ "pid":12345, "tid":8, "ts":1718093281945431, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4756. ,{ "pid":12345, "tid":8, "ts":1718093281945548, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/google/sparsehash/internal/sparsehashtable.h" }}
  4757. ,{ "pid":12345, "tid":8, "ts":1718093281945538, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/google/sparsehash/internal/sparsehashtable.h" }}
  4758. ,{ "pid":12345, "tid":8, "ts":1718093281945614, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4759. ,{ "pid":12345, "tid":8, "ts":1718093281945692, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/windows-untested/stdafx.c" }}
  4760. ,{ "pid":12345, "tid":8, "ts":1718093281945744, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4761. ,{ "pid":12345, "tid":8, "ts":1718093281945821, "dur":65, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/windows-untested/stdafx.c" }}
  4762. ,{ "pid":12345, "tid":8, "ts":1718093281945905, "dur":311, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/thread_local_alloc.c" }}
  4763. ,{ "pid":12345, "tid":8, "ts":1718093281945904, "dur":314, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/thread_local_alloc.c" }}
  4764. ,{ "pid":12345, "tid":8, "ts":1718093281946219, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4765. ,{ "pid":12345, "tid":8, "ts":1718093281946438, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/staticrootstest.c" }}
  4766. ,{ "pid":12345, "tid":8, "ts":1718093281946435, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/staticrootstest.c" }}
  4767. ,{ "pid":12345, "tid":8, "ts":1718093281946553, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4768. ,{ "pid":12345, "tid":8, "ts":1718093281946637, "dur":94, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/tests/huge_test.c" }}
  4769. ,{ "pid":12345, "tid":8, "ts":1718093281946635, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/tests/huge_test.c" }}
  4770. ,{ "pid":12345, "tid":8, "ts":1718093281946732, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4771. ,{ "pid":12345, "tid":8, "ts":1718093281946818, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/pthread_support.c" }}
  4772. ,{ "pid":12345, "tid":8, "ts":1718093281946817, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/pthread_support.c" }}
  4773. ,{ "pid":12345, "tid":8, "ts":1718093281946902, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4774. ,{ "pid":12345, "tid":8, "ts":1718093281946975, "dur":71, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/mark_rts.c" }}
  4775. ,{ "pid":12345, "tid":8, "ts":1718093281946973, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/mark_rts.c" }}
  4776. ,{ "pid":12345, "tid":8, "ts":1718093281947047, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4777. ,{ "pid":12345, "tid":8, "ts":1718093281947148, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/sparc.h" }}
  4778. ,{ "pid":12345, "tid":8, "ts":1718093281947146, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/sunc/sparc.h" }}
  4779. ,{ "pid":12345, "tid":8, "ts":1718093281947228, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4780. ,{ "pid":12345, "tid":8, "ts":1718093281947320, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/msftc/x86_64.h" }}
  4781. ,{ "pid":12345, "tid":8, "ts":1718093281947371, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4782. ,{ "pid":12345, "tid":8, "ts":1718093281947443, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_stores_only.h" }}
  4783. ,{ "pid":12345, "tid":8, "ts":1718093281947441, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/ordered_stores_only.h" }}
  4784. ,{ "pid":12345, "tid":8, "ts":1718093281947521, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4785. ,{ "pid":12345, "tid":8, "ts":1718093281947617, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/loadstore/char_acquire_release_volatile.h" }}
  4786. ,{ "pid":12345, "tid":8, "ts":1718093281947678, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4787. ,{ "pid":12345, "tid":8, "ts":1718093281947753, "dur":68, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/hppa.h" }}
  4788. ,{ "pid":12345, "tid":8, "ts":1718093281947752, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/hpc/hppa.h" }}
  4789. ,{ "pid":12345, "tid":8, "ts":1718093281947822, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4790. ,{ "pid":12345, "tid":8, "ts":1718093281947915, "dur":51, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/mips.h" }}
  4791. ,{ "pid":12345, "tid":8, "ts":1718093281947912, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/mips.h" }}
  4792. ,{ "pid":12345, "tid":8, "ts":1718093281947967, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4793. ,{ "pid":12345, "tid":8, "ts":1718093281948073, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-arithm.h" }}
  4794. ,{ "pid":12345, "tid":8, "ts":1718093281948070, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/gcc/generic-arithm.h" }}
  4795. ,{ "pid":12345, "tid":8, "ts":1718093281948138, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4796. ,{ "pid":12345, "tid":8, "ts":1718093281948224, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/PlaybackEngines/iOSSupport/il2cpp/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ao_t_is_int.h" }}
  4797. ,{ "pid":12345, "tid":8, "ts":1718093281948222, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles /Users/apple/GCMDownFloor-IOS-appstore/Il2CppOutputProject/IL2CPP/external/bdwgc/libatomic_ops/src/atomic_ops/sysdeps/ao_t_is_int.h" }}
  4798. ,{ "pid":12345, "tid":8, "ts":1718093281948305, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4799. ,{ "pid":12345, "tid":8, "ts":1718093281948490, "dur":190, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Mono.Security.dll" }}
  4800. ,{ "pid":12345, "tid":8, "ts":1718093281948685, "dur":87, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  4801. ,{ "pid":12345, "tid":8, "ts":1718093281948488, "dur":403, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Mono.Security-FeaturesChecked.txt" }}
  4802. ,{ "pid":12345, "tid":8, "ts":1718093281948891, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
  4803. ,{ "pid":12345, "tid":8, "ts":1718093281949013, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Unity.Services.Core.Registration.dll" }}
  4804. ,{ "pid":12345, "tid":8, "ts":1718093281949012, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Unity.Services.Core.Registration-FeaturesChecked.txt" }}
  4805. ,{ "pid":12345, "tid":8, "ts":1718093281949492, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/UnityEngine.IMGUIModule.dll" }}
  4806. ,{ "pid":12345, "tid":8, "ts":1718093281949696, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.BuildTools.dll" }}
  4807. ,{ "pid":12345, "tid":8, "ts":1718093281949829, "dur":67, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Bee.DotNet.dll" }}
  4808. ,{ "pid":12345, "tid":8, "ts":1718093281949490, "dur":558, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/UnityEngine.IMGUIModule-FeaturesChecked.txt" }}
  4809. ,{ "pid":12345, "tid":8, "ts":1718093281950117, "dur":74, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/System.Configuration.dll" }}
  4810. ,{ "pid":12345, "tid":8, "ts":1718093281950115, "dur":198, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/System.Configuration-FeaturesChecked.txt" }}
  4811. ,{ "pid":12345, "tid":8, "ts":1718093281950371, "dur":221, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/iOS/ManagedStripped/Assembly-CSharp.dll" }}
  4812. ,{ "pid":12345, "tid":8, "ts":1718093281950746, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"/Applications/Unity/Hub/Editor/2022.3.27f1/Unity.app/Contents/Tools/BuildPipeline/Unity.Linker.Api.dll" }}
  4813. ,{ "pid":12345, "tid":8, "ts":1718093281950369, "dur":464, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ExtractUsedFeatures Library/Bee/artifacts/iOS/Features/Assembly-CSharp-FeaturesChecked.txt" }}
  4814. ,{ "pid":12345, "tid":8, "ts":1718093281951521, "dur":314279, "ph":"X", "name": "ExtractUsedFeatures", "args": { "detail":"Library/Bee/artifacts/iOS/Features/Assembly-CSharp-FeaturesChecked.txt" }}
  4815. ,{ "pid":12345, "tid":8, "ts":1718093282266232, "dur":9472211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4816. ,{ "pid":12345, "tid":8, "ts":1718093291738456, "dur":1672327, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
  4817. ,{ "pid":12345, "tid":0, "ts":1718093293420692, "dur":7340, "ph":"X", "name": "ProfilerWriteOutput" }
  4818. ,