| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187 | 
							- object ProjectPropertiesForm: TProjectPropertiesForm
 
-   Left = 663
 
-   Top = 261
 
-   ActiveControl = leProjectName
 
-   BorderIcons = [biSystemMenu]
 
-   BorderStyle = bsSingle
 
-   Caption = #39033#30446#23646#24615
 
-   ClientHeight = 357
 
-   ClientWidth = 530
 
-   Color = clBtnFace
 
-   Font.Charset = ANSI_CHARSET
 
-   Font.Color = clWindowText
 
-   Font.Height = -12
 
-   Font.Name = #23435#20307
 
-   Font.Style = []
 
-   OldCreateOrder = False
 
-   DesignSize = (
 
-     530
 
-     357)
 
-   PixelsPerInch = 96
 
-   TextHeight = 12
 
-   object btnOk: TButton
 
-     Left = 361
 
-     Top = 329
 
-     Width = 75
 
-     Height = 21
 
-     Anchors = [akRight, akBottom]
 
-     Caption = #30830'  '#23450
 
-     TabOrder = 0
 
-     OnClick = btnOkClick
 
-   end
 
-   object btnCancel: TButton
 
-     Left = 448
 
-     Top = 329
 
-     Width = 75
 
-     Height = 21
 
-     Anchors = [akRight, akBottom]
 
-     Caption = #21462'  '#28040
 
-     ModalResult = 2
 
-     TabOrder = 1
 
-   end
 
-   object pnlTop: TPanel
 
-     Left = 0
 
-     Top = 0
 
-     Width = 530
 
-     Height = 63
 
-     Align = alTop
 
-     BevelOuter = bvNone
 
-     TabOrder = 2
 
-     object tbTop: TToolBar
 
-       Left = 0
 
-       Top = 6
 
-       Width = 530
 
-       Height = 51
 
-       AutoSize = True
 
-       ButtonHeight = 51
 
-       ButtonWidth = 67
 
-       EdgeInner = esNone
 
-       EdgeOuter = esNone
 
-       Flat = True
 
-       Images = Images
 
-       ShowCaptions = True
 
-       TabOrder = 0
 
-       object tobtnBase: TToolButton
 
-         Left = 0
 
-         Top = 0
 
-         Caption = #22522#30784#23646#24615
 
-         Down = True
 
-         ImageIndex = 0
 
-         Style = tbsCheck
 
-         OnClick = tobtnBaseClick
 
-       end
 
-       object tobtnStaff: TToolButton
 
-         Tag = 1
 
-         Left = 67
 
-         Top = 0
 
-         Caption = #35745#37327#21442#19982#20154
 
-         ImageIndex = 1
 
-         Style = tbsCheck
 
-         OnClick = tobtnBaseClick
 
-       end
 
-       object tobtnView: TToolButton
 
-         Tag = 2
 
-         Left = 134
 
-         Top = 0
 
-         Caption = #26174#31034#35774#32622
 
-         ImageIndex = 2
 
-         Style = tbsCheck
 
-         OnClick = tobtnBaseClick
 
-       end
 
-     end
 
-     object pnlBlank: TPanel
 
-       Left = 0
 
-       Top = 0
 
-       Width = 530
 
-       Height = 6
 
-       Align = alTop
 
-       BevelOuter = bvNone
 
-       TabOrder = 1
 
-     end
 
-     object jcbPhase: TJimComboBox
 
-       Left = 379
 
-       Top = 38
 
-       Width = 145
 
-       Height = 21
 
-       AutoSize = False
 
-       ButtonWidth = 17
 
-       DropDownBox.Width = 145
 
-       DropDownBox.Height = 150
 
-       DropDownBox.ShowToolBar = False
 
-       Style = cbsOfficeXP
 
-       ItemIndex = -1
 
-       ItemHeight = 14
 
-       Visible = False
 
-       OnChanged = jcbPhaseChanged
 
-     end
 
-   end
 
-   object jpsProperties: TJimPages
 
-     Left = 0
 
-     Top = 63
 
-     Width = 530
 
-     Height = 255
 
-     ActivePage = jpsPropertiesBase
 
-     ActivePageIndex = 0
 
-     Align = alTop
 
-     Caption = 'jpsProperties'
 
-     object jpsPropertiesBase: TJimPage
 
-       Left = 0
 
-       Top = 0
 
-       Width = 530
 
-       Height = 255
 
-       TabName = 'Base'
 
-       Caption = 'Base'
 
-       DesignSize = (
 
-         530
 
-         255)
 
-       object pnlBase: TPanel
 
-         Left = 0
 
-         Top = 3
 
-         Width = 529
 
-         Height = 247
 
-         Anchors = [akLeft, akTop, akRight]
 
-         BevelOuter = bvNone
 
-         TabOrder = 0
 
-         object tbContents: TToolBar
 
-           Left = 0
 
-           Top = 0
 
-           Width = 91
 
-           Height = 247
 
-           Align = alLeft
 
-           AutoSize = True
 
-           ButtonHeight = 20
 
-           ButtonWidth = 91
 
-           Color = clBtnFace
 
-           Ctl3D = False
 
-           EdgeBorders = []
 
-           Flat = True
 
-           ParentColor = False
 
-           ShowCaptions = True
 
-           TabOrder = 1
 
-           object tobtnDealInfo: TToolButton
 
-             Tag = 1
 
-             Left = 0
 
-             Top = 0
 
-             Caption = '   '#21512#21516#20449#24687'   '
 
-             Down = True
 
-             ImageIndex = 0
 
-             Wrap = True
 
-             Style = tbsCheck
 
-             OnClick = tobtnDealInfoClick
 
-           end
 
-           object tobtnTechParameters: TToolButton
 
-             Tag = 2
 
-             Left = 0
 
-             Top = 20
 
-             Caption = #25216#26415#21442#25968
 
-             ImageIndex = 1
 
-             Wrap = True
 
-             Style = tbsCheck
 
-             OnClick = tobtnDealInfoClick
 
-           end
 
-           object tobtnDealPayment: TToolButton
 
-             Tag = 3
 
-             Left = 0
 
-             Top = 40
 
-             Caption = #21512#21516#25903#20184
 
-             ImageIndex = 4
 
-             Wrap = True
 
-             Style = tbsCheck
 
-             OnClick = tobtnDealInfoClick
 
-           end
 
-           object tobtnSafe: TToolButton
 
-             Tag = 4
 
-             Left = 0
 
-             Top = 60
 
-             Caption = #25991#20214#23433#20840
 
-             ImageIndex = 5
 
-             Wrap = True
 
-             Style = tbsCheck
 
-             OnClick = tobtnDealInfoClick
 
-           end
 
-           object tobtnCalcParameters: TToolButton
 
-             Tag = 5
 
-             Left = 0
 
-             Top = 80
 
-             Caption = #35745#31639#21442#25968
 
-             ImageIndex = 6
 
-             Wrap = True
 
-             Style = tbsCheck
 
-             OnClick = tobtnDealInfoClick
 
-           end
 
-           object tobtnDateTime: TToolButton
 
-             Tag = 6
 
-             Left = 0
 
-             Top = 100
 
-             Caption = #26102#38388#21442#25968
 
-             ImageIndex = 7
 
-             Style = tbsCheck
 
-             OnClick = tobtnDealInfoClick
 
-           end
 
-         end
 
-         object msbBase: TMScrollBox
 
-           Left = 91
 
-           Top = 0
 
-           Width = 438
 
-           Height = 247
 
-           HorzScrollBar.Range = 401
 
-           VertScrollBar.Range = 1180
 
-           Align = alClient
 
-           AutoScroll = False
 
-           BevelInner = bvNone
 
-           BevelOuter = bvNone
 
-           BorderStyle = bsNone
 
-           Color = clBtnFace
 
-           Ctl3D = False
 
