| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016 | namespace IMCS.UControl{    partial class UserControl6    {        /// <summary>         /// 必需的设计器变量。        /// </summary>        private System.ComponentModel.IContainer components = null;        /// <summary>         /// 清理所有正在使用的资源。        /// </summary>        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        /// <summary>         /// 设计器支持所需的方法 - 不要修改        /// 使用代码编辑器修改此方法的内容。        /// </summary>        private void InitializeComponent()        {            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList1 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList2 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList3 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList4 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList5 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList6 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList7 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList8 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList9 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList10 = new IMCS.DefaultList.DeviceStateDefaultList();            IMCS.DefaultList.DeviceStateDefaultList deviceStateDefaultList11 = new IMCS.DefaultList.DeviceStateDefaultList();            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();            this.label1 = new System.Windows.Forms.Label();            this.label2 = new System.Windows.Forms.Label();            this.label3 = new System.Windows.Forms.Label();            this.label4 = new System.Windows.Forms.Label();            this.label5 = new System.Windows.Forms.Label();            this.label6 = new System.Windows.Forms.Label();            this.label7 = new System.Windows.Forms.Label();            this.label8 = new System.Windows.Forms.Label();            this.label9 = new System.Windows.Forms.Label();            this.label10 = new System.Windows.Forms.Label();            this.label11 = new System.Windows.Forms.Label();            this.label12 = new System.Windows.Forms.Label();            this.label13 = new System.Windows.Forms.Label();            this.label14 = new System.Windows.Forms.Label();            this.label15 = new System.Windows.Forms.Label();            this.label16 = new System.Windows.Forms.Label();            this.label17 = new System.Windows.Forms.Label();            this.label18 = new System.Windows.Forms.Label();            this.label19 = new System.Windows.Forms.Label();            this.label20 = new System.Windows.Forms.Label();            this.label21 = new System.Windows.Forms.Label();            this.label22 = new System.Windows.Forms.Label();            this.label23 = new System.Windows.Forms.Label();            this.label24 = new System.Windows.Forms.Label();            this.label25 = new System.Windows.Forms.Label();            this.label26 = new System.Windows.Forms.Label();            this.label27 = new System.Windows.Forms.Label();            this.label28 = new System.Windows.Forms.Label();            this.label29 = new System.Windows.Forms.Label();            this.label30 = new System.Windows.Forms.Label();            this.label31 = new System.Windows.Forms.Label();            this.label33 = new System.Windows.Forms.Label();            this.label34 = new System.Windows.Forms.Label();            this.label35 = new System.Windows.Forms.Label();            this.label36 = new System.Windows.Forms.Label();            this.label37 = new System.Windows.Forms.Label();            this.label38 = new System.Windows.Forms.Label();            this.label39 = new System.Windows.Forms.Label();            this.label40 = new System.Windows.Forms.Label();            this.label41 = new System.Windows.Forms.Label();            this.label42 = new System.Windows.Forms.Label();            this.label43 = new System.Windows.Forms.Label();            this.label44 = new System.Windows.Forms.Label();            this.label45 = new System.Windows.Forms.Label();            this.label46 = new System.Windows.Forms.Label();            this.label47 = new System.Windows.Forms.Label();            this.label48 = new System.Windows.Forms.Label();            this.label49 = new System.Windows.Forms.Label();            this.label50 = new System.Windows.Forms.Label();            this.label51 = new System.Windows.Forms.Label();            this.label52 = new System.Windows.Forms.Label();            this.label53 = new System.Windows.Forms.Label();            this.label54 = new System.Windows.Forms.Label();            this.label55 = new System.Windows.Forms.Label();            this.label56 = new System.Windows.Forms.Label();            this.label57 = new System.Windows.Forms.Label();            this.label59 = new System.Windows.Forms.Label();            this.label60 = new System.Windows.Forms.Label();            this.label61 = new System.Windows.Forms.Label();            this.label62 = new System.Windows.Forms.Label();            this.label63 = new System.Windows.Forms.Label();            this.label64 = new System.Windows.Forms.Label();            this.label65 = new System.Windows.Forms.Label();            this.label66 = new System.Windows.Forms.Label();            this.label67 = new System.Windows.Forms.Label();            this.label68 = new System.Windows.Forms.Label();            this.label69 = new System.Windows.Forms.Label();            this.label70 = new System.Windows.Forms.Label();            this.label71 = new System.Windows.Forms.Label();            this.label72 = new System.Windows.Forms.Label();            this.label73 = new System.Windows.Forms.Label();            this.label74 = new System.Windows.Forms.Label();            this.label75 = new System.Windows.Forms.Label();            this.label76 = new System.Windows.Forms.Label();            this.label77 = new System.Windows.Forms.Label();            this.label78 = new System.Windows.Forms.Label();            this.label79 = new System.Windows.Forms.Label();            this.label80 = new System.Windows.Forms.Label();            this.label81 = new System.Windows.Forms.Label();            this.label82 = new System.Windows.Forms.Label();            this.label83 = new System.Windows.Forms.Label();            this.label85 = new System.Windows.Forms.Label();            this.label86 = new System.Windows.Forms.Label();            this.label87 = new System.Windows.Forms.Label();            this.label88 = new System.Windows.Forms.Label();            this.label89 = new System.Windows.Forms.Label();            this.label90 = new System.Windows.Forms.Label();            this.label91 = new System.Windows.Forms.Label();            this.label92 = new System.Windows.Forms.Label();            this.label93 = new System.Windows.Forms.Label();            this.label94 = new System.Windows.Forms.Label();            this.label95 = new System.Windows.Forms.Label();            this.label96 = new System.Windows.Forms.Label();            this.label97 = new System.Windows.Forms.Label();            this.label98 = new System.Windows.Forms.Label();            this.label99 = new System.Windows.Forms.Label();            this.label100 = new System.Windows.Forms.Label();            this.label101 = new System.Windows.Forms.Label();            this.label102 = new System.Windows.Forms.Label();            this.label103 = new System.Windows.Forms.Label();            this.label104 = new System.Windows.Forms.Label();            this.label105 = new System.Windows.Forms.Label();            this.label106 = new System.Windows.Forms.Label();            this.label107 = new System.Windows.Forms.Label();            this.label108 = new System.Windows.Forms.Label();            this.label109 = new System.Windows.Forms.Label();            this.label111 = new System.Windows.Forms.Label();            this.label112 = new System.Windows.Forms.Label();            this.label113 = new System.Windows.Forms.Label();            this.label114 = new System.Windows.Forms.Label();            this.label115 = new System.Windows.Forms.Label();            this.label116 = new System.Windows.Forms.Label();            this.label117 = new System.Windows.Forms.Label();            this.label118 = new System.Windows.Forms.Label();            this.label119 = new System.Windows.Forms.Label();            this.label120 = new System.Windows.Forms.Label();            this.label121 = new System.Windows.Forms.Label();            this.label122 = new System.Windows.Forms.Label();            this.label123 = new System.Windows.Forms.Label();            this.label124 = new System.Windows.Forms.Label();            this.label125 = new System.Windows.Forms.Label();            this.label126 = new System.Windows.Forms.Label();            this.label127 = new System.Windows.Forms.Label();            this.label128 = new System.Windows.Forms.Label();            this.label129 = new System.Windows.Forms.Label();            this.label130 = new System.Windows.Forms.Label();            this.label131 = new System.Windows.Forms.Label();            this.label132 = new System.Windows.Forms.Label();            this.label133 = new System.Windows.Forms.Label();            this.label134 = new System.Windows.Forms.Label();            this.label135 = new System.Windows.Forms.Label();            this.label137 = new System.Windows.Forms.Label();            this.label138 = new System.Windows.Forms.Label();            this.label139 = new System.Windows.Forms.Label();            this.label140 = new System.Windows.Forms.Label();            this.label141 = new System.Windows.Forms.Label();            this.label142 = new System.Windows.Forms.Label();            this.label143 = new System.Windows.Forms.Label();            this.label144 = new System.Windows.Forms.Label();            this.label145 = new System.Windows.Forms.Label();            this.label146 = new System.Windows.Forms.Label();            this.label147 = new System.Windows.Forms.Label();            this.label148 = new System.Windows.Forms.Label();            this.label149 = new System.Windows.Forms.Label();            this.label150 = new System.Windows.Forms.Label();            this.label151 = new System.Windows.Forms.Label();            this.label152 = new System.Windows.Forms.Label();            this.label153 = new System.Windows.Forms.Label();            this.label154 = new System.Windows.Forms.Label();            this.label155 = new System.Windows.Forms.Label();            this.label156 = new System.Windows.Forms.Label();            this.label157 = new System.Windows.Forms.Label();            this.label158 = new System.Windows.Forms.Label();            this.label159 = new System.Windows.Forms.Label();            this.label160 = new System.Windows.Forms.Label();            this.label161 = new System.Windows.Forms.Label();            this.panel1 = new System.Windows.Forms.Panel();            this.uctl_SiFu = new IMCS.Componen.Uctl_YJContro();            this.panel2 = new System.Windows.Forms.Panel();            this.uctl_AGV1 = new IMCS.Componen.Uctl_YJContro();            this.label32 = new System.Windows.Forms.Label();            this.label58 = new System.Windows.Forms.Label();            this.label84 = new System.Windows.Forms.Label();            this.label110 = new System.Windows.Forms.Label();            this.label136 = new System.Windows.Forms.Label();            this.label162 = new System.Windows.Forms.Label();            this.label193 = new System.Windows.Forms.Label();            this.label194 = new System.Windows.Forms.Label();            this.label195 = new System.Windows.Forms.Label();            this.label196 = new System.Windows.Forms.Label();            this.label197 = new System.Windows.Forms.Label();            this.label198 = new System.Windows.Forms.Label();            this.label199 = new System.Windows.Forms.Label();            this.label200 = new System.Windows.Forms.Label();            this.label201 = new System.Windows.Forms.Label();            this.label202 = new System.Windows.Forms.Label();            this.label203 = new System.Windows.Forms.Label();            this.label204 = new System.Windows.Forms.Label();            this.label205 = new System.Windows.Forms.Label();            this.label206 = new System.Windows.Forms.Label();            this.label207 = new System.Windows.Forms.Label();            this.label208 = new System.Windows.Forms.Label();            this.label209 = new System.Windows.Forms.Label();            this.label210 = new System.Windows.Forms.Label();            this.label211 = new System.Windows.Forms.Label();            this.label212 = new System.Windows.Forms.Label();            this.label213 = new System.Windows.Forms.Label();            this.label214 = new System.Windows.Forms.Label();            this.label215 = new System.Windows.Forms.Label();            this.label216 = new System.Windows.Forms.Label();            this.label217 = new System.Windows.Forms.Label();            this.label218 = new System.Windows.Forms.Label();            this.label219 = new System.Windows.Forms.Label();            this.label220 = new System.Windows.Forms.Label();            this.label221 = new System.Windows.Forms.Label();            this.label222 = new System.Windows.Forms.Label();            this.label223 = new System.Windows.Forms.Label();            this.label224 = new System.Windows.Forms.Label();            this.label225 = new System.Windows.Forms.Label();            this.label226 = new System.Windows.Forms.Label();            this.label227 = new System.Windows.Forms.Label();            this.label228 = new System.Windows.Forms.Label();            this.label229 = new System.Windows.Forms.Label();            this.label230 = new System.Windows.Forms.Label();            this.label231 = new System.Windows.Forms.Label();            this.label232 = new System.Windows.Forms.Label();            this.label233 = new System.Windows.Forms.Label();            this.label234 = new System.Windows.Forms.Label();            this.label235 = new System.Windows.Forms.Label();            this.label236 = new System.Windows.Forms.Label();            this.label237 = new System.Windows.Forms.Label();            this.label238 = new System.Windows.Forms.Label();            this.label239 = new System.Windows.Forms.Label();            this.label240 = new System.Windows.Forms.Label();            this.label241 = new System.Windows.Forms.Label();            this.label242 = new System.Windows.Forms.Label();            this.label243 = new System.Windows.Forms.Label();            this.label244 = new System.Windows.Forms.Label();            this.label245 = new System.Windows.Forms.Label();            this.label246 = new System.Windows.Forms.Label();            this.label248 = new System.Windows.Forms.Label();            this.label247 = new System.Windows.Forms.Label();            this.label249 = new System.Windows.Forms.Label();            this.label250 = new System.Windows.Forms.Label();            this.label251 = new System.Windows.Forms.Label();            this.label252 = new System.Windows.Forms.Label();            this.label253 = new System.Windows.Forms.Label();            this.label254 = new System.Windows.Forms.Label();            this.label255 = new System.Windows.Forms.Label();            this.label256 = new System.Windows.Forms.Label();            this.label257 = new System.Windows.Forms.Label();            this.label258 = new System.Windows.Forms.Label();            this.label259 = new System.Windows.Forms.Label();            this.label260 = new System.Windows.Forms.Label();            this.label261 = new System.Windows.Forms.Label();            this.label262 = new System.Windows.Forms.Label();            this.label265 = new System.Windows.Forms.Label();            this.label266 = new System.Windows.Forms.Label();            this.label267 = new System.Windows.Forms.Label();            this.label268 = new System.Windows.Forms.Label();            this.label269 = new System.Windows.Forms.Label();            this.label270 = new System.Windows.Forms.Label();            this.label271 = new System.Windows.Forms.Label();            this.label272 = new System.Windows.Forms.Label();            this.label273 = new System.Windows.Forms.Label();            this.label264 = new System.Windows.Forms.Label();            this.label263 = new System.Windows.Forms.Label();            this.label274 = new System.Windows.Forms.Label();            this.label275 = new System.Windows.Forms.Label();            this.label276 = new System.Windows.Forms.Label();            this.label277 = new System.Windows.Forms.Label();            this.label278 = new System.Windows.Forms.Label();            this.label279 = new System.Windows.Forms.Label();            this.label280 = new System.Windows.Forms.Label();            this.label281 = new System.Windows.Forms.Label();            this.label282 = new System.Windows.Forms.Label();            this.label283 = new System.Windows.Forms.Label();            this.label284 = new System.Windows.Forms.Label();            this.label285 = new System.Windows.Forms.Label();            this.label286 = new System.Windows.Forms.Label();            this.label287 = new System.Windows.Forms.Label();            this.label288 = new System.Windows.Forms.Label();            this.label289 = new System.Windows.Forms.Label();            this.label290 = new System.Windows.Forms.Label();            this.label291 = new System.Windows.Forms.Label();            this.label292 = new System.Windows.Forms.Label();            this.label293 = new System.Windows.Forms.Label();            this.label294 = new System.Windows.Forms.Label();            this.label295 = new System.Windows.Forms.Label();            this.label296 = new System.Windows.Forms.Label();            this.label297 = new System.Windows.Forms.Label();            this.label298 = new System.Windows.Forms.Label();            this.label299 = new System.Windows.Forms.Label();            this.label300 = new System.Windows.Forms.Label();            this.label301 = new System.Windows.Forms.Label();            this.label302 = new System.Windows.Forms.Label();            this.label303 = new System.Windows.Forms.Label();            this.label304 = new System.Windows.Forms.Label();            this.label305 = new System.Windows.Forms.Label();            this.label306 = new System.Windows.Forms.Label();            this.label307 = new System.Windows.Forms.Label();            this.label308 = new System.Windows.Forms.Label();            this.label309 = new System.Windows.Forms.Label();            this.label310 = new System.Windows.Forms.Label();            this.label311 = new System.Windows.Forms.Label();            this.label312 = new System.Windows.Forms.Label();            this.label313 = new System.Windows.Forms.Label();            this.label314 = new System.Windows.Forms.Label();            this.label315 = new System.Windows.Forms.Label();            this.label316 = new System.Windows.Forms.Label();            this.label317 = new System.Windows.Forms.Label();            this.label318 = new System.Windows.Forms.Label();            this.label319 = new System.Windows.Forms.Label();            this.label320 = new System.Windows.Forms.Label();            this.label321 = new System.Windows.Forms.Label();            this.label322 = new System.Windows.Forms.Label();            this.label323 = new System.Windows.Forms.Label();            this.label324 = new System.Windows.Forms.Label();            this.label325 = new System.Windows.Forms.Label();            this.label326 = new System.Windows.Forms.Label();            this.label327 = new System.Windows.Forms.Label();            this.label328 = new System.Windows.Forms.Label();            this.label329 = new System.Windows.Forms.Label();            this.label330 = new System.Windows.Forms.Label();            this.uctl_AGV2 = new IMCS.Componen.Uctl_YJContro();            this.label163 = new System.Windows.Forms.Label();            this.label173 = new System.Windows.Forms.Label();            this.label174 = new System.Windows.Forms.Label();            this.label184 = new System.Windows.Forms.Label();            this.label175 = new System.Windows.Forms.Label();            this.label164 = new System.Windows.Forms.Label();            this.label165 = new System.Windows.Forms.Label();            this.label176 = new System.Windows.Forms.Label();            this.label185 = new System.Windows.Forms.Label();            this.label166 = new System.Windows.Forms.Label();            this.label177 = new System.Windows.Forms.Label();            this.label186 = new System.Windows.Forms.Label();            this.label167 = new System.Windows.Forms.Label();            this.label178 = new System.Windows.Forms.Label();            this.label187 = new System.Windows.Forms.Label();            this.label168 = new System.Windows.Forms.Label();            this.label179 = new System.Windows.Forms.Label();            this.label188 = new System.Windows.Forms.Label();            this.label169 = new System.Windows.Forms.Label();            this.label180 = new System.Windows.Forms.Label();            this.label189 = new System.Windows.Forms.Label();            this.label170 = new System.Windows.Forms.Label();            this.label181 = new System.Windows.Forms.Label();            this.label190 = new System.Windows.Forms.Label();            this.label171 = new System.Windows.Forms.Label();            this.label182 = new System.Windows.Forms.Label();            this.label191 = new System.Windows.Forms.Label();            this.label172 = new System.Windows.Forms.Label();            this.label183 = new System.Windows.Forms.Label();            this.label192 = new System.Windows.Forms.Label();            this.uctl_SanZuoBiao = new IMCS.Componen.Uctl_YJContro();            this.uctl_DaBiaoJI = new IMCS.Componen.Uctl_YJContro();            this.uctl_ShangXiaZhan1 = new IMCS.Componen.Uctl_YJContro();            this.uctl_ShangXiaZhan2 = new IMCS.Componen.Uctl_YJContro();            this.uctl_ShangXiaZhan3 = new IMCS.Componen.Uctl_YJContro();            this.uctl_ShangXiaZhan4 = new IMCS.Componen.Uctl_YJContro();            this.uctl_ShangXiaZhan5 = new IMCS.Componen.Uctl_YJContro();            this.uctl_ShangXiaZhan6 = new IMCS.Componen.Uctl_YJContro();            this.tableLayoutPanel1.SuspendLayout();            this.panel1.SuspendLayout();            this.SuspendLayout();            //             // tableLayoutPanel1            //             this.tableLayoutPanel1.AutoScroll = true;            this.tableLayoutPanel1.ColumnCount = 32;            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 95F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));            this.tableLayoutPanel1.Controls.Add(this.label1, 1, 1);            this.tableLayoutPanel1.Controls.Add(this.label2, 1, 2);            this.tableLayoutPanel1.Controls.Add(this.label3, 1, 3);            this.tableLayoutPanel1.Controls.Add(this.label4, 1, 4);            this.tableLayoutPanel1.Controls.Add(this.label5, 1, 5);            this.tableLayoutPanel1.Controls.Add(this.label6, 1, 6);            this.tableLayoutPanel1.Controls.Add(this.label7, 2, 1);            this.tableLayoutPanel1.Controls.Add(this.label8, 3, 1);            this.tableLayoutPanel1.Controls.Add(this.label9, 4, 1);            this.tableLayoutPanel1.Controls.Add(this.label10, 5, 1);            this.tableLayoutPanel1.Controls.Add(this.label11, 6, 1);            this.tableLayoutPanel1.Controls.Add(this.label12, 7, 1);            this.tableLayoutPanel1.Controls.Add(this.label13, 8, 1);            this.tableLayoutPanel1.Controls.Add(this.label14, 9, 1);            this.tableLayoutPanel1.Controls.Add(this.label15, 10, 1);            this.tableLayoutPanel1.Controls.Add(this.label16, 11, 1);            this.tableLayoutPanel1.Controls.Add(this.label17, 12, 1);            this.tableLayoutPanel1.Controls.Add(this.label18, 13, 1);            this.tableLayoutPanel1.Controls.Add(this.label19, 14, 1);            this.tableLayoutPanel1.Controls.Add(this.label20, 15, 1);            this.tableLayoutPanel1.Controls.Add(this.label21, 16, 1);            this.tableLayoutPanel1.Controls.Add(this.label22, 17, 1);            this.tableLayoutPanel1.Controls.Add(this.label23, 18, 1);            this.tableLayoutPanel1.Controls.Add(this.label24, 19, 1);            this.tableLayoutPanel1.Controls.Add(this.label25, 20, 1);            this.tableLayoutPanel1.Controls.Add(this.label26, 21, 1);            this.tableLayoutPanel1.Controls.Add(this.label27, 22, 1);            this.tableLayoutPanel1.Controls.Add(this.label28, 23, 1);            this.tableLayoutPanel1.Controls.Add(this.label29, 24, 1);            this.tableLayoutPanel1.Controls.Add(this.label30, 25, 1);            this.tableLayoutPanel1.Controls.Add(this.label31, 26, 1);            this.tableLayoutPanel1.Controls.Add(this.label33, 2, 2);            this.tableLayoutPanel1.Controls.Add(this.label34, 3, 2);            this.tableLayoutPanel1.Controls.Add(this.label35, 4, 2);            this.tableLayoutPanel1.Controls.Add(this.label36, 5, 2);            this.tableLayoutPanel1.Controls.Add(this.label37, 6, 2);            this.tableLayoutPanel1.Controls.Add(this.label38, 7, 2);            this.tableLayoutPanel1.Controls.Add(this.label39, 8, 2);            this.tableLayoutPanel1.Controls.Add(this.label40, 9, 2);            this.tableLayoutPanel1.Controls.Add(this.label41, 10, 2);            this.tableLayoutPanel1.Controls.Add(this.label42, 11, 2);            this.tableLayoutPanel1.Controls.Add(this.label43, 12, 2);            this.tableLayoutPanel1.Controls.Add(this.label44, 13, 2);            this.tableLayoutPanel1.Controls.Add(this.label45, 14, 2);            this.tableLayoutPanel1.Controls.Add(this.label46, 15, 2);            this.tableLayoutPanel1.Controls.Add(this.label47, 16, 2);            this.tableLayoutPanel1.Controls.Add(this.label48, 17, 2);            this.tableLayoutPanel1.Controls.Add(this.label49, 18, 2);            this.tableLayoutPanel1.Controls.Add(this.label50, 19, 2);            this.tableLayoutPanel1.Controls.Add(this.label51, 20, 2);            this.tableLayoutPanel1.Controls.Add(this.label52, 21, 2);            this.tableLayoutPanel1.Controls.Add(this.label53, 22, 2);            this.tableLayoutPanel1.Controls.Add(this.label54, 23, 2);            this.tableLayoutPanel1.Controls.Add(this.label55, 24, 2);            this.tableLayoutPanel1.Controls.Add(this.label56, 25, 2);            this.tableLayoutPanel1.Controls.Add(this.label57, 26, 2);            this.tableLayoutPanel1.Controls.Add(this.label59, 2, 3);            this.tableLayoutPanel1.Controls.Add(this.label60, 3, 3);            this.tableLayoutPanel1.Controls.Add(this.label61, 4, 3);            this.tableLayoutPanel1.Controls.Add(this.label62, 5, 3);            this.tableLayoutPanel1.Controls.Add(this.label63, 6, 3);            this.tableLayoutPanel1.Controls.Add(this.label64, 7, 3);            this.tableLayoutPanel1.Controls.Add(this.label65, 8, 3);            this.tableLayoutPanel1.Controls.Add(this.label66, 9, 3);            this.tableLayoutPanel1.Controls.Add(this.label67, 10, 3);            this.tableLayoutPanel1.Controls.Add(this.label68, 11, 3);            this.tableLayoutPanel1.Controls.Add(this.label69, 12, 3);            this.tableLayoutPanel1.Controls.Add(this.label70, 13, 3);            this.tableLayoutPanel1.Controls.Add(this.label71, 14, 3);            this.tableLayoutPanel1.Controls.Add(this.label72, 15, 3);            this.tableLayoutPanel1.Controls.Add(this.label73, 16, 3);            this.tableLayoutPanel1.Controls.Add(this.label74, 17, 3);            this.tableLayoutPanel1.Controls.Add(this.label75, 18, 3);            this.tableLayoutPanel1.Controls.Add(this.label76, 19, 3);            this.tableLayoutPanel1.Controls.Add(this.label77, 20, 3);            this.tableLayoutPanel1.Controls.Add(this.label78, 21, 3);            this.tableLayoutPanel1.Controls.Add(this.label79, 22, 3);            this.tableLayoutPanel1.Controls.Add(this.label80, 23, 3);            this.tableLayoutPanel1.Controls.Add(this.label81, 24, 3);            this.tableLayoutPanel1.Controls.Add(this.label82, 25, 3);            this.tableLayoutPanel1.Controls.Add(this.label83, 26, 3);            this.tableLayoutPanel1.Controls.Add(this.label85, 2, 4);            this.tableLayoutPanel1.Controls.Add(this.label86, 3, 4);            this.tableLayoutPanel1.Controls.Add(this.label87, 4, 4);            this.tableLayoutPanel1.Controls.Add(this.label88, 5, 4);            this.tableLayoutPanel1.Controls.Add(this.label89, 6, 4);            this.tableLayoutPanel1.Controls.Add(this.label90, 7, 4);            this.tableLayoutPanel1.Controls.Add(this.label91, 8, 4);            this.tableLayoutPanel1.Controls.Add(this.label92, 9, 4);            this.tableLayoutPanel1.Controls.Add(this.label93, 10, 4);            this.tableLayoutPanel1.Controls.Add(this.label94, 11, 4);            this.tableLayoutPanel1.Controls.Add(this.label95, 12, 4);            this.tableLayoutPanel1.Controls.Add(this.label96, 13, 4);            this.tableLayoutPanel1.Controls.Add(this.label97, 14, 4);            this.tableLayoutPanel1.Controls.Add(this.label98, 15, 4);            this.tableLayoutPanel1.Controls.Add(this.label99, 16, 4);            this.tableLayoutPanel1.Controls.Add(this.label100, 17, 4);            this.tableLayoutPanel1.Controls.Add(this.label101, 18, 4);            this.tableLayoutPanel1.Controls.Add(this.label102, 19, 4);            this.tableLayoutPanel1.Controls.Add(this.label103, 20, 4);            this.tableLayoutPanel1.Controls.Add(this.label104, 21, 4);            this.tableLayoutPanel1.Controls.Add(this.label105, 22, 4);            this.tableLayoutPanel1.Controls.Add(this.label106, 23, 4);            this.tableLayoutPanel1.Controls.Add(this.label107, 24, 4);            this.tableLayoutPanel1.Controls.Add(this.label108, 25, 4);            this.tableLayoutPanel1.Controls.Add(this.label109, 26, 4);            this.tableLayoutPanel1.Controls.Add(this.label111, 2, 5);            this.tableLayoutPanel1.Controls.Add(this.label112, 3, 5);            this.tableLayoutPanel1.Controls.Add(this.label113, 4, 5);            this.tableLayoutPanel1.Controls.Add(this.label114, 5, 5);            this.tableLayoutPanel1.Controls.Add(this.label115, 6, 5);            this.tableLayoutPanel1.Controls.Add(this.label116, 7, 5);            this.tableLayoutPanel1.Controls.Add(this.label117, 8, 5);            this.tableLayoutPanel1.Controls.Add(this.label118, 9, 5);            this.tableLayoutPanel1.Controls.Add(this.label119, 10, 5);            this.tableLayoutPanel1.Controls.Add(this.label120, 11, 5);            this.tableLayoutPanel1.Controls.Add(this.label121, 12, 5);            this.tableLayoutPanel1.Controls.Add(this.label122, 13, 5);            this.tableLayoutPanel1.Controls.Add(this.label123, 14, 5);            this.tableLayoutPanel1.Controls.Add(this.label124, 15, 5);            this.tableLayoutPanel1.Controls.Add(this.label125, 16, 5);            this.tableLayoutPanel1.Controls.Add(this.label126, 17, 5);            this.tableLayoutPanel1.Controls.Add(this.label127, 18, 5);            this.tableLayoutPanel1.Controls.Add(this.label128, 19, 5);            this.tableLayoutPanel1.Controls.Add(this.label129, 20, 5);            this.tableLayoutPanel1.Controls.Add(this.label130, 21, 5);            this.tableLayoutPanel1.Controls.Add(this.label131, 22, 5);            this.tableLayoutPanel1.Controls.Add(this.label132, 23, 5);            this.tableLayoutPanel1.Controls.Add(this.label133, 24, 5);            this.tableLayoutPanel1.Controls.Add(this.label134, 25, 5);            this.tableLayoutPanel1.Controls.Add(this.label135, 26, 5);            this.tableLayoutPanel1.Controls.Add(this.label137, 2, 6);            this.tableLayoutPanel1.Controls.Add(this.label138, 3, 6);            this.tableLayoutPanel1.Controls.Add(this.label139, 4, 6);            this.tableLayoutPanel1.Controls.Add(this.label140, 5, 6);            this.tableLayoutPanel1.Controls.Add(this.label141, 6, 6);            this.tableLayoutPanel1.Controls.Add(this.label142, 7, 6);            this.tableLayoutPanel1.Controls.Add(this.label143, 8, 6);            this.tableLayoutPanel1.Controls.Add(this.label144, 9, 6);            this.tableLayoutPanel1.Controls.Add(this.label145, 10, 6);            this.tableLayoutPanel1.Controls.Add(this.label146, 11, 6);            this.tableLayoutPanel1.Controls.Add(this.label147, 12, 6);            this.tableLayoutPanel1.Controls.Add(this.label148, 13, 6);            this.tableLayoutPanel1.Controls.Add(this.label149, 14, 6);            this.tableLayoutPanel1.Controls.Add(this.label150, 15, 6);            this.tableLayoutPanel1.Controls.Add(this.label151, 16, 6);            this.tableLayoutPanel1.Controls.Add(this.label152, 17, 6);            this.tableLayoutPanel1.Controls.Add(this.label153, 18, 6);            this.tableLayoutPanel1.Controls.Add(this.label154, 19, 6);            this.tableLayoutPanel1.Controls.Add(this.label155, 20, 6);            this.tableLayoutPanel1.Controls.Add(this.label156, 21, 6);            this.tableLayoutPanel1.Controls.Add(this.label157, 22, 6);            this.tableLayoutPanel1.Controls.Add(this.label158, 23, 6);            this.tableLayoutPanel1.Controls.Add(this.label159, 24, 6);            this.tableLayoutPanel1.Controls.Add(this.label160, 25, 6);            this.tableLayoutPanel1.Controls.Add(this.label161, 26, 6);            this.tableLayoutPanel1.Controls.Add(this.panel1, 1, 12);            this.tableLayoutPanel1.Controls.Add(this.uctl_AGV1, 1, 18);            this.tableLayoutPanel1.Controls.Add(this.label32, 27, 1);            this.tableLayoutPanel1.Controls.Add(this.label58, 27, 2);            this.tableLayoutPanel1.Controls.Add(this.label84, 27, 3);            this.tableLayoutPanel1.Controls.Add(this.label110, 27, 4);            this.tableLayoutPanel1.Controls.Add(this.label136, 27, 5);            this.tableLayoutPanel1.Controls.Add(this.label162, 27, 6);            this.tableLayoutPanel1.Controls.Add(this.label193, 28, 1);            this.tableLayoutPanel1.Controls.Add(this.label194, 29, 1);            this.tableLayoutPanel1.Controls.Add(this.label195, 30, 1);            this.tableLayoutPanel1.Controls.Add(this.label196, 30, 2);            this.tableLayoutPanel1.Controls.Add(this.label197, 30, 3);            this.tableLayoutPanel1.Controls.Add(this.label198, 30, 4);            this.tableLayoutPanel1.Controls.Add(this.label199, 30, 5);            this.tableLayoutPanel1.Controls.Add(this.label200, 30, 6);            this.tableLayoutPanel1.Controls.Add(this.label201, 29, 6);            this.tableLayoutPanel1.Controls.Add(this.label202, 28, 6);            this.tableLayoutPanel1.Controls.Add(this.label203, 28, 5);            this.tableLayoutPanel1.Controls.Add(this.label204, 29, 5);            this.tableLayoutPanel1.Controls.Add(this.label205, 29, 4);            this.tableLayoutPanel1.Controls.Add(this.label206, 28, 4);            this.tableLayoutPanel1.Controls.Add(this.label207, 28, 3);            this.tableLayoutPanel1.Controls.Add(this.label208, 29, 3);            this.tableLayoutPanel1.Controls.Add(this.label209, 29, 2);            this.tableLayoutPanel1.Controls.Add(this.label210, 28, 2);            this.tableLayoutPanel1.Controls.Add(this.label211, 30, 7);            this.tableLayoutPanel1.Controls.Add(this.label212, 30, 8);            this.tableLayoutPanel1.Controls.Add(this.label213, 30, 9);            this.tableLayoutPanel1.Controls.Add(this.label214, 30, 10);            this.tableLayoutPanel1.Controls.Add(this.label215, 29, 10);            this.tableLayoutPanel1.Controls.Add(this.label216, 29, 9);            this.tableLayoutPanel1.Controls.Add(this.label217, 29, 8);            this.tableLayoutPanel1.Controls.Add(this.label218, 29, 7);            this.tableLayoutPanel1.Controls.Add(this.label219, 28, 7);            this.tableLayoutPanel1.Controls.Add(this.label220, 28, 8);            this.tableLayoutPanel1.Controls.Add(this.label221, 28, 9);            this.tableLayoutPanel1.Controls.Add(this.label222, 28, 10);            this.tableLayoutPanel1.Controls.Add(this.label223, 27, 10);            this.tableLayoutPanel1.Controls.Add(this.label224, 27, 9);            this.tableLayoutPanel1.Controls.Add(this.label225, 27, 8);            this.tableLayoutPanel1.Controls.Add(this.label226, 27, 7);            this.tableLayoutPanel1.Controls.Add(this.label227, 26, 7);            this.tableLayoutPanel1.Controls.Add(this.label228, 26, 8);            this.tableLayoutPanel1.Controls.Add(this.label229, 26, 9);            this.tableLayoutPanel1.Controls.Add(this.label230, 26, 10);            this.tableLayoutPanel1.Controls.Add(this.label231, 25, 10);            this.tableLayoutPanel1.Controls.Add(this.label232, 25, 9);            this.tableLayoutPanel1.Controls.Add(this.label233, 25, 8);            this.tableLayoutPanel1.Controls.Add(this.label234, 25, 7);            this.tableLayoutPanel1.Controls.Add(this.label235, 24, 7);            this.tableLayoutPanel1.Controls.Add(this.label236, 24, 8);            this.tableLayoutPanel1.Controls.Add(this.label237, 24, 9);            this.tableLayoutPanel1.Controls.Add(this.label238, 24, 10);            this.tableLayoutPanel1.Controls.Add(this.label239, 23, 10);            this.tableLayoutPanel1.Controls.Add(this.label240, 23, 9);            this.tableLayoutPanel1.Controls.Add(this.label241, 23, 8);            this.tableLayoutPanel1.Controls.Add(this.label242, 23, 7);            this.tableLayoutPanel1.Controls.Add(this.label243, 22, 7);            this.tableLayoutPanel1.Controls.Add(this.label244, 22, 8);            this.tableLayoutPanel1.Controls.Add(this.label245, 22, 9);            this.tableLayoutPanel1.Controls.Add(this.label246, 22, 10);            this.tableLayoutPanel1.Controls.Add(this.label248, 21, 9);            this.tableLayoutPanel1.Controls.Add(this.label247, 21, 10);            this.tableLayoutPanel1.Controls.Add(this.label249, 21, 8);            this.tableLayoutPanel1.Controls.Add(this.label250, 21, 7);            this.tableLayoutPanel1.Controls.Add(this.label251, 20, 7);            this.tableLayoutPanel1.Controls.Add(this.label252, 20, 8);            this.tableLayoutPanel1.Controls.Add(this.label253, 20, 9);            this.tableLayoutPanel1.Controls.Add(this.label254, 20, 10);            this.tableLayoutPanel1.Controls.Add(this.label255, 19, 10);            this.tableLayoutPanel1.Controls.Add(this.label256, 19, 9);            this.tableLayoutPanel1.Controls.Add(this.label257, 19, 8);            this.tableLayoutPanel1.Controls.Add(this.label258, 19, 7);            this.tableLayoutPanel1.Controls.Add(this.label259, 18, 7);            this.tableLayoutPanel1.Controls.Add(this.label260, 18, 8);            this.tableLayoutPanel1.Controls.Add(this.label261, 18, 9);            this.tableLayoutPanel1.Controls.Add(this.label262, 18, 10);            this.tableLayoutPanel1.Controls.Add(this.label265, 17, 10);            this.tableLayoutPanel1.Controls.Add(this.label266, 17, 9);            this.tableLayoutPanel1.Controls.Add(this.label267, 17, 8);            this.tableLayoutPanel1.Controls.Add(this.label268, 17, 7);            this.tableLayoutPanel1.Controls.Add(this.label269, 16, 7);            this.tableLayoutPanel1.Controls.Add(this.label270, 16, 8);            this.tableLayoutPanel1.Controls.Add(this.label271, 16, 9);            this.tableLayoutPanel1.Controls.Add(this.label272, 16, 10);            this.tableLayoutPanel1.Controls.Add(this.label273, 15, 10);            this.tableLayoutPanel1.Controls.Add(this.label264, 15, 9);            this.tableLayoutPanel1.Controls.Add(this.label263, 15, 8);            this.tableLayoutPanel1.Controls.Add(this.label274, 15, 7);            this.tableLayoutPanel1.Controls.Add(this.label275, 14, 7);            this.tableLayoutPanel1.Controls.Add(this.label276, 14, 8);            this.tableLayoutPanel1.Controls.Add(this.label277, 14, 9);            this.tableLayoutPanel1.Controls.Add(this.label278, 14, 10);            this.tableLayoutPanel1.Controls.Add(this.label279, 13, 10);            this.tableLayoutPanel1.Controls.Add(this.label280, 13, 9);            this.tableLayoutPanel1.Controls.Add(this.label281, 13, 8);            this.tableLayoutPanel1.Controls.Add(this.label282, 13, 7);            this.tableLayoutPanel1.Controls.Add(this.label283, 12, 7);            this.tableLayoutPanel1.Controls.Add(this.label284, 12, 8);            this.tableLayoutPanel1.Controls.Add(this.label285, 12, 9);            this.tableLayoutPanel1.Controls.Add(this.label286, 12, 10);            this.tableLayoutPanel1.Controls.Add(this.label287, 11, 10);            this.tableLayoutPanel1.Controls.Add(this.label288, 11, 9);            this.tableLayoutPanel1.Controls.Add(this.label289, 11, 8);            this.tableLayoutPanel1.Controls.Add(this.label290, 11, 7);            this.tableLayoutPanel1.Controls.Add(this.label291, 10, 7);            this.tableLayoutPanel1.Controls.Add(this.label292, 10, 8);            this.tableLayoutPanel1.Controls.Add(this.label293, 10, 9);            this.tableLayoutPanel1.Controls.Add(this.label294, 10, 10);            this.tableLayoutPanel1.Controls.Add(this.label295, 9, 10);            this.tableLayoutPanel1.Controls.Add(this.label296, 9, 9);            this.tableLayoutPanel1.Controls.Add(this.label297, 9, 8);            this.tableLayoutPanel1.Controls.Add(this.label298, 9, 7);            this.tableLayoutPanel1.Controls.Add(this.label299, 8, 7);            this.tableLayoutPanel1.Controls.Add(this.label300, 8, 8);            this.tableLayoutPanel1.Controls.Add(this.label301, 8, 9);            this.tableLayoutPanel1.Controls.Add(this.label302, 8, 10);            this.tableLayoutPanel1.Controls.Add(this.label303, 7, 10);            this.tableLayoutPanel1.Controls.Add(this.label304, 7, 9);            this.tableLayoutPanel1.Controls.Add(this.label305, 7, 8);            this.tableLayoutPanel1.Controls.Add(this.label306, 7, 7);            this.tableLayoutPanel1.Controls.Add(this.label307, 6, 7);            this.tableLayoutPanel1.Controls.Add(this.label308, 6, 8);            this.tableLayoutPanel1.Controls.Add(this.label309, 6, 9);            this.tableLayoutPanel1.Controls.Add(this.label310, 6, 10);            this.tableLayoutPanel1.Controls.Add(this.label311, 5, 10);            this.tableLayoutPanel1.Controls.Add(this.label312, 5, 9);            this.tableLayoutPanel1.Controls.Add(this.label313, 5, 8);            this.tableLayoutPanel1.Controls.Add(this.label314, 5, 7);            this.tableLayoutPanel1.Controls.Add(this.label315, 4, 7);            this.tableLayoutPanel1.Controls.Add(this.label316, 4, 8);            this.tableLayoutPanel1.Controls.Add(this.label317, 4, 9);            this.tableLayoutPanel1.Controls.Add(this.label318, 4, 10);            this.tableLayoutPanel1.Controls.Add(this.label319, 3, 10);            this.tableLayoutPanel1.Controls.Add(this.label320, 3, 9);            this.tableLayoutPanel1.Controls.Add(this.label321, 3, 8);            this.tableLayoutPanel1.Controls.Add(this.label322, 3, 7);            this.tableLayoutPanel1.Controls.Add(this.label323, 2, 7);            this.tableLayoutPanel1.Controls.Add(this.label324, 2, 8);            this.tableLayoutPanel1.Controls.Add(this.label325, 2, 9);            this.tableLayoutPanel1.Controls.Add(this.label326, 2, 10);            this.tableLayoutPanel1.Controls.Add(this.label327, 1, 10);            this.tableLayoutPanel1.Controls.Add(this.label328, 1, 9);            this.tableLayoutPanel1.Controls.Add(this.label329, 1, 8);            this.tableLayoutPanel1.Controls.Add(this.label330, 1, 7);            this.tableLayoutPanel1.Controls.Add(this.uctl_AGV2, 3, 18);            this.tableLayoutPanel1.Controls.Add(this.label163, 5, 18);            this.tableLayoutPanel1.Controls.Add(this.label173, 5, 19);            this.tableLayoutPanel1.Controls.Add(this.label174, 5, 20);            this.tableLayoutPanel1.Controls.Add(this.label184, 6, 20);            this.tableLayoutPanel1.Controls.Add(this.label175, 6, 19);            this.tableLayoutPanel1.Controls.Add(this.label164, 6, 18);            this.tableLayoutPanel1.Controls.Add(this.label165, 7, 18);            this.tableLayoutPanel1.Controls.Add(this.label176, 7, 19);            this.tableLayoutPanel1.Controls.Add(this.label185, 7, 20);            this.tableLayoutPanel1.Controls.Add(this.label166, 8, 18);            this.tableLayoutPanel1.Controls.Add(this.label177, 8, 19);            this.tableLayoutPanel1.Controls.Add(this.label186, 8, 20);            this.tableLayoutPanel1.Controls.Add(this.label167, 9, 18);            this.tableLayoutPanel1.Controls.Add(this.label178, 9, 19);            this.tableLayoutPanel1.Controls.Add(this.label187, 9, 20);            this.tableLayoutPanel1.Controls.Add(this.label168, 10, 18);            this.tableLayoutPanel1.Controls.Add(this.label179, 10, 19);            this.tableLayoutPanel1.Controls.Add(this.label188, 10, 20);            this.tableLayoutPanel1.Controls.Add(this.label169, 11, 18);            this.tableLayoutPanel1.Controls.Add(this.label180, 11, 19);            this.tableLayoutPanel1.Controls.Add(this.label189, 11, 20);            this.tableLayoutPanel1.Controls.Add(this.label170, 12, 18);            this.tableLayoutPanel1.Controls.Add(this.label181, 12, 19);            this.tableLayoutPanel1.Controls.Add(this.label190, 12, 20);            this.tableLayoutPanel1.Controls.Add(this.label171, 13, 18);            this.tableLayoutPanel1.Controls.Add(this.label182, 13, 19);            this.tableLayoutPanel1.Controls.Add(this.label191, 13, 20);            this.tableLayoutPanel1.Controls.Add(this.label172, 14, 18);            this.tableLayoutPanel1.Controls.Add(this.label183, 14, 19);            this.tableLayoutPanel1.Controls.Add(this.label192, 14, 20);            this.tableLayoutPanel1.Controls.Add(this.uctl_SanZuoBiao, 15, 18);            this.tableLayoutPanel1.Controls.Add(this.uctl_DaBiaoJI, 17, 18);            this.tableLayoutPanel1.Controls.Add(this.uctl_ShangXiaZhan1, 19, 18);            this.tableLayoutPanel1.Controls.Add(this.uctl_ShangXiaZhan2, 21, 18);            this.tableLayoutPanel1.Controls.Add(this.uctl_ShangXiaZhan3, 23, 18);            this.tableLayoutPanel1.Controls.Add(this.uctl_ShangXiaZhan4, 25, 18);            this.tableLayoutPanel1.Controls.Add(this.uctl_ShangXiaZhan5, 27, 18);            this.tableLayoutPanel1.Controls.Add(this.uctl_ShangXiaZhan6, 29, 18);            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);            this.tableLayoutPanel1.Name = "tableLayoutPanel1";            this.tableLayoutPanel1.RowCount = 24;            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));            this.tableLayoutPanel1.Size = new System.Drawing.Size(2929, 1039);            this.tableLayoutPanel1.TabIndex = 0;            //             // label1            //             this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label1.AutoSize = true;            this.label1.Location = new System.Drawing.Point(79, 91);            this.label1.Name = "label1";            this.label1.Size = new System.Drawing.Size(15, 15);            this.label1.TabIndex = 0;            this.label1.Tag = "1";            this.label1.Text = "1";            //             // label2            //             this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label2.AutoSize = true;            this.label2.Location = new System.Drawing.Point(79, 131);            this.label2.Name = "label2";            this.label2.Size = new System.Drawing.Size(15, 15);            this.label2.TabIndex = 0;            this.label2.Tag = "2";            this.label2.Text = "2";            //             // label3            //             this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label3.AutoSize = true;            this.label3.Location = new System.Drawing.Point(79, 171);            this.label3.Name = "label3";            this.label3.Size = new System.Drawing.Size(15, 15);            this.label3.TabIndex = 0;            this.label3.Tag = "3";            this.label3.Text = "3";            //             // label4            //             this.label4.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label4.AutoSize = true;            this.label4.Location = new System.Drawing.Point(79, 211);            this.label4.Name = "label4";            this.label4.Size = new System.Drawing.Size(15, 15);            this.label4.TabIndex = 0;            this.label4.Tag = "4";            this.label4.Text = "4";            //             // label5            //             this.label5.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label5.AutoSize = true;            this.label5.Location = new System.Drawing.Point(79, 251);            this.label5.Name = "label5";            this.label5.Size = new System.Drawing.Size(15, 15);            this.label5.TabIndex = 0;            this.label5.Tag = "5";            this.label5.Text = "5";            //             // label6            //             this.label6.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label6.AutoSize = true;            this.label6.Location = new System.Drawing.Point(79, 291);            this.label6.Name = "label6";            this.label6.Size = new System.Drawing.Size(15, 15);            this.label6.TabIndex = 0;            this.label6.Tag = "6";            this.label6.Text = "6";            //             // label7            //             this.label7.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label7.AutoSize = true;            this.label7.Location = new System.Drawing.Point(174, 91);            this.label7.Name = "label7";            this.label7.Size = new System.Drawing.Size(15, 15);            this.label7.TabIndex = 0;            this.label7.Tag = "11";            this.label7.Text = "7";            //             // label8            //             this.label8.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label8.AutoSize = true;            this.label8.Location = new System.Drawing.Point(265, 91);            this.label8.Name = "label8";            this.label8.Size = new System.Drawing.Size(23, 15);            this.label8.TabIndex = 0;            this.label8.Tag = "21";            this.label8.Text = "13";            //             // label9            //             this.label9.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label9.AutoSize = true;            this.label9.Location = new System.Drawing.Point(360, 91);            this.label9.Name = "label9";            this.label9.Size = new System.Drawing.Size(23, 15);            this.label9.TabIndex = 0;            this.label9.Tag = "31";            this.label9.Text = "19";            //             // label10            //             this.label10.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label10.AutoSize = true;            this.label10.Location = new System.Drawing.Point(455, 91);            this.label10.Name = "label10";            this.label10.Size = new System.Drawing.Size(23, 15);            this.label10.TabIndex = 0;            this.label10.Tag = "41";            this.label10.Text = "25";            //             // label11            //             this.label11.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label11.AutoSize = true;            this.label11.Location = new System.Drawing.Point(550, 91);            this.label11.Name = "label11";            this.label11.Size = new System.Drawing.Size(23, 15);            this.label11.TabIndex = 0;            this.label11.Tag = "51";            this.label11.Text = "31";            //             // label12            //             this.label12.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label12.AutoSize = true;            this.label12.Location = new System.Drawing.Point(645, 91);            this.label12.Name = "label12";            this.label12.Size = new System.Drawing.Size(23, 15);            this.label12.TabIndex = 0;            this.label12.Tag = "61";            this.label12.Text = "37";            //             // label13            //             this.label13.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label13.AutoSize = true;            this.label13.Location = new System.Drawing.Point(740, 91);            this.label13.Name = "label13";            this.label13.Size = new System.Drawing.Size(23, 15);            this.label13.TabIndex = 0;            this.label13.Tag = "71";            this.label13.Text = "43";            //             // label14            //             this.label14.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label14.AutoSize = true;            this.label14.Location = new System.Drawing.Point(835, 91);            this.label14.Name = "label14";            this.label14.Size = new System.Drawing.Size(23, 15);            this.label14.TabIndex = 0;            this.label14.Tag = "81";            this.label14.Text = "49";            //             // label15            //             this.label15.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label15.AutoSize = true;            this.label15.Location = new System.Drawing.Point(930, 91);            this.label15.Name = "label15";            this.label15.Size = new System.Drawing.Size(23, 15);            this.label15.TabIndex = 0;            this.label15.Tag = "91";            this.label15.Text = "55";            //             // label16            //             this.label16.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label16.AutoSize = true;            this.label16.Location = new System.Drawing.Point(1025, 91);            this.label16.Name = "label16";            this.label16.Size = new System.Drawing.Size(23, 15);            this.label16.TabIndex = 0;            this.label16.Tag = "101";            this.label16.Text = "61";            //             // label17            //             this.label17.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label17.AutoSize = true;            this.label17.Location = new System.Drawing.Point(1120, 91);            this.label17.Name = "label17";            this.label17.Size = new System.Drawing.Size(23, 15);            this.label17.TabIndex = 0;            this.label17.Tag = "111";            this.label17.Text = "67";            //             // label18            //             this.label18.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label18.AutoSize = true;            this.label18.Location = new System.Drawing.Point(1215, 91);            this.label18.Name = "label18";            this.label18.Size = new System.Drawing.Size(23, 15);            this.label18.TabIndex = 0;            this.label18.Tag = "121";            this.label18.Text = "73";            //             // label19            //             this.label19.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label19.AutoSize = true;            this.label19.Location = new System.Drawing.Point(1310, 91);            this.label19.Name = "label19";            this.label19.Size = new System.Drawing.Size(23, 15);            this.label19.TabIndex = 0;            this.label19.Tag = "131";            this.label19.Text = "79";            //             // label20            //             this.label20.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label20.AutoSize = true;            this.label20.Location = new System.Drawing.Point(1405, 91);            this.label20.Name = "label20";            this.label20.Size = new System.Drawing.Size(23, 15);            this.label20.TabIndex = 0;            this.label20.Tag = "141";            this.label20.Text = "85";            //             // label21            //             this.label21.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label21.AutoSize = true;            this.label21.Location = new System.Drawing.Point(1500, 91);            this.label21.Name = "label21";            this.label21.Size = new System.Drawing.Size(23, 15);            this.label21.TabIndex = 0;            this.label21.Tag = "151";            this.label21.Text = "91";            //             // label22            //             this.label22.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label22.AutoSize = true;            this.label22.Location = new System.Drawing.Point(1595, 91);            this.label22.Name = "label22";            this.label22.Size = new System.Drawing.Size(23, 15);            this.label22.TabIndex = 0;            this.label22.Tag = "161";            this.label22.Text = "97";            //             // label23            //             this.label23.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label23.AutoSize = true;            this.label23.Location = new System.Drawing.Point(1686, 91);            this.label23.Name = "label23";            this.label23.Size = new System.Drawing.Size(31, 15);            this.label23.TabIndex = 0;            this.label23.Tag = "171";            this.label23.Text = "103";            //             // label24            //             this.label24.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label24.AutoSize = true;            this.label24.Location = new System.Drawing.Point(1781, 91);            this.label24.Name = "label24";            this.label24.Size = new System.Drawing.Size(31, 15);            this.label24.TabIndex = 0;            this.label24.Tag = "181";            this.label24.Text = "109";            //             // label25            //             this.label25.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label25.AutoSize = true;            this.label25.Location = new System.Drawing.Point(1876, 91);            this.label25.Name = "label25";            this.label25.Size = new System.Drawing.Size(31, 15);            this.label25.TabIndex = 0;            this.label25.Tag = "191";            this.label25.Text = "115";            //             // label26            //             this.label26.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label26.AutoSize = true;            this.label26.Location = new System.Drawing.Point(1971, 91);            this.label26.Name = "label26";            this.label26.Size = new System.Drawing.Size(31, 15);            this.label26.TabIndex = 0;            this.label26.Tag = "201";            this.label26.Text = "121";            //             // label27            //             this.label27.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label27.AutoSize = true;            this.label27.Location = new System.Drawing.Point(2066, 91);            this.label27.Name = "label27";            this.label27.Size = new System.Drawing.Size(31, 15);            this.label27.TabIndex = 0;            this.label27.Tag = "211";            this.label27.Text = "127";            //             // label28            //             this.label28.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label28.AutoSize = true;            this.label28.Location = new System.Drawing.Point(2161, 91);            this.label28.Name = "label28";            this.label28.Size = new System.Drawing.Size(31, 15);            this.label28.TabIndex = 0;            this.label28.Tag = "221";            this.label28.Text = "133";            //             // label29            //             this.label29.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label29.AutoSize = true;            this.label29.Location = new System.Drawing.Point(2256, 91);            this.label29.Name = "label29";            this.label29.Size = new System.Drawing.Size(31, 15);            this.label29.TabIndex = 0;            this.label29.Tag = "231";            this.label29.Text = "139";            //             // label30            //             this.label30.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label30.AutoSize = true;            this.label30.Location = new System.Drawing.Point(2351, 91);            this.label30.Name = "label30";            this.label30.Size = new System.Drawing.Size(31, 15);            this.label30.TabIndex = 0;            this.label30.Tag = "241";            this.label30.Text = "145";            //             // label31            //             this.label31.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label31.AutoSize = true;            this.label31.Location = new System.Drawing.Point(2446, 91);            this.label31.Name = "label31";            this.label31.Size = new System.Drawing.Size(31, 15);            this.label31.TabIndex = 0;            this.label31.Tag = "251";            this.label31.Text = "151";            //             // label33            //             this.label33.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label33.AutoSize = true;            this.label33.Location = new System.Drawing.Point(174, 131);            this.label33.Name = "label33";            this.label33.Size = new System.Drawing.Size(15, 15);            this.label33.TabIndex = 0;            this.label33.Tag = "12";            this.label33.Text = "8";            //             // label34            //             this.label34.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label34.AutoSize = true;            this.label34.Location = new System.Drawing.Point(265, 131);            this.label34.Name = "label34";            this.label34.Size = new System.Drawing.Size(23, 15);            this.label34.TabIndex = 0;            this.label34.Tag = "22";            this.label34.Text = "14";            //             // label35            //             this.label35.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label35.AutoSize = true;            this.label35.Location = new System.Drawing.Point(360, 131);            this.label35.Name = "label35";            this.label35.Size = new System.Drawing.Size(23, 15);            this.label35.TabIndex = 0;            this.label35.Tag = "32";            this.label35.Text = "20";            //             // label36            //             this.label36.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label36.AutoSize = true;            this.label36.Location = new System.Drawing.Point(455, 131);            this.label36.Name = "label36";            this.label36.Size = new System.Drawing.Size(23, 15);            this.label36.TabIndex = 0;            this.label36.Tag = "42";            this.label36.Text = "26";            //             // label37            //             this.label37.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label37.AutoSize = true;            this.label37.Location = new System.Drawing.Point(550, 131);            this.label37.Name = "label37";            this.label37.Size = new System.Drawing.Size(23, 15);            this.label37.TabIndex = 0;            this.label37.Tag = "52";            this.label37.Text = "32";            //             // label38            //             this.label38.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label38.AutoSize = true;            this.label38.Location = new System.Drawing.Point(645, 131);            this.label38.Name = "label38";            this.label38.Size = new System.Drawing.Size(23, 15);            this.label38.TabIndex = 0;            this.label38.Tag = "62";            this.label38.Text = "38";            //             // label39            //             this.label39.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label39.AutoSize = true;            this.label39.Location = new System.Drawing.Point(740, 131);            this.label39.Name = "label39";            this.label39.Size = new System.Drawing.Size(23, 15);            this.label39.TabIndex = 0;            this.label39.Tag = "72";            this.label39.Text = "44";            //             // label40            //             this.label40.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label40.AutoSize = true;            this.label40.Location = new System.Drawing.Point(835, 131);            this.label40.Name = "label40";            this.label40.Size = new System.Drawing.Size(23, 15);            this.label40.TabIndex = 0;            this.label40.Tag = "82";            this.label40.Text = "50";            //             // label41            //             this.label41.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label41.AutoSize = true;            this.label41.Location = new System.Drawing.Point(930, 131);            this.label41.Name = "label41";            this.label41.Size = new System.Drawing.Size(23, 15);            this.label41.TabIndex = 0;            this.label41.Tag = "92";            this.label41.Text = "56";            //             // label42            //             this.label42.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label42.AutoSize = true;            this.label42.Location = new System.Drawing.Point(1025, 131);            this.label42.Name = "label42";            this.label42.Size = new System.Drawing.Size(23, 15);            this.label42.TabIndex = 0;            this.label42.Tag = "102";            this.label42.Text = "62";            //             // label43            //             this.label43.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label43.AutoSize = true;            this.label43.Location = new System.Drawing.Point(1120, 131);            this.label43.Name = "label43";            this.label43.Size = new System.Drawing.Size(23, 15);            this.label43.TabIndex = 0;            this.label43.Tag = "112";            this.label43.Text = "68";            //             // label44            //             this.label44.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label44.AutoSize = true;            this.label44.Location = new System.Drawing.Point(1215, 131);            this.label44.Name = "label44";            this.label44.Size = new System.Drawing.Size(23, 15);            this.label44.TabIndex = 0;            this.label44.Tag = "122";            this.label44.Text = "74";            //             // label45            //             this.label45.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label45.AutoSize = true;            this.label45.Location = new System.Drawing.Point(1310, 131);            this.label45.Name = "label45";            this.label45.Size = new System.Drawing.Size(23, 15);            this.label45.TabIndex = 0;            this.label45.Tag = "132";            this.label45.Text = "80";            //             // label46            //             this.label46.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label46.AutoSize = true;            this.label46.Location = new System.Drawing.Point(1405, 131);            this.label46.Name = "label46";            this.label46.Size = new System.Drawing.Size(23, 15);            this.label46.TabIndex = 0;            this.label46.Tag = "142";            this.label46.Text = "86";            //             // label47            //             this.label47.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label47.AutoSize = true;            this.label47.Location = new System.Drawing.Point(1500, 131);            this.label47.Name = "label47";            this.label47.Size = new System.Drawing.Size(23, 15);            this.label47.TabIndex = 0;            this.label47.Tag = "152";            this.label47.Text = "92";            //             // label48            //             this.label48.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label48.AutoSize = true;            this.label48.Location = new System.Drawing.Point(1595, 131);            this.label48.Name = "label48";            this.label48.Size = new System.Drawing.Size(23, 15);            this.label48.TabIndex = 0;            this.label48.Tag = "162";            this.label48.Text = "98";            //             // label49            //             this.label49.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label49.AutoSize = true;            this.label49.Location = new System.Drawing.Point(1686, 131);            this.label49.Name = "label49";            this.label49.Size = new System.Drawing.Size(31, 15);            this.label49.TabIndex = 0;            this.label49.Tag = "172";            this.label49.Text = "104";            //             // label50            //             this.label50.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label50.AutoSize = true;            this.label50.Location = new System.Drawing.Point(1781, 131);            this.label50.Name = "label50";            this.label50.Size = new System.Drawing.Size(31, 15);            this.label50.TabIndex = 0;            this.label50.Tag = "182";            this.label50.Text = "110";            //             // label51            //             this.label51.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label51.AutoSize = true;            this.label51.Location = new System.Drawing.Point(1876, 131);            this.label51.Name = "label51";            this.label51.Size = new System.Drawing.Size(31, 15);            this.label51.TabIndex = 0;            this.label51.Tag = "192";            this.label51.Text = "116";            //             // label52            //             this.label52.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label52.AutoSize = true;            this.label52.Location = new System.Drawing.Point(1971, 131);            this.label52.Name = "label52";            this.label52.Size = new System.Drawing.Size(31, 15);            this.label52.TabIndex = 0;            this.label52.Tag = "202";            this.label52.Text = "122";            //             // label53            //             this.label53.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label53.AutoSize = true;            this.label53.Location = new System.Drawing.Point(2066, 131);            this.label53.Name = "label53";            this.label53.Size = new System.Drawing.Size(31, 15);            this.label53.TabIndex = 0;            this.label53.Tag = "212";            this.label53.Text = "128";            //             // label54            //             this.label54.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label54.AutoSize = true;            this.label54.Location = new System.Drawing.Point(2161, 131);            this.label54.Name = "label54";            this.label54.Size = new System.Drawing.Size(31, 15);            this.label54.TabIndex = 0;            this.label54.Tag = "222";            this.label54.Text = "134";            //             // label55            //             this.label55.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label55.AutoSize = true;            this.label55.Location = new System.Drawing.Point(2256, 131);            this.label55.Name = "label55";            this.label55.Size = new System.Drawing.Size(31, 15);            this.label55.TabIndex = 0;            this.label55.Tag = "232";            this.label55.Text = "140";            //             // label56            //             this.label56.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label56.AutoSize = true;            this.label56.Location = new System.Drawing.Point(2351, 131);            this.label56.Name = "label56";            this.label56.Size = new System.Drawing.Size(31, 15);            this.label56.TabIndex = 0;            this.label56.Tag = "242";            this.label56.Text = "146";            //             // label57            //             this.label57.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label57.AutoSize = true;            this.label57.Location = new System.Drawing.Point(2446, 131);            this.label57.Name = "label57";            this.label57.Size = new System.Drawing.Size(31, 15);            this.label57.TabIndex = 0;            this.label57.Tag = "252";            this.label57.Text = "152";            //             // label59            //             this.label59.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label59.AutoSize = true;            this.label59.Location = new System.Drawing.Point(174, 171);            this.label59.Name = "label59";            this.label59.Size = new System.Drawing.Size(15, 15);            this.label59.TabIndex = 0;            this.label59.Tag = "13";            this.label59.Text = "9";            //             // label60            //             this.label60.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label60.AutoSize = true;            this.label60.Location = new System.Drawing.Point(265, 171);            this.label60.Name = "label60";            this.label60.Size = new System.Drawing.Size(23, 15);            this.label60.TabIndex = 0;            this.label60.Tag = "23";            this.label60.Text = "15";            //             // label61            //             this.label61.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label61.AutoSize = true;            this.label61.Location = new System.Drawing.Point(360, 171);            this.label61.Name = "label61";            this.label61.Size = new System.Drawing.Size(23, 15);            this.label61.TabIndex = 0;            this.label61.Tag = "33";            this.label61.Text = "21";            //             // label62            //             this.label62.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label62.AutoSize = true;            this.label62.Location = new System.Drawing.Point(455, 171);            this.label62.Name = "label62";            this.label62.Size = new System.Drawing.Size(23, 15);            this.label62.TabIndex = 0;            this.label62.Tag = "43";            this.label62.Text = "27";            //             // label63            //             this.label63.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label63.AutoSize = true;            this.label63.Location = new System.Drawing.Point(550, 171);            this.label63.Name = "label63";            this.label63.Size = new System.Drawing.Size(23, 15);            this.label63.TabIndex = 0;            this.label63.Tag = "53";            this.label63.Text = "33";            //             // label64            //             this.label64.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label64.AutoSize = true;            this.label64.Location = new System.Drawing.Point(645, 171);            this.label64.Name = "label64";            this.label64.Size = new System.Drawing.Size(23, 15);            this.label64.TabIndex = 0;            this.label64.Tag = "63";            this.label64.Text = "39";            //             // label65            //             this.label65.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label65.AutoSize = true;            this.label65.Location = new System.Drawing.Point(740, 171);            this.label65.Name = "label65";            this.label65.Size = new System.Drawing.Size(23, 15);            this.label65.TabIndex = 0;            this.label65.Tag = "73";            this.label65.Text = "45";            //             // label66            //             this.label66.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label66.AutoSize = true;            this.label66.Location = new System.Drawing.Point(835, 171);            this.label66.Name = "label66";            this.label66.Size = new System.Drawing.Size(23, 15);            this.label66.TabIndex = 0;            this.label66.Tag = "83";            this.label66.Text = "51";            //             // label67            //             this.label67.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label67.AutoSize = true;            this.label67.Location = new System.Drawing.Point(930, 171);            this.label67.Name = "label67";            this.label67.Size = new System.Drawing.Size(23, 15);            this.label67.TabIndex = 0;            this.label67.Tag = "93";            this.label67.Text = "57";            //             // label68            //             this.label68.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label68.AutoSize = true;            this.label68.Location = new System.Drawing.Point(1025, 171);            this.label68.Name = "label68";            this.label68.Size = new System.Drawing.Size(23, 15);            this.label68.TabIndex = 0;            this.label68.Tag = "103";            this.label68.Text = "63";            //             // label69            //             this.label69.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label69.AutoSize = true;            this.label69.Location = new System.Drawing.Point(1120, 171);            this.label69.Name = "label69";            this.label69.Size = new System.Drawing.Size(23, 15);            this.label69.TabIndex = 0;            this.label69.Tag = "113";            this.label69.Text = "69";            //             // label70            //             this.label70.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label70.AutoSize = true;            this.label70.Location = new System.Drawing.Point(1215, 171);            this.label70.Name = "label70";            this.label70.Size = new System.Drawing.Size(23, 15);            this.label70.TabIndex = 0;            this.label70.Tag = "123";            this.label70.Text = "75";            //             // label71            //             this.label71.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label71.AutoSize = true;            this.label71.Location = new System.Drawing.Point(1310, 171);            this.label71.Name = "label71";            this.label71.Size = new System.Drawing.Size(23, 15);            this.label71.TabIndex = 0;            this.label71.Tag = "133";            this.label71.Text = "81";            //             // label72            //             this.label72.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label72.AutoSize = true;            this.label72.Location = new System.Drawing.Point(1405, 171);            this.label72.Name = "label72";            this.label72.Size = new System.Drawing.Size(23, 15);            this.label72.TabIndex = 0;            this.label72.Tag = "143";            this.label72.Text = "87";            //             // label73            //             this.label73.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label73.AutoSize = true;            this.label73.Location = new System.Drawing.Point(1500, 171);            this.label73.Name = "label73";            this.label73.Size = new System.Drawing.Size(23, 15);            this.label73.TabIndex = 0;            this.label73.Tag = "153";            this.label73.Text = "93";            //             // label74            //             this.label74.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label74.AutoSize = true;            this.label74.Location = new System.Drawing.Point(1595, 171);            this.label74.Name = "label74";            this.label74.Size = new System.Drawing.Size(23, 15);            this.label74.TabIndex = 0;            this.label74.Tag = "163";            this.label74.Text = "99";            //             // label75            //             this.label75.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label75.AutoSize = true;            this.label75.Location = new System.Drawing.Point(1686, 171);            this.label75.Name = "label75";            this.label75.Size = new System.Drawing.Size(31, 15);            this.label75.TabIndex = 0;            this.label75.Tag = "173";            this.label75.Text = "105";            //             // label76            //             this.label76.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label76.AutoSize = true;            this.label76.Location = new System.Drawing.Point(1781, 171);            this.label76.Name = "label76";            this.label76.Size = new System.Drawing.Size(31, 15);            this.label76.TabIndex = 0;            this.label76.Tag = "183";            this.label76.Text = "111";            //             // label77            //             this.label77.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label77.AutoSize = true;            this.label77.Location = new System.Drawing.Point(1876, 171);            this.label77.Name = "label77";            this.label77.Size = new System.Drawing.Size(31, 15);            this.label77.TabIndex = 0;            this.label77.Tag = "193";            this.label77.Text = "117";            //             // label78            //             this.label78.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label78.AutoSize = true;            this.label78.Location = new System.Drawing.Point(1971, 171);            this.label78.Name = "label78";            this.label78.Size = new System.Drawing.Size(31, 15);            this.label78.TabIndex = 0;            this.label78.Tag = "203";            this.label78.Text = "123";            //             // label79            //             this.label79.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label79.AutoSize = true;            this.label79.Location = new System.Drawing.Point(2066, 171);            this.label79.Name = "label79";            this.label79.Size = new System.Drawing.Size(31, 15);            this.label79.TabIndex = 0;            this.label79.Tag = "213";            this.label79.Text = "129";            //             // label80            //             this.label80.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label80.AutoSize = true;            this.label80.Location = new System.Drawing.Point(2161, 171);            this.label80.Name = "label80";            this.label80.Size = new System.Drawing.Size(31, 15);            this.label80.TabIndex = 0;            this.label80.Tag = "223";            this.label80.Text = "135";            //             // label81            //             this.label81.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label81.AutoSize = true;            this.label81.Location = new System.Drawing.Point(2256, 171);            this.label81.Name = "label81";            this.label81.Size = new System.Drawing.Size(31, 15);            this.label81.TabIndex = 0;            this.label81.Tag = "233";            this.label81.Text = "141";            //             // label82            //             this.label82.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label82.AutoSize = true;            this.label82.Location = new System.Drawing.Point(2351, 171);            this.label82.Name = "label82";            this.label82.Size = new System.Drawing.Size(31, 15);            this.label82.TabIndex = 0;            this.label82.Tag = "243";            this.label82.Text = "147";            //             // label83            //             this.label83.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label83.AutoSize = true;            this.label83.Location = new System.Drawing.Point(2446, 171);            this.label83.Name = "label83";            this.label83.Size = new System.Drawing.Size(31, 15);            this.label83.TabIndex = 0;            this.label83.Tag = "253";            this.label83.Text = "153";            //             // label85            //             this.label85.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label85.AutoSize = true;            this.label85.Location = new System.Drawing.Point(170, 211);            this.label85.Name = "label85";            this.label85.Size = new System.Drawing.Size(23, 15);            this.label85.TabIndex = 0;            this.label85.Tag = "14";            this.label85.Text = "10";            //             // label86            //             this.label86.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label86.AutoSize = true;            this.label86.Location = new System.Drawing.Point(265, 211);            this.label86.Name = "label86";            this.label86.Size = new System.Drawing.Size(23, 15);            this.label86.TabIndex = 0;            this.label86.Tag = "24";            this.label86.Text = "16";            //             // label87            //             this.label87.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label87.AutoSize = true;            this.label87.Location = new System.Drawing.Point(360, 211);            this.label87.Name = "label87";            this.label87.Size = new System.Drawing.Size(23, 15);            this.label87.TabIndex = 0;            this.label87.Tag = "34";            this.label87.Text = "22";            //             // label88            //             this.label88.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label88.AutoSize = true;            this.label88.Location = new System.Drawing.Point(455, 211);            this.label88.Name = "label88";            this.label88.Size = new System.Drawing.Size(23, 15);            this.label88.TabIndex = 0;            this.label88.Tag = "44";            this.label88.Text = "28";            //             // label89            //             this.label89.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label89.AutoSize = true;            this.label89.Location = new System.Drawing.Point(550, 211);            this.label89.Name = "label89";            this.label89.Size = new System.Drawing.Size(23, 15);            this.label89.TabIndex = 0;            this.label89.Tag = "54";            this.label89.Text = "34";            //             // label90            //             this.label90.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label90.AutoSize = true;            this.label90.Location = new System.Drawing.Point(645, 211);            this.label90.Name = "label90";            this.label90.Size = new System.Drawing.Size(23, 15);            this.label90.TabIndex = 0;            this.label90.Tag = "64";            this.label90.Text = "40";            //             // label91            //             this.label91.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label91.AutoSize = true;            this.label91.Location = new System.Drawing.Point(740, 211);            this.label91.Name = "label91";            this.label91.Size = new System.Drawing.Size(23, 15);            this.label91.TabIndex = 0;            this.label91.Tag = "74";            this.label91.Text = "46";            //             // label92            //             this.label92.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label92.AutoSize = true;            this.label92.Location = new System.Drawing.Point(835, 211);            this.label92.Name = "label92";            this.label92.Size = new System.Drawing.Size(23, 15);            this.label92.TabIndex = 0;            this.label92.Tag = "84";            this.label92.Text = "52";            //             // label93            //             this.label93.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label93.AutoSize = true;            this.label93.Location = new System.Drawing.Point(930, 211);            this.label93.Name = "label93";            this.label93.Size = new System.Drawing.Size(23, 15);            this.label93.TabIndex = 0;            this.label93.Tag = "94";            this.label93.Text = "58";            //             // label94            //             this.label94.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label94.AutoSize = true;            this.label94.Location = new System.Drawing.Point(1025, 211);            this.label94.Name = "label94";            this.label94.Size = new System.Drawing.Size(23, 15);            this.label94.TabIndex = 0;            this.label94.Tag = "104";            this.label94.Text = "64";            //             // label95            //             this.label95.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label95.AutoSize = true;            this.label95.Location = new System.Drawing.Point(1120, 211);            this.label95.Name = "label95";            this.label95.Size = new System.Drawing.Size(23, 15);            this.label95.TabIndex = 0;            this.label95.Tag = "114";            this.label95.Text = "70";            //             // label96            //             this.label96.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label96.AutoSize = true;            this.label96.Location = new System.Drawing.Point(1215, 211);            this.label96.Name = "label96";            this.label96.Size = new System.Drawing.Size(23, 15);            this.label96.TabIndex = 0;            this.label96.Tag = "124";            this.label96.Text = "76";            //             // label97            //             this.label97.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label97.AutoSize = true;            this.label97.Location = new System.Drawing.Point(1310, 211);            this.label97.Name = "label97";            this.label97.Size = new System.Drawing.Size(23, 15);            this.label97.TabIndex = 0;            this.label97.Tag = "134";            this.label97.Text = "82";            //             // label98            //             this.label98.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label98.AutoSize = true;            this.label98.Location = new System.Drawing.Point(1405, 211);            this.label98.Name = "label98";            this.label98.Size = new System.Drawing.Size(23, 15);            this.label98.TabIndex = 0;            this.label98.Tag = "144";            this.label98.Text = "88";            //             // label99            //             this.label99.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label99.AutoSize = true;            this.label99.Location = new System.Drawing.Point(1500, 211);            this.label99.Name = "label99";            this.label99.Size = new System.Drawing.Size(23, 15);            this.label99.TabIndex = 0;            this.label99.Tag = "154";            this.label99.Text = "94";            //             // label100            //             this.label100.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label100.AutoSize = true;            this.label100.Location = new System.Drawing.Point(1591, 211);            this.label100.Name = "label100";            this.label100.Size = new System.Drawing.Size(31, 15);            this.label100.TabIndex = 0;            this.label100.Tag = "164";            this.label100.Text = "100";            //             // label101            //             this.label101.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label101.AutoSize = true;            this.label101.Location = new System.Drawing.Point(1686, 211);            this.label101.Name = "label101";            this.label101.Size = new System.Drawing.Size(31, 15);            this.label101.TabIndex = 0;            this.label101.Tag = "174";            this.label101.Text = "106";            //             // label102            //             this.label102.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label102.AutoSize = true;            this.label102.Location = new System.Drawing.Point(1781, 211);            this.label102.Name = "label102";            this.label102.Size = new System.Drawing.Size(31, 15);            this.label102.TabIndex = 0;            this.label102.Tag = "184";            this.label102.Text = "112";            //             // label103            //             this.label103.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label103.AutoSize = true;            this.label103.Location = new System.Drawing.Point(1876, 211);            this.label103.Name = "label103";            this.label103.Size = new System.Drawing.Size(31, 15);            this.label103.TabIndex = 0;            this.label103.Tag = "194";            this.label103.Text = "118";            //             // label104            //             this.label104.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label104.AutoSize = true;            this.label104.Location = new System.Drawing.Point(1971, 211);            this.label104.Name = "label104";            this.label104.Size = new System.Drawing.Size(31, 15);            this.label104.TabIndex = 0;            this.label104.Tag = "204";            this.label104.Text = "124";            //             // label105            //             this.label105.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label105.AutoSize = true;            this.label105.Location = new System.Drawing.Point(2066, 211);            this.label105.Name = "label105";            this.label105.Size = new System.Drawing.Size(31, 15);            this.label105.TabIndex = 0;            this.label105.Tag = "214";            this.label105.Text = "130";            //             // label106            //             this.label106.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label106.AutoSize = true;            this.label106.Location = new System.Drawing.Point(2161, 211);            this.label106.Name = "label106";            this.label106.Size = new System.Drawing.Size(31, 15);            this.label106.TabIndex = 0;            this.label106.Tag = "224";            this.label106.Text = "136";            //             // label107            //             this.label107.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label107.AutoSize = true;            this.label107.Location = new System.Drawing.Point(2256, 211);            this.label107.Name = "label107";            this.label107.Size = new System.Drawing.Size(31, 15);            this.label107.TabIndex = 0;            this.label107.Tag = "234";            this.label107.Text = "142";            //             // label108            //             this.label108.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label108.AutoSize = true;            this.label108.Location = new System.Drawing.Point(2351, 211);            this.label108.Name = "label108";            this.label108.Size = new System.Drawing.Size(31, 15);            this.label108.TabIndex = 0;            this.label108.Tag = "244";            this.label108.Text = "148";            //             // label109            //             this.label109.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label109.AutoSize = true;            this.label109.Location = new System.Drawing.Point(2446, 211);            this.label109.Name = "label109";            this.label109.Size = new System.Drawing.Size(31, 15);            this.label109.TabIndex = 0;            this.label109.Tag = "254";            this.label109.Text = "154";            //             // label111            //             this.label111.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label111.AutoSize = true;            this.label111.Location = new System.Drawing.Point(170, 251);            this.label111.Name = "label111";            this.label111.Size = new System.Drawing.Size(23, 15);            this.label111.TabIndex = 0;            this.label111.Tag = "15";            this.label111.Text = "11";            //             // label112            //             this.label112.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label112.AutoSize = true;            this.label112.Location = new System.Drawing.Point(265, 251);            this.label112.Name = "label112";            this.label112.Size = new System.Drawing.Size(23, 15);            this.label112.TabIndex = 0;            this.label112.Tag = "25";            this.label112.Text = "17";            //             // label113            //             this.label113.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label113.AutoSize = true;            this.label113.Location = new System.Drawing.Point(360, 251);            this.label113.Name = "label113";            this.label113.Size = new System.Drawing.Size(23, 15);            this.label113.TabIndex = 0;            this.label113.Tag = "35";            this.label113.Text = "23";            //             // label114            //             this.label114.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label114.AutoSize = true;            this.label114.Location = new System.Drawing.Point(455, 251);            this.label114.Name = "label114";            this.label114.Size = new System.Drawing.Size(23, 15);            this.label114.TabIndex = 0;            this.label114.Tag = "45";            this.label114.Text = "29";            //             // label115            //             this.label115.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label115.AutoSize = true;            this.label115.Location = new System.Drawing.Point(550, 251);            this.label115.Name = "label115";            this.label115.Size = new System.Drawing.Size(23, 15);            this.label115.TabIndex = 0;            this.label115.Tag = "55";            this.label115.Text = "35";            //             // label116            //             this.label116.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label116.AutoSize = true;            this.label116.Location = new System.Drawing.Point(645, 251);            this.label116.Name = "label116";            this.label116.Size = new System.Drawing.Size(23, 15);            this.label116.TabIndex = 0;            this.label116.Tag = "65";            this.label116.Text = "41";            //             // label117            //             this.label117.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label117.AutoSize = true;            this.label117.Location = new System.Drawing.Point(740, 251);            this.label117.Name = "label117";            this.label117.Size = new System.Drawing.Size(23, 15);            this.label117.TabIndex = 0;            this.label117.Tag = "75";            this.label117.Text = "47";            //             // label118            //             this.label118.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label118.AutoSize = true;            this.label118.Location = new System.Drawing.Point(835, 251);            this.label118.Name = "label118";            this.label118.Size = new System.Drawing.Size(23, 15);            this.label118.TabIndex = 0;            this.label118.Tag = "85";            this.label118.Text = "53";            //             // label119            //             this.label119.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label119.AutoSize = true;            this.label119.Location = new System.Drawing.Point(930, 251);            this.label119.Name = "label119";            this.label119.Size = new System.Drawing.Size(23, 15);            this.label119.TabIndex = 0;            this.label119.Tag = "95";            this.label119.Text = "59";            //             // label120            //             this.label120.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label120.AutoSize = true;            this.label120.Location = new System.Drawing.Point(1025, 251);            this.label120.Name = "label120";            this.label120.Size = new System.Drawing.Size(23, 15);            this.label120.TabIndex = 0;            this.label120.Tag = "105";            this.label120.Text = "65";            //             // label121            //             this.label121.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label121.AutoSize = true;            this.label121.Location = new System.Drawing.Point(1120, 251);            this.label121.Name = "label121";            this.label121.Size = new System.Drawing.Size(23, 15);            this.label121.TabIndex = 0;            this.label121.Tag = "115";            this.label121.Text = "71";            //             // label122            //             this.label122.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label122.AutoSize = true;            this.label122.Location = new System.Drawing.Point(1215, 251);            this.label122.Name = "label122";            this.label122.Size = new System.Drawing.Size(23, 15);            this.label122.TabIndex = 0;            this.label122.Tag = "125";            this.label122.Text = "77";            //             // label123            //             this.label123.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label123.AutoSize = true;            this.label123.Location = new System.Drawing.Point(1310, 251);            this.label123.Name = "label123";            this.label123.Size = new System.Drawing.Size(23, 15);            this.label123.TabIndex = 0;            this.label123.Tag = "135";            this.label123.Text = "83";            //             // label124            //             this.label124.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label124.AutoSize = true;            this.label124.Location = new System.Drawing.Point(1405, 251);            this.label124.Name = "label124";            this.label124.Size = new System.Drawing.Size(23, 15);            this.label124.TabIndex = 0;            this.label124.Tag = "145";            this.label124.Text = "89";            //             // label125            //             this.label125.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label125.AutoSize = true;            this.label125.Location = new System.Drawing.Point(1500, 251);            this.label125.Name = "label125";            this.label125.Size = new System.Drawing.Size(23, 15);            this.label125.TabIndex = 0;            this.label125.Tag = "155";            this.label125.Text = "95";            //             // label126            //             this.label126.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label126.AutoSize = true;            this.label126.Location = new System.Drawing.Point(1591, 251);            this.label126.Name = "label126";            this.label126.Size = new System.Drawing.Size(31, 15);            this.label126.TabIndex = 0;            this.label126.Tag = "165";            this.label126.Text = "101";            //             // label127            //             this.label127.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label127.AutoSize = true;            this.label127.Location = new System.Drawing.Point(1686, 251);            this.label127.Name = "label127";            this.label127.Size = new System.Drawing.Size(31, 15);            this.label127.TabIndex = 0;            this.label127.Tag = "175";            this.label127.Text = "107";            //             // label128            //             this.label128.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label128.AutoSize = true;            this.label128.Location = new System.Drawing.Point(1781, 251);            this.label128.Name = "label128";            this.label128.Size = new System.Drawing.Size(31, 15);            this.label128.TabIndex = 0;            this.label128.Tag = "185";            this.label128.Text = "113";            //             // label129            //             this.label129.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label129.AutoSize = true;            this.label129.Location = new System.Drawing.Point(1876, 251);            this.label129.Name = "label129";            this.label129.Size = new System.Drawing.Size(31, 15);            this.label129.TabIndex = 0;            this.label129.Tag = "195";            this.label129.Text = "119";            //             // label130            //             this.label130.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label130.AutoSize = true;            this.label130.Location = new System.Drawing.Point(1971, 251);            this.label130.Name = "label130";            this.label130.Size = new System.Drawing.Size(31, 15);            this.label130.TabIndex = 0;            this.label130.Tag = "205";            this.label130.Text = "125";            //             // label131            //             this.label131.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label131.AutoSize = true;            this.label131.Location = new System.Drawing.Point(2066, 251);            this.label131.Name = "label131";            this.label131.Size = new System.Drawing.Size(31, 15);            this.label131.TabIndex = 0;            this.label131.Tag = "215";            this.label131.Text = "131";            //             // label132            //             this.label132.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label132.AutoSize = true;            this.label132.Location = new System.Drawing.Point(2161, 251);            this.label132.Name = "label132";            this.label132.Size = new System.Drawing.Size(31, 15);            this.label132.TabIndex = 0;            this.label132.Tag = "225";            this.label132.Text = "137";            //             // label133            //             this.label133.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label133.AutoSize = true;            this.label133.Location = new System.Drawing.Point(2256, 251);            this.label133.Name = "label133";            this.label133.Size = new System.Drawing.Size(31, 15);            this.label133.TabIndex = 0;            this.label133.Tag = "235";            this.label133.Text = "143";            //             // label134            //             this.label134.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label134.AutoSize = true;            this.label134.Location = new System.Drawing.Point(2351, 251);            this.label134.Name = "label134";            this.label134.Size = new System.Drawing.Size(31, 15);            this.label134.TabIndex = 0;            this.label134.Tag = "245";            this.label134.Text = "149";            //             // label135            //             this.label135.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label135.AutoSize = true;            this.label135.Location = new System.Drawing.Point(2446, 251);            this.label135.Name = "label135";            this.label135.Size = new System.Drawing.Size(31, 15);            this.label135.TabIndex = 0;            this.label135.Tag = "255";            this.label135.Text = "155";            //             // label137            //             this.label137.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label137.AutoSize = true;            this.label137.Location = new System.Drawing.Point(170, 291);            this.label137.Name = "label137";            this.label137.Size = new System.Drawing.Size(23, 15);            this.label137.TabIndex = 0;            this.label137.Tag = "15";            this.label137.Text = "12";            //             // label138            //             this.label138.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label138.AutoSize = true;            this.label138.Location = new System.Drawing.Point(265, 291);            this.label138.Name = "label138";            this.label138.Size = new System.Drawing.Size(23, 15);            this.label138.TabIndex = 0;            this.label138.Tag = "26";            this.label138.Text = "18";            //             // label139            //             this.label139.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label139.AutoSize = true;            this.label139.Location = new System.Drawing.Point(360, 291);            this.label139.Name = "label139";            this.label139.Size = new System.Drawing.Size(23, 15);            this.label139.TabIndex = 0;            this.label139.Tag = "36";            this.label139.Text = "24";            //             // label140            //             this.label140.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label140.AutoSize = true;            this.label140.Location = new System.Drawing.Point(455, 291);            this.label140.Name = "label140";            this.label140.Size = new System.Drawing.Size(23, 15);            this.label140.TabIndex = 0;            this.label140.Tag = "46";            this.label140.Text = "30";            //             // label141            //             this.label141.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label141.AutoSize = true;            this.label141.Location = new System.Drawing.Point(550, 291);            this.label141.Name = "label141";            this.label141.Size = new System.Drawing.Size(23, 15);            this.label141.TabIndex = 0;            this.label141.Tag = "56";            this.label141.Text = "36";            //             // label142            //             this.label142.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label142.AutoSize = true;            this.label142.Location = new System.Drawing.Point(645, 291);            this.label142.Name = "label142";            this.label142.Size = new System.Drawing.Size(23, 15);            this.label142.TabIndex = 0;            this.label142.Tag = "66";            this.label142.Text = "42";            //             // label143            //             this.label143.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label143.AutoSize = true;            this.label143.Location = new System.Drawing.Point(740, 291);            this.label143.Name = "label143";            this.label143.Size = new System.Drawing.Size(23, 15);            this.label143.TabIndex = 0;            this.label143.Tag = "76";            this.label143.Text = "48";            //             // label144            //             this.label144.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label144.AutoSize = true;            this.label144.Location = new System.Drawing.Point(835, 291);            this.label144.Name = "label144";            this.label144.Size = new System.Drawing.Size(23, 15);            this.label144.TabIndex = 0;            this.label144.Tag = "86";            this.label144.Text = "54";            //             // label145            //             this.label145.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label145.AutoSize = true;            this.label145.Location = new System.Drawing.Point(930, 291);            this.label145.Name = "label145";            this.label145.Size = new System.Drawing.Size(23, 15);            this.label145.TabIndex = 0;            this.label145.Tag = "96";            this.label145.Text = "60";            //             // label146            //             this.label146.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label146.AutoSize = true;            this.label146.Location = new System.Drawing.Point(1025, 291);            this.label146.Name = "label146";            this.label146.Size = new System.Drawing.Size(23, 15);            this.label146.TabIndex = 0;            this.label146.Tag = "106";            this.label146.Text = "66";            //             // label147            //             this.label147.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label147.AutoSize = true;            this.label147.Location = new System.Drawing.Point(1120, 291);            this.label147.Name = "label147";            this.label147.Size = new System.Drawing.Size(23, 15);            this.label147.TabIndex = 0;            this.label147.Tag = "116";            this.label147.Text = "72";            //             // label148            //             this.label148.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label148.AutoSize = true;            this.label148.Location = new System.Drawing.Point(1215, 291);            this.label148.Name = "label148";            this.label148.Size = new System.Drawing.Size(23, 15);            this.label148.TabIndex = 0;            this.label148.Tag = "126";            this.label148.Text = "78";            //             // label149            //             this.label149.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label149.AutoSize = true;            this.label149.Location = new System.Drawing.Point(1310, 291);            this.label149.Name = "label149";            this.label149.Size = new System.Drawing.Size(23, 15);            this.label149.TabIndex = 0;            this.label149.Tag = "136";            this.label149.Text = "84";            //             // label150            //             this.label150.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label150.AutoSize = true;            this.label150.Location = new System.Drawing.Point(1405, 291);            this.label150.Name = "label150";            this.label150.Size = new System.Drawing.Size(23, 15);            this.label150.TabIndex = 0;            this.label150.Tag = "146";            this.label150.Text = "90";            //             // label151            //             this.label151.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label151.AutoSize = true;            this.label151.Location = new System.Drawing.Point(1500, 291);            this.label151.Name = "label151";            this.label151.Size = new System.Drawing.Size(23, 15);            this.label151.TabIndex = 0;            this.label151.Tag = "156";            this.label151.Text = "96";            //             // label152            //             this.label152.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label152.AutoSize = true;            this.label152.Location = new System.Drawing.Point(1591, 291);            this.label152.Name = "label152";            this.label152.Size = new System.Drawing.Size(31, 15);            this.label152.TabIndex = 0;            this.label152.Tag = "166";            this.label152.Text = "102";            //             // label153            //             this.label153.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label153.AutoSize = true;            this.label153.Location = new System.Drawing.Point(1686, 291);            this.label153.Name = "label153";            this.label153.Size = new System.Drawing.Size(31, 15);            this.label153.TabIndex = 0;            this.label153.Tag = "176";            this.label153.Text = "108";            //             // label154            //             this.label154.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label154.AutoSize = true;            this.label154.Location = new System.Drawing.Point(1781, 291);            this.label154.Name = "label154";            this.label154.Size = new System.Drawing.Size(31, 15);            this.label154.TabIndex = 0;            this.label154.Tag = "186";            this.label154.Text = "114";            //             // label155            //             this.label155.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label155.AutoSize = true;            this.label155.Location = new System.Drawing.Point(1876, 291);            this.label155.Name = "label155";            this.label155.Size = new System.Drawing.Size(31, 15);            this.label155.TabIndex = 0;            this.label155.Tag = "196";            this.label155.Text = "120";            //             // label156            //             this.label156.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label156.AutoSize = true;            this.label156.Location = new System.Drawing.Point(1971, 291);            this.label156.Name = "label156";            this.label156.Size = new System.Drawing.Size(31, 15);            this.label156.TabIndex = 0;            this.label156.Tag = "206";            this.label156.Text = "126";            //             // label157            //             this.label157.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label157.AutoSize = true;            this.label157.Location = new System.Drawing.Point(2066, 291);            this.label157.Name = "label157";            this.label157.Size = new System.Drawing.Size(31, 15);            this.label157.TabIndex = 0;            this.label157.Tag = "216";            this.label157.Text = "132";            //             // label158            //             this.label158.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label158.AutoSize = true;            this.label158.Location = new System.Drawing.Point(2161, 291);            this.label158.Name = "label158";            this.label158.Size = new System.Drawing.Size(31, 15);            this.label158.TabIndex = 0;            this.label158.Tag = "226";            this.label158.Text = "138";            //             // label159            //             this.label159.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label159.AutoSize = true;            this.label159.Location = new System.Drawing.Point(2256, 291);            this.label159.Name = "label159";            this.label159.Size = new System.Drawing.Size(31, 15);            this.label159.TabIndex = 0;            this.label159.Tag = "236";            this.label159.Text = "144";            //             // label160            //             this.label160.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label160.AutoSize = true;            this.label160.Location = new System.Drawing.Point(2351, 291);            this.label160.Name = "label160";            this.label160.Size = new System.Drawing.Size(31, 15);            this.label160.TabIndex = 0;            this.label160.Tag = "246";            this.label160.Text = "150";            //             // label161            //             this.label161.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label161.AutoSize = true;            this.label161.Location = new System.Drawing.Point(2446, 291);            this.label161.Name = "label161";            this.label161.Size = new System.Drawing.Size(31, 15);            this.label161.TabIndex = 0;            this.label161.Tag = "256";            this.label161.Text = "156";            //             // panel1            //             this.tableLayoutPanel1.SetColumnSpan(this.panel1, 30);            this.panel1.Controls.Add(this.uctl_SiFu);            this.panel1.Controls.Add(this.panel2);            this.panel1.Location = new System.Drawing.Point(42, 522);            this.panel1.Name = "panel1";            this.tableLayoutPanel1.SetRowSpan(this.panel1, 6);            this.panel1.Size = new System.Drawing.Size(2844, 234);            this.panel1.TabIndex = 1;            //             // uctl_SiFu            //             this.uctl_SiFu.AllowDrop = true;            this.uctl_SiFu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            deviceStateDefaultList1.Device_ConnectionMes = false;            deviceStateDefaultList1.Device_Name = "";            deviceStateDefaultList1.Device_OnLine = false;            deviceStateDefaultList1.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList1.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_SiFu.deviceStateDefaultList = deviceStateDefaultList1;            this.uctl_SiFu.Location = new System.Drawing.Point(871, 18);            this.uctl_SiFu.Name = "uctl_SiFu";            this.uctl_SiFu.Size = new System.Drawing.Size(234, 193);            this.uctl_SiFu.TabIndex = 1;            this.uctl_SiFu.UserTag = ((short)(0));            //             // panel2            //             this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(215)))));            this.panel2.Location = new System.Drawing.Point(4, 82);            this.panel2.Name = "panel2";            this.panel2.Size = new System.Drawing.Size(2837, 68);            this.panel2.TabIndex = 0;            //             // uctl_AGV1            //             this.uctl_AGV1.AllowDrop = true;            this.uctl_AGV1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_AGV1, 2);            deviceStateDefaultList2.Device_ConnectionMes = false;            deviceStateDefaultList2.Device_Name = "";            deviceStateDefaultList2.Device_OnLine = false;            deviceStateDefaultList2.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList2.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_AGV1.deviceStateDefaultList = deviceStateDefaultList2;            this.uctl_AGV1.Location = new System.Drawing.Point(42, 762);            this.uctl_AGV1.Name = "uctl_AGV1";            this.tableLayoutPanel1.SetRowSpan(this.uctl_AGV1, 5);            this.uctl_AGV1.Size = new System.Drawing.Size(183, 193);            this.uctl_AGV1.TabIndex = 7;            this.uctl_AGV1.UserTag = ((short)(0));            //             // label32            //             this.label32.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label32.AutoSize = true;            this.label32.Location = new System.Drawing.Point(2541, 91);            this.label32.Name = "label32";            this.label32.Size = new System.Drawing.Size(31, 15);            this.label32.TabIndex = 0;            this.label32.Tag = "261";            this.label32.Text = "157";            //             // label58            //             this.label58.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label58.AutoSize = true;            this.label58.Location = new System.Drawing.Point(2541, 131);            this.label58.Name = "label58";            this.label58.Size = new System.Drawing.Size(31, 15);            this.label58.TabIndex = 0;            this.label58.Tag = "262";            this.label58.Text = "158";            //             // label84            //             this.label84.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label84.AutoSize = true;            this.label84.Location = new System.Drawing.Point(2541, 171);            this.label84.Name = "label84";            this.label84.Size = new System.Drawing.Size(31, 15);            this.label84.TabIndex = 0;            this.label84.Tag = "263";            this.label84.Text = "159";            //             // label110            //             this.label110.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label110.AutoSize = true;            this.label110.Location = new System.Drawing.Point(2541, 211);            this.label110.Name = "label110";            this.label110.Size = new System.Drawing.Size(31, 15);            this.label110.TabIndex = 0;            this.label110.Tag = "264";            this.label110.Text = "160";            //             // label136            //             this.label136.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label136.AutoSize = true;            this.label136.Location = new System.Drawing.Point(2541, 251);            this.label136.Name = "label136";            this.label136.Size = new System.Drawing.Size(31, 15);            this.label136.TabIndex = 0;            this.label136.Tag = "265";            this.label136.Text = "161";            //             // label162            //             this.label162.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label162.AutoSize = true;            this.label162.Location = new System.Drawing.Point(2541, 291);            this.label162.Name = "label162";            this.label162.Size = new System.Drawing.Size(31, 15);            this.label162.TabIndex = 0;            this.label162.Tag = "266";            this.label162.Text = "162";            //             // label193            //             this.label193.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label193.AutoSize = true;            this.label193.Location = new System.Drawing.Point(2636, 91);            this.label193.Name = "label193";            this.label193.Size = new System.Drawing.Size(31, 15);            this.label193.TabIndex = 0;            this.label193.Tag = "271";            this.label193.Text = "162";            //             // label194            //             this.label194.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label194.AutoSize = true;            this.label194.Location = new System.Drawing.Point(2731, 91);            this.label194.Name = "label194";            this.label194.Size = new System.Drawing.Size(31, 15);            this.label194.TabIndex = 0;            this.label194.Tag = "281";            this.label194.Text = "162";            //             // label195            //             this.label195.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label195.AutoSize = true;            this.label195.Location = new System.Drawing.Point(2826, 91);            this.label195.Name = "label195";            this.label195.Size = new System.Drawing.Size(31, 15);            this.label195.TabIndex = 0;            this.label195.Tag = "291";            this.label195.Text = "162";            //             // label196            //             this.label196.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label196.AutoSize = true;            this.label196.Location = new System.Drawing.Point(2826, 131);            this.label196.Name = "label196";            this.label196.Size = new System.Drawing.Size(31, 15);            this.label196.TabIndex = 0;            this.label196.Tag = "292";            this.label196.Text = "162";            //             // label197            //             this.label197.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label197.AutoSize = true;            this.label197.Location = new System.Drawing.Point(2826, 171);            this.label197.Name = "label197";            this.label197.Size = new System.Drawing.Size(31, 15);            this.label197.TabIndex = 0;            this.label197.Tag = "293";            this.label197.Text = "162";            //             // label198            //             this.label198.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label198.AutoSize = true;            this.label198.Location = new System.Drawing.Point(2826, 211);            this.label198.Name = "label198";            this.label198.Size = new System.Drawing.Size(31, 15);            this.label198.TabIndex = 0;            this.label198.Tag = "294";            this.label198.Text = "162";            //             // label199            //             this.label199.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label199.AutoSize = true;            this.label199.Location = new System.Drawing.Point(2826, 251);            this.label199.Name = "label199";            this.label199.Size = new System.Drawing.Size(31, 15);            this.label199.TabIndex = 0;            this.label199.Tag = "295";            this.label199.Text = "162";            //             // label200            //             this.label200.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label200.AutoSize = true;            this.label200.Location = new System.Drawing.Point(2826, 291);            this.label200.Name = "label200";            this.label200.Size = new System.Drawing.Size(31, 15);            this.label200.TabIndex = 0;            this.label200.Tag = "296";            this.label200.Text = "162";            //             // label201            //             this.label201.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label201.AutoSize = true;            this.label201.Location = new System.Drawing.Point(2731, 291);            this.label201.Name = "label201";            this.label201.Size = new System.Drawing.Size(31, 15);            this.label201.TabIndex = 0;            this.label201.Tag = "286";            this.label201.Text = "162";            //             // label202            //             this.label202.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label202.AutoSize = true;            this.label202.Location = new System.Drawing.Point(2636, 291);            this.label202.Name = "label202";            this.label202.Size = new System.Drawing.Size(31, 15);            this.label202.TabIndex = 0;            this.label202.Tag = "276";            this.label202.Text = "162";            //             // label203            //             this.label203.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label203.AutoSize = true;            this.label203.Location = new System.Drawing.Point(2636, 251);            this.label203.Name = "label203";            this.label203.Size = new System.Drawing.Size(31, 15);            this.label203.TabIndex = 0;            this.label203.Tag = "275";            this.label203.Text = "162";            //             // label204            //             this.label204.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label204.AutoSize = true;            this.label204.Location = new System.Drawing.Point(2731, 251);            this.label204.Name = "label204";            this.label204.Size = new System.Drawing.Size(31, 15);            this.label204.TabIndex = 0;            this.label204.Tag = "285";            this.label204.Text = "162";            //             // label205            //             this.label205.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label205.AutoSize = true;            this.label205.Location = new System.Drawing.Point(2731, 211);            this.label205.Name = "label205";            this.label205.Size = new System.Drawing.Size(31, 15);            this.label205.TabIndex = 0;            this.label205.Tag = "284";            this.label205.Text = "162";            //             // label206            //             this.label206.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label206.AutoSize = true;            this.label206.Location = new System.Drawing.Point(2636, 211);            this.label206.Name = "label206";            this.label206.Size = new System.Drawing.Size(31, 15);            this.label206.TabIndex = 0;            this.label206.Tag = "274";            this.label206.Text = "162";            //             // label207            //             this.label207.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label207.AutoSize = true;            this.label207.Location = new System.Drawing.Point(2636, 171);            this.label207.Name = "label207";            this.label207.Size = new System.Drawing.Size(31, 15);            this.label207.TabIndex = 0;            this.label207.Tag = "273";            this.label207.Text = "162";            //             // label208            //             this.label208.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label208.AutoSize = true;            this.label208.Location = new System.Drawing.Point(2731, 171);            this.label208.Name = "label208";            this.label208.Size = new System.Drawing.Size(31, 15);            this.label208.TabIndex = 0;            this.label208.Tag = "283";            this.label208.Text = "162";            //             // label209            //             this.label209.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label209.AutoSize = true;            this.label209.Location = new System.Drawing.Point(2731, 131);            this.label209.Name = "label209";            this.label209.Size = new System.Drawing.Size(31, 15);            this.label209.TabIndex = 0;            this.label209.Tag = "282";            this.label209.Text = "162";            //             // label210            //             this.label210.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label210.AutoSize = true;            this.label210.Location = new System.Drawing.Point(2636, 131);            this.label210.Name = "label210";            this.label210.Size = new System.Drawing.Size(31, 15);            this.label210.TabIndex = 0;            this.label210.Tag = "272";            this.label210.Text = "162";            //             // label211            //             this.label211.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label211.AutoSize = true;            this.label211.Location = new System.Drawing.Point(2826, 331);            this.label211.Name = "label211";            this.label211.Size = new System.Drawing.Size(31, 15);            this.label211.TabIndex = 0;            this.label211.Tag = "297";            this.label211.Text = "162";            //             // label212            //             this.label212.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label212.AutoSize = true;            this.label212.Location = new System.Drawing.Point(2826, 371);            this.label212.Name = "label212";            this.label212.Size = new System.Drawing.Size(31, 15);            this.label212.TabIndex = 0;            this.label212.Tag = "298";            this.label212.Text = "162";            //             // label213            //             this.label213.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label213.AutoSize = true;            this.label213.Location = new System.Drawing.Point(2826, 411);            this.label213.Name = "label213";            this.label213.Size = new System.Drawing.Size(31, 15);            this.label213.TabIndex = 0;            this.label213.Tag = "299";            this.label213.Text = "162";            //             // label214            //             this.label214.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label214.AutoSize = true;            this.label214.Location = new System.Drawing.Point(2826, 451);            this.label214.Name = "label214";            this.label214.Size = new System.Drawing.Size(31, 15);            this.label214.TabIndex = 0;            this.label214.Tag = "300";            this.label214.Text = "162";            //             // label215            //             this.label215.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label215.AutoSize = true;            this.label215.Location = new System.Drawing.Point(2731, 451);            this.label215.Name = "label215";            this.label215.Size = new System.Drawing.Size(31, 15);            this.label215.TabIndex = 0;            this.label215.Tag = "290";            this.label215.Text = "162";            //             // label216            //             this.label216.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label216.AutoSize = true;            this.label216.Location = new System.Drawing.Point(2731, 411);            this.label216.Name = "label216";            this.label216.Size = new System.Drawing.Size(31, 15);            this.label216.TabIndex = 0;            this.label216.Tag = "289";            this.label216.Text = "162";            //             // label217            //             this.label217.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label217.AutoSize = true;            this.label217.Location = new System.Drawing.Point(2731, 371);            this.label217.Name = "label217";            this.label217.Size = new System.Drawing.Size(31, 15);            this.label217.TabIndex = 0;            this.label217.Tag = "288";            this.label217.Text = "162";            //             // label218            //             this.label218.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label218.AutoSize = true;            this.label218.Location = new System.Drawing.Point(2731, 331);            this.label218.Name = "label218";            this.label218.Size = new System.Drawing.Size(31, 15);            this.label218.TabIndex = 0;            this.label218.Tag = "287";            this.label218.Text = "162";            //             // label219            //             this.label219.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label219.AutoSize = true;            this.label219.Location = new System.Drawing.Point(2636, 331);            this.label219.Name = "label219";            this.label219.Size = new System.Drawing.Size(31, 15);            this.label219.TabIndex = 0;            this.label219.Tag = "277";            this.label219.Text = "162";            //             // label220            //             this.label220.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label220.AutoSize = true;            this.label220.Location = new System.Drawing.Point(2636, 371);            this.label220.Name = "label220";            this.label220.Size = new System.Drawing.Size(31, 15);            this.label220.TabIndex = 0;            this.label220.Tag = "278";            this.label220.Text = "162";            //             // label221            //             this.label221.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label221.AutoSize = true;            this.label221.Location = new System.Drawing.Point(2636, 411);            this.label221.Name = "label221";            this.label221.Size = new System.Drawing.Size(31, 15);            this.label221.TabIndex = 0;            this.label221.Tag = "279";            this.label221.Text = "162";            //             // label222            //             this.label222.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label222.AutoSize = true;            this.label222.Location = new System.Drawing.Point(2636, 451);            this.label222.Name = "label222";            this.label222.Size = new System.Drawing.Size(31, 15);            this.label222.TabIndex = 0;            this.label222.Tag = "280";            this.label222.Text = "162";            //             // label223            //             this.label223.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label223.AutoSize = true;            this.label223.Location = new System.Drawing.Point(2541, 451);            this.label223.Name = "label223";            this.label223.Size = new System.Drawing.Size(31, 15);            this.label223.TabIndex = 0;            this.label223.Tag = "270";            this.label223.Text = "162";            //             // label224            //             this.label224.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label224.AutoSize = true;            this.label224.Location = new System.Drawing.Point(2541, 411);            this.label224.Name = "label224";            this.label224.Size = new System.Drawing.Size(31, 15);            this.label224.TabIndex = 0;            this.label224.Tag = "269";            this.label224.Text = "162";            //             // label225            //             this.label225.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label225.AutoSize = true;            this.label225.Location = new System.Drawing.Point(2541, 371);            this.label225.Name = "label225";            this.label225.Size = new System.Drawing.Size(31, 15);            this.label225.TabIndex = 0;            this.label225.Tag = "268";            this.label225.Text = "162";            //             // label226            //             this.label226.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label226.AutoSize = true;            this.label226.Location = new System.Drawing.Point(2541, 331);            this.label226.Name = "label226";            this.label226.Size = new System.Drawing.Size(31, 15);            this.label226.TabIndex = 0;            this.label226.Tag = "267";            this.label226.Text = "162";            //             // label227            //             this.label227.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label227.AutoSize = true;            this.label227.Location = new System.Drawing.Point(2446, 331);            this.label227.Name = "label227";            this.label227.Size = new System.Drawing.Size(31, 15);            this.label227.TabIndex = 0;            this.label227.Tag = "257";            this.label227.Text = "162";            //             // label228            //             this.label228.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label228.AutoSize = true;            this.label228.Location = new System.Drawing.Point(2446, 371);            this.label228.Name = "label228";            this.label228.Size = new System.Drawing.Size(31, 15);            this.label228.TabIndex = 0;            this.label228.Tag = "258";            this.label228.Text = "162";            //             // label229            //             this.label229.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label229.AutoSize = true;            this.label229.Location = new System.Drawing.Point(2446, 411);            this.label229.Name = "label229";            this.label229.Size = new System.Drawing.Size(31, 15);            this.label229.TabIndex = 0;            this.label229.Tag = "259";            this.label229.Text = "162";            //             // label230            //             this.label230.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label230.AutoSize = true;            this.label230.Location = new System.Drawing.Point(2446, 451);            this.label230.Name = "label230";            this.label230.Size = new System.Drawing.Size(31, 15);            this.label230.TabIndex = 0;            this.label230.Tag = "260";            this.label230.Text = "162";            //             // label231            //             this.label231.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label231.AutoSize = true;            this.label231.Location = new System.Drawing.Point(2351, 451);            this.label231.Name = "label231";            this.label231.Size = new System.Drawing.Size(31, 15);            this.label231.TabIndex = 0;            this.label231.Tag = "250";            this.label231.Text = "162";            //             // label232            //             this.label232.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label232.AutoSize = true;            this.label232.Location = new System.Drawing.Point(2351, 411);            this.label232.Name = "label232";            this.label232.Size = new System.Drawing.Size(31, 15);            this.label232.TabIndex = 0;            this.label232.Tag = "249";            this.label232.Text = "162";            //             // label233            //             this.label233.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label233.AutoSize = true;            this.label233.Location = new System.Drawing.Point(2351, 371);            this.label233.Name = "label233";            this.label233.Size = new System.Drawing.Size(31, 15);            this.label233.TabIndex = 0;            this.label233.Tag = "248";            this.label233.Text = "162";            //             // label234            //             this.label234.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label234.AutoSize = true;            this.label234.Location = new System.Drawing.Point(2351, 331);            this.label234.Name = "label234";            this.label234.Size = new System.Drawing.Size(31, 15);            this.label234.TabIndex = 0;            this.label234.Tag = "247";            this.label234.Text = "162";            //             // label235            //             this.label235.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label235.AutoSize = true;            this.label235.Location = new System.Drawing.Point(2256, 331);            this.label235.Name = "label235";            this.label235.Size = new System.Drawing.Size(31, 15);            this.label235.TabIndex = 0;            this.label235.Tag = "237";            this.label235.Text = "162";            //             // label236            //             this.label236.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label236.AutoSize = true;            this.label236.Location = new System.Drawing.Point(2256, 371);            this.label236.Name = "label236";            this.label236.Size = new System.Drawing.Size(31, 15);            this.label236.TabIndex = 0;            this.label236.Tag = "238";            this.label236.Text = "162";            //             // label237            //             this.label237.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label237.AutoSize = true;            this.label237.Location = new System.Drawing.Point(2256, 411);            this.label237.Name = "label237";            this.label237.Size = new System.Drawing.Size(31, 15);            this.label237.TabIndex = 0;            this.label237.Tag = "239";            this.label237.Text = "162";            //             // label238            //             this.label238.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label238.AutoSize = true;            this.label238.Location = new System.Drawing.Point(2256, 451);            this.label238.Name = "label238";            this.label238.Size = new System.Drawing.Size(31, 15);            this.label238.TabIndex = 0;            this.label238.Tag = "240";            this.label238.Text = "162";            //             // label239            //             this.label239.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label239.AutoSize = true;            this.label239.Location = new System.Drawing.Point(2161, 451);            this.label239.Name = "label239";            this.label239.Size = new System.Drawing.Size(31, 15);            this.label239.TabIndex = 0;            this.label239.Tag = "230";            this.label239.Text = "162";            //             // label240            //             this.label240.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label240.AutoSize = true;            this.label240.Location = new System.Drawing.Point(2161, 411);            this.label240.Name = "label240";            this.label240.Size = new System.Drawing.Size(31, 15);            this.label240.TabIndex = 0;            this.label240.Tag = "229";            this.label240.Text = "162";            //             // label241            //             this.label241.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label241.AutoSize = true;            this.label241.Location = new System.Drawing.Point(2161, 371);            this.label241.Name = "label241";            this.label241.Size = new System.Drawing.Size(31, 15);            this.label241.TabIndex = 0;            this.label241.Tag = "228";            this.label241.Text = "162";            //             // label242            //             this.label242.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label242.AutoSize = true;            this.label242.Location = new System.Drawing.Point(2161, 331);            this.label242.Name = "label242";            this.label242.Size = new System.Drawing.Size(31, 15);            this.label242.TabIndex = 0;            this.label242.Tag = "227";            this.label242.Text = "162";            //             // label243            //             this.label243.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label243.AutoSize = true;            this.label243.Location = new System.Drawing.Point(2066, 331);            this.label243.Name = "label243";            this.label243.Size = new System.Drawing.Size(31, 15);            this.label243.TabIndex = 0;            this.label243.Tag = "217";            this.label243.Text = "162";            //             // label244            //             this.label244.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label244.AutoSize = true;            this.label244.Location = new System.Drawing.Point(2066, 371);            this.label244.Name = "label244";            this.label244.Size = new System.Drawing.Size(31, 15);            this.label244.TabIndex = 0;            this.label244.Tag = "218";            this.label244.Text = "162";            //             // label245            //             this.label245.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label245.AutoSize = true;            this.label245.Location = new System.Drawing.Point(2066, 411);            this.label245.Name = "label245";            this.label245.Size = new System.Drawing.Size(31, 15);            this.label245.TabIndex = 0;            this.label245.Tag = "219";            this.label245.Text = "162";            //             // label246            //             this.label246.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label246.AutoSize = true;            this.label246.Location = new System.Drawing.Point(2066, 451);            this.label246.Name = "label246";            this.label246.Size = new System.Drawing.Size(31, 15);            this.label246.TabIndex = 0;            this.label246.Tag = "220";            this.label246.Text = "162";            //             // label248            //             this.label248.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label248.AutoSize = true;            this.label248.Location = new System.Drawing.Point(1971, 411);            this.label248.Name = "label248";            this.label248.Size = new System.Drawing.Size(31, 15);            this.label248.TabIndex = 0;            this.label248.Tag = "209";            this.label248.Text = "162";            //             // label247            //             this.label247.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label247.AutoSize = true;            this.label247.Location = new System.Drawing.Point(1971, 451);            this.label247.Name = "label247";            this.label247.Size = new System.Drawing.Size(31, 15);            this.label247.TabIndex = 0;            this.label247.Tag = "210";            this.label247.Text = "162";            //             // label249            //             this.label249.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label249.AutoSize = true;            this.label249.Location = new System.Drawing.Point(1971, 371);            this.label249.Name = "label249";            this.label249.Size = new System.Drawing.Size(31, 15);            this.label249.TabIndex = 0;            this.label249.Tag = "208";            this.label249.Text = "162";            //             // label250            //             this.label250.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label250.AutoSize = true;            this.label250.Location = new System.Drawing.Point(1971, 331);            this.label250.Name = "label250";            this.label250.Size = new System.Drawing.Size(31, 15);            this.label250.TabIndex = 0;            this.label250.Tag = "207";            this.label250.Text = "162";            //             // label251            //             this.label251.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label251.AutoSize = true;            this.label251.Location = new System.Drawing.Point(1876, 331);            this.label251.Name = "label251";            this.label251.Size = new System.Drawing.Size(31, 15);            this.label251.TabIndex = 0;            this.label251.Tag = "197";            this.label251.Text = "162";            //             // label252            //             this.label252.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label252.AutoSize = true;            this.label252.Location = new System.Drawing.Point(1876, 371);            this.label252.Name = "label252";            this.label252.Size = new System.Drawing.Size(31, 15);            this.label252.TabIndex = 0;            this.label252.Tag = "198";            this.label252.Text = "162";            //             // label253            //             this.label253.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label253.AutoSize = true;            this.label253.Location = new System.Drawing.Point(1876, 411);            this.label253.Name = "label253";            this.label253.Size = new System.Drawing.Size(31, 15);            this.label253.TabIndex = 0;            this.label253.Tag = "199";            this.label253.Text = "162";            //             // label254            //             this.label254.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label254.AutoSize = true;            this.label254.Location = new System.Drawing.Point(1876, 451);            this.label254.Name = "label254";            this.label254.Size = new System.Drawing.Size(31, 15);            this.label254.TabIndex = 0;            this.label254.Tag = "200";            this.label254.Text = "162";            //             // label255            //             this.label255.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label255.AutoSize = true;            this.label255.Location = new System.Drawing.Point(1781, 451);            this.label255.Name = "label255";            this.label255.Size = new System.Drawing.Size(31, 15);            this.label255.TabIndex = 0;            this.label255.Tag = "190";            this.label255.Text = "162";            //             // label256            //             this.label256.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label256.AutoSize = true;            this.label256.Location = new System.Drawing.Point(1781, 411);            this.label256.Name = "label256";            this.label256.Size = new System.Drawing.Size(31, 15);            this.label256.TabIndex = 0;            this.label256.Tag = "189";            this.label256.Text = "162";            //             // label257            //             this.label257.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label257.AutoSize = true;            this.label257.Location = new System.Drawing.Point(1781, 371);            this.label257.Name = "label257";            this.label257.Size = new System.Drawing.Size(31, 15);            this.label257.TabIndex = 0;            this.label257.Tag = "188";            this.label257.Text = "162";            //             // label258            //             this.label258.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label258.AutoSize = true;            this.label258.Location = new System.Drawing.Point(1781, 331);            this.label258.Name = "label258";            this.label258.Size = new System.Drawing.Size(31, 15);            this.label258.TabIndex = 0;            this.label258.Tag = "187";            this.label258.Text = "162";            //             // label259            //             this.label259.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label259.AutoSize = true;            this.label259.Location = new System.Drawing.Point(1686, 331);            this.label259.Name = "label259";            this.label259.Size = new System.Drawing.Size(31, 15);            this.label259.TabIndex = 0;            this.label259.Tag = "177";            this.label259.Text = "162";            //             // label260            //             this.label260.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label260.AutoSize = true;            this.label260.Location = new System.Drawing.Point(1686, 371);            this.label260.Name = "label260";            this.label260.Size = new System.Drawing.Size(31, 15);            this.label260.TabIndex = 0;            this.label260.Tag = "178";            this.label260.Text = "162";            //             // label261            //             this.label261.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label261.AutoSize = true;            this.label261.Location = new System.Drawing.Point(1686, 411);            this.label261.Name = "label261";            this.label261.Size = new System.Drawing.Size(31, 15);            this.label261.TabIndex = 0;            this.label261.Tag = "179";            this.label261.Text = "162";            //             // label262            //             this.label262.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label262.AutoSize = true;            this.label262.Location = new System.Drawing.Point(1686, 451);            this.label262.Name = "label262";            this.label262.Size = new System.Drawing.Size(31, 15);            this.label262.TabIndex = 0;            this.label262.Tag = "180";            this.label262.Text = "162";            //             // label265            //             this.label265.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label265.AutoSize = true;            this.label265.Location = new System.Drawing.Point(1591, 451);            this.label265.Name = "label265";            this.label265.Size = new System.Drawing.Size(31, 15);            this.label265.TabIndex = 0;            this.label265.Tag = "170";            this.label265.Text = "162";            //             // label266            //             this.label266.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label266.AutoSize = true;            this.label266.Location = new System.Drawing.Point(1591, 411);            this.label266.Name = "label266";            this.label266.Size = new System.Drawing.Size(31, 15);            this.label266.TabIndex = 0;            this.label266.Tag = "169";            this.label266.Text = "162";            //             // label267            //             this.label267.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label267.AutoSize = true;            this.label267.Location = new System.Drawing.Point(1591, 371);            this.label267.Name = "label267";            this.label267.Size = new System.Drawing.Size(31, 15);            this.label267.TabIndex = 0;            this.label267.Tag = "168";            this.label267.Text = "162";            //             // label268            //             this.label268.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label268.AutoSize = true;            this.label268.Location = new System.Drawing.Point(1591, 331);            this.label268.Name = "label268";            this.label268.Size = new System.Drawing.Size(31, 15);            this.label268.TabIndex = 0;            this.label268.Tag = "167";            this.label268.Text = "162";            //             // label269            //             this.label269.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label269.AutoSize = true;            this.label269.Location = new System.Drawing.Point(1496, 331);            this.label269.Name = "label269";            this.label269.Size = new System.Drawing.Size(31, 15);            this.label269.TabIndex = 0;            this.label269.Tag = "157";            this.label269.Text = "162";            //             // label270            //             this.label270.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label270.AutoSize = true;            this.label270.Location = new System.Drawing.Point(1496, 371);            this.label270.Name = "label270";            this.label270.Size = new System.Drawing.Size(31, 15);            this.label270.TabIndex = 0;            this.label270.Tag = "158";            this.label270.Text = "162";            //             // label271            //             this.label271.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label271.AutoSize = true;            this.label271.Location = new System.Drawing.Point(1496, 411);            this.label271.Name = "label271";            this.label271.Size = new System.Drawing.Size(31, 15);            this.label271.TabIndex = 0;            this.label271.Tag = "159";            this.label271.Text = "162";            //             // label272            //             this.label272.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label272.AutoSize = true;            this.label272.Location = new System.Drawing.Point(1496, 451);            this.label272.Name = "label272";            this.label272.Size = new System.Drawing.Size(31, 15);            this.label272.TabIndex = 0;            this.label272.Tag = "160";            this.label272.Text = "162";            //             // label273            //             this.label273.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label273.AutoSize = true;            this.label273.Location = new System.Drawing.Point(1401, 451);            this.label273.Name = "label273";            this.label273.Size = new System.Drawing.Size(31, 15);            this.label273.TabIndex = 0;            this.label273.Tag = "150";            this.label273.Text = "162";            //             // label264            //             this.label264.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label264.AutoSize = true;            this.label264.Location = new System.Drawing.Point(1401, 411);            this.label264.Name = "label264";            this.label264.Size = new System.Drawing.Size(31, 15);            this.label264.TabIndex = 0;            this.label264.Tag = "149";            this.label264.Text = "162";            //             // label263            //             this.label263.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label263.AutoSize = true;            this.label263.Location = new System.Drawing.Point(1401, 371);            this.label263.Name = "label263";            this.label263.Size = new System.Drawing.Size(31, 15);            this.label263.TabIndex = 0;            this.label263.Tag = "148";            this.label263.Text = "162";            //             // label274            //             this.label274.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label274.AutoSize = true;            this.label274.Location = new System.Drawing.Point(1401, 331);            this.label274.Name = "label274";            this.label274.Size = new System.Drawing.Size(31, 15);            this.label274.TabIndex = 0;            this.label274.Tag = "147";            this.label274.Text = "162";            //             // label275            //             this.label275.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label275.AutoSize = true;            this.label275.Location = new System.Drawing.Point(1306, 331);            this.label275.Name = "label275";            this.label275.Size = new System.Drawing.Size(31, 15);            this.label275.TabIndex = 0;            this.label275.Tag = "137";            this.label275.Text = "162";            //             // label276            //             this.label276.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label276.AutoSize = true;            this.label276.Location = new System.Drawing.Point(1306, 371);            this.label276.Name = "label276";            this.label276.Size = new System.Drawing.Size(31, 15);            this.label276.TabIndex = 0;            this.label276.Tag = "138";            this.label276.Text = "162";            //             // label277            //             this.label277.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label277.AutoSize = true;            this.label277.Location = new System.Drawing.Point(1306, 411);            this.label277.Name = "label277";            this.label277.Size = new System.Drawing.Size(31, 15);            this.label277.TabIndex = 0;            this.label277.Tag = "139";            this.label277.Text = "162";            //             // label278            //             this.label278.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label278.AutoSize = true;            this.label278.Location = new System.Drawing.Point(1306, 451);            this.label278.Name = "label278";            this.label278.Size = new System.Drawing.Size(31, 15);            this.label278.TabIndex = 0;            this.label278.Tag = "140";            this.label278.Text = "162";            //             // label279            //             this.label279.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label279.AutoSize = true;            this.label279.Location = new System.Drawing.Point(1211, 451);            this.label279.Name = "label279";            this.label279.Size = new System.Drawing.Size(31, 15);            this.label279.TabIndex = 0;            this.label279.Tag = "130";            this.label279.Text = "162";            //             // label280            //             this.label280.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label280.AutoSize = true;            this.label280.Location = new System.Drawing.Point(1211, 411);            this.label280.Name = "label280";            this.label280.Size = new System.Drawing.Size(31, 15);            this.label280.TabIndex = 0;            this.label280.Tag = "129";            this.label280.Text = "162";            //             // label281            //             this.label281.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label281.AutoSize = true;            this.label281.Location = new System.Drawing.Point(1211, 371);            this.label281.Name = "label281";            this.label281.Size = new System.Drawing.Size(31, 15);            this.label281.TabIndex = 0;            this.label281.Tag = "128";            this.label281.Text = "162";            //             // label282            //             this.label282.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label282.AutoSize = true;            this.label282.Location = new System.Drawing.Point(1211, 331);            this.label282.Name = "label282";            this.label282.Size = new System.Drawing.Size(31, 15);            this.label282.TabIndex = 0;            this.label282.Tag = "127";            this.label282.Text = "162";            //             // label283            //             this.label283.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label283.AutoSize = true;            this.label283.Location = new System.Drawing.Point(1116, 331);            this.label283.Name = "label283";            this.label283.Size = new System.Drawing.Size(31, 15);            this.label283.TabIndex = 0;            this.label283.Tag = "117";            this.label283.Text = "162";            //             // label284            //             this.label284.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label284.AutoSize = true;            this.label284.Location = new System.Drawing.Point(1116, 371);            this.label284.Name = "label284";            this.label284.Size = new System.Drawing.Size(31, 15);            this.label284.TabIndex = 0;            this.label284.Tag = "118";            this.label284.Text = "162";            //             // label285            //             this.label285.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label285.AutoSize = true;            this.label285.Location = new System.Drawing.Point(1116, 411);            this.label285.Name = "label285";            this.label285.Size = new System.Drawing.Size(31, 15);            this.label285.TabIndex = 0;            this.label285.Tag = "119";            this.label285.Text = "162";            //             // label286            //             this.label286.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label286.AutoSize = true;            this.label286.Location = new System.Drawing.Point(1116, 451);            this.label286.Name = "label286";            this.label286.Size = new System.Drawing.Size(31, 15);            this.label286.TabIndex = 0;            this.label286.Tag = "120";            this.label286.Text = "162";            //             // label287            //             this.label287.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label287.AutoSize = true;            this.label287.Location = new System.Drawing.Point(1021, 451);            this.label287.Name = "label287";            this.label287.Size = new System.Drawing.Size(31, 15);            this.label287.TabIndex = 0;            this.label287.Tag = "110";            this.label287.Text = "162";            //             // label288            //             this.label288.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label288.AutoSize = true;            this.label288.Location = new System.Drawing.Point(1021, 411);            this.label288.Name = "label288";            this.label288.Size = new System.Drawing.Size(31, 15);            this.label288.TabIndex = 0;            this.label288.Tag = "109";            this.label288.Text = "162";            //             // label289            //             this.label289.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label289.AutoSize = true;            this.label289.Location = new System.Drawing.Point(1021, 371);            this.label289.Name = "label289";            this.label289.Size = new System.Drawing.Size(31, 15);            this.label289.TabIndex = 0;            this.label289.Tag = "108";            this.label289.Text = "162";            //             // label290            //             this.label290.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label290.AutoSize = true;            this.label290.Location = new System.Drawing.Point(1021, 331);            this.label290.Name = "label290";            this.label290.Size = new System.Drawing.Size(31, 15);            this.label290.TabIndex = 0;            this.label290.Tag = "107";            this.label290.Text = "162";            //             // label291            //             this.label291.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label291.AutoSize = true;            this.label291.Location = new System.Drawing.Point(926, 331);            this.label291.Name = "label291";            this.label291.Size = new System.Drawing.Size(31, 15);            this.label291.TabIndex = 0;            this.label291.Tag = "97";            this.label291.Text = "162";            //             // label292            //             this.label292.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label292.AutoSize = true;            this.label292.Location = new System.Drawing.Point(926, 371);            this.label292.Name = "label292";            this.label292.Size = new System.Drawing.Size(31, 15);            this.label292.TabIndex = 0;            this.label292.Tag = "98";            this.label292.Text = "162";            //             // label293            //             this.label293.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label293.AutoSize = true;            this.label293.Location = new System.Drawing.Point(926, 411);            this.label293.Name = "label293";            this.label293.Size = new System.Drawing.Size(31, 15);            this.label293.TabIndex = 0;            this.label293.Tag = "99";            this.label293.Text = "162";            //             // label294            //             this.label294.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label294.AutoSize = true;            this.label294.Location = new System.Drawing.Point(926, 451);            this.label294.Name = "label294";            this.label294.Size = new System.Drawing.Size(31, 15);            this.label294.TabIndex = 0;            this.label294.Tag = "100";            this.label294.Text = "162";            //             // label295            //             this.label295.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label295.AutoSize = true;            this.label295.Location = new System.Drawing.Point(831, 451);            this.label295.Name = "label295";            this.label295.Size = new System.Drawing.Size(31, 15);            this.label295.TabIndex = 0;            this.label295.Tag = "90";            this.label295.Text = "162";            //             // label296            //             this.label296.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label296.AutoSize = true;            this.label296.Location = new System.Drawing.Point(831, 411);            this.label296.Name = "label296";            this.label296.Size = new System.Drawing.Size(31, 15);            this.label296.TabIndex = 0;            this.label296.Tag = "89";            this.label296.Text = "162";            //             // label297            //             this.label297.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label297.AutoSize = true;            this.label297.Location = new System.Drawing.Point(831, 371);            this.label297.Name = "label297";            this.label297.Size = new System.Drawing.Size(31, 15);            this.label297.TabIndex = 0;            this.label297.Tag = "88";            this.label297.Text = "162";            //             // label298            //             this.label298.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label298.AutoSize = true;            this.label298.Location = new System.Drawing.Point(831, 331);            this.label298.Name = "label298";            this.label298.Size = new System.Drawing.Size(31, 15);            this.label298.TabIndex = 0;            this.label298.Tag = "87";            this.label298.Text = "162";            //             // label299            //             this.label299.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label299.AutoSize = true;            this.label299.Location = new System.Drawing.Point(736, 331);            this.label299.Name = "label299";            this.label299.Size = new System.Drawing.Size(31, 15);            this.label299.TabIndex = 0;            this.label299.Tag = "77";            this.label299.Text = "162";            //             // label300            //             this.label300.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label300.AutoSize = true;            this.label300.Location = new System.Drawing.Point(736, 371);            this.label300.Name = "label300";            this.label300.Size = new System.Drawing.Size(31, 15);            this.label300.TabIndex = 0;            this.label300.Tag = "78";            this.label300.Text = "162";            //             // label301            //             this.label301.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label301.AutoSize = true;            this.label301.Location = new System.Drawing.Point(736, 411);            this.label301.Name = "label301";            this.label301.Size = new System.Drawing.Size(31, 15);            this.label301.TabIndex = 0;            this.label301.Tag = "79";            this.label301.Text = "162";            //             // label302            //             this.label302.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label302.AutoSize = true;            this.label302.Location = new System.Drawing.Point(736, 451);            this.label302.Name = "label302";            this.label302.Size = new System.Drawing.Size(31, 15);            this.label302.TabIndex = 0;            this.label302.Tag = "80";            this.label302.Text = "162";            //             // label303            //             this.label303.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label303.AutoSize = true;            this.label303.Location = new System.Drawing.Point(641, 451);            this.label303.Name = "label303";            this.label303.Size = new System.Drawing.Size(31, 15);            this.label303.TabIndex = 0;            this.label303.Tag = "70";            this.label303.Text = "162";            //             // label304            //             this.label304.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label304.AutoSize = true;            this.label304.Location = new System.Drawing.Point(641, 411);            this.label304.Name = "label304";            this.label304.Size = new System.Drawing.Size(31, 15);            this.label304.TabIndex = 0;            this.label304.Tag = "69";            this.label304.Text = "162";            //             // label305            //             this.label305.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label305.AutoSize = true;            this.label305.Location = new System.Drawing.Point(641, 371);            this.label305.Name = "label305";            this.label305.Size = new System.Drawing.Size(31, 15);            this.label305.TabIndex = 0;            this.label305.Tag = "68";            this.label305.Text = "162";            //             // label306            //             this.label306.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label306.AutoSize = true;            this.label306.Location = new System.Drawing.Point(641, 331);            this.label306.Name = "label306";            this.label306.Size = new System.Drawing.Size(31, 15);            this.label306.TabIndex = 0;            this.label306.Tag = "67";            this.label306.Text = "162";            //             // label307            //             this.label307.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label307.AutoSize = true;            this.label307.Location = new System.Drawing.Point(546, 331);            this.label307.Name = "label307";            this.label307.Size = new System.Drawing.Size(31, 15);            this.label307.TabIndex = 0;            this.label307.Tag = "57";            this.label307.Text = "162";            //             // label308            //             this.label308.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label308.AutoSize = true;            this.label308.Location = new System.Drawing.Point(546, 371);            this.label308.Name = "label308";            this.label308.Size = new System.Drawing.Size(31, 15);            this.label308.TabIndex = 0;            this.label308.Tag = "58";            this.label308.Text = "162";            //             // label309            //             this.label309.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label309.AutoSize = true;            this.label309.Location = new System.Drawing.Point(546, 411);            this.label309.Name = "label309";            this.label309.Size = new System.Drawing.Size(31, 15);            this.label309.TabIndex = 0;            this.label309.Tag = "59";            this.label309.Text = "162";            //             // label310            //             this.label310.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label310.AutoSize = true;            this.label310.Location = new System.Drawing.Point(546, 451);            this.label310.Name = "label310";            this.label310.Size = new System.Drawing.Size(31, 15);            this.label310.TabIndex = 0;            this.label310.Tag = "60";            this.label310.Text = "162";            //             // label311            //             this.label311.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label311.AutoSize = true;            this.label311.Location = new System.Drawing.Point(451, 451);            this.label311.Name = "label311";            this.label311.Size = new System.Drawing.Size(31, 15);            this.label311.TabIndex = 0;            this.label311.Tag = "50";            this.label311.Text = "162";            //             // label312            //             this.label312.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label312.AutoSize = true;            this.label312.Location = new System.Drawing.Point(451, 411);            this.label312.Name = "label312";            this.label312.Size = new System.Drawing.Size(31, 15);            this.label312.TabIndex = 0;            this.label312.Tag = "49";            this.label312.Text = "162";            //             // label313            //             this.label313.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label313.AutoSize = true;            this.label313.Location = new System.Drawing.Point(451, 371);            this.label313.Name = "label313";            this.label313.Size = new System.Drawing.Size(31, 15);            this.label313.TabIndex = 0;            this.label313.Tag = "48";            this.label313.Text = "162";            //             // label314            //             this.label314.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label314.AutoSize = true;            this.label314.Location = new System.Drawing.Point(451, 331);            this.label314.Name = "label314";            this.label314.Size = new System.Drawing.Size(31, 15);            this.label314.TabIndex = 0;            this.label314.Tag = "47";            this.label314.Text = "162";            //             // label315            //             this.label315.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label315.AutoSize = true;            this.label315.Location = new System.Drawing.Point(356, 331);            this.label315.Name = "label315";            this.label315.Size = new System.Drawing.Size(31, 15);            this.label315.TabIndex = 0;            this.label315.Tag = "37";            this.label315.Text = "162";            //             // label316            //             this.label316.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label316.AutoSize = true;            this.label316.Location = new System.Drawing.Point(356, 371);            this.label316.Name = "label316";            this.label316.Size = new System.Drawing.Size(31, 15);            this.label316.TabIndex = 0;            this.label316.Tag = "38";            this.label316.Text = "162";            //             // label317            //             this.label317.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label317.AutoSize = true;            this.label317.Location = new System.Drawing.Point(356, 411);            this.label317.Name = "label317";            this.label317.Size = new System.Drawing.Size(31, 15);            this.label317.TabIndex = 0;            this.label317.Tag = "39";            this.label317.Text = "162";            //             // label318            //             this.label318.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label318.AutoSize = true;            this.label318.Location = new System.Drawing.Point(356, 451);            this.label318.Name = "label318";            this.label318.Size = new System.Drawing.Size(31, 15);            this.label318.TabIndex = 0;            this.label318.Tag = "40";            this.label318.Text = "162";            //             // label319            //             this.label319.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label319.AutoSize = true;            this.label319.Location = new System.Drawing.Point(261, 451);            this.label319.Name = "label319";            this.label319.Size = new System.Drawing.Size(31, 15);            this.label319.TabIndex = 0;            this.label319.Tag = "30";            this.label319.Text = "162";            //             // label320            //             this.label320.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label320.AutoSize = true;            this.label320.Location = new System.Drawing.Point(261, 411);            this.label320.Name = "label320";            this.label320.Size = new System.Drawing.Size(31, 15);            this.label320.TabIndex = 0;            this.label320.Tag = "29";            this.label320.Text = "162";            //             // label321            //             this.label321.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label321.AutoSize = true;            this.label321.Location = new System.Drawing.Point(261, 371);            this.label321.Name = "label321";            this.label321.Size = new System.Drawing.Size(31, 15);            this.label321.TabIndex = 0;            this.label321.Tag = "28";            this.label321.Text = "162";            //             // label322            //             this.label322.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label322.AutoSize = true;            this.label322.Location = new System.Drawing.Point(261, 331);            this.label322.Name = "label322";            this.label322.Size = new System.Drawing.Size(31, 15);            this.label322.TabIndex = 0;            this.label322.Tag = "27";            this.label322.Text = "162";            //             // label323            //             this.label323.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label323.AutoSize = true;            this.label323.Location = new System.Drawing.Point(166, 331);            this.label323.Name = "label323";            this.label323.Size = new System.Drawing.Size(31, 15);            this.label323.TabIndex = 0;            this.label323.Tag = "17";            this.label323.Text = "162";            //             // label324            //             this.label324.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label324.AutoSize = true;            this.label324.Location = new System.Drawing.Point(166, 371);            this.label324.Name = "label324";            this.label324.Size = new System.Drawing.Size(31, 15);            this.label324.TabIndex = 0;            this.label324.Tag = "18";            this.label324.Text = "162";            //             // label325            //             this.label325.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label325.AutoSize = true;            this.label325.Location = new System.Drawing.Point(166, 411);            this.label325.Name = "label325";            this.label325.Size = new System.Drawing.Size(31, 15);            this.label325.TabIndex = 0;            this.label325.Tag = "19";            this.label325.Text = "162";            //             // label326            //             this.label326.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label326.AutoSize = true;            this.label326.Location = new System.Drawing.Point(166, 451);            this.label326.Name = "label326";            this.label326.Size = new System.Drawing.Size(31, 15);            this.label326.TabIndex = 0;            this.label326.Tag = "20";            this.label326.Text = "162";            //             // label327            //             this.label327.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label327.AutoSize = true;            this.label327.Location = new System.Drawing.Point(71, 451);            this.label327.Name = "label327";            this.label327.Size = new System.Drawing.Size(31, 15);            this.label327.TabIndex = 0;            this.label327.Tag = "10";            this.label327.Text = "162";            //             // label328            //             this.label328.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label328.AutoSize = true;            this.label328.Location = new System.Drawing.Point(71, 411);            this.label328.Name = "label328";            this.label328.Size = new System.Drawing.Size(31, 15);            this.label328.TabIndex = 0;            this.label328.Tag = "9";            this.label328.Text = "162";            //             // label329            //             this.label329.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label329.AutoSize = true;            this.label329.Location = new System.Drawing.Point(71, 371);            this.label329.Name = "label329";            this.label329.Size = new System.Drawing.Size(31, 15);            this.label329.TabIndex = 0;            this.label329.Tag = "8";            this.label329.Text = "162";            //             // label330            //             this.label330.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label330.AutoSize = true;            this.label330.Location = new System.Drawing.Point(71, 331);            this.label330.Name = "label330";            this.label330.Size = new System.Drawing.Size(31, 15);            this.label330.TabIndex = 0;            this.label330.Tag = "7";            this.label330.Text = "162";            //             // uctl_AGV2            //             this.uctl_AGV2.AllowDrop = true;            this.uctl_AGV2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_AGV2, 2);            deviceStateDefaultList3.Device_ConnectionMes = false;            deviceStateDefaultList3.Device_Name = "";            deviceStateDefaultList3.Device_OnLine = false;            deviceStateDefaultList3.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList3.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_AGV2.deviceStateDefaultList = deviceStateDefaultList3;            this.uctl_AGV2.Location = new System.Drawing.Point(232, 762);            this.uctl_AGV2.Name = "uctl_AGV2";            this.tableLayoutPanel1.SetRowSpan(this.uctl_AGV2, 5);            this.uctl_AGV2.Size = new System.Drawing.Size(184, 193);            this.uctl_AGV2.TabIndex = 12;            this.uctl_AGV2.UserTag = ((short)(0));            //             // label163            //             this.label163.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label163.AutoSize = true;            this.label163.Location = new System.Drawing.Point(459, 771);            this.label163.Name = "label163";            this.label163.Size = new System.Drawing.Size(15, 15);            this.label163.TabIndex = 4;            this.label163.Tag = "301";            this.label163.Text = "1";            //             // label173            //             this.label173.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label173.AutoSize = true;            this.label173.Location = new System.Drawing.Point(451, 811);            this.label173.Name = "label173";            this.label173.Size = new System.Drawing.Size(31, 15);            this.label173.TabIndex = 4;            this.label173.Tag = "302";            this.label173.Text = "164";            //             // label174            //             this.label174.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label174.AutoSize = true;            this.label174.Location = new System.Drawing.Point(451, 851);            this.label174.Name = "label174";            this.label174.Size = new System.Drawing.Size(31, 15);            this.label174.TabIndex = 4;            this.label174.Tag = "303";            this.label174.Text = "165";            //             // label184            //             this.label184.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label184.AutoSize = true;            this.label184.Location = new System.Drawing.Point(546, 851);            this.label184.Name = "label184";            this.label184.Size = new System.Drawing.Size(31, 15);            this.label184.TabIndex = 4;            this.label184.Tag = "306";            this.label184.Text = "168";            //             // label175            //             this.label175.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label175.AutoSize = true;            this.label175.Location = new System.Drawing.Point(546, 811);            this.label175.Name = "label175";            this.label175.Size = new System.Drawing.Size(31, 15);            this.label175.TabIndex = 4;            this.label175.Tag = "305";            this.label175.Text = "167";            //             // label164            //             this.label164.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label164.AutoSize = true;            this.label164.Location = new System.Drawing.Point(554, 771);            this.label164.Name = "label164";            this.label164.Size = new System.Drawing.Size(15, 15);            this.label164.TabIndex = 4;            this.label164.Tag = "304";            this.label164.Text = "2";            //             // label165            //             this.label165.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label165.AutoSize = true;            this.label165.Location = new System.Drawing.Point(649, 771);            this.label165.Name = "label165";            this.label165.Size = new System.Drawing.Size(15, 15);            this.label165.TabIndex = 4;            this.label165.Tag = "307";            this.label165.Text = "3";            //             // label176            //             this.label176.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label176.AutoSize = true;            this.label176.Location = new System.Drawing.Point(641, 811);            this.label176.Name = "label176";            this.label176.Size = new System.Drawing.Size(31, 15);            this.label176.TabIndex = 4;            this.label176.Tag = "308";            this.label176.Text = "170";            //             // label185            //             this.label185.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label185.AutoSize = true;            this.label185.Location = new System.Drawing.Point(641, 851);            this.label185.Name = "label185";            this.label185.Size = new System.Drawing.Size(31, 15);            this.label185.TabIndex = 4;            this.label185.Tag = "309";            this.label185.Text = "171";            //             // label166            //             this.label166.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label166.AutoSize = true;            this.label166.Location = new System.Drawing.Point(744, 771);            this.label166.Name = "label166";            this.label166.Size = new System.Drawing.Size(15, 15);            this.label166.TabIndex = 4;            this.label166.Tag = "310";            this.label166.Text = "4";            //             // label177            //             this.label177.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label177.AutoSize = true;            this.label177.Location = new System.Drawing.Point(736, 811);            this.label177.Name = "label177";            this.label177.Size = new System.Drawing.Size(31, 15);            this.label177.TabIndex = 4;            this.label177.Tag = "311";            this.label177.Text = "173";            //             // label186            //             this.label186.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label186.AutoSize = true;            this.label186.Location = new System.Drawing.Point(736, 851);            this.label186.Name = "label186";            this.label186.Size = new System.Drawing.Size(31, 15);            this.label186.TabIndex = 4;            this.label186.Tag = "312";            this.label186.Text = "174";            //             // label167            //             this.label167.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label167.AutoSize = true;            this.label167.Location = new System.Drawing.Point(831, 771);            this.label167.Name = "label167";            this.label167.Size = new System.Drawing.Size(31, 15);            this.label167.TabIndex = 4;            this.label167.Tag = "313";            this.label167.Text = "175";            //             // label178            //             this.label178.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label178.AutoSize = true;            this.label178.Location = new System.Drawing.Point(831, 811);            this.label178.Name = "label178";            this.label178.Size = new System.Drawing.Size(31, 15);            this.label178.TabIndex = 4;            this.label178.Tag = "314";            this.label178.Text = "176";            //             // label187            //             this.label187.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label187.AutoSize = true;            this.label187.Location = new System.Drawing.Point(831, 851);            this.label187.Name = "label187";            this.label187.Size = new System.Drawing.Size(31, 15);            this.label187.TabIndex = 4;            this.label187.Tag = "315";            this.label187.Text = "177";            //             // label168            //             this.label168.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label168.AutoSize = true;            this.label168.Location = new System.Drawing.Point(926, 771);            this.label168.Name = "label168";            this.label168.Size = new System.Drawing.Size(31, 15);            this.label168.TabIndex = 4;            this.label168.Tag = "316";            this.label168.Text = "178";            //             // label179            //             this.label179.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label179.AutoSize = true;            this.label179.Location = new System.Drawing.Point(926, 811);            this.label179.Name = "label179";            this.label179.Size = new System.Drawing.Size(31, 15);            this.label179.TabIndex = 4;            this.label179.Tag = "317";            this.label179.Text = "179";            //             // label188            //             this.label188.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label188.AutoSize = true;            this.label188.Location = new System.Drawing.Point(926, 851);            this.label188.Name = "label188";            this.label188.Size = new System.Drawing.Size(31, 15);            this.label188.TabIndex = 4;            this.label188.Tag = "318";            this.label188.Text = "180";            //             // label169            //             this.label169.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label169.AutoSize = true;            this.label169.Location = new System.Drawing.Point(1021, 771);            this.label169.Name = "label169";            this.label169.Size = new System.Drawing.Size(31, 15);            this.label169.TabIndex = 4;            this.label169.Tag = "319";            this.label169.Text = "181";            //             // label180            //             this.label180.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label180.AutoSize = true;            this.label180.Location = new System.Drawing.Point(1021, 811);            this.label180.Name = "label180";            this.label180.Size = new System.Drawing.Size(31, 15);            this.label180.TabIndex = 4;            this.label180.Tag = "320";            this.label180.Text = "182";            //             // label189            //             this.label189.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label189.AutoSize = true;            this.label189.Location = new System.Drawing.Point(1021, 851);            this.label189.Name = "label189";            this.label189.Size = new System.Drawing.Size(31, 15);            this.label189.TabIndex = 4;            this.label189.Tag = "321";            this.label189.Text = "183";            //             // label170            //             this.label170.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label170.AutoSize = true;            this.label170.Location = new System.Drawing.Point(1116, 771);            this.label170.Name = "label170";            this.label170.Size = new System.Drawing.Size(31, 15);            this.label170.TabIndex = 4;            this.label170.Tag = "322";            this.label170.Text = "184";            //             // label181            //             this.label181.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label181.AutoSize = true;            this.label181.Location = new System.Drawing.Point(1116, 811);            this.label181.Name = "label181";            this.label181.Size = new System.Drawing.Size(31, 15);            this.label181.TabIndex = 4;            this.label181.Tag = "323";            this.label181.Text = "185";            //             // label190            //             this.label190.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label190.AutoSize = true;            this.label190.Location = new System.Drawing.Point(1116, 851);            this.label190.Name = "label190";            this.label190.Size = new System.Drawing.Size(31, 15);            this.label190.TabIndex = 4;            this.label190.Tag = "324";            this.label190.Text = "186";            //             // label171            //             this.label171.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label171.AutoSize = true;            this.label171.Location = new System.Drawing.Point(1211, 771);            this.label171.Name = "label171";            this.label171.Size = new System.Drawing.Size(31, 15);            this.label171.TabIndex = 4;            this.label171.Tag = "325";            this.label171.Text = "187";            //             // label182            //             this.label182.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label182.AutoSize = true;            this.label182.Location = new System.Drawing.Point(1211, 811);            this.label182.Name = "label182";            this.label182.Size = new System.Drawing.Size(31, 15);            this.label182.TabIndex = 4;            this.label182.Tag = "326";            this.label182.Text = "188";            //             // label191            //             this.label191.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label191.AutoSize = true;            this.label191.Location = new System.Drawing.Point(1211, 851);            this.label191.Name = "label191";            this.label191.Size = new System.Drawing.Size(31, 15);            this.label191.TabIndex = 4;            this.label191.Tag = "327";            this.label191.Text = "189";            //             // label172            //             this.label172.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label172.AutoSize = true;            this.label172.Location = new System.Drawing.Point(1306, 771);            this.label172.Name = "label172";            this.label172.Size = new System.Drawing.Size(31, 15);            this.label172.TabIndex = 4;            this.label172.Tag = "328";            this.label172.Text = "190";            //             // label183            //             this.label183.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label183.AutoSize = true;            this.label183.Location = new System.Drawing.Point(1306, 811);            this.label183.Name = "label183";            this.label183.Size = new System.Drawing.Size(31, 15);            this.label183.TabIndex = 4;            this.label183.Tag = "329";            this.label183.Text = "191";            //             // label192            //             this.label192.Anchor = System.Windows.Forms.AnchorStyles.None;            this.label192.AutoSize = true;            this.label192.Location = new System.Drawing.Point(1306, 851);            this.label192.Name = "label192";            this.label192.Size = new System.Drawing.Size(31, 15);            this.label192.TabIndex = 4;            this.label192.Tag = "330";            this.label192.Text = "192";            //             // uctl_SanZuoBiao            //             this.uctl_SanZuoBiao.AllowDrop = true;            this.uctl_SanZuoBiao.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_SanZuoBiao, 2);            deviceStateDefaultList4.Device_ConnectionMes = false;            deviceStateDefaultList4.Device_Name = "";            deviceStateDefaultList4.Device_OnLine = false;            deviceStateDefaultList4.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList4.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_SanZuoBiao.deviceStateDefaultList = deviceStateDefaultList4;            this.uctl_SanZuoBiao.Location = new System.Drawing.Point(1372, 762);            this.uctl_SanZuoBiao.Name = "uctl_SanZuoBiao";            this.tableLayoutPanel1.SetRowSpan(this.uctl_SanZuoBiao, 5);            this.uctl_SanZuoBiao.Size = new System.Drawing.Size(184, 180);            this.uctl_SanZuoBiao.TabIndex = 13;            this.uctl_SanZuoBiao.UserTag = ((short)(0));            //             // uctl_DaBiaoJI            //             this.uctl_DaBiaoJI.AllowDrop = true;            this.uctl_DaBiaoJI.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_DaBiaoJI, 2);            deviceStateDefaultList5.Device_ConnectionMes = false;            deviceStateDefaultList5.Device_Name = "";            deviceStateDefaultList5.Device_OnLine = false;            deviceStateDefaultList5.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList5.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_DaBiaoJI.deviceStateDefaultList = deviceStateDefaultList5;            this.uctl_DaBiaoJI.Location = new System.Drawing.Point(1562, 762);            this.uctl_DaBiaoJI.Name = "uctl_DaBiaoJI";            this.tableLayoutPanel1.SetRowSpan(this.uctl_DaBiaoJI, 5);            this.uctl_DaBiaoJI.Size = new System.Drawing.Size(184, 180);            this.uctl_DaBiaoJI.TabIndex = 14;            this.uctl_DaBiaoJI.UserTag = ((short)(0));            //             // uctl_ShangXiaZhan1            //             this.uctl_ShangXiaZhan1.AllowDrop = true;            this.uctl_ShangXiaZhan1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_ShangXiaZhan1, 2);            deviceStateDefaultList6.Device_ConnectionMes = false;            deviceStateDefaultList6.Device_Name = "";            deviceStateDefaultList6.Device_OnLine = false;            deviceStateDefaultList6.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList6.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_ShangXiaZhan1.deviceStateDefaultList = deviceStateDefaultList6;            this.uctl_ShangXiaZhan1.Location = new System.Drawing.Point(1752, 762);            this.uctl_ShangXiaZhan1.Name = "uctl_ShangXiaZhan1";            this.tableLayoutPanel1.SetRowSpan(this.uctl_ShangXiaZhan1, 5);            this.uctl_ShangXiaZhan1.Size = new System.Drawing.Size(184, 180);            this.uctl_ShangXiaZhan1.TabIndex = 15;            this.uctl_ShangXiaZhan1.UserTag = ((short)(0));            //             // uctl_ShangXiaZhan2            //             this.uctl_ShangXiaZhan2.AllowDrop = true;            this.uctl_ShangXiaZhan2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_ShangXiaZhan2, 2);            deviceStateDefaultList7.Device_ConnectionMes = false;            deviceStateDefaultList7.Device_Name = "";            deviceStateDefaultList7.Device_OnLine = false;            deviceStateDefaultList7.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList7.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_ShangXiaZhan2.deviceStateDefaultList = deviceStateDefaultList7;            this.uctl_ShangXiaZhan2.Location = new System.Drawing.Point(1942, 762);            this.uctl_ShangXiaZhan2.Name = "uctl_ShangXiaZhan2";            this.tableLayoutPanel1.SetRowSpan(this.uctl_ShangXiaZhan2, 5);            this.uctl_ShangXiaZhan2.Size = new System.Drawing.Size(184, 180);            this.uctl_ShangXiaZhan2.TabIndex = 16;            this.uctl_ShangXiaZhan2.UserTag = ((short)(0));            //             // uctl_ShangXiaZhan3            //             this.uctl_ShangXiaZhan3.AllowDrop = true;            this.uctl_ShangXiaZhan3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_ShangXiaZhan3, 2);            deviceStateDefaultList8.Device_ConnectionMes = false;            deviceStateDefaultList8.Device_Name = "";            deviceStateDefaultList8.Device_OnLine = false;            deviceStateDefaultList8.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList8.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_ShangXiaZhan3.deviceStateDefaultList = deviceStateDefaultList8;            this.uctl_ShangXiaZhan3.Location = new System.Drawing.Point(2132, 762);            this.uctl_ShangXiaZhan3.Name = "uctl_ShangXiaZhan3";            this.tableLayoutPanel1.SetRowSpan(this.uctl_ShangXiaZhan3, 5);            this.uctl_ShangXiaZhan3.Size = new System.Drawing.Size(184, 180);            this.uctl_ShangXiaZhan3.TabIndex = 17;            this.uctl_ShangXiaZhan3.UserTag = ((short)(0));            //             // uctl_ShangXiaZhan4            //             this.uctl_ShangXiaZhan4.AllowDrop = true;            this.uctl_ShangXiaZhan4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_ShangXiaZhan4, 2);            deviceStateDefaultList9.Device_ConnectionMes = false;            deviceStateDefaultList9.Device_Name = "";            deviceStateDefaultList9.Device_OnLine = false;            deviceStateDefaultList9.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList9.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_ShangXiaZhan4.deviceStateDefaultList = deviceStateDefaultList9;            this.uctl_ShangXiaZhan4.Location = new System.Drawing.Point(2322, 762);            this.uctl_ShangXiaZhan4.Name = "uctl_ShangXiaZhan4";            this.tableLayoutPanel1.SetRowSpan(this.uctl_ShangXiaZhan4, 5);            this.uctl_ShangXiaZhan4.Size = new System.Drawing.Size(184, 180);            this.uctl_ShangXiaZhan4.TabIndex = 18;            this.uctl_ShangXiaZhan4.UserTag = ((short)(0));            //             // uctl_ShangXiaZhan5            //             this.uctl_ShangXiaZhan5.AllowDrop = true;            this.uctl_ShangXiaZhan5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_ShangXiaZhan5, 2);            deviceStateDefaultList10.Device_ConnectionMes = false;            deviceStateDefaultList10.Device_Name = "";            deviceStateDefaultList10.Device_OnLine = false;            deviceStateDefaultList10.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList10.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_ShangXiaZhan5.deviceStateDefaultList = deviceStateDefaultList10;            this.uctl_ShangXiaZhan5.Location = new System.Drawing.Point(2512, 762);            this.uctl_ShangXiaZhan5.Name = "uctl_ShangXiaZhan5";            this.tableLayoutPanel1.SetRowSpan(this.uctl_ShangXiaZhan5, 5);            this.uctl_ShangXiaZhan5.Size = new System.Drawing.Size(184, 180);            this.uctl_ShangXiaZhan5.TabIndex = 19;            this.uctl_ShangXiaZhan5.UserTag = ((short)(0));            //             // uctl_ShangXiaZhan6            //             this.uctl_ShangXiaZhan6.AllowDrop = true;            this.uctl_ShangXiaZhan6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));            this.tableLayoutPanel1.SetColumnSpan(this.uctl_ShangXiaZhan6, 2);            deviceStateDefaultList11.Device_ConnectionMes = false;            deviceStateDefaultList11.Device_Name = "";            deviceStateDefaultList11.Device_OnLine = false;            deviceStateDefaultList11.Device_Pan = IMCS.DefaultList.EnumPlateNum.Plate_Four;            deviceStateDefaultList11.Device_Runing = IMCS.DefaultList.EnumDeviceRunState.RunState_None;            this.uctl_ShangXiaZhan6.deviceStateDefaultList = deviceStateDefaultList11;            this.uctl_ShangXiaZhan6.Location = new System.Drawing.Point(2702, 762);            this.uctl_ShangXiaZhan6.Name = "uctl_ShangXiaZhan6";            this.tableLayoutPanel1.SetRowSpan(this.uctl_ShangXiaZhan6, 5);            this.uctl_ShangXiaZhan6.Size = new System.Drawing.Size(184, 180);            this.uctl_ShangXiaZhan6.TabIndex = 20;            this.uctl_ShangXiaZhan6.UserTag = ((short)(0));            //             // UserControl6            //             this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.AutoScroll = true;            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(77)))), ((int)(((byte)(121)))));            this.Controls.Add(this.tableLayoutPanel1);            this.Name = "UserControl6";            this.Size = new System.Drawing.Size(2929, 1039);            this.tableLayoutPanel1.ResumeLayout(false);            this.tableLayoutPanel1.PerformLayout();            this.panel1.ResumeLayout(false);            this.ResumeLayout(false);        }        #endregion        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;        private System.Windows.Forms.Label label1;        private System.Windows.Forms.Label label2;        private System.Windows.Forms.Label label3;        private System.Windows.Forms.Label label4;        private System.Windows.Forms.Label label5;        private System.Windows.Forms.Label label6;        private System.Windows.Forms.Label label7;        private System.Windows.Forms.Label label8;        private System.Windows.Forms.Label label9;        private System.Windows.Forms.Label label10;        private System.Windows.Forms.Label label11;        private System.Windows.Forms.Label label12;        private System.Windows.Forms.Label label13;        private System.Windows.Forms.Label label14;        private System.Windows.Forms.Label label15;        private System.Windows.Forms.Label label16;        private System.Windows.Forms.Label label17;        private System.Windows.Forms.Label label18;        private System.Windows.Forms.Label label19;        private System.Windows.Forms.Label label20;        private System.Windows.Forms.Label label21;        private System.Windows.Forms.Label label22;        private System.Windows.Forms.Label label23;        private System.Windows.Forms.Label label24;        private System.Windows.Forms.Label label25;        private System.Windows.Forms.Label label26;        private System.Windows.Forms.Label label27;        private System.Windows.Forms.Label label28;        private System.Windows.Forms.Label label29;        private System.Windows.Forms.Label label30;        private System.Windows.Forms.Label label31;        private System.Windows.Forms.Label label32;        private System.Windows.Forms.Label label33;        private System.Windows.Forms.Label label34;        private System.Windows.Forms.Label label35;        private System.Windows.Forms.Label label36;        private System.Windows.Forms.Label label37;        private System.Windows.Forms.Label label38;        private System.Windows.Forms.Label label39;        private System.Windows.Forms.Label label40;        private System.Windows.Forms.Label label41;        private System.Windows.Forms.Label label42;        private System.Windows.Forms.Label label43;        private System.Windows.Forms.Label label44;        private System.Windows.Forms.Label label45;        private System.Windows.Forms.Label label46;        private System.Windows.Forms.Label label47;        private System.Windows.Forms.Label label48;        private System.Windows.Forms.Label label49;        private System.Windows.Forms.Label label50;        private System.Windows.Forms.Label label51;        private System.Windows.Forms.Label label52;        private System.Windows.Forms.Label label53;        private System.Windows.Forms.Label label54;        private System.Windows.Forms.Label label55;        private System.Windows.Forms.Label label56;        private System.Windows.Forms.Label label57;        private System.Windows.Forms.Label label58;        private System.Windows.Forms.Label label59;        private System.Windows.Forms.Label label60;        private System.Windows.Forms.Label label61;        private System.Windows.Forms.Label label62;        private System.Windows.Forms.Label label63;        private System.Windows.Forms.Label label64;        private System.Windows.Forms.Label label65;        private System.Windows.Forms.Label label66;        private System.Windows.Forms.Label label67;        private System.Windows.Forms.Label label68;        private System.Windows.Forms.Label label69;        private System.Windows.Forms.Label label70;        private System.Windows.Forms.Label label71;        private System.Windows.Forms.Label label72;        private System.Windows.Forms.Label label73;        private System.Windows.Forms.Label label74;        private System.Windows.Forms.Label label75;        private System.Windows.Forms.Label label76;        private System.Windows.Forms.Label label77;        private System.Windows.Forms.Label label78;        private System.Windows.Forms.Label label79;        private System.Windows.Forms.Label label80;        private System.Windows.Forms.Label label81;        private System.Windows.Forms.Label label82;        private System.Windows.Forms.Label label83;        private System.Windows.Forms.Label label84;        private System.Windows.Forms.Label label85;        private System.Windows.Forms.Label label86;        private System.Windows.Forms.Label label87;        private System.Windows.Forms.Label label88;        private System.Windows.Forms.Label label89;        private System.Windows.Forms.Label label90;        private System.Windows.Forms.Label label91;        private System.Windows.Forms.Label label92;        private System.Windows.Forms.Label label93;        private System.Windows.Forms.Label label94;        private System.Windows.Forms.Label label95;        private System.Windows.Forms.Label label96;        private System.Windows.Forms.Label label97;        private System.Windows.Forms.Label label98;        private System.Windows.Forms.Label label99;        private System.Windows.Forms.Label label100;        private System.Windows.Forms.Label label101;        private System.Windows.Forms.Label label102;        private System.Windows.Forms.Label label103;        private System.Windows.Forms.Label label104;        private System.Windows.Forms.Label label105;        private System.Windows.Forms.Label label106;        private System.Windows.Forms.Label label107;        private System.Windows.Forms.Label label108;        private System.Windows.Forms.Label label109;        private System.Windows.Forms.Label label110;        private System.Windows.Forms.Label label111;        private System.Windows.Forms.Label label112;        private System.Windows.Forms.Label label113;        private System.Windows.Forms.Label label114;        private System.Windows.Forms.Label label115;        private System.Windows.Forms.Label label116;        private System.Windows.Forms.Label label117;        private System.Windows.Forms.Label label118;        private System.Windows.Forms.Label label119;        private System.Windows.Forms.Label label120;        private System.Windows.Forms.Label label121;        private System.Windows.Forms.Label label122;        private System.Windows.Forms.Label label123;        private System.Windows.Forms.Label label124;        private System.Windows.Forms.Label label125;        private System.Windows.Forms.Label label126;        private System.Windows.Forms.Label label127;        private System.Windows.Forms.Label label128;        private System.Windows.Forms.Label label129;        private System.Windows.Forms.Label label130;        private System.Windows.Forms.Label label131;        private System.Windows.Forms.Label label132;        private System.Windows.Forms.Label label133;        private System.Windows.Forms.Label label134;        private System.Windows.Forms.Label label135;        private System.Windows.Forms.Label label136;        private System.Windows.Forms.Label label137;        private System.Windows.Forms.Label label138;        private System.Windows.Forms.Label label139;        private System.Windows.Forms.Label label140;        private System.Windows.Forms.Label label141;        private System.Windows.Forms.Label label142;        private System.Windows.Forms.Label label143;        private System.Windows.Forms.Label label144;        private System.Windows.Forms.Label label145;        private System.Windows.Forms.Label label146;        private System.Windows.Forms.Label label147;        private System.Windows.Forms.Label label148;        private System.Windows.Forms.Label label149;        private System.Windows.Forms.Label label150;        private System.Windows.Forms.Label label151;        private System.Windows.Forms.Label label152;        private System.Windows.Forms.Label label153;        private System.Windows.Forms.Label label154;        private System.Windows.Forms.Label label155;        private System.Windows.Forms.Label label156;        private System.Windows.Forms.Label label157;        private System.Windows.Forms.Label label158;        private System.Windows.Forms.Label label159;        private System.Windows.Forms.Label label160;        private System.Windows.Forms.Label label161;        private System.Windows.Forms.Label label162;        private System.Windows.Forms.Panel panel1;        private System.Windows.Forms.Panel panel2;        private System.Windows.Forms.Label label163;        private System.Windows.Forms.Label label173;        private System.Windows.Forms.Label label174;        private System.Windows.Forms.Label label184;        private System.Windows.Forms.Label label175;        private System.Windows.Forms.Label label164;        private System.Windows.Forms.Label label165;        private System.Windows.Forms.Label label176;        private System.Windows.Forms.Label label185;        private System.Windows.Forms.Label label166;        private System.Windows.Forms.Label label177;        private System.Windows.Forms.Label label186;        private System.Windows.Forms.Label label167;        private System.Windows.Forms.Label label178;        private System.Windows.Forms.Label label187;        private System.Windows.Forms.Label label168;        private System.Windows.Forms.Label label179;        private System.Windows.Forms.Label label188;        private System.Windows.Forms.Label label169;        private System.Windows.Forms.Label label180;        private System.Windows.Forms.Label label189;        private System.Windows.Forms.Label label170;        private System.Windows.Forms.Label label181;        private System.Windows.Forms.Label label190;        private System.Windows.Forms.Label label171;        private System.Windows.Forms.Label label182;        private System.Windows.Forms.Label label191;        private System.Windows.Forms.Label label172;        private System.Windows.Forms.Label label183;        private System.Windows.Forms.Label label192;        private Componen.Uctl_YJContro uctl_SiFu;        private Componen.Uctl_YJContro uctl_AGV1;        private System.Windows.Forms.Label label193;        private System.Windows.Forms.Label label194;        private System.Windows.Forms.Label label195;        private System.Windows.Forms.Label label196;        private System.Windows.Forms.Label label197;        private System.Windows.Forms.Label label198;        private System.Windows.Forms.Label label199;        private System.Windows.Forms.Label label200;        private System.Windows.Forms.Label label201;        private System.Windows.Forms.Label label202;        private System.Windows.Forms.Label label203;        private System.Windows.Forms.Label label204;        private System.Windows.Forms.Label label205;        private System.Windows.Forms.Label label206;        private System.Windows.Forms.Label label207;        private System.Windows.Forms.Label label208;        private System.Windows.Forms.Label label209;        private System.Windows.Forms.Label label210;        private System.Windows.Forms.Label label211;        private System.Windows.Forms.Label label212;        private System.Windows.Forms.Label label213;        private System.Windows.Forms.Label label214;        private System.Windows.Forms.Label label215;        private System.Windows.Forms.Label label216;        private System.Windows.Forms.Label label217;        private System.Windows.Forms.Label label218;        private System.Windows.Forms.Label label219;        private System.Windows.Forms.Label label220;        private System.Windows.Forms.Label label221;        private System.Windows.Forms.Label label222;        private System.Windows.Forms.Label label223;        private System.Windows.Forms.Label label224;        private System.Windows.Forms.Label label225;        private System.Windows.Forms.Label label226;        private System.Windows.Forms.Label label227;        private System.Windows.Forms.Label label228;        private System.Windows.Forms.Label label229;        private System.Windows.Forms.Label label230;        private System.Windows.Forms.Label label231;        private System.Windows.Forms.Label label232;        private System.Windows.Forms.Label label233;        private System.Windows.Forms.Label label234;        private System.Windows.Forms.Label label235;        private System.Windows.Forms.Label label236;        private System.Windows.Forms.Label label237;        private System.Windows.Forms.Label label238;        private System.Windows.Forms.Label label239;        private System.Windows.Forms.Label label240;        private System.Windows.Forms.Label label241;        private System.Windows.Forms.Label label242;        private System.Windows.Forms.Label label243;        private System.Windows.Forms.Label label244;        private System.Windows.Forms.Label label245;        private System.Windows.Forms.Label label246;        private System.Windows.Forms.Label label248;        private System.Windows.Forms.Label label247;        private System.Windows.Forms.Label label249;        private System.Windows.Forms.Label label250;        private System.Windows.Forms.Label label251;        private System.Windows.Forms.Label label252;        private System.Windows.Forms.Label label253;        private System.Windows.Forms.Label label254;        private System.Windows.Forms.Label label255;        private System.Windows.Forms.Label label256;        private System.Windows.Forms.Label label257;        private System.Windows.Forms.Label label258;        private System.Windows.Forms.Label label259;        private System.Windows.Forms.Label label260;        private System.Windows.Forms.Label label261;        private System.Windows.Forms.Label label262;        private System.Windows.Forms.Label label265;        private System.Windows.Forms.Label label266;        private System.Windows.Forms.Label label267;        private System.Windows.Forms.Label label268;        private System.Windows.Forms.Label label269;        private System.Windows.Forms.Label label270;        private System.Windows.Forms.Label label271;        private System.Windows.Forms.Label label272;        private System.Windows.Forms.Label label273;        private System.Windows.Forms.Label label264;        private System.Windows.Forms.Label label263;        private System.Windows.Forms.Label label274;        private System.Windows.Forms.Label label275;        private System.Windows.Forms.Label label276;        private System.Windows.Forms.Label label277;        private System.Windows.Forms.Label label278;        private System.Windows.Forms.Label label279;        private System.Windows.Forms.Label label280;        private System.Windows.Forms.Label label281;        private System.Windows.Forms.Label label282;        private System.Windows.Forms.Label label283;        private System.Windows.Forms.Label label284;        private System.Windows.Forms.Label label285;        private System.Windows.Forms.Label label286;        private System.Windows.Forms.Label label287;        private System.Windows.Forms.Label label288;        private System.Windows.Forms.Label label289;        private System.Windows.Forms.Label label290;        private System.Windows.Forms.Label label291;        private System.Windows.Forms.Label label292;        private System.Windows.Forms.Label label293;        private System.Windows.Forms.Label label294;        private System.Windows.Forms.Label label295;        private System.Windows.Forms.Label label296;        private System.Windows.Forms.Label label297;        private System.Windows.Forms.Label label298;        private System.Windows.Forms.Label label299;        private System.Windows.Forms.Label label300;        private System.Windows.Forms.Label label301;        private System.Windows.Forms.Label label302;        private System.Windows.Forms.Label label303;        private System.Windows.Forms.Label label304;        private System.Windows.Forms.Label label305;        private System.Windows.Forms.Label label306;        private System.Windows.Forms.Label label307;        private System.Windows.Forms.Label label308;        private System.Windows.Forms.Label label309;        private System.Windows.Forms.Label label310;        private System.Windows.Forms.Label label311;        private System.Windows.Forms.Label label312;        private System.Windows.Forms.Label label313;        private System.Windows.Forms.Label label314;        private System.Windows.Forms.Label label315;        private System.Windows.Forms.Label label316;        private System.Windows.Forms.Label label317;        private System.Windows.Forms.Label label318;        private System.Windows.Forms.Label label319;        private System.Windows.Forms.Label label320;        private System.Windows.Forms.Label label321;        private System.Windows.Forms.Label label322;        private System.Windows.Forms.Label label323;        private System.Windows.Forms.Label label324;        private System.Windows.Forms.Label label325;        private System.Windows.Forms.Label label326;        private System.Windows.Forms.Label label327;        private System.Windows.Forms.Label label328;        private System.Windows.Forms.Label label329;        private System.Windows.Forms.Label label330;        private Componen.Uctl_YJContro uctl_AGV2;        private Componen.Uctl_YJContro uctl_SanZuoBiao;        private Componen.Uctl_YJContro uctl_DaBiaoJI;        private Componen.Uctl_YJContro uctl_ShangXiaZhan1;        private Componen.Uctl_YJContro uctl_ShangXiaZhan2;        private Componen.Uctl_YJContro uctl_ShangXiaZhan3;        private Componen.Uctl_YJContro uctl_ShangXiaZhan4;        private Componen.Uctl_YJContro uctl_ShangXiaZhan5;        private Componen.Uctl_YJContro uctl_ShangXiaZhan6;    }}
 |