Setup1.vdproj 176KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854
  1. "DeployProject"
  2. {
  3. "VSVersion" = "3:800"
  4. "ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
  5. "IsWebType" = "8:FALSE"
  6. "ProjectName" = "8:Setup1"
  7. "LanguageId" = "3:2052"
  8. "CodePage" = "3:936"
  9. "UILanguageId" = "3:2052"
  10. "SccProjectName" = "8:"
  11. "SccLocalPath" = "8:"
  12. "SccAuxPath" = "8:"
  13. "SccProvider" = "8:"
  14. "Hierarchy"
  15. {
  16. "Entry"
  17. {
  18. "MsmKey" = "8:_00BCC7B9E030038F1223C642F75AE6AB"
  19. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  20. "MsmSig" = "8:_UNDEFINED"
  21. }
  22. "Entry"
  23. {
  24. "MsmKey" = "8:_01D3AEE7DF2FEBF31BEF9BD883F4DDA0"
  25. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  26. "MsmSig" = "8:_UNDEFINED"
  27. }
  28. "Entry"
  29. {
  30. "MsmKey" = "8:_01D3AEE7DF2FEBF31BEF9BD883F4DDA0"
  31. "OwnerKey" = "8:_E14763FD49BFCD1CB789621401B0759D"
  32. "MsmSig" = "8:_UNDEFINED"
  33. }
  34. "Entry"
  35. {
  36. "MsmKey" = "8:_01D3AEE7DF2FEBF31BEF9BD883F4DDA0"
  37. "OwnerKey" = "8:_020F9272B90D8DAECDD5AC31D81C4520"
  38. "MsmSig" = "8:_UNDEFINED"
  39. }
  40. "Entry"
  41. {
  42. "MsmKey" = "8:_01D3AEE7DF2FEBF31BEF9BD883F4DDA0"
  43. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  44. "MsmSig" = "8:_UNDEFINED"
  45. }
  46. "Entry"
  47. {
  48. "MsmKey" = "8:_020F9272B90D8DAECDD5AC31D81C4520"
  49. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  50. "MsmSig" = "8:_UNDEFINED"
  51. }
  52. "Entry"
  53. {
  54. "MsmKey" = "8:_020F9272B90D8DAECDD5AC31D81C4520"
  55. "OwnerKey" = "8:_CA5DB5BEF9012B88BC397D49788D81C4"
  56. "MsmSig" = "8:_UNDEFINED"
  57. }
  58. "Entry"
  59. {
  60. "MsmKey" = "8:_0C725C5F469788BAF6443772AC316FA2"
  61. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  62. "MsmSig" = "8:_UNDEFINED"
  63. }
  64. "Entry"
  65. {
  66. "MsmKey" = "8:_0CA7CDFD8708926220995F437F398A7E"
  67. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  68. "MsmSig" = "8:_UNDEFINED"
  69. }
  70. "Entry"
  71. {
  72. "MsmKey" = "8:_0ECD1A33048EAA8B70460B3AF0ABB4F0"
  73. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  74. "MsmSig" = "8:_UNDEFINED"
  75. }
  76. "Entry"
  77. {
  78. "MsmKey" = "8:_0ECD1A33048EAA8B70460B3AF0ABB4F0"
  79. "OwnerKey" = "8:_020F9272B90D8DAECDD5AC31D81C4520"
  80. "MsmSig" = "8:_UNDEFINED"
  81. }
  82. "Entry"
  83. {
  84. "MsmKey" = "8:_0ECD1A33048EAA8B70460B3AF0ABB4F0"
  85. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  86. "MsmSig" = "8:_UNDEFINED"
  87. }
  88. "Entry"
  89. {
  90. "MsmKey" = "8:_109D4C1A85941544BF0C5B632BB89C1D"
  91. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  92. "MsmSig" = "8:_UNDEFINED"
  93. }
  94. "Entry"
  95. {
  96. "MsmKey" = "8:_11A8508782A1BE6A090D2C389DAFF4A5"
  97. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  98. "MsmSig" = "8:_UNDEFINED"
  99. }
  100. "Entry"
  101. {
  102. "MsmKey" = "8:_13909EF9AD0BF7D2C37551BC5AE18EEE"
  103. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  104. "MsmSig" = "8:_UNDEFINED"
  105. }
  106. "Entry"
  107. {
  108. "MsmKey" = "8:_15BE96DB99EA9F15DE31F6F4DF958EAF"
  109. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  110. "MsmSig" = "8:_UNDEFINED"
  111. }
  112. "Entry"
  113. {
  114. "MsmKey" = "8:_1E21CB290AC8C2256D90C890C0F59DD3"
  115. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  116. "MsmSig" = "8:_UNDEFINED"
  117. }
  118. "Entry"
  119. {
  120. "MsmKey" = "8:_1EFA71F1163B65D03C6954A9F0CE51BB"
  121. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  122. "MsmSig" = "8:_UNDEFINED"
  123. }
  124. "Entry"
  125. {
  126. "MsmKey" = "8:_208493BC71A9A904E312CA1BABA37E81"
  127. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  128. "MsmSig" = "8:_UNDEFINED"
  129. }
  130. "Entry"
  131. {
  132. "MsmKey" = "8:_22792362A3F1F14CB93F86947D2DBDA6"
  133. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  134. "MsmSig" = "8:_UNDEFINED"
  135. }
  136. "Entry"
  137. {
  138. "MsmKey" = "8:_235D9A63A52B3A14CD06C64E2D343E7A"
  139. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  140. "MsmSig" = "8:_UNDEFINED"
  141. }
  142. "Entry"
  143. {
  144. "MsmKey" = "8:_235D9A63A52B3A14CD06C64E2D343E7A"
  145. "OwnerKey" = "8:_E14763FD49BFCD1CB789621401B0759D"
  146. "MsmSig" = "8:_UNDEFINED"
  147. }
  148. "Entry"
  149. {
  150. "MsmKey" = "8:_235D9A63A52B3A14CD06C64E2D343E7A"
  151. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  152. "MsmSig" = "8:_UNDEFINED"
  153. }
  154. "Entry"
  155. {
  156. "MsmKey" = "8:_235D9A63A52B3A14CD06C64E2D343E7A"
  157. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  158. "MsmSig" = "8:_UNDEFINED"
  159. }
  160. "Entry"
  161. {
  162. "MsmKey" = "8:_235D9A63A52B3A14CD06C64E2D343E7A"
  163. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  164. "MsmSig" = "8:_UNDEFINED"
  165. }
  166. "Entry"
  167. {
  168. "MsmKey" = "8:_27E8EABB992887A08ED3E5BBAAAE249A"
  169. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  170. "MsmSig" = "8:_UNDEFINED"
  171. }
  172. "Entry"
  173. {
  174. "MsmKey" = "8:_2D6EDEB1FD954A709BDC14BC813F6B3B"
  175. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  176. "MsmSig" = "8:_UNDEFINED"
  177. }
  178. "Entry"
  179. {
  180. "MsmKey" = "8:_329B8389918DC5FD89EE9FAEBAD8ACA6"
  181. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  182. "MsmSig" = "8:_UNDEFINED"
  183. }
  184. "Entry"
  185. {
  186. "MsmKey" = "8:_329B8389918DC5FD89EE9FAEBAD8ACA6"
  187. "OwnerKey" = "8:_379C514AF1CAB904781D90270529A3C1"
  188. "MsmSig" = "8:_UNDEFINED"
  189. }
  190. "Entry"
  191. {
  192. "MsmKey" = "8:_36DC0CB201543AEC462D758A92B923E0"
  193. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  194. "MsmSig" = "8:_UNDEFINED"
  195. }
  196. "Entry"
  197. {
  198. "MsmKey" = "8:_36DC0CB201543AEC462D758A92B923E0"
  199. "OwnerKey" = "8:_E14763FD49BFCD1CB789621401B0759D"
  200. "MsmSig" = "8:_UNDEFINED"
  201. }
  202. "Entry"
  203. {
  204. "MsmKey" = "8:_36DC0CB201543AEC462D758A92B923E0"
  205. "OwnerKey" = "8:_020F9272B90D8DAECDD5AC31D81C4520"
  206. "MsmSig" = "8:_UNDEFINED"
  207. }
  208. "Entry"
  209. {
  210. "MsmKey" = "8:_379C514AF1CAB904781D90270529A3C1"
  211. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  212. "MsmSig" = "8:_UNDEFINED"
  213. }
  214. "Entry"
  215. {
  216. "MsmKey" = "8:_3976E85285FBCE3D8F89AF4A1E4A691E"
  217. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  218. "MsmSig" = "8:_UNDEFINED"
  219. }
  220. "Entry"
  221. {
  222. "MsmKey" = "8:_3976E85285FBCE3D8F89AF4A1E4A691E"
  223. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  224. "MsmSig" = "8:_UNDEFINED"
  225. }
  226. "Entry"
  227. {
  228. "MsmKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  229. "OwnerKey" = "8:_8284DABDD090BABCCB1C407244125734"
  230. "MsmSig" = "8:_UNDEFINED"
  231. }
  232. "Entry"
  233. {
  234. "MsmKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  235. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  236. "MsmSig" = "8:_UNDEFINED"
  237. }
  238. "Entry"
  239. {
  240. "MsmKey" = "8:_46DB9A975DFA2403F6BDEAB7D2A36ECA"
  241. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  242. "MsmSig" = "8:_UNDEFINED"
  243. }
  244. "Entry"
  245. {
  246. "MsmKey" = "8:_48CEC1E64DDD68E98B8AEA74B71AF371"
  247. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  248. "MsmSig" = "8:_UNDEFINED"
  249. }
  250. "Entry"
  251. {
  252. "MsmKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  253. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  254. "MsmSig" = "8:_UNDEFINED"
  255. }
  256. "Entry"
  257. {
  258. "MsmKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  259. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  260. "MsmSig" = "8:_UNDEFINED"
  261. }
  262. "Entry"
  263. {
  264. "MsmKey" = "8:_4F69FFDD89F0AF8B085BF9BEAE86F253"
  265. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  266. "MsmSig" = "8:_UNDEFINED"
  267. }
  268. "Entry"
  269. {
  270. "MsmKey" = "8:_5454280AD067CB67382A70D855521128"
  271. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  272. "MsmSig" = "8:_UNDEFINED"
  273. }
  274. "Entry"
  275. {
  276. "MsmKey" = "8:_556BAA0966B3556F2AAD454E4BC16284"
  277. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  278. "MsmSig" = "8:_UNDEFINED"
  279. }
  280. "Entry"
  281. {
  282. "MsmKey" = "8:_576DF7B6887BEDA96AFBD3797B06ABA5"
  283. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  284. "MsmSig" = "8:_UNDEFINED"
  285. }
  286. "Entry"
  287. {
  288. "MsmKey" = "8:_579DAB99108E24F6935A646F3545E09E"
  289. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  290. "MsmSig" = "8:_UNDEFINED"
  291. }
  292. "Entry"
  293. {
  294. "MsmKey" = "8:_59A1386810EE94457C8BA1E6F8FF0D2A"
  295. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  296. "MsmSig" = "8:_UNDEFINED"
  297. }
  298. "Entry"
  299. {
  300. "MsmKey" = "8:_5A1B2A15CC848CAFD8911DDCE13ED036"
  301. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  302. "MsmSig" = "8:_UNDEFINED"
  303. }
  304. "Entry"
  305. {
  306. "MsmKey" = "8:_5C8969D98D84CB10CF77335AAFE4976A"
  307. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  308. "MsmSig" = "8:_UNDEFINED"
  309. }
  310. "Entry"
  311. {
  312. "MsmKey" = "8:_5E33B5BAE2F0E550AF6B02FAB4C54D52"
  313. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  314. "MsmSig" = "8:_UNDEFINED"
  315. }
  316. "Entry"
  317. {
  318. "MsmKey" = "8:_5F82492445C8D879C76485F542D7BDE9"
  319. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  320. "MsmSig" = "8:_UNDEFINED"
  321. }
  322. "Entry"
  323. {
  324. "MsmKey" = "8:_5FFED1240E09B904C44D85CBCA722F93"
  325. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  326. "MsmSig" = "8:_UNDEFINED"
  327. }
  328. "Entry"
  329. {
  330. "MsmKey" = "8:_615CADFA09D376D11DAC1EA83316B714"
  331. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  332. "MsmSig" = "8:_UNDEFINED"
  333. }
  334. "Entry"
  335. {
  336. "MsmKey" = "8:_647C9E806D796D66B466EF878A0B10DE"
  337. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  338. "MsmSig" = "8:_UNDEFINED"
  339. }
  340. "Entry"
  341. {
  342. "MsmKey" = "8:_647C9E806D796D66B466EF878A0B10DE"
  343. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  344. "MsmSig" = "8:_UNDEFINED"
  345. }
  346. "Entry"
  347. {
  348. "MsmKey" = "8:_647C9E806D796D66B466EF878A0B10DE"
  349. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  350. "MsmSig" = "8:_UNDEFINED"
  351. }
  352. "Entry"
  353. {
  354. "MsmKey" = "8:_647C9E806D796D66B466EF878A0B10DE"
  355. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  356. "MsmSig" = "8:_UNDEFINED"
  357. }
  358. "Entry"
  359. {
  360. "MsmKey" = "8:_67307EB27C12A7DC7BB070BF134CD641"
  361. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  362. "MsmSig" = "8:_UNDEFINED"
  363. }
  364. "Entry"
  365. {
  366. "MsmKey" = "8:_67EE8A76399C5313E3275BA19EF90E36"
  367. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  368. "MsmSig" = "8:_UNDEFINED"
  369. }
  370. "Entry"
  371. {
  372. "MsmKey" = "8:_6C0138B6051BE3590EB824944F6F7681"
  373. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  374. "MsmSig" = "8:_UNDEFINED"
  375. }
  376. "Entry"
  377. {
  378. "MsmKey" = "8:_6C0D147C5A28C1549128018AD1BCAB5F"
  379. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  380. "MsmSig" = "8:_UNDEFINED"
  381. }
  382. "Entry"
  383. {
  384. "MsmKey" = "8:_72B6130A73E4C6966B3A2AB7436B97D8"
  385. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  386. "MsmSig" = "8:_UNDEFINED"
  387. }
  388. "Entry"
  389. {
  390. "MsmKey" = "8:_7994D9EACB523FED24EF9FF51B2B64B9"
  391. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  392. "MsmSig" = "8:_UNDEFINED"
  393. }
  394. "Entry"
  395. {
  396. "MsmKey" = "8:_7AEE48BC7CE802CC7D1BD26264F67476"
  397. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  398. "MsmSig" = "8:_UNDEFINED"
  399. }
  400. "Entry"
  401. {
  402. "MsmKey" = "8:_81F5A67A82D95CCD4A665337B82BB006"
  403. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  404. "MsmSig" = "8:_UNDEFINED"
  405. }
  406. "Entry"
  407. {
  408. "MsmKey" = "8:_81F5A67A82D95CCD4A665337B82BB006"
  409. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  410. "MsmSig" = "8:_UNDEFINED"
  411. }
  412. "Entry"
  413. {
  414. "MsmKey" = "8:_8284DABDD090BABCCB1C407244125734"
  415. "OwnerKey" = "8:_FA8FC7866957AEE2283F754FF7A460AA"
  416. "MsmSig" = "8:_UNDEFINED"
  417. }
  418. "Entry"
  419. {
  420. "MsmKey" = "8:_8284DABDD090BABCCB1C407244125734"
  421. "OwnerKey" = "8:_B2F40B0E5E96E96C652BAE4365FC9875"
  422. "MsmSig" = "8:_UNDEFINED"
  423. }
  424. "Entry"
  425. {
  426. "MsmKey" = "8:_8284DABDD090BABCCB1C407244125734"
  427. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  428. "MsmSig" = "8:_UNDEFINED"
  429. }
  430. "Entry"
  431. {
  432. "MsmKey" = "8:_8284DABDD090BABCCB1C407244125734"
  433. "OwnerKey" = "8:_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  434. "MsmSig" = "8:_UNDEFINED"
  435. }
  436. "Entry"
  437. {
  438. "MsmKey" = "8:_8284DABDD090BABCCB1C407244125734"
  439. "OwnerKey" = "8:_D19421EA6775E5E8456C79DA00E075E4"
  440. "MsmSig" = "8:_UNDEFINED"
  441. }
  442. "Entry"
  443. {
  444. "MsmKey" = "8:_84D76B33143F8933394EDB7151380469"
  445. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  446. "MsmSig" = "8:_UNDEFINED"
  447. }
  448. "Entry"
  449. {
  450. "MsmKey" = "8:_876034A110C37C05FE390F5A14C346E7"
  451. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  452. "MsmSig" = "8:_UNDEFINED"
  453. }
  454. "Entry"
  455. {
  456. "MsmKey" = "8:_89725EF93049649E0E1E1C234A610EC9"
  457. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  458. "MsmSig" = "8:_UNDEFINED"
  459. }
  460. "Entry"
  461. {
  462. "MsmKey" = "8:_898D8EBE1DD5D1C9236042A98CD681EB"
  463. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  464. "MsmSig" = "8:_UNDEFINED"
  465. }
  466. "Entry"
  467. {
  468. "MsmKey" = "8:_8ADC4C6988B7C2298BB34FA7740B4924"
  469. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  470. "MsmSig" = "8:_UNDEFINED"
  471. }
  472. "Entry"
  473. {
  474. "MsmKey" = "8:_8B144C32B77D175EB34FF12F9361D914"
  475. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  476. "MsmSig" = "8:_UNDEFINED"
  477. }
  478. "Entry"
  479. {
  480. "MsmKey" = "8:_8B6C989E772DDEDE4D1731313C6ED91F"
  481. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  482. "MsmSig" = "8:_UNDEFINED"
  483. }
  484. "Entry"
  485. {
  486. "MsmKey" = "8:_8C42BE771E0EE928C130B89C94A7CC71"
  487. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  488. "MsmSig" = "8:_UNDEFINED"
  489. }
  490. "Entry"
  491. {
  492. "MsmKey" = "8:_9224DD5DA54FE48EFEE599842FEB8874"
  493. "OwnerKey" = "8:_329B8389918DC5FD89EE9FAEBAD8ACA6"
  494. "MsmSig" = "8:_UNDEFINED"
  495. }
  496. "Entry"
  497. {
  498. "MsmKey" = "8:_943AE5C3C5230AB1748AD9681E03A087"
  499. "OwnerKey" = "8:_E14763FD49BFCD1CB789621401B0759D"
  500. "MsmSig" = "8:_UNDEFINED"
  501. }
  502. "Entry"
  503. {
  504. "MsmKey" = "8:_95A14DF66945B3E1B3108C4CC7D07439"
  505. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  506. "MsmSig" = "8:_UNDEFINED"
  507. }
  508. "Entry"
  509. {
  510. "MsmKey" = "8:_9F2898B7DFF103320D6BB49AF9A8F970"
  511. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  512. "MsmSig" = "8:_UNDEFINED"
  513. }
  514. "Entry"
  515. {
  516. "MsmKey" = "8:_A028EDCF66C4F76E89DD897416BD6B76"
  517. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  518. "MsmSig" = "8:_UNDEFINED"
  519. }
  520. "Entry"
  521. {
  522. "MsmKey" = "8:_A64A0CD6E0EF9E9C172F385BB2914EF6"
  523. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  524. "MsmSig" = "8:_UNDEFINED"
  525. }
  526. "Entry"
  527. {
  528. "MsmKey" = "8:_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  529. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  530. "MsmSig" = "8:_UNDEFINED"
  531. }
  532. "Entry"
  533. {
  534. "MsmKey" = "8:_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  535. "OwnerKey" = "8:_E14763FD49BFCD1CB789621401B0759D"
  536. "MsmSig" = "8:_UNDEFINED"
  537. }
  538. "Entry"
  539. {
  540. "MsmKey" = "8:_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  541. "OwnerKey" = "8:_020F9272B90D8DAECDD5AC31D81C4520"
  542. "MsmSig" = "8:_UNDEFINED"
  543. }
  544. "Entry"
  545. {
  546. "MsmKey" = "8:_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  547. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  548. "MsmSig" = "8:_UNDEFINED"
  549. }
  550. "Entry"
  551. {
  552. "MsmKey" = "8:_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  553. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  554. "MsmSig" = "8:_UNDEFINED"
  555. }
  556. "Entry"
  557. {
  558. "MsmKey" = "8:_ABC4F9644B3B1F8F27915D6FAC7B32DB"
  559. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  560. "MsmSig" = "8:_UNDEFINED"
  561. }
  562. "Entry"
  563. {
  564. "MsmKey" = "8:_ACB74580CAA0C25323D991E36FC510C8"
  565. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  566. "MsmSig" = "8:_UNDEFINED"
  567. }
  568. "Entry"
  569. {
  570. "MsmKey" = "8:_AE48B31460E349057F7CF7B67E320D03"
  571. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  572. "MsmSig" = "8:_UNDEFINED"
  573. }
  574. "Entry"
  575. {
  576. "MsmKey" = "8:_B12547A3B43B145A07CBCC6DD0059F48"
  577. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  578. "MsmSig" = "8:_UNDEFINED"
  579. }
  580. "Entry"
  581. {
  582. "MsmKey" = "8:_B1BF989A859FD8ED1E8192E813FCD133"
  583. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  584. "MsmSig" = "8:_UNDEFINED"
  585. }
  586. "Entry"
  587. {
  588. "MsmKey" = "8:_B1BF989A859FD8ED1E8192E813FCD133"
  589. "OwnerKey" = "8:_E14763FD49BFCD1CB789621401B0759D"
  590. "MsmSig" = "8:_UNDEFINED"
  591. }
  592. "Entry"
  593. {
  594. "MsmKey" = "8:_B2AF5C512A6DBAA734C4BECDF7C41531"
  595. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  596. "MsmSig" = "8:_UNDEFINED"
  597. }
  598. "Entry"
  599. {
  600. "MsmKey" = "8:_B2F40B0E5E96E96C652BAE4365FC9875"
  601. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  602. "MsmSig" = "8:_UNDEFINED"
  603. }
  604. "Entry"
  605. {
  606. "MsmKey" = "8:_B6E0D204D2D59F2B36542103F153039F"
  607. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  608. "MsmSig" = "8:_UNDEFINED"
  609. }
  610. "Entry"
  611. {
  612. "MsmKey" = "8:_BC73F21DCF1E239874190098C3F8E68B"
  613. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  614. "MsmSig" = "8:_UNDEFINED"
  615. }
  616. "Entry"
  617. {
  618. "MsmKey" = "8:_BD688D4580E2F63FA43AC7ACF2BCE22E"
  619. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  620. "MsmSig" = "8:_UNDEFINED"
  621. }
  622. "Entry"
  623. {
  624. "MsmKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  625. "OwnerKey" = "8:_UNDEFINED"
  626. "MsmSig" = "8:_UNDEFINED"
  627. }
  628. "Entry"
  629. {
  630. "MsmKey" = "8:_CA5DB5BEF9012B88BC397D49788D81C4"
  631. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  632. "MsmSig" = "8:_UNDEFINED"
  633. }
  634. "Entry"
  635. {
  636. "MsmKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  637. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  638. "MsmSig" = "8:_UNDEFINED"
  639. }
  640. "Entry"
  641. {
  642. "MsmKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  643. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  644. "MsmSig" = "8:_UNDEFINED"
  645. }
  646. "Entry"
  647. {
  648. "MsmKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  649. "OwnerKey" = "8:_8284DABDD090BABCCB1C407244125734"
  650. "MsmSig" = "8:_UNDEFINED"
  651. }
  652. "Entry"
  653. {
  654. "MsmKey" = "8:_D09714323021780B1F5E4DA16B0D6FA4"
  655. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  656. "MsmSig" = "8:_UNDEFINED"
  657. }
  658. "Entry"
  659. {
  660. "MsmKey" = "8:_D19421EA6775E5E8456C79DA00E075E4"
  661. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  662. "MsmSig" = "8:_UNDEFINED"
  663. }
  664. "Entry"
  665. {
  666. "MsmKey" = "8:_D19421EA6775E5E8456C79DA00E075E4"
  667. "OwnerKey" = "8:_B2F40B0E5E96E96C652BAE4365FC9875"
  668. "MsmSig" = "8:_UNDEFINED"
  669. }
  670. "Entry"
  671. {
  672. "MsmKey" = "8:_D24CFE10A6A5A8A68D32E486FD70E08A"
  673. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  674. "MsmSig" = "8:_UNDEFINED"
  675. }
  676. "Entry"
  677. {
  678. "MsmKey" = "8:_D3ECDD0D3D6625B24CB4EE5D81EEB949"
  679. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  680. "MsmSig" = "8:_UNDEFINED"
  681. }
  682. "Entry"
  683. {
  684. "MsmKey" = "8:_DBDBA1F6284D57CEEA560154F32452C4"
  685. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  686. "MsmSig" = "8:_UNDEFINED"
  687. }
  688. "Entry"
  689. {
  690. "MsmKey" = "8:_DCCE20394B1E51143D8D8DF25665A5B7"
  691. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  692. "MsmSig" = "8:_UNDEFINED"
  693. }
  694. "Entry"
  695. {
  696. "MsmKey" = "8:_E14763FD49BFCD1CB789621401B0759D"
  697. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  698. "MsmSig" = "8:_UNDEFINED"
  699. }
  700. "Entry"
  701. {
  702. "MsmKey" = "8:_E5364853044EABAC743E7940A1F505A9"
  703. "OwnerKey" = "8:_4CD88E9991163A20BFD8A10AE209DB7B"
  704. "MsmSig" = "8:_UNDEFINED"
  705. }
  706. "Entry"
  707. {
  708. "MsmKey" = "8:_E5364853044EABAC743E7940A1F505A9"
  709. "OwnerKey" = "8:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  710. "MsmSig" = "8:_UNDEFINED"
  711. }
  712. "Entry"
  713. {
  714. "MsmKey" = "8:_E6E6548986D29A4E6D88FF17A1324824"
  715. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  716. "MsmSig" = "8:_UNDEFINED"
  717. }
  718. "Entry"
  719. {
  720. "MsmKey" = "8:_E898E5500F27C7C7A7C390B289FF6702"
  721. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  722. "MsmSig" = "8:_UNDEFINED"
  723. }
  724. "Entry"
  725. {
  726. "MsmKey" = "8:_E94C6926E4EA1708D4197EAEBC4D16C3"
  727. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  728. "MsmSig" = "8:_UNDEFINED"
  729. }
  730. "Entry"
  731. {
  732. "MsmKey" = "8:_F3254796EBCE563BEF48892460BFE886"
  733. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  734. "MsmSig" = "8:_UNDEFINED"
  735. }
  736. "Entry"
  737. {
  738. "MsmKey" = "8:_F3254796EBCE563BEF48892460BFE886"
  739. "OwnerKey" = "8:_020F9272B90D8DAECDD5AC31D81C4520"
  740. "MsmSig" = "8:_UNDEFINED"
  741. }
  742. "Entry"
  743. {
  744. "MsmKey" = "8:_F513816FAD8D3116CD284A5DB9B4FCF9"
  745. "OwnerKey" = "8:_41CD44741D320E9FD094B4732BF86311"
  746. "MsmSig" = "8:_UNDEFINED"
  747. }
  748. "Entry"
  749. {
  750. "MsmKey" = "8:_F61649F3A7473D454A479971DD5DE8FC"
  751. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  752. "MsmSig" = "8:_UNDEFINED"
  753. }
  754. "Entry"
  755. {
  756. "MsmKey" = "8:_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  757. "OwnerKey" = "8:_D19421EA6775E5E8456C79DA00E075E4"
  758. "MsmSig" = "8:_UNDEFINED"
  759. }
  760. "Entry"
  761. {
  762. "MsmKey" = "8:_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  763. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  764. "MsmSig" = "8:_UNDEFINED"
  765. }
  766. "Entry"
  767. {
  768. "MsmKey" = "8:_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  769. "OwnerKey" = "8:_B2F40B0E5E96E96C652BAE4365FC9875"
  770. "MsmSig" = "8:_UNDEFINED"
  771. }
  772. "Entry"
  773. {
  774. "MsmKey" = "8:_FA8FC7866957AEE2283F754FF7A460AA"
  775. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  776. "MsmSig" = "8:_UNDEFINED"
  777. }
  778. "Entry"
  779. {
  780. "MsmKey" = "8:_FA8FC7866957AEE2283F754FF7A460AA"
  781. "OwnerKey" = "8:_B2F40B0E5E96E96C652BAE4365FC9875"
  782. "MsmSig" = "8:_UNDEFINED"
  783. }
  784. "Entry"
  785. {
  786. "MsmKey" = "8:_FA8FC7866957AEE2283F754FF7A460AA"
  787. "OwnerKey" = "8:_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  788. "MsmSig" = "8:_UNDEFINED"
  789. }
  790. "Entry"
  791. {
  792. "MsmKey" = "8:_FA8FC7866957AEE2283F754FF7A460AA"
  793. "OwnerKey" = "8:_D19421EA6775E5E8456C79DA00E075E4"
  794. "MsmSig" = "8:_UNDEFINED"
  795. }
  796. "Entry"
  797. {
  798. "MsmKey" = "8:_FFD00D118F2EEBDFF07D9A49B39428C7"
  799. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  800. "MsmSig" = "8:_UNDEFINED"
  801. }
  802. "Entry"
  803. {
  804. "MsmKey" = "8:_UNDEFINED"
  805. "OwnerKey" = "8:_579DAB99108E24F6935A646F3545E09E"
  806. "MsmSig" = "8:_UNDEFINED"
  807. }
  808. "Entry"
  809. {
  810. "MsmKey" = "8:_UNDEFINED"
  811. "OwnerKey" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  812. "MsmSig" = "8:_UNDEFINED"
  813. }
  814. "Entry"
  815. {
  816. "MsmKey" = "8:_UNDEFINED"
  817. "OwnerKey" = "8:_5FFED1240E09B904C44D85CBCA722F93"
  818. "MsmSig" = "8:_UNDEFINED"
  819. }
  820. "Entry"
  821. {
  822. "MsmKey" = "8:_UNDEFINED"
  823. "OwnerKey" = "8:_00BCC7B9E030038F1223C642F75AE6AB"
  824. "MsmSig" = "8:_UNDEFINED"
  825. }
  826. "Entry"
  827. {
  828. "MsmKey" = "8:_UNDEFINED"
  829. "OwnerKey" = "8:_ACB74580CAA0C25323D991E36FC510C8"
  830. "MsmSig" = "8:_UNDEFINED"
  831. }
  832. "Entry"
  833. {
  834. "MsmKey" = "8:_UNDEFINED"
  835. "OwnerKey" = "8:_876034A110C37C05FE390F5A14C346E7"
  836. "MsmSig" = "8:_UNDEFINED"
  837. }
  838. "Entry"
  839. {
  840. "MsmKey" = "8:_UNDEFINED"
  841. "OwnerKey" = "8:_2D6EDEB1FD954A709BDC14BC813F6B3B"
  842. "MsmSig" = "8:_UNDEFINED"
  843. }
  844. "Entry"
  845. {
  846. "MsmKey" = "8:_UNDEFINED"
  847. "OwnerKey" = "8:_943AE5C3C5230AB1748AD9681E03A087"
  848. "MsmSig" = "8:_UNDEFINED"
  849. }
  850. "Entry"
  851. {
  852. "MsmKey" = "8:_UNDEFINED"
  853. "OwnerKey" = "8:_4F69FFDD89F0AF8B085BF9BEAE86F253"
  854. "MsmSig" = "8:_UNDEFINED"
  855. }
  856. "Entry"
  857. {
  858. "MsmKey" = "8:_UNDEFINED"
  859. "OwnerKey" = "8:_CA5DB5BEF9012B88BC397D49788D81C4"
  860. "MsmSig" = "8:_UNDEFINED"
  861. }
  862. "Entry"
  863. {
  864. "MsmKey" = "8:_UNDEFINED"
  865. "OwnerKey" = "8:_0C725C5F469788BAF6443772AC316FA2"
  866. "MsmSig" = "8:_UNDEFINED"
  867. }
  868. "Entry"
  869. {
  870. "MsmKey" = "8:_UNDEFINED"
  871. "OwnerKey" = "8:_576DF7B6887BEDA96AFBD3797B06ABA5"
  872. "MsmSig" = "8:_UNDEFINED"
  873. }
  874. "Entry"
  875. {
  876. "MsmKey" = "8:_UNDEFINED"
  877. "OwnerKey" = "8:_379C514AF1CAB904781D90270529A3C1"
  878. "MsmSig" = "8:_UNDEFINED"
  879. }
  880. "Entry"
  881. {
  882. "MsmKey" = "8:_UNDEFINED"
  883. "OwnerKey" = "8:_59A1386810EE94457C8BA1E6F8FF0D2A"
  884. "MsmSig" = "8:_UNDEFINED"
  885. }
  886. "Entry"
  887. {
  888. "MsmKey" = "8:_UNDEFINED"
  889. "OwnerKey" = "8:_1EFA71F1163B65D03C6954A9F0CE51BB"
  890. "MsmSig" = "8:_UNDEFINED"
  891. }
  892. "Entry"
  893. {
  894. "MsmKey" = "8:_UNDEFINED"
  895. "OwnerKey" = "8:_BD688D4580E2F63FA43AC7ACF2BCE22E"
  896. "MsmSig" = "8:_UNDEFINED"
  897. }
  898. "Entry"
  899. {
  900. "MsmKey" = "8:_UNDEFINED"
  901. "OwnerKey" = "8:_8B144C32B77D175EB34FF12F9361D914"
  902. "MsmSig" = "8:_UNDEFINED"
  903. }
  904. "Entry"
  905. {
  906. "MsmKey" = "8:_UNDEFINED"
  907. "OwnerKey" = "8:_5E33B5BAE2F0E550AF6B02FAB4C54D52"
  908. "MsmSig" = "8:_UNDEFINED"
  909. }
  910. "Entry"
  911. {
  912. "MsmKey" = "8:_UNDEFINED"
  913. "OwnerKey" = "8:_5454280AD067CB67382A70D855521128"
  914. "MsmSig" = "8:_UNDEFINED"
  915. }
  916. "Entry"
  917. {
  918. "MsmKey" = "8:_UNDEFINED"
  919. "OwnerKey" = "8:_B2F40B0E5E96E96C652BAE4365FC9875"
  920. "MsmSig" = "8:_UNDEFINED"
  921. }
  922. "Entry"
  923. {
  924. "MsmKey" = "8:_UNDEFINED"
  925. "OwnerKey" = "8:_D19421EA6775E5E8456C79DA00E075E4"
  926. "MsmSig" = "8:_UNDEFINED"
  927. }
  928. "Entry"
  929. {
  930. "MsmKey" = "8:_UNDEFINED"
  931. "OwnerKey" = "8:_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  932. "MsmSig" = "8:_UNDEFINED"
  933. }
  934. "Entry"
  935. {
  936. "MsmKey" = "8:_UNDEFINED"
  937. "OwnerKey" = "8:_FA8FC7866957AEE2283F754FF7A460AA"
  938. "MsmSig" = "8:_UNDEFINED"
  939. }
  940. "Entry"
  941. {
  942. "MsmKey" = "8:_UNDEFINED"
  943. "OwnerKey" = "8:_8284DABDD090BABCCB1C407244125734"
  944. "MsmSig" = "8:_UNDEFINED"
  945. }
  946. "Entry"
  947. {
  948. "MsmKey" = "8:_UNDEFINED"
  949. "OwnerKey" = "8:_D24CFE10A6A5A8A68D32E486FD70E08A"
  950. "MsmSig" = "8:_UNDEFINED"
  951. }
  952. "Entry"
  953. {
  954. "MsmKey" = "8:_UNDEFINED"
  955. "OwnerKey" = "8:_01D3AEE7DF2FEBF31BEF9BD883F4DDA0"
  956. "MsmSig" = "8:_UNDEFINED"
  957. }
  958. "Entry"
  959. {
  960. "MsmKey" = "8:_UNDEFINED"
  961. "OwnerKey" = "8:_7AEE48BC7CE802CC7D1BD26264F67476"
  962. "MsmSig" = "8:_UNDEFINED"
  963. }
  964. "Entry"
  965. {
  966. "MsmKey" = "8:_UNDEFINED"
  967. "OwnerKey" = "8:_3976E85285FBCE3D8F89AF4A1E4A691E"
  968. "MsmSig" = "8:_UNDEFINED"
  969. }
  970. "Entry"
  971. {
  972. "MsmKey" = "8:_UNDEFINED"
  973. "OwnerKey" = "8:_E5364853044EABAC743E7940A1F505A9"
  974. "MsmSig" = "8:_UNDEFINED"
  975. }
  976. "Entry"
  977. {
  978. "MsmKey" = "8:_UNDEFINED"
  979. "OwnerKey" = "8:_36DC0CB201543AEC462D758A92B923E0"
  980. "MsmSig" = "8:_UNDEFINED"
  981. }
  982. "Entry"
  983. {
  984. "MsmKey" = "8:_UNDEFINED"
  985. "OwnerKey" = "8:_F513816FAD8D3116CD284A5DB9B4FCF9"
  986. "MsmSig" = "8:_UNDEFINED"
  987. }
  988. "Entry"
  989. {
  990. "MsmKey" = "8:_UNDEFINED"
  991. "OwnerKey" = "8:_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  992. "MsmSig" = "8:_UNDEFINED"
  993. }
  994. "Entry"
  995. {
  996. "MsmKey" = "8:_UNDEFINED"
  997. "OwnerKey" = "8:_95A14DF66945B3E1B3108C4CC7D07439"
  998. "MsmSig" = "8:_UNDEFINED"
  999. }
  1000. "Entry"
  1001. {
  1002. "MsmKey" = "8:_UNDEFINED"
  1003. "OwnerKey" = "8:_0ECD1A33048EAA8B70460B3AF0ABB4F0"
  1004. "MsmSig" = "8:_UNDEFINED"
  1005. }
  1006. "Entry"
  1007. {
  1008. "MsmKey" = "8:_UNDEFINED"
  1009. "OwnerKey" = "8:_329B8389918DC5FD89EE9FAEBAD8ACA6"
  1010. "MsmSig" = "8:_UNDEFINED"
  1011. }
  1012. "Entry"
  1013. {
  1014. "MsmKey" = "8:_UNDEFINED"
  1015. "OwnerKey" = "8:_9224DD5DA54FE48EFEE599842FEB8874"
  1016. "MsmSig" = "8:_UNDEFINED"
  1017. }
  1018. "Entry"
  1019. {
  1020. "MsmKey" = "8:_UNDEFINED"
  1021. "OwnerKey" = "8:_67EE8A76399C5313E3275BA19EF90E36"
  1022. "MsmSig" = "8:_UNDEFINED"
  1023. }
  1024. "Entry"
  1025. {
  1026. "MsmKey" = "8:_UNDEFINED"
  1027. "OwnerKey" = "8:_AE48B31460E349057F7CF7B67E320D03"
  1028. "MsmSig" = "8:_UNDEFINED"
  1029. }
  1030. "Entry"
  1031. {
  1032. "MsmKey" = "8:_UNDEFINED"
  1033. "OwnerKey" = "8:_B12547A3B43B145A07CBCC6DD0059F48"
  1034. "MsmSig" = "8:_UNDEFINED"
  1035. }
  1036. "Entry"
  1037. {
  1038. "MsmKey" = "8:_UNDEFINED"
  1039. "OwnerKey" = "8:_67307EB27C12A7DC7BB070BF134CD641"
  1040. "MsmSig" = "8:_UNDEFINED"
  1041. }
  1042. "Entry"
  1043. {
  1044. "MsmKey" = "8:_UNDEFINED"
  1045. "OwnerKey" = "8:_DBDBA1F6284D57CEEA560154F32452C4"
  1046. "MsmSig" = "8:_UNDEFINED"
  1047. }
  1048. "Entry"
  1049. {
  1050. "MsmKey" = "8:_UNDEFINED"
  1051. "OwnerKey" = "8:_E898E5500F27C7C7A7C390B289FF6702"
  1052. "MsmSig" = "8:_UNDEFINED"
  1053. }
  1054. "Entry"
  1055. {
  1056. "MsmKey" = "8:_UNDEFINED"
  1057. "OwnerKey" = "8:_8B6C989E772DDEDE4D1731313C6ED91F"
  1058. "MsmSig" = "8:_UNDEFINED"
  1059. }
  1060. "Entry"
  1061. {
  1062. "MsmKey" = "8:_UNDEFINED"
  1063. "OwnerKey" = "8:_5A1B2A15CC848CAFD8911DDCE13ED036"
  1064. "MsmSig" = "8:_UNDEFINED"
  1065. }
  1066. "Entry"
  1067. {
  1068. "MsmKey" = "8:_UNDEFINED"
  1069. "OwnerKey" = "8:_46DB9A975DFA2403F6BDEAB7D2A36ECA"
  1070. "MsmSig" = "8:_UNDEFINED"
  1071. }
  1072. "Entry"
  1073. {
  1074. "MsmKey" = "8:_UNDEFINED"
  1075. "OwnerKey" = "8:_A64A0CD6E0EF9E9C172F385BB2914EF6"
  1076. "MsmSig" = "8:_UNDEFINED"
  1077. }
  1078. "Entry"
  1079. {
  1080. "MsmKey" = "8:_UNDEFINED"
  1081. "OwnerKey" = "8:_E94C6926E4EA1708D4197EAEBC4D16C3"
  1082. "MsmSig" = "8:_UNDEFINED"
  1083. }
  1084. "Entry"
  1085. {
  1086. "MsmKey" = "8:_UNDEFINED"
  1087. "OwnerKey" = "8:_DCCE20394B1E51143D8D8DF25665A5B7"
  1088. "MsmSig" = "8:_UNDEFINED"
  1089. }
  1090. "Entry"
  1091. {
  1092. "MsmKey" = "8:_UNDEFINED"
  1093. "OwnerKey" = "8:_13909EF9AD0BF7D2C37551BC5AE18EEE"
  1094. "MsmSig" = "8:_UNDEFINED"
  1095. }
  1096. "Entry"
  1097. {
  1098. "MsmKey" = "8:_UNDEFINED"
  1099. "OwnerKey" = "8:_11A8508782A1BE6A090D2C389DAFF4A5"
  1100. "MsmSig" = "8:_UNDEFINED"
  1101. }
  1102. "Entry"
  1103. {
  1104. "MsmKey" = "8:_UNDEFINED"
  1105. "OwnerKey" = "8:_1E21CB290AC8C2256D90C890C0F59DD3"
  1106. "MsmSig" = "8:_UNDEFINED"
  1107. }
  1108. "Entry"
  1109. {
  1110. "MsmKey" = "8:_UNDEFINED"
  1111. "OwnerKey" = "8:_615CADFA09D376D11DAC1EA83316B714"
  1112. "MsmSig" = "8:_UNDEFINED"
  1113. }
  1114. "Entry"
  1115. {
  1116. "MsmKey" = "8:_UNDEFINED"
  1117. "OwnerKey" = "8:_5C8969D98D84CB10CF77335AAFE4976A"
  1118. "MsmSig" = "8:_UNDEFINED"
  1119. }
  1120. "Entry"
  1121. {
  1122. "MsmKey" = "8:_UNDEFINED"
  1123. "OwnerKey" = "8:_109D4C1A85941544BF0C5B632BB89C1D"
  1124. "MsmSig" = "8:_UNDEFINED"
  1125. }
  1126. "Entry"
  1127. {
  1128. "MsmKey" = "8:_UNDEFINED"
  1129. "OwnerKey" = "8:_72B6130A73E4C6966B3A2AB7436B97D8"
  1130. "MsmSig" = "8:_UNDEFINED"
  1131. }
  1132. "Entry"
  1133. {
  1134. "MsmKey" = "8:_UNDEFINED"
  1135. "OwnerKey" = "8:_22792362A3F1F14CB93F86947D2DBDA6"
  1136. "MsmSig" = "8:_UNDEFINED"
  1137. }
  1138. "Entry"
  1139. {
  1140. "MsmKey" = "8:_UNDEFINED"
  1141. "OwnerKey" = "8:_F61649F3A7473D454A479971DD5DE8FC"
  1142. "MsmSig" = "8:_UNDEFINED"
  1143. }
  1144. "Entry"
  1145. {
  1146. "MsmKey" = "8:_UNDEFINED"
  1147. "OwnerKey" = "8:_898D8EBE1DD5D1C9236042A98CD681EB"
  1148. "MsmSig" = "8:_UNDEFINED"
  1149. }
  1150. "Entry"
  1151. {
  1152. "MsmKey" = "8:_UNDEFINED"
  1153. "OwnerKey" = "8:_B2AF5C512A6DBAA734C4BECDF7C41531"
  1154. "MsmSig" = "8:_UNDEFINED"
  1155. }
  1156. "Entry"
  1157. {
  1158. "MsmKey" = "8:_UNDEFINED"
  1159. "OwnerKey" = "8:_6C0138B6051BE3590EB824944F6F7681"
  1160. "MsmSig" = "8:_UNDEFINED"
  1161. }
  1162. "Entry"
  1163. {
  1164. "MsmKey" = "8:_UNDEFINED"
  1165. "OwnerKey" = "8:_235D9A63A52B3A14CD06C64E2D343E7A"
  1166. "MsmSig" = "8:_UNDEFINED"
  1167. }
  1168. "Entry"
  1169. {
  1170. "MsmKey" = "8:_UNDEFINED"
  1171. "OwnerKey" = "8:_D3ECDD0D3D6625B24CB4EE5D81EEB949"
  1172. "MsmSig" = "8:_UNDEFINED"
  1173. }
  1174. "Entry"
  1175. {
  1176. "MsmKey" = "8:_UNDEFINED"
  1177. "OwnerKey" = "8:_B1BF989A859FD8ED1E8192E813FCD133"
  1178. "MsmSig" = "8:_UNDEFINED"
  1179. }
  1180. "Entry"
  1181. {
  1182. "MsmKey" = "8:_UNDEFINED"
  1183. "OwnerKey" = "8:_A028EDCF66C4F76E89DD897416BD6B76"
  1184. "MsmSig" = "8:_UNDEFINED"
  1185. }
  1186. "Entry"
  1187. {
  1188. "MsmKey" = "8:_UNDEFINED"
  1189. "OwnerKey" = "8:_48CEC1E64DDD68E98B8AEA74B71AF371"
  1190. "MsmSig" = "8:_UNDEFINED"
  1191. }
  1192. "Entry"
  1193. {
  1194. "MsmKey" = "8:_UNDEFINED"
  1195. "OwnerKey" = "8:_6C0D147C5A28C1549128018AD1BCAB5F"
  1196. "MsmSig" = "8:_UNDEFINED"
  1197. }
  1198. "Entry"
  1199. {
  1200. "MsmKey" = "8:_UNDEFINED"
  1201. "OwnerKey" = "8:_84D76B33143F8933394EDB7151380469"
  1202. "MsmSig" = "8:_UNDEFINED"
  1203. }
  1204. "Entry"
  1205. {
  1206. "MsmKey" = "8:_UNDEFINED"
  1207. "OwnerKey" = "8:_8ADC4C6988B7C2298BB34FA7740B4924"
  1208. "MsmSig" = "8:_UNDEFINED"
  1209. }
  1210. "Entry"
  1211. {
  1212. "MsmKey" = "8:_UNDEFINED"
  1213. "OwnerKey" = "8:_208493BC71A9A904E312CA1BABA37E81"
  1214. "MsmSig" = "8:_UNDEFINED"
  1215. }
  1216. "Entry"
  1217. {
  1218. "MsmKey" = "8:_UNDEFINED"
  1219. "OwnerKey" = "8:_9F2898B7DFF103320D6BB49AF9A8F970"
  1220. "MsmSig" = "8:_UNDEFINED"
  1221. }
  1222. "Entry"
  1223. {
  1224. "MsmKey" = "8:_UNDEFINED"
  1225. "OwnerKey" = "8:_15BE96DB99EA9F15DE31F6F4DF958EAF"
  1226. "MsmSig" = "8:_UNDEFINED"
  1227. }
  1228. "Entry"
  1229. {
  1230. "MsmKey" = "8:_UNDEFINED"
  1231. "OwnerKey" = "8:_0CA7CDFD8708926220995F437F398A7E"
  1232. "MsmSig" = "8:_UNDEFINED"
  1233. }
  1234. "Entry"
  1235. {
  1236. "MsmKey" = "8:_UNDEFINED"
  1237. "OwnerKey" = "8:_8C42BE771E0EE928C130B89C94A7CC71"
  1238. "MsmSig" = "8:_UNDEFINED"
  1239. }
  1240. "Entry"
  1241. {
  1242. "MsmKey" = "8:_UNDEFINED"
  1243. "OwnerKey" = "8:_7994D9EACB523FED24EF9FF51B2B64B9"
  1244. "MsmSig" = "8:_UNDEFINED"
  1245. }
  1246. "Entry"
  1247. {
  1248. "MsmKey" = "8:_UNDEFINED"
  1249. "OwnerKey" = "8:_B6E0D204D2D59F2B36542103F153039F"
  1250. "MsmSig" = "8:_UNDEFINED"
  1251. }
  1252. "Entry"
  1253. {
  1254. "MsmKey" = "8:_UNDEFINED"
  1255. "OwnerKey" = "8:_647C9E806D796D66B466EF878A0B10DE"
  1256. "MsmSig" = "8:_UNDEFINED"
  1257. }
  1258. "Entry"
  1259. {
  1260. "MsmKey" = "8:_UNDEFINED"
  1261. "OwnerKey" = "8:_D09714323021780B1F5E4DA16B0D6FA4"
  1262. "MsmSig" = "8:_UNDEFINED"
  1263. }
  1264. "Entry"
  1265. {
  1266. "MsmKey" = "8:_UNDEFINED"
  1267. "OwnerKey" = "8:_BC73F21DCF1E239874190098C3F8E68B"
  1268. "MsmSig" = "8:_UNDEFINED"
  1269. }
  1270. "Entry"
  1271. {
  1272. "MsmKey" = "8:_UNDEFINED"
  1273. "OwnerKey" = "8:_89725EF93049649E0E1E1C234A610EC9"
  1274. "MsmSig" = "8:_UNDEFINED"
  1275. }
  1276. "Entry"
  1277. {
  1278. "MsmKey" = "8:_UNDEFINED"
  1279. "OwnerKey" = "8:_F3254796EBCE563BEF48892460BFE886"
  1280. "MsmSig" = "8:_UNDEFINED"
  1281. }
  1282. "Entry"
  1283. {
  1284. "MsmKey" = "8:_UNDEFINED"
  1285. "OwnerKey" = "8:_FFD00D118F2EEBDFF07D9A49B39428C7"
  1286. "MsmSig" = "8:_UNDEFINED"
  1287. }
  1288. "Entry"
  1289. {
  1290. "MsmKey" = "8:_UNDEFINED"
  1291. "OwnerKey" = "8:_5F82492445C8D879C76485F542D7BDE9"
  1292. "MsmSig" = "8:_UNDEFINED"
  1293. }
  1294. "Entry"
  1295. {
  1296. "MsmKey" = "8:_UNDEFINED"
  1297. "OwnerKey" = "8:_27E8EABB992887A08ED3E5BBAAAE249A"
  1298. "MsmSig" = "8:_UNDEFINED"
  1299. }
  1300. "Entry"
  1301. {
  1302. "MsmKey" = "8:_UNDEFINED"
  1303. "OwnerKey" = "8:_E6E6548986D29A4E6D88FF17A1324824"
  1304. "MsmSig" = "8:_UNDEFINED"
  1305. }
  1306. "Entry"
  1307. {
  1308. "MsmKey" = "8:_UNDEFINED"
  1309. "OwnerKey" = "8:_81F5A67A82D95CCD4A665337B82BB006"
  1310. "MsmSig" = "8:_UNDEFINED"
  1311. }
  1312. "Entry"
  1313. {
  1314. "MsmKey" = "8:_UNDEFINED"
  1315. "OwnerKey" = "8:_556BAA0966B3556F2AAD454E4BC16284"
  1316. "MsmSig" = "8:_UNDEFINED"
  1317. }
  1318. "Entry"
  1319. {
  1320. "MsmKey" = "8:_UNDEFINED"
  1321. "OwnerKey" = "8:_ABC4F9644B3B1F8F27915D6FAC7B32DB"
  1322. "MsmSig" = "8:_UNDEFINED"
  1323. }
  1324. }
  1325. "Configurations"
  1326. {
  1327. "Debug"
  1328. {
  1329. "DisplayName" = "8:Debug"
  1330. "IsDebugOnly" = "11:TRUE"
  1331. "IsReleaseOnly" = "11:FALSE"
  1332. "OutputFilename" = "8:Debug\\Setup1.msi"
  1333. "PackageFilesAs" = "3:2"
  1334. "PackageFileSize" = "3:-2147483648"
  1335. "CabType" = "3:1"
  1336. "Compression" = "3:2"
  1337. "SignOutput" = "11:FALSE"
  1338. "CertificateFile" = "8:"
  1339. "PrivateKeyFile" = "8:"
  1340. "TimeStampServer" = "8:"
  1341. "InstallerBootstrapper" = "3:2"
  1342. }
  1343. "Release"
  1344. {
  1345. "DisplayName" = "8:Release"
  1346. "IsDebugOnly" = "11:FALSE"
  1347. "IsReleaseOnly" = "11:TRUE"
  1348. "OutputFilename" = "8:Release\\Setup1.msi"
  1349. "PackageFilesAs" = "3:2"
  1350. "PackageFileSize" = "3:-2147483648"
  1351. "CabType" = "3:1"
  1352. "Compression" = "3:2"
  1353. "SignOutput" = "11:FALSE"
  1354. "CertificateFile" = "8:"
  1355. "PrivateKeyFile" = "8:"
  1356. "TimeStampServer" = "8:"
  1357. "InstallerBootstrapper" = "3:2"
  1358. }
  1359. }
  1360. "Deployable"
  1361. {
  1362. "CustomAction"
  1363. {
  1364. }
  1365. "DefaultFeature"
  1366. {
  1367. "Name" = "8:DefaultFeature"
  1368. "Title" = "8:"
  1369. "Description" = "8:"
  1370. }
  1371. "ExternalPersistence"
  1372. {
  1373. "LaunchCondition"
  1374. {
  1375. "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_588CE68D040F4F9298774D8E2EB51181"
  1376. {
  1377. "Name" = "8:.NET Framework"
  1378. "Message" = "8:[VSDNETMSG]"
  1379. "FrameworkVersion" = "8:.NETFramework,Version=v4.6.1"
  1380. "AllowLaterVersions" = "11:FALSE"
  1381. "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728"
  1382. }
  1383. }
  1384. }
  1385. "File"
  1386. {
  1387. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_00BCC7B9E030038F1223C642F75AE6AB"
  1388. {
  1389. "AssemblyRegister" = "3:1"
  1390. "AssemblyIsInGAC" = "11:FALSE"
  1391. "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  1392. "ScatterAssemblies"
  1393. {
  1394. "_00BCC7B9E030038F1223C642F75AE6AB"
  1395. {
  1396. "Name" = "8:System.Security.Cryptography.X509Certificates.dll"
  1397. "Attributes" = "3:512"
  1398. }
  1399. }
  1400. "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll"
  1401. "TargetName" = "8:"
  1402. "Tag" = "8:"
  1403. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1404. "Condition" = "8:"
  1405. "Transitive" = "11:FALSE"
  1406. "Vital" = "11:TRUE"
  1407. "ReadOnly" = "11:FALSE"
  1408. "Hidden" = "11:FALSE"
  1409. "System" = "11:FALSE"
  1410. "Permanent" = "11:FALSE"
  1411. "SharedLegacy" = "11:FALSE"
  1412. "PackageAs" = "3:1"
  1413. "Register" = "3:1"
  1414. "Exclude" = "11:FALSE"
  1415. "IsDependency" = "11:TRUE"
  1416. "IsolateTo" = "8:"
  1417. }
  1418. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_01D3AEE7DF2FEBF31BEF9BD883F4DDA0"
  1419. {
  1420. "AssemblyRegister" = "3:1"
  1421. "AssemblyIsInGAC" = "11:TRUE"
  1422. "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  1423. "ScatterAssemblies"
  1424. {
  1425. "_01D3AEE7DF2FEBF31BEF9BD883F4DDA0"
  1426. {
  1427. "Name" = "8:System.Reflection.dll"
  1428. "Attributes" = "3:512"
  1429. }
  1430. }
  1431. "SourcePath" = "8:System.Reflection.dll"
  1432. "TargetName" = "8:"
  1433. "Tag" = "8:"
  1434. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1435. "Condition" = "8:"
  1436. "Transitive" = "11:FALSE"
  1437. "Vital" = "11:TRUE"
  1438. "ReadOnly" = "11:FALSE"
  1439. "Hidden" = "11:FALSE"
  1440. "System" = "11:FALSE"
  1441. "Permanent" = "11:FALSE"
  1442. "SharedLegacy" = "11:FALSE"
  1443. "PackageAs" = "3:1"
  1444. "Register" = "3:1"
  1445. "Exclude" = "11:FALSE"
  1446. "IsDependency" = "11:TRUE"
  1447. "IsolateTo" = "8:"
  1448. }
  1449. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_020F9272B90D8DAECDD5AC31D81C4520"
  1450. {
  1451. "AssemblyRegister" = "3:1"
  1452. "AssemblyIsInGAC" = "11:FALSE"
  1453. "AssemblyAsmDisplayName" = "8:System.Diagnostics.DiagnosticSource, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"
  1454. "ScatterAssemblies"
  1455. {
  1456. "_020F9272B90D8DAECDD5AC31D81C4520"
  1457. {
  1458. "Name" = "8:System.Diagnostics.DiagnosticSource.dll"
  1459. "Attributes" = "3:512"
  1460. }
  1461. }
  1462. "SourcePath" = "8:System.Diagnostics.DiagnosticSource.dll"
  1463. "TargetName" = "8:"
  1464. "Tag" = "8:"
  1465. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1466. "Condition" = "8:"
  1467. "Transitive" = "11:FALSE"
  1468. "Vital" = "11:TRUE"
  1469. "ReadOnly" = "11:FALSE"
  1470. "Hidden" = "11:FALSE"
  1471. "System" = "11:FALSE"
  1472. "Permanent" = "11:FALSE"
  1473. "SharedLegacy" = "11:FALSE"
  1474. "PackageAs" = "3:1"
  1475. "Register" = "3:1"
  1476. "Exclude" = "11:FALSE"
  1477. "IsDependency" = "11:TRUE"
  1478. "IsolateTo" = "8:"
  1479. }
  1480. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0C725C5F469788BAF6443772AC316FA2"
  1481. {
  1482. "AssemblyRegister" = "3:1"
  1483. "AssemblyIsInGAC" = "11:FALSE"
  1484. "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  1485. "ScatterAssemblies"
  1486. {
  1487. "_0C725C5F469788BAF6443772AC316FA2"
  1488. {
  1489. "Name" = "8:System.IO.FileSystem.Primitives.dll"
  1490. "Attributes" = "3:512"
  1491. }
  1492. }
  1493. "SourcePath" = "8:System.IO.FileSystem.Primitives.dll"
  1494. "TargetName" = "8:"
  1495. "Tag" = "8:"
  1496. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1497. "Condition" = "8:"
  1498. "Transitive" = "11:FALSE"
  1499. "Vital" = "11:TRUE"
  1500. "ReadOnly" = "11:FALSE"
  1501. "Hidden" = "11:FALSE"
  1502. "System" = "11:FALSE"
  1503. "Permanent" = "11:FALSE"
  1504. "SharedLegacy" = "11:FALSE"
  1505. "PackageAs" = "3:1"
  1506. "Register" = "3:1"
  1507. "Exclude" = "11:FALSE"
  1508. "IsDependency" = "11:TRUE"
  1509. "IsolateTo" = "8:"
  1510. }
  1511. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0CA7CDFD8708926220995F437F398A7E"
  1512. {
  1513. "AssemblyRegister" = "3:1"
  1514. "AssemblyIsInGAC" = "11:FALSE"
  1515. "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1516. "ScatterAssemblies"
  1517. {
  1518. "_0CA7CDFD8708926220995F437F398A7E"
  1519. {
  1520. "Name" = "8:System.Net.NetworkInformation.dll"
  1521. "Attributes" = "3:512"
  1522. }
  1523. }
  1524. "SourcePath" = "8:System.Net.NetworkInformation.dll"
  1525. "TargetName" = "8:"
  1526. "Tag" = "8:"
  1527. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1528. "Condition" = "8:"
  1529. "Transitive" = "11:FALSE"
  1530. "Vital" = "11:TRUE"
  1531. "ReadOnly" = "11:FALSE"
  1532. "Hidden" = "11:FALSE"
  1533. "System" = "11:FALSE"
  1534. "Permanent" = "11:FALSE"
  1535. "SharedLegacy" = "11:FALSE"
  1536. "PackageAs" = "3:1"
  1537. "Register" = "3:1"
  1538. "Exclude" = "11:FALSE"
  1539. "IsDependency" = "11:TRUE"
  1540. "IsolateTo" = "8:"
  1541. }
  1542. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0ECD1A33048EAA8B70460B3AF0ABB4F0"
  1543. {
  1544. "AssemblyRegister" = "3:1"
  1545. "AssemblyIsInGAC" = "11:TRUE"
  1546. "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  1547. "ScatterAssemblies"
  1548. {
  1549. "_0ECD1A33048EAA8B70460B3AF0ABB4F0"
  1550. {
  1551. "Name" = "8:System.Collections.dll"
  1552. "Attributes" = "3:512"
  1553. }
  1554. }
  1555. "SourcePath" = "8:System.Collections.dll"
  1556. "TargetName" = "8:"
  1557. "Tag" = "8:"
  1558. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1559. "Condition" = "8:"
  1560. "Transitive" = "11:FALSE"
  1561. "Vital" = "11:TRUE"
  1562. "ReadOnly" = "11:FALSE"
  1563. "Hidden" = "11:FALSE"
  1564. "System" = "11:FALSE"
  1565. "Permanent" = "11:FALSE"
  1566. "SharedLegacy" = "11:FALSE"
  1567. "PackageAs" = "3:1"
  1568. "Register" = "3:1"
  1569. "Exclude" = "11:FALSE"
  1570. "IsDependency" = "11:TRUE"
  1571. "IsolateTo" = "8:"
  1572. }
  1573. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_109D4C1A85941544BF0C5B632BB89C1D"
  1574. {
  1575. "AssemblyRegister" = "3:1"
  1576. "AssemblyIsInGAC" = "11:FALSE"
  1577. "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1578. "ScatterAssemblies"
  1579. {
  1580. "_109D4C1A85941544BF0C5B632BB89C1D"
  1581. {
  1582. "Name" = "8:System.Runtime.Serialization.Json.dll"
  1583. "Attributes" = "3:512"
  1584. }
  1585. }
  1586. "SourcePath" = "8:System.Runtime.Serialization.Json.dll"
  1587. "TargetName" = "8:"
  1588. "Tag" = "8:"
  1589. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1590. "Condition" = "8:"
  1591. "Transitive" = "11:FALSE"
  1592. "Vital" = "11:TRUE"
  1593. "ReadOnly" = "11:FALSE"
  1594. "Hidden" = "11:FALSE"
  1595. "System" = "11:FALSE"
  1596. "Permanent" = "11:FALSE"
  1597. "SharedLegacy" = "11:FALSE"
  1598. "PackageAs" = "3:1"
  1599. "Register" = "3:1"
  1600. "Exclude" = "11:FALSE"
  1601. "IsDependency" = "11:TRUE"
  1602. "IsolateTo" = "8:"
  1603. }
  1604. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_11A8508782A1BE6A090D2C389DAFF4A5"
  1605. {
  1606. "AssemblyRegister" = "3:1"
  1607. "AssemblyIsInGAC" = "11:FALSE"
  1608. "AssemblyAsmDisplayName" = "8:System.ServiceModel.Duplex, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1609. "ScatterAssemblies"
  1610. {
  1611. "_11A8508782A1BE6A090D2C389DAFF4A5"
  1612. {
  1613. "Name" = "8:System.ServiceModel.Duplex.dll"
  1614. "Attributes" = "3:512"
  1615. }
  1616. }
  1617. "SourcePath" = "8:System.ServiceModel.Duplex.dll"
  1618. "TargetName" = "8:"
  1619. "Tag" = "8:"
  1620. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1621. "Condition" = "8:"
  1622. "Transitive" = "11:FALSE"
  1623. "Vital" = "11:TRUE"
  1624. "ReadOnly" = "11:FALSE"
  1625. "Hidden" = "11:FALSE"
  1626. "System" = "11:FALSE"
  1627. "Permanent" = "11:FALSE"
  1628. "SharedLegacy" = "11:FALSE"
  1629. "PackageAs" = "3:1"
  1630. "Register" = "3:1"
  1631. "Exclude" = "11:FALSE"
  1632. "IsDependency" = "11:TRUE"
  1633. "IsolateTo" = "8:"
  1634. }
  1635. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_13909EF9AD0BF7D2C37551BC5AE18EEE"
  1636. {
  1637. "AssemblyRegister" = "3:1"
  1638. "AssemblyIsInGAC" = "11:FALSE"
  1639. "AssemblyAsmDisplayName" = "8:System.ServiceModel.Http, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1640. "ScatterAssemblies"
  1641. {
  1642. "_13909EF9AD0BF7D2C37551BC5AE18EEE"
  1643. {
  1644. "Name" = "8:System.ServiceModel.Http.dll"
  1645. "Attributes" = "3:512"
  1646. }
  1647. }
  1648. "SourcePath" = "8:System.ServiceModel.Http.dll"
  1649. "TargetName" = "8:"
  1650. "Tag" = "8:"
  1651. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1652. "Condition" = "8:"
  1653. "Transitive" = "11:FALSE"
  1654. "Vital" = "11:TRUE"
  1655. "ReadOnly" = "11:FALSE"
  1656. "Hidden" = "11:FALSE"
  1657. "System" = "11:FALSE"
  1658. "Permanent" = "11:FALSE"
  1659. "SharedLegacy" = "11:FALSE"
  1660. "PackageAs" = "3:1"
  1661. "Register" = "3:1"
  1662. "Exclude" = "11:FALSE"
  1663. "IsDependency" = "11:TRUE"
  1664. "IsolateTo" = "8:"
  1665. }
  1666. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_15BE96DB99EA9F15DE31F6F4DF958EAF"
  1667. {
  1668. "AssemblyRegister" = "3:1"
  1669. "AssemblyIsInGAC" = "11:FALSE"
  1670. "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1671. "ScatterAssemblies"
  1672. {
  1673. "_15BE96DB99EA9F15DE31F6F4DF958EAF"
  1674. {
  1675. "Name" = "8:System.Net.Primitives.dll"
  1676. "Attributes" = "3:512"
  1677. }
  1678. }
  1679. "SourcePath" = "8:System.Net.Primitives.dll"
  1680. "TargetName" = "8:"
  1681. "Tag" = "8:"
  1682. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1683. "Condition" = "8:"
  1684. "Transitive" = "11:FALSE"
  1685. "Vital" = "11:TRUE"
  1686. "ReadOnly" = "11:FALSE"
  1687. "Hidden" = "11:FALSE"
  1688. "System" = "11:FALSE"
  1689. "Permanent" = "11:FALSE"
  1690. "SharedLegacy" = "11:FALSE"
  1691. "PackageAs" = "3:1"
  1692. "Register" = "3:1"
  1693. "Exclude" = "11:FALSE"
  1694. "IsDependency" = "11:TRUE"
  1695. "IsolateTo" = "8:"
  1696. }
  1697. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E21CB290AC8C2256D90C890C0F59DD3"
  1698. {
  1699. "AssemblyRegister" = "3:1"
  1700. "AssemblyIsInGAC" = "11:FALSE"
  1701. "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1702. "ScatterAssemblies"
  1703. {
  1704. "_1E21CB290AC8C2256D90C890C0F59DD3"
  1705. {
  1706. "Name" = "8:System.Security.Principal.dll"
  1707. "Attributes" = "3:512"
  1708. }
  1709. }
  1710. "SourcePath" = "8:System.Security.Principal.dll"
  1711. "TargetName" = "8:"
  1712. "Tag" = "8:"
  1713. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1714. "Condition" = "8:"
  1715. "Transitive" = "11:FALSE"
  1716. "Vital" = "11:TRUE"
  1717. "ReadOnly" = "11:FALSE"
  1718. "Hidden" = "11:FALSE"
  1719. "System" = "11:FALSE"
  1720. "Permanent" = "11:FALSE"
  1721. "SharedLegacy" = "11:FALSE"
  1722. "PackageAs" = "3:1"
  1723. "Register" = "3:1"
  1724. "Exclude" = "11:FALSE"
  1725. "IsDependency" = "11:TRUE"
  1726. "IsolateTo" = "8:"
  1727. }
  1728. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1EFA71F1163B65D03C6954A9F0CE51BB"
  1729. {
  1730. "AssemblyRegister" = "3:1"
  1731. "AssemblyIsInGAC" = "11:FALSE"
  1732. "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  1733. "ScatterAssemblies"
  1734. {
  1735. "_1EFA71F1163B65D03C6954A9F0CE51BB"
  1736. {
  1737. "Name" = "8:System.Globalization.Calendars.dll"
  1738. "Attributes" = "3:512"
  1739. }
  1740. }
  1741. "SourcePath" = "8:System.Globalization.Calendars.dll"
  1742. "TargetName" = "8:"
  1743. "Tag" = "8:"
  1744. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1745. "Condition" = "8:"
  1746. "Transitive" = "11:FALSE"
  1747. "Vital" = "11:TRUE"
  1748. "ReadOnly" = "11:FALSE"
  1749. "Hidden" = "11:FALSE"
  1750. "System" = "11:FALSE"
  1751. "Permanent" = "11:FALSE"
  1752. "SharedLegacy" = "11:FALSE"
  1753. "PackageAs" = "3:1"
  1754. "Register" = "3:1"
  1755. "Exclude" = "11:FALSE"
  1756. "IsDependency" = "11:TRUE"
  1757. "IsolateTo" = "8:"
  1758. }
  1759. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_208493BC71A9A904E312CA1BABA37E81"
  1760. {
  1761. "AssemblyRegister" = "3:1"
  1762. "AssemblyIsInGAC" = "11:FALSE"
  1763. "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1764. "ScatterAssemblies"
  1765. {
  1766. "_208493BC71A9A904E312CA1BABA37E81"
  1767. {
  1768. "Name" = "8:System.Net.WebHeaderCollection.dll"
  1769. "Attributes" = "3:512"
  1770. }
  1771. }
  1772. "SourcePath" = "8:System.Net.WebHeaderCollection.dll"
  1773. "TargetName" = "8:"
  1774. "Tag" = "8:"
  1775. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1776. "Condition" = "8:"
  1777. "Transitive" = "11:FALSE"
  1778. "Vital" = "11:TRUE"
  1779. "ReadOnly" = "11:FALSE"
  1780. "Hidden" = "11:FALSE"
  1781. "System" = "11:FALSE"
  1782. "Permanent" = "11:FALSE"
  1783. "SharedLegacy" = "11:FALSE"
  1784. "PackageAs" = "3:1"
  1785. "Register" = "3:1"
  1786. "Exclude" = "11:FALSE"
  1787. "IsDependency" = "11:TRUE"
  1788. "IsolateTo" = "8:"
  1789. }
  1790. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_22792362A3F1F14CB93F86947D2DBDA6"
  1791. {
  1792. "AssemblyRegister" = "3:1"
  1793. "AssemblyIsInGAC" = "11:FALSE"
  1794. "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1795. "ScatterAssemblies"
  1796. {
  1797. "_22792362A3F1F14CB93F86947D2DBDA6"
  1798. {
  1799. "Name" = "8:System.Runtime.InteropServices.WindowsRuntime.dll"
  1800. "Attributes" = "3:512"
  1801. }
  1802. }
  1803. "SourcePath" = "8:System.Runtime.InteropServices.WindowsRuntime.dll"
  1804. "TargetName" = "8:"
  1805. "Tag" = "8:"
  1806. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1807. "Condition" = "8:"
  1808. "Transitive" = "11:FALSE"
  1809. "Vital" = "11:TRUE"
  1810. "ReadOnly" = "11:FALSE"
  1811. "Hidden" = "11:FALSE"
  1812. "System" = "11:FALSE"
  1813. "Permanent" = "11:FALSE"
  1814. "SharedLegacy" = "11:FALSE"
  1815. "PackageAs" = "3:1"
  1816. "Register" = "3:1"
  1817. "Exclude" = "11:FALSE"
  1818. "IsDependency" = "11:TRUE"
  1819. "IsolateTo" = "8:"
  1820. }
  1821. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_235D9A63A52B3A14CD06C64E2D343E7A"
  1822. {
  1823. "AssemblyRegister" = "3:1"
  1824. "AssemblyIsInGAC" = "11:FALSE"
  1825. "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1826. "ScatterAssemblies"
  1827. {
  1828. "_235D9A63A52B3A14CD06C64E2D343E7A"
  1829. {
  1830. "Name" = "8:System.Resources.ResourceManager.dll"
  1831. "Attributes" = "3:512"
  1832. }
  1833. }
  1834. "SourcePath" = "8:System.Resources.ResourceManager.dll"
  1835. "TargetName" = "8:"
  1836. "Tag" = "8:"
  1837. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1838. "Condition" = "8:"
  1839. "Transitive" = "11:FALSE"
  1840. "Vital" = "11:TRUE"
  1841. "ReadOnly" = "11:FALSE"
  1842. "Hidden" = "11:FALSE"
  1843. "System" = "11:FALSE"
  1844. "Permanent" = "11:FALSE"
  1845. "SharedLegacy" = "11:FALSE"
  1846. "PackageAs" = "3:1"
  1847. "Register" = "3:1"
  1848. "Exclude" = "11:FALSE"
  1849. "IsDependency" = "11:TRUE"
  1850. "IsolateTo" = "8:"
  1851. }
  1852. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27E8EABB992887A08ED3E5BBAAAE249A"
  1853. {
  1854. "AssemblyRegister" = "3:1"
  1855. "AssemblyIsInGAC" = "11:FALSE"
  1856. "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1857. "ScatterAssemblies"
  1858. {
  1859. "_27E8EABB992887A08ED3E5BBAAAE249A"
  1860. {
  1861. "Name" = "8:System.Diagnostics.Contracts.dll"
  1862. "Attributes" = "3:512"
  1863. }
  1864. }
  1865. "SourcePath" = "8:System.Diagnostics.Contracts.dll"
  1866. "TargetName" = "8:"
  1867. "Tag" = "8:"
  1868. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1869. "Condition" = "8:"
  1870. "Transitive" = "11:FALSE"
  1871. "Vital" = "11:TRUE"
  1872. "ReadOnly" = "11:FALSE"
  1873. "Hidden" = "11:FALSE"
  1874. "System" = "11:FALSE"
  1875. "Permanent" = "11:FALSE"
  1876. "SharedLegacy" = "11:FALSE"
  1877. "PackageAs" = "3:1"
  1878. "Register" = "3:1"
  1879. "Exclude" = "11:FALSE"
  1880. "IsDependency" = "11:TRUE"
  1881. "IsolateTo" = "8:"
  1882. }
  1883. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2D6EDEB1FD954A709BDC14BC813F6B3B"
  1884. {
  1885. "AssemblyRegister" = "3:1"
  1886. "AssemblyIsInGAC" = "11:FALSE"
  1887. "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  1888. "ScatterAssemblies"
  1889. {
  1890. "_2D6EDEB1FD954A709BDC14BC813F6B3B"
  1891. {
  1892. "Name" = "8:System.Security.Cryptography.Algorithms.dll"
  1893. "Attributes" = "3:512"
  1894. }
  1895. }
  1896. "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll"
  1897. "TargetName" = "8:"
  1898. "Tag" = "8:"
  1899. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1900. "Condition" = "8:"
  1901. "Transitive" = "11:FALSE"
  1902. "Vital" = "11:TRUE"
  1903. "ReadOnly" = "11:FALSE"
  1904. "Hidden" = "11:FALSE"
  1905. "System" = "11:FALSE"
  1906. "Permanent" = "11:FALSE"
  1907. "SharedLegacy" = "11:FALSE"
  1908. "PackageAs" = "3:1"
  1909. "Register" = "3:1"
  1910. "Exclude" = "11:FALSE"
  1911. "IsDependency" = "11:TRUE"
  1912. "IsolateTo" = "8:"
  1913. }
  1914. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_329B8389918DC5FD89EE9FAEBAD8ACA6"
  1915. {
  1916. "AssemblyRegister" = "3:1"
  1917. "AssemblyIsInGAC" = "11:FALSE"
  1918. "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
  1919. "ScatterAssemblies"
  1920. {
  1921. "_329B8389918DC5FD89EE9FAEBAD8ACA6"
  1922. {
  1923. "Name" = "8:System.IO.Compression.FileSystem.dll"
  1924. "Attributes" = "3:512"
  1925. }
  1926. }
  1927. "SourcePath" = "8:System.IO.Compression.FileSystem.dll"
  1928. "TargetName" = "8:"
  1929. "Tag" = "8:"
  1930. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1931. "Condition" = "8:"
  1932. "Transitive" = "11:FALSE"
  1933. "Vital" = "11:TRUE"
  1934. "ReadOnly" = "11:FALSE"
  1935. "Hidden" = "11:FALSE"
  1936. "System" = "11:FALSE"
  1937. "Permanent" = "11:FALSE"
  1938. "SharedLegacy" = "11:FALSE"
  1939. "PackageAs" = "3:1"
  1940. "Register" = "3:1"
  1941. "Exclude" = "11:FALSE"
  1942. "IsDependency" = "11:TRUE"
  1943. "IsolateTo" = "8:"
  1944. }
  1945. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_36DC0CB201543AEC462D758A92B923E0"
  1946. {
  1947. "AssemblyRegister" = "3:1"
  1948. "AssemblyIsInGAC" = "11:TRUE"
  1949. "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  1950. "ScatterAssemblies"
  1951. {
  1952. "_36DC0CB201543AEC462D758A92B923E0"
  1953. {
  1954. "Name" = "8:System.Threading.dll"
  1955. "Attributes" = "3:512"
  1956. }
  1957. }
  1958. "SourcePath" = "8:System.Threading.dll"
  1959. "TargetName" = "8:"
  1960. "Tag" = "8:"
  1961. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1962. "Condition" = "8:"
  1963. "Transitive" = "11:FALSE"
  1964. "Vital" = "11:TRUE"
  1965. "ReadOnly" = "11:FALSE"
  1966. "Hidden" = "11:FALSE"
  1967. "System" = "11:FALSE"
  1968. "Permanent" = "11:FALSE"
  1969. "SharedLegacy" = "11:FALSE"
  1970. "PackageAs" = "3:1"
  1971. "Register" = "3:1"
  1972. "Exclude" = "11:FALSE"
  1973. "IsDependency" = "11:TRUE"
  1974. "IsolateTo" = "8:"
  1975. }
  1976. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_379C514AF1CAB904781D90270529A3C1"
  1977. {
  1978. "AssemblyRegister" = "3:1"
  1979. "AssemblyIsInGAC" = "11:FALSE"
  1980. "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
  1981. "ScatterAssemblies"
  1982. {
  1983. "_379C514AF1CAB904781D90270529A3C1"
  1984. {
  1985. "Name" = "8:System.IO.Compression.ZipFile.dll"
  1986. "Attributes" = "3:512"
  1987. }
  1988. }
  1989. "SourcePath" = "8:System.IO.Compression.ZipFile.dll"
  1990. "TargetName" = "8:"
  1991. "Tag" = "8:"
  1992. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  1993. "Condition" = "8:"
  1994. "Transitive" = "11:FALSE"
  1995. "Vital" = "11:TRUE"
  1996. "ReadOnly" = "11:FALSE"
  1997. "Hidden" = "11:FALSE"
  1998. "System" = "11:FALSE"
  1999. "Permanent" = "11:FALSE"
  2000. "SharedLegacy" = "11:FALSE"
  2001. "PackageAs" = "3:1"
  2002. "Register" = "3:1"
  2003. "Exclude" = "11:FALSE"
  2004. "IsDependency" = "11:TRUE"
  2005. "IsolateTo" = "8:"
  2006. }
  2007. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3976E85285FBCE3D8F89AF4A1E4A691E"
  2008. {
  2009. "AssemblyRegister" = "3:1"
  2010. "AssemblyIsInGAC" = "11:TRUE"
  2011. "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  2012. "ScatterAssemblies"
  2013. {
  2014. "_3976E85285FBCE3D8F89AF4A1E4A691E"
  2015. {
  2016. "Name" = "8:System.Globalization.dll"
  2017. "Attributes" = "3:512"
  2018. }
  2019. }
  2020. "SourcePath" = "8:System.Globalization.dll"
  2021. "TargetName" = "8:"
  2022. "Tag" = "8:"
  2023. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2024. "Condition" = "8:"
  2025. "Transitive" = "11:FALSE"
  2026. "Vital" = "11:TRUE"
  2027. "ReadOnly" = "11:FALSE"
  2028. "Hidden" = "11:FALSE"
  2029. "System" = "11:FALSE"
  2030. "Permanent" = "11:FALSE"
  2031. "SharedLegacy" = "11:FALSE"
  2032. "PackageAs" = "3:1"
  2033. "Register" = "3:1"
  2034. "Exclude" = "11:FALSE"
  2035. "IsDependency" = "11:TRUE"
  2036. "IsolateTo" = "8:"
  2037. }
  2038. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_41CD44741D320E9FD094B4732BF86311"
  2039. {
  2040. "AssemblyRegister" = "3:1"
  2041. "AssemblyIsInGAC" = "11:FALSE"
  2042. "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Logging, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"
  2043. "ScatterAssemblies"
  2044. {
  2045. "_41CD44741D320E9FD094B4732BF86311"
  2046. {
  2047. "Name" = "8:Microsoft.Extensions.Logging.dll"
  2048. "Attributes" = "3:512"
  2049. }
  2050. }
  2051. "SourcePath" = "8:Microsoft.Extensions.Logging.dll"
  2052. "TargetName" = "8:"
  2053. "Tag" = "8:"
  2054. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2055. "Condition" = "8:"
  2056. "Transitive" = "11:FALSE"
  2057. "Vital" = "11:TRUE"
  2058. "ReadOnly" = "11:FALSE"
  2059. "Hidden" = "11:FALSE"
  2060. "System" = "11:FALSE"
  2061. "Permanent" = "11:FALSE"
  2062. "SharedLegacy" = "11:FALSE"
  2063. "PackageAs" = "3:1"
  2064. "Register" = "3:1"
  2065. "Exclude" = "11:FALSE"
  2066. "IsDependency" = "11:TRUE"
  2067. "IsolateTo" = "8:"
  2068. }
  2069. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_46DB9A975DFA2403F6BDEAB7D2A36ECA"
  2070. {
  2071. "AssemblyRegister" = "3:1"
  2072. "AssemblyIsInGAC" = "11:FALSE"
  2073. "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2074. "ScatterAssemblies"
  2075. {
  2076. "_46DB9A975DFA2403F6BDEAB7D2A36ECA"
  2077. {
  2078. "Name" = "8:System.Text.Encoding.dll"
  2079. "Attributes" = "3:512"
  2080. }
  2081. }
  2082. "SourcePath" = "8:System.Text.Encoding.dll"
  2083. "TargetName" = "8:"
  2084. "Tag" = "8:"
  2085. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2086. "Condition" = "8:"
  2087. "Transitive" = "11:FALSE"
  2088. "Vital" = "11:TRUE"
  2089. "ReadOnly" = "11:FALSE"
  2090. "Hidden" = "11:FALSE"
  2091. "System" = "11:FALSE"
  2092. "Permanent" = "11:FALSE"
  2093. "SharedLegacy" = "11:FALSE"
  2094. "PackageAs" = "3:1"
  2095. "Register" = "3:1"
  2096. "Exclude" = "11:FALSE"
  2097. "IsDependency" = "11:TRUE"
  2098. "IsolateTo" = "8:"
  2099. }
  2100. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_48CEC1E64DDD68E98B8AEA74B71AF371"
  2101. {
  2102. "AssemblyRegister" = "3:1"
  2103. "AssemblyIsInGAC" = "11:FALSE"
  2104. "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2105. "ScatterAssemblies"
  2106. {
  2107. "_48CEC1E64DDD68E98B8AEA74B71AF371"
  2108. {
  2109. "Name" = "8:System.Reflection.Emit.ILGeneration.dll"
  2110. "Attributes" = "3:512"
  2111. }
  2112. }
  2113. "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll"
  2114. "TargetName" = "8:"
  2115. "Tag" = "8:"
  2116. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2117. "Condition" = "8:"
  2118. "Transitive" = "11:FALSE"
  2119. "Vital" = "11:TRUE"
  2120. "ReadOnly" = "11:FALSE"
  2121. "Hidden" = "11:FALSE"
  2122. "System" = "11:FALSE"
  2123. "Permanent" = "11:FALSE"
  2124. "SharedLegacy" = "11:FALSE"
  2125. "PackageAs" = "3:1"
  2126. "Register" = "3:1"
  2127. "Exclude" = "11:FALSE"
  2128. "IsDependency" = "11:TRUE"
  2129. "IsolateTo" = "8:"
  2130. }
  2131. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4CD88E9991163A20BFD8A10AE209DB7B"
  2132. {
  2133. "AssemblyRegister" = "3:1"
  2134. "AssemblyIsInGAC" = "11:FALSE"
  2135. "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.DependencyInjection.Abstractions, Version=1.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"
  2136. "ScatterAssemblies"
  2137. {
  2138. "_4CD88E9991163A20BFD8A10AE209DB7B"
  2139. {
  2140. "Name" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll"
  2141. "Attributes" = "3:512"
  2142. }
  2143. }
  2144. "SourcePath" = "8:Microsoft.Extensions.DependencyInjection.Abstractions.dll"
  2145. "TargetName" = "8:"
  2146. "Tag" = "8:"
  2147. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2148. "Condition" = "8:"
  2149. "Transitive" = "11:FALSE"
  2150. "Vital" = "11:TRUE"
  2151. "ReadOnly" = "11:FALSE"
  2152. "Hidden" = "11:FALSE"
  2153. "System" = "11:FALSE"
  2154. "Permanent" = "11:FALSE"
  2155. "SharedLegacy" = "11:FALSE"
  2156. "PackageAs" = "3:1"
  2157. "Register" = "3:1"
  2158. "Exclude" = "11:FALSE"
  2159. "IsDependency" = "11:TRUE"
  2160. "IsolateTo" = "8:"
  2161. }
  2162. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4F69FFDD89F0AF8B085BF9BEAE86F253"
  2163. {
  2164. "AssemblyRegister" = "3:1"
  2165. "AssemblyIsInGAC" = "11:FALSE"
  2166. "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  2167. "ScatterAssemblies"
  2168. {
  2169. "_4F69FFDD89F0AF8B085BF9BEAE86F253"
  2170. {
  2171. "Name" = "8:System.Net.Sockets.dll"
  2172. "Attributes" = "3:512"
  2173. }
  2174. }
  2175. "SourcePath" = "8:System.Net.Sockets.dll"
  2176. "TargetName" = "8:"
  2177. "Tag" = "8:"
  2178. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2179. "Condition" = "8:"
  2180. "Transitive" = "11:FALSE"
  2181. "Vital" = "11:TRUE"
  2182. "ReadOnly" = "11:FALSE"
  2183. "Hidden" = "11:FALSE"
  2184. "System" = "11:FALSE"
  2185. "Permanent" = "11:FALSE"
  2186. "SharedLegacy" = "11:FALSE"
  2187. "PackageAs" = "3:1"
  2188. "Register" = "3:1"
  2189. "Exclude" = "11:FALSE"
  2190. "IsDependency" = "11:TRUE"
  2191. "IsolateTo" = "8:"
  2192. }
  2193. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5454280AD067CB67382A70D855521128"
  2194. {
  2195. "AssemblyRegister" = "3:1"
  2196. "AssemblyIsInGAC" = "11:FALSE"
  2197. "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  2198. "ScatterAssemblies"
  2199. {
  2200. "_5454280AD067CB67382A70D855521128"
  2201. {
  2202. "Name" = "8:Microsoft.Win32.Primitives.dll"
  2203. "Attributes" = "3:512"
  2204. }
  2205. }
  2206. "SourcePath" = "8:Microsoft.Win32.Primitives.dll"
  2207. "TargetName" = "8:"
  2208. "Tag" = "8:"
  2209. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2210. "Condition" = "8:"
  2211. "Transitive" = "11:FALSE"
  2212. "Vital" = "11:TRUE"
  2213. "ReadOnly" = "11:FALSE"
  2214. "Hidden" = "11:FALSE"
  2215. "System" = "11:FALSE"
  2216. "Permanent" = "11:FALSE"
  2217. "SharedLegacy" = "11:FALSE"
  2218. "PackageAs" = "3:1"
  2219. "Register" = "3:1"
  2220. "Exclude" = "11:FALSE"
  2221. "IsDependency" = "11:TRUE"
  2222. "IsolateTo" = "8:"
  2223. }
  2224. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_556BAA0966B3556F2AAD454E4BC16284"
  2225. {
  2226. "AssemblyRegister" = "3:1"
  2227. "AssemblyIsInGAC" = "11:FALSE"
  2228. "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2229. "ScatterAssemblies"
  2230. {
  2231. "_556BAA0966B3556F2AAD454E4BC16284"
  2232. {
  2233. "Name" = "8:System.ComponentModel.Annotations.dll"
  2234. "Attributes" = "3:512"
  2235. }
  2236. }
  2237. "SourcePath" = "8:System.ComponentModel.Annotations.dll"
  2238. "TargetName" = "8:"
  2239. "Tag" = "8:"
  2240. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2241. "Condition" = "8:"
  2242. "Transitive" = "11:FALSE"
  2243. "Vital" = "11:TRUE"
  2244. "ReadOnly" = "11:FALSE"
  2245. "Hidden" = "11:FALSE"
  2246. "System" = "11:FALSE"
  2247. "Permanent" = "11:FALSE"
  2248. "SharedLegacy" = "11:FALSE"
  2249. "PackageAs" = "3:1"
  2250. "Register" = "3:1"
  2251. "Exclude" = "11:FALSE"
  2252. "IsDependency" = "11:TRUE"
  2253. "IsolateTo" = "8:"
  2254. }
  2255. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_576DF7B6887BEDA96AFBD3797B06ABA5"
  2256. {
  2257. "AssemblyRegister" = "3:1"
  2258. "AssemblyIsInGAC" = "11:FALSE"
  2259. "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  2260. "ScatterAssemblies"
  2261. {
  2262. "_576DF7B6887BEDA96AFBD3797B06ABA5"
  2263. {
  2264. "Name" = "8:System.IO.FileSystem.dll"
  2265. "Attributes" = "3:512"
  2266. }
  2267. }
  2268. "SourcePath" = "8:System.IO.FileSystem.dll"
  2269. "TargetName" = "8:"
  2270. "Tag" = "8:"
  2271. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2272. "Condition" = "8:"
  2273. "Transitive" = "11:FALSE"
  2274. "Vital" = "11:TRUE"
  2275. "ReadOnly" = "11:FALSE"
  2276. "Hidden" = "11:FALSE"
  2277. "System" = "11:FALSE"
  2278. "Permanent" = "11:FALSE"
  2279. "SharedLegacy" = "11:FALSE"
  2280. "PackageAs" = "3:1"
  2281. "Register" = "3:1"
  2282. "Exclude" = "11:FALSE"
  2283. "IsDependency" = "11:TRUE"
  2284. "IsolateTo" = "8:"
  2285. }
  2286. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_579DAB99108E24F6935A646F3545E09E"
  2287. {
  2288. "AssemblyRegister" = "3:1"
  2289. "AssemblyIsInGAC" = "11:FALSE"
  2290. "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2291. "ScatterAssemblies"
  2292. {
  2293. "_579DAB99108E24F6935A646F3545E09E"
  2294. {
  2295. "Name" = "8:System.Collections.Concurrent.dll"
  2296. "Attributes" = "3:512"
  2297. }
  2298. }
  2299. "SourcePath" = "8:System.Collections.Concurrent.dll"
  2300. "TargetName" = "8:"
  2301. "Tag" = "8:"
  2302. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2303. "Condition" = "8:"
  2304. "Transitive" = "11:FALSE"
  2305. "Vital" = "11:TRUE"
  2306. "ReadOnly" = "11:FALSE"
  2307. "Hidden" = "11:FALSE"
  2308. "System" = "11:FALSE"
  2309. "Permanent" = "11:FALSE"
  2310. "SharedLegacy" = "11:FALSE"
  2311. "PackageAs" = "3:1"
  2312. "Register" = "3:1"
  2313. "Exclude" = "11:FALSE"
  2314. "IsDependency" = "11:TRUE"
  2315. "IsolateTo" = "8:"
  2316. }
  2317. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_59A1386810EE94457C8BA1E6F8FF0D2A"
  2318. {
  2319. "AssemblyRegister" = "3:1"
  2320. "AssemblyIsInGAC" = "11:FALSE"
  2321. "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
  2322. "ScatterAssemblies"
  2323. {
  2324. "_59A1386810EE94457C8BA1E6F8FF0D2A"
  2325. {
  2326. "Name" = "8:System.IO.Compression.dll"
  2327. "Attributes" = "3:512"
  2328. }
  2329. }
  2330. "SourcePath" = "8:System.IO.Compression.dll"
  2331. "TargetName" = "8:"
  2332. "Tag" = "8:"
  2333. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2334. "Condition" = "8:"
  2335. "Transitive" = "11:FALSE"
  2336. "Vital" = "11:TRUE"
  2337. "ReadOnly" = "11:FALSE"
  2338. "Hidden" = "11:FALSE"
  2339. "System" = "11:FALSE"
  2340. "Permanent" = "11:FALSE"
  2341. "SharedLegacy" = "11:FALSE"
  2342. "PackageAs" = "3:1"
  2343. "Register" = "3:1"
  2344. "Exclude" = "11:FALSE"
  2345. "IsDependency" = "11:TRUE"
  2346. "IsolateTo" = "8:"
  2347. }
  2348. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5A1B2A15CC848CAFD8911DDCE13ED036"
  2349. {
  2350. "AssemblyRegister" = "3:1"
  2351. "AssemblyIsInGAC" = "11:FALSE"
  2352. "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2353. "ScatterAssemblies"
  2354. {
  2355. "_5A1B2A15CC848CAFD8911DDCE13ED036"
  2356. {
  2357. "Name" = "8:System.Text.Encoding.Extensions.dll"
  2358. "Attributes" = "3:512"
  2359. }
  2360. }
  2361. "SourcePath" = "8:System.Text.Encoding.Extensions.dll"
  2362. "TargetName" = "8:"
  2363. "Tag" = "8:"
  2364. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2365. "Condition" = "8:"
  2366. "Transitive" = "11:FALSE"
  2367. "Vital" = "11:TRUE"
  2368. "ReadOnly" = "11:FALSE"
  2369. "Hidden" = "11:FALSE"
  2370. "System" = "11:FALSE"
  2371. "Permanent" = "11:FALSE"
  2372. "SharedLegacy" = "11:FALSE"
  2373. "PackageAs" = "3:1"
  2374. "Register" = "3:1"
  2375. "Exclude" = "11:FALSE"
  2376. "IsDependency" = "11:TRUE"
  2377. "IsolateTo" = "8:"
  2378. }
  2379. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5C8969D98D84CB10CF77335AAFE4976A"
  2380. {
  2381. "AssemblyRegister" = "3:1"
  2382. "AssemblyIsInGAC" = "11:FALSE"
  2383. "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2384. "ScatterAssemblies"
  2385. {
  2386. "_5C8969D98D84CB10CF77335AAFE4976A"
  2387. {
  2388. "Name" = "8:System.Runtime.Serialization.Primitives.dll"
  2389. "Attributes" = "3:512"
  2390. }
  2391. }
  2392. "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll"
  2393. "TargetName" = "8:"
  2394. "Tag" = "8:"
  2395. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2396. "Condition" = "8:"
  2397. "Transitive" = "11:FALSE"
  2398. "Vital" = "11:TRUE"
  2399. "ReadOnly" = "11:FALSE"
  2400. "Hidden" = "11:FALSE"
  2401. "System" = "11:FALSE"
  2402. "Permanent" = "11:FALSE"
  2403. "SharedLegacy" = "11:FALSE"
  2404. "PackageAs" = "3:1"
  2405. "Register" = "3:1"
  2406. "Exclude" = "11:FALSE"
  2407. "IsDependency" = "11:TRUE"
  2408. "IsolateTo" = "8:"
  2409. }
  2410. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5E33B5BAE2F0E550AF6B02FAB4C54D52"
  2411. {
  2412. "AssemblyRegister" = "3:1"
  2413. "AssemblyIsInGAC" = "11:FALSE"
  2414. "AssemblyAsmDisplayName" = "8:nunit.framework, Version=3.8.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL"
  2415. "ScatterAssemblies"
  2416. {
  2417. "_5E33B5BAE2F0E550AF6B02FAB4C54D52"
  2418. {
  2419. "Name" = "8:nunit.framework.dll"
  2420. "Attributes" = "3:512"
  2421. }
  2422. }
  2423. "SourcePath" = "8:nunit.framework.dll"
  2424. "TargetName" = "8:"
  2425. "Tag" = "8:"
  2426. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2427. "Condition" = "8:"
  2428. "Transitive" = "11:FALSE"
  2429. "Vital" = "11:TRUE"
  2430. "ReadOnly" = "11:FALSE"
  2431. "Hidden" = "11:FALSE"
  2432. "System" = "11:FALSE"
  2433. "Permanent" = "11:FALSE"
  2434. "SharedLegacy" = "11:FALSE"
  2435. "PackageAs" = "3:1"
  2436. "Register" = "3:1"
  2437. "Exclude" = "11:FALSE"
  2438. "IsDependency" = "11:TRUE"
  2439. "IsolateTo" = "8:"
  2440. }
  2441. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5F82492445C8D879C76485F542D7BDE9"
  2442. {
  2443. "AssemblyRegister" = "3:1"
  2444. "AssemblyIsInGAC" = "11:FALSE"
  2445. "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2446. "ScatterAssemblies"
  2447. {
  2448. "_5F82492445C8D879C76485F542D7BDE9"
  2449. {
  2450. "Name" = "8:System.Diagnostics.Debug.dll"
  2451. "Attributes" = "3:512"
  2452. }
  2453. }
  2454. "SourcePath" = "8:System.Diagnostics.Debug.dll"
  2455. "TargetName" = "8:"
  2456. "Tag" = "8:"
  2457. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2458. "Condition" = "8:"
  2459. "Transitive" = "11:FALSE"
  2460. "Vital" = "11:TRUE"
  2461. "ReadOnly" = "11:FALSE"
  2462. "Hidden" = "11:FALSE"
  2463. "System" = "11:FALSE"
  2464. "Permanent" = "11:FALSE"
  2465. "SharedLegacy" = "11:FALSE"
  2466. "PackageAs" = "3:1"
  2467. "Register" = "3:1"
  2468. "Exclude" = "11:FALSE"
  2469. "IsDependency" = "11:TRUE"
  2470. "IsolateTo" = "8:"
  2471. }
  2472. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5FFED1240E09B904C44D85CBCA722F93"
  2473. {
  2474. "AssemblyRegister" = "3:1"
  2475. "AssemblyIsInGAC" = "11:FALSE"
  2476. "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  2477. "ScatterAssemblies"
  2478. {
  2479. "_5FFED1240E09B904C44D85CBCA722F93"
  2480. {
  2481. "Name" = "8:System.Xml.ReaderWriter.dll"
  2482. "Attributes" = "3:512"
  2483. }
  2484. }
  2485. "SourcePath" = "8:System.Xml.ReaderWriter.dll"
  2486. "TargetName" = "8:"
  2487. "Tag" = "8:"
  2488. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2489. "Condition" = "8:"
  2490. "Transitive" = "11:FALSE"
  2491. "Vital" = "11:TRUE"
  2492. "ReadOnly" = "11:FALSE"
  2493. "Hidden" = "11:FALSE"
  2494. "System" = "11:FALSE"
  2495. "Permanent" = "11:FALSE"
  2496. "SharedLegacy" = "11:FALSE"
  2497. "PackageAs" = "3:1"
  2498. "Register" = "3:1"
  2499. "Exclude" = "11:FALSE"
  2500. "IsDependency" = "11:TRUE"
  2501. "IsolateTo" = "8:"
  2502. }
  2503. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_615CADFA09D376D11DAC1EA83316B714"
  2504. {
  2505. "AssemblyRegister" = "3:1"
  2506. "AssemblyIsInGAC" = "11:FALSE"
  2507. "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2508. "ScatterAssemblies"
  2509. {
  2510. "_615CADFA09D376D11DAC1EA83316B714"
  2511. {
  2512. "Name" = "8:System.Runtime.Serialization.Xml.dll"
  2513. "Attributes" = "3:512"
  2514. }
  2515. }
  2516. "SourcePath" = "8:System.Runtime.Serialization.Xml.dll"
  2517. "TargetName" = "8:"
  2518. "Tag" = "8:"
  2519. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2520. "Condition" = "8:"
  2521. "Transitive" = "11:FALSE"
  2522. "Vital" = "11:TRUE"
  2523. "ReadOnly" = "11:FALSE"
  2524. "Hidden" = "11:FALSE"
  2525. "System" = "11:FALSE"
  2526. "Permanent" = "11:FALSE"
  2527. "SharedLegacy" = "11:FALSE"
  2528. "PackageAs" = "3:1"
  2529. "Register" = "3:1"
  2530. "Exclude" = "11:FALSE"
  2531. "IsDependency" = "11:TRUE"
  2532. "IsolateTo" = "8:"
  2533. }
  2534. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_647C9E806D796D66B466EF878A0B10DE"
  2535. {
  2536. "AssemblyRegister" = "3:1"
  2537. "AssemblyIsInGAC" = "11:FALSE"
  2538. "AssemblyAsmDisplayName" = "8:System.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2539. "ScatterAssemblies"
  2540. {
  2541. "_647C9E806D796D66B466EF878A0B10DE"
  2542. {
  2543. "Name" = "8:System.Linq.dll"
  2544. "Attributes" = "3:512"
  2545. }
  2546. }
  2547. "SourcePath" = "8:System.Linq.dll"
  2548. "TargetName" = "8:"
  2549. "Tag" = "8:"
  2550. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2551. "Condition" = "8:"
  2552. "Transitive" = "11:FALSE"
  2553. "Vital" = "11:TRUE"
  2554. "ReadOnly" = "11:FALSE"
  2555. "Hidden" = "11:FALSE"
  2556. "System" = "11:FALSE"
  2557. "Permanent" = "11:FALSE"
  2558. "SharedLegacy" = "11:FALSE"
  2559. "PackageAs" = "3:1"
  2560. "Register" = "3:1"
  2561. "Exclude" = "11:FALSE"
  2562. "IsDependency" = "11:TRUE"
  2563. "IsolateTo" = "8:"
  2564. }
  2565. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_67307EB27C12A7DC7BB070BF134CD641"
  2566. {
  2567. "AssemblyRegister" = "3:1"
  2568. "AssemblyIsInGAC" = "11:FALSE"
  2569. "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2570. "ScatterAssemblies"
  2571. {
  2572. "_67307EB27C12A7DC7BB070BF134CD641"
  2573. {
  2574. "Name" = "8:System.Threading.Tasks.Parallel.dll"
  2575. "Attributes" = "3:512"
  2576. }
  2577. }
  2578. "SourcePath" = "8:System.Threading.Tasks.Parallel.dll"
  2579. "TargetName" = "8:"
  2580. "Tag" = "8:"
  2581. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2582. "Condition" = "8:"
  2583. "Transitive" = "11:FALSE"
  2584. "Vital" = "11:TRUE"
  2585. "ReadOnly" = "11:FALSE"
  2586. "Hidden" = "11:FALSE"
  2587. "System" = "11:FALSE"
  2588. "Permanent" = "11:FALSE"
  2589. "SharedLegacy" = "11:FALSE"
  2590. "PackageAs" = "3:1"
  2591. "Register" = "3:1"
  2592. "Exclude" = "11:FALSE"
  2593. "IsDependency" = "11:TRUE"
  2594. "IsolateTo" = "8:"
  2595. }
  2596. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_67EE8A76399C5313E3275BA19EF90E36"
  2597. {
  2598. "AssemblyRegister" = "3:1"
  2599. "AssemblyIsInGAC" = "11:FALSE"
  2600. "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2601. "ScatterAssemblies"
  2602. {
  2603. "_67EE8A76399C5313E3275BA19EF90E36"
  2604. {
  2605. "Name" = "8:System.Xml.XmlSerializer.dll"
  2606. "Attributes" = "3:512"
  2607. }
  2608. }
  2609. "SourcePath" = "8:System.Xml.XmlSerializer.dll"
  2610. "TargetName" = "8:"
  2611. "Tag" = "8:"
  2612. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2613. "Condition" = "8:"
  2614. "Transitive" = "11:FALSE"
  2615. "Vital" = "11:TRUE"
  2616. "ReadOnly" = "11:FALSE"
  2617. "Hidden" = "11:FALSE"
  2618. "System" = "11:FALSE"
  2619. "Permanent" = "11:FALSE"
  2620. "SharedLegacy" = "11:FALSE"
  2621. "PackageAs" = "3:1"
  2622. "Register" = "3:1"
  2623. "Exclude" = "11:FALSE"
  2624. "IsDependency" = "11:TRUE"
  2625. "IsolateTo" = "8:"
  2626. }
  2627. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6C0138B6051BE3590EB824944F6F7681"
  2628. {
  2629. "AssemblyRegister" = "3:1"
  2630. "AssemblyIsInGAC" = "11:FALSE"
  2631. "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.20.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2632. "ScatterAssemblies"
  2633. {
  2634. "_6C0138B6051BE3590EB824944F6F7681"
  2635. {
  2636. "Name" = "8:System.Runtime.dll"
  2637. "Attributes" = "3:512"
  2638. }
  2639. }
  2640. "SourcePath" = "8:System.Runtime.dll"
  2641. "TargetName" = "8:"
  2642. "Tag" = "8:"
  2643. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2644. "Condition" = "8:"
  2645. "Transitive" = "11:FALSE"
  2646. "Vital" = "11:TRUE"
  2647. "ReadOnly" = "11:FALSE"
  2648. "Hidden" = "11:FALSE"
  2649. "System" = "11:FALSE"
  2650. "Permanent" = "11:FALSE"
  2651. "SharedLegacy" = "11:FALSE"
  2652. "PackageAs" = "3:1"
  2653. "Register" = "3:1"
  2654. "Exclude" = "11:FALSE"
  2655. "IsDependency" = "11:TRUE"
  2656. "IsolateTo" = "8:"
  2657. }
  2658. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6C0D147C5A28C1549128018AD1BCAB5F"
  2659. {
  2660. "AssemblyRegister" = "3:1"
  2661. "AssemblyIsInGAC" = "11:FALSE"
  2662. "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2663. "ScatterAssemblies"
  2664. {
  2665. "_6C0D147C5A28C1549128018AD1BCAB5F"
  2666. {
  2667. "Name" = "8:System.Reflection.Emit.dll"
  2668. "Attributes" = "3:512"
  2669. }
  2670. }
  2671. "SourcePath" = "8:System.Reflection.Emit.dll"
  2672. "TargetName" = "8:"
  2673. "Tag" = "8:"
  2674. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2675. "Condition" = "8:"
  2676. "Transitive" = "11:FALSE"
  2677. "Vital" = "11:TRUE"
  2678. "ReadOnly" = "11:FALSE"
  2679. "Hidden" = "11:FALSE"
  2680. "System" = "11:FALSE"
  2681. "Permanent" = "11:FALSE"
  2682. "SharedLegacy" = "11:FALSE"
  2683. "PackageAs" = "3:1"
  2684. "Register" = "3:1"
  2685. "Exclude" = "11:FALSE"
  2686. "IsDependency" = "11:TRUE"
  2687. "IsolateTo" = "8:"
  2688. }
  2689. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_72B6130A73E4C6966B3A2AB7436B97D8"
  2690. {
  2691. "AssemblyRegister" = "3:1"
  2692. "AssemblyIsInGAC" = "11:FALSE"
  2693. "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2694. "ScatterAssemblies"
  2695. {
  2696. "_72B6130A73E4C6966B3A2AB7436B97D8"
  2697. {
  2698. "Name" = "8:System.Runtime.Numerics.dll"
  2699. "Attributes" = "3:512"
  2700. }
  2701. }
  2702. "SourcePath" = "8:System.Runtime.Numerics.dll"
  2703. "TargetName" = "8:"
  2704. "Tag" = "8:"
  2705. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2706. "Condition" = "8:"
  2707. "Transitive" = "11:FALSE"
  2708. "Vital" = "11:TRUE"
  2709. "ReadOnly" = "11:FALSE"
  2710. "Hidden" = "11:FALSE"
  2711. "System" = "11:FALSE"
  2712. "Permanent" = "11:FALSE"
  2713. "SharedLegacy" = "11:FALSE"
  2714. "PackageAs" = "3:1"
  2715. "Register" = "3:1"
  2716. "Exclude" = "11:FALSE"
  2717. "IsDependency" = "11:TRUE"
  2718. "IsolateTo" = "8:"
  2719. }
  2720. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7994D9EACB523FED24EF9FF51B2B64B9"
  2721. {
  2722. "AssemblyRegister" = "3:1"
  2723. "AssemblyIsInGAC" = "11:FALSE"
  2724. "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2725. "ScatterAssemblies"
  2726. {
  2727. "_7994D9EACB523FED24EF9FF51B2B64B9"
  2728. {
  2729. "Name" = "8:System.Linq.Parallel.dll"
  2730. "Attributes" = "3:512"
  2731. }
  2732. }
  2733. "SourcePath" = "8:System.Linq.Parallel.dll"
  2734. "TargetName" = "8:"
  2735. "Tag" = "8:"
  2736. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2737. "Condition" = "8:"
  2738. "Transitive" = "11:FALSE"
  2739. "Vital" = "11:TRUE"
  2740. "ReadOnly" = "11:FALSE"
  2741. "Hidden" = "11:FALSE"
  2742. "System" = "11:FALSE"
  2743. "Permanent" = "11:FALSE"
  2744. "SharedLegacy" = "11:FALSE"
  2745. "PackageAs" = "3:1"
  2746. "Register" = "3:1"
  2747. "Exclude" = "11:FALSE"
  2748. "IsDependency" = "11:TRUE"
  2749. "IsolateTo" = "8:"
  2750. }
  2751. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7AEE48BC7CE802CC7D1BD26264F67476"
  2752. {
  2753. "AssemblyRegister" = "3:1"
  2754. "AssemblyIsInGAC" = "11:TRUE"
  2755. "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  2756. "ScatterAssemblies"
  2757. {
  2758. "_7AEE48BC7CE802CC7D1BD26264F67476"
  2759. {
  2760. "Name" = "8:System.Linq.Expressions.dll"
  2761. "Attributes" = "3:512"
  2762. }
  2763. }
  2764. "SourcePath" = "8:System.Linq.Expressions.dll"
  2765. "TargetName" = "8:"
  2766. "Tag" = "8:"
  2767. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2768. "Condition" = "8:"
  2769. "Transitive" = "11:FALSE"
  2770. "Vital" = "11:TRUE"
  2771. "ReadOnly" = "11:FALSE"
  2772. "Hidden" = "11:FALSE"
  2773. "System" = "11:FALSE"
  2774. "Permanent" = "11:FALSE"
  2775. "SharedLegacy" = "11:FALSE"
  2776. "PackageAs" = "3:1"
  2777. "Register" = "3:1"
  2778. "Exclude" = "11:FALSE"
  2779. "IsDependency" = "11:TRUE"
  2780. "IsolateTo" = "8:"
  2781. }
  2782. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_81F5A67A82D95CCD4A665337B82BB006"
  2783. {
  2784. "AssemblyRegister" = "3:1"
  2785. "AssemblyIsInGAC" = "11:FALSE"
  2786. "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2787. "ScatterAssemblies"
  2788. {
  2789. "_81F5A67A82D95CCD4A665337B82BB006"
  2790. {
  2791. "Name" = "8:System.ComponentModel.dll"
  2792. "Attributes" = "3:512"
  2793. }
  2794. }
  2795. "SourcePath" = "8:System.ComponentModel.dll"
  2796. "TargetName" = "8:"
  2797. "Tag" = "8:"
  2798. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2799. "Condition" = "8:"
  2800. "Transitive" = "11:FALSE"
  2801. "Vital" = "11:TRUE"
  2802. "ReadOnly" = "11:FALSE"
  2803. "Hidden" = "11:FALSE"
  2804. "System" = "11:FALSE"
  2805. "Permanent" = "11:FALSE"
  2806. "SharedLegacy" = "11:FALSE"
  2807. "PackageAs" = "3:1"
  2808. "Register" = "3:1"
  2809. "Exclude" = "11:FALSE"
  2810. "IsDependency" = "11:TRUE"
  2811. "IsolateTo" = "8:"
  2812. }
  2813. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8284DABDD090BABCCB1C407244125734"
  2814. {
  2815. "AssemblyRegister" = "3:1"
  2816. "AssemblyIsInGAC" = "11:FALSE"
  2817. "AssemblyAsmDisplayName" = "8:DotNetty.Common, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL"
  2818. "ScatterAssemblies"
  2819. {
  2820. "_8284DABDD090BABCCB1C407244125734"
  2821. {
  2822. "Name" = "8:DotNetty.Common.dll"
  2823. "Attributes" = "3:512"
  2824. }
  2825. }
  2826. "SourcePath" = "8:DotNetty.Common.dll"
  2827. "TargetName" = "8:"
  2828. "Tag" = "8:"
  2829. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2830. "Condition" = "8:"
  2831. "Transitive" = "11:FALSE"
  2832. "Vital" = "11:TRUE"
  2833. "ReadOnly" = "11:FALSE"
  2834. "Hidden" = "11:FALSE"
  2835. "System" = "11:FALSE"
  2836. "Permanent" = "11:FALSE"
  2837. "SharedLegacy" = "11:FALSE"
  2838. "PackageAs" = "3:1"
  2839. "Register" = "3:1"
  2840. "Exclude" = "11:FALSE"
  2841. "IsDependency" = "11:TRUE"
  2842. "IsolateTo" = "8:"
  2843. }
  2844. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_84D76B33143F8933394EDB7151380469"
  2845. {
  2846. "AssemblyRegister" = "3:1"
  2847. "AssemblyIsInGAC" = "11:FALSE"
  2848. "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2849. "ScatterAssemblies"
  2850. {
  2851. "_84D76B33143F8933394EDB7151380469"
  2852. {
  2853. "Name" = "8:System.Reflection.dll"
  2854. "Attributes" = "3:512"
  2855. }
  2856. }
  2857. "SourcePath" = "8:System.Reflection.dll"
  2858. "TargetName" = "8:"
  2859. "Tag" = "8:"
  2860. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2861. "Condition" = "8:"
  2862. "Transitive" = "11:FALSE"
  2863. "Vital" = "11:TRUE"
  2864. "ReadOnly" = "11:FALSE"
  2865. "Hidden" = "11:FALSE"
  2866. "System" = "11:FALSE"
  2867. "Permanent" = "11:FALSE"
  2868. "SharedLegacy" = "11:FALSE"
  2869. "PackageAs" = "3:1"
  2870. "Register" = "3:1"
  2871. "Exclude" = "11:FALSE"
  2872. "IsDependency" = "11:TRUE"
  2873. "IsolateTo" = "8:"
  2874. }
  2875. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_876034A110C37C05FE390F5A14C346E7"
  2876. {
  2877. "AssemblyRegister" = "3:1"
  2878. "AssemblyIsInGAC" = "11:FALSE"
  2879. "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  2880. "ScatterAssemblies"
  2881. {
  2882. "_876034A110C37C05FE390F5A14C346E7"
  2883. {
  2884. "Name" = "8:System.Security.Cryptography.Encoding.dll"
  2885. "Attributes" = "3:512"
  2886. }
  2887. }
  2888. "SourcePath" = "8:System.Security.Cryptography.Encoding.dll"
  2889. "TargetName" = "8:"
  2890. "Tag" = "8:"
  2891. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2892. "Condition" = "8:"
  2893. "Transitive" = "11:FALSE"
  2894. "Vital" = "11:TRUE"
  2895. "ReadOnly" = "11:FALSE"
  2896. "Hidden" = "11:FALSE"
  2897. "System" = "11:FALSE"
  2898. "Permanent" = "11:FALSE"
  2899. "SharedLegacy" = "11:FALSE"
  2900. "PackageAs" = "3:1"
  2901. "Register" = "3:1"
  2902. "Exclude" = "11:FALSE"
  2903. "IsDependency" = "11:TRUE"
  2904. "IsolateTo" = "8:"
  2905. }
  2906. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_89725EF93049649E0E1E1C234A610EC9"
  2907. {
  2908. "AssemblyRegister" = "3:1"
  2909. "AssemblyIsInGAC" = "11:FALSE"
  2910. "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2911. "ScatterAssemblies"
  2912. {
  2913. "_89725EF93049649E0E1E1C234A610EC9"
  2914. {
  2915. "Name" = "8:System.Dynamic.Runtime.dll"
  2916. "Attributes" = "3:512"
  2917. }
  2918. }
  2919. "SourcePath" = "8:System.Dynamic.Runtime.dll"
  2920. "TargetName" = "8:"
  2921. "Tag" = "8:"
  2922. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2923. "Condition" = "8:"
  2924. "Transitive" = "11:FALSE"
  2925. "Vital" = "11:TRUE"
  2926. "ReadOnly" = "11:FALSE"
  2927. "Hidden" = "11:FALSE"
  2928. "System" = "11:FALSE"
  2929. "Permanent" = "11:FALSE"
  2930. "SharedLegacy" = "11:FALSE"
  2931. "PackageAs" = "3:1"
  2932. "Register" = "3:1"
  2933. "Exclude" = "11:FALSE"
  2934. "IsDependency" = "11:TRUE"
  2935. "IsolateTo" = "8:"
  2936. }
  2937. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_898D8EBE1DD5D1C9236042A98CD681EB"
  2938. {
  2939. "AssemblyRegister" = "3:1"
  2940. "AssemblyIsInGAC" = "11:FALSE"
  2941. "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2942. "ScatterAssemblies"
  2943. {
  2944. "_898D8EBE1DD5D1C9236042A98CD681EB"
  2945. {
  2946. "Name" = "8:System.Runtime.Handles.dll"
  2947. "Attributes" = "3:512"
  2948. }
  2949. }
  2950. "SourcePath" = "8:System.Runtime.Handles.dll"
  2951. "TargetName" = "8:"
  2952. "Tag" = "8:"
  2953. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2954. "Condition" = "8:"
  2955. "Transitive" = "11:FALSE"
  2956. "Vital" = "11:TRUE"
  2957. "ReadOnly" = "11:FALSE"
  2958. "Hidden" = "11:FALSE"
  2959. "System" = "11:FALSE"
  2960. "Permanent" = "11:FALSE"
  2961. "SharedLegacy" = "11:FALSE"
  2962. "PackageAs" = "3:1"
  2963. "Register" = "3:1"
  2964. "Exclude" = "11:FALSE"
  2965. "IsDependency" = "11:TRUE"
  2966. "IsolateTo" = "8:"
  2967. }
  2968. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8ADC4C6988B7C2298BB34FA7740B4924"
  2969. {
  2970. "AssemblyRegister" = "3:1"
  2971. "AssemblyIsInGAC" = "11:FALSE"
  2972. "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  2973. "ScatterAssemblies"
  2974. {
  2975. "_8ADC4C6988B7C2298BB34FA7740B4924"
  2976. {
  2977. "Name" = "8:System.ObjectModel.dll"
  2978. "Attributes" = "3:512"
  2979. }
  2980. }
  2981. "SourcePath" = "8:System.ObjectModel.dll"
  2982. "TargetName" = "8:"
  2983. "Tag" = "8:"
  2984. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  2985. "Condition" = "8:"
  2986. "Transitive" = "11:FALSE"
  2987. "Vital" = "11:TRUE"
  2988. "ReadOnly" = "11:FALSE"
  2989. "Hidden" = "11:FALSE"
  2990. "System" = "11:FALSE"
  2991. "Permanent" = "11:FALSE"
  2992. "SharedLegacy" = "11:FALSE"
  2993. "PackageAs" = "3:1"
  2994. "Register" = "3:1"
  2995. "Exclude" = "11:FALSE"
  2996. "IsDependency" = "11:TRUE"
  2997. "IsolateTo" = "8:"
  2998. }
  2999. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B144C32B77D175EB34FF12F9361D914"
  3000. {
  3001. "AssemblyRegister" = "3:1"
  3002. "AssemblyIsInGAC" = "11:FALSE"
  3003. "AssemblyAsmDisplayName" = "8:System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3004. "ScatterAssemblies"
  3005. {
  3006. "_8B144C32B77D175EB34FF12F9361D914"
  3007. {
  3008. "Name" = "8:System.AppContext.dll"
  3009. "Attributes" = "3:512"
  3010. }
  3011. }
  3012. "SourcePath" = "8:System.AppContext.dll"
  3013. "TargetName" = "8:"
  3014. "Tag" = "8:"
  3015. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3016. "Condition" = "8:"
  3017. "Transitive" = "11:FALSE"
  3018. "Vital" = "11:TRUE"
  3019. "ReadOnly" = "11:FALSE"
  3020. "Hidden" = "11:FALSE"
  3021. "System" = "11:FALSE"
  3022. "Permanent" = "11:FALSE"
  3023. "SharedLegacy" = "11:FALSE"
  3024. "PackageAs" = "3:1"
  3025. "Register" = "3:1"
  3026. "Exclude" = "11:FALSE"
  3027. "IsDependency" = "11:TRUE"
  3028. "IsolateTo" = "8:"
  3029. }
  3030. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B6C989E772DDEDE4D1731313C6ED91F"
  3031. {
  3032. "AssemblyRegister" = "3:1"
  3033. "AssemblyIsInGAC" = "11:FALSE"
  3034. "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3035. "ScatterAssemblies"
  3036. {
  3037. "_8B6C989E772DDEDE4D1731313C6ED91F"
  3038. {
  3039. "Name" = "8:System.Text.RegularExpressions.dll"
  3040. "Attributes" = "3:512"
  3041. }
  3042. }
  3043. "SourcePath" = "8:System.Text.RegularExpressions.dll"
  3044. "TargetName" = "8:"
  3045. "Tag" = "8:"
  3046. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3047. "Condition" = "8:"
  3048. "Transitive" = "11:FALSE"
  3049. "Vital" = "11:TRUE"
  3050. "ReadOnly" = "11:FALSE"
  3051. "Hidden" = "11:FALSE"
  3052. "System" = "11:FALSE"
  3053. "Permanent" = "11:FALSE"
  3054. "SharedLegacy" = "11:FALSE"
  3055. "PackageAs" = "3:1"
  3056. "Register" = "3:1"
  3057. "Exclude" = "11:FALSE"
  3058. "IsDependency" = "11:TRUE"
  3059. "IsolateTo" = "8:"
  3060. }
  3061. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8C42BE771E0EE928C130B89C94A7CC71"
  3062. {
  3063. "AssemblyRegister" = "3:1"
  3064. "AssemblyIsInGAC" = "11:FALSE"
  3065. "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3066. "ScatterAssemblies"
  3067. {
  3068. "_8C42BE771E0EE928C130B89C94A7CC71"
  3069. {
  3070. "Name" = "8:System.Linq.Queryable.dll"
  3071. "Attributes" = "3:512"
  3072. }
  3073. }
  3074. "SourcePath" = "8:System.Linq.Queryable.dll"
  3075. "TargetName" = "8:"
  3076. "Tag" = "8:"
  3077. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3078. "Condition" = "8:"
  3079. "Transitive" = "11:FALSE"
  3080. "Vital" = "11:TRUE"
  3081. "ReadOnly" = "11:FALSE"
  3082. "Hidden" = "11:FALSE"
  3083. "System" = "11:FALSE"
  3084. "Permanent" = "11:FALSE"
  3085. "SharedLegacy" = "11:FALSE"
  3086. "PackageAs" = "3:1"
  3087. "Register" = "3:1"
  3088. "Exclude" = "11:FALSE"
  3089. "IsDependency" = "11:TRUE"
  3090. "IsolateTo" = "8:"
  3091. }
  3092. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9224DD5DA54FE48EFEE599842FEB8874"
  3093. {
  3094. "AssemblyRegister" = "3:1"
  3095. "AssemblyIsInGAC" = "11:TRUE"
  3096. "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
  3097. "ScatterAssemblies"
  3098. {
  3099. "_9224DD5DA54FE48EFEE599842FEB8874"
  3100. {
  3101. "Name" = "8:System.IO.Compression.dll"
  3102. "Attributes" = "3:512"
  3103. }
  3104. }
  3105. "SourcePath" = "8:System.IO.Compression.dll"
  3106. "TargetName" = "8:"
  3107. "Tag" = "8:"
  3108. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3109. "Condition" = "8:"
  3110. "Transitive" = "11:FALSE"
  3111. "Vital" = "11:TRUE"
  3112. "ReadOnly" = "11:FALSE"
  3113. "Hidden" = "11:FALSE"
  3114. "System" = "11:FALSE"
  3115. "Permanent" = "11:FALSE"
  3116. "SharedLegacy" = "11:FALSE"
  3117. "PackageAs" = "3:1"
  3118. "Register" = "3:1"
  3119. "Exclude" = "11:FALSE"
  3120. "IsDependency" = "11:TRUE"
  3121. "IsolateTo" = "8:"
  3122. }
  3123. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_943AE5C3C5230AB1748AD9681E03A087"
  3124. {
  3125. "AssemblyRegister" = "3:1"
  3126. "AssemblyIsInGAC" = "11:TRUE"
  3127. "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3128. "ScatterAssemblies"
  3129. {
  3130. "_943AE5C3C5230AB1748AD9681E03A087"
  3131. {
  3132. "Name" = "8:System.Runtime.InteropServices.dll"
  3133. "Attributes" = "3:512"
  3134. }
  3135. }
  3136. "SourcePath" = "8:System.Runtime.InteropServices.dll"
  3137. "TargetName" = "8:"
  3138. "Tag" = "8:"
  3139. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3140. "Condition" = "8:"
  3141. "Transitive" = "11:FALSE"
  3142. "Vital" = "11:TRUE"
  3143. "ReadOnly" = "11:FALSE"
  3144. "Hidden" = "11:FALSE"
  3145. "System" = "11:FALSE"
  3146. "Permanent" = "11:FALSE"
  3147. "SharedLegacy" = "11:FALSE"
  3148. "PackageAs" = "3:1"
  3149. "Register" = "3:1"
  3150. "Exclude" = "11:FALSE"
  3151. "IsDependency" = "11:TRUE"
  3152. "IsolateTo" = "8:"
  3153. }
  3154. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95A14DF66945B3E1B3108C4CC7D07439"
  3155. {
  3156. "AssemblyRegister" = "3:1"
  3157. "AssemblyIsInGAC" = "11:TRUE"
  3158. "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3159. "ScatterAssemblies"
  3160. {
  3161. "_95A14DF66945B3E1B3108C4CC7D07439"
  3162. {
  3163. "Name" = "8:System.Runtime.Extensions.dll"
  3164. "Attributes" = "3:512"
  3165. }
  3166. }
  3167. "SourcePath" = "8:System.Runtime.Extensions.dll"
  3168. "TargetName" = "8:"
  3169. "Tag" = "8:"
  3170. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3171. "Condition" = "8:"
  3172. "Transitive" = "11:FALSE"
  3173. "Vital" = "11:TRUE"
  3174. "ReadOnly" = "11:FALSE"
  3175. "Hidden" = "11:FALSE"
  3176. "System" = "11:FALSE"
  3177. "Permanent" = "11:FALSE"
  3178. "SharedLegacy" = "11:FALSE"
  3179. "PackageAs" = "3:1"
  3180. "Register" = "3:1"
  3181. "Exclude" = "11:FALSE"
  3182. "IsDependency" = "11:TRUE"
  3183. "IsolateTo" = "8:"
  3184. }
  3185. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F2898B7DFF103320D6BB49AF9A8F970"
  3186. {
  3187. "AssemblyRegister" = "3:1"
  3188. "AssemblyIsInGAC" = "11:FALSE"
  3189. "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3190. "ScatterAssemblies"
  3191. {
  3192. "_9F2898B7DFF103320D6BB49AF9A8F970"
  3193. {
  3194. "Name" = "8:System.Net.Requests.dll"
  3195. "Attributes" = "3:512"
  3196. }
  3197. }
  3198. "SourcePath" = "8:System.Net.Requests.dll"
  3199. "TargetName" = "8:"
  3200. "Tag" = "8:"
  3201. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3202. "Condition" = "8:"
  3203. "Transitive" = "11:FALSE"
  3204. "Vital" = "11:TRUE"
  3205. "ReadOnly" = "11:FALSE"
  3206. "Hidden" = "11:FALSE"
  3207. "System" = "11:FALSE"
  3208. "Permanent" = "11:FALSE"
  3209. "SharedLegacy" = "11:FALSE"
  3210. "PackageAs" = "3:1"
  3211. "Register" = "3:1"
  3212. "Exclude" = "11:FALSE"
  3213. "IsDependency" = "11:TRUE"
  3214. "IsolateTo" = "8:"
  3215. }
  3216. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A028EDCF66C4F76E89DD897416BD6B76"
  3217. {
  3218. "AssemblyRegister" = "3:1"
  3219. "AssemblyIsInGAC" = "11:FALSE"
  3220. "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3221. "ScatterAssemblies"
  3222. {
  3223. "_A028EDCF66C4F76E89DD897416BD6B76"
  3224. {
  3225. "Name" = "8:System.Reflection.Emit.Lightweight.dll"
  3226. "Attributes" = "3:512"
  3227. }
  3228. }
  3229. "SourcePath" = "8:System.Reflection.Emit.Lightweight.dll"
  3230. "TargetName" = "8:"
  3231. "Tag" = "8:"
  3232. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3233. "Condition" = "8:"
  3234. "Transitive" = "11:FALSE"
  3235. "Vital" = "11:TRUE"
  3236. "ReadOnly" = "11:FALSE"
  3237. "Hidden" = "11:FALSE"
  3238. "System" = "11:FALSE"
  3239. "Permanent" = "11:FALSE"
  3240. "SharedLegacy" = "11:FALSE"
  3241. "PackageAs" = "3:1"
  3242. "Register" = "3:1"
  3243. "Exclude" = "11:FALSE"
  3244. "IsDependency" = "11:TRUE"
  3245. "IsolateTo" = "8:"
  3246. }
  3247. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A64A0CD6E0EF9E9C172F385BB2914EF6"
  3248. {
  3249. "AssemblyRegister" = "3:1"
  3250. "AssemblyIsInGAC" = "11:FALSE"
  3251. "AssemblyAsmDisplayName" = "8:System.ServiceModel.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3252. "ScatterAssemblies"
  3253. {
  3254. "_A64A0CD6E0EF9E9C172F385BB2914EF6"
  3255. {
  3256. "Name" = "8:System.ServiceModel.Security.dll"
  3257. "Attributes" = "3:512"
  3258. }
  3259. }
  3260. "SourcePath" = "8:System.ServiceModel.Security.dll"
  3261. "TargetName" = "8:"
  3262. "Tag" = "8:"
  3263. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3264. "Condition" = "8:"
  3265. "Transitive" = "11:FALSE"
  3266. "Vital" = "11:TRUE"
  3267. "ReadOnly" = "11:FALSE"
  3268. "Hidden" = "11:FALSE"
  3269. "System" = "11:FALSE"
  3270. "Permanent" = "11:FALSE"
  3271. "SharedLegacy" = "11:FALSE"
  3272. "PackageAs" = "3:1"
  3273. "Register" = "3:1"
  3274. "Exclude" = "11:FALSE"
  3275. "IsDependency" = "11:TRUE"
  3276. "IsolateTo" = "8:"
  3277. }
  3278. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  3279. {
  3280. "AssemblyRegister" = "3:1"
  3281. "AssemblyIsInGAC" = "11:TRUE"
  3282. "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3283. "ScatterAssemblies"
  3284. {
  3285. "_A8CDE31D68F2DF28D2EE9D192CB91BBE"
  3286. {
  3287. "Name" = "8:System.Runtime.dll"
  3288. "Attributes" = "3:512"
  3289. }
  3290. }
  3291. "SourcePath" = "8:System.Runtime.dll"
  3292. "TargetName" = "8:"
  3293. "Tag" = "8:"
  3294. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3295. "Condition" = "8:"
  3296. "Transitive" = "11:FALSE"
  3297. "Vital" = "11:TRUE"
  3298. "ReadOnly" = "11:FALSE"
  3299. "Hidden" = "11:FALSE"
  3300. "System" = "11:FALSE"
  3301. "Permanent" = "11:FALSE"
  3302. "SharedLegacy" = "11:FALSE"
  3303. "PackageAs" = "3:1"
  3304. "Register" = "3:1"
  3305. "Exclude" = "11:FALSE"
  3306. "IsDependency" = "11:TRUE"
  3307. "IsolateTo" = "8:"
  3308. }
  3309. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ABC4F9644B3B1F8F27915D6FAC7B32DB"
  3310. {
  3311. "AssemblyRegister" = "3:1"
  3312. "AssemblyIsInGAC" = "11:FALSE"
  3313. "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3314. "ScatterAssemblies"
  3315. {
  3316. "_ABC4F9644B3B1F8F27915D6FAC7B32DB"
  3317. {
  3318. "Name" = "8:System.Collections.dll"
  3319. "Attributes" = "3:512"
  3320. }
  3321. }
  3322. "SourcePath" = "8:System.Collections.dll"
  3323. "TargetName" = "8:"
  3324. "Tag" = "8:"
  3325. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3326. "Condition" = "8:"
  3327. "Transitive" = "11:FALSE"
  3328. "Vital" = "11:TRUE"
  3329. "ReadOnly" = "11:FALSE"
  3330. "Hidden" = "11:FALSE"
  3331. "System" = "11:FALSE"
  3332. "Permanent" = "11:FALSE"
  3333. "SharedLegacy" = "11:FALSE"
  3334. "PackageAs" = "3:1"
  3335. "Register" = "3:1"
  3336. "Exclude" = "11:FALSE"
  3337. "IsDependency" = "11:TRUE"
  3338. "IsolateTo" = "8:"
  3339. }
  3340. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ACB74580CAA0C25323D991E36FC510C8"
  3341. {
  3342. "AssemblyRegister" = "3:1"
  3343. "AssemblyIsInGAC" = "11:FALSE"
  3344. "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3345. "ScatterAssemblies"
  3346. {
  3347. "_ACB74580CAA0C25323D991E36FC510C8"
  3348. {
  3349. "Name" = "8:System.Security.Cryptography.Primitives.dll"
  3350. "Attributes" = "3:512"
  3351. }
  3352. }
  3353. "SourcePath" = "8:System.Security.Cryptography.Primitives.dll"
  3354. "TargetName" = "8:"
  3355. "Tag" = "8:"
  3356. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3357. "Condition" = "8:"
  3358. "Transitive" = "11:FALSE"
  3359. "Vital" = "11:TRUE"
  3360. "ReadOnly" = "11:FALSE"
  3361. "Hidden" = "11:FALSE"
  3362. "System" = "11:FALSE"
  3363. "Permanent" = "11:FALSE"
  3364. "SharedLegacy" = "11:FALSE"
  3365. "PackageAs" = "3:1"
  3366. "Register" = "3:1"
  3367. "Exclude" = "11:FALSE"
  3368. "IsDependency" = "11:TRUE"
  3369. "IsolateTo" = "8:"
  3370. }
  3371. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AE48B31460E349057F7CF7B67E320D03"
  3372. {
  3373. "AssemblyRegister" = "3:1"
  3374. "AssemblyIsInGAC" = "11:FALSE"
  3375. "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3376. "ScatterAssemblies"
  3377. {
  3378. "_AE48B31460E349057F7CF7B67E320D03"
  3379. {
  3380. "Name" = "8:System.Xml.XDocument.dll"
  3381. "Attributes" = "3:512"
  3382. }
  3383. }
  3384. "SourcePath" = "8:System.Xml.XDocument.dll"
  3385. "TargetName" = "8:"
  3386. "Tag" = "8:"
  3387. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3388. "Condition" = "8:"
  3389. "Transitive" = "11:FALSE"
  3390. "Vital" = "11:TRUE"
  3391. "ReadOnly" = "11:FALSE"
  3392. "Hidden" = "11:FALSE"
  3393. "System" = "11:FALSE"
  3394. "Permanent" = "11:FALSE"
  3395. "SharedLegacy" = "11:FALSE"
  3396. "PackageAs" = "3:1"
  3397. "Register" = "3:1"
  3398. "Exclude" = "11:FALSE"
  3399. "IsDependency" = "11:TRUE"
  3400. "IsolateTo" = "8:"
  3401. }
  3402. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B12547A3B43B145A07CBCC6DD0059F48"
  3403. {
  3404. "AssemblyRegister" = "3:1"
  3405. "AssemblyIsInGAC" = "11:FALSE"
  3406. "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3407. "ScatterAssemblies"
  3408. {
  3409. "_B12547A3B43B145A07CBCC6DD0059F48"
  3410. {
  3411. "Name" = "8:System.Threading.Timer.dll"
  3412. "Attributes" = "3:512"
  3413. }
  3414. }
  3415. "SourcePath" = "8:System.Threading.Timer.dll"
  3416. "TargetName" = "8:"
  3417. "Tag" = "8:"
  3418. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3419. "Condition" = "8:"
  3420. "Transitive" = "11:FALSE"
  3421. "Vital" = "11:TRUE"
  3422. "ReadOnly" = "11:FALSE"
  3423. "Hidden" = "11:FALSE"
  3424. "System" = "11:FALSE"
  3425. "Permanent" = "11:FALSE"
  3426. "SharedLegacy" = "11:FALSE"
  3427. "PackageAs" = "3:1"
  3428. "Register" = "3:1"
  3429. "Exclude" = "11:FALSE"
  3430. "IsDependency" = "11:TRUE"
  3431. "IsolateTo" = "8:"
  3432. }
  3433. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B1BF989A859FD8ED1E8192E813FCD133"
  3434. {
  3435. "AssemblyRegister" = "3:1"
  3436. "AssemblyIsInGAC" = "11:FALSE"
  3437. "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3438. "ScatterAssemblies"
  3439. {
  3440. "_B1BF989A859FD8ED1E8192E813FCD133"
  3441. {
  3442. "Name" = "8:System.Reflection.Extensions.dll"
  3443. "Attributes" = "3:512"
  3444. }
  3445. }
  3446. "SourcePath" = "8:System.Reflection.Extensions.dll"
  3447. "TargetName" = "8:"
  3448. "Tag" = "8:"
  3449. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3450. "Condition" = "8:"
  3451. "Transitive" = "11:FALSE"
  3452. "Vital" = "11:TRUE"
  3453. "ReadOnly" = "11:FALSE"
  3454. "Hidden" = "11:FALSE"
  3455. "System" = "11:FALSE"
  3456. "Permanent" = "11:FALSE"
  3457. "SharedLegacy" = "11:FALSE"
  3458. "PackageAs" = "3:1"
  3459. "Register" = "3:1"
  3460. "Exclude" = "11:FALSE"
  3461. "IsDependency" = "11:TRUE"
  3462. "IsolateTo" = "8:"
  3463. }
  3464. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B2AF5C512A6DBAA734C4BECDF7C41531"
  3465. {
  3466. "AssemblyRegister" = "3:1"
  3467. "AssemblyIsInGAC" = "11:FALSE"
  3468. "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3469. "ScatterAssemblies"
  3470. {
  3471. "_B2AF5C512A6DBAA734C4BECDF7C41531"
  3472. {
  3473. "Name" = "8:System.Runtime.Extensions.dll"
  3474. "Attributes" = "3:512"
  3475. }
  3476. }
  3477. "SourcePath" = "8:System.Runtime.Extensions.dll"
  3478. "TargetName" = "8:"
  3479. "Tag" = "8:"
  3480. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3481. "Condition" = "8:"
  3482. "Transitive" = "11:FALSE"
  3483. "Vital" = "11:TRUE"
  3484. "ReadOnly" = "11:FALSE"
  3485. "Hidden" = "11:FALSE"
  3486. "System" = "11:FALSE"
  3487. "Permanent" = "11:FALSE"
  3488. "SharedLegacy" = "11:FALSE"
  3489. "PackageAs" = "3:1"
  3490. "Register" = "3:1"
  3491. "Exclude" = "11:FALSE"
  3492. "IsDependency" = "11:TRUE"
  3493. "IsolateTo" = "8:"
  3494. }
  3495. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B2F40B0E5E96E96C652BAE4365FC9875"
  3496. {
  3497. "AssemblyRegister" = "3:1"
  3498. "AssemblyIsInGAC" = "11:FALSE"
  3499. "AssemblyAsmDisplayName" = "8:DotNetty.Handlers, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL"
  3500. "ScatterAssemblies"
  3501. {
  3502. "_B2F40B0E5E96E96C652BAE4365FC9875"
  3503. {
  3504. "Name" = "8:DotNetty.Handlers.dll"
  3505. "Attributes" = "3:512"
  3506. }
  3507. }
  3508. "SourcePath" = "8:DotNetty.Handlers.dll"
  3509. "TargetName" = "8:"
  3510. "Tag" = "8:"
  3511. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3512. "Condition" = "8:"
  3513. "Transitive" = "11:FALSE"
  3514. "Vital" = "11:TRUE"
  3515. "ReadOnly" = "11:FALSE"
  3516. "Hidden" = "11:FALSE"
  3517. "System" = "11:FALSE"
  3518. "Permanent" = "11:FALSE"
  3519. "SharedLegacy" = "11:FALSE"
  3520. "PackageAs" = "3:1"
  3521. "Register" = "3:1"
  3522. "Exclude" = "11:FALSE"
  3523. "IsDependency" = "11:TRUE"
  3524. "IsolateTo" = "8:"
  3525. }
  3526. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6E0D204D2D59F2B36542103F153039F"
  3527. {
  3528. "AssemblyRegister" = "3:1"
  3529. "AssemblyIsInGAC" = "11:FALSE"
  3530. "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3531. "ScatterAssemblies"
  3532. {
  3533. "_B6E0D204D2D59F2B36542103F153039F"
  3534. {
  3535. "Name" = "8:System.Linq.Expressions.dll"
  3536. "Attributes" = "3:512"
  3537. }
  3538. }
  3539. "SourcePath" = "8:System.Linq.Expressions.dll"
  3540. "TargetName" = "8:"
  3541. "Tag" = "8:"
  3542. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3543. "Condition" = "8:"
  3544. "Transitive" = "11:FALSE"
  3545. "Vital" = "11:TRUE"
  3546. "ReadOnly" = "11:FALSE"
  3547. "Hidden" = "11:FALSE"
  3548. "System" = "11:FALSE"
  3549. "Permanent" = "11:FALSE"
  3550. "SharedLegacy" = "11:FALSE"
  3551. "PackageAs" = "3:1"
  3552. "Register" = "3:1"
  3553. "Exclude" = "11:FALSE"
  3554. "IsDependency" = "11:TRUE"
  3555. "IsolateTo" = "8:"
  3556. }
  3557. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BC73F21DCF1E239874190098C3F8E68B"
  3558. {
  3559. "AssemblyRegister" = "3:1"
  3560. "AssemblyIsInGAC" = "11:FALSE"
  3561. "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3562. "ScatterAssemblies"
  3563. {
  3564. "_BC73F21DCF1E239874190098C3F8E68B"
  3565. {
  3566. "Name" = "8:System.Globalization.dll"
  3567. "Attributes" = "3:512"
  3568. }
  3569. }
  3570. "SourcePath" = "8:System.Globalization.dll"
  3571. "TargetName" = "8:"
  3572. "Tag" = "8:"
  3573. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3574. "Condition" = "8:"
  3575. "Transitive" = "11:FALSE"
  3576. "Vital" = "11:TRUE"
  3577. "ReadOnly" = "11:FALSE"
  3578. "Hidden" = "11:FALSE"
  3579. "System" = "11:FALSE"
  3580. "Permanent" = "11:FALSE"
  3581. "SharedLegacy" = "11:FALSE"
  3582. "PackageAs" = "3:1"
  3583. "Register" = "3:1"
  3584. "Exclude" = "11:FALSE"
  3585. "IsDependency" = "11:TRUE"
  3586. "IsolateTo" = "8:"
  3587. }
  3588. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD688D4580E2F63FA43AC7ACF2BCE22E"
  3589. {
  3590. "AssemblyRegister" = "3:1"
  3591. "AssemblyIsInGAC" = "11:FALSE"
  3592. "AssemblyAsmDisplayName" = "8:System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3593. "ScatterAssemblies"
  3594. {
  3595. "_BD688D4580E2F63FA43AC7ACF2BCE22E"
  3596. {
  3597. "Name" = "8:System.Console.dll"
  3598. "Attributes" = "3:512"
  3599. }
  3600. }
  3601. "SourcePath" = "8:System.Console.dll"
  3602. "TargetName" = "8:"
  3603. "Tag" = "8:"
  3604. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3605. "Condition" = "8:"
  3606. "Transitive" = "11:FALSE"
  3607. "Vital" = "11:TRUE"
  3608. "ReadOnly" = "11:FALSE"
  3609. "Hidden" = "11:FALSE"
  3610. "System" = "11:FALSE"
  3611. "Permanent" = "11:FALSE"
  3612. "SharedLegacy" = "11:FALSE"
  3613. "PackageAs" = "3:1"
  3614. "Register" = "3:1"
  3615. "Exclude" = "11:FALSE"
  3616. "IsDependency" = "11:TRUE"
  3617. "IsolateTo" = "8:"
  3618. }
  3619. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CA5DB5BEF9012B88BC397D49788D81C4"
  3620. {
  3621. "AssemblyRegister" = "3:1"
  3622. "AssemblyIsInGAC" = "11:FALSE"
  3623. "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3624. "ScatterAssemblies"
  3625. {
  3626. "_CA5DB5BEF9012B88BC397D49788D81C4"
  3627. {
  3628. "Name" = "8:System.Net.Http.dll"
  3629. "Attributes" = "3:512"
  3630. }
  3631. }
  3632. "SourcePath" = "8:System.Net.Http.dll"
  3633. "TargetName" = "8:"
  3634. "Tag" = "8:"
  3635. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3636. "Condition" = "8:"
  3637. "Transitive" = "11:FALSE"
  3638. "Vital" = "11:TRUE"
  3639. "ReadOnly" = "11:FALSE"
  3640. "Hidden" = "11:FALSE"
  3641. "System" = "11:FALSE"
  3642. "Permanent" = "11:FALSE"
  3643. "SharedLegacy" = "11:FALSE"
  3644. "PackageAs" = "3:1"
  3645. "Register" = "3:1"
  3646. "Exclude" = "11:FALSE"
  3647. "IsDependency" = "11:TRUE"
  3648. "IsolateTo" = "8:"
  3649. }
  3650. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CD7FB07A9CF1F264BC8CC6051E78EE43"
  3651. {
  3652. "AssemblyRegister" = "3:1"
  3653. "AssemblyIsInGAC" = "11:FALSE"
  3654. "AssemblyAsmDisplayName" = "8:Microsoft.Extensions.Logging.Abstractions, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"
  3655. "ScatterAssemblies"
  3656. {
  3657. "_CD7FB07A9CF1F264BC8CC6051E78EE43"
  3658. {
  3659. "Name" = "8:Microsoft.Extensions.Logging.Abstractions.dll"
  3660. "Attributes" = "3:512"
  3661. }
  3662. }
  3663. "SourcePath" = "8:Microsoft.Extensions.Logging.Abstractions.dll"
  3664. "TargetName" = "8:"
  3665. "Tag" = "8:"
  3666. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3667. "Condition" = "8:"
  3668. "Transitive" = "11:FALSE"
  3669. "Vital" = "11:TRUE"
  3670. "ReadOnly" = "11:FALSE"
  3671. "Hidden" = "11:FALSE"
  3672. "System" = "11:FALSE"
  3673. "Permanent" = "11:FALSE"
  3674. "SharedLegacy" = "11:FALSE"
  3675. "PackageAs" = "3:1"
  3676. "Register" = "3:1"
  3677. "Exclude" = "11:FALSE"
  3678. "IsDependency" = "11:TRUE"
  3679. "IsolateTo" = "8:"
  3680. }
  3681. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D09714323021780B1F5E4DA16B0D6FA4"
  3682. {
  3683. "AssemblyRegister" = "3:1"
  3684. "AssemblyIsInGAC" = "11:FALSE"
  3685. "AssemblyAsmDisplayName" = "8:System.IO, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3686. "ScatterAssemblies"
  3687. {
  3688. "_D09714323021780B1F5E4DA16B0D6FA4"
  3689. {
  3690. "Name" = "8:System.IO.dll"
  3691. "Attributes" = "3:512"
  3692. }
  3693. }
  3694. "SourcePath" = "8:System.IO.dll"
  3695. "TargetName" = "8:"
  3696. "Tag" = "8:"
  3697. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3698. "Condition" = "8:"
  3699. "Transitive" = "11:FALSE"
  3700. "Vital" = "11:TRUE"
  3701. "ReadOnly" = "11:FALSE"
  3702. "Hidden" = "11:FALSE"
  3703. "System" = "11:FALSE"
  3704. "Permanent" = "11:FALSE"
  3705. "SharedLegacy" = "11:FALSE"
  3706. "PackageAs" = "3:1"
  3707. "Register" = "3:1"
  3708. "Exclude" = "11:FALSE"
  3709. "IsDependency" = "11:TRUE"
  3710. "IsolateTo" = "8:"
  3711. }
  3712. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D19421EA6775E5E8456C79DA00E075E4"
  3713. {
  3714. "AssemblyRegister" = "3:1"
  3715. "AssemblyIsInGAC" = "11:FALSE"
  3716. "AssemblyAsmDisplayName" = "8:DotNetty.Codecs, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL"
  3717. "ScatterAssemblies"
  3718. {
  3719. "_D19421EA6775E5E8456C79DA00E075E4"
  3720. {
  3721. "Name" = "8:DotNetty.Codecs.dll"
  3722. "Attributes" = "3:512"
  3723. }
  3724. }
  3725. "SourcePath" = "8:DotNetty.Codecs.dll"
  3726. "TargetName" = "8:"
  3727. "Tag" = "8:"
  3728. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3729. "Condition" = "8:"
  3730. "Transitive" = "11:FALSE"
  3731. "Vital" = "11:TRUE"
  3732. "ReadOnly" = "11:FALSE"
  3733. "Hidden" = "11:FALSE"
  3734. "System" = "11:FALSE"
  3735. "Permanent" = "11:FALSE"
  3736. "SharedLegacy" = "11:FALSE"
  3737. "PackageAs" = "3:1"
  3738. "Register" = "3:1"
  3739. "Exclude" = "11:FALSE"
  3740. "IsDependency" = "11:TRUE"
  3741. "IsolateTo" = "8:"
  3742. }
  3743. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D24CFE10A6A5A8A68D32E486FD70E08A"
  3744. {
  3745. "AssemblyRegister" = "3:1"
  3746. "AssemblyIsInGAC" = "11:TRUE"
  3747. "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3748. "ScatterAssemblies"
  3749. {
  3750. "_D24CFE10A6A5A8A68D32E486FD70E08A"
  3751. {
  3752. "Name" = "8:System.Collections.Concurrent.dll"
  3753. "Attributes" = "3:512"
  3754. }
  3755. }
  3756. "SourcePath" = "8:System.Collections.Concurrent.dll"
  3757. "TargetName" = "8:"
  3758. "Tag" = "8:"
  3759. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3760. "Condition" = "8:"
  3761. "Transitive" = "11:FALSE"
  3762. "Vital" = "11:TRUE"
  3763. "ReadOnly" = "11:FALSE"
  3764. "Hidden" = "11:FALSE"
  3765. "System" = "11:FALSE"
  3766. "Permanent" = "11:FALSE"
  3767. "SharedLegacy" = "11:FALSE"
  3768. "PackageAs" = "3:1"
  3769. "Register" = "3:1"
  3770. "Exclude" = "11:FALSE"
  3771. "IsDependency" = "11:TRUE"
  3772. "IsolateTo" = "8:"
  3773. }
  3774. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D3ECDD0D3D6625B24CB4EE5D81EEB949"
  3775. {
  3776. "AssemblyRegister" = "3:1"
  3777. "AssemblyIsInGAC" = "11:FALSE"
  3778. "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3779. "ScatterAssemblies"
  3780. {
  3781. "_D3ECDD0D3D6625B24CB4EE5D81EEB949"
  3782. {
  3783. "Name" = "8:System.Reflection.Primitives.dll"
  3784. "Attributes" = "3:512"
  3785. }
  3786. }
  3787. "SourcePath" = "8:System.Reflection.Primitives.dll"
  3788. "TargetName" = "8:"
  3789. "Tag" = "8:"
  3790. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3791. "Condition" = "8:"
  3792. "Transitive" = "11:FALSE"
  3793. "Vital" = "11:TRUE"
  3794. "ReadOnly" = "11:FALSE"
  3795. "Hidden" = "11:FALSE"
  3796. "System" = "11:FALSE"
  3797. "Permanent" = "11:FALSE"
  3798. "SharedLegacy" = "11:FALSE"
  3799. "PackageAs" = "3:1"
  3800. "Register" = "3:1"
  3801. "Exclude" = "11:FALSE"
  3802. "IsDependency" = "11:TRUE"
  3803. "IsolateTo" = "8:"
  3804. }
  3805. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DBDBA1F6284D57CEEA560154F32452C4"
  3806. {
  3807. "AssemblyRegister" = "3:1"
  3808. "AssemblyIsInGAC" = "11:FALSE"
  3809. "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3810. "ScatterAssemblies"
  3811. {
  3812. "_DBDBA1F6284D57CEEA560154F32452C4"
  3813. {
  3814. "Name" = "8:System.Threading.Tasks.dll"
  3815. "Attributes" = "3:512"
  3816. }
  3817. }
  3818. "SourcePath" = "8:System.Threading.Tasks.dll"
  3819. "TargetName" = "8:"
  3820. "Tag" = "8:"
  3821. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3822. "Condition" = "8:"
  3823. "Transitive" = "11:FALSE"
  3824. "Vital" = "11:TRUE"
  3825. "ReadOnly" = "11:FALSE"
  3826. "Hidden" = "11:FALSE"
  3827. "System" = "11:FALSE"
  3828. "Permanent" = "11:FALSE"
  3829. "SharedLegacy" = "11:FALSE"
  3830. "PackageAs" = "3:1"
  3831. "Register" = "3:1"
  3832. "Exclude" = "11:FALSE"
  3833. "IsDependency" = "11:TRUE"
  3834. "IsolateTo" = "8:"
  3835. }
  3836. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DCCE20394B1E51143D8D8DF25665A5B7"
  3837. {
  3838. "AssemblyRegister" = "3:1"
  3839. "AssemblyIsInGAC" = "11:FALSE"
  3840. "AssemblyAsmDisplayName" = "8:System.ServiceModel.NetTcp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3841. "ScatterAssemblies"
  3842. {
  3843. "_DCCE20394B1E51143D8D8DF25665A5B7"
  3844. {
  3845. "Name" = "8:System.ServiceModel.NetTcp.dll"
  3846. "Attributes" = "3:512"
  3847. }
  3848. }
  3849. "SourcePath" = "8:System.ServiceModel.NetTcp.dll"
  3850. "TargetName" = "8:"
  3851. "Tag" = "8:"
  3852. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3853. "Condition" = "8:"
  3854. "Transitive" = "11:FALSE"
  3855. "Vital" = "11:TRUE"
  3856. "ReadOnly" = "11:FALSE"
  3857. "Hidden" = "11:FALSE"
  3858. "System" = "11:FALSE"
  3859. "Permanent" = "11:FALSE"
  3860. "SharedLegacy" = "11:FALSE"
  3861. "PackageAs" = "3:1"
  3862. "Register" = "3:1"
  3863. "Exclude" = "11:FALSE"
  3864. "IsDependency" = "11:TRUE"
  3865. "IsolateTo" = "8:"
  3866. }
  3867. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E14763FD49BFCD1CB789621401B0759D"
  3868. {
  3869. "AssemblyRegister" = "3:1"
  3870. "AssemblyIsInGAC" = "11:FALSE"
  3871. "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3872. "ScatterAssemblies"
  3873. {
  3874. "_E14763FD49BFCD1CB789621401B0759D"
  3875. {
  3876. "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll"
  3877. "Attributes" = "3:512"
  3878. }
  3879. }
  3880. "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll"
  3881. "TargetName" = "8:"
  3882. "Tag" = "8:"
  3883. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3884. "Condition" = "8:"
  3885. "Transitive" = "11:FALSE"
  3886. "Vital" = "11:TRUE"
  3887. "ReadOnly" = "11:FALSE"
  3888. "Hidden" = "11:FALSE"
  3889. "System" = "11:FALSE"
  3890. "Permanent" = "11:FALSE"
  3891. "SharedLegacy" = "11:FALSE"
  3892. "PackageAs" = "3:1"
  3893. "Register" = "3:1"
  3894. "Exclude" = "11:FALSE"
  3895. "IsDependency" = "11:TRUE"
  3896. "IsolateTo" = "8:"
  3897. }
  3898. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E5364853044EABAC743E7940A1F505A9"
  3899. {
  3900. "AssemblyRegister" = "3:1"
  3901. "AssemblyIsInGAC" = "11:TRUE"
  3902. "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  3903. "ScatterAssemblies"
  3904. {
  3905. "_E5364853044EABAC743E7940A1F505A9"
  3906. {
  3907. "Name" = "8:System.Diagnostics.Debug.dll"
  3908. "Attributes" = "3:512"
  3909. }
  3910. }
  3911. "SourcePath" = "8:System.Diagnostics.Debug.dll"
  3912. "TargetName" = "8:"
  3913. "Tag" = "8:"
  3914. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3915. "Condition" = "8:"
  3916. "Transitive" = "11:FALSE"
  3917. "Vital" = "11:TRUE"
  3918. "ReadOnly" = "11:FALSE"
  3919. "Hidden" = "11:FALSE"
  3920. "System" = "11:FALSE"
  3921. "Permanent" = "11:FALSE"
  3922. "SharedLegacy" = "11:FALSE"
  3923. "PackageAs" = "3:1"
  3924. "Register" = "3:1"
  3925. "Exclude" = "11:FALSE"
  3926. "IsDependency" = "11:TRUE"
  3927. "IsolateTo" = "8:"
  3928. }
  3929. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6E6548986D29A4E6D88FF17A1324824"
  3930. {
  3931. "AssemblyRegister" = "3:1"
  3932. "AssemblyIsInGAC" = "11:FALSE"
  3933. "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3934. "ScatterAssemblies"
  3935. {
  3936. "_E6E6548986D29A4E6D88FF17A1324824"
  3937. {
  3938. "Name" = "8:System.ComponentModel.EventBasedAsync.dll"
  3939. "Attributes" = "3:512"
  3940. }
  3941. }
  3942. "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll"
  3943. "TargetName" = "8:"
  3944. "Tag" = "8:"
  3945. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3946. "Condition" = "8:"
  3947. "Transitive" = "11:FALSE"
  3948. "Vital" = "11:TRUE"
  3949. "ReadOnly" = "11:FALSE"
  3950. "Hidden" = "11:FALSE"
  3951. "System" = "11:FALSE"
  3952. "Permanent" = "11:FALSE"
  3953. "SharedLegacy" = "11:FALSE"
  3954. "PackageAs" = "3:1"
  3955. "Register" = "3:1"
  3956. "Exclude" = "11:FALSE"
  3957. "IsDependency" = "11:TRUE"
  3958. "IsolateTo" = "8:"
  3959. }
  3960. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E898E5500F27C7C7A7C390B289FF6702"
  3961. {
  3962. "AssemblyRegister" = "3:1"
  3963. "AssemblyIsInGAC" = "11:FALSE"
  3964. "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3965. "ScatterAssemblies"
  3966. {
  3967. "_E898E5500F27C7C7A7C390B289FF6702"
  3968. {
  3969. "Name" = "8:System.Threading.dll"
  3970. "Attributes" = "3:512"
  3971. }
  3972. }
  3973. "SourcePath" = "8:System.Threading.dll"
  3974. "TargetName" = "8:"
  3975. "Tag" = "8:"
  3976. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  3977. "Condition" = "8:"
  3978. "Transitive" = "11:FALSE"
  3979. "Vital" = "11:TRUE"
  3980. "ReadOnly" = "11:FALSE"
  3981. "Hidden" = "11:FALSE"
  3982. "System" = "11:FALSE"
  3983. "Permanent" = "11:FALSE"
  3984. "SharedLegacy" = "11:FALSE"
  3985. "PackageAs" = "3:1"
  3986. "Register" = "3:1"
  3987. "Exclude" = "11:FALSE"
  3988. "IsDependency" = "11:TRUE"
  3989. "IsolateTo" = "8:"
  3990. }
  3991. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E94C6926E4EA1708D4197EAEBC4D16C3"
  3992. {
  3993. "AssemblyRegister" = "3:1"
  3994. "AssemblyIsInGAC" = "11:FALSE"
  3995. "AssemblyAsmDisplayName" = "8:System.ServiceModel.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3996. "ScatterAssemblies"
  3997. {
  3998. "_E94C6926E4EA1708D4197EAEBC4D16C3"
  3999. {
  4000. "Name" = "8:System.ServiceModel.Primitives.dll"
  4001. "Attributes" = "3:512"
  4002. }
  4003. }
  4004. "SourcePath" = "8:System.ServiceModel.Primitives.dll"
  4005. "TargetName" = "8:"
  4006. "Tag" = "8:"
  4007. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4008. "Condition" = "8:"
  4009. "Transitive" = "11:FALSE"
  4010. "Vital" = "11:TRUE"
  4011. "ReadOnly" = "11:FALSE"
  4012. "Hidden" = "11:FALSE"
  4013. "System" = "11:FALSE"
  4014. "Permanent" = "11:FALSE"
  4015. "SharedLegacy" = "11:FALSE"
  4016. "PackageAs" = "3:1"
  4017. "Register" = "3:1"
  4018. "Exclude" = "11:FALSE"
  4019. "IsDependency" = "11:TRUE"
  4020. "IsolateTo" = "8:"
  4021. }
  4022. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F3254796EBCE563BEF48892460BFE886"
  4023. {
  4024. "AssemblyRegister" = "3:1"
  4025. "AssemblyIsInGAC" = "11:FALSE"
  4026. "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.0.20.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  4027. "ScatterAssemblies"
  4028. {
  4029. "_F3254796EBCE563BEF48892460BFE886"
  4030. {
  4031. "Name" = "8:System.Diagnostics.Tracing.dll"
  4032. "Attributes" = "3:512"
  4033. }
  4034. }
  4035. "SourcePath" = "8:System.Diagnostics.Tracing.dll"
  4036. "TargetName" = "8:"
  4037. "Tag" = "8:"
  4038. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4039. "Condition" = "8:"
  4040. "Transitive" = "11:FALSE"
  4041. "Vital" = "11:TRUE"
  4042. "ReadOnly" = "11:FALSE"
  4043. "Hidden" = "11:FALSE"
  4044. "System" = "11:FALSE"
  4045. "Permanent" = "11:FALSE"
  4046. "SharedLegacy" = "11:FALSE"
  4047. "PackageAs" = "3:1"
  4048. "Register" = "3:1"
  4049. "Exclude" = "11:FALSE"
  4050. "IsDependency" = "11:TRUE"
  4051. "IsolateTo" = "8:"
  4052. }
  4053. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F513816FAD8D3116CD284A5DB9B4FCF9"
  4054. {
  4055. "AssemblyRegister" = "3:1"
  4056. "AssemblyIsInGAC" = "11:TRUE"
  4057. "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  4058. "ScatterAssemblies"
  4059. {
  4060. "_F513816FAD8D3116CD284A5DB9B4FCF9"
  4061. {
  4062. "Name" = "8:System.Threading.Tasks.dll"
  4063. "Attributes" = "3:512"
  4064. }
  4065. }
  4066. "SourcePath" = "8:System.Threading.Tasks.dll"
  4067. "TargetName" = "8:"
  4068. "Tag" = "8:"
  4069. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4070. "Condition" = "8:"
  4071. "Transitive" = "11:FALSE"
  4072. "Vital" = "11:TRUE"
  4073. "ReadOnly" = "11:FALSE"
  4074. "Hidden" = "11:FALSE"
  4075. "System" = "11:FALSE"
  4076. "Permanent" = "11:FALSE"
  4077. "SharedLegacy" = "11:FALSE"
  4078. "PackageAs" = "3:1"
  4079. "Register" = "3:1"
  4080. "Exclude" = "11:FALSE"
  4081. "IsDependency" = "11:TRUE"
  4082. "IsolateTo" = "8:"
  4083. }
  4084. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F61649F3A7473D454A479971DD5DE8FC"
  4085. {
  4086. "AssemblyRegister" = "3:1"
  4087. "AssemblyIsInGAC" = "11:FALSE"
  4088. "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.0.20.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  4089. "ScatterAssemblies"
  4090. {
  4091. "_F61649F3A7473D454A479971DD5DE8FC"
  4092. {
  4093. "Name" = "8:System.Runtime.InteropServices.dll"
  4094. "Attributes" = "3:512"
  4095. }
  4096. }
  4097. "SourcePath" = "8:System.Runtime.InteropServices.dll"
  4098. "TargetName" = "8:"
  4099. "Tag" = "8:"
  4100. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4101. "Condition" = "8:"
  4102. "Transitive" = "11:FALSE"
  4103. "Vital" = "11:TRUE"
  4104. "ReadOnly" = "11:FALSE"
  4105. "Hidden" = "11:FALSE"
  4106. "System" = "11:FALSE"
  4107. "Permanent" = "11:FALSE"
  4108. "SharedLegacy" = "11:FALSE"
  4109. "PackageAs" = "3:1"
  4110. "Register" = "3:1"
  4111. "Exclude" = "11:FALSE"
  4112. "IsDependency" = "11:TRUE"
  4113. "IsolateTo" = "8:"
  4114. }
  4115. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  4116. {
  4117. "AssemblyRegister" = "3:1"
  4118. "AssemblyIsInGAC" = "11:FALSE"
  4119. "AssemblyAsmDisplayName" = "8:DotNetty.Transport, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL"
  4120. "ScatterAssemblies"
  4121. {
  4122. "_F89D6EF20C5DE507A08CD0D77ED9B6CE"
  4123. {
  4124. "Name" = "8:DotNetty.Transport.dll"
  4125. "Attributes" = "3:512"
  4126. }
  4127. }
  4128. "SourcePath" = "8:DotNetty.Transport.dll"
  4129. "TargetName" = "8:"
  4130. "Tag" = "8:"
  4131. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4132. "Condition" = "8:"
  4133. "Transitive" = "11:FALSE"
  4134. "Vital" = "11:TRUE"
  4135. "ReadOnly" = "11:FALSE"
  4136. "Hidden" = "11:FALSE"
  4137. "System" = "11:FALSE"
  4138. "Permanent" = "11:FALSE"
  4139. "SharedLegacy" = "11:FALSE"
  4140. "PackageAs" = "3:1"
  4141. "Register" = "3:1"
  4142. "Exclude" = "11:FALSE"
  4143. "IsDependency" = "11:TRUE"
  4144. "IsolateTo" = "8:"
  4145. }
  4146. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FA8FC7866957AEE2283F754FF7A460AA"
  4147. {
  4148. "AssemblyRegister" = "3:1"
  4149. "AssemblyIsInGAC" = "11:FALSE"
  4150. "AssemblyAsmDisplayName" = "8:DotNetty.Buffers, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL"
  4151. "ScatterAssemblies"
  4152. {
  4153. "_FA8FC7866957AEE2283F754FF7A460AA"
  4154. {
  4155. "Name" = "8:DotNetty.Buffers.dll"
  4156. "Attributes" = "3:512"
  4157. }
  4158. }
  4159. "SourcePath" = "8:DotNetty.Buffers.dll"
  4160. "TargetName" = "8:"
  4161. "Tag" = "8:"
  4162. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4163. "Condition" = "8:"
  4164. "Transitive" = "11:FALSE"
  4165. "Vital" = "11:TRUE"
  4166. "ReadOnly" = "11:FALSE"
  4167. "Hidden" = "11:FALSE"
  4168. "System" = "11:FALSE"
  4169. "Permanent" = "11:FALSE"
  4170. "SharedLegacy" = "11:FALSE"
  4171. "PackageAs" = "3:1"
  4172. "Register" = "3:1"
  4173. "Exclude" = "11:FALSE"
  4174. "IsDependency" = "11:TRUE"
  4175. "IsolateTo" = "8:"
  4176. }
  4177. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FFD00D118F2EEBDFF07D9A49B39428C7"
  4178. {
  4179. "AssemblyRegister" = "3:1"
  4180. "AssemblyIsInGAC" = "11:FALSE"
  4181. "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  4182. "ScatterAssemblies"
  4183. {
  4184. "_FFD00D118F2EEBDFF07D9A49B39428C7"
  4185. {
  4186. "Name" = "8:System.Diagnostics.Tools.dll"
  4187. "Attributes" = "3:512"
  4188. }
  4189. }
  4190. "SourcePath" = "8:System.Diagnostics.Tools.dll"
  4191. "TargetName" = "8:"
  4192. "Tag" = "8:"
  4193. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4194. "Condition" = "8:"
  4195. "Transitive" = "11:FALSE"
  4196. "Vital" = "11:TRUE"
  4197. "ReadOnly" = "11:FALSE"
  4198. "Hidden" = "11:FALSE"
  4199. "System" = "11:FALSE"
  4200. "Permanent" = "11:FALSE"
  4201. "SharedLegacy" = "11:FALSE"
  4202. "PackageAs" = "3:1"
  4203. "Register" = "3:1"
  4204. "Exclude" = "11:FALSE"
  4205. "IsDependency" = "11:TRUE"
  4206. "IsolateTo" = "8:"
  4207. }
  4208. }
  4209. "FileType"
  4210. {
  4211. }
  4212. "Folder"
  4213. {
  4214. "{1525181F-901A-416C-8A58-119130FE478E}:_83C1ADE392374EA5A81D0889C811F828"
  4215. {
  4216. "Name" = "8:#1919"
  4217. "AlwaysCreate" = "11:FALSE"
  4218. "Condition" = "8:"
  4219. "Transitive" = "11:FALSE"
  4220. "Property" = "8:ProgramMenuFolder"
  4221. "Folders"
  4222. {
  4223. "{9EF0B969-E518-4E46-987F-47570745A589}:_2B13604FF2F844CC84F4DF7C20D68D11"
  4224. {
  4225. "Name" = "8:DotNettyForm"
  4226. "AlwaysCreate" = "11:FALSE"
  4227. "Condition" = "8:"
  4228. "Transitive" = "11:FALSE"
  4229. "Property" = "8:_477966B50BB6486FA3BEA756D3B6043A"
  4230. "Folders"
  4231. {
  4232. }
  4233. }
  4234. }
  4235. }
  4236. "{3C67513D-01DD-4637-8A68-80971EB9504F}:_86552D298AE6489E831C30A91D00EFBE"
  4237. {
  4238. "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]"
  4239. "Name" = "8:#1925"
  4240. "AlwaysCreate" = "11:FALSE"
  4241. "Condition" = "8:"
  4242. "Transitive" = "11:FALSE"
  4243. "Property" = "8:TARGETDIR"
  4244. "Folders"
  4245. {
  4246. }
  4247. }
  4248. "{1525181F-901A-416C-8A58-119130FE478E}:_CB34A8A66694409F91B6A2262BBE2314"
  4249. {
  4250. "Name" = "8:#1916"
  4251. "AlwaysCreate" = "11:FALSE"
  4252. "Condition" = "8:"
  4253. "Transitive" = "11:FALSE"
  4254. "Property" = "8:DesktopFolder"
  4255. "Folders"
  4256. {
  4257. }
  4258. }
  4259. }
  4260. "LaunchCondition"
  4261. {
  4262. }
  4263. "Locator"
  4264. {
  4265. }
  4266. "MsiBootstrapper"
  4267. {
  4268. "LangId" = "3:2052"
  4269. "RequiresElevation" = "11:FALSE"
  4270. }
  4271. "Product"
  4272. {
  4273. "Name" = "8:Microsoft Visual Studio"
  4274. "ProductName" = "8:Setup1"
  4275. "ProductCode" = "8:{2B569BD0-10F9-4815-A493-E427033BCB78}"
  4276. "PackageCode" = "8:{6E5BC357-7EAC-48CB-ABD8-C042157BCFB3}"
  4277. "UpgradeCode" = "8:{DF700A77-7C13-4CF6-A3A4-641AC3EC51A5}"
  4278. "AspNetVersion" = "8:"
  4279. "RestartWWWService" = "11:FALSE"
  4280. "RemovePreviousVersions" = "11:FALSE"
  4281. "DetectNewerInstalledVersion" = "11:TRUE"
  4282. "InstallAllUsers" = "11:FALSE"
  4283. "ProductVersion" = "8:1.0.0"
  4284. "Manufacturer" = "8:Default Company Name"
  4285. "ARPHELPTELEPHONE" = "8:"
  4286. "ARPHELPLINK" = "8:"
  4287. "Title" = "8:Setup1"
  4288. "Subject" = "8:"
  4289. "ARPCONTACT" = "8:Default Company Name"
  4290. "Keywords" = "8:"
  4291. "ARPCOMMENTS" = "8:"
  4292. "ARPURLINFOABOUT" = "8:"
  4293. "ARPPRODUCTICON" = "8:"
  4294. "ARPIconIndex" = "3:0"
  4295. "SearchPath" = "8:"
  4296. "UseSystemSearchPath" = "11:TRUE"
  4297. "TargetPlatform" = "3:0"
  4298. "PreBuildEvent" = "8:"
  4299. "PostBuildEvent" = "8:"
  4300. "RunPostBuildEvent" = "3:0"
  4301. }
  4302. "Registry"
  4303. {
  4304. "HKLM"
  4305. {
  4306. "Keys"
  4307. {
  4308. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_3F23B622C1E042AA9499AF85ECA19E0C"
  4309. {
  4310. "Name" = "8:Software"
  4311. "Condition" = "8:"
  4312. "AlwaysCreate" = "11:FALSE"
  4313. "DeleteAtUninstall" = "11:FALSE"
  4314. "Transitive" = "11:FALSE"
  4315. "Keys"
  4316. {
  4317. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_61F77C6BFF514DBD8BD9A16430C0E641"
  4318. {
  4319. "Name" = "8:[Manufacturer]"
  4320. "Condition" = "8:"
  4321. "AlwaysCreate" = "11:FALSE"
  4322. "DeleteAtUninstall" = "11:FALSE"
  4323. "Transitive" = "11:FALSE"
  4324. "Keys"
  4325. {
  4326. }
  4327. "Values"
  4328. {
  4329. }
  4330. }
  4331. }
  4332. "Values"
  4333. {
  4334. }
  4335. }
  4336. }
  4337. }
  4338. "HKCU"
  4339. {
  4340. "Keys"
  4341. {
  4342. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_76CD7B24248A4989B82493CB76CF2060"
  4343. {
  4344. "Name" = "8:Software"
  4345. "Condition" = "8:"
  4346. "AlwaysCreate" = "11:FALSE"
  4347. "DeleteAtUninstall" = "11:FALSE"
  4348. "Transitive" = "11:FALSE"
  4349. "Keys"
  4350. {
  4351. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_842391407F0D4591B3EFA13B72B81BDE"
  4352. {
  4353. "Name" = "8:[Manufacturer]"
  4354. "Condition" = "8:"
  4355. "AlwaysCreate" = "11:FALSE"
  4356. "DeleteAtUninstall" = "11:FALSE"
  4357. "Transitive" = "11:FALSE"
  4358. "Keys"
  4359. {
  4360. }
  4361. "Values"
  4362. {
  4363. }
  4364. }
  4365. }
  4366. "Values"
  4367. {
  4368. }
  4369. }
  4370. }
  4371. }
  4372. "HKCR"
  4373. {
  4374. "Keys"
  4375. {
  4376. }
  4377. }
  4378. "HKU"
  4379. {
  4380. "Keys"
  4381. {
  4382. }
  4383. }
  4384. "HKPU"
  4385. {
  4386. "Keys"
  4387. {
  4388. }
  4389. }
  4390. }
  4391. "Sequences"
  4392. {
  4393. }
  4394. "Shortcut"
  4395. {
  4396. "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_1ED4C6B53BE34B9EA5147CC5EBDAA334"
  4397. {
  4398. "Name" = "8:DotNettyForm"
  4399. "Arguments" = "8:"
  4400. "Description" = "8:"
  4401. "ShowCmd" = "3:1"
  4402. "IconIndex" = "3:0"
  4403. "Transitive" = "11:FALSE"
  4404. "Target" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  4405. "Folder" = "8:_CB34A8A66694409F91B6A2262BBE2314"
  4406. "WorkingFolder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4407. "Icon" = "8:"
  4408. "Feature" = "8:"
  4409. }
  4410. "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_ABFAABA9E60B4A64A49F55F943DB830F"
  4411. {
  4412. "Name" = "8:Shortcut to 主输出 from DotNettyFrom (Active)"
  4413. "Arguments" = "8:"
  4414. "Description" = "8:"
  4415. "ShowCmd" = "3:1"
  4416. "IconIndex" = "3:0"
  4417. "Transitive" = "11:FALSE"
  4418. "Target" = "8:_C31FD8A2B4614875880CB7CF343E25D0"
  4419. "Folder" = "8:_2B13604FF2F844CC84F4DF7C20D68D11"
  4420. "WorkingFolder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4421. "Icon" = "8:"
  4422. "Feature" = "8:"
  4423. }
  4424. }
  4425. "UserInterface"
  4426. {
  4427. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_13F0A937B41D4FA6929A3BFDF85A6A89"
  4428. {
  4429. "Name" = "8:#1900"
  4430. "Sequence" = "3:2"
  4431. "Attributes" = "3:1"
  4432. "Dialogs"
  4433. {
  4434. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_038174B27D9C4D26B4E7FEFBE0086581"
  4435. {
  4436. "Sequence" = "3:300"
  4437. "DisplayName" = "8:确认安装"
  4438. "UseDynamicProperties" = "11:TRUE"
  4439. "IsDependency" = "11:FALSE"
  4440. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
  4441. "Properties"
  4442. {
  4443. "BannerBitmap"
  4444. {
  4445. "Name" = "8:BannerBitmap"
  4446. "DisplayName" = "8:#1001"
  4447. "Description" = "8:#1101"
  4448. "Type" = "3:8"
  4449. "ContextData" = "8:Bitmap"
  4450. "Attributes" = "3:4"
  4451. "Setting" = "3:1"
  4452. "UsePlugInResources" = "11:TRUE"
  4453. }
  4454. }
  4455. }
  4456. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_26ECFB0EA6EB48D28D0DE8DBCEEE3143"
  4457. {
  4458. "Sequence" = "3:100"
  4459. "DisplayName" = "8:欢迎使用"
  4460. "UseDynamicProperties" = "11:TRUE"
  4461. "IsDependency" = "11:FALSE"
  4462. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
  4463. "Properties"
  4464. {
  4465. "BannerBitmap"
  4466. {
  4467. "Name" = "8:BannerBitmap"
  4468. "DisplayName" = "8:#1001"
  4469. "Description" = "8:#1101"
  4470. "Type" = "3:8"
  4471. "ContextData" = "8:Bitmap"
  4472. "Attributes" = "3:4"
  4473. "Setting" = "3:1"
  4474. "UsePlugInResources" = "11:TRUE"
  4475. }
  4476. "CopyrightWarning"
  4477. {
  4478. "Name" = "8:CopyrightWarning"
  4479. "DisplayName" = "8:#1002"
  4480. "Description" = "8:#1102"
  4481. "Type" = "3:3"
  4482. "ContextData" = "8:"
  4483. "Attributes" = "3:0"
  4484. "Setting" = "3:1"
  4485. "Value" = "8:#1202"
  4486. "DefaultValue" = "8:#1202"
  4487. "UsePlugInResources" = "11:TRUE"
  4488. }
  4489. "Welcome"
  4490. {
  4491. "Name" = "8:Welcome"
  4492. "DisplayName" = "8:#1003"
  4493. "Description" = "8:#1103"
  4494. "Type" = "3:3"
  4495. "ContextData" = "8:"
  4496. "Attributes" = "3:0"
  4497. "Setting" = "3:1"
  4498. "Value" = "8:#1203"
  4499. "DefaultValue" = "8:#1203"
  4500. "UsePlugInResources" = "11:TRUE"
  4501. }
  4502. }
  4503. }
  4504. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_94CBCF4928D74AF293C3A2F44D872C01"
  4505. {
  4506. "Sequence" = "3:200"
  4507. "DisplayName" = "8:安装文件夹"
  4508. "UseDynamicProperties" = "11:TRUE"
  4509. "IsDependency" = "11:FALSE"
  4510. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
  4511. "Properties"
  4512. {
  4513. "BannerBitmap"
  4514. {
  4515. "Name" = "8:BannerBitmap"
  4516. "DisplayName" = "8:#1001"
  4517. "Description" = "8:#1101"
  4518. "Type" = "3:8"
  4519. "ContextData" = "8:Bitmap"
  4520. "Attributes" = "3:4"
  4521. "Setting" = "3:1"
  4522. "UsePlugInResources" = "11:TRUE"
  4523. }
  4524. }
  4525. }
  4526. }
  4527. }
  4528. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_1EA5AC37E6BB43E8B89EE2448FAE2F80"
  4529. {
  4530. "Name" = "8:#1901"
  4531. "Sequence" = "3:1"
  4532. "Attributes" = "3:2"
  4533. "Dialogs"
  4534. {
  4535. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6AE1FB8049A24418B4B8CBD9093AED5E"
  4536. {
  4537. "Sequence" = "3:100"
  4538. "DisplayName" = "8:进度"
  4539. "UseDynamicProperties" = "11:TRUE"
  4540. "IsDependency" = "11:FALSE"
  4541. "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
  4542. "Properties"
  4543. {
  4544. "BannerBitmap"
  4545. {
  4546. "Name" = "8:BannerBitmap"
  4547. "DisplayName" = "8:#1001"
  4548. "Description" = "8:#1101"
  4549. "Type" = "3:8"
  4550. "ContextData" = "8:Bitmap"
  4551. "Attributes" = "3:4"
  4552. "Setting" = "3:1"
  4553. "UsePlugInResources" = "11:TRUE"
  4554. }
  4555. "ShowProgress"
  4556. {
  4557. "Name" = "8:ShowProgress"
  4558. "DisplayName" = "8:#1009"
  4559. "Description" = "8:#1109"
  4560. "Type" = "3:5"
  4561. "ContextData" = "8:1;True=1;False=0"
  4562. "Attributes" = "3:0"
  4563. "Setting" = "3:0"
  4564. "Value" = "3:1"
  4565. "DefaultValue" = "3:1"
  4566. "UsePlugInResources" = "11:TRUE"
  4567. }
  4568. }
  4569. }
  4570. }
  4571. }
  4572. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_489517DEC3534EFC9D0D18BED17D085C"
  4573. {
  4574. "Name" = "8:#1902"
  4575. "Sequence" = "3:1"
  4576. "Attributes" = "3:3"
  4577. "Dialogs"
  4578. {
  4579. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_49D153D616DD47FA8CB322D9AFB6D6AA"
  4580. {
  4581. "Sequence" = "3:100"
  4582. "DisplayName" = "8:已完成"
  4583. "UseDynamicProperties" = "11:TRUE"
  4584. "IsDependency" = "11:FALSE"
  4585. "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
  4586. "Properties"
  4587. {
  4588. "BannerBitmap"
  4589. {
  4590. "Name" = "8:BannerBitmap"
  4591. "DisplayName" = "8:#1001"
  4592. "Description" = "8:#1101"
  4593. "Type" = "3:8"
  4594. "ContextData" = "8:Bitmap"
  4595. "Attributes" = "3:4"
  4596. "Setting" = "3:1"
  4597. "UsePlugInResources" = "11:TRUE"
  4598. }
  4599. "UpdateText"
  4600. {
  4601. "Name" = "8:UpdateText"
  4602. "DisplayName" = "8:#1058"
  4603. "Description" = "8:#1158"
  4604. "Type" = "3:15"
  4605. "ContextData" = "8:"
  4606. "Attributes" = "3:0"
  4607. "Setting" = "3:1"
  4608. "Value" = "8:#1258"
  4609. "DefaultValue" = "8:#1258"
  4610. "UsePlugInResources" = "11:TRUE"
  4611. }
  4612. }
  4613. }
  4614. }
  4615. }
  4616. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_5CD7744DF2BF4D88B584C06F503E3C9A"
  4617. {
  4618. "Name" = "8:#1900"
  4619. "Sequence" = "3:1"
  4620. "Attributes" = "3:1"
  4621. "Dialogs"
  4622. {
  4623. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DB1BD0715BE347D18F71817222FC4F4F"
  4624. {
  4625. "Sequence" = "3:100"
  4626. "DisplayName" = "8:欢迎使用"
  4627. "UseDynamicProperties" = "11:TRUE"
  4628. "IsDependency" = "11:FALSE"
  4629. "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
  4630. "Properties"
  4631. {
  4632. "BannerBitmap"
  4633. {
  4634. "Name" = "8:BannerBitmap"
  4635. "DisplayName" = "8:#1001"
  4636. "Description" = "8:#1101"
  4637. "Type" = "3:8"
  4638. "ContextData" = "8:Bitmap"
  4639. "Attributes" = "3:4"
  4640. "Setting" = "3:1"
  4641. "UsePlugInResources" = "11:TRUE"
  4642. }
  4643. "CopyrightWarning"
  4644. {
  4645. "Name" = "8:CopyrightWarning"
  4646. "DisplayName" = "8:#1002"
  4647. "Description" = "8:#1102"
  4648. "Type" = "3:3"
  4649. "ContextData" = "8:"
  4650. "Attributes" = "3:0"
  4651. "Setting" = "3:1"
  4652. "Value" = "8:#1202"
  4653. "DefaultValue" = "8:#1202"
  4654. "UsePlugInResources" = "11:TRUE"
  4655. }
  4656. "Welcome"
  4657. {
  4658. "Name" = "8:Welcome"
  4659. "DisplayName" = "8:#1003"
  4660. "Description" = "8:#1103"
  4661. "Type" = "3:3"
  4662. "ContextData" = "8:"
  4663. "Attributes" = "3:0"
  4664. "Setting" = "3:1"
  4665. "Value" = "8:#1203"
  4666. "DefaultValue" = "8:#1203"
  4667. "UsePlugInResources" = "11:TRUE"
  4668. }
  4669. }
  4670. }
  4671. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F18575CB65E144A8BD981D95025FB51A"
  4672. {
  4673. "Sequence" = "3:200"
  4674. "DisplayName" = "8:安装文件夹"
  4675. "UseDynamicProperties" = "11:TRUE"
  4676. "IsDependency" = "11:FALSE"
  4677. "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
  4678. "Properties"
  4679. {
  4680. "BannerBitmap"
  4681. {
  4682. "Name" = "8:BannerBitmap"
  4683. "DisplayName" = "8:#1001"
  4684. "Description" = "8:#1101"
  4685. "Type" = "3:8"
  4686. "ContextData" = "8:Bitmap"
  4687. "Attributes" = "3:4"
  4688. "Setting" = "3:1"
  4689. "UsePlugInResources" = "11:TRUE"
  4690. }
  4691. "InstallAllUsersVisible"
  4692. {
  4693. "Name" = "8:InstallAllUsersVisible"
  4694. "DisplayName" = "8:#1059"
  4695. "Description" = "8:#1159"
  4696. "Type" = "3:5"
  4697. "ContextData" = "8:1;True=1;False=0"
  4698. "Attributes" = "3:0"
  4699. "Setting" = "3:0"
  4700. "Value" = "3:1"
  4701. "DefaultValue" = "3:1"
  4702. "UsePlugInResources" = "11:TRUE"
  4703. }
  4704. }
  4705. }
  4706. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FA68B46F632744ACAD552EFF95C63B66"
  4707. {
  4708. "Sequence" = "3:300"
  4709. "DisplayName" = "8:确认安装"
  4710. "UseDynamicProperties" = "11:TRUE"
  4711. "IsDependency" = "11:FALSE"
  4712. "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
  4713. "Properties"
  4714. {
  4715. "BannerBitmap"
  4716. {
  4717. "Name" = "8:BannerBitmap"
  4718. "DisplayName" = "8:#1001"
  4719. "Description" = "8:#1101"
  4720. "Type" = "3:8"
  4721. "ContextData" = "8:Bitmap"
  4722. "Attributes" = "3:4"
  4723. "Setting" = "3:1"
  4724. "UsePlugInResources" = "11:TRUE"
  4725. }
  4726. }
  4727. }
  4728. }
  4729. }
  4730. "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_AF47959E68634FCFBBB6E91C2071F173"
  4731. {
  4732. "UseDynamicProperties" = "11:FALSE"
  4733. "IsDependency" = "11:FALSE"
  4734. "SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
  4735. }
  4736. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B1F16EDCB15D4E0B88A2D8D508DE4F15"
  4737. {
  4738. "Name" = "8:#1901"
  4739. "Sequence" = "3:2"
  4740. "Attributes" = "3:2"
  4741. "Dialogs"
  4742. {
  4743. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F170F47DB1ED483AA05D3512A035C447"
  4744. {
  4745. "Sequence" = "3:100"
  4746. "DisplayName" = "8:进度"
  4747. "UseDynamicProperties" = "11:TRUE"
  4748. "IsDependency" = "11:FALSE"
  4749. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
  4750. "Properties"
  4751. {
  4752. "BannerBitmap"
  4753. {
  4754. "Name" = "8:BannerBitmap"
  4755. "DisplayName" = "8:#1001"
  4756. "Description" = "8:#1101"
  4757. "Type" = "3:8"
  4758. "ContextData" = "8:Bitmap"
  4759. "Attributes" = "3:4"
  4760. "Setting" = "3:1"
  4761. "UsePlugInResources" = "11:TRUE"
  4762. }
  4763. "ShowProgress"
  4764. {
  4765. "Name" = "8:ShowProgress"
  4766. "DisplayName" = "8:#1009"
  4767. "Description" = "8:#1109"
  4768. "Type" = "3:5"
  4769. "ContextData" = "8:1;True=1;False=0"
  4770. "Attributes" = "3:0"
  4771. "Setting" = "3:0"
  4772. "Value" = "3:1"
  4773. "DefaultValue" = "3:1"
  4774. "UsePlugInResources" = "11:TRUE"
  4775. }
  4776. }
  4777. }
  4778. }
  4779. }
  4780. "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_BC5F2096196643B49A10A1A1F4A16250"
  4781. {
  4782. "UseDynamicProperties" = "11:FALSE"
  4783. "IsDependency" = "11:FALSE"
  4784. "SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
  4785. }
  4786. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_CA6A6EF41FA843258232397F381DEAD3"
  4787. {
  4788. "Name" = "8:#1902"
  4789. "Sequence" = "3:2"
  4790. "Attributes" = "3:3"
  4791. "Dialogs"
  4792. {
  4793. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_73BDB32E6AB04F41814F5A9235F3A673"
  4794. {
  4795. "Sequence" = "3:100"
  4796. "DisplayName" = "8:已完成"
  4797. "UseDynamicProperties" = "11:TRUE"
  4798. "IsDependency" = "11:FALSE"
  4799. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
  4800. "Properties"
  4801. {
  4802. "BannerBitmap"
  4803. {
  4804. "Name" = "8:BannerBitmap"
  4805. "DisplayName" = "8:#1001"
  4806. "Description" = "8:#1101"
  4807. "Type" = "3:8"
  4808. "ContextData" = "8:Bitmap"
  4809. "Attributes" = "3:4"
  4810. "Setting" = "3:1"
  4811. "UsePlugInResources" = "11:TRUE"
  4812. }
  4813. }
  4814. }
  4815. }
  4816. }
  4817. }
  4818. "MergeModule"
  4819. {
  4820. }
  4821. "ProjectOutput"
  4822. {
  4823. "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C31FD8A2B4614875880CB7CF343E25D0"
  4824. {
  4825. "SourcePath" = "8:..\\DotNettyFrom\\obj\\Release\\DotNettyFrom.exe"
  4826. "TargetName" = "8:"
  4827. "Tag" = "8:"
  4828. "Folder" = "8:_86552D298AE6489E831C30A91D00EFBE"
  4829. "Condition" = "8:"
  4830. "Transitive" = "11:FALSE"
  4831. "Vital" = "11:TRUE"
  4832. "ReadOnly" = "11:FALSE"
  4833. "Hidden" = "11:FALSE"
  4834. "System" = "11:FALSE"
  4835. "Permanent" = "11:FALSE"
  4836. "SharedLegacy" = "11:FALSE"
  4837. "PackageAs" = "3:1"
  4838. "Register" = "3:1"
  4839. "Exclude" = "11:FALSE"
  4840. "IsDependency" = "11:FALSE"
  4841. "IsolateTo" = "8:"
  4842. "ProjectOutputGroupRegister" = "3:1"
  4843. "OutputConfiguration" = "8:"
  4844. "OutputGroupCanonicalName" = "8:Built"
  4845. "OutputProjectGuid" = "8:{2348CBA6-AD06-457D-9F0C-06BFB0F432CE}"
  4846. "ShowKeyOutput" = "11:TRUE"
  4847. "ExcludeFilters"
  4848. {
  4849. }
  4850. }
  4851. }
  4852. }
  4853. }