UserControl6.Designer.cs 240 KB

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