ProjectPropertiesFrm.dfm 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187
  1. object ProjectPropertiesForm: TProjectPropertiesForm
  2. Left = 663
  3. Top = 261
  4. ActiveControl = leProjectName
  5. BorderIcons = [biSystemMenu]
  6. BorderStyle = bsSingle
  7. Caption = #39033#30446#23646#24615
  8. ClientHeight = 357
  9. ClientWidth = 530
  10. Color = clBtnFace
  11. Font.Charset = ANSI_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -12
  14. Font.Name = #23435#20307
  15. Font.Style = []
  16. OldCreateOrder = False
  17. DesignSize = (
  18. 530
  19. 357)
  20. PixelsPerInch = 96
  21. TextHeight = 12
  22. object btnOk: TButton
  23. Left = 361
  24. Top = 329
  25. Width = 75
  26. Height = 21
  27. Anchors = [akRight, akBottom]
  28. Caption = #30830' '#23450
  29. TabOrder = 0
  30. OnClick = btnOkClick
  31. end
  32. object btnCancel: TButton
  33. Left = 448
  34. Top = 329
  35. Width = 75
  36. Height = 21
  37. Anchors = [akRight, akBottom]
  38. Caption = #21462' '#28040
  39. ModalResult = 2
  40. TabOrder = 1
  41. end
  42. object pnlTop: TPanel
  43. Left = 0
  44. Top = 0
  45. Width = 530
  46. Height = 63
  47. Align = alTop
  48. BevelOuter = bvNone
  49. TabOrder = 2
  50. object tbTop: TToolBar
  51. Left = 0
  52. Top = 6
  53. Width = 530
  54. Height = 51
  55. AutoSize = True
  56. ButtonHeight = 51
  57. ButtonWidth = 67
  58. EdgeInner = esNone
  59. EdgeOuter = esNone
  60. Flat = True
  61. Images = Images
  62. ShowCaptions = True
  63. TabOrder = 0
  64. object tobtnBase: TToolButton
  65. Left = 0
  66. Top = 0
  67. Caption = #22522#30784#23646#24615
  68. Down = True
  69. ImageIndex = 0
  70. Style = tbsCheck
  71. OnClick = tobtnBaseClick
  72. end
  73. object tobtnStaff: TToolButton
  74. Tag = 1
  75. Left = 67
  76. Top = 0
  77. Caption = #35745#37327#21442#19982#20154
  78. ImageIndex = 1
  79. Style = tbsCheck
  80. OnClick = tobtnBaseClick
  81. end
  82. object tobtnView: TToolButton
  83. Tag = 2
  84. Left = 134
  85. Top = 0
  86. Caption = #26174#31034#35774#32622
  87. ImageIndex = 2
  88. Style = tbsCheck
  89. OnClick = tobtnBaseClick
  90. end
  91. end
  92. object pnlBlank: TPanel
  93. Left = 0
  94. Top = 0
  95. Width = 530
  96. Height = 6
  97. Align = alTop
  98. BevelOuter = bvNone
  99. TabOrder = 1
  100. end
  101. object jcbPhase: TJimComboBox
  102. Left = 379
  103. Top = 38
  104. Width = 145
  105. Height = 21
  106. AutoSize = False
  107. ButtonWidth = 17
  108. DropDownBox.Width = 145
  109. DropDownBox.Height = 150
  110. DropDownBox.ShowToolBar = False
  111. Style = cbsOfficeXP
  112. ItemIndex = -1
  113. ItemHeight = 14
  114. Visible = False
  115. OnChanged = jcbPhaseChanged
  116. end
  117. end
  118. object jpsProperties: TJimPages
  119. Left = 0
  120. Top = 63
  121. Width = 530
  122. Height = 255
  123. ActivePage = jpsPropertiesBase
  124. ActivePageIndex = 0
  125. Align = alTop
  126. Caption = 'jpsProperties'
  127. object jpsPropertiesBase: TJimPage
  128. Left = 0
  129. Top = 0
  130. Width = 530
  131. Height = 255
  132. TabName = 'Base'
  133. Caption = 'Base'
  134. DesignSize = (
  135. 530
  136. 255)
  137. object pnlBase: TPanel
  138. Left = 0
  139. Top = 3
  140. Width = 529
  141. Height = 247
  142. Anchors = [akLeft, akTop, akRight]
  143. BevelOuter = bvNone
  144. TabOrder = 0
  145. object tbContents: TToolBar
  146. Left = 0
  147. Top = 0
  148. Width = 91
  149. Height = 247
  150. Align = alLeft
  151. AutoSize = True
  152. ButtonHeight = 20
  153. ButtonWidth = 91
  154. Color = clBtnFace
  155. Ctl3D = False
  156. EdgeBorders = []
  157. Flat = True
  158. ParentColor = False
  159. ShowCaptions = True
  160. TabOrder = 1
  161. object tobtnDealInfo: TToolButton
  162. Tag = 1
  163. Left = 0
  164. Top = 0
  165. Caption = ' '#21512#21516#20449#24687' '
  166. Down = True
  167. ImageIndex = 0
  168. Wrap = True
  169. Style = tbsCheck
  170. OnClick = tobtnDealInfoClick
  171. end
  172. object tobtnTechParameters: TToolButton
  173. Tag = 2
  174. Left = 0
  175. Top = 20
  176. Caption = #25216#26415#21442#25968
  177. ImageIndex = 1
  178. Wrap = True
  179. Style = tbsCheck
  180. OnClick = tobtnDealInfoClick
  181. end
  182. object tobtnDealPayment: TToolButton
  183. Tag = 3
  184. Left = 0
  185. Top = 40
  186. Caption = #21512#21516#25903#20184
  187. ImageIndex = 4
  188. Wrap = True
  189. Style = tbsCheck
  190. OnClick = tobtnDealInfoClick
  191. end
  192. object tobtnSafe: TToolButton
  193. Tag = 4
  194. Left = 0
  195. Top = 60
  196. Caption = #25991#20214#23433#20840
  197. ImageIndex = 5
  198. Wrap = True
  199. Style = tbsCheck
  200. OnClick = tobtnDealInfoClick
  201. end
  202. object tobtnCalcParameters: TToolButton
  203. Tag = 5
  204. Left = 0
  205. Top = 80
  206. Caption = #35745#31639#21442#25968
  207. ImageIndex = 6
  208. Wrap = True
  209. Style = tbsCheck
  210. OnClick = tobtnDealInfoClick
  211. end
  212. object tobtnDateTime: TToolButton
  213. Tag = 6
  214. Left = 0
  215. Top = 100
  216. Caption = #26102#38388#21442#25968
  217. ImageIndex = 7
  218. Style = tbsCheck
  219. OnClick = tobtnDealInfoClick
  220. end
  221. end
  222. object msbBase: TMScrollBox
  223. Left = 91
  224. Top = 0
  225. Width = 438
  226. Height = 247
  227. HorzScrollBar.Range = 401
  228. VertScrollBar.Range = 1180
  229. Align = alClient
  230. AutoScroll = False
  231. BevelInner = bvNone
  232. BevelOuter = bvNone
  233. BorderStyle = bsNone
  234. Color = clBtnFace
  235. Ctl3D = False
  236. ParentColor = False
  237. ParentCtl3D = False
  238. TabOrder = 0
  239. OnMouseWheel = msbBaseMouseWheel
  240. OnMouseWheelDown = msbBaseMouseWheelDown
  241. OnMouseWheelUp = msbBaseMouseWheelUp
  242. OnVScroll = msbBaseVScroll
  243. object lblDealInfo: TLabel
  244. Left = 7
  245. Top = 4
  246. Width = 48
  247. Height = 12
  248. Caption = #21512#21516#20449#24687
  249. Font.Charset = ANSI_CHARSET
  250. Font.Color = clBlue
  251. Font.Height = -12
  252. Font.Name = #23435#20307
  253. Font.Style = []
  254. ParentFont = False
  255. end
  256. object lblBuilder: TLabel
  257. Left = 34
  258. Top = 108
  259. Width = 60
  260. Height = 12
  261. Caption = #24314#35774#21333#20301#65306
  262. end
  263. object lblConstructor: TLabel
  264. Left = 34
  265. Top = 192
  266. Width = 60
  267. Height = 12
  268. Caption = #25215#21253#21333#20301#65306
  269. end
  270. object lblSupervisor: TLabel
  271. Left = 34
  272. Top = 276
  273. Width = 60
  274. Height = 12
  275. Caption = #30417#29702#21333#20301#65306
  276. end
  277. object lblTechParameters: TLabel
  278. Left = 7
  279. Top = 371
  280. Width = 48
  281. Height = 12
  282. Caption = #25216#26415#21442#25968
  283. Font.Charset = ANSI_CHARSET
  284. Font.Color = clBlue
  285. Font.Height = -12
  286. Font.Name = #23435#20307
  287. Font.Style = []
  288. ParentFont = False
  289. end
  290. object lblLoadLevel: TLabel
  291. Left = 34
  292. Top = 393
  293. Width = 60
  294. Height = 12
  295. Caption = #20844#36335#31561#32423#65306
  296. end
  297. object lblDealPayTitle: TLabel
  298. Left = 7
  299. Top = 531
  300. Width = 48
  301. Height = 12
  302. Caption = #21512#21516#25903#20184
  303. Font.Charset = ANSI_CHARSET
  304. Font.Color = clBlue
  305. Font.Height = -12
  306. Font.Name = #23435#20307
  307. Font.Style = []
  308. ParentFont = False
  309. end
  310. object lblSafeTitel: TLabel
  311. Left = 7
  312. Top = 635
  313. Width = 48
  314. Height = 12
  315. Caption = #25991#20214#23433#20840
  316. Font.Charset = ANSI_CHARSET
  317. Font.Color = clBlue
  318. Font.Height = -12
  319. Font.Name = #23435#20307
  320. Font.Style = []
  321. ParentFont = False
  322. end
  323. object lblUnlockPassword: TLabel
  324. Left = 36
  325. Top = 659
  326. Width = 84
  327. Height = 12
  328. Caption = #35299#38145#33410#28857#23494#30721#65306
  329. end
  330. object lblPasswordHint: TLabel
  331. Left = 128
  332. Top = 660
  333. Width = 90
  334. Height = 12
  335. Caption = 'lblPasswordHint'
  336. Font.Charset = ANSI_CHARSET
  337. Font.Color = clRed
  338. Font.Height = -12
  339. Font.Name = #23435#20307
  340. Font.Style = []
  341. ParentFont = False
  342. Visible = False
  343. end
  344. object lblCalcParametersTitel: TLabel
  345. Left = 7
  346. Top = 763
  347. Width = 48
  348. Height = 12
  349. Caption = #35745#31639#21442#25968
  350. Font.Charset = ANSI_CHARSET
  351. Font.Color = clBlue
  352. Font.Height = -12
  353. Font.Name = #23435#20307
  354. Font.Style = []
  355. ParentFont = False
  356. end
  357. object lblDigit: TLabel
  358. Left = 36
  359. Top = 787
  360. Width = 84
  361. Height = 12
  362. Caption = #20445#30041#23567#25968#20301#25968#65306
  363. end
  364. object lblDateTime: TLabel
  365. Left = 7
  366. Top = 936
  367. Width = 48
  368. Height = 12
  369. Caption = #26102#38388#21442#25968
  370. Font.Charset = ANSI_CHARSET
  371. Font.Color = clBlue
  372. Font.Height = -12
  373. Font.Name = #23435#20307
  374. Font.Style = []
  375. ParentFont = False
  376. end
  377. object lblBaseline: TLabel
  378. Left = 36
  379. Top = 959
  380. Width = 60
  381. Height = 12
  382. Caption = #36215#22987#26085#26399#65306
  383. end
  384. object lblDeadline: TLabel
  385. Left = 36
  386. Top = 983
  387. Width = 60
  388. Height = 12
  389. Caption = #25130#27490#26085#26399#65306
  390. end
  391. object lblDateHint: TLabel
  392. Left = 37
  393. Top = 1004
  394. Width = 192
  395. Height = 12
  396. Caption = #24403#21069#25130#27490#26085#26399' '#65308' '#36215#22987#26085#26399#65292#35831#26680#26597
  397. Font.Charset = ANSI_CHARSET
  398. Font.Color = clRed
  399. Font.Height = -12
  400. Font.Name = #23435#20307
  401. Font.Style = []
  402. ParentFont = False
  403. end
  404. object pnlDealInfoBar: TPanel
  405. Left = 62
  406. Top = 9
  407. Width = 339
  408. Height = 2
  409. BevelOuter = bvLowered
  410. TabOrder = 0
  411. end
  412. object leProjectName: TLabeledEdit
  413. Left = 33
  414. Top = 36
  415. Width = 330
  416. Height = 18
  417. Ctl3D = False
  418. EditLabel.Width = 84
  419. EditLabel.Height = 12
  420. EditLabel.Caption = #24314#35774#39033#30446#21517#31216#65306
  421. ParentCtl3D = False
  422. TabOrder = 1
  423. end
  424. object leDealName: TLabeledEdit
  425. Left = 33
  426. Top = 76
  427. Width = 152
  428. Height = 18
  429. Ctl3D = False
  430. EditLabel.Width = 60
  431. EditLabel.Height = 12
  432. EditLabel.Caption = #21512#21516#21517#31216#65306
  433. ParentCtl3D = False
  434. TabOrder = 2
  435. end
  436. object leDealIndex: TLabeledEdit
  437. Left = 195
  438. Top = 76
  439. Width = 80
  440. Height = 18
  441. Ctl3D = False
  442. EditLabel.Width = 60
  443. EditLabel.Height = 12
  444. EditLabel.Caption = #21512#21516#32534#21495#65306
  445. ParentCtl3D = False
  446. TabOrder = 3
  447. end
  448. object leBName: TLabeledEdit
  449. Left = 101
  450. Top = 123
  451. Width = 261
  452. Height = 18
  453. Ctl3D = False
  454. EditLabel.Width = 60
  455. EditLabel.Height = 12
  456. EditLabel.Caption = #21333#20301#21517#31216#65306
  457. ParentCtl3D = False
  458. TabOrder = 4
  459. end
  460. object leBLegal: TLabeledEdit
  461. Left = 101
  462. Top = 164
  463. Width = 137
  464. Height = 18
  465. Ctl3D = False
  466. EditLabel.Width = 60
  467. EditLabel.Height = 12
  468. EditLabel.Caption = #27861#20154#20195#34920#65306
  469. ParentCtl3D = False
  470. TabOrder = 5
  471. end
  472. object leBDate: TLabeledEdit
  473. Left = 245
  474. Top = 164
  475. Width = 119
  476. Height = 18
  477. Ctl3D = False
  478. EditLabel.Width = 60
  479. EditLabel.Height = 12
  480. EditLabel.Caption = #31614#35746#26085#26399#65306
  481. ParentCtl3D = False
  482. TabOrder = 6
  483. end
  484. object leCName: TLabeledEdit
  485. Left = 101
  486. Top = 207
  487. Width = 262
  488. Height = 18
  489. Ctl3D = False
  490. EditLabel.Width = 60
  491. EditLabel.Height = 12
  492. EditLabel.Caption = #21333#20301#21517#31216#65306
  493. ParentCtl3D = False
  494. TabOrder = 7
  495. end
  496. object leCLegal: TLabeledEdit
  497. Left = 101
  498. Top = 248
  499. Width = 137
  500. Height = 18
  501. Ctl3D = False
  502. EditLabel.Width = 60
  503. EditLabel.Height = 12
  504. EditLabel.Caption = #27861#20154#20195#34920#65306
  505. ParentCtl3D = False
  506. TabOrder = 8
  507. end
  508. object leCDate: TLabeledEdit
  509. Left = 245
  510. Top = 248
  511. Width = 119
  512. Height = 18
  513. Ctl3D = False
  514. EditLabel.Width = 60
  515. EditLabel.Height = 12
  516. EditLabel.Caption = #31614#35746#26085#26399#65306
  517. ParentCtl3D = False
  518. TabOrder = 9
  519. end
  520. object leSName: TLabeledEdit
  521. Left = 101
  522. Top = 291
  523. Width = 262
  524. Height = 18
  525. Ctl3D = False
  526. EditLabel.Width = 60
  527. EditLabel.Height = 12
  528. EditLabel.Caption = #21333#20301#21517#31216#65306
  529. ParentCtl3D = False
  530. TabOrder = 10
  531. end
  532. object leSLegal: TLabeledEdit
  533. Left = 101
  534. Top = 331
  535. Width = 137
  536. Height = 18
  537. Ctl3D = False
  538. EditLabel.Width = 60
  539. EditLabel.Height = 12
  540. EditLabel.Caption = #27861#20154#20195#34920#65306
  541. ParentCtl3D = False
  542. TabOrder = 11
  543. end
  544. object leSDate: TLabeledEdit
  545. Left = 245
  546. Top = 331
  547. Width = 119
  548. Height = 18
  549. Ctl3D = False
  550. EditLabel.Width = 60
  551. EditLabel.Height = 12
  552. EditLabel.Caption = #31614#35746#26085#26399#65306
  553. ParentCtl3D = False
  554. TabOrder = 12
  555. end
  556. object pnlTechParametersBar: TPanel
  557. Left = 62
  558. Top = 376
  559. Width = 339
  560. Height = 2
  561. BevelOuter = bvLowered
  562. TabOrder = 21
  563. end
  564. object leStartPeg: TLabeledEdit
  565. Left = 34
  566. Top = 451
  567. Width = 132
  568. Height = 18
  569. Ctl3D = False
  570. EditLabel.Width = 60
  571. EditLabel.Height = 12
  572. EditLabel.Caption = #36215#28857#26729#21495#65306
  573. ParentCtl3D = False
  574. TabOrder = 14
  575. end
  576. object leEndPeg: TLabeledEdit
  577. Left = 176
  578. Top = 451
  579. Width = 131
  580. Height = 18
  581. Ctl3D = False
  582. EditLabel.Width = 60
  583. EditLabel.Height = 12
  584. EditLabel.Caption = #32456#28857#26729#21495#65306
  585. ParentCtl3D = False
  586. TabOrder = 15
  587. end
  588. object leLength: TLabeledEdit
  589. Left = 34
  590. Top = 491
  591. Width = 132
  592. Height = 18
  593. Ctl3D = False
  594. EditLabel.Width = 72
  595. EditLabel.Height = 12
  596. EditLabel.Caption = #38271#24230#65288'km'#65289#65306
  597. ParentCtl3D = False
  598. TabOrder = 16
  599. end
  600. object leLaneCount: TLabeledEdit
  601. Left = 176
  602. Top = 491
  603. Width = 132
  604. Height = 18
  605. Ctl3D = False
  606. EditLabel.Width = 48
  607. EditLabel.Height = 12
  608. EditLabel.Caption = #36710#36947#25968#65306
  609. ParentCtl3D = False
  610. TabOrder = 17
  611. end
  612. object cbLoadLevel: TComboBox
  613. Left = 34
  614. Top = 410
  615. Width = 132
  616. Height = 20
  617. Ctl3D = False
  618. DropDownCount = 5
  619. ItemHeight = 12
  620. ParentCtl3D = False
  621. TabOrder = 13
  622. Items.Strings = (
  623. #39640#36895#20844#36335
  624. #19968#32423#20844#36335
  625. #20108#32423#20844#36335
  626. #19977#32423#20844#36335
  627. #22235#32423#20844#36335)
  628. end
  629. object pnlDealPayBar: TPanel
  630. Left = 62
  631. Top = 537
  632. Width = 339
  633. Height = 2
  634. BevelOuter = bvLowered
  635. TabOrder = 22
  636. end
  637. object leContractPrice: TLabeledEdit
  638. Left = 133
  639. Top = 552
  640. Width = 117
  641. Height = 18
  642. BiDiMode = bdLeftToRight
  643. Ctl3D = False
  644. EditLabel.Width = 96
  645. EditLabel.Height = 12
  646. EditLabel.BiDiMode = bdLeftToRight
  647. EditLabel.Caption = #31614#32422#21512#21516#20215#65306' '
  648. EditLabel.ParentBiDiMode = False
  649. LabelPosition = lpLeft
  650. ParentBiDiMode = False
  651. ParentCtl3D = False
  652. TabOrder = 18
  653. OnClick = leContractPriceClick
  654. end
  655. object leStartedSubsist: TLabeledEdit
  656. Left = 133
  657. Top = 579
  658. Width = 118
  659. Height = 18
  660. Ctl3D = False
  661. EditLabel.Width = 96
  662. EditLabel.Height = 12
  663. EditLabel.Caption = #31614#32422#24320#24037#39044#20184#27454#65306
  664. LabelPosition = lpLeft
  665. ParentCtl3D = False
  666. TabOrder = 19
  667. OnClick = leContractPriceClick
  668. end
  669. object leMaterialSubsist: TLabeledEdit
  670. Left = 133
  671. Top = 605
  672. Width = 119
  673. Height = 18
  674. Ctl3D = False
  675. EditLabel.Width = 96
  676. EditLabel.Height = 12
  677. EditLabel.Caption = #31614#32422#26448#26009#39044#20184#27454#65306
  678. LabelPosition = lpLeft
  679. ParentCtl3D = False
  680. TabOrder = 20
  681. OnClick = leContractPriceClick
  682. end
  683. object pnlSafeBar: TPanel
  684. Left = 62
  685. Top = 641
  686. Width = 339
  687. Height = 2
  688. BevelOuter = bvLowered
  689. TabOrder = 23
  690. end
  691. object pnlUnlockPassword: TPanel
  692. Left = 40
  693. Top = 673
  694. Width = 361
  695. Height = 85
  696. BevelOuter = bvNone
  697. TabOrder = 24
  698. object pnlOrgPW: TPanel
  699. Left = 0
  700. Top = 0
  701. Width = 361
  702. Height = 28
  703. Align = alTop
  704. BevelOuter = bvNone
  705. TabOrder = 0
  706. object imgOrg: TImage
  707. Left = 213
  708. Top = 9
  709. Width = 16
  710. Height = 16
  711. Picture.Data = {
  712. 055449636F6E0000010001001010000001002000680400001600000028000000
  713. 1000000020000000010020000000000000000000000000000000000000000000
  714. 0000000000000000000000000000000000000000000000000000000000000000
  715. 0000000000000000000000000000000000000000000000000000000000000000
  716. 0000000000000000000000000000000000000000000000000000000000000000
  717. 0000000000000000000000000000000000000000000000000000000000000000
  718. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  719. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  720. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  721. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  722. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  723. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  724. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  725. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  726. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  727. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  728. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  729. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  730. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  731. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  732. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  733. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  734. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  735. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  736. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  737. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  738. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  739. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  740. 0000000000000000000000000000000000000000020518220205192200000000
  741. 0000000000000000000000000205182202051922000000000000000000000000
  742. 0000000000000000000000000000000000000000000000000000000000000000
  743. 0000000000000000000000000000000000000000000000000000000000000000
  744. 0000000000000000000000000000000000000000000000000000000000000000
  745. 0000000000000000000000000000000000000000000000000000000000000000
  746. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  747. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  748. FFFF0000}
  749. Visible = False
  750. end
  751. object leUnlockPassword: TLabeledEdit
  752. Left = 89
  753. Top = 8
  754. Width = 117
  755. Height = 18
  756. Hint = #24403#21069#23494#30721#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
  757. BiDiMode = bdLeftToRight
  758. Ctl3D = False
  759. EditLabel.Width = 66
  760. EditLabel.Height = 12
  761. EditLabel.BiDiMode = bdLeftToRight
  762. EditLabel.Caption = #24403#21069#23494#30721#65306' '
  763. EditLabel.ParentBiDiMode = False
  764. LabelPosition = lpLeft
  765. MaxLength = 16
  766. ParentBiDiMode = False
  767. ParentCtl3D = False
  768. PasswordChar = '*'
  769. TabOrder = 0
  770. OnExit = leUnlockPasswordExit
  771. OnKeyPress = leUnlockPasswordKeyPress
  772. end
  773. end
  774. object pnlNewPW: TPanel
  775. Left = 0
  776. Top = 28
  777. Width = 361
  778. Height = 57
  779. Align = alClient
  780. BevelOuter = bvNone
  781. TabOrder = 1
  782. object imgNew: TImage
  783. Left = 213
  784. Top = 8
  785. Width = 16
  786. Height = 16
  787. Picture.Data = {
  788. 055449636F6E0000010001001010000001002000680400001600000028000000
  789. 1000000020000000010020000000000000000000000000000000000000000000
  790. 0000000000000000000000000000000000000000000000000000000000000000
  791. 0000000000000000000000000000000000000000000000000000000000000000
  792. 0000000000000000000000000000000000000000000000000000000000000000
  793. 0000000000000000000000000000000000000000000000000000000000000000
  794. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  795. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  796. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  797. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  798. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  799. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  800. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  801. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  802. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  803. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  804. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  805. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  806. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  807. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  808. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  809. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  810. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  811. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  812. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  813. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  814. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  815. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  816. 0000000000000000000000000000000000000000020518220205192200000000
  817. 0000000000000000000000000205182202051922000000000000000000000000
  818. 0000000000000000000000000000000000000000000000000000000000000000
  819. 0000000000000000000000000000000000000000000000000000000000000000
  820. 0000000000000000000000000000000000000000000000000000000000000000
  821. 0000000000000000000000000000000000000000000000000000000000000000
  822. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  823. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  824. FFFF0000}
  825. Visible = False
  826. end
  827. object imgNewAgain: TImage
  828. Left = 213
  829. Top = 35
  830. Width = 16
  831. Height = 16
  832. Picture.Data = {
  833. 055449636F6E0000010001001010000001002000680400001600000028000000
  834. 1000000020000000010020000000000000000000000000000000000000000000
  835. 0000000000000000000000000000000000000000000000000000000000000000
  836. 0000000000000000000000000000000000000000000000000000000000000000
  837. 0000000000000000000000000000000000000000000000000000000000000000
  838. 0000000000000000000000000000000000000000000000000000000000000000
  839. 0000000000000000000000000000000000000000050A1B23050A1C2300000000
  840. 000000000000000000000000050A1B23050A1C23000000000000000000000000
  841. 00000000000000000000000000000000050B242E121FBBE51020BCE7080F2530
  842. 0000000000000000080E242E121FBBE51020BCE7050C25300000000000000000
  843. 000000000000000000000000060A1D252130BFE50409E4FF060BE5FF1223B9DF
  844. 070C1E26060B1D251223B8DE060CE5FF0409E4FF2131C0E6060B1F2600000000
  845. 00000000000000000000000003081C242F3FC0E42932EFFF0814E5FF0C16EAFF
  846. 1222AED51223AED40C16EAFF0814E5FF2932EFFF303FC3E503081D2600000000
  847. 000000000000000000000000000000000309222D3143BEDD303EF4FF1325E9FF
  848. 1526EBFF1526EBFF1325E9FF2F3EF4FF3242BFDE0309232F0000000000000000
  849. 000000000000000000000000000000000000000001061B243140B3D0293FF1FF
  850. 1E3AEFFF1E3AEFFF293FF1FF3041B3D101061B26000000000000000000000000
  851. 000000000000000000000000000000000000000004081B261326B3D12340F4FF
  852. 294EF4FF294EF4FF2341F5FF1326B4D205081C27000000000000000000000000
  853. 000000000000000000000000000000000308222E182CC0DE2545FFFF2C56F7FF
  854. 4364FAFF4464FAFF2C56F7FF2546FFFF182CC1DF030822300000000000000000
  855. 00000000000000000000000005091C252639CBE5284CFFFF3667FCFF4768FFFF
  856. 2F41B5D42E41B4D34769FFFF3667FCFF284CFFFF2639CCE605091D2600000000
  857. 00000000000000000000000003061B243345CBE44568FFFF476BFFFF3447C4DE
  858. 01041A25000319243546C2DD476CFFFF4568FFFF3245CCE503061C2600000000
  859. 000000000000000000000000000000000206202D3547CCE43346CDE60106212E
  860. 00000000000000000105202D3447CCE43347CDE60207212F0000000000000000
  861. 0000000000000000000000000000000000000000020518220205192200000000
  862. 0000000000000000000000000205182202051922000000000000000000000000
  863. 0000000000000000000000000000000000000000000000000000000000000000
  864. 0000000000000000000000000000000000000000000000000000000000000000
  865. 0000000000000000000000000000000000000000000000000000000000000000
  866. 0000000000000000000000000000000000000000000000000000000000000000
  867. 00000000FFFF0000FFFF0000F3CF0000E1870000C0030000C0030000E0070000
  868. F00F0000F00F0000E0070000C0030000C0030000E1870000F3CF0000FFFF0000
  869. FFFF0000}
  870. Visible = False
  871. end
  872. object leNewUnlockPasswordAgain: TLabeledEdit
  873. Left = 89
  874. Top = 34
  875. Width = 117
  876. Height = 18
  877. Hint = #20004#27425#36755#20837#30340#26032#23494#30721#24517#39035#30456#21516
  878. BiDiMode = bdLeftToRight
  879. Ctl3D = False
  880. EditLabel.Width = 78
  881. EditLabel.Height = 12
  882. EditLabel.BiDiMode = bdLeftToRight
  883. EditLabel.Caption = #30830#35748#26032#23494#30721#65306' '
  884. EditLabel.ParentBiDiMode = False
  885. LabelPosition = lpLeft
  886. MaxLength = 16
  887. ParentBiDiMode = False
  888. ParentCtl3D = False
  889. PasswordChar = '*'
  890. ReadOnly = True
  891. TabOrder = 0
  892. OnExit = leNewUnlockPasswordAgainExit
  893. OnKeyPress = leUnlockPasswordKeyPress
  894. end
  895. object leNewUnLockPassword: TLabeledEdit
  896. Left = 89
  897. Top = 7
  898. Width = 117
  899. Height = 18
  900. Hint = #26032#23494#30721#24517#39035#30001'6-16'#20301#22823#23567#20889#33521#25991#23383#27597#25110#25968#23383#32452#25104
  901. BiDiMode = bdLeftToRight
  902. Ctl3D = False
  903. EditLabel.Width = 54
  904. EditLabel.Height = 12
  905. EditLabel.BiDiMode = bdLeftToRight
  906. EditLabel.Caption = #26032#23494#30721#65306' '
  907. EditLabel.ParentBiDiMode = False
  908. LabelPosition = lpLeft
  909. MaxLength = 16
  910. ParentBiDiMode = False
  911. ParentCtl3D = False
  912. PasswordChar = '*'
  913. TabOrder = 1
  914. OnExit = leNewUnLockPasswordExit
  915. OnKeyPress = leUnlockPasswordKeyPress
  916. end
  917. end
  918. end
  919. object leDealType: TLabeledEdit
  920. Left = 283
  921. Top = 76
  922. Width = 80
  923. Height = 18
  924. Ctl3D = False
  925. EditLabel.Width = 60
  926. EditLabel.Height = 12
  927. EditLabel.Caption = #21512#21516#31867#21035#65306
  928. ParentCtl3D = False
  929. TabOrder = 25
  930. end
  931. object pnlCalcParametersBar: TPanel
  932. Left = 62
  933. Top = 769
  934. Width = 339
  935. Height = 2
  936. BevelOuter = bvLowered
  937. TabOrder = 26
  938. end
  939. object leQuantityDigit: TLabeledEdit
  940. Left = 100
  941. Top = 804
  942. Width = 87
  943. Height = 18
  944. EditLabel.Width = 36
  945. EditLabel.Height = 12
  946. EditLabel.Caption = #25968#37327#65306
  947. LabelPosition = lpLeft
  948. TabOrder = 27
  949. Text = '3'
  950. end
  951. object leTotalPriceDigit: TLabeledEdit
  952. Left = 264
  953. Top = 804
  954. Width = 87
  955. Height = 18
  956. EditLabel.Width = 36
  957. EditLabel.Height = 12
  958. EditLabel.Caption = #37329#39069#65306
  959. LabelPosition = lpLeft
  960. TabOrder = 28
  961. Text = '0'
  962. end
  963. object udQuantity: TUpDown
  964. Left = 187
  965. Top = 804
  966. Width = 16
  967. Height = 18
  968. Associate = leQuantityDigit
  969. Max = 10
  970. Position = 3
  971. TabOrder = 29
  972. end
  973. object udTotalPrice: TUpDown
  974. Left = 351
  975. Top = 804
  976. Width = 16
  977. Height = 18
  978. Associate = leTotalPriceDigit
  979. Max = 10
  980. TabOrder = 30
  981. end
  982. object gbPM_Digit: TGroupBox
  983. Left = 52
  984. Top = 883
  985. Width = 349
  986. Height = 44
  987. Caption = #20215#24046
  988. TabOrder = 31
  989. Visible = False
  990. object lePM_PriceDigit: TLabeledEdit
  991. Left = 48
  992. Top = 19
  993. Width = 87
  994. Height = 18
  995. EditLabel.Width = 36
  996. EditLabel.Height = 12
  997. EditLabel.Caption = #21333#20215#65306
  998. LabelPosition = lpLeft
  999. TabOrder = 0
  1000. Text = '0'
  1001. end
  1002. object udPM_PriceDigit: TUpDown
  1003. Left = 135
  1004. Top = 19
  1005. Width = 16
  1006. Height = 18
  1007. Associate = lePM_PriceDigit
  1008. Max = 10
  1009. TabOrder = 1
  1010. end
  1011. end
  1012. object pnlDateTime: TPanel
  1013. Left = 62
  1014. Top = 942
  1015. Width = 339
  1016. Height = 2
  1017. BevelOuter = bvLowered
  1018. TabOrder = 32
  1019. end
  1020. object dtpBaseline: TDateTimePicker
  1021. Left = 104
  1022. Top = 955
  1023. Width = 105
  1024. Height = 20
  1025. Date = 0.457352881945553200
  1026. Format = 'yyyy-MM-dd'
  1027. Time = 0.457352881945553200
  1028. TabOrder = 33
  1029. OnChange = dtpBaselineChange
  1030. end
  1031. object dtpDeadline: TDateTimePicker
  1032. Left = 104
  1033. Top = 979
  1034. Width = 105
  1035. Height = 20
  1036. Date = 0.457352881945553200
  1037. Format = 'yyyy-MM-dd'
  1038. Time = 0.457352881945553200
  1039. TabOrder = 34
  1040. OnChange = dtpBaselineChange
  1041. end
  1042. object cbDealPayAloneDigiy: TCheckBox
  1043. Left = 62
  1044. Top = 831
  1045. Width = 131
  1046. Height = 17
  1047. Caption = #21512#21516#25903#20184#21333#29420#35774#32622
  1048. TabOrder = 35
  1049. OnClick = cbDealPayAloneDigiyClick
  1050. end
  1051. object leDealPayTotalPriceDigit: TLabeledEdit
  1052. Left = 100
  1053. Top = 855
  1054. Width = 87
  1055. Height = 18
  1056. EditLabel.Width = 36
  1057. EditLabel.Height = 12
  1058. EditLabel.Caption = #37329#39069#65306
  1059. LabelPosition = lpLeft
  1060. TabOrder = 36
  1061. Text = '0'
  1062. end
  1063. object udDealPayTotalPriceDigit: TUpDown
  1064. Left = 187
  1065. Top = 855
  1066. Width = 16
  1067. Height = 18
  1068. Associate = leDealPayTotalPriceDigit
  1069. Max = 10
  1070. TabOrder = 37
  1071. end
  1072. object leDealPhase: TLabeledEdit
  1073. Left = 177
  1074. Top = 410
  1075. Width = 131
  1076. Height = 18
  1077. Ctl3D = False
  1078. EditLabel.Width = 60
  1079. EditLabel.Height = 12
  1080. EditLabel.Caption = #21512#21516#24037#26399#65306
  1081. ParentCtl3D = False
  1082. TabOrder = 38
  1083. end
  1084. end
  1085. end
  1086. end
  1087. object jpsPropertiesStaff: TJimPage
  1088. Left = 0
  1089. Top = 0
  1090. Width = 530
  1091. Height = 255
  1092. TabName = 'Staff'
  1093. Caption = 'Staff'
  1094. object zgStaff: TZJGrid
  1095. Left = 0
  1096. Top = 0
  1097. Width = 530
  1098. Height = 255
  1099. Options = [goRangeSelect, goRowSizing, goColSizing, goCellNotMaintainData, goFixedRowShowNo, goFixedColShowNo, goAlwaysShowSelection]
  1100. OptionsEx = []
  1101. RowCount = 1
  1102. ShowGridLine = False
  1103. DefaultColWidth = 73
  1104. Selection.AlphaBlend = False
  1105. Selection.TransparentColor = False
  1106. FrozenCol = 0
  1107. FrozenRow = 0
  1108. OnCellGetColor = zgStaffCellGetColor
  1109. OnCellGetFont = zgStaffCellGetFont
  1110. Font.Charset = ANSI_CHARSET
  1111. Font.Color = clBlack
  1112. Font.Height = -12
  1113. Font.Name = #23435#20307
  1114. Font.Style = []
  1115. ParentFont = False
  1116. Align = alClient
  1117. end
  1118. end
  1119. object jpsPropertiesView: TJimPage
  1120. Left = 0
  1121. Top = 0
  1122. Width = 530
  1123. Height = 255
  1124. TabName = 'View'
  1125. Caption = 'View'
  1126. object leView: TLabel
  1127. Left = 7
  1128. Top = 5
  1129. Width = 48
  1130. Height = 12
  1131. Caption = #39033#30446#26174#31034
  1132. Font.Charset = ANSI_CHARSET
  1133. Font.Color = clBlue
  1134. Font.Height = -12
  1135. Font.Name = #23435#20307
  1136. Font.Style = []
  1137. ParentFont = False
  1138. end
  1139. object leReport: TLabel
  1140. Left = 7
  1141. Top = 141
  1142. Width = 48
  1143. Height = 12
  1144. Caption = #25253#34920#24213#32441
  1145. Font.Charset = ANSI_CHARSET
  1146. Font.Color = clBlue
  1147. Font.Height = -12
  1148. Font.Name = #23435#20307
  1149. Font.Style = []
  1150. ParentFont = False
  1151. end
  1152. object pnlViewBar: TPanel
  1153. Left = 62
  1154. Top = 11
  1155. Width = 457
  1156. Height = 2
  1157. BevelOuter = bvLowered
  1158. TabOrder = 0
  1159. end
  1160. object pnlAllView: TPanel
  1161. Left = 8
  1162. Top = 24
  1163. Width = 505
  1164. Height = 113
  1165. BevelOuter = bvNone
  1166. TabOrder = 1
  1167. object pnlAlias: TPanel
  1168. Left = 0
  1169. Top = 75
  1170. Width = 505
  1171. Height = 25
  1172. Align = alTop
  1173. BevelOuter = bvNone
  1174. TabOrder = 0
  1175. object cbShowAlias: TCheckBox
  1176. Left = 33
  1177. Top = 8
  1178. Width = 80
  1179. Height = 17
  1180. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1181. Caption = #21035#21517
  1182. Ctl3D = False
  1183. Font.Charset = ANSI_CHARSET
  1184. Font.Color = clWindowText
  1185. Font.Height = -12
  1186. Font.Name = #23435#20307
  1187. Font.Style = []
  1188. ParentCtl3D = False
  1189. ParentFont = False
  1190. ParentShowHint = False
  1191. ShowHint = True
  1192. TabOrder = 0
  1193. end
  1194. end
  1195. object pnlPriceChange: TPanel
  1196. Left = 0
  1197. Top = 0
  1198. Width = 505
  1199. Height = 25
  1200. Align = alTop
  1201. BevelOuter = bvNone
  1202. TabOrder = 1
  1203. Visible = False
  1204. object cbShowPriceChange: TCheckBox
  1205. Left = 33
  1206. Top = 8
  1207. Width = 88
  1208. Height = 17
  1209. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1210. Caption = #21333#20215#21464#26356
  1211. Ctl3D = False
  1212. Font.Charset = ANSI_CHARSET
  1213. Font.Color = clWindowText
  1214. Font.Height = -12
  1215. Font.Name = #23435#20307
  1216. Font.Style = []
  1217. ParentCtl3D = False
  1218. ParentFont = False
  1219. ParentShowHint = False
  1220. ShowHint = True
  1221. TabOrder = 0
  1222. end
  1223. end
  1224. object pnlBGL: TPanel
  1225. Left = 0
  1226. Top = 25
  1227. Width = 505
  1228. Height = 25
  1229. Align = alTop
  1230. BevelOuter = bvNone
  1231. TabOrder = 2
  1232. object cbShowBGLCode: TCheckBox
  1233. Left = 33
  1234. Top = 8
  1235. Width = 80
  1236. Height = 17
  1237. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1238. Caption = #21464#26356#20196
  1239. Ctl3D = False
  1240. Font.Charset = ANSI_CHARSET
  1241. Font.Color = clWindowText
  1242. Font.Height = -12
  1243. Font.Name = #23435#20307
  1244. Font.Style = []
  1245. ParentCtl3D = False
  1246. ParentFont = False
  1247. ParentShowHint = False
  1248. ShowHint = True
  1249. TabOrder = 0
  1250. end
  1251. end
  1252. object pnlDesignQuantity: TPanel
  1253. Left = 0
  1254. Top = 50
  1255. Width = 505
  1256. Height = 25
  1257. Align = alTop
  1258. BevelOuter = bvNone
  1259. TabOrder = 3
  1260. object cbShowDesignQuantity: TCheckBox
  1261. Left = 33
  1262. Top = 8
  1263. Width = 80
  1264. Height = 17
  1265. Hint = #25511#21046#21464#26356#21333#20215#12289#26412#26399#21333#20215#21464#26356#21015#26174#31034
  1266. Caption = #35774#35745#25968#37327
  1267. Ctl3D = False
  1268. Font.Charset = ANSI_CHARSET
  1269. Font.Color = clWindowText
  1270. Font.Height = -12
  1271. Font.Name = #23435#20307
  1272. Font.Style = []
  1273. ParentCtl3D = False
  1274. ParentFont = False
  1275. ParentShowHint = False
  1276. ShowHint = True
  1277. TabOrder = 0
  1278. end
  1279. end
  1280. end
  1281. object pnlReport: TPanel
  1282. Left = 62
  1283. Top = 147
  1284. Width = 457
  1285. Height = 2
  1286. BevelOuter = bvLowered
  1287. TabOrder = 2
  1288. end
  1289. object cbShowReportShading: TCheckBox
  1290. Left = 40
  1291. Top = 160
  1292. Width = 17
  1293. Height = 17
  1294. TabOrder = 3
  1295. OnClick = cbShowReportShadingClick
  1296. end
  1297. object edtReportShading: TEdit
  1298. Left = 64
  1299. Top = 160
  1300. Width = 177
  1301. Height = 18
  1302. Ctl3D = False
  1303. ParentCtl3D = False
  1304. TabOrder = 4
  1305. end
  1306. object pnlReportView: TPanel
  1307. Left = 0
  1308. Top = 128
  1309. Width = 529
  1310. Height = 89
  1311. BevelOuter = bvNone
  1312. TabOrder = 5
  1313. object lblReportShowStateTitle: TLabel
  1314. Left = 7
  1315. Top = 5
  1316. Width = 96
  1317. Height = 12
  1318. Caption = #25253#34920#26174#31034#23457#25209#29366#24577
  1319. Font.Charset = ANSI_CHARSET
  1320. Font.Color = clBlue
  1321. Font.Height = -12
  1322. Font.Name = #23435#20307
  1323. Font.Style = []
  1324. ParentFont = False
  1325. end
  1326. object pnlReportViewBar: TPanel
  1327. Left = 110
  1328. Top = 11
  1329. Width = 410
  1330. Height = 2
  1331. BevelOuter = bvLowered
  1332. TabOrder = 0
  1333. end
  1334. object cbReportShowState: TCheckBox
  1335. Left = 41
  1336. Top = 24
  1337. Width = 16
  1338. Height = 17
  1339. TabOrder = 1
  1340. OnClick = cbReportShowStateClick
  1341. end
  1342. object edtReportShowStateText: TEdit
  1343. Left = 65
  1344. Top = 22
  1345. Width = 121
  1346. Height = 20
  1347. MaxLength = 20
  1348. TabOrder = 2
  1349. Text = #25253#34920#26410#23457#26680
  1350. end
  1351. object cbReportShowStageWithoutReply: TCheckBox
  1352. Left = 64
  1353. Top = 48
  1354. Width = 121
  1355. Height = 17
  1356. Caption = #25209#22797#29366#24577#19981#26174#31034
  1357. TabOrder = 3
  1358. end
  1359. end
  1360. end
  1361. end
  1362. object xpm: TXPMenu
  1363. DimLevel = 30
  1364. GrayLevel = 10
  1365. Font.Charset = DEFAULT_CHARSET
  1366. Font.Color = clMenuText
  1367. Font.Height = -12
  1368. Font.Name = #23435#20307
  1369. Font.Style = []
  1370. Color = clBtnFace
  1371. IconBackColor = clBtnFace
  1372. MenuBarColor = clBtnFace
  1373. SelectColor = 38640
  1374. SelectBorderColor = clHighlight
  1375. SelectFontColor = clMenuText
  1376. DisabledColor = clInactiveCaption
  1377. SeparatorColor = clBtnFace
  1378. CheckedColor = clHighlight
  1379. IconWidth = 24
  1380. DrawSelect = True
  1381. UseSystemColors = False
  1382. OverrideOwnerDraw = False
  1383. Gradient = False
  1384. FlatMenu = False
  1385. AutoDetect = True
  1386. XPControls = [xcToolbar]
  1387. Active = True
  1388. ControlUseTrueXPStyle = True
  1389. BtnRoundArc = 5
  1390. BtnOutLineBorderColor = 7552000
  1391. BtnInnerBorderMoveColor = 3257087
  1392. BtnInnerBorderFocusColor = 15183500
  1393. BtnSurfaceNormalColor = 16251903
  1394. BtnSurfaceDownColor = 14608359
  1395. BtnSurfaceBottomLineColor = 14608359
  1396. BtnSurfaceDownBottomLineColor = 15199215
  1397. RdoChkControlChkColor = 41472
  1398. ComboBoxChkColor = 9201994
  1399. ComboboxSurfaceMoveColor = 16771030
  1400. ControlDisabledBorderColor = 11913158
  1401. Left = 7
  1402. Top = 324
  1403. end
  1404. object Images: TImageList
  1405. DrawingStyle = dsTransparent
  1406. Height = 32
  1407. Width = 32
  1408. Left = 352
  1409. Top = 8
  1410. Bitmap = {
  1411. 494C010103000400040020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  1412. 0000000000003600000028000000800000002000000001002000000000000040
  1413. 0000000000000000000000000000000000000000000000000000000000000000
  1414. 0000000000000000000000000000000000000000000000000000000000000000
  1415. 0000000000000000000000000000000000000000000000000000000000000000
  1416. 0000000000000000000000000000000000000000000000000000000000000000
  1417. 0000000000000000000000000000000000000000000000000000000000000000
  1418. 0000000000000000000000000000000000000000000000000000000000000000
  1419. 000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
  1420. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1421. 0E000E0E0E000E0E0E000E0E0E000E0E0E000000000000000000000000000000
  1422. 0000000000000000000000000000000000000000000000000000000000000000
  1423. 0000000000000000000000000000000000000000000000000000000000000000
  1424. 0000000000000000000000000000000000000000000000000000000000000000
  1425. 0000000000000000000000000000000000000000000000000000000000000000
  1426. 0000000000000000000000000000000000000000000000000000000000000000
  1427. 0000000000000000000000000000000000000000000000000000000000000000
  1428. 0000000000000000000000000000000000000000000000000000000000000000
  1429. 0000000000000000000000000000000000000000000000000000000000000000
  1430. 0000000000000000000000000000000000000000000000000000000000000000
  1431. 00000000000000000000000000000D0D0D000D0D0D000D0D0D000D0D0D000D0D
  1432. 0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D0D000D0D
  1433. 0D000D0D0D000D0D0D000D0D0D00000000000000000000000000000000000000
  1434. 0000000000000000000000000000000000000000000000000000000000000000
  1435. 000000000000000000000000000000000000000000000E0E0E00CBCFCF00CBCF
  1436. CF00C9D0CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCF
  1437. CF00CBCFCF00CBCFCF00C9D0CF000E0E0E000000000000000000000000000000
  1438. 0000000000000000000000000000000000000000000000000000000000000000
  1439. 0000000000000000000000000000000000000000000000000000000000000000
  1440. 0000000000000000000000000000000000000000000000000000000000000000
  1441. 0000000000000000000000000000000000000000000000000000000000000000
  1442. 0000000000000000000000000000000000000000000000000000000000000000
  1443. 0000000000000000000000000000000000000000000000000000000000000000
  1444. 0000000000000000000000000000000000000000000000000000000000000000
  1445. 0000000000000000000000000000000000000000000000000000000000000000
  1446. 0000000000000000000000000000000000000000000000000000000000000000
  1447. 000000000000000000000000000000000000C1C9C900C1C9C800C1C9C900C1C9
  1448. C900C1C9C900C1C9C900C2C9C900C2C9C900C1C9C900C1C9C900C2C9C900C1C9
  1449. C900C2C9C900C1C9C9000D0D0D00000000000000000000000000000000000000
  1450. 0000000000000000000000000000000000000000000000000000000000000000
  1451. 000000000000000000000000000000000000000000000E0E0E00E5E7E700E5E7
  1452. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
  1453. E700E5E7E700E5E7E700E5E7E7000E0E0E000000000000000000000000000000
  1454. 0000000000000000000000000000000000000000000000000000000000000000
  1455. 0000000000000000000000000000000000000000000000000000000000000000
  1456. 0000000000000000000000000000000000000000000000000000000000000000
  1457. 0000000000000000000000000000000000000000000000000000000000000000
  1458. 0000000000000000000000000000000000000000000000000000000000000000
  1459. 0000000000000000000000000000000000000000000000000000000000000000
  1460. 0000000000000000000000000000000000000000000000000000000000000000
  1461. 0000000000000000000000000000000000000000000000000000000000000000
  1462. 0000000000000000000000000000000000000000000000000000000000000000
  1463. 000000000000000000000000000000000000C4CBCB00C4CBCB00242424002424
  1464. 240024242400C4CBCC00C4CCCC00C4CCCB00C4CBCB00C4CCCB00C4CBCC00C4CB
  1465. CB00C4CBCB00C4CBCC000D0D0D00000000000000000000000000000000000000
  1466. 0000000000000000000000000000000000000000000000000000000000000000
  1467. 000000000000000000000000000000000000000000000E0E0E000E0E0E000E0E
  1468. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1469. 0E000E0E0E000E0E0E00000000000E0E0E000000000000000000000000000000
  1470. 0000000000000000000000000000000000000000000000000000000000000000
  1471. 0000000000000000000000000000000000000000000000000000000000000000
  1472. 0000000000000000000000000000000000000000000000000000000000000000
  1473. 0000000000000000000000000000000000000000000000000000000000000000
  1474. 0000000000000000000000000000000000000000000000000000000000000000
  1475. 0000000000000000000000000000000000000000000000000000000000000000
  1476. 0000000000000000000000000000000000000000000000000000000000000000
  1477. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1478. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1479. 0E000E0E0E000E0E0E000000000000000000C8CECE002424240000DEFF0000DE
  1480. FF0000DEFF0024242400C8CFCE00C8CECE00C7CFCE00C7CFCE00C8CECF00C7CE
  1481. CE00C7CECE00C7CECF000D0D0D00000000000000000000000000000000000000
  1482. 0000000000000000000000000000000000000000000000000000000000000000
  1483. 0000000000000000000000000000000000000000000000000000000000000000
  1484. 0000CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1485. CF00CBCFCF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1486. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1487. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1488. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1489. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1490. 0000000000000000000000000000000000000000000000000000000000000000
  1491. 0000000000000000000000000000000000000000000000000000000000000000
  1492. 0000000000000000000000000000000000000000000000000000000000000000
  1493. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1494. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1495. 0E000E0E0E000E0E0E000000000000000000CCD1D2002424240000DEFF0000DE
  1496. FF0000DEFF0024242400CBD2D2000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1497. 0E00CBD1D100CCD1D1000D0D0D00000000000000000000000000000000000000
  1498. 0000000000000000000000000000000000000000000000000000000000000000
  1499. 0000000000000000000000000000000000000000000000000000000000000E0E
  1500. 0E00FFFFFF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1501. 0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1502. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1503. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1504. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1505. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1506. 0000000000000000000000000000000000000000000000000000000000000000
  1507. 0000000000000000000000000000000000000000000000000000000000000000
  1508. 0000000000000000000000000000000000000000000000000000000000000000
  1509. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1510. 0E00FFFFFF00BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7C700BFC7
  1511. C700BFC7C700BFC7C7000000000000000000D0D6D60024242400FFFFFF0000DE
  1512. FF0000DEFF0024242400D0D5D500D0D6D500CFD5D500D0D5D500CFD6D500CFD5
  1513. D500CFD5D500D0D5D5000D0D0D00000000000000000000000000000000000000
  1514. 0000000000000000000000000000000000000000000000000000000000000000
  1515. 000000000000000000000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E
  1516. 0E00FFFFFF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B
  1517. 0A00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00C8CF
  1518. CF00C9D0CF00C8CFCF00C9CFCF00C9D0CF00C8CFCF00C8CFCF00C8CFCF00C8CF
  1519. CF00C8D0CF00C9CFCF00C9CFCF00C9CFD000C8CFCF00C9CFCF00C9CFCF00C9CF
  1520. CF00C9CFCF00C9CFCF00C9CFCF00C9CFCF00C8CFCF00C9CFCF00C9CFCF00C9D0
  1521. CF00C9CFCF000E0E0E000E0E0E00000000000000000000000000000000000000
  1522. 0000000000000000000000000000000000000000000000000000000000000000
  1523. 0000000000000000000000000000000000000000000000000000000000000000
  1524. 0000000000000000000000000000000000000000000000000000000000000000
  1525. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1526. 0E00FFFFFF00C1C9CA00C2C9C900C2C9CA00C2C9C900C2CAC900C2CAC900C2C9
  1527. C900C1C9C900C1C9C9000000000000000000D5D9D900D4DAD900242424002424
  1528. 240024242400D4D9D900D5D9D900D4D9D900D4D9D900D4D9D900D4D9D900D4D9
  1529. D900D4D9D900D4D9D9000D0D0D00000000000000000000000000000000000000
  1530. 0000000000000000000000000000000000000000000000000000000000000000
  1531. 000000000000000000000FBBFB00000000000000000000000000000000000E0E
  1532. 0E00FFFFFF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C009572
  1533. 0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00D6DB
  1534. DB00D6DBDB00D6DBDB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DB
  1535. DB00D6DBDB00D6DBDB00D7DBDB00D7DBDB00D6DBDB00D6DBDB00D7DBDB00D7DB
  1536. DB00D7DBDB0000000000D7DBDB0000000000D6DBDB0000000000D6DBDB00D7DB
  1537. DB00D7DBDB000E0E0E000E0E0E00000000000000000000000000000000000000
  1538. 0000000000000000000000000000000000000000000000000000000000000000
  1539. 0000000000000000000000000000000000000000000000000000000000000000
  1540. 0000000000000000000000000000000000000000000000000000000000000000
  1541. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1542. 0E00FFFFFF00C6CCCC00C5CCCD00C5CCCC00C6CDCC00C5CCCD00C6CCCC00C5CC
  1543. CC00C5CCCC00C6CDCD000000000000000000D9DDDD00D8DDDC00D9DDDD00D9DD
  1544. DD00D9DDDD00D9DDDD00D9DDDD00D8DDDD00D9DDDD00D8DDDD00D9DCDD00D9DD
  1545. DD00D9DDDD00D9DDDD000D0D0D00000000000000000000000000000000000000
  1546. 0000000000000000000000000000000000000000000000000000000000000000
  1547. 000000000000000000000FBBFB00000000000000000000000000000000000000
  1548. 0000FFFFFF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D009976
  1549. 0B00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00E4E7
  1550. E600000000000000000000000000000000000000000000000000000000000000
  1551. 0000E4E7E700E5E7E700E5E7E700E5E7E700E4E7E700E5E7E700E5E7E600E5E7
  1552. E700E5E7E70000000000E4E7E70000000000E4E7E70000000000E5E7E700E5E7
  1553. E600E5E7E7000E0E0E000E0E0E00000000000000000000000000000000000000
  1554. 0000000000000000000000000000000000000000000000000000000000000000
  1555. 0000000000000000000000000000000000000000000000000000000000000000
  1556. 0000000000000000000000000000000000000000000000000000000000000000
  1557. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1558. 0E00FFFFFF00CAD0D100CAD0D000CAD0D000C9D0D000C9D0D000CAD0D000C9D0
  1559. D000CAD0D000CAD0D0000000000000000000DDE0E000DDE0E000242424002424
  1560. 240024242400DDE1E100DDE0E100DDE1E100DEE1E000DDE1E100DDE1E100DEE1
  1561. E000DDE1E100DDE0E1000D0D0D00000000000000000000000000000000000000
  1562. 0000000000000000000000000000000000000000000000000000000000000000
  1563. 000000000000000000000FBBFB00000000000000000000000000000000000E0E
  1564. 0E00FFFFFF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B
  1565. 0C00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E00EEEF
  1566. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1567. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1568. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1569. EF00EEEFEF000E0E0E000E0E0E00000000000000000000000000000000000000
  1570. 0000000000000000000000000000000000000000000000000000000000000000
  1571. 0000000000000000000000000000000000000000000000000000000000000000
  1572. 0000000000000000000000000000000000000000000000000000000000000000
  1573. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1574. 0E00FFFFFF00CFD4D400CFD4D500CFD4D400CED4D400CFD4D400CFD4D400CFD4
  1575. D500CFD4D400CFD4D4000000000000000000E2E4E50024242400003CFF00003C
  1576. FF00003CFF0024242400E2E4E500E1E4E400E1E5E400E2E4E500E2E4E400E1E5
  1577. E400E1E4E400E2E4E4000D0D0D00000000000000000000000000000000000000
  1578. 0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1579. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1580. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1581. 0E00F2F2F2000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1582. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1583. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1584. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1585. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1586. 0000000000000000000000000000000000000000000000000000000000000000
  1587. 0000000000000000000000000000000000000000000000000000000000000000
  1588. 0000000000000000000000000000000000000000000000000000000000000000
  1589. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1590. 0E00FFFFFF00D3D8D900D4D9D900D3D8D900D4D9D800D4D8D800D4D8D900D4D9
  1591. D900D4D8D900D4D9D9000000000000000000E5E7E80024242400003CFF00003C
  1592. FF00003CFF0024242400E5E7E7000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1593. 0E00E5E8E800E5E8E8000D0D0D00000000000000000000000000000000000000
  1594. 0000000000000000000000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
  1595. CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF00CBCFCF00CBCF
  1596. CF00CBCFCF00C9D0CF000E0E0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1597. FF00FFFFFF000E0E0E000000000000000000000000000E0E0E000E0E0E000E0E
  1598. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1599. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1600. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1601. 0E000E0E0E000E0E0E000E0E0E00000000000000000000000000000000000000
  1602. 0000000000000000000000000000000000000000000000000000000000000000
  1603. 0000000000000000000000000000000000000000000000000000000000000000
  1604. 0000000000000000000000000000000000000000000000000000000000000000
  1605. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1606. 0E00FFFFFF00D9DEDD00D9DDDD00DADDDD00D9DDDD00DADDDD00D9DEDD00D9DD
  1607. DD00D9DDDD00DADEDD000000000000000000E9EAEA0024242400FFFFFF00003C
  1608. FF00003CFF0024242400E9EBEA00E8EBEB00E9EBEB00E9EBEA00E8EBEB00E9EB
  1609. EA00E9EBEB00E9EBEB000D0D0D00000000000000000000000000000000000000
  1610. 0000000000000000000000000000000000000E0E0E00E5E7E700E5E7E700E5E7
  1611. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7
  1612. E700E5E7E700E5E7E7000E0E0E00000000000E0E0E000E0E0E000E0E0E000E0E
  1613. 0E000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1614. 0000000000000E0E0E000E0E0E00CECECE00CECECE00CECECE00CECECE00CECE
  1615. CE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECECE00CECE
  1616. CE00CECECE00CECECE00CECECE00CECECE00CECECE000E0E0E000E0E0E000000
  1617. 0000000000000000000000000000000000000000000000000000000000000000
  1618. 0000000000000000000000000000000000000000000000000000000000000000
  1619. 0000000000000000000000000000000000000000000000000000000000000000
  1620. 0000000000000000000000000000000000000000000000000000000000000000
  1621. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1622. 0E00FFFFFF00DFE1E200DEE2E200DEE2E100DFE2E200DFE1E100DEE2E100DFE2
  1623. E200DEE2E200DEE2E2000000000000000000EBEDED00EBEDED00242424002424
  1624. 240024242400ECEDED00ECEDEE00ECEDED00EBEDED00EBEDED00ECEDED00ECED
  1625. ED00ECEDED00ECEDEE000D0D0D00000000000000000000000000000000000000
  1626. 0000000000000000000000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1627. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1628. 0E000E0E0E000E0E0E000E0E0E0000000000000000000FBBFB00000000000000
  1629. 0000000000000000000000000000000000000000000000000000000000000000
  1630. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
  1631. F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
  1632. F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
  1633. 0000000000000000000000000000000000000000000000000000000000000000
  1634. 0000000000000000000000000000000000000000000000000000000000000000
  1635. 0000000000000000000000000000000000000000000000000000000000000000
  1636. 0000000000000000000000000000000000000000000000000000000000000000
  1637. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1638. 0E00FFFFFF00E3E6E600E4E6E600E4E6E600E4E6E600E3E6E600E4E6E600E4E6
  1639. E600E4E6E600E3E6E6000000000000000000EEEFEF00EEEFEF00EEEFEF00EEEF
  1640. EF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEFEF00EEEF
  1641. EF00EEEFEF00EEEFEF000D0D0D00000000000000000000000000000000000000
  1642. 00000000000000000000000000000000000000000000000000000E0E0E00CBCF
  1643. CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1644. CF000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1645. 0000000000000000000000000000000000000000000000000000000000000000
  1646. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
  1647. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1648. 0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1649. 0000000000000000000000000000000000000000000000000000000000000000
  1650. 0000000000000000000000000000000000000000000000000000000000000000
  1651. 0000000000000000000000000000000000000000000000000000000000000000
  1652. 0000000000000000000000000000000000000000000000000000000000000000
  1653. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1654. 0E00FFFFFF00E8EAE900E7EAEA00E8EAEA00E7E9EA00E8EAE900E7E9EA00E8EA
  1655. EA00E7E9EA00E8E9E90000000000000000000000000000000000000000000000
  1656. 0000000000000000000000000000000000000000000000000000000000000000
  1657. 000000000000000000000D0D0D00000000000000000000000000000000000000
  1658. 00000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB000E0E0E00FFFF
  1659. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1660. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1661. 0000000000000000000000000000000000000000000000000000000000000000
  1662. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B39A
  1663. 1000AF950F000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1664. 0E00916C0A008F690A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1665. 0000000000000000000000000000000000000000000000000000000000000000
  1666. 0000000000000000000000000000000000000000000000000000000000000000
  1667. 0000000000000000000000000000000000000000000000000000000000000000
  1668. 0000000000000000000000000000000000000000000000000000000000000000
  1669. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1670. 0E00FFFFFF00ECEDED00EBEDED00ECEDED00ECEDED00ECEDED00EBECEC00EBEC
  1671. ED00ECEDEC00EBEDEC0000000000000000000000000000000000000000000000
  1672. 0000000000000000000000000000000000000000000000000000000000000000
  1673. 0000000000000000000000000000000000000000000000000000000000000000
  1674. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1675. FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
  1676. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1677. 0000000000000000000000000000000000000000000000000000000000000000
  1678. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100B69D
  1679. 1000B29810000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1680. 0E00936E0A00906B0A000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1681. 0000000000000000000000000000000000000000000000000000000000000000
  1682. 0000000000000000000000000000000000000000000000000000000000000000
  1683. 0000000000000000000000000000000000000000000000000000000000000000
  1684. 0000000000000000000000000000000000000000000000000000000000000000
  1685. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1686. 0E00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1687. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1688. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1689. FF000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1690. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1691. FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
  1692. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1693. 0000000000000000000000000000000000000000000000000000000000000000
  1694. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1695. 0E000E0E0E000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1696. 0E0094710B00926D0B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1697. 0000000000000000000000000000000000000000000000000000000000000000
  1698. 0000000000000000000000000000000000000000000000000000000000000000
  1699. 0000000000000000000000000000000000000000000000000000000000000000
  1700. 0000000000000000000000000000000000000000000000000000000000000000
  1701. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1702. 0E00DCCF710094700B0095700B0094700B0094700B0094700B0094700A00946F
  1703. 0B0094700B0094700A0094700B00946F0B0094700B0094700B0094700B009470
  1704. 0A0094700B0094700A0094700B00946F0B0094700B00946F0B0094700B009470
  1705. 0B000E0E0E000E0E0E0000000000000000000000000000000000000000000000
  1706. 00000FBBFB0000000000000000000000000000000000000000000E0E0E00FFFF
  1707. FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
  1708. F2000E0E0E00000000000000000000000000000000000FBBFB00000000000000
  1709. 0000000000000000000000000000000000000000000000000000000000000000
  1710. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1711. 0E00F2F2F2000E0E0E00F2F2F200F2F2F200F2F2F200F2F2F200F2F2F2000E0E
  1712. 0E0097740B0094700B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1713. 0000000000000000000000000000000000000000000000000000000000000000
  1714. 0000000000000000000000000000000000000000000000000000000000000000
  1715. 0000000000000000000000000000000000000000000000000000000000000000
  1716. 0000000000000000000000000000000000000000000000000000000000000000
  1717. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1718. 0E00DCCF71009C7A0B009B7A0C009C7A0C009C790C009C790C009B7A0C009C7A
  1719. 0C009C7A0B009C7A0C009C7A0C009B7A0C009C7A0C009B790C009C7A0C009C7A
  1720. 0C009B790C009B7A0C009B7A0C009B7A0C009C7A0C009C790C009B7A0C009B79
  1721. 0C000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1722. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00FFFF
  1723. FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
  1724. F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB000FBBFB00000000000000
  1725. 0000000000000000000000000000000000000000000000000000000000000000
  1726. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1727. 0E00F2F2F2000E0E0E00F6DF2100F6DF2100F6DF2100F6DF2100F6DF21000E0E
  1728. 0E009A780C0097720C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1729. 0000000000000000000000000000000000000000000000000000000000000000
  1730. 0000000000000000000000000000000000000000000000000000000000000000
  1731. 0000000000000000000000000000000000000000000000000000000000000000
  1732. 0000000000000000000000000000000000000000000000000000000000000000
  1733. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1734. 0E00DCCF7100A4860D00A4850D00A3850D00A4850D00A4850D00A4860D00A485
  1735. 0D00A4860D00A4850D00A4860D00A4860D00A4860D00A4860D00A4850E00A486
  1736. 0D00A4860D00A3860D00A4860D00A4850D00A4850D00A4850D00A3860D00A485
  1737. 0D000E0E0E000E0E0E0000000000000000000E0E0E00CBCFCF00CBCFCF00C9D0
  1738. CF00CBCFCF00CBCFCF00CBCFCF00C9CFD000CBCFCF00CBCFCF000E0E0E00FFFF
  1739. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1740. F2000E0E0E000000000000000000000000000000000000000000000000000000
  1741. 0000000000000000000000000000000000000000000000000000000000000000
  1742. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1743. 0E00F2F2F2000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1744. 0E009C7B0C0099760B000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1745. 0000000000000000000000000000000000000000000000000000000000000000
  1746. 0000000000000000000000000000000000000000000000000000000000000000
  1747. 0000000000000000000000000000000000000000000000000000000000000000
  1748. 0000000000000000000000000000000000000000000000000000000000000000
  1749. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1750. 0E00DCCF7100AD920F00AD910E00AD920F00AE920E00AD920F00AD920F00AD92
  1751. 0F00AD920F00AE910F00AD910E00AD910E00AD920F00AD920E00AD920F00AD92
  1752. 0F00AD920E00AD920F00AD920E00AD910F00AE920F00AD920E00AD920E00AD91
  1753. 0F000E0E0E000E0E0E0000000000000000000E0E0E00E5E7E700E5E7E700E5E7
  1754. E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E700E5E7E7000E0E0E00FFFF
  1755. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1756. FF000E0E0E000000000000000000000000000000000000000000000000000000
  1757. 0000000000000000000000000000000000000000000000000000000000000000
  1758. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1759. 0E00F6DF2100F6DF2100F6DF21000E0E0E00B0951000AC8F0E00A78A0E00A385
  1760. 0D009F7E0D009B790C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1761. 0000000000000000000000000000000000000000000000000000000000000000
  1762. 0000000000000000000000000000000000000000000000000000000000000000
  1763. 0000000000000000000000000000000000000000000000000000000000000000
  1764. 0000000000000000000000000000000000000000000000000000000000000000
  1765. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1766. 0E00DCCF7100B69D1000B69D1100B69E1000B69D1000B69D1000DCCF7100DCCF
  1767. 7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
  1768. 7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF
  1769. 71000E0E0E000E0E0E0000000000000000000E0E0E000E0E0E000E0E0E000E0E
  1770. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1771. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1772. 0E000E0E0E000000000000000000000000000000000000000000000000000000
  1773. 0000000000000000000000000000000000000000000000000000000000000000
  1774. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF21000E0E
  1775. 0E000E0E0E000E0E0E000E0E0E000E0E0E00B39A1000AB8E0E00AB8E0E00A788
  1776. 0E00A2830D009E7D0C000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1777. 0000000000000000000000000000000000000000000000000000000000000000
  1778. 0000000000000000000000000000000000000000000000000000000000000000
  1779. 0000000000000000000000000000000000000000000000000000000000000000
  1780. 0000000000000000000000000000000000000000000000000000000000000000
  1781. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1782. 0E00DCCF7100BDA71100BDA71100BCA71100BDA71100BDA711000E0E0E000E0E
  1783. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1784. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1785. 0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00CBCF
  1786. CF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCFCF00CBCF
  1787. CF000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1788. 0000000000000000000000000000000000000000000000000000000000000000
  1789. 0000000000000000000000000000000000000000000000000000000000000000
  1790. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E00F6DF2100F6DF
  1791. 2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF2100F6DF
  1792. 2100F6DF2100F6DF21000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1793. 0000000000000000000000000000000000000000000000000000000000000000
  1794. 0000000000000000000000000000000000000000000000000000000000000000
  1795. 0000000000000000000000000000000000000000000000000000000000000000
  1796. 0000000000000000000000000000000000000000000000000000000000000000
  1797. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1798. 0E00DCCF7100DCCF7100DCCF7100DCCF7100DCCF7100DCCF71000E0E0E000E0E
  1799. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1800. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1801. 0E000E0E0E000E0E0E00000000000000000000000000000000000E0E0E00FFFF
  1802. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1803. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1804. 0000000000000000000000000000000000000000000000000000000000000000
  1805. 0000000000000000000000000000000000000000000000000000000000000000
  1806. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F2000E0E0E000E0E0E000E0E
  1807. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1808. 0E000E0E0E000E0E0E000E0E0E00F2F2F200CECECE000E0E0E000E0E0E000000
  1809. 0000000000000000000000000000000000000000000000000000000000000000
  1810. 0000000000000000000000000000000000000000000000000000000000000000
  1811. 0000000000000000000000000000000000000000000000000000000000000000
  1812. 0000000000000000000000000000000000000000000000000000000000000000
  1813. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1814. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1815. 0E00000000000000000000000000000000000000000000000000000000000000
  1816. 0000000000000000000000000000000000000000000000000000000000000000
  1817. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1818. FF000E0E0E00B69D1000AF930F00A3840D009D7B0C0095720B00906B0A00F2F2
  1819. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1820. 0000000000000000000000000000000000000000000000000000000000000000
  1821. 0000000000000000000000000000000000000000000000000000000000000000
  1822. 0000000000000E0E0E000E0E0E00FFFFFF00F2F2F200F2F2F200F2F2F200F2F2
  1823. F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2F200F2F2
  1824. F200F2F2F200F2F2F200F2F2F200F2F2F200CECECE000E0E0E000E0E0E000000
  1825. 0000000000000000000000000000000000000000000000000000000000000000
  1826. 0000000000000000000000000000000000000000000000000000000000000000
  1827. 0000000000000000000000000000000000000000000000000000000000000000
  1828. 0000000000000000000000000000000000000000000000000000000000000000
  1829. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1830. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1831. 0E00000000000000000000000000000000000000000000000000000000000000
  1832. 0000000000000000000000000000000000000000000000000000000000000000
  1833. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1834. FF000E0E0E00BAA31100B69D1000AA8D0E00A3840D009D7B0C0095720B00F2F2
  1835. F2000E0E0E000000000000000000000000000FBBFB0000000000000000000000
  1836. 0000000000000000000000000000000000000000000000000000000000000000
  1837. 0000000000000000000000000000000000000000000000000000000000000000
  1838. 0000000000000E0E0E000E0E0E00AAAAAA00FFFFFF00FFFFFF00FFFFFF00FFFF
  1839. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1840. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AAAAAA000E0E0E000E0E0E000000
  1841. 0000000000000000000000000000000000000000000000000000000000000000
  1842. 0000000000000000000000000000000000000000000000000000000000000000
  1843. 0000000000000000000000000000000000000000000000000000000000000000
  1844. 0000000000000000000000000000000000000000000000000000000000000000
  1845. 0000000000000000000000000000000000000000000000000000000000000000
  1846. 0000000000000000000000000000000000000000000000000000000000000000
  1847. 0000000000000000000000000000000000000000000000000000000000000000
  1848. 0000000000000000000000000000000000000000000000000000000000000000
  1849. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1850. FF000E0E0E00BFA91200BAA31100B1970F00AA8D0E00A3840D0099760B00F2F2
  1851. F2000E0E0E000FBBFB000FBBFB000FBBFB000FBBFB0000000000000000000000
  1852. 0000000000000000000000000000000000000000000000000000000000000000
  1853. 0000000000000000000000000000000000000000000000000000000000000000
  1854. 0000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1855. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1856. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000000
  1857. 0000000000000000000000000000000000000000000000000000000000000000
  1858. 0000000000000000000000000000000000000000000000000000000000000000
  1859. 0000000000000000000000000000000000000000000000000000000000000000
  1860. 0000000000000000000000000000000000000000000000000000000000000000
  1861. 0000000000000000000000000000000000000000000000000000000000000000
  1862. 0000000000000000000000000000000000000000000000000000000000000000
  1863. 0000000000000000000000000000000000000000000000000000000000000000
  1864. 0000000000000000000000000000000000000000000000000000000000000000
  1865. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1866. FF000E0E0E00C2AE1200BFA91200B69D1000AF930F00A7880E009D7B0C00F2F2
  1867. F2000E0E0E000000000000000000000000000000000000000000000000000000
  1868. 0000000000000000000000000000000000000000000000000000000000000000
  1869. 0000000000000000000000000000000000000000000000000000000000000000
  1870. 000000000000000000000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1871. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1872. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00000000000000
  1873. 0000000000000000000000000000000000000000000000000000000000000000
  1874. 0000000000000000000000000000000000000000000000000000000000000000
  1875. 0000000000000000000000000000000000000000000000000000000000000000
  1876. 0000000000000000000000000000000000000000000000000000000000000000
  1877. 0000000000000000000000000000000000000000000000000000000000000000
  1878. 0000000000000000000000000000000000000000000000000000000000000000
  1879. 0000000000000000000000000000000000000000000000000000000000000000
  1880. 0000000000000000000000000000000000000000000000000000000000000000
  1881. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1882. FF000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E00F2F2
  1883. F2000E0E0E000000000000000000000000000000000000000000000000000000
  1884. 0000000000000000000000000000000000000000000000000000000000000000
  1885. 0000000000000000000000000000000000000000000000000000000000000000
  1886. 0000000000000000000000000000000000000000000000000000000000000000
  1887. 0000000000000000000000000000000000000000000000000000000000000000
  1888. 0000000000000000000000000000000000000000000000000000000000000000
  1889. 0000000000000000000000000000000000000000000000000000000000000000
  1890. 0000000000000000000000000000000000000000000000000000000000000000
  1891. 0000000000000000000000000000000000000000000000000000000000000000
  1892. 0000000000000000000000000000000000000000000000000000000000000000
  1893. 0000000000000000000000000000000000000000000000000000000000000000
  1894. 0000000000000000000000000000000000000000000000000000000000000000
  1895. 0000000000000000000000000000000000000000000000000000000000000000
  1896. 0000000000000000000000000000000000000000000000000000000000000000
  1897. 00000000000000000000000000000000000000000000000000000E0E0E00FFFF
  1898. FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
  1899. FF000E0E0E000000000000000000000000000000000000000000000000000000
  1900. 0000000000000000000000000000000000000000000000000000000000000000
  1901. 0000000000000000000000000000000000000000000000000000000000000000
  1902. 0000000000000000000000000000000000000000000000000000000000000000
  1903. 0000000000000000000000000000000000000000000000000000000000000000
  1904. 0000000000000000000000000000000000000000000000000000000000000000
  1905. 0000000000000000000000000000000000000000000000000000000000000000
  1906. 0000000000000000000000000000000000000000000000000000000000000000
  1907. 0000000000000000000000000000000000000000000000000000000000000000
  1908. 0000000000000000000000000000000000000000000000000000000000000000
  1909. 0000000000000000000000000000000000000000000000000000000000000000
  1910. 0000000000000000000000000000000000000000000000000000000000000000
  1911. 0000000000000000000000000000000000000000000000000000000000000000
  1912. 0000000000000000000000000000000000000000000000000000000000000000
  1913. 00000000000000000000000000000000000000000000000000000E0E0E000E0E
  1914. 0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E0E000E0E
  1915. 0E000E0E0E000000000000000000000000000000000000000000000000000000
  1916. 0000000000000000000000000000000000000000000000000000000000000000
  1917. 0000000000000000000000000000000000000000000000000000000000000000
  1918. 0000000000000000000000000000000000000000000000000000000000000000
  1919. 0000000000000000000000000000000000000000000000000000000000000000
  1920. 0000000000000000000000000000000000000000000000000000000000000000
  1921. 0000000000000000000000000000000000000000000000000000000000000000
  1922. 0000000000000000000000000000000000000000000000000000000000000000
  1923. 0000000000000000000000000000000000000000000000000000000000000000
  1924. 0000000000000000000000000000000000000000000000000000000000000000
  1925. 000000000000000000000000000000000000424D3E000000000000003E000000
  1926. 2800000080000000200000000100010000000000000200000000000000000000
  1927. 000000000000000000000000FFFFFF00FFFC0000FFFF0000FFFFFFFF00000000
  1928. FFFC0000FFFF0000FFFFFFFF00000000FFFC0000FFFF0000FFFFFFFF00000000
  1929. FFFC0000FFFF0000FFFFFFFF00000000C0000000FFF000008000000100000000
  1930. C0000000FFF000018000000100000000C0000000FFF000018000000100000000
  1931. C0000000FFF000018000000100000000C0000000FFF000018000000100000000
  1932. C0000000FE0000018000000100000000C0000000FE0000018000000100000000
  1933. C0000000FE0000018000000100000000C0000000FE000001F800001F00000000
  1934. C0000000C0000001F800001F00000000C0000000C000000FF800001F00000000
  1935. C0000000C000000FF800001F00000000C0000000C000000FF800001F00000000
  1936. C0000003C000000FF800001F00000000C00000030000000FF800001F00000000
  1937. C00000030000000FF800001F00000000C00000030000000FF800001F00000000
  1938. C00000030000000FF800001F00000000C0000003000003FFF800001F00000000
  1939. C0000003000003FFF800001F00000000C000000380001FFFF800001F00000000
  1940. C00FFFFF80001FFFF800001F00000000C00FFFFF80001FFFF800001F00000000
  1941. FFFFFFFF80001FFFF800001F00000000FFFFFFFF80001FFFFC00003F00000000
  1942. FFFFFFFF80001FFFFFFFFFFF00000000FFFFFFFF8003FFFFFFFFFFFF00000000
  1943. FFFFFFFF8003FFFFFFFFFFFF0000000000000000000000000000000000000000
  1944. 000000000000}
  1945. end
  1946. object zaStaff: TZjGridDBA
  1947. Columns = <
  1948. item
  1949. Title.Caption = #26399#25968
  1950. Title.CaptionAcrossCols = '1'
  1951. Title.Font.Charset = GB2312_CHARSET
  1952. Title.Font.Color = clWindowText
  1953. Title.Font.Height = -12
  1954. Title.Font.Name = #23435#20307
  1955. Title.Font.Style = []
  1956. Alignment = taCenter
  1957. Font.Charset = GB2312_CHARSET
  1958. Font.Color = clWindowText
  1959. Font.Height = -12
  1960. Font.Name = #23435#20307
  1961. Font.Style = []
  1962. FieldName = 'PhaseID'
  1963. Width = 20
  1964. Visible = False
  1965. ReadOnly = True
  1966. end
  1967. item
  1968. Title.Caption = #23457#26680#27969#31243
  1969. Title.CaptionAcrossCols = '1'
  1970. Title.Font.Charset = GB2312_CHARSET
  1971. Title.Font.Color = clWindowText
  1972. Title.Font.Height = -12
  1973. Title.Font.Name = #23435#20307
  1974. Title.Font.Style = []
  1975. Alignment = taCenter
  1976. Font.Charset = GB2312_CHARSET
  1977. Font.Color = clWindowText
  1978. Font.Height = -12
  1979. Font.Name = #23435#20307
  1980. Font.Style = []
  1981. FieldName = 'StageID'
  1982. Width = 60
  1983. ReadOnly = True
  1984. end
  1985. item
  1986. Title.Caption = #21333#20301
  1987. Title.CaptionAcrossCols = '1'
  1988. Title.Font.Charset = GB2312_CHARSET
  1989. Title.Font.Color = clWindowText
  1990. Title.Font.Height = -12
  1991. Title.Font.Name = #23435#20307
  1992. Title.Font.Style = []
  1993. Alignment = taLeftJustify
  1994. Font.Charset = GB2312_CHARSET
  1995. Font.Color = clWindowText
  1996. Font.Height = -12
  1997. Font.Name = #23435#20307
  1998. Font.Style = []
  1999. FieldName = 'Company'
  2000. Width = 220
  2001. ReadOnly = False
  2002. end
  2003. item
  2004. Title.Caption = #35282#33394
  2005. Title.CaptionAcrossCols = '1'
  2006. Title.Font.Charset = GB2312_CHARSET
  2007. Title.Font.Color = clWindowText
  2008. Title.Font.Height = -12
  2009. Title.Font.Name = #23435#20307
  2010. Title.Font.Style = []
  2011. Alignment = taLeftJustify
  2012. Font.Charset = GB2312_CHARSET
  2013. Font.Color = clWindowText
  2014. Font.Height = -12
  2015. Font.Name = #23435#20307
  2016. Font.Style = []
  2017. FieldName = 'Role'
  2018. Width = 80
  2019. ReadOnly = False
  2020. end
  2021. item
  2022. Title.Caption = #22995#21517
  2023. Title.CaptionAcrossCols = '1'
  2024. Title.Font.Charset = GB2312_CHARSET
  2025. Title.Font.Color = clWindowText
  2026. Title.Font.Height = -12
  2027. Title.Font.Name = #23435#20307
  2028. Title.Font.Style = []
  2029. Alignment = taLeftJustify
  2030. Font.Charset = GB2312_CHARSET
  2031. Font.Color = clWindowText
  2032. Font.Height = -12
  2033. Font.Name = #23435#20307
  2034. Font.Style = []
  2035. FieldName = 'Name'
  2036. Width = 60
  2037. ReadOnly = False
  2038. end>
  2039. Grid = zgStaff
  2040. ExtendRowCount = 0
  2041. Left = 400
  2042. Top = 14
  2043. end
  2044. object imgValid: TImageList
  2045. Left = 352
  2046. Top = 40
  2047. Bitmap = {
  2048. 494C010102000400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2049. 0000000000003600000028000000400000001000000001002000000000000010
  2050. 0000000000000000000000000000000000000000000000000000000000000000
  2051. 0000000000000000000000000000000000000000000000000000000000000000
  2052. 0000000000000000000000000000000000000000000000000000000000000000
  2053. 0000000000000000000000000000000000000000000000000000000000000000
  2054. 0000000000000000000000000000000000000000000000000000000000000000
  2055. 0000000000000000000000000000000000000000000000000000000000000000
  2056. 0000000000000000000000000000000000000000000000000000000000000000
  2057. 0000000000000000000000000000000000000000000000000000000000000000
  2058. 0000000000000000000000000000000000000000000000000000000000000000
  2059. 0000000000000000000000000000000000000000000000000000000000000000
  2060. 0000000000000000000000000000000000000000000000000000000000000000
  2061. 0000000000000000000000000000000000000000000000000000000000000000
  2062. 0000000000000000000000000000000000000000000000000000000000000000
  2063. 0000000000000000000000000000000000000000000000000000000000000000
  2064. 0000000000000000000000000000000000000000000000000000000000000000
  2065. 0000000000000000000000000000000000000000000000000000000000000000
  2066. 0000000000000000000000000000000000000000000000000000000000000000
  2067. 000000000000ECECECFF75AF78FF7BAD7EFFFBFBFBFF00000000000000000000
  2068. 0000000000000000000000000000000000000000000000000000000000000000
  2069. 0000DCDDDFFFDCDDDFFF00000000000000000000000000000000DCDDDFFFDCDD
  2070. DFFF000000000000000000000000000000000000000000000000000000000000
  2071. 0000000000000000000000000000000000000000000000000000000000000000
  2072. 0000000000000000000000000000000000000000000000000000000000000000
  2073. 0000000000000000000000000000000000000000000000000000000000000000
  2074. 0000000000000000000000000000000000000000000000000000000000000000
  2075. 0000C9D0CAFF56B95BFF41E84AFF40E64AFF74AD77FFF9F9F9FF000000000000
  2076. 000000000000000000000000000000000000000000000000000000000000D1D2
  2077. D7FF2A35C1FF2634C2FFD0D1D5FF0000000000000000D2D3D7FF2A35C1FF2634
  2078. C2FFCFD1D5FF0000000000000000000000000000000000000000000000000000
  2079. 0000000000000000000000000000000000000000000000000000000000000000
  2080. 0000000000000000000000000000000000000000000000000000000000000000
  2081. 0000000000000000000000000000000000000000000000000000000000000000
  2082. 000000000000000000000000000000000000000000000000000000000000A1B7
  2083. A3FF45CC4DFF42E44CFF3ED847FF3ED948FF42E64CFF70B074FFF7F7F7FF0000
  2084. 0000000000000000000000000000000000000000000000000000DADBDEFF3745
  2085. C5FF0409E4FF060BE5FF2F3EC1FFDADADDFFDADBDEFF303FC1FF060CE5FF0409
  2086. E4FF3645C6FFD9DADDFF00000000000000000000000000000000000000000000
  2087. 0000000000000000000000000000000000000000000000000000000000000000
  2088. 0000000000000000000000000000000000000000000000000000000000000000
  2089. 0000000000000000000000000000000000000000000000000000000000000000
  2090. 00000000000000000000000000000000000000000000F1F1F1FF7CAF7FFF43DF
  2091. 4DFF43E14DFF41D94AFF44E24DFF42DC4BFF41DA4AFF45E74FFF6CB170FFF4F4
  2092. F4FF000000000000000000000000000000000000000000000000DBDCDEFF4553
  2093. C6FF2932EFFF0814E5FF0C16EAFF3946BBFF3948BBFF0C16EAFF0814E5FF2932
  2094. EFFF4552C9FFD9DADDFF00000000000000000000000000000000000000000000
  2095. 0000000000000000000000000000000000000000000000000000000000000000
  2096. 0000000000000000000000000000000000000000000000000000000000000000
  2097. 0000000000000000000000000000000000000000000000000000000000000000
  2098. 000000000000000000000000000000000000CDD2CEFF60B866FF48E852FF44DD
  2099. 4EFF44DD4EFF46E350FF57C35EFF46D44FFF46E14FFF44DB4DFF48E952FF69B3
  2100. 6EFFF1F1F1FF000000000000000000000000000000000000000000000000D2D3
  2101. D8FF4C5CC6FF303EF4FF1325E9FF1526EBFF1526EBFF1325E9FF2F3EF4FF4C5A
  2102. C7FFD0D1D6FF0000000000000000000000000000000000000000000000000000
  2103. 0000000000000000000000000000000000000000000000000000000000000000
  2104. 0000000000000000000000000000000000000000000000000000000000000000
  2105. 0000000000000000000000000000000000000000000000000000000000000000
  2106. 00000000000000000000000000000000000077B37AFF4FF85AFF46DB4FFF49E3
  2107. 52FF49E452FF8AB58CFFF1F1F1FFB2C2B3FF4BDA53FF49E453FF46DC50FF4BEB
  2108. 55FF67B56CFFECECECFF00000000000000000000000000000000000000000000
  2109. 0000DBDBDEFF5663C1FF293FF1FF1E3AEFFF1E3AEFFF293FF1FF5563C0FFD9D9
  2110. DDFF000000000000000000000000000000000000000000000000000000000000
  2111. 0000000000000000000000000000000000000000000000000000000000000000
  2112. 0000000000000000000000000000000000000000000000000000000000000000
  2113. 0000000000000000000000000000000000000000000000000000000000000000
  2114. 000000000000000000000000000000000000DBDEDBFF5CC663FF51F65CFF50D6
  2115. 57FFA9BEABFF000000000000000000000000B6C5B7FF4ED756FF4CE656FF48DD
  2116. 52FF4DEC58FF65B96BFFE7E8E7FF000000000000000000000000000000000000
  2117. 0000D9DADDFF3D4DC0FF2340F4FF294EF4FF294EF4FF2341F5FF3C4CC1FFD8D9
  2118. DCFF000000000000000000000000000000000000000000000000000000000000
  2119. 0000000000000000000000000000000000000000000000000000000000000000
  2120. 0000000000000000000000000000000000000000000000000000000000000000
  2121. 0000000000000000000000000000000000000000000000000000000000000000
  2122. 00000000000000000000000000000000000000000000D2D7D2FF78BB7DFFC7CF
  2123. C7FF0000000000000000000000000000000000000000BCC8BDFF52D759FF4FE8
  2124. 59FF4BDE54FF50ED5BFF63BB6AFFE2E4E3FF000000000000000000000000D1D2
  2125. D7FF3547C8FF2545FFFF2C56F7FF4364FAFF4464FAFF2C56F7FF2546FFFF3446
  2126. C8FFCFD0D5FF0000000000000000000000000000000000000000000000000000
  2127. 0000000000000000000000000000000000000000000000000000000000000000
  2128. 0000000000000000000000000000000000000000000000000000000000000000
  2129. 0000000000000000000000000000000000000000000000000000000000000000
  2130. 0000000000000000000000000000000000000000000000000000000000000000
  2131. 0000000000000000000000000000000000000000000000000000C2CBC2FF55D4
  2132. 5DFF51EA5CFF4DDE57FF52EE5EFF5EC166FF0000000000000000DADBDEFF3C4D
  2133. D0FF284CFFFF3667FCFF4768FFFF5261C1FF5261C0FF4769FFFF3667FCFF284C
  2134. FFFF3B4CD1FFD9DADDFF00000000000000000000000000000000000000000000
  2135. 0000000000000000000000000000000000000000000000000000000000000000
  2136. 0000000000000000000000000000000000000000000000000000000000000000
  2137. 0000000000000000000000000000000000000000000000000000000000000000
  2138. 0000000000000000000000000000000000000000000000000000000000000000
  2139. 000000000000000000000000000000000000000000000000000000000000C7CF
  2140. C7FF5AD262FF54EC5FFF54EC5FFF57D65EFF0000000000000000DBDBDEFF4858
  2141. D0FF4568FFFF476BFFFF4E5ECBFFDADADDFFDBDBDEFF4F5ECAFF476CFFFF4568
  2142. FFFF4657D1FFD9D9DDFF00000000000000000000000000000000000000000000
  2143. 0000000000000000000000000000000000000000000000000000000000000000
  2144. 0000000000000000000000000000000000000000000000000000000000000000
  2145. 0000000000000000000000000000000000000000000000000000000000000000
  2146. 0000000000000000000000000000000000000000000000000000000000000000
  2147. 0000000000000000000000000000000000000000000000000000000000000000
  2148. 0000CDD3CDFF5AD362FF56D960FFC8D0C8FF000000000000000000000000D2D3
  2149. D7FF4A5AD1FF4758D1FFD1D2D6FF0000000000000000D2D2D7FF495AD1FF4759
  2150. D1FFD0D1D6FF0000000000000000000000000000000000000000000000000000
  2151. 0000000000000000000000000000000000000000000000000000000000000000
  2152. 0000000000000000000000000000000000000000000000000000000000000000
  2153. 0000000000000000000000000000000000000000000000000000000000000000
  2154. 0000000000000000000000000000000000000000000000000000000000000000
  2155. 0000000000000000000000000000000000000000000000000000000000000000
  2156. 000000000000D9DDD9FFD3D8D3FF000000000000000000000000000000000000
  2157. 0000DDDDE0FFDDDDE0FF00000000000000000000000000000000DDDDE0FFDDDD
  2158. E0FF000000000000000000000000000000000000000000000000000000000000
  2159. 0000000000000000000000000000000000000000000000000000000000000000
  2160. 0000000000000000000000000000000000000000000000000000000000000000
  2161. 0000000000000000000000000000000000000000000000000000000000000000
  2162. 0000000000000000000000000000000000000000000000000000000000000000
  2163. 0000000000000000000000000000000000000000000000000000000000000000
  2164. 0000000000000000000000000000000000000000000000000000000000000000
  2165. 0000000000000000000000000000000000000000000000000000000000000000
  2166. 0000000000000000000000000000000000000000000000000000000000000000
  2167. 0000000000000000000000000000000000000000000000000000000000000000
  2168. 0000000000000000000000000000000000000000000000000000000000000000
  2169. 0000000000000000000000000000000000000000000000000000000000000000
  2170. 0000000000000000000000000000000000000000000000000000000000000000
  2171. 0000000000000000000000000000000000000000000000000000000000000000
  2172. 0000000000000000000000000000000000000000000000000000000000000000
  2173. 0000000000000000000000000000000000000000000000000000000000000000
  2174. 0000000000000000000000000000000000000000000000000000000000000000
  2175. 0000000000000000000000000000000000000000000000000000000000000000
  2176. 0000000000000000000000000000000000000000000000000000000000000000
  2177. 0000000000000000000000000000000000000000000000000000000000000000
  2178. 000000000000000000000000000000000000424D3E000000000000003E000000
  2179. 2800000040000000100000000100010000000000800000000000000000000000
  2180. 000000000000000000000000FFFFFF00FFFFFFFF00000000FFFFFFFF00000000
  2181. F87FF3CF00000000F03FE18700000000E01FC00300000000800FC00300000000
  2182. 0007E007000000000003F00F000000000701F00F000000008F80E00700000000
  2183. FFC0C00300000000FFE0C00300000000FFF0E18700000000FFF9F3CF00000000
  2184. FFFFFFFF00000000FFFFFFFF0000000000000000000000000000000000000000
  2185. 000000000000}
  2186. end
  2187. end