-           ParentColor = False
 
-           ParentCtl3D = False
 
-           TabOrder = 0
 
-           OnMouseWheel = msbBaseMouseWheel
 
-           OnMouseWheelDown = msbBaseMouseWheelDown
 
-           OnMouseWheelUp = msbBaseMouseWheelUp
 
-           OnVScroll = msbBaseVScroll
 
-           object lblDealInfo: TLabel
 
-             Left = 7
 
-             Top = 4
 
-             Width = 48
 
-             Height = 12
 
-             Caption = #21512#21516#20449#24687
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clBlue
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-           end
 
-           object lblBuilder: TLabel
 
-             Left = 34
 
-             Top = 108
 
-             Width = 60
 
-             Height = 12
 
-             Caption = #24314#35774#21333#20301#65306
 
-           end
 
-           object lblConstructor: TLabel
 
-             Left = 34
 
-             Top = 192
 
-             Width = 60
 
-             Height = 12
 
-             Caption = #25215#21253#21333#20301#65306
 
-           end
 
-           object lblSupervisor: TLabel
 
-             Left = 34
 
-             Top = 276
 
-             Width = 60
 
-             Height = 12
 
-             Caption = #30417#29702#21333#20301#65306
 
-           end
 
-           object lblTechParameters: TLabel
 
-             Left = 7
 
-             Top = 371
 
-             Width = 48
 
-             Height = 12
 
-             Caption = #25216#26415#21442#25968
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clBlue
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-           end
 
-           object lblLoadLevel: TLabel
 
-             Left = 34
 
-             Top = 393
 
-             Width = 60
 
-             Height = 12
 
-             Caption = #20844#36335#31561#32423#65306
 
-           end
 
-           object lblDealPayTitle: TLabel
 
-             Left = 7
 
-             Top = 531
 
-             Width = 48
 
-             Height = 12
 
-             Caption = #21512#21516#25903#20184
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clBlue
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-           end
 
-           object lblSafeTitel: TLabel
 
-             Left = 7
 
-             Top = 635
 
-             Width = 48
 
-             Height = 12
 
-             Caption = #25991#20214#23433#20840
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clBlue
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-           end
 
-           object lblUnlockPassword: TLabel
 
-             Left = 36
 
-             Top = 659
 
-             Width = 84
 
-             Height = 12
 
-             Caption = #35299#38145#33410#28857#23494#30721#65306
 
-           end
 
-           object lblPasswordHint: TLabel
 
-             Left = 128
 
-             Top = 660
 
-             Width = 90
 
-             Height = 12
 
-             Caption = 'lblPasswordHint'
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clRed
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-             Visible = False
 
-           end
 
-           object lblCalcParametersTitel: TLabel
 
-             Left = 7
 
-             Top = 763
 
-             Width = 48
 
-             Height = 12
 
-             Caption = #35745#31639#21442#25968
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clBlue
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-           end
 
-           object lblDigit: TLabel
 
-             Left = 36
 
-             Top = 787
 
-             Width = 84
 
-             Height = 12
 
-             Caption = #20445#30041#23567#25968#20301#25968#65306
 
-           end
 
-           object lblDateTime: TLabel
 
-             Left = 7
 
-             Top = 936
 
-             Width = 48
 
-             Height = 12
 
-             Caption = #26102#38388#21442#25968
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clBlue
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-           end
 
-           object lblBaseline: TLabel
 
-             Left = 36
 
-             Top = 959
 
-             Width = 60
 
-             Height = 12
 
-             Caption = #36215#22987#26085#26399#65306
 
-           end
 
-           object lblDeadline: TLabel
 
-             Left = 36
 
-             Top = 983
 
-             Width = 60
 
-             Height = 12
 
-             Caption = #25130#27490#26085#26399#65306
 
-           end
 
-           object lblDateHint: TLabel
 
-             Left = 37
 
-             Top = 1004
 
-             Width = 192
 
-             Height = 12
 
-             Caption = #24403#21069#25130#27490#26085#26399' '#65308' '#36215#22987#26085#26399#65292#35831#26680#26597
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clRed
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentFont = False
 
-           end
 
-           object pnlDealInfoBar: TPanel
 
-             Left = 62
 
-             Top = 9
 
-             Width = 339
 
-             Height = 2
 
-             BevelOuter = bvLowered
 
-             TabOrder = 0
 
-           end
 
-           object leProjectName: TLabeledEdit
 
-             Left = 33
 
-             Top = 36
 
-             Width = 330
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 84
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #24314#35774#39033#30446#21517#31216#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 1
 
-           end
 
-           object leDealName: TLabeledEdit
 
-             Left = 33
 
-             Top = 76
 
-             Width = 152
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #21512#21516#21517#31216#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 2
 
-           end
 
-           object leDealIndex: TLabeledEdit
 
-             Left = 195
 
-             Top = 76
 
-             Width = 80
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #21512#21516#32534#21495#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 3
 
-           end
 
-           object leBName: TLabeledEdit
 
-             Left = 101
 
-             Top = 123
 
-             Width = 261
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #21333#20301#21517#31216#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 4
 
-           end
 
-           object leBLegal: TLabeledEdit
 
-             Left = 101
 
-             Top = 164
 
-             Width = 137
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #27861#20154#20195#34920#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 5
 
-           end
 
-           object leBDate: TLabeledEdit
 
-             Left = 245
 
-             Top = 164
 
-             Width = 119
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #31614#35746#26085#26399#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 6
 
-           end
 
-           object leCName: TLabeledEdit
 
-             Left = 101
 
-             Top = 207
 
-             Width = 262
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #21333#20301#21517#31216#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 7
 
-           end
 
-           object leCLegal: TLabeledEdit
 
-             Left = 101
 
-             Top = 248
 
-             Width = 137
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #27861#20154#20195#34920#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 8
 
-           end
 
-           object leCDate: TLabeledEdit
 
-             Left = 245
 
-             Top = 248
 
-             Width = 119
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #31614#35746#26085#26399#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 9
 
-           end
 
-           object leSName: TLabeledEdit
 
-             Left = 101
 
-             Top = 291
 
-             Width = 262
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #21333#20301#21517#31216#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 10
 
-           end
 
-           object leSLegal: TLabeledEdit
 
-             Left = 101
 
-             Top = 331
 
-             Width = 137
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #27861#20154#20195#34920#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 11
 
-           end
 
-           object leSDate: TLabeledEdit
 
-             Left = 245
 
-             Top = 331
 
-             Width = 119
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #31614#35746#26085#26399#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 12
 
-           end
 
-           object pnlTechParametersBar: TPanel
 
-             Left = 62
 
-             Top = 376
 
-             Width = 339
 
-             Height = 2
 
-             BevelOuter = bvLowered
 
-             TabOrder = 21
 
-           end
 
-           object leStartPeg: TLabeledEdit
 
-             Left = 34
 
-             Top = 451
 
-             Width = 132
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #36215#28857#26729#21495#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 14
 
-           end
 
-           object leEndPeg: TLabeledEdit
 
-             Left = 176
 
-             Top = 451
 
-             Width = 131
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #32456#28857#26729#21495#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 15
 
-           end
 
-           object leLength: TLabeledEdit
 
-             Left = 34
 
-             Top = 491
 
-             Width = 132
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 72
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #38271#24230#65288'km'#65289#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 16
 
-           end
 
-           object leLaneCount: TLabeledEdit
 
-             Left = 176
 
-             Top = 491
 
-             Width = 132
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 48
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #36710#36947#25968#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 17
 
-           end
 
-           object cbLoadLevel: TComboBox
 
-             Left = 34
 
-             Top = 410
 
-             Width = 132
 
-             Height = 20
 
-             Ctl3D = False
 
-             DropDownCount = 5
 
-             ItemHeight = 12
 
-             ParentCtl3D = False
 
-             TabOrder = 13
 
-             Items.Strings = (
 
-               #39640#36895#20844#36335
 
-               #19968#32423#20844#36335
 
-               #20108#32423#20844#36335
 
-               #19977#32423#20844#36335
 
-               #22235#32423#20844#36335)
 
-           end
 
-           object pnlDealPayBar: TPanel
 
-             Left = 62
 
-             Top = 537
 
-             Width = 339
 
-             Height = 2
 
-             BevelOuter = bvLowered
 
-             TabOrder = 22
 
-           end
 
-           object leContractPrice: TLabeledEdit
 
-             Left = 133
 
-             Top = 552
 
-             Width = 117
 
-             Height = 18
 
-             BiDiMode = bdLeftToRight
 
-             Ctl3D = False
 
-             EditLabel.Width = 96
 
-             EditLabel.Height = 12
 
-             EditLabel.BiDiMode = bdLeftToRight
 
-             EditLabel.Caption = #31614#32422#21512#21516#20215#65306'    '
 
-             EditLabel.ParentBiDiMode = False
 
-             LabelPosition = lpLeft
 
-             ParentBiDiMode = False
 
-             ParentCtl3D = False
 
-             TabOrder = 18
 
-             OnClick = leContractPriceClick
 
-           end
 
-           object leStartedSubsist: TLabeledEdit
 
-             Left = 133
 
-             Top = 579
 
-             Width = 118
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 96
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #31614#32422#24320#24037#39044#20184#27454#65306
 
-             LabelPosition = lpLeft
 
-             ParentCtl3D = False
 
-             TabOrder = 19
 
-             OnClick = leContractPriceClick
 
-           end
 
-           object leMaterialSubsist: TLabeledEdit
 
-             Left = 133
 
-             Top = 605
 
-             Width = 119
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 96
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #31614#32422#26448#26009#39044#20184#27454#65306
 
-             LabelPosition = lpLeft
 
-             ParentCtl3D = False
 
-             TabOrder = 20
 
-             OnClick = leContractPriceClick
 
-           end
 
-           object pnlSafeBar: TPanel
 
-             Left = 62
 
-             Top = 641
 
-             Width = 339
 
-             Height = 2
 
-             BevelOuter = bvLowered
 
-             TabOrder = 23
 
-           end
 
-           object pnlUnlockPassword: TPanel
 
-             Left = 40
 
-             Top = 673
 
-             Width = 361
 
-             Height = 85
 
-             BevelOuter = bvNone
 
-             TabOrder = 24
 
-             object pnlOrgPW: TPanel
 
-               Left = 0
 
-               Top = 0
 
-               Width = 361
 
-               Height = 28
 
-               Align = alTop
 
-               BevelOuter = bvNone
 
-               TabOrder = 0
 
-               object imgOrg: TImage
 
-                 Left = 213
 
-                 Top = 9
 
-                 Width = 16
 
-                 Height = 16
 
-                 Picture.Data = {
 
-                   055449636F6E0000010001001010000001002000680400001600000028000000
 
-                   1000000020000000010020000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000050A1B23050A1C2300000000
 
-                   000000000000000000000000050A1B23050A1C23000000000000000000000000
 
-                   00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
 
-                   0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
 
-                   000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
 
-                   070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
 
-                   00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
 
-                   1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
 
-                   000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
 
-                   1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
 
-                   000000000000000000000000000000000000000001061B243140B3D0293FF1FF
 
-                   1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
 
-                   000000000000000000000000000000000000000004081B261326B3D12340F4FF
 
-                   294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
 
-                   000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
 
-                   4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
 
-                   00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
 
-                   2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
 
-                   00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
 
-                   01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
 
-                   000000000000000000000000000000000206202D3547CCE43346CDE60106212E
 
-                   00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
 
-                   0000000000000000000000000000000000000000020518220205192200000000
 
-                   0000000000000000000000000205182202051922000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
 
-                   F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
 
-                   FFFF0000}
 
-                 Visible = False
 
-               end
 
-               object leUnlockPassword: TLabeledEdit
 
-                 Left = 89
 
-                 Top = 8
 
-                 Width = 117
 
-                 Height = 18
 
-                 Hint = #24403#21069#23494#30721#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
 
-                 BiDiMode = bdLeftToRight
 
-                 Ctl3D = False
 
-                 EditLabel.Width = 66
 
-                 EditLabel.Height = 12
 
-                 EditLabel.BiDiMode = bdLeftToRight
 
-                 EditLabel.Caption = #24403#21069#23494#30721#65306' '
 
-                 EditLabel.ParentBiDiMode = False
 
-                 LabelPosition = lpLeft
 
-                 MaxLength = 16
 
-                 ParentBiDiMode = False
 
-                 ParentCtl3D = False
 
-                 PasswordChar = '*'
 
-                 TabOrder = 0
 
-                 OnExit = leUnlockPasswordExit
 
-                 OnKeyPress = leUnlockPasswordKeyPress
 
-               end
 
-             end
 
-             object pnlNewPW: TPanel
 
-               Left = 0
 
-               Top = 28
 
-               Width = 361
 
-               Height = 57
 
-               Align = alClient
 
-               BevelOuter = bvNone
 
-               TabOrder = 1
 
-               object imgNew: TImage
 
-                 Left = 213
 
-                 Top = 8
 
-                 Width = 16
 
-                 Height = 16
 
-                 Picture.Data = {
 
-                   055449636F6E0000010001001010000001002000680400001600000028000000
 
-                   1000000020000000010020000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000050A1B23050A1C2300000000
 
-                   000000000000000000000000050A1B23050A1C23000000000000000000000000
 
-                   00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
 
-                   0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
 
-                   000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
 
-                   070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
 
-                   00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
 
-                   1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
 
-                   000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
 
-                   1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
 
-                   000000000000000000000000000000000000000001061B243140B3D0293FF1FF
 
-                   1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
 
-                   000000000000000000000000000000000000000004081B261326B3D12340F4FF
 
-                   294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
 
-                   000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
 
-                   4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
 
-                   00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
 
-                   2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
 
-                   00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
 
-                   01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
 
-                   000000000000000000000000000000000206202D3547CCE43346CDE60106212E
 
-                   00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
 
-                   0000000000000000000000000000000000000000020518220205192200000000
 
-                   0000000000000000000000000205182202051922000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
 
-                   F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
 
-                   FFFF0000}
 
-                 Visible = False
 
-               end
 
-               object imgNewAgain: TImage
 
-                 Left = 213
 
-                 Top = 35
 
-                 Width = 16
 
-                 Height = 16
 
-                 Picture.Data = {
 
-                   055449636F6E0000010001001010000001002000680400001600000028000000
 
-                   1000000020000000010020000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000050A1B23050A1C2300000000
 
-                   000000000000000000000000050A1B23050A1C23000000000000000000000000
 
-                   00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
 
-                   0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
 
-                   000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
 
-                   070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
 
-                   00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
 
-                   1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
 
-                   000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
 
-                   1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
 
-                   000000000000000000000000000000000000000001061B243140B3D0293FF1FF
 
-                   1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
 
-                   000000000000000000000000000000000000000004081B261326B3D12340F4FF
 
-                   294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
 
-                   000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
 
-                   4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
 
-                   00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
 
-                   2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
 
-                   00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
 
-                   01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
 
-                   000000000000000000000000000000000206202D3547CCE43346CDE60106212E
 
-                   00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
 
-                   0000000000000000000000000000000000000000020518220205192200000000
 
-                   0000000000000000000000000205182202051922000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   0000000000000000000000000000000000000000000000000000000000000000
 
-                   00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
 
-                   F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
 
-                   FFFF0000}
 
-                 Visible = False
 
-               end
 
-               object leNewUnlockPasswordAgain: TLabeledEdit
 
-                 Left = 89
 
-                 Top = 34
 
-                 Width = 117
 
-                 Height = 18
 
-                 Hint = #20004#27425#36755#20837#30340#26032#23494#30721#24517#39035#30456#21516
 
-                 BiDiMode = bdLeftToRight
 
-                 Ctl3D = False
 
-                 EditLabel.Width = 78
 
-                 EditLabel.Height = 12
 
-                 EditLabel.BiDiMode = bdLeftToRight
 
-                 EditLabel.Caption = #30830#35748#26032#23494#30721#65306' '
 
-                 EditLabel.ParentBiDiMode = False
 
-                 LabelPosition = lpLeft
 
-                 MaxLength = 16
 
-                 ParentBiDiMode = False
 
-                 ParentCtl3D = False
 
-                 PasswordChar = '*'
 
-                 ReadOnly = True
 
-                 TabOrder = 0
 
-                 OnExit = leNewUnlockPasswordAgainExit
 
-                 OnKeyPress = leUnlockPasswordKeyPress
 
-               end
 
-               object leNewUnLockPassword: TLabeledEdit
 
-                 Left = 89
 
-                 Top = 7
 
-                 Width = 117
 
-                 Height = 18
 
-                 Hint = #26032#23494#30721#24517#39035#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
 
-                 BiDiMode = bdLeftToRight
 
-                 Ctl3D = False
 
-                 EditLabel.Width = 54
 
-                 EditLabel.Height = 12
 
-                 EditLabel.BiDiMode = bdLeftToRight
 
-                 EditLabel.Caption = #26032#23494#30721#65306' '
 
-                 EditLabel.ParentBiDiMode = False
 
-                 LabelPosition = lpLeft
 
-                 MaxLength = 16
 
-                 ParentBiDiMode = False
 
-                 ParentCtl3D = False
 
-                 PasswordChar = '*'
 
-                 TabOrder = 1
 
-                 OnExit = leNewUnLockPasswordExit
 
-                 OnKeyPress = leUnlockPasswordKeyPress
 
-               end
 
-             end
 
-           end
 
-           object leDealType: TLabeledEdit
 
-             Left = 283
 
-             Top = 76
 
-             Width = 80
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #21512#21516#31867#21035#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 25
 
-           end
 
-           object pnlCalcParametersBar: TPanel
 
-             Left = 62
 
-             Top = 769
 
-             Width = 339
 
-             Height = 2
 
-             BevelOuter = bvLowered
 
-             TabOrder = 26
 
-           end
 
-           object leQuantityDigit: TLabeledEdit
 
-             Left = 100
 
-             Top = 804
 
-             Width = 87
 
-             Height = 18
 
-             EditLabel.Width = 36
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #25968#37327#65306
 
-             LabelPosition = lpLeft
 
-             TabOrder = 27
 
-             Text = '3'
 
-           end
 
-           object leTotalPriceDigit: TLabeledEdit
 
-             Left = 264
 
-             Top = 804
 
-             Width = 87
 
-             Height = 18
 
-             EditLabel.Width = 36
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #37329#39069#65306
 
-             LabelPosition = lpLeft
 
-             TabOrder = 28
 
-             Text = '0'
 
-           end
 
-           object udQuantity: TUpDown
 
-             Left = 187
 
-             Top = 804
 
-             Width = 16
 
-             Height = 18
 
-             Associate = leQuantityDigit
 
-             Max = 10
 
-             Position = 3
 
-             TabOrder = 29
 
-           end
 
-           object udTotalPrice: TUpDown
 
-             Left = 351
 
-             Top = 804
 
-             Width = 16
 
-             Height = 18
 
-             Associate = leTotalPriceDigit
 
-             Max = 10
 
-             TabOrder = 30
 
-           end
 
-           object gbPM_Digit: TGroupBox
 
-             Left = 52
 
-             Top = 883
 
-             Width = 349
 
-             Height = 44
 
-             Caption = #20215#24046
 
-             TabOrder = 31
 
-             Visible = False
 
-             object lePM_PriceDigit: TLabeledEdit
 
-               Left = 48
 
-               Top = 19
 
-               Width = 87
 
-               Height = 18
 
-               EditLabel.Width = 36
 
-               EditLabel.Height = 12
 
-               EditLabel.Caption = #21333#20215#65306
 
-               LabelPosition = lpLeft
 
-               TabOrder = 0
 
-               Text = '0'
 
-             end
 
-             object udPM_PriceDigit: TUpDown
 
-               Left = 135
 
-               Top = 19
 
-               Width = 16
 
-               Height = 18
 
-               Associate = lePM_PriceDigit
 
-               Max = 10
 
-               TabOrder = 1
 
-             end
 
-           end
 
-           object pnlDateTime: TPanel
 
-             Left = 62
 
-             Top = 942
 
-             Width = 339
 
-             Height = 2
 
-             BevelOuter = bvLowered
 
-             TabOrder = 32
 
-           end
 
-           object dtpBaseline: TDateTimePicker
 
-             Left = 104
 
-             Top = 955
 
-             Width = 105
 
-             Height = 20
 
-             Date = 0.457352881945553200
 
-             Format = 'yyyy-MM-dd'
 
-             Time = 0.457352881945553200
 
-             TabOrder = 33
 
-             OnChange = dtpBaselineChange
 
-           end
 
-           object dtpDeadline: TDateTimePicker
 
-             Left = 104
 
-             Top = 979
 
-             Width = 105
 
-             Height = 20
 
-             Date = 0.457352881945553200
 
-             Format = 'yyyy-MM-dd'
 
-             Time = 0.457352881945553200
 
-             TabOrder = 34
 
-             OnChange = dtpBaselineChange
 
-           end
 
-           object cbDealPayAloneDigiy: TCheckBox
 
-             Left = 62
 
-             Top = 831
 
-             Width = 131
 
-             Height = 17
 
-             Caption = #21512#21516#25903#20184#21333#29420#35774#32622
 
-             TabOrder = 35
 
-             OnClick = cbDealPayAloneDigiyClick
 
-           end
 
-           object leDealPayTotalPriceDigit: TLabeledEdit
 
-             Left = 100
 
-             Top = 855
 
-             Width = 87
 
-             Height = 18
 
-             EditLabel.Width = 36
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #37329#39069#65306
 
-             LabelPosition = lpLeft
 
-             TabOrder = 36
 
-             Text = '0'
 
-           end
 
-           object udDealPayTotalPriceDigit: TUpDown
 
-             Left = 187
 
-             Top = 855
 
-             Width = 16
 
-             Height = 18
 
-             Associate = leDealPayTotalPriceDigit
 
-             Max = 10
 
-             TabOrder = 37
 
-           end
 
-           object leDealPhase: TLabeledEdit
 
-             Left = 177
 
-             Top = 410
 
-             Width = 131
 
-             Height = 18
 
-             Ctl3D = False
 
-             EditLabel.Width = 60
 
-             EditLabel.Height = 12
 
-             EditLabel.Caption = #21512#21516#24037#26399#65306
 
-             ParentCtl3D = False
 
-             TabOrder = 38
 
-           end
 
-         end
 
-       end
 
-     end
 
-     object jpsPropertiesStaff: TJimPage
 
-       Left = 0
 
-       Top = 0
 
-       Width = 530
 
-       Height = 255
 
-       TabName = 'Staff'
 
-       Caption = 'Staff'
 
-       object zgStaff: TZJGrid
 
-         Left = 0
 
-         Top = 0
 
-         Width = 530
 
-         Height = 255
 
-         Options = [goRangeSelect, goRowSizing, goColSizing, goCellNotMaintainData, goFixedRowShowNo, goFixedColShowNo, goAlwaysShowSelection]
 
-         OptionsEx = []
 
-         RowCount = 1
 
-         ShowGridLine = False
 
-         DefaultColWidth = 73
 
-         Selection.AlphaBlend = False
 
-         Selection.TransparentColor = False
 
-         FrozenCol = 0
 
-         FrozenRow = 0
 
-         OnCellGetColor = zgStaffCellGetColor
 
-         OnCellGetFont = zgStaffCellGetFont
 
-         Font.Charset = ANSI_CHARSET
 
-         Font.Color = clBlack
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         ParentFont = False
 
-         Align = alClient
 
-       end
 
-     end
 
-     object jpsPropertiesView: TJimPage
 
-       Left = 0
 
-       Top = 0
 
-       Width = 530
 
-       Height = 255
 
-       TabName = 'View'
 
-       Caption = 'View'
 
-       object leView: TLabel
 
-         Left = 7
 
-         Top = 5
 
-         Width = 48
 
-         Height = 12
 
-         Caption = #39033#30446#26174#31034
 
-         Font.Charset = ANSI_CHARSET
 
-         Font.Color = clBlue
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         ParentFont = False
 
-       end
 
-       object leReport: TLabel
 
-         Left = 7
 
-         Top = 141
 
-         Width = 48
 
-         Height = 12
 
-         Caption = #25253#34920#24213#32441
 
-         Font.Charset = ANSI_CHARSET
 
-         Font.Color = clBlue
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         ParentFont = False
 
-       end
 
-       object pnlViewBar: TPanel
 
-         Left = 62
 
-         Top = 11
 
-         Width = 457
 
-         Height = 2
 
-         BevelOuter = bvLowered
 
-         TabOrder = 0
 
-       end
 
-       object pnlAllView: TPanel
 
-         Left = 8
 
-         Top = 24
 
-         Width = 505
 
-         Height = 113
 
-         BevelOuter = bvNone
 
-         TabOrder = 1
 
-         object pnlAlias: TPanel
 
-           Left = 0
 
-           Top = 75
 
-           Width = 505
 
-           Height = 25
 
-           Align = alTop
 
-           BevelOuter = bvNone
 
-           TabOrder = 0
 
-           object cbShowAlias: TCheckBox
 
-             Left = 33
 
-             Top = 8
 
-             Width = 80
 
-             Height = 17
 
-             Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
 
-             Caption = #21035#21517
 
-             Ctl3D = False
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clWindowText
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentCtl3D = False
 
-             ParentFont = False
 
-             ParentShowHint = False
 
-             ShowHint = True
 
-             TabOrder = 0
 
-           end
 
-         end
 
-         object pnlPriceChange: TPanel
 
-           Left = 0
 
-           Top = 0
 
-           Width = 505
 
-           Height = 25
 
-           Align = alTop
 
-           BevelOuter = bvNone
 
-           TabOrder = 1
 
-           Visible = False
 
-           object cbShowPriceChange: TCheckBox
 
-             Left = 33
 
-             Top = 8
 
-             Width = 88
 
-             Height = 17
 
-             Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
 
-             Caption = #21333#20215#21464#26356
 
-             Ctl3D = False
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clWindowText
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentCtl3D = False
 
-             ParentFont = False
 
-             ParentShowHint = False
 
-             ShowHint = True
 
-             TabOrder = 0
 
-           end
 
-         end
 
-         object pnlBGL: TPanel
 
-           Left = 0
 
-           Top = 25
 
-           Width = 505
 
-           Height = 25
 
-           Align = alTop
 
-           BevelOuter = bvNone
 
-           TabOrder = 2
 
-           object cbShowBGLCode: TCheckBox
 
-             Left = 33
 
-             Top = 8
 
-             Width = 80
 
-             Height = 17
 
-             Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
 
-             Caption = #21464#26356#20196
 
-             Ctl3D = False
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clWindowText
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentCtl3D = False
 
-             ParentFont = False
 
-             ParentShowHint = False
 
-             ShowHint = True
 
-             TabOrder = 0
 
-           end
 
-         end
 
-         object pnlDesignQuantity: TPanel
 
-           Left = 0
 
-           Top = 50
 
-           Width = 505
 
-           Height = 25
 
-           Align = alTop
 
-           BevelOuter = bvNone
 
-           TabOrder = 3
 
-           object cbShowDesignQuantity: TCheckBox
 
-             Left = 33
 
-             Top = 8
 
-             Width = 80
 
-             Height = 17
 
-             Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
 
-             Caption = #35774#35745#25968#37327
 
-             Ctl3D = False
 
-             Font.Charset = ANSI_CHARSET
 
-             Font.Color = clWindowText
 
-             Font.Height = -12
 
-             Font.Name = #23435#20307
 
-             Font.Style = []
 
-             ParentCtl3D = False
 
-             ParentFont = False
 
-             ParentShowHint = False
 
-             ShowHint = True
 
-             TabOrder = 0
 
-           end
 
-         end
 
-       end
 
-       object pnlReport: TPanel
 
-         Left = 62
 
-         Top = 147
 
-         Width = 457
 
-         Height = 2
 
-         BevelOuter = bvLowered
 
-         TabOrder = 2
 
-       end
 
-       object cbShowReportShading: TCheckBox
 
-         Left = 40
 
-         Top = 160
 
-         Width = 17
 
-         Height = 17
 
-         TabOrder = 3
 
-         OnClick = cbShowReportShadingClick
 
-       end
 
-       object edtReportShading: TEdit
 
-         Left = 64
 
-         Top = 160
 
-         Width = 177
 
-         Height = 18
 
-         Ctl3D = False
 
-         ParentCtl3D = False
 
-         TabOrder = 4
 
-       end
 
-       object pnlReportView: TPanel
 
-         Left = 0
 
-         Top = 128
 
-         Width = 529
 
-         Height = 89
 
-         BevelOuter = bvNone
 
-         TabOrder = 5
 
-         object lblReportShowStateTitle: TLabel
 
-           Left = 7
 
-           Top = 5
 
-           Width = 96
 
-           Height = 12
 
-           Caption = #25253#34920#26174#31034#23457#25209#29366#24577
 
-           Font.Charset = ANSI_CHARSET
 
-           Font.Color = clBlue
 
-           Font.Height = -12
 
-           Font.Name = #23435#20307
 
-           Font.Style = []
 
-           ParentFont = False
 
-         end
 
-         object pnlReportViewBar: TPanel
 
-           Left = 110
 
-           Top = 11
 
-           Width = 410
 
-           Height = 2
 
-           BevelOuter = bvLowered
 
-           TabOrder = 0
 
-         end
 
-         object cbReportShowState: TCheckBox
 
-           Left = 41
 
-           Top = 24
 
-           Width = 16
 
-           Height = 17
 
-           TabOrder = 1
 
-           OnClick = cbReportShowStateClick
 
-         end
 
-         object edtReportShowStateText: TEdit
 
-           Left = 65
 
-           Top = 22
 
-           Width = 121
 
-           Height = 20
 
-           MaxLength = 20
 
-           TabOrder = 2
 
-           Text = #25253#34920#26410#23457#26680
 
-         end
 
-         object cbReportShowStageWithoutReply: TCheckBox
 
-           Left = 64
 
-           Top = 48
 
-           Width = 121
 
-           Height = 17
 
-           Caption = #25209#22797#29366#24577#19981#26174#31034
 
-           TabOrder = 3
 
-         end
 
-       end
 
-     end
 
-   end
 
-   object xpm: TXPMenu
 
-     DimLevel = 30
 
-     GrayLevel = 10
 
-     Font.Charset = DEFAULT_CHARSET
 
-     Font.Color = clMenuText
 
-     Font.Height = -12
 
-     Font.Name = #23435#20307
 
-     Font.Style = []
 
-     Color = clBtnFace
 
-     IconBackColor = clBtnFace
 
-     MenuBarColor = clBtnFace
 
-     SelectColor = 38640
 
-     SelectBorderColor = clHighlight
 
-     SelectFontColor = clMenuText
 
-     DisabledColor = clInactiveCaption
 
-     SeparatorColor = clBtnFace
 
-     CheckedColor = clHighlight
 
-     IconWidth = 24
 
-     DrawSelect = True
 
-     UseSystemColors = False
 
-     OverrideOwnerDraw = False
 
-     Gradient = False
 
-     FlatMenu = False
 
-     AutoDetect = True
 
-     XPControls = [xcToolbar]
 
-     Active = True
 
-     ControlUseTrueXPStyle = True
 
-     BtnRoundArc = 5
 
-     BtnOutLineBorderColor = 7552000
 
-     BtnInnerBorderMoveColor = 3257087
 
-     BtnInnerBorderFocusColor = 15183500
 
-     BtnSurfaceNormalColor = 16251903
 
-     BtnSurfaceDownColor = 14608359
 
-     BtnSurfaceBottomLineColor = 14608359
 
-     BtnSurfaceDownBottomLineColor = 15199215
 
-     RdoChkControlChkColor = 41472
 
-     ComboBoxChkColor = 9201994
 
-     ComboboxSurfaceMoveColor = 16771030
 
-     ControlDisabledBorderColor = 11913158
 
-     Left = 7
 
-     Top = 324
 
-   end
 
-   object Images: TImageList
 
-     DrawingStyle = dsTransparent
 
-     Height = 32
 
-     Width = 32
 
-     Left = 352
 
-     Top = 8
 
-     Bitmap = {
 
-       494C010103000400040020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
 
-       0000000000003600000028000000800000002000000001002000000000000040
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000D0D0D000D0D0D000D0D0D000D0D0D000D0D
 
-       0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D
 
-       0D000D0D0D000D0D0D000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000000000000E0E0E00CBCFCF00CBCF
 
-       CF00C9D0CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCF
 
-       CF00CBCFCF00CBCFCF00C9D0CF000E0E0E000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000C1C9C900C1C9C800C1C9C900C1C9
 
-       C900C1C9C900C1C9C900C2C9C900C2C9C900C1C9C900C1C9C900C2C9C900C1C9
 
-       C900C2C9C900C1C9C9000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000000000000E0E0E00E5E7E700E5E7
 
-       E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
 
-       E700E5E7E700E5E7E700E5E7E7000E0E0E000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000C4CBCB00C4CBCB00242424002424
 
-       240024242400C4CBCC00C4CCCC00C4CCCB00C4CBCB00C4CCCB00C4CBCC00C4CB
 
-       CB00C4CBCB00C4CBCC000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E00000000000E0E0E000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000000000000000000C8CECE002424240000DEFF0000DE
 
-       FF0000DEFF0024242400C8CFCE00C8CECE00C7CFCE00C7CFCE00C8CECF00C7CE
 
-       CE00C7CECE00C7CECF000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
 
-       CF00CBCFCF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000000000000000000CCD1D2002424240000DEFF0000DE
 
-       FF0000DEFF0024242400CBD2D2000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E00CBD1D100CCD1D1000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000E0E
 
-       0E00FFFFFF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7
 
-       C700BFC7C700BFC7C7000000000000000000D0D6D60024242400FFFFFF0000DE
 
-       FF0000DEFF0024242400D0D5D500D0D6D500CFD5D500D0D5D500CFD6D500CFD5
 
-       D500CFD5D500D0D5D5000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E
 
-       0E00FFFFFF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B
 
-       0A00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00C8CF
 
-       CF00C9D0CF00C8CFCF00C9CFCF00C9D0CF00C8CFCF00C8CFCF00C8CFCF00C8CF
 
-       CF00C8D0CF00C9CFCF00C9CFCF00C9CFD000C8CFCF00C9CFCF00C9CFCF00C9CF
 
-       CF00C9CFCF00C9CFCF00C9CFCF00C9CFCF00C8CFCF00C9CFCF00C9CFCF00C9D0
 
-       CF00C9CFCF000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00C1C9CA00C2C9C900C2C9CA00C2C9C900C2CAC900C2CAC900C2C9
 
-       C900C1C9C900C1C9C9000000000000000000D5D9D900D4DAD900242424002424
 
-       240024242400D4D9D900D5D9D900D4D9D900D4D9D900D4D9D900D4D9D900D4D9
 
-       D900D4D9D900D4D9D9000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000FBBFB00000000000000000000000000000000000E0E
 
-       0E00FFFFFF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C009572
 
-       0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00D6DB
 
-       DB00D6DBDB00D6DBDB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DB
 
-       DB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DBDB00D7DBDB00D7DB
 
-       DB00D7DBDB0000000000D7DBDB0000000000D6DBDB0000000000D6DBDB00D7DB
 
-       DB00D7DBDB000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00C6CCCC00C5CCCD00C5CCCC00C6CDCC00C5CCCD00C6CCCC00C5CC
 
-       CC00C5CCCC00C6CDCD000000000000000000D9DDDD00D8DDDC00D9DDDD00D9DD
 
-       DD00D9DDDD00D9DDDD00D9DDDD00D8DDDD00D9DDDD00D8DDDD00D9DCDD00D9DD
 
-       DD00D9DDDD00D9DDDD000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000FBBFB00000000000000000000000000000000000000
 
-       0000FFFFFF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D009976
 
-       0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00E4E7
 
-       E600000000000000000000000000000000000000000000000000000000000000
 
-       0000E4E7E700E5E7E700E5E7E700E5E7E700E4E7E700E5E7E700E5E7E600E5E7
 
-       E700E5E7E70000000000E4E7E70000000000E4E7E70000000000E5E7E700E5E7
 
-       E600E5E7E7000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00CAD0D100CAD0D000CAD0D000C9D0D000C9D0D000CAD0D000C9D0
 
-       D000CAD0D000CAD0D0000000000000000000DDE0E000DDE0E000242424002424
 
-       240024242400DDE1E100DDE0E100DDE1E100DEE1E000DDE1E100DDE1E100DEE1
 
-       E000DDE1E100DDE0E1000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000FBBFB00000000000000000000000000000000000E0E
 
-       0E00FFFFFF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B
 
-       0C00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00EEEF
 
-       EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
 
-       EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
 
-       EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
 
-       EF00EEEFEF000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00CFD4D400CFD4D500CFD4D400CED4D400CFD4D400CFD4D400CFD4
 
-       D500CFD4D400CFD4D4000000000000000000E2E4E50024242400003CFF00003C
 
-       FF00003CFF0024242400E2E4E500E1E4E400E1E5E400E2E4E500E2E4E400E1E5
 
-       E400E1E4E400E2E4E4000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00D3D8D900D4D9D900D3D8D900D4D9D800D4D8D800D4D8D900D4D9
 
-       D900D4D8D900D4D9D9000000000000000000E5E7E80024242400003CFF00003C
 
-       FF00003CFF0024242400E5E7E7000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E00E5E8E800E5E8E8000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
 
-       CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCFCF00CBCF
 
-       CF00CBCFCF00C9D0CF000E0E0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF00FFFFFF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00D9DEDD00D9DDDD00DADDDD00D9DDDD00DADDDD00D9DEDD00D9DD
 
-       DD00D9DDDD00DADEDD000000000000000000E9EAEA0024242400FFFFFF00003C
 
-       FF00003CFF0024242400E9EBEA00E8EBEB00E9EBEB00E9EBEA00E8EBEB00E9EB
 
-       EA00E9EBEB00E9EBEB000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000E0E0E00E5E7E700E5E7E700E5E7
 
-       E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
 
-       E700E5E7E700E5E7E7000E0E0E00000000000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E0000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00CECECE00CECECE00CECECE00CECECE00CECE
 
-       CE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECE
 
-       CE00CECECE00CECECE00CECECE00CECECE00CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00DFE1E200DEE2E200DEE2E100DFE2E200DFE1E100DEE2E100DFE2
 
-       E200DEE2E200DEE2E2000000000000000000EBEDED00EBEDED00242424002424
 
-       240024242400ECEDED00ECEDEE00ECEDED00EBEDED00EBEDED00ECEDED00ECED
 
-       ED00ECEDED00ECEDEE000D0D0D00000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E0000000000000000000FBBFB00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
 
-       F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
 
-       F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00E3E6E600E4E6E600E4E6E600E4E6E600E3E6E600E4E6E600E4E6
 
-       E600E4E6E600E3E6E6000000000000000000EEEFEF00EEEFEF00EEEFEF00EEEF
 
-       EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
 
-       EF00EEEFEF00EEEFEF000D0D0D00000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E00CBCF
 
-       CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
 
-       CF000E0E0E00000000000000000000000000000000000FBBFB00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00E8EAE900E7EAEA00E8EAEA00E7E9EA00E8EAE900E7E9EA00E8EA
 
-       EA00E7E9EA00E8E9E90000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000D0D0D00000000000000000000000000000000000000
 
-       00000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E0E00FFFF
 
-       FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
 
-       F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B39A
 
-       1000AF950F000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E00916C0A008F690A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00ECEDED00EBEDED00ECEDED00ECEDED00ECEDED00EBECEC00EBEC
 
-       ED00ECEDEC00EBEDEC0000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
 
-       F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B69D
 
-       1000B29810000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
 
-       0E00936E0A00906B0A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF000E0E0E000E0E0E0000000000000000000000000000000000000000000000
 
-       00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
 
-       F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
 
-       0E000E0E0E000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
 
-       0E0094710B00926D0B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00DCCF710094700B0095700B0094700B0094700B0094700B0094700A00946F
 
-       0B0094700B0094700A0094700B00946F0B0094700B0094700B0094700B009470
 
-       0A0094700B0094700A0094700B00946F0B0094700B00946F0B0094700B009470
 
-       0B000E0E0E000E0E0E0000000000000000000000000000000000000000000000
 
-       00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
 
-       F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
 
-       0E00F2F2F2000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
 
-       0E0097740B0094700B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00DCCF71009C7A0B009B7A0C009C7A0C009C790C009C790C009B7A0C009C7A
 
-       0C009C7A0B009C7A0C009C7A0C009B7A0C009C7A0C009B790C009C7A0C009C7A
 
-       0C009B790C009B7A0C009B7A0C009B7A0C009C7A0C009C790C009B7A0C009B79
 
-       0C000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00FFFF
 
-       FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
 
-       F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
 
-       0E00F2F2F2000E0E0E00F6DF2100F6DF2100F6DF2100F6DF2100F6DF21000E0E
 
-       0E009A780C0097720C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00DCCF7100A4860D00A4850D00A3850D00A4850D00A4850D00A4860D00A485
 
-       0D00A4860D00A4850D00A4860D00A4860D00A4860D00A4860D00A4850E00A486
 
-       0D00A4860D00A3860D00A4860D00A4850D00A4850D00A4850D00A3860D00A485
 
-       0D000E0E0E000E0E0E0000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
 
-       CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF000E0E0E00FFFF
 
-       FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
 
-       F2000E0E0E000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
 
-       0E00F2F2F2000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E009C7B0C0099760B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00DCCF7100AD920F00AD910E00AD920F00AE920E00AD920F00AD920F00AD92
 
-       0F00AD920F00AE910F00AD910E00AD910E00AD920F00AD920E00AD920F00AD92
 
-       0F00AD920E00AD920F00AD920E00AD910F00AE920F00AD920E00AD920E00AD91
 
-       0F000E0E0E000E0E0E0000000000000000000E0E0E00E5E7E700E5E7E700E5E7
 
-       E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E7000E0E0E00FFFF
 
-       FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF000E0E0E000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
 
-       0E00F6DF2100F6DF2100F6DF21000E0E0E00B0951000AC8F0E00A78A0E00A385
 
-       0D009F7E0D009B790C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00DCCF7100B69D1000B69D1100B69E1000B69D1000B69D1000DCCF7100DCCF
 
-       7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
 
-       7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
 
-       71000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E00B39A1000AB8E0E00AB8E0E00A788
 
-       0E00A2830D009E7D0C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00DCCF7100BDA71100BDA71100BCA71100BDA71100BDA711000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00CBCF
 
-       CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
 
-       CF000E0E0E000000000000000000000000000FBBFB0000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100F6DF
 
-       2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF
 
-       2100F6DF2100F6DF21000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E00DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF71000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
 
-       F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E00000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
 
-       F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
 
-       F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
 
-       F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E00000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
 
-       F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E00AAAAAA00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AAAAAA000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
 
-       F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB0000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
 
-       F2000E0E0E000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
 
-       F2000E0E0E000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E00FFFF
 
-       FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
 
-       FF000E0E0E000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000000000000E0E0E000E0E
 
-       0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
 
-       0E000E0E0E000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000424D3E000000000000003E000000
 
-       2800000080000000200000000100010000000000000200000000000000000000
 
-       000000000000000000000000FFFFFF00FFFC0000FFFF0000FFFFFFFF00000000
 
-       FFFC0000FFFF0000FFFFFFFF00000000FFFC0000FFFF0000FFFFFFFF00000000
 
-       FFFC0000FFFF0000FFFFFFFF00000000C0000000FFF000008000000100000000
 
-       C0000000FFF000018000000100000000C0000000FFF000018000000100000000
 
-       C0000000FFF000018000000100000000C0000000FFF000018000000100000000
 
-       C0000000FE0000018000000100000000C0000000FE0000018000000100000000
 
-       C0000000FE0000018000000100000000C0000000FE000001F800001F00000000
 
-       C0000000C0000001F800001F00000000C0000000C000000FF800001F00000000
 
-       C0000000C000000FF800001F00000000C0000000C000000FF800001F00000000
 
-       C0000003C000000FF800001F00000000C00000030000000FF800001F00000000
 
-       C00000030000000FF800001F00000000C00000030000000FF800001F00000000
 
-       C00000030000000FF800001F00000000C0000003000003FFF800001F00000000
 
-       C0000003000003FFF800001F00000000C000000380001FFFF800001F00000000
 
-       C00FFFFF80001FFFF800001F00000000C00FFFFF80001FFFF800001F00000000
 
-       FFFFFFFF80001FFFF800001F00000000FFFFFFFF80001FFFFC00003F00000000
 
-       FFFFFFFF80001FFFFFFFFFFF00000000FFFFFFFF8003FFFFFFFFFFFF00000000
 
-       FFFFFFFF8003FFFFFFFFFFFF0000000000000000000000000000000000000000
 
-       000000000000}
 
-   end
 
-   object zaStaff: TZjGridDBA
 
-     Columns = <
 
-       item
 
-         Title.Caption = #26399#25968
 
-         Title.CaptionAcrossCols = '1'
 
-         Title.Font.Charset = GB2312_CHARSET
 
-         Title.Font.Color = clWindowText
 
-         Title.Font.Height = -12
 
-         Title.Font.Name = #23435#20307
 
-         Title.Font.Style = []
 
-         Alignment = taCenter
 
-         Font.Charset = GB2312_CHARSET
 
-         Font.Color = clWindowText
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         FieldName = 'PhaseID'
 
-         Width = 20
 
-         Visible = False
 
-         ReadOnly = True
 
-       end
 
-       item
 
-         Title.Caption = #23457#26680#27969#31243
 
-         Title.CaptionAcrossCols = '1'
 
-         Title.Font.Charset = GB2312_CHARSET
 
-         Title.Font.Color = clWindowText
 
-         Title.Font.Height = -12
 
-         Title.Font.Name = #23435#20307
 
-         Title.Font.Style = []
 
-         Alignment = taCenter
 
-         Font.Charset = GB2312_CHARSET
 
-         Font.Color = clWindowText
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         FieldName = 'StageID'
 
-         Width = 60
 
-         ReadOnly = True
 
-       end
 
-       item
 
-         Title.Caption = #21333#20301
 
-         Title.CaptionAcrossCols = '1'
 
-         Title.Font.Charset = GB2312_CHARSET
 
-         Title.Font.Color = clWindowText
 
-         Title.Font.Height = -12
 
-         Title.Font.Name = #23435#20307
 
-         Title.Font.Style = []
 
-         Alignment = taLeftJustify
 
-         Font.Charset = GB2312_CHARSET
 
-         Font.Color = clWindowText
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         FieldName = 'Company'
 
-         Width = 220
 
-         ReadOnly = False
 
-       end
 
-       item
 
-         Title.Caption = #35282#33394
 
-         Title.CaptionAcrossCols = '1'
 
-         Title.Font.Charset = GB2312_CHARSET
 
-         Title.Font.Color = clWindowText
 
-         Title.Font.Height = -12
 
-         Title.Font.Name = #23435#20307
 
-         Title.Font.Style = []
 
-         Alignment = taLeftJustify
 
-         Font.Charset = GB2312_CHARSET
 
-         Font.Color = clWindowText
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         FieldName = 'Role'
 
-         Width = 80
 
-         ReadOnly = False
 
-       end
 
-       item
 
-         Title.Caption = #22995#21517
 
-         Title.CaptionAcrossCols = '1'
 
-         Title.Font.Charset = GB2312_CHARSET
 
-         Title.Font.Color = clWindowText
 
-         Title.Font.Height = -12
 
-         Title.Font.Name = #23435#20307
 
-         Title.Font.Style = []
 
-         Alignment = taLeftJustify
 
-         Font.Charset = GB2312_CHARSET
 
-         Font.Color = clWindowText
 
-         Font.Height = -12
 
-         Font.Name = #23435#20307
 
-         Font.Style = []
 
-         FieldName = 'Name'
 
-         Width = 60
 
-         ReadOnly = False
 
-       end>
 
-     Grid = zgStaff
 
-     ExtendRowCount = 0
 
-     Left = 400
 
-     Top = 14
 
-   end
 
-   object imgValid: TImageList
 
-     Left = 352
 
-     Top = 40
 
-     Bitmap = {
 
-       494C010102000400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
 
-       0000000000003600000028000000400000001000000001002000000000000010
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000ECECECFF75AF78FF7BAD7EFFFBFBFBFF00000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000DCDDDFFFDCDDDFFF00000000000000000000000000000000DCDDDFFFDCDD
 
-       DFFF000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000C9D0CAFF56B95BFF41E84AFF40E64AFF74AD77FFF9F9F9FF000000000000
 
-       000000000000000000000000000000000000000000000000000000000000D1D2
 
-       D7FF2A35C1FF2634C2FFD0D1D5FF0000000000000000D2D3D7FF2A35C1FF2634
 
-       C2FFCFD1D5FF0000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000000000000000000000000000A1B7
 
-       A3FF45CC4DFF42E44CFF3ED847FF3ED948FF42E64CFF70B074FFF7F7F7FF0000
 
-       0000000000000000000000000000000000000000000000000000DADBDEFF3745
 
-       C5FF0409E4FF060BE5FF2F3EC1FFDADADDFFDADBDEFF303FC1FF060CE5FF0409
 
-       E4FF3645C6FFD9DADDFF00000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000F1F1F1FF7CAF7FFF43DF
 
-       4DFF43E14DFF41D94AFF44E24DFF42DC4BFF41DA4AFF45E74FFF6CB170FFF4F4
 
-       F4FF000000000000000000000000000000000000000000000000DBDCDEFF4553
 
-       C6FF2932EFFF0814E5FF0C16EAFF3946BBFF3948BBFF0C16EAFF0814E5FF2932
 
-       EFFF4552C9FFD9DADDFF00000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000CDD2CEFF60B866FF48E852FF44DD
 
-       4EFF44DD4EFF46E350FF57C35EFF46D44FFF46E14FFF44DB4DFF48E952FF69B3
 
-       6EFFF1F1F1FF000000000000000000000000000000000000000000000000D2D3
 
-       D8FF4C5CC6FF303EF4FF1325E9FF1526EBFF1526EBFF1325E9FF2F3EF4FF4C5A
 
-       C7FFD0D1D6FF0000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000077B37AFF4FF85AFF46DB4FFF49E3
 
-       52FF49E452FF8AB58CFFF1F1F1FFB2C2B3FF4BDA53FF49E453FF46DC50FF4BEB
 
-       55FF67B56CFFECECECFF00000000000000000000000000000000000000000000
 
-       0000DBDBDEFF5663C1FF293FF1FF1E3AEFFF1E3AEFFF293FF1FF5563C0FFD9D9
 
-       DDFF000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000DBDEDBFF5CC663FF51F65CFF50D6
 
-       57FFA9BEABFF000000000000000000000000B6C5B7FF4ED756FF4CE656FF48DD
 
-       52FF4DEC58FF65B96BFFE7E8E7FF000000000000000000000000000000000000
 
-       0000D9DADDFF3D4DC0FF2340F4FF294EF4FF294EF4FF2341F5FF3C4CC1FFD8D9
 
-       DCFF000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       00000000000000000000000000000000000000000000D2D7D2FF78BB7DFFC7CF
 
-       C7FF0000000000000000000000000000000000000000BCC8BDFF52D759FF4FE8
 
-       59FF4BDE54FF50ED5BFF63BB6AFFE2E4E3FF000000000000000000000000D1D2
 
-       D7FF3547C8FF2545FFFF2C56F7FF4364FAFF4464FAFF2C56F7FF2546FFFF3446
 
-       C8FFCFD0D5FF0000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000C2CBC2FF55D4
 
-       5DFF51EA5CFF4DDE57FF52EE5EFF5EC166FF0000000000000000DADBDEFF3C4D
 
-       D0FF284CFFFF3667FCFF4768FFFF5261C1FF5261C0FF4769FFFF3667FCFF284C
 
-       FFFF3B4CD1FFD9DADDFF00000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000000000000000000000000000C7CF
 
-       C7FF5AD262FF54EC5FFF54EC5FFF57D65EFF0000000000000000DBDBDEFF4858
 
-       D0FF4568FFFF476BFFFF4E5ECBFFDADADDFFDBDBDEFF4F5ECAFF476CFFFF4568
 
-       FFFF4657D1FFD9D9DDFF00000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000CDD3CDFF5AD362FF56D960FFC8D0C8FF000000000000000000000000D2D3
 
-       D7FF4A5AD1FF4758D1FFD1D2D6FF0000000000000000D2D2D7FF495AD1FF4759
 
-       D1FFD0D1D6FF0000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000D9DDD9FFD3D8D3FF000000000000000000000000000000000000
 
-       0000DDDDE0FFDDDDE0FF00000000000000000000000000000000DDDDE0FFDDDD
 
-       E0FF000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       0000000000000000000000000000000000000000000000000000000000000000
 
-       000000000000000000000000000000000000424D3E000000000000003E000000
 
-       2800000040000000100000000100010000000000800000000000000000000000
 
-       000000000000000000000000FFFFFF00FFFFFFFF00000000FFFFFFFF00000000
 
-       F87FF3CF00000000F03FE18700000000E01FC00300000000800FC00300000000
 
-       0007E007000000000003F00F000000000701F00F000000008F80E00700000000
 
-       FFC0C00300000000FFE0C00300000000FFF0E18700000000FFF9F3CF00000000
 
-       FFFFFFFF00000000FFFFFFFF0000000000000000000000000000000000000000
 
-       000000000000}
 
-   end
 
- end
 
 
  |