SiteAdvanced.dfm 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999
  1. object SiteAdvancedDialog: TSiteAdvancedDialog
  2. Left = 351
  3. Top = 167
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_login_advanced'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Advanced Site Settings'
  9. ClientHeight = 429
  10. ClientWidth = 619
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -12
  15. Font.Name = 'Segoe UI'
  16. Font.Style = []
  17. Position = poOwnerFormCenter
  18. OnClose = FormClose
  19. OnCloseQuery = FormCloseQuery
  20. OnShow = FormShow
  21. DesignSize = (
  22. 619
  23. 429)
  24. TextHeight = 15
  25. object MainPanel: TPanel
  26. Left = 0
  27. Top = 0
  28. Width = 619
  29. Height = 398
  30. Align = alTop
  31. Anchors = [akLeft, akTop, akRight, akBottom]
  32. BevelOuter = bvNone
  33. TabOrder = 0
  34. object PageControl: TPageControl
  35. Left = 161
  36. Top = 0
  37. Width = 458
  38. Height = 398
  39. HelpType = htKeyword
  40. ActivePage = EnvironmentSheet
  41. Align = alClient
  42. MultiLine = True
  43. Style = tsButtons
  44. TabOrder = 1
  45. TabStop = False
  46. OnChange = PageControlChange
  47. object EnvironmentSheet: TTabSheet
  48. Tag = 1
  49. HelpType = htKeyword
  50. HelpKeyword = 'ui_login_environment'
  51. Caption = 'Environment'
  52. ImageIndex = 6
  53. TabVisible = False
  54. DesignSize = (
  55. 450
  56. 388)
  57. object EnvironmentGroup: TGroupBox
  58. Left = 8
  59. Top = 2
  60. Width = 438
  61. Height = 156
  62. Anchors = [akLeft, akTop, akRight]
  63. Caption = 'Server environment'
  64. TabOrder = 0
  65. DesignSize = (
  66. 438
  67. 156)
  68. object EOLTypeLabel: TLabel
  69. Left = 9
  70. Top = 22
  71. Width = 261
  72. Height = 15
  73. Caption = 'End-of-line &characters (if not indicated by server):'
  74. FocusControl = EOLTypeCombo
  75. end
  76. object UtfLabel: TLabel
  77. Left = 9
  78. Top = 51
  79. Width = 160
  80. Height = 15
  81. Caption = '&UTF-8 encoding for filenames:'
  82. FocusControl = UtfCombo
  83. end
  84. object TimeDifferenceLabel: TLabel
  85. Left = 9
  86. Top = 80
  87. Width = 91
  88. Height = 15
  89. Caption = 'Time &zone offset:'
  90. FocusControl = TimeDifferenceEdit
  91. end
  92. object TimeDifferenceHoursLabel: TLabel
  93. Left = 245
  94. Top = 80
  95. Width = 30
  96. Height = 15
  97. Anchors = [akTop, akRight]
  98. Caption = 'hours'
  99. FocusControl = TimeDifferenceEdit
  100. end
  101. object TimeDifferenceMinutesLabel: TLabel
  102. Left = 376
  103. Top = 80
  104. Width = 43
  105. Height = 15
  106. Anchors = [akTop, akRight]
  107. Caption = 'minutes'
  108. FocusControl = TimeDifferenceMinutesEdit
  109. end
  110. object EOLTypeCombo: TComboBox
  111. Left = 362
  112. Top = 19
  113. Width = 67
  114. Height = 23
  115. Style = csDropDownList
  116. Anchors = [akTop, akRight]
  117. TabOrder = 0
  118. Items.Strings = (
  119. 'LF'
  120. 'CR/LF')
  121. end
  122. object UtfCombo: TComboBox
  123. Left = 362
  124. Top = 48
  125. Width = 67
  126. Height = 23
  127. Style = csDropDownList
  128. Anchors = [akTop, akRight]
  129. TabOrder = 1
  130. end
  131. object TimeDifferenceEdit: TUpDownEdit
  132. Left = 163
  133. Top = 77
  134. Width = 76
  135. Height = 23
  136. Alignment = taRightJustify
  137. MaxValue = 25.000000000000000000
  138. MinValue = -25.000000000000000000
  139. Value = -13.000000000000000000
  140. Anchors = [akTop, akRight]
  141. TabOrder = 2
  142. OnChange = DataChange
  143. end
  144. object TimeDifferenceMinutesEdit: TUpDownEdit
  145. Left = 294
  146. Top = 77
  147. Width = 76
  148. Height = 23
  149. Alignment = taRightJustify
  150. Increment = 15.000000000000000000
  151. MaxValue = 45.000000000000000000
  152. MinValue = -45.000000000000000000
  153. Value = -13.000000000000000000
  154. Anchors = [akTop, akRight]
  155. TabOrder = 3
  156. OnChange = DataChange
  157. end
  158. object TimeDifferenceAutoCheck: TCheckBox
  159. Left = 165
  160. Top = 106
  161. Width = 264
  162. Height = 17
  163. Anchors = [akTop, akRight]
  164. Caption = 'Detect &automatically'
  165. TabOrder = 4
  166. OnClick = DataChange
  167. end
  168. object TrimVMSVersionsCheck: TCheckBox
  169. Left = 11
  170. Top = 129
  171. Width = 418
  172. Height = 17
  173. Anchors = [akLeft, akTop, akRight]
  174. Caption = '&Trim VMS version numbers'
  175. TabOrder = 5
  176. OnClick = DataChange
  177. end
  178. end
  179. object DSTModeGroup: TGroupBox
  180. Left = 8
  181. Top = 164
  182. Width = 438
  183. Height = 93
  184. Anchors = [akLeft, akTop, akRight]
  185. Caption = 'Daylight saving time'
  186. TabOrder = 1
  187. DesignSize = (
  188. 438
  189. 93)
  190. object DSTModeUnixCheck: TRadioButton
  191. Left = 11
  192. Top = 23
  193. Width = 418
  194. Height = 17
  195. Anchors = [akLeft, akTop, akRight]
  196. Caption = 'Adjust remote timestamp to local co&nventions'
  197. TabOrder = 0
  198. OnClick = DataChange
  199. end
  200. object DSTModeWinCheck: TRadioButton
  201. Left = 11
  202. Top = 46
  203. Width = 418
  204. Height = 17
  205. Anchors = [akLeft, akTop, akRight]
  206. Caption = 'Adjust remote timestamp with &DST'
  207. TabOrder = 1
  208. OnClick = DataChange
  209. end
  210. object DSTModeKeepCheck: TRadioButton
  211. Left = 11
  212. Top = 69
  213. Width = 418
  214. Height = 17
  215. Anchors = [akLeft, akTop, akRight]
  216. Caption = 'Preser&ve remote timestamp'
  217. TabOrder = 2
  218. OnClick = DataChange
  219. end
  220. end
  221. object PuttyGroup: TGroupBox
  222. Left = 8
  223. Top = 263
  224. Width = 438
  225. Height = 103
  226. Anchors = [akLeft, akTop, akRight]
  227. Caption = 'PuTTY'
  228. TabOrder = 2
  229. DesignSize = (
  230. 438
  231. 103)
  232. object PuttySettingsLabel: TLabel
  233. Left = 9
  234. Top = 22
  235. Width = 129
  236. Height = 15
  237. Caption = '&PuTTY terminal settings:'
  238. FocusControl = PuttySettingsEdit
  239. end
  240. object PuttySettingsButton: TButton
  241. Left = 9
  242. Top = 69
  243. Width = 138
  244. Height = 25
  245. Anchors = [akTop, akRight]
  246. Caption = '&Edit in PuTTY...'
  247. TabOrder = 1
  248. OnClick = PuttySettingsButtonClick
  249. end
  250. object PuttySettingsEdit: TEdit
  251. Left = 9
  252. Top = 40
  253. Width = 420
  254. Height = 23
  255. Anchors = [akLeft, akTop, akRight]
  256. MaxLength = 64
  257. TabOrder = 0
  258. Text = 'PuttySettingsEdit'
  259. OnChange = DataChange
  260. OnExit = EncryptKeyEditExit
  261. end
  262. end
  263. end
  264. object DirectoriesSheet: TTabSheet
  265. Tag = 2
  266. HelpType = htKeyword
  267. HelpKeyword = 'ui_login_directories'
  268. Caption = 'Directories'
  269. ImageIndex = 11
  270. TabVisible = False
  271. DesignSize = (
  272. 450
  273. 388)
  274. object DirectoriesGroup: TGroupBox
  275. Left = 8
  276. Top = 2
  277. Width = 438
  278. Height = 185
  279. Anchors = [akLeft, akTop, akRight]
  280. Caption = 'Directories'
  281. TabOrder = 0
  282. DesignSize = (
  283. 438
  284. 185)
  285. object LocalDirectoryLabel: TLabel
  286. Left = 9
  287. Top = 115
  288. Width = 81
  289. Height = 15
  290. Caption = '&Local directory:'
  291. FocusControl = LocalDirectoryEdit
  292. end
  293. object RemoteDirectoryLabel: TLabel
  294. Left = 9
  295. Top = 68
  296. Width = 94
  297. Height = 15
  298. Caption = '&Remote directory:'
  299. FocusControl = RemoteDirectoryEdit
  300. end
  301. object LocalDirectoryDescLabel: TLabel
  302. Left = 9
  303. Top = 160
  304. Width = 261
  305. Height = 15
  306. Caption = 'Local directory is not used with Explorer interface.'
  307. ShowAccelChar = False
  308. end
  309. object LocalDirectoryEdit: TDirectoryEdit
  310. Left = 9
  311. Top = 133
  312. Width = 420
  313. Height = 21
  314. AcceptFiles = True
  315. DialogText = 'Select startup local directory.'
  316. ClickKey = 16397
  317. Anchors = [akLeft, akTop, akRight]
  318. TabOrder = 3
  319. Text = 'LocalDirectoryEdit'
  320. OnChange = DataChange
  321. end
  322. object RemoteDirectoryEdit: TEdit
  323. Left = 9
  324. Top = 86
  325. Width = 420
  326. Height = 23
  327. Anchors = [akLeft, akTop, akRight]
  328. MaxLength = 1000
  329. TabOrder = 2
  330. Text = 'RemoteDirectoryEdit'
  331. OnChange = DataChange
  332. end
  333. object UpdateDirectoriesCheck: TCheckBox
  334. Left = 11
  335. Top = 45
  336. Width = 418
  337. Height = 17
  338. Anchors = [akLeft, akTop, akRight]
  339. Caption = 'Re&member last used directory'
  340. TabOrder = 1
  341. end
  342. object SynchronizeBrowsingCheck: TCheckBox
  343. Left = 11
  344. Top = 22
  345. Width = 418
  346. Height = 17
  347. Anchors = [akLeft, akTop, akRight]
  348. Caption = 'Syn&chronize browsing'
  349. TabOrder = 0
  350. end
  351. end
  352. object DirectoryOptionsGroup: TGroupBox
  353. Left = 8
  354. Top = 193
  355. Width = 438
  356. Height = 116
  357. Anchors = [akLeft, akTop, akRight]
  358. Caption = 'Directory reading options'
  359. TabOrder = 1
  360. DesignSize = (
  361. 438
  362. 116)
  363. object CacheDirectoriesCheck: TCheckBox
  364. Left = 11
  365. Top = 22
  366. Width = 418
  367. Height = 17
  368. Anchors = [akLeft, akTop, akRight]
  369. Caption = 'Cache &visited remote directories'
  370. TabOrder = 0
  371. OnClick = DataChange
  372. end
  373. object CacheDirectoryChangesCheck: TCheckBox
  374. Left = 11
  375. Top = 45
  376. Width = 275
  377. Height = 17
  378. Anchors = [akLeft, akTop, akRight]
  379. Caption = 'Cache &directory changes'
  380. TabOrder = 1
  381. OnClick = DataChange
  382. end
  383. object ResolveSymlinksCheck: TCheckBox
  384. Left = 11
  385. Top = 68
  386. Width = 418
  387. Height = 17
  388. Anchors = [akLeft, akTop, akRight]
  389. Caption = 'Resolve symbolic li&nks'
  390. TabOrder = 3
  391. end
  392. object PreserveDirectoryChangesCheck: TCheckBox
  393. Left = 266
  394. Top = 45
  395. Width = 163
  396. Height = 17
  397. Anchors = [akTop, akRight]
  398. Caption = '&Permanent cache'
  399. TabOrder = 2
  400. end
  401. object FollowDirectorySymlinksCheck: TCheckBox
  402. Left = 11
  403. Top = 91
  404. Width = 418
  405. Height = 17
  406. Anchors = [akLeft, akTop, akRight]
  407. Caption = '&Follow symbolic links to directories'
  408. TabOrder = 4
  409. end
  410. end
  411. end
  412. object RecycleBinSheet: TTabSheet
  413. Tag = 2
  414. HelpType = htKeyword
  415. HelpKeyword = 'ui_login_recycle_bin'
  416. Caption = 'Recycle bin'
  417. ImageIndex = 15
  418. TabVisible = False
  419. DesignSize = (
  420. 450
  421. 388)
  422. object RecycleBinGroup: TGroupBox
  423. Left = 8
  424. Top = 2
  425. Width = 438
  426. Height = 119
  427. Anchors = [akLeft, akTop, akRight]
  428. Caption = 'Recycle bin'
  429. TabOrder = 0
  430. DesignSize = (
  431. 438
  432. 119)
  433. object RecycleBinPathLabel: TLabel
  434. Left = 9
  435. Top = 68
  436. Width = 104
  437. Height = 15
  438. Caption = '&Remote recycle bin:'
  439. FocusControl = RecycleBinPathEdit
  440. end
  441. object DeleteToRecycleBinCheck: TCheckBox
  442. Left = 11
  443. Top = 22
  444. Width = 418
  445. Height = 17
  446. Anchors = [akLeft, akTop, akRight]
  447. Caption = '&Preserve deleted remote files to recycle bin'
  448. TabOrder = 0
  449. OnClick = DataChange
  450. end
  451. object OverwrittenToRecycleBinCheck: TCheckBox
  452. Left = 11
  453. Top = 45
  454. Width = 418
  455. Height = 17
  456. Anchors = [akLeft, akTop, akRight]
  457. Caption = 'Preserve &overwritten remote files to recycle bin (SFTP only)'
  458. TabOrder = 1
  459. OnClick = DataChange
  460. end
  461. object RecycleBinPathEdit: TEdit
  462. Left = 9
  463. Top = 86
  464. Width = 420
  465. Height = 23
  466. Anchors = [akLeft, akTop, akRight]
  467. MaxLength = 1000
  468. TabOrder = 2
  469. Text = 'RecycleBinPathEdit'
  470. OnChange = DataChange
  471. end
  472. end
  473. end
  474. object EncryptionSheet: TTabSheet
  475. Tag = 2
  476. HelpType = htKeyword
  477. HelpKeyword = 'ui_login_encryption'
  478. Caption = 'Encryption'
  479. TabVisible = False
  480. DesignSize = (
  481. 450
  482. 388)
  483. object EncryptFilesCheck: TCheckBox
  484. Left = 10
  485. Top = 2
  486. Width = 438
  487. Height = 17
  488. Anchors = [akLeft, akTop, akRight]
  489. Caption = '&Encrypt files'
  490. TabOrder = 0
  491. OnClick = DataChange
  492. end
  493. object EncryptFilesGroup: TGroupBox
  494. Left = 8
  495. Top = 25
  496. Width = 438
  497. Height = 127
  498. Anchors = [akLeft, akTop, akRight]
  499. Caption = 'Encryption options'
  500. TabOrder = 1
  501. DesignSize = (
  502. 438
  503. 127)
  504. object Label13: TLabel
  505. Left = 9
  506. Top = 22
  507. Width = 81
  508. Height = 15
  509. Caption = 'Encryption &key:'
  510. FocusControl = EncryptKeyPasswordEdit
  511. end
  512. object EncryptKeyVisibleEdit: TEdit
  513. Left = 9
  514. Top = 40
  515. Width = 420
  516. Height = 23
  517. Anchors = [akLeft, akTop, akRight]
  518. MaxLength = 64
  519. TabOrder = 1
  520. Text = 'EncryptKeyVisibleEdit'
  521. Visible = False
  522. OnChange = DataChange
  523. OnExit = EncryptKeyEditExit
  524. end
  525. object EncryptKeyPasswordEdit: TEdit
  526. Left = 9
  527. Top = 40
  528. Width = 420
  529. Height = 23
  530. Anchors = [akLeft, akTop, akRight]
  531. MaxLength = 64
  532. PasswordChar = '*'
  533. TabOrder = 0
  534. Text = 'EncryptKeyPasswordEdit'
  535. OnChange = DataChange
  536. OnExit = EncryptKeyEditExit
  537. end
  538. object ShowEncryptionKeyCheck: TCheckBox
  539. Left = 11
  540. Top = 69
  541. Width = 418
  542. Height = 17
  543. Caption = '&Show key'
  544. TabOrder = 2
  545. OnClick = ShowEncryptionKeyCheckClick
  546. end
  547. object GenerateKeyButton: TButton
  548. Left = 9
  549. Top = 92
  550. Width = 129
  551. Height = 25
  552. Caption = '&Generate Key'
  553. TabOrder = 3
  554. OnClick = GenerateKeyButtonClick
  555. end
  556. end
  557. end
  558. object SftpSheet: TTabSheet
  559. Tag = 2
  560. HelpType = htKeyword
  561. HelpKeyword = 'ui_login_sftp'
  562. Caption = 'SFTP'
  563. ImageIndex = 12
  564. TabVisible = False
  565. DesignSize = (
  566. 450
  567. 388)
  568. object SFTPBugsGroupBox: TGroupBox
  569. Left = 8
  570. Top = 164
  571. Width = 438
  572. Height = 77
  573. Anchors = [akLeft, akTop, akRight]
  574. Caption = 'Detection of known bugs in SFTP servers'
  575. TabOrder = 1
  576. DesignSize = (
  577. 438
  578. 77)
  579. object Label10: TLabel
  580. Left = 9
  581. Top = 22
  582. Width = 233
  583. Height = 15
  584. Caption = '&Reverses order of link command arguments:'
  585. FocusControl = SFTPBugSymlinkCombo
  586. end
  587. object Label36: TLabel
  588. Left = 9
  589. Top = 47
  590. Width = 225
  591. Height = 15
  592. Caption = '&Misinterprets file timestamps prior to 1970:'
  593. FocusControl = SFTPBugSignedTSCombo
  594. end
  595. object SFTPBugSymlinkCombo: TComboBox
  596. Left = 362
  597. Top = 15
  598. Width = 67
  599. Height = 23
  600. Style = csDropDownList
  601. Anchors = [akTop, akRight]
  602. TabOrder = 0
  603. end
  604. object SFTPBugSignedTSCombo: TComboBox
  605. Left = 362
  606. Top = 44
  607. Width = 67
  608. Height = 23
  609. Style = csDropDownList
  610. Anchors = [akTop, akRight]
  611. TabOrder = 1
  612. end
  613. end
  614. object SFTPProtocolGroup: TGroupBox
  615. Left = 8
  616. Top = 2
  617. Width = 438
  618. Height = 156
  619. Anchors = [akLeft, akTop, akRight]
  620. Caption = 'Protocol options'
  621. TabOrder = 0
  622. DesignSize = (
  623. 438
  624. 156)
  625. object Label34: TLabel
  626. Left = 9
  627. Top = 51
  628. Width = 169
  629. Height = 15
  630. Caption = '&Preferred SFTP protocol version:'
  631. FocusControl = SFTPMaxVersionCombo
  632. end
  633. object Label23: TLabel
  634. Left = 9
  635. Top = 22
  636. Width = 63
  637. Height = 15
  638. Caption = 'SFTP ser&ver:'
  639. FocusControl = SftpServerEdit
  640. end
  641. object Label5: TLabel
  642. Left = 9
  643. Top = 80
  644. Width = 170
  645. Height = 15
  646. Caption = '&Canonicalize paths on the server'
  647. FocusControl = SFTPRealPathCombo
  648. end
  649. object SFTPMaxVersionCombo: TComboBox
  650. Left = 362
  651. Top = 48
  652. Width = 67
  653. Height = 23
  654. Style = csDropDownList
  655. Anchors = [akTop, akRight]
  656. TabOrder = 1
  657. Items.Strings = (
  658. 'Auto'
  659. '0'
  660. '1'
  661. '2'
  662. '3'
  663. '4'
  664. '5'
  665. '6')
  666. end
  667. object SftpServerEdit: TComboBox
  668. Left = 152
  669. Top = 19
  670. Width = 277
  671. Height = 23
  672. AutoComplete = False
  673. Anchors = [akLeft, akTop, akRight]
  674. MaxLength = 255
  675. TabOrder = 0
  676. Text = 'SftpServerEdit'
  677. OnChange = DataChange
  678. Items.Strings = (
  679. 'Default'
  680. '/bin/sftp-server'
  681. 'sudo su -c /bin/sftp-server')
  682. end
  683. object AllowScpFallbackCheck: TCheckBox
  684. Left = 11
  685. Top = 106
  686. Width = 418
  687. Height = 17
  688. Anchors = [akLeft, akTop, akRight]
  689. Caption = 'Allow SCP &fallback'
  690. TabOrder = 3
  691. OnClick = DataChange
  692. end
  693. object SFTPRealPathCombo: TComboBox
  694. Left = 362
  695. Top = 77
  696. Width = 67
  697. Height = 23
  698. Style = csDropDownList
  699. Anchors = [akTop, akRight]
  700. TabOrder = 2
  701. end
  702. object UsePosixRenameCheck: TCheckBox
  703. Left = 11
  704. Top = 129
  705. Width = 418
  706. Height = 17
  707. Anchors = [akLeft, akTop, akRight]
  708. Caption = '&Use POSIX rename'
  709. TabOrder = 4
  710. OnClick = DataChange
  711. end
  712. end
  713. end
  714. object ScpSheet: TTabSheet
  715. Tag = 2
  716. HelpType = htKeyword
  717. HelpKeyword = 'ui_login_scp'
  718. Caption = 'SCP/ShellX'
  719. ImageIndex = 3
  720. TabVisible = False
  721. DesignSize = (
  722. 450
  723. 388)
  724. object OtherShellOptionsGroup: TGroupBox
  725. Left = 8
  726. Top = 170
  727. Width = 438
  728. Height = 72
  729. Anchors = [akLeft, akTop, akRight]
  730. Caption = 'Other options'
  731. TabOrder = 2
  732. DesignSize = (
  733. 438
  734. 72)
  735. object LookupUserGroupsCheck: TCheckBox
  736. Left = 11
  737. Top = 22
  738. Width = 172
  739. Height = 17
  740. AllowGrayed = True
  741. Caption = 'Lookup &user groups'
  742. TabOrder = 0
  743. OnClick = DataChange
  744. end
  745. object ClearAliasesCheck: TCheckBox
  746. Left = 11
  747. Top = 45
  748. Width = 172
  749. Height = 17
  750. Caption = 'Clear a&liases'
  751. TabOrder = 2
  752. OnClick = DataChange
  753. end
  754. object UnsetNationalVarsCheck: TCheckBox
  755. Left = 189
  756. Top = 22
  757. Width = 240
  758. Height = 17
  759. Anchors = [akLeft, akTop, akRight]
  760. Caption = 'Clear &national variables'
  761. TabOrder = 1
  762. OnClick = DataChange
  763. end
  764. object Scp1CompatibilityCheck: TCheckBox
  765. Left = 189
  766. Top = 45
  767. Width = 240
  768. Height = 17
  769. Anchors = [akLeft, akTop, akRight]
  770. Caption = 'Use scp&2 with scp1 compatibility'
  771. TabOrder = 3
  772. OnClick = DataChange
  773. end
  774. end
  775. object ShellGroup: TGroupBox
  776. Left = 8
  777. Top = 2
  778. Width = 438
  779. Height = 81
  780. Anchors = [akLeft, akTop, akRight]
  781. Caption = 'Shell'
  782. TabOrder = 0
  783. DesignSize = (
  784. 438
  785. 81)
  786. object Label19: TLabel
  787. Left = 9
  788. Top = 22
  789. Width = 28
  790. Height = 15
  791. Caption = 'S&hell:'
  792. FocusControl = ShellEdit
  793. end
  794. object Label20: TLabel
  795. Left = 9
  796. Top = 51
  797. Width = 111
  798. Height = 15
  799. Caption = '&Return code variable:'
  800. FocusControl = ReturnVarEdit
  801. end
  802. object ShellEdit: TComboBox
  803. Left = 187
  804. Top = 19
  805. Width = 242
  806. Height = 23
  807. AutoComplete = False
  808. Anchors = [akLeft, akTop, akRight]
  809. MaxLength = 50
  810. TabOrder = 0
  811. Text = 'ShellEdit'
  812. Items.Strings = (
  813. 'Default'
  814. '/bin/bash'
  815. '/bin/ksh'
  816. '/bin/sh'
  817. 'sudo su -')
  818. end
  819. object ReturnVarEdit: TComboBox
  820. Left = 187
  821. Top = 48
  822. Width = 242
  823. Height = 23
  824. AutoComplete = False
  825. Anchors = [akLeft, akTop, akRight]
  826. MaxLength = 50
  827. TabOrder = 1
  828. Text = 'ReturnVarEdit'
  829. Items.Strings = (
  830. 'Autodetect'
  831. '?'
  832. 'status')
  833. end
  834. end
  835. object ScpLsOptionsGroup: TGroupBox
  836. Left = 8
  837. Top = 89
  838. Width = 438
  839. Height = 75
  840. Anchors = [akLeft, akTop, akRight]
  841. Caption = 'Directory listing'
  842. TabOrder = 1
  843. DesignSize = (
  844. 438
  845. 75)
  846. object Label9: TLabel
  847. Left = 9
  848. Top = 22
  849. Width = 96
  850. Height = 15
  851. Caption = 'Listing &command:'
  852. FocusControl = ListingCommandEdit
  853. end
  854. object IgnoreLsWarningsCheck: TCheckBox
  855. Left = 11
  856. Top = 48
  857. Width = 172
  858. Height = 17
  859. Caption = 'Ignore LS &warnings'
  860. TabOrder = 1
  861. OnClick = DataChange
  862. end
  863. object SCPLsFullTimeAutoCheck: TCheckBox
  864. Left = 189
  865. Top = 48
  866. Width = 240
  867. Height = 17
  868. Anchors = [akLeft, akTop, akRight]
  869. Caption = 'Try to get &full timestamp'
  870. TabOrder = 2
  871. OnClick = DataChange
  872. end
  873. object ListingCommandEdit: TComboBox
  874. Left = 187
  875. Top = 19
  876. Width = 242
  877. Height = 23
  878. AutoComplete = False
  879. Anchors = [akLeft, akTop, akRight]
  880. MaxLength = 50
  881. TabOrder = 0
  882. Text = 'ListingCommandEdit'
  883. Items.Strings = (
  884. 'ls -la'
  885. 'ls -gla')
  886. end
  887. end
  888. end
  889. object FtpSheet: TTabSheet
  890. Tag = 2
  891. HelpType = htKeyword
  892. HelpKeyword = 'ui_login_ftp'
  893. Caption = 'FTP'
  894. ImageIndex = 16
  895. TabVisible = False
  896. DesignSize = (
  897. 450
  898. 388)
  899. object FtpGroup: TGroupBox
  900. Left = 8
  901. Top = 2
  902. Width = 438
  903. Height = 274
  904. Anchors = [akLeft, akTop, akRight]
  905. Caption = 'Protocol options'
  906. TabOrder = 0
  907. DesignSize = (
  908. 438
  909. 274)
  910. object Label25: TLabel
  911. Left = 9
  912. Top = 48
  913. Width = 119
  914. Height = 15
  915. Caption = 'Post login &commands:'
  916. FocusControl = PostLoginCommandsMemo
  917. end
  918. object FtpListAllLabel: TLabel
  919. Left = 9
  920. Top = 157
  921. Width = 176
  922. Height = 15
  923. Caption = '&Support for listing of hidden files:'
  924. FocusControl = FtpListAllCombo
  925. end
  926. object Label24: TLabel
  927. Left = 9
  928. Top = 128
  929. Width = 214
  930. Height = 15
  931. Caption = 'Use &MLSD command for directory listing'
  932. FocusControl = FtpUseMlsdCombo
  933. end
  934. object FtpForcePasvIpLabel: TLabel
  935. Left = 9
  936. Top = 186
  937. Width = 249
  938. Height = 15
  939. Caption = '&Force IP address for passive mode connections:'
  940. FocusControl = FtpForcePasvIpCombo
  941. end
  942. object FtpAccountLabel: TLabel
  943. Left = 9
  944. Top = 22
  945. Width = 48
  946. Height = 15
  947. Caption = '&Account:'
  948. FocusControl = FtpAccountEdit
  949. end
  950. object Label3: TLabel
  951. Left = 9
  952. Top = 215
  953. Width = 255
  954. Height = 15
  955. Caption = 'Use &HOST command to select host on the server'
  956. FocusControl = FtpHostCombo
  957. end
  958. object PostLoginCommandsMemo: TMemo
  959. Left = 9
  960. Top = 66
  961. Width = 420
  962. Height = 53
  963. Anchors = [akLeft, akTop, akRight]
  964. ScrollBars = ssVertical
  965. TabOrder = 1
  966. end
  967. object FtpListAllCombo: TComboBox
  968. Left = 362
  969. Top = 154
  970. Width = 67
  971. Height = 23
  972. Style = csDropDownList
  973. Anchors = [akTop, akRight]
  974. TabOrder = 3
  975. OnChange = DataChange
  976. end
  977. object FtpForcePasvIpCombo: TComboBox
  978. Left = 362
  979. Top = 183
  980. Width = 67
  981. Height = 23
  982. Style = csDropDownList
  983. Anchors = [akTop, akRight]
  984. TabOrder = 4
  985. OnChange = DataChange
  986. end
  987. object FtpUseMlsdCombo: TComboBox
  988. Left = 362
  989. Top = 125
  990. Width = 67
  991. Height = 23
  992. Style = csDropDownList
  993. Anchors = [akTop, akRight]
  994. TabOrder = 2
  995. OnChange = DataChange
  996. end
  997. object FtpAccountEdit: TEdit
  998. Left = 168
  999. Top = 19
  1000. Width = 261
  1001. Height = 23
  1002. Anchors = [akLeft, akTop, akRight]
  1003. MaxLength = 100
  1004. TabOrder = 0
  1005. Text = 'FtpAccountEdit'
  1006. OnChange = DataChange
  1007. end
  1008. object FtpHostCombo: TComboBox
  1009. Left = 362
  1010. Top = 212
  1011. Width = 67
  1012. Height = 23
  1013. Style = csDropDownList
  1014. Anchors = [akTop, akRight]
  1015. TabOrder = 5
  1016. OnChange = DataChange
  1017. end
  1018. object VMSAllRevisionsCheck: TCheckBox
  1019. Left = 11
  1020. Top = 241
  1021. Width = 418
  1022. Height = 17
  1023. Caption = 'Display all file &revisions on VMS servers'
  1024. TabOrder = 6
  1025. end
  1026. end
  1027. end
  1028. object S3Sheet: TTabSheet
  1029. Tag = 2
  1030. HelpType = htKeyword
  1031. HelpKeyword = 'ui_login_s3'
  1032. Caption = 'S3'
  1033. ImageIndex = 16
  1034. TabVisible = False
  1035. DesignSize = (
  1036. 450
  1037. 388)
  1038. object S3Group: TGroupBox
  1039. Left = 8
  1040. Top = 2
  1041. Width = 438
  1042. Height = 104
  1043. Anchors = [akLeft, akTop, akRight]
  1044. Caption = 'Protocol options'
  1045. TabOrder = 0
  1046. DesignSize = (
  1047. 438
  1048. 104)
  1049. object Label27: TLabel
  1050. Left = 9
  1051. Top = 22
  1052. Width = 78
  1053. Height = 15
  1054. Caption = '&Default region:'
  1055. FocusControl = S3DefaultReqionCombo
  1056. end
  1057. object S3UrlStyleLabel: TLabel
  1058. Left = 9
  1059. Top = 51
  1060. Width = 51
  1061. Height = 15
  1062. Caption = '&URL style:'
  1063. FocusControl = S3UrlStyleCombo
  1064. end
  1065. object S3DefaultReqionCombo: TComboBox
  1066. Left = 170
  1067. Top = 19
  1068. Width = 258
  1069. Height = 23
  1070. Anchors = [akLeft, akTop, akRight]
  1071. DropDownCount = 16
  1072. MaxLength = 32
  1073. TabOrder = 0
  1074. Text = 'S3DefaultRegionCombo'
  1075. OnChange = DataChange
  1076. Items.Strings = (
  1077. 'af-south-1'
  1078. 'ap-east-1'
  1079. 'ap-northeast-1'
  1080. 'ap-northeast-2'
  1081. 'ap-northeast-3'
  1082. 'ap-south-1'
  1083. 'ap-south-2'
  1084. 'ap-southeast-1'
  1085. 'ap-southeast-2'
  1086. 'ap-southeast-3'
  1087. 'ap-southeast-4'
  1088. 'ap-southeast-5'
  1089. 'ap-southeast-7'
  1090. 'ca-central-1'
  1091. 'ca-west-1'
  1092. 'cn-north-1'
  1093. 'cn-northwest-1'
  1094. 'eu-central-1'
  1095. 'eu-central-2'
  1096. 'eu-north-1'
  1097. 'eu-south-1'
  1098. 'eu-south-2'
  1099. 'eu-west-1'
  1100. 'eu-west-2'
  1101. 'eu-west-3'
  1102. 'il-central-1'
  1103. 'me-central-1'
  1104. 'me-south-1'
  1105. 'mx-central-1'
  1106. 'sa-east-1'
  1107. 'us-east-1'
  1108. 'us-east-2'
  1109. 'us-gov-east-1'
  1110. 'us-gov-west-1'
  1111. 'us-west-1'
  1112. 'us-west-2')
  1113. end
  1114. object S3UrlStyleCombo: TComboBox
  1115. Left = 170
  1116. Top = 48
  1117. Width = 258
  1118. Height = 23
  1119. AutoComplete = False
  1120. Style = csDropDownList
  1121. Anchors = [akLeft, akTop, akRight]
  1122. MaxLength = 50
  1123. TabOrder = 1
  1124. Items.Strings = (
  1125. 'Virtual Host'
  1126. 'Path')
  1127. end
  1128. object S3RequesterPaysCheck: TCheckBox
  1129. Left = 11
  1130. Top = 77
  1131. Width = 420
  1132. Height = 17
  1133. Caption = 'Requester &pays'
  1134. TabOrder = 2
  1135. end
  1136. end
  1137. object S3AuthenticationGroup: TGroupBox
  1138. Left = 8
  1139. Top = 112
  1140. Width = 438
  1141. Height = 187
  1142. Anchors = [akLeft, akTop, akRight]
  1143. Caption = 'Authentication'
  1144. TabOrder = 1
  1145. DesignSize = (
  1146. 438
  1147. 187)
  1148. object S3SessionTokenLabel: TLabel
  1149. Left = 9
  1150. Top = 20
  1151. Width = 75
  1152. Height = 15
  1153. Caption = '&Session token:'
  1154. FocusControl = S3SessionTokenMemo
  1155. end
  1156. object S3RoleArnLabel: TLabel
  1157. Left = 9
  1158. Top = 135
  1159. Width = 53
  1160. Height = 15
  1161. Caption = '&Role ARN:'
  1162. FocusControl = S3RoleArnEdit
  1163. end
  1164. object S3SessionTokenMemo: TMemo
  1165. Left = 9
  1166. Top = 36
  1167. Width = 419
  1168. Height = 93
  1169. Anchors = [akLeft, akTop, akRight]
  1170. MaxLength = 10000
  1171. TabOrder = 0
  1172. OnChange = DataChange
  1173. OnKeyDown = NoteMemoKeyDown
  1174. end
  1175. object S3RoleArnEdit: TEdit
  1176. Left = 9
  1177. Top = 153
  1178. Width = 419
  1179. Height = 23
  1180. Anchors = [akLeft, akTop, akRight]
  1181. TabOrder = 1
  1182. Text = 'S3RoleArnEdit'
  1183. OnChange = DataChange
  1184. end
  1185. end
  1186. end
  1187. object WebDavSheet: TTabSheet
  1188. Tag = 2
  1189. HelpType = htKeyword
  1190. HelpKeyword = 'ui_login_webdav'
  1191. Caption = 'WebDAV'
  1192. ImageIndex = 17
  1193. TabVisible = False
  1194. DesignSize = (
  1195. 450
  1196. 388)
  1197. object WebdavGroup: TGroupBox
  1198. Left = 8
  1199. Top = 2
  1200. Width = 438
  1201. Height = 49
  1202. Anchors = [akLeft, akTop, akRight]
  1203. Caption = 'Protocol options'
  1204. TabOrder = 0
  1205. DesignSize = (
  1206. 438
  1207. 49)
  1208. object WebDavLiberalEscapingCheck: TCheckBox
  1209. Left = 11
  1210. Top = 22
  1211. Width = 418
  1212. Height = 17
  1213. Anchors = [akLeft, akTop, akRight]
  1214. Caption = '&Tolerate non-encoded special characters in filenames'
  1215. TabOrder = 0
  1216. OnClick = DataChange
  1217. end
  1218. end
  1219. end
  1220. object ConnSheet: TTabSheet
  1221. Tag = 1
  1222. HelpType = htKeyword
  1223. HelpKeyword = 'ui_login_connection'
  1224. Caption = 'Connection'
  1225. ImageIndex = 7
  1226. TabVisible = False
  1227. DesignSize = (
  1228. 450
  1229. 388)
  1230. object FtpPingGroup: TGroupBox
  1231. Left = 8
  1232. Top = 139
  1233. Width = 438
  1234. Height = 124
  1235. Anchors = [akLeft, akTop, akRight]
  1236. Caption = 'Keepalives'
  1237. TabOrder = 3
  1238. DesignSize = (
  1239. 438
  1240. 124)
  1241. object FtpPingIntervalLabel: TLabel
  1242. Left = 9
  1243. Top = 94
  1244. Width = 152
  1245. Height = 15
  1246. Caption = 'Seconds &between keepalives:'
  1247. FocusControl = FtpPingIntervalSecEdit
  1248. end
  1249. object FtpPingIntervalSecEdit: TUpDownEdit
  1250. Left = 288
  1251. Top = 91
  1252. Width = 80
  1253. Height = 23
  1254. Alignment = taRightJustify
  1255. MaxValue = 3600.000000000000000000
  1256. MinValue = 1.000000000000000000
  1257. Anchors = [akTop, akRight]
  1258. MaxLength = 4
  1259. TabOrder = 3
  1260. OnChange = DataChange
  1261. end
  1262. object FtpPingOffButton: TRadioButton
  1263. Left = 11
  1264. Top = 22
  1265. Width = 418
  1266. Height = 17
  1267. Anchors = [akLeft, akTop, akRight]
  1268. Caption = '&Off'
  1269. TabOrder = 0
  1270. OnClick = DataChange
  1271. end
  1272. object FtpPingDummyCommandButton: TRadioButton
  1273. Left = 11
  1274. Top = 45
  1275. Width = 418
  1276. Height = 17
  1277. Anchors = [akLeft, akTop, akRight]
  1278. Caption = 'Executing &dummy protocol commands'
  1279. TabOrder = 1
  1280. OnClick = DataChange
  1281. end
  1282. object FtpPingDirectoryListingButton: TRadioButton
  1283. Left = 11
  1284. Top = 68
  1285. Width = 418
  1286. Height = 17
  1287. Anchors = [akLeft, akTop, akRight]
  1288. Caption = '&And additionally reading the current directory'
  1289. TabOrder = 2
  1290. OnClick = DataChange
  1291. end
  1292. end
  1293. object TimeoutGroup: TGroupBox
  1294. Left = 8
  1295. Top = 81
  1296. Width = 438
  1297. Height = 52
  1298. Anchors = [akLeft, akTop, akRight]
  1299. Caption = 'Timeouts'
  1300. TabOrder = 1
  1301. DesignSize = (
  1302. 438
  1303. 52)
  1304. object Label11: TLabel
  1305. Left = 9
  1306. Top = 22
  1307. Width = 130
  1308. Height = 15
  1309. Caption = 'Server &response timeout:'
  1310. FocusControl = TimeoutEdit
  1311. end
  1312. object Label12: TLabel
  1313. Left = 374
  1314. Top = 22
  1315. Width = 43
  1316. Height = 15
  1317. Anchors = [akTop, akRight]
  1318. Caption = 'seconds'
  1319. FocusControl = TimeoutEdit
  1320. end
  1321. object TimeoutEdit: TUpDownEdit
  1322. Left = 288
  1323. Top = 19
  1324. Width = 80
  1325. Height = 23
  1326. Alignment = taRightJustify
  1327. Increment = 5.000000000000000000
  1328. MaxValue = 6000.000000000000000000
  1329. MinValue = 5.000000000000000000
  1330. Anchors = [akTop, akRight]
  1331. MaxLength = 4
  1332. TabOrder = 0
  1333. OnChange = DataChange
  1334. end
  1335. end
  1336. object PingGroup: TGroupBox
  1337. Left = 8
  1338. Top = 139
  1339. Width = 438
  1340. Height = 124
  1341. Anchors = [akLeft, akTop, akRight]
  1342. Caption = 'Keepalives'
  1343. TabOrder = 2
  1344. DesignSize = (
  1345. 438
  1346. 124)
  1347. object PingIntervalLabel: TLabel
  1348. Left = 9
  1349. Top = 94
  1350. Width = 152
  1351. Height = 15
  1352. Caption = 'Seconds &between keepalives:'
  1353. FocusControl = PingIntervalSecEdit
  1354. end
  1355. object PingIntervalSecEdit: TUpDownEdit
  1356. Left = 288
  1357. Top = 91
  1358. Width = 80
  1359. Height = 23
  1360. Alignment = taRightJustify
  1361. MaxValue = 3600.000000000000000000
  1362. MinValue = 1.000000000000000000
  1363. Anchors = [akTop, akRight]
  1364. MaxLength = 4
  1365. TabOrder = 3
  1366. OnChange = DataChange
  1367. end
  1368. object PingOffButton: TRadioButton
  1369. Left = 11
  1370. Top = 22
  1371. Width = 418
  1372. Height = 17
  1373. Anchors = [akLeft, akTop, akRight]
  1374. Caption = '&Off'
  1375. TabOrder = 0
  1376. OnClick = DataChange
  1377. end
  1378. object PingNullPacketButton: TRadioButton
  1379. Left = 11
  1380. Top = 45
  1381. Width = 418
  1382. Height = 17
  1383. Anchors = [akLeft, akTop, akRight]
  1384. Caption = 'Sending of &null SSH packets'
  1385. TabOrder = 1
  1386. OnClick = DataChange
  1387. end
  1388. object PingDummyCommandButton: TRadioButton
  1389. Left = 11
  1390. Top = 68
  1391. Width = 418
  1392. Height = 17
  1393. Anchors = [akLeft, akTop, akRight]
  1394. Caption = 'Executing &dummy protocol commands'
  1395. TabOrder = 2
  1396. OnClick = DataChange
  1397. end
  1398. end
  1399. object IPvGroup: TGroupBox
  1400. Left = 8
  1401. Top = 269
  1402. Width = 438
  1403. Height = 49
  1404. Anchors = [akLeft, akTop, akRight]
  1405. Caption = 'Internet protocol version'
  1406. TabOrder = 4
  1407. object IPAutoButton: TRadioButton
  1408. Left = 11
  1409. Top = 22
  1410. Width = 101
  1411. Height = 17
  1412. Caption = 'A&uto'
  1413. TabOrder = 0
  1414. OnClick = DataChange
  1415. end
  1416. object IPv4Button: TRadioButton
  1417. Left = 133
  1418. Top = 22
  1419. Width = 101
  1420. Height = 17
  1421. Caption = 'IPv&4'
  1422. TabOrder = 1
  1423. OnClick = DataChange
  1424. end
  1425. object IPv6Button: TRadioButton
  1426. Left = 255
  1427. Top = 22
  1428. Width = 101
  1429. Height = 17
  1430. Caption = 'IPv&6'
  1431. TabOrder = 2
  1432. OnClick = DataChange
  1433. end
  1434. end
  1435. object ConnectionGroup: TGroupBox
  1436. Left = 8
  1437. Top = 2
  1438. Width = 438
  1439. Height = 73
  1440. Anchors = [akLeft, akTop, akRight]
  1441. Caption = 'Connection'
  1442. TabOrder = 0
  1443. DesignSize = (
  1444. 438
  1445. 73)
  1446. object FtpPasvModeCheck: TCheckBox
  1447. Left = 11
  1448. Top = 22
  1449. Width = 418
  1450. Height = 17
  1451. Anchors = [akLeft, akTop, akRight]
  1452. Caption = '&Passive mode'
  1453. TabOrder = 0
  1454. OnClick = DataChange
  1455. end
  1456. object BufferSizeCheck: TCheckBox
  1457. Left = 11
  1458. Top = 45
  1459. Width = 418
  1460. Height = 17
  1461. Anchors = [akLeft, akTop, akRight]
  1462. Caption = 'Optimize connection &buffer size'
  1463. TabOrder = 1
  1464. OnClick = DataChange
  1465. end
  1466. end
  1467. end
  1468. object ProxySheet: TTabSheet
  1469. Tag = 2
  1470. HelpType = htKeyword
  1471. HelpKeyword = 'ui_login_proxy'
  1472. Caption = 'Proxy'
  1473. ImageIndex = 8
  1474. TabVisible = False
  1475. DesignSize = (
  1476. 450
  1477. 388)
  1478. object ProxyTypeGroup: TGroupBox
  1479. Left = 8
  1480. Top = 2
  1481. Width = 438
  1482. Height = 176
  1483. Anchors = [akLeft, akTop, akRight]
  1484. Caption = 'Proxy'
  1485. TabOrder = 0
  1486. DesignSize = (
  1487. 438
  1488. 176)
  1489. object ProxyMethodLabel: TLabel
  1490. Left = 9
  1491. Top = 22
  1492. Width = 58
  1493. Height = 15
  1494. Caption = 'Proxy &type:'
  1495. FocusControl = SshProxyMethodCombo
  1496. end
  1497. object ProxyHostLabel: TLabel
  1498. Left = 9
  1499. Top = 48
  1500. Width = 91
  1501. Height = 15
  1502. Caption = 'Pro&xy host name:'
  1503. FocusControl = ProxyHostEdit
  1504. end
  1505. object ProxyPortLabel: TLabel
  1506. Left = 327
  1507. Top = 48
  1508. Width = 70
  1509. Height = 15
  1510. Anchors = [akTop, akRight]
  1511. Caption = 'Po&rt number:'
  1512. FocusControl = ProxyPortEdit
  1513. end
  1514. object ProxyUsernameLabel: TLabel
  1515. Left = 9
  1516. Top = 95
  1517. Width = 59
  1518. Height = 15
  1519. Caption = '&User name:'
  1520. FocusControl = ProxyUsernameEdit
  1521. end
  1522. object ProxyPasswordLabel: TLabel
  1523. Left = 222
  1524. Top = 95
  1525. Width = 53
  1526. Height = 15
  1527. Caption = '&Password:'
  1528. FocusControl = ProxyPasswordEdit
  1529. end
  1530. object SshProxyMethodCombo: TComboBox
  1531. Left = 140
  1532. Top = 19
  1533. Width = 121
  1534. Height = 23
  1535. Style = csDropDownList
  1536. TabOrder = 0
  1537. OnChange = DataChange
  1538. Items.Strings = (
  1539. 'None'
  1540. 'SOCKS4'
  1541. 'SOCKS5'
  1542. 'HTTP'
  1543. 'Telnet'
  1544. 'Local')
  1545. end
  1546. object ProxyPortEdit: TUpDownEdit
  1547. Left = 327
  1548. Top = 66
  1549. Width = 102
  1550. Height = 23
  1551. Alignment = taRightJustify
  1552. MaxValue = 65535.000000000000000000
  1553. MinValue = 1.000000000000000000
  1554. Anchors = [akTop, akRight]
  1555. TabOrder = 4
  1556. OnChange = DataChange
  1557. end
  1558. object ProxyHostEdit: TEdit
  1559. Left = 9
  1560. Top = 66
  1561. Width = 312
  1562. Height = 23
  1563. Anchors = [akLeft, akTop, akRight]
  1564. MaxLength = 255
  1565. TabOrder = 3
  1566. Text = 'ProxyHostEdit'
  1567. OnChange = DataChange
  1568. end
  1569. object ProxyUsernameEdit: TEdit
  1570. Left = 9
  1571. Top = 113
  1572. Width = 207
  1573. Height = 23
  1574. MaxLength = 100
  1575. TabOrder = 5
  1576. Text = 'ProxyUsernameEdit'
  1577. OnChange = DataChange
  1578. end
  1579. object ProxyPasswordEdit: TEdit
  1580. Left = 222
  1581. Top = 113
  1582. Width = 207
  1583. Height = 23
  1584. Anchors = [akLeft, akTop, akRight]
  1585. MaxLength = 100
  1586. PasswordChar = '*'
  1587. TabOrder = 6
  1588. Text = 'ProxyPasswordEdit'
  1589. OnChange = DataChange
  1590. end
  1591. object FtpProxyMethodCombo: TComboBox
  1592. Left = 140
  1593. Top = 19
  1594. Width = 289
  1595. Height = 23
  1596. Style = csDropDownList
  1597. Anchors = [akLeft, akTop, akRight]
  1598. DropDownCount = 12
  1599. TabOrder = 1
  1600. OnChange = DataChange
  1601. Items.Strings = (
  1602. 'None'
  1603. 'SOCKS4'
  1604. 'SOCKS5'
  1605. 'HTTP'
  1606. 'SITE %host'
  1607. 'USER %proxyuser, USER %user@%host'
  1608. 'OPEN %host'
  1609. 'USER %proxyuser, USER %user'
  1610. 'USER %user@%host'
  1611. 'USER %proxyuser@%host'
  1612. 'USER %user@%host %proxyuser'
  1613. 'USER %user@%proxyuser@%host')
  1614. end
  1615. object NeonProxyMethodCombo: TComboBox
  1616. Left = 140
  1617. Top = 19
  1618. Width = 121
  1619. Height = 23
  1620. Style = csDropDownList
  1621. TabOrder = 2
  1622. OnChange = DataChange
  1623. Items.Strings = (
  1624. 'None'
  1625. 'SOCKS4'
  1626. 'SOCKS5'
  1627. 'HTTP')
  1628. end
  1629. object ProxyAutodetectButton: TButton
  1630. Left = 9
  1631. Top = 142
  1632. Width = 100
  1633. Height = 25
  1634. Caption = '&Autodetect'
  1635. TabOrder = 7
  1636. OnClick = ProxyAutodetectButtonClick
  1637. end
  1638. end
  1639. object ProxySettingsGroup: TGroupBox
  1640. Left = 8
  1641. Top = 184
  1642. Width = 438
  1643. Height = 134
  1644. Anchors = [akLeft, akTop, akRight]
  1645. Caption = 'Proxy settings'
  1646. TabOrder = 1
  1647. DesignSize = (
  1648. 438
  1649. 134)
  1650. object ProxyTelnetCommandLabel: TLabel
  1651. Left = 9
  1652. Top = 22
  1653. Width = 93
  1654. Height = 15
  1655. Caption = 'Telnet co&mmand:'
  1656. FocusControl = ProxyTelnetCommandEdit
  1657. end
  1658. object Label17: TLabel
  1659. Left = 9
  1660. Top = 104
  1661. Width = 185
  1662. Height = 15
  1663. Caption = 'Do &DNS name lookup at proxy end:'
  1664. FocusControl = ProxyDNSCombo
  1665. end
  1666. object ProxyLocalCommandLabel: TLabel
  1667. Left = 9
  1668. Top = 22
  1669. Width = 121
  1670. Height = 15
  1671. Caption = 'Local proxy co&mmand:'
  1672. FocusControl = ProxyLocalCommandEdit
  1673. end
  1674. object ProxyTelnetCommandEdit: TEdit
  1675. Left = 9
  1676. Top = 40
  1677. Width = 420
  1678. Height = 23
  1679. Anchors = [akLeft, akTop, akRight]
  1680. MaxLength = 255
  1681. TabOrder = 0
  1682. Text = 'ProxyTelnetCommandEdit'
  1683. OnChange = DataChange
  1684. end
  1685. object ProxyLocalhostCheck: TCheckBox
  1686. Left = 11
  1687. Top = 78
  1688. Width = 418
  1689. Height = 17
  1690. Anchors = [akLeft, akTop, akRight]
  1691. Caption = 'Co&nsider proxying local host connections'
  1692. TabOrder = 5
  1693. end
  1694. object ProxyDNSCombo: TComboBox
  1695. Left = 362
  1696. Top = 101
  1697. Width = 67
  1698. Height = 23
  1699. Style = csDropDownList
  1700. Anchors = [akTop, akRight]
  1701. TabOrder = 6
  1702. Items.Strings = (
  1703. 'Auto'
  1704. 'No'
  1705. 'Yes')
  1706. end
  1707. object ProxyLocalCommandEdit: TEdit
  1708. Left = 9
  1709. Top = 40
  1710. Width = 332
  1711. Height = 23
  1712. Anchors = [akLeft, akTop, akRight]
  1713. TabOrder = 2
  1714. Text = 'ProxyLocalCommandEdit'
  1715. OnChange = DataChange
  1716. end
  1717. object ProxyLocalCommandBrowseButton: TButton
  1718. Left = 347
  1719. Top = 39
  1720. Width = 82
  1721. Height = 25
  1722. Anchors = [akTop, akRight]
  1723. Caption = '&Browse...'
  1724. TabOrder = 3
  1725. OnClick = ProxyLocalCommandBrowseButtonClick
  1726. end
  1727. object ProxyTelnetCommandHintText: TStaticText
  1728. Left = 350
  1729. Top = 63
  1730. Width = 79
  1731. Height = 17
  1732. Alignment = taRightJustify
  1733. Anchors = [akTop, akRight]
  1734. AutoSize = False
  1735. Caption = 'patterns'
  1736. TabOrder = 1
  1737. TabStop = True
  1738. end
  1739. object ProxyLocalCommandHintText: TStaticText
  1740. Left = 262
  1741. Top = 63
  1742. Width = 79
  1743. Height = 17
  1744. Alignment = taRightJustify
  1745. Anchors = [akTop, akRight]
  1746. AutoSize = False
  1747. Caption = 'patterns'
  1748. TabOrder = 4
  1749. TabStop = True
  1750. end
  1751. end
  1752. end
  1753. object TunnelSheet: TTabSheet
  1754. Tag = 2
  1755. HelpType = htKeyword
  1756. HelpKeyword = 'ui_login_tunnel'
  1757. Caption = 'Tunnel'
  1758. ImageIndex = 14
  1759. TabVisible = False
  1760. DesignSize = (
  1761. 450
  1762. 388)
  1763. object TunnelSessionGroup: TGroupBox
  1764. Left = 8
  1765. Top = 25
  1766. Width = 438
  1767. Height = 120
  1768. Anchors = [akLeft, akTop, akRight]
  1769. Caption = 'Host to setup tunnel on'
  1770. TabOrder = 1
  1771. DesignSize = (
  1772. 438
  1773. 120)
  1774. object Label6: TLabel
  1775. Left = 9
  1776. Top = 22
  1777. Width = 61
  1778. Height = 15
  1779. Caption = '&Host name:'
  1780. FocusControl = TunnelHostNameEdit
  1781. end
  1782. object Label14: TLabel
  1783. Left = 327
  1784. Top = 22
  1785. Width = 70
  1786. Height = 15
  1787. Anchors = [akTop, akRight]
  1788. Caption = 'Po&rt number:'
  1789. FocusControl = TunnelPortNumberEdit
  1790. end
  1791. object Label15: TLabel
  1792. Left = 9
  1793. Top = 69
  1794. Width = 59
  1795. Height = 15
  1796. Caption = '&User name:'
  1797. FocusControl = TunnelUserNameEdit
  1798. end
  1799. object Label16: TLabel
  1800. Left = 222
  1801. Top = 69
  1802. Width = 53
  1803. Height = 15
  1804. Caption = '&Password:'
  1805. FocusControl = TunnelPasswordEdit
  1806. end
  1807. object TunnelHostNameEdit: TEdit
  1808. Left = 9
  1809. Top = 40
  1810. Width = 312
  1811. Height = 23
  1812. Anchors = [akLeft, akTop, akRight]
  1813. MaxLength = 255
  1814. TabOrder = 0
  1815. Text = 'TunnelHostNameEdit'
  1816. OnChange = DataChange
  1817. end
  1818. object TunnelUserNameEdit: TEdit
  1819. Left = 9
  1820. Top = 87
  1821. Width = 207
  1822. Height = 23
  1823. MaxLength = 100
  1824. TabOrder = 2
  1825. Text = 'TunnelUserNameEdit'
  1826. OnChange = DataChange
  1827. end
  1828. object TunnelPasswordEdit: TEdit
  1829. Left = 222
  1830. Top = 87
  1831. Width = 207
  1832. Height = 23
  1833. Anchors = [akLeft, akTop, akRight]
  1834. MaxLength = 100
  1835. PasswordChar = '*'
  1836. TabOrder = 3
  1837. Text = 'TunnelPasswordEdit'
  1838. OnChange = DataChange
  1839. end
  1840. object TunnelPortNumberEdit: TUpDownEdit
  1841. Left = 327
  1842. Top = 40
  1843. Width = 102
  1844. Height = 23
  1845. Alignment = taRightJustify
  1846. MaxValue = 65535.000000000000000000
  1847. MinValue = 1.000000000000000000
  1848. Anchors = [akTop, akRight]
  1849. TabOrder = 1
  1850. OnChange = DataChange
  1851. end
  1852. end
  1853. object TunnelCheck: TCheckBox
  1854. Left = 10
  1855. Top = 2
  1856. Width = 436
  1857. Height = 17
  1858. Anchors = [akLeft, akTop, akRight]
  1859. Caption = '&Connect through SSH tunnel'
  1860. TabOrder = 0
  1861. OnClick = DataChange
  1862. end
  1863. object TunnelOptionsGroup: TGroupBox
  1864. Left = 8
  1865. Top = 151
  1866. Width = 438
  1867. Height = 52
  1868. Anchors = [akLeft, akTop, akRight]
  1869. Caption = 'Tunnel options'
  1870. TabOrder = 2
  1871. DesignSize = (
  1872. 438
  1873. 52)
  1874. object Label21: TLabel
  1875. Left = 9
  1876. Top = 22
  1877. Width = 93
  1878. Height = 15
  1879. Caption = '&Local tunnel port:'
  1880. FocusControl = TunnelLocalPortNumberEdit
  1881. end
  1882. object TunnelLocalPortNumberEdit: TComboBox
  1883. Left = 327
  1884. Top = 19
  1885. Width = 102
  1886. Height = 23
  1887. AutoComplete = False
  1888. Anchors = [akTop, akRight]
  1889. MaxLength = 50
  1890. TabOrder = 0
  1891. Text = 'TunnelLocalPortNumberEdit'
  1892. OnChange = DataChange
  1893. Items.Strings = (
  1894. 'Autoselect')
  1895. end
  1896. end
  1897. object TunnelAuthenticationParamsGroup: TGroupBox
  1898. Left = 8
  1899. Top = 209
  1900. Width = 438
  1901. Height = 71
  1902. Anchors = [akLeft, akTop, akRight]
  1903. Caption = 'Tunnel authentication parameters'
  1904. TabOrder = 3
  1905. DesignSize = (
  1906. 438
  1907. 71)
  1908. object Label18: TLabel
  1909. Left = 9
  1910. Top = 22
  1911. Width = 79
  1912. Height = 15
  1913. Caption = 'Private &key file:'
  1914. FocusControl = TunnelPrivateKeyEdit3
  1915. end
  1916. object TunnelPrivateKeyEdit3: TFilenameEdit
  1917. Left = 9
  1918. Top = 40
  1919. Width = 420
  1920. Height = 21
  1921. AcceptFiles = True
  1922. OnBeforeDialog = PathEditBeforeDialog
  1923. OnAfterDialog = PrivateKeyEdit3AfterDialog
  1924. Filter =
  1925. 'PuTTY Private Key Files (*.ppk)|*.ppk|All Private Key Files (*.p' +
  1926. 'pk;*.pem;*.key;id_*)|*.ppk;*.pem;*.key;id_*|All Files (*.*)|*.*'
  1927. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  1928. DialogTitle = 'Select private key file'
  1929. ClickKey = 16397
  1930. Anchors = [akLeft, akTop, akRight]
  1931. TabOrder = 0
  1932. Text = 'TunnelPrivateKeyEdit3'
  1933. OnChange = DataChange
  1934. end
  1935. end
  1936. end
  1937. object SslSheet: TTabSheet
  1938. Tag = 2
  1939. HelpType = htKeyword
  1940. HelpKeyword = 'ui_login_tls'
  1941. Caption = 'TLS/SSL'
  1942. ImageIndex = 13
  1943. TabVisible = False
  1944. DesignSize = (
  1945. 450
  1946. 388)
  1947. object TlsGroup: TGroupBox
  1948. Left = 8
  1949. Top = 2
  1950. Width = 438
  1951. Height = 104
  1952. Anchors = [akLeft, akTop, akRight]
  1953. Caption = 'TLS options'
  1954. TabOrder = 0
  1955. DesignSize = (
  1956. 438
  1957. 104)
  1958. object MinTlsVersionLabel: TLabel
  1959. Left = 9
  1960. Top = 22
  1961. Width = 119
  1962. Height = 15
  1963. Caption = 'Mi&nimum TLS version:'
  1964. FocusControl = MinTlsVersionCombo
  1965. end
  1966. object MaxTlsVersionLabel: TLabel
  1967. Left = 9
  1968. Top = 51
  1969. Width = 120
  1970. Height = 15
  1971. Caption = 'Ma&ximum TLS version:'
  1972. FocusControl = MaxTlsVersionCombo
  1973. end
  1974. object MinTlsVersionCombo: TComboBox
  1975. Left = 345
  1976. Top = 19
  1977. Width = 84
  1978. Height = 23
  1979. Style = csDropDownList
  1980. Anchors = [akTop, akRight]
  1981. TabOrder = 0
  1982. OnChange = MinTlsVersionComboChange
  1983. Items.Strings = (
  1984. 'TLS 1.0'
  1985. 'TLS 1.1'
  1986. 'TLS 1.2'
  1987. 'TLS 1.3')
  1988. end
  1989. object MaxTlsVersionCombo: TComboBox
  1990. Left = 345
  1991. Top = 48
  1992. Width = 84
  1993. Height = 23
  1994. Style = csDropDownList
  1995. Anchors = [akTop, akRight]
  1996. TabOrder = 1
  1997. OnChange = MaxTlsVersionComboChange
  1998. Items.Strings = (
  1999. 'TLS 1.0'
  2000. 'TLS 1.1'
  2001. 'TLS 1.2'
  2002. 'TLS 1.3')
  2003. end
  2004. object SslSessionReuseCheck2: TCheckBox
  2005. Left = 11
  2006. Top = 77
  2007. Width = 418
  2008. Height = 17
  2009. Anchors = [akLeft, akTop, akRight]
  2010. Caption = '&Reuse TLS session ID for data connections'
  2011. TabOrder = 2
  2012. OnClick = DataChange
  2013. end
  2014. end
  2015. object TlsAuthenticationGroup: TGroupBox
  2016. Left = 9
  2017. Top = 112
  2018. Width = 438
  2019. Height = 73
  2020. Anchors = [akLeft, akTop, akRight]
  2021. Caption = 'Authentication parameters'
  2022. TabOrder = 1
  2023. DesignSize = (
  2024. 438
  2025. 73)
  2026. object Label4: TLabel
  2027. Left = 9
  2028. Top = 22
  2029. Width = 108
  2030. Height = 15
  2031. Caption = '&Client certificate file:'
  2032. FocusControl = TlsCertificateFileEdit
  2033. end
  2034. object TlsCertificateFileEdit: TFilenameEdit
  2035. Left = 9
  2036. Top = 40
  2037. Width = 420
  2038. Height = 21
  2039. AcceptFiles = True
  2040. OnBeforeDialog = PathEditBeforeDialog
  2041. OnAfterDialog = TlsCertificateFileEditAfterDialog
  2042. Filter =
  2043. 'Certificates and private key files (*.pfx;*.p12;*.key;*.pem)|*.p' +
  2044. 'fx;*.p12;*.key;*.pem|All Files (*.*)|*.*'
  2045. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  2046. DialogTitle = 'Select client certificate file'
  2047. ClickKey = 16397
  2048. Anchors = [akLeft, akTop, akRight]
  2049. TabOrder = 0
  2050. Text = 'TlsCertificateFileEdit'
  2051. OnChange = DataChange
  2052. end
  2053. end
  2054. end
  2055. object AdvancedSheet: TTabSheet
  2056. Tag = 1
  2057. HelpType = htKeyword
  2058. HelpKeyword = 'ui_login_ssh'
  2059. Caption = 'SSH'
  2060. ImageIndex = 2
  2061. TabVisible = False
  2062. DesignSize = (
  2063. 450
  2064. 388)
  2065. object ProtocolGroup: TGroupBox
  2066. Left = 8
  2067. Top = 2
  2068. Width = 438
  2069. Height = 49
  2070. Anchors = [akLeft, akTop, akRight]
  2071. Caption = 'Protocol options'
  2072. TabOrder = 0
  2073. DesignSize = (
  2074. 438
  2075. 49)
  2076. object CompressionCheck: TCheckBox
  2077. Left = 11
  2078. Top = 22
  2079. Width = 418
  2080. Height = 17
  2081. Anchors = [akLeft, akTop, akRight]
  2082. Caption = 'Enable &compression'
  2083. TabOrder = 0
  2084. OnClick = DataChange
  2085. end
  2086. end
  2087. object EncryptionGroup: TGroupBox
  2088. Left = 8
  2089. Top = 57
  2090. Width = 438
  2091. Height = 204
  2092. Anchors = [akLeft, akTop, akRight]
  2093. Caption = 'Encryption options'
  2094. TabOrder = 1
  2095. DesignSize = (
  2096. 438
  2097. 204)
  2098. object Label8: TLabel
  2099. Left = 9
  2100. Top = 22
  2101. Width = 181
  2102. Height = 15
  2103. Caption = 'Encryption cipher selection &policy:'
  2104. FocusControl = CipherListBox
  2105. end
  2106. object CipherListBox: TListBox
  2107. Left = 9
  2108. Top = 40
  2109. Width = 334
  2110. Height = 131
  2111. Anchors = [akLeft, akTop, akRight, akBottom]
  2112. DragMode = dmAutomatic
  2113. ItemHeight = 15
  2114. TabOrder = 0
  2115. OnClick = DataChange
  2116. OnDragDrop = AlgListBoxDragDrop
  2117. OnDragOver = AlgListBoxDragOver
  2118. OnStartDrag = AlgListBoxStartDrag
  2119. end
  2120. object Ssh2LegacyDESCheck: TCheckBox
  2121. Left = 11
  2122. Top = 177
  2123. Width = 418
  2124. Height = 17
  2125. Anchors = [akLeft, akRight, akBottom]
  2126. Caption = 'Enable legacy use of single-&DES'
  2127. TabOrder = 3
  2128. end
  2129. object CipherUpButton: TButton
  2130. Left = 349
  2131. Top = 40
  2132. Width = 80
  2133. Height = 25
  2134. Anchors = [akTop, akRight]
  2135. Caption = '&Up'
  2136. TabOrder = 1
  2137. OnClick = CipherButtonClick
  2138. end
  2139. object CipherDownButton: TButton
  2140. Left = 349
  2141. Top = 71
  2142. Width = 80
  2143. Height = 25
  2144. Anchors = [akTop, akRight]
  2145. Caption = '&Down'
  2146. TabOrder = 2
  2147. OnClick = CipherButtonClick
  2148. end
  2149. end
  2150. end
  2151. object KexSheet: TTabSheet
  2152. Tag = 2
  2153. HelpType = htKeyword
  2154. HelpKeyword = 'ui_login_kex'
  2155. Caption = 'Key exchange'
  2156. ImageIndex = 13
  2157. TabVisible = False
  2158. DesignSize = (
  2159. 450
  2160. 388)
  2161. object KexOptionsGroup: TGroupBox
  2162. Left = 8
  2163. Top = 2
  2164. Width = 438
  2165. Height = 280
  2166. Anchors = [akLeft, akTop, akRight]
  2167. Caption = 'Key exchange algorithm options'
  2168. TabOrder = 0
  2169. DesignSize = (
  2170. 438
  2171. 280)
  2172. object Label28: TLabel
  2173. Left = 9
  2174. Top = 22
  2175. Width = 142
  2176. Height = 15
  2177. Caption = 'Algorithm selection &policy:'
  2178. FocusControl = KexListBox
  2179. end
  2180. object KexListBox: TListBox
  2181. Left = 9
  2182. Top = 40
  2183. Width = 334
  2184. Height = 207
  2185. Anchors = [akLeft, akTop, akRight, akBottom]
  2186. DragMode = dmAutomatic
  2187. ItemHeight = 15
  2188. TabOrder = 0
  2189. OnClick = DataChange
  2190. OnDragDrop = AlgListBoxDragDrop
  2191. OnDragOver = AlgListBoxDragOver
  2192. OnStartDrag = AlgListBoxStartDrag
  2193. end
  2194. object KexUpButton: TButton
  2195. Left = 349
  2196. Top = 40
  2197. Width = 80
  2198. Height = 25
  2199. Anchors = [akTop, akRight]
  2200. Caption = '&Up'
  2201. TabOrder = 1
  2202. OnClick = KexButtonClick
  2203. end
  2204. object KexDownButton: TButton
  2205. Left = 349
  2206. Top = 68
  2207. Width = 80
  2208. Height = 25
  2209. Anchors = [akTop, akRight]
  2210. Caption = '&Down'
  2211. TabOrder = 2
  2212. OnClick = KexButtonClick
  2213. end
  2214. object AuthGSSAPIKEXCheck: TCheckBox
  2215. Left = 11
  2216. Top = 253
  2217. Width = 285
  2218. Height = 17
  2219. Anchors = [akLeft, akBottom]
  2220. Caption = 'Attempt &GSSAPI key exchange'
  2221. TabOrder = 3
  2222. OnClick = DataChange
  2223. end
  2224. end
  2225. object KexReexchangeGroup: TGroupBox
  2226. Left = 8
  2227. Top = 288
  2228. Width = 438
  2229. Height = 81
  2230. Anchors = [akLeft, akTop, akRight]
  2231. Caption = 'Options controlling key re-exchange'
  2232. TabOrder = 1
  2233. DesignSize = (
  2234. 438
  2235. 81)
  2236. object Label31: TLabel
  2237. Left = 9
  2238. Top = 22
  2239. Width = 218
  2240. Height = 15
  2241. Caption = 'Max &minutes before rekey (0 for no limit):'
  2242. Color = clBtnFace
  2243. FocusControl = RekeyTimeEdit
  2244. ParentColor = False
  2245. end
  2246. object Label32: TLabel
  2247. Left = 9
  2248. Top = 51
  2249. Width = 198
  2250. Height = 15
  2251. Caption = 'Ma&x data before rekey (0 for no limit):'
  2252. Color = clBtnFace
  2253. FocusControl = RekeyDataEdit
  2254. ParentColor = False
  2255. end
  2256. object RekeyTimeEdit: TUpDownEdit
  2257. Left = 349
  2258. Top = 19
  2259. Width = 80
  2260. Height = 23
  2261. Alignment = taRightJustify
  2262. MaxValue = 1440.000000000000000000
  2263. Anchors = [akTop, akRight]
  2264. MaxLength = 4
  2265. TabOrder = 0
  2266. OnChange = DataChange
  2267. end
  2268. object RekeyDataEdit: TEdit
  2269. Left = 349
  2270. Top = 48
  2271. Width = 80
  2272. Height = 23
  2273. Anchors = [akTop, akRight]
  2274. MaxLength = 10
  2275. TabOrder = 1
  2276. OnChange = DataChange
  2277. end
  2278. end
  2279. end
  2280. object AuthSheet: TTabSheet
  2281. Tag = 2
  2282. HelpType = htKeyword
  2283. HelpKeyword = 'ui_login_authentication'
  2284. Caption = 'Authentication'
  2285. ImageIndex = 10
  2286. TabVisible = False
  2287. DesignSize = (
  2288. 450
  2289. 388)
  2290. object SshNoUserAuthCheck: TCheckBox
  2291. Left = 10
  2292. Top = 2
  2293. Width = 436
  2294. Height = 17
  2295. Anchors = [akLeft, akTop, akRight]
  2296. Caption = '&Bypass authentication entirely'
  2297. TabOrder = 0
  2298. OnClick = DataChange
  2299. end
  2300. object AuthenticationGroup: TGroupBox
  2301. Left = 8
  2302. Top = 25
  2303. Width = 438
  2304. Height = 95
  2305. Anchors = [akLeft, akTop, akRight]
  2306. Caption = 'Authentication options'
  2307. TabOrder = 1
  2308. DesignSize = (
  2309. 438
  2310. 95)
  2311. object TryAgentCheck: TCheckBox
  2312. Left = 11
  2313. Top = 22
  2314. Width = 416
  2315. Height = 17
  2316. Anchors = [akLeft, akTop, akRight]
  2317. Caption = 'Attempt authentication using &Pageant'
  2318. TabOrder = 0
  2319. OnClick = DataChange
  2320. end
  2321. object AuthKICheck: TCheckBox
  2322. Left = 11
  2323. Top = 45
  2324. Width = 416
  2325. Height = 17
  2326. Anchors = [akLeft, akTop, akRight]
  2327. Caption = 'Attempt '#39'keyboard-&interactive'#39' authentication'
  2328. TabOrder = 1
  2329. OnClick = DataChange
  2330. end
  2331. object AuthKIPasswordCheck: TCheckBox
  2332. Left = 26
  2333. Top = 68
  2334. Width = 401
  2335. Height = 17
  2336. Anchors = [akLeft, akTop, akRight]
  2337. Caption = 'Respond with a pass&word to the first prompt'
  2338. TabOrder = 2
  2339. OnClick = DataChange
  2340. end
  2341. end
  2342. object AuthenticationParamsGroup: TGroupBox
  2343. Left = 8
  2344. Top = 126
  2345. Width = 438
  2346. Height = 172
  2347. Anchors = [akLeft, akTop, akRight]
  2348. Caption = 'Authentication parameters'
  2349. TabOrder = 2
  2350. DesignSize = (
  2351. 438
  2352. 172)
  2353. object PrivateKeyLabel: TLabel
  2354. Left = 9
  2355. Top = 45
  2356. Width = 79
  2357. Height = 15
  2358. Caption = 'Private &key file:'
  2359. FocusControl = PrivateKeyEdit3
  2360. end
  2361. object DetachedCertificateLabel: TLabel
  2362. Left = 9
  2363. Top = 121
  2364. Width = 198
  2365. Height = 15
  2366. Caption = 'Certificate to &use with the private key:'
  2367. FocusControl = DetachedCertificateEdit
  2368. end
  2369. object AgentFwdCheck: TCheckBox
  2370. Left = 11
  2371. Top = 22
  2372. Width = 416
  2373. Height = 17
  2374. Anchors = [akLeft, akTop, akRight]
  2375. Caption = 'Allow agent &forwarding'
  2376. TabOrder = 0
  2377. OnClick = DataChange
  2378. end
  2379. object PrivateKeyEdit3: TFilenameEdit
  2380. Left = 9
  2381. Top = 63
  2382. Width = 418
  2383. Height = 21
  2384. AcceptFiles = True
  2385. OnBeforeDialog = PathEditBeforeDialog
  2386. OnAfterDialog = PrivateKeyEdit3AfterDialog
  2387. Filter =
  2388. 'PuTTY Private Key Files (*.ppk)|*.ppk|All Private Key Files (*.p' +
  2389. 'pk;*.pem;*.key;id_*)|*.ppk;*.pem;*.key;id_*|All Files (*.*)|*.*'
  2390. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  2391. DialogTitle = 'Select private key file'
  2392. ClickKey = 16397
  2393. Anchors = [akLeft, akTop, akRight]
  2394. TabOrder = 1
  2395. Text = 'PrivateKeyEdit3'
  2396. OnChange = DataChange
  2397. end
  2398. object PrivateKeyToolsButton: TButton
  2399. Left = 215
  2400. Top = 90
  2401. Width = 94
  2402. Height = 25
  2403. Caption = '&Tools'
  2404. TabOrder = 3
  2405. OnClick = PrivateKeyToolsButtonClick
  2406. end
  2407. object PrivateKeyViewButton: TButton
  2408. Left = 9
  2409. Top = 90
  2410. Width = 200
  2411. Height = 25
  2412. Caption = '&Display Public Key'
  2413. TabOrder = 2
  2414. OnClick = PrivateKeyViewButtonClick
  2415. end
  2416. object DetachedCertificateEdit: TFilenameEdit
  2417. Left = 9
  2418. Top = 139
  2419. Width = 418
  2420. Height = 21
  2421. AcceptFiles = True
  2422. OnBeforeDialog = PathEditBeforeDialog
  2423. OnAfterDialog = PrivateKeyEdit3AfterDialog
  2424. Filter = 'Public key files (*.pub)|*.pub|All Files (*.*)|*.*'
  2425. DialogOptions = [ofReadOnly, ofPathMustExist, ofFileMustExist]
  2426. DialogTitle = 'Select certificate file'
  2427. ClickKey = 16397
  2428. Anchors = [akLeft, akTop, akRight]
  2429. TabOrder = 4
  2430. Text = 'DetachedCertificateEdit'
  2431. OnChange = DataChange
  2432. end
  2433. end
  2434. object GSSAPIGroup: TGroupBox
  2435. Left = 8
  2436. Top = 304
  2437. Width = 438
  2438. Height = 72
  2439. Anchors = [akLeft, akTop, akRight]
  2440. Caption = 'GSSAPI'
  2441. TabOrder = 3
  2442. DesignSize = (
  2443. 438
  2444. 72)
  2445. object AuthGSSAPICheck3: TCheckBox
  2446. Left = 11
  2447. Top = 22
  2448. Width = 416
  2449. Height = 17
  2450. Anchors = [akLeft, akTop, akRight]
  2451. Caption = 'Attempt &GSSAPI authentication'
  2452. TabOrder = 0
  2453. OnClick = AuthGSSAPICheck3Click
  2454. end
  2455. object GSSAPIFwdTGTCheck: TCheckBox
  2456. Left = 26
  2457. Top = 45
  2458. Width = 401
  2459. Height = 17
  2460. Anchors = [akLeft, akTop, akRight]
  2461. Caption = 'Allow GSSAPI &credential delegation'
  2462. TabOrder = 1
  2463. OnClick = AuthGSSAPICheck3Click
  2464. end
  2465. end
  2466. end
  2467. object BugsSheet: TTabSheet
  2468. Tag = 2
  2469. HelpType = htKeyword
  2470. HelpKeyword = 'ui_login_bugs'
  2471. Caption = 'Bugs'
  2472. ImageIndex = 9
  2473. TabVisible = False
  2474. DesignSize = (
  2475. 450
  2476. 388)
  2477. object BugsGroupBox: TGroupBox
  2478. Left = 8
  2479. Top = 2
  2480. Width = 438
  2481. Height = 257
  2482. Anchors = [akLeft, akTop, akRight]
  2483. Caption = 'Detection of known bugs in SSH servers'
  2484. TabOrder = 0
  2485. DesignSize = (
  2486. 438
  2487. 257)
  2488. object BugHMAC2Label: TLabel
  2489. Left = 9
  2490. Top = 80
  2491. Width = 164
  2492. Height = 15
  2493. Caption = 'Miscomputes SSH H&MAC keys:'
  2494. FocusControl = BugHMAC2Combo
  2495. end
  2496. object BugDeriveKey2Label: TLabel
  2497. Left = 9
  2498. Top = 109
  2499. Width = 185
  2500. Height = 15
  2501. Caption = 'Miscomputes SSH &encryption keys:'
  2502. FocusControl = BugDeriveKey2Combo
  2503. end
  2504. object BugRSAPad2Label: TLabel
  2505. Left = 9
  2506. Top = 138
  2507. Width = 217
  2508. Height = 15
  2509. Caption = 'Requires &padding on SSH RSA signatures:'
  2510. FocusControl = BugRSAPad2Combo
  2511. end
  2512. object BugPKSessID2Label: TLabel
  2513. Left = 9
  2514. Top = 167
  2515. Width = 201
  2516. Height = 15
  2517. Caption = 'Misuses the sessio&n ID in SSH PK auth:'
  2518. FocusControl = BugPKSessID2Combo
  2519. end
  2520. object BugRekey2Label: TLabel
  2521. Left = 9
  2522. Top = 196
  2523. Width = 191
  2524. Height = 15
  2525. Caption = 'Handles SSH &key re-exchange badly:'
  2526. FocusControl = BugRekey2Combo
  2527. end
  2528. object BugMaxPkt2Label: TLabel
  2529. Left = 9
  2530. Top = 225
  2531. Width = 183
  2532. Height = 15
  2533. Caption = 'Ignores SSH ma&ximum packet size:'
  2534. FocusControl = BugMaxPkt2Combo
  2535. end
  2536. object BugIgnore2Label: TLabel
  2537. Left = 9
  2538. Top = 22
  2539. Width = 174
  2540. Height = 15
  2541. Caption = 'Chokes on SSH i&gnore messages:'
  2542. FocusControl = BugIgnore2Combo
  2543. end
  2544. object BugWinAdjLabel: TLabel
  2545. Left = 9
  2546. Top = 51
  2547. Width = 224
  2548. Height = 15
  2549. Caption = 'Chokes on WinSCP'#39's SSH '#39'&winadj'#39' requests'
  2550. FocusControl = BugWinAdjCombo
  2551. end
  2552. object BugHMAC2Combo: TComboBox
  2553. Left = 362
  2554. Top = 77
  2555. Width = 67
  2556. Height = 23
  2557. Style = csDropDownList
  2558. Anchors = [akTop, akRight]
  2559. TabOrder = 2
  2560. OnChange = DataChange
  2561. end
  2562. object BugDeriveKey2Combo: TComboBox
  2563. Left = 362
  2564. Top = 106
  2565. Width = 67
  2566. Height = 23
  2567. Style = csDropDownList
  2568. Anchors = [akTop, akRight]
  2569. TabOrder = 3
  2570. OnChange = DataChange
  2571. end
  2572. object BugRSAPad2Combo: TComboBox
  2573. Left = 362
  2574. Top = 135
  2575. Width = 67
  2576. Height = 23
  2577. Style = csDropDownList
  2578. Anchors = [akTop, akRight]
  2579. TabOrder = 4
  2580. OnChange = DataChange
  2581. end
  2582. object BugPKSessID2Combo: TComboBox
  2583. Left = 362
  2584. Top = 164
  2585. Width = 67
  2586. Height = 23
  2587. Style = csDropDownList
  2588. Anchors = [akTop, akRight]
  2589. TabOrder = 5
  2590. OnChange = DataChange
  2591. end
  2592. object BugRekey2Combo: TComboBox
  2593. Left = 362
  2594. Top = 193
  2595. Width = 67
  2596. Height = 23
  2597. Style = csDropDownList
  2598. Anchors = [akTop, akRight]
  2599. TabOrder = 6
  2600. OnChange = DataChange
  2601. end
  2602. object BugMaxPkt2Combo: TComboBox
  2603. Left = 362
  2604. Top = 222
  2605. Width = 67
  2606. Height = 23
  2607. Style = csDropDownList
  2608. Anchors = [akTop, akRight]
  2609. TabOrder = 7
  2610. OnChange = DataChange
  2611. end
  2612. object BugIgnore2Combo: TComboBox
  2613. Left = 362
  2614. Top = 19
  2615. Width = 67
  2616. Height = 23
  2617. Style = csDropDownList
  2618. Anchors = [akTop, akRight]
  2619. TabOrder = 0
  2620. OnChange = DataChange
  2621. end
  2622. object BugWinAdjCombo: TComboBox
  2623. Left = 362
  2624. Top = 48
  2625. Width = 67
  2626. Height = 23
  2627. Style = csDropDownList
  2628. Anchors = [akTop, akRight]
  2629. TabOrder = 1
  2630. OnChange = DataChange
  2631. end
  2632. end
  2633. end
  2634. object NoteSheet: TTabSheet
  2635. HelpType = htKeyword
  2636. HelpKeyword = 'ui_login_note'
  2637. Caption = 'Note'
  2638. ImageIndex = 14
  2639. TabVisible = False
  2640. DesignSize = (
  2641. 450
  2642. 388)
  2643. object NoteGroup: TGroupBox
  2644. Left = 8
  2645. Top = 2
  2646. Width = 438
  2647. Height = 382
  2648. Anchors = [akLeft, akTop, akRight, akBottom]
  2649. Caption = 'Note'
  2650. TabOrder = 0
  2651. DesignSize = (
  2652. 438
  2653. 382)
  2654. object NoteMemo: TMemo
  2655. Left = 9
  2656. Top = 22
  2657. Width = 420
  2658. Height = 350
  2659. Anchors = [akLeft, akTop, akRight, akBottom]
  2660. MaxLength = 4000
  2661. TabOrder = 0
  2662. OnChange = DataChange
  2663. OnKeyDown = NoteMemoKeyDown
  2664. end
  2665. end
  2666. end
  2667. end
  2668. object LeftPanel: TPanel
  2669. Left = 0
  2670. Top = 0
  2671. Width = 161
  2672. Height = 398
  2673. Align = alLeft
  2674. BevelOuter = bvNone
  2675. TabOrder = 0
  2676. DesignSize = (
  2677. 161
  2678. 398)
  2679. object NavigationTree: TTreeView
  2680. Left = 8
  2681. Top = 8
  2682. Width = 151
  2683. Height = 382
  2684. Anchors = [akLeft, akTop, akRight, akBottom]
  2685. DoubleBuffered = True
  2686. HideSelection = False
  2687. HotTrack = True
  2688. Indent = 19
  2689. ParentDoubleBuffered = False
  2690. ReadOnly = True
  2691. ShowButtons = False
  2692. ShowRoot = False
  2693. TabOrder = 0
  2694. OnChange = NavigationTreeChange
  2695. OnCollapsing = NavigationTreeCollapsing
  2696. Items.NodeData = {
  2697. 030400000036000000000000000000000000000000FFFFFFFF00000000000000
  2698. 0008000000010C45006E007600690072006F006E006D0065006E007400580036
  2699. 000000000000000000000000000000FFFFFFFF00000000000000000000000001
  2700. 0C4400690072006500630074006F007200690065007300580036000000000000
  2701. 000000000000000000FFFFFFFF000000000000000000000000010C5200650063
  2702. 00790063006C0065002000620069006E005800340000000000000000000000FF
  2703. FFFFFFFFFFFFFF000000000000000000000000010B45006E0063007200790070
  2704. 00740069006F006E00580028000000000000000000000000000000FFFFFFFF00
  2705. 0000000000000000000000010553004600540050005800260000000000000000
  2706. 00000000000000FFFFFFFF000000000000000000000000010453004300500058
  2707. 00260000000000000000000000FFFFFFFFFFFFFFFF0000000000000000000000
  2708. 000104460054005000580024000000000000000000000000000000FFFFFFFF00
  2709. 000000000000000000000001035300330058002C0000000000000000000000FF
  2710. FFFFFFFFFFFFFF00000000000000000000000001075700650062004400410056
  2711. 00580034000000000000000000000000000000FFFFFFFF000000000000000002
  2712. 000000010B43006F006E006E0065006300740069006F006E0058002A00000000
  2713. 0000000000000000000000FFFFFFFF0000000000000000000000000106500072
  2714. 006F007800790058002C000000000000000000000000000000FFFFFFFF000000
  2715. 0000000000000000000107540075006E006E0065006C00580026000000000000
  2716. 000000000000000000FFFFFFFF00000000000000000300000001045300530048
  2717. 00580038000000000000000000000000000000FFFFFFFF000000000000000000
  2718. 000000010D4B00650078002000650078006300680061006E006700650058003C
  2719. 000000000000000000000000000000FFFFFFFF00000000000000000000000001
  2720. 0F410075007400680065006E007400690063006100740069006F006E00580028
  2721. 000000000000000000000000000000FFFFFFFF00000000000000000000000001
  2722. 054200750067007300580028000000000000000000000000000000FFFFFFFF00
  2723. 000000000000000000000001054E006F00740065005800}
  2724. end
  2725. end
  2726. end
  2727. object OKBtn: TButton
  2728. Left = 359
  2729. Top = 396
  2730. Width = 80
  2731. Height = 25
  2732. Anchors = [akRight, akBottom]
  2733. Caption = 'OK'
  2734. Default = True
  2735. ModalResult = 1
  2736. TabOrder = 1
  2737. end
  2738. object CancelBtn: TButton
  2739. Left = 445
  2740. Top = 396
  2741. Width = 80
  2742. Height = 25
  2743. Anchors = [akRight, akBottom]
  2744. Cancel = True
  2745. Caption = 'Cancel'
  2746. ModalResult = 2
  2747. TabOrder = 2
  2748. end
  2749. object HelpButton: TButton
  2750. Left = 531
  2751. Top = 396
  2752. Width = 80
  2753. Height = 25
  2754. Anchors = [akRight, akBottom]
  2755. Caption = '&Help'
  2756. TabOrder = 3
  2757. OnClick = HelpButtonClick
  2758. end
  2759. object ColorButton: TButton
  2760. Left = 8
  2761. Top = 396
  2762. Width = 80
  2763. Height = 25
  2764. Anchors = [akLeft, akBottom]
  2765. Caption = '&Color'
  2766. TabOrder = 4
  2767. OnClick = ColorButtonClick
  2768. end
  2769. object ColorImageList: TImageList
  2770. AllocBy = 1
  2771. Left = 36
  2772. Top = 289
  2773. Bitmap = {
  2774. 494C010101000400500010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2775. 0000000000003600000028000000400000001000000001002000000000000010
  2776. 0000000000000000000000000000000000000000000000000000000000000000
  2777. 0000000000000000000000000000000000000000000000000000000000000000
  2778. 0000000000000000000000000000000000000000000000000000000000000000
  2779. 0000000000000000000000000000000000000000000000000000000000000000
  2780. 0000000000000000000000000000000000000000000000000000000000000000
  2781. 0000000000000000000000000000000000000000000000000000000000000000
  2782. 0000000000000000000000000000000000000000000000000000000000000000
  2783. 0000000000000000000000000000000000000000000000000000000000000000
  2784. 0000000000000000000000000000000000000000000000000000000000000000
  2785. 00004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2786. 3500000000000000000000000000000000000000000000000000000000000000
  2787. 0000000000000000000000000000000000000000000000000000000000000000
  2788. 0000000000000000000000000000000000000000000000000000000000000000
  2789. 0000000000000000000000000000000000000000000000000000000000000000
  2790. 0000000000000000000000000000000000000000000000000000000000000000
  2791. 0000000000000000000000000000000000000000000000000000000000000000
  2792. 0000000000000000000000000000000000000000000000000000000000000000
  2793. 000000000000000000004B3F35004B3F35004B3F35004B3F3500000000000000
  2794. 0000000000000000000000000000000000000000000000000000000000000000
  2795. 0000000000000000000000000000000000000000000000000000000000000000
  2796. 0000000000000000000000000000000000000000000000000000000000000000
  2797. 0000000000000000000000000000000000000000000000000000000000000000
  2798. 0000000000000000000000000000000000000000000000000000000000000000
  2799. 0000000000000000000000000000000000000000000000000000000000000000
  2800. 00000000000000000000000000000000000000000000645951004B3F35004B3F
  2801. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2802. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2803. 0000000000000000000000000000000000000000000000000000000000000000
  2804. 0000000000000000000000000000000000000000000000000000000000000000
  2805. 0000000000000000000000000000000000000000000000000000000000000000
  2806. 0000000000000000000000000000000000000000000000000000000000000000
  2807. 0000000000000000000000000000000000000000000000000000000000000000
  2808. 000000000000000000000000000000000000000000004B3F3500736052007360
  2809. 5200736052007360520073605200736052007360520073605200736052007360
  2810. 520073605200736052004B3F3500000000000000000000000000000000000000
  2811. 0000000000000000000000000000000000000000000000000000000000000000
  2812. 0000000000000000000000000000000000000000000000000000000000000000
  2813. 0000000000000000000000000000000000000000000000000000000000000000
  2814. 0000000000000000000000000000000000000000000000000000000000000000
  2815. 0000000000000000000000000000000000000000000000000000000000000000
  2816. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2817. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2818. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2819. 0000000000000000000000000000000000000000000000000000000000000000
  2820. 0000000000000000000000000000000000000000000000000000000000000000
  2821. 0000000000000000000000000000000000000000000000000000000000000000
  2822. 0000000000000000000000000000000000000000000000000000000000000000
  2823. 0000000000000000000000000000000000000000000000000000000000000000
  2824. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2825. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2826. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2827. 0000000000000000000000000000000000000000000000000000000000000000
  2828. 0000000000000000000000000000000000000000000000000000000000000000
  2829. 0000000000000000000000000000000000000000000000000000000000000000
  2830. 0000000000000000000000000000000000000000000000000000000000000000
  2831. 0000000000000000000000000000000000000000000000000000000000000000
  2832. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2833. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2834. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2835. 0000000000000000000000000000000000000000000000000000000000000000
  2836. 0000000000000000000000000000000000000000000000000000000000000000
  2837. 0000000000000000000000000000000000000000000000000000000000000000
  2838. 0000000000000000000000000000000000000000000000000000000000000000
  2839. 0000000000000000000000000000000000000000000000000000000000000000
  2840. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2841. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2842. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2843. 0000000000000000000000000000000000000000000000000000000000000000
  2844. 0000000000000000000000000000000000000000000000000000000000000000
  2845. 0000000000000000000000000000000000000000000000000000000000000000
  2846. 0000000000000000000000000000000000000000000000000000000000000000
  2847. 0000000000000000000000000000000000000000000000000000000000000000
  2848. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2849. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2850. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2851. 0000000000000000000000000000000000000000000000000000000000000000
  2852. 0000000000000000000000000000000000000000000000000000000000000000
  2853. 0000000000000000000000000000000000000000000000000000000000000000
  2854. 0000000000000000000000000000000000000000000000000000000000000000
  2855. 0000000000000000000000000000000000000000000000000000000000000000
  2856. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2857. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2858. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2859. 0000000000000000000000000000000000000000000000000000000000000000
  2860. 0000000000000000000000000000000000000000000000000000000000000000
  2861. 0000000000000000000000000000000000000000000000000000000000000000
  2862. 0000000000000000000000000000000000000000000000000000000000000000
  2863. 0000000000000000000000000000000000000000000000000000000000000000
  2864. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2865. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2866. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2867. 0000000000000000000000000000000000000000000000000000000000000000
  2868. 0000000000000000000000000000000000000000000000000000000000000000
  2869. 0000000000000000000000000000000000000000000000000000000000000000
  2870. 0000000000000000000000000000000000000000000000000000000000000000
  2871. 0000000000000000000000000000000000000000000000000000000000000000
  2872. 000000000000000000000000000000000000000000004B3F35001DE6B5001DE6
  2873. B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6B5001DE6
  2874. B5001DE6B5001DE6B5004B3F3500000000000000000000000000000000000000
  2875. 0000000000000000000000000000000000000000000000000000000000000000
  2876. 0000000000000000000000000000000000000000000000000000000000000000
  2877. 0000000000000000000000000000000000000000000000000000000000000000
  2878. 0000000000000000000000000000000000000000000000000000000000000000
  2879. 0000000000000000000000000000000000000000000000000000000000000000
  2880. 0000000000000000000000000000000000000000000062584F004B3F35004B3F
  2881. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2882. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2883. 0000000000000000000000000000000000000000000000000000000000000000
  2884. 0000000000000000000000000000000000000000000000000000000000000000
  2885. 0000000000000000000000000000000000000000000000000000000000000000
  2886. 0000000000000000000000000000000000000000000000000000000000000000
  2887. 0000000000000000000000000000000000000000000000000000000000000000
  2888. 0000000000000000000000000000000000000000000000000000000000000000
  2889. 0000000000000000000000000000000000000000000000000000000000000000
  2890. 0000000000000000000000000000000000000000000000000000000000000000
  2891. 0000000000000000000000000000000000000000000000000000000000000000
  2892. 0000000000000000000000000000000000000000000000000000000000000000
  2893. 0000000000000000000000000000000000000000000000000000000000000000
  2894. 0000000000000000000000000000000000000000000000000000000000000000
  2895. 0000000000000000000000000000000000000000000000000000000000000000
  2896. 0000000000000000000000000000000000000000000000000000000000000000
  2897. 0000000000000000000000000000000000000000000000000000000000000000
  2898. 0000000000000000000000000000000000000000000000000000000000000000
  2899. 0000000000000000000000000000000000000000000000000000000000000000
  2900. 0000000000000000000000000000000000000000000000000000000000000000
  2901. 0000000000000000000000000000000000000000000000000000000000000000
  2902. 0000000000000000000000000000000000000000000000000000000000000000
  2903. 0000000000000000000000000000000000000000000000000000000000000000
  2904. 000000000000000000000000000000000000424D3E000000000000003E000000
  2905. 2800000040000000100000000100010000000000800000000000000000000000
  2906. 000000000000000000000000FFFFFF00FFFF000000000000F00F000000000000
  2907. FC3F000000000000800100000000000080010000000000008001000000000000
  2908. 8001000000000000800100000000000080010000000000008001000000000000
  2909. 8001000000000000800100000000000080010000000000008001000000000000
  2910. FFFF000000000000FFFF00000000000000000000000000000000000000000000
  2911. 000000000000}
  2912. end
  2913. object ColorImageList120: TImageList
  2914. AllocBy = 1
  2915. Height = 20
  2916. Width = 20
  2917. Left = 132
  2918. Top = 289
  2919. Bitmap = {
  2920. 494C0101010010001C0014001400FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  2921. 0000000000003600000028000000500000001400000001002000000000000019
  2922. 0000000000000000000000000000000000000000000000000000000000000000
  2923. 0000000000000000000000000000000000000000000000000000000000000000
  2924. 0000000000000000000000000000000000000000000000000000000000000000
  2925. 0000000000000000000000000000000000000000000000000000000000000000
  2926. 0000000000000000000000000000000000000000000000000000000000000000
  2927. 0000000000000000000000000000000000000000000000000000000000000000
  2928. 0000000000000000000000000000000000000000000000000000000000000000
  2929. 0000000000000000000000000000000000000000000000000000000000000000
  2930. 0000000000000000000000000000000000000000000000000000000000000000
  2931. 0000000000000000000000000000000000000000000000000000000000000000
  2932. 0000000000000000000000000000000000000000000000000000000000000000
  2933. 00000000000062584F004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2934. 35004B3F35004B3F350062584F00000000000000000000000000000000000000
  2935. 0000000000000000000000000000000000000000000000000000000000000000
  2936. 0000000000000000000000000000000000000000000000000000000000000000
  2937. 0000000000000000000000000000000000000000000000000000000000000000
  2938. 0000000000000000000000000000000000000000000000000000000000000000
  2939. 0000000000000000000000000000000000000000000000000000000000000000
  2940. 0000000000000000000000000000000000000000000000000000000000000000
  2941. 0000000000000000000000000000000000000000000000000000000000000000
  2942. 0000000000000000000000000000000000000000000000000000000000000000
  2943. 0000000000004B3F350099816F0099816F0099816F0099816F0099816F009981
  2944. 6F0099816F0099816F004B3F3500000000000000000000000000000000000000
  2945. 0000000000000000000000000000000000000000000000000000000000000000
  2946. 0000000000000000000000000000000000000000000000000000000000000000
  2947. 0000000000000000000000000000000000000000000000000000000000000000
  2948. 0000000000000000000000000000000000000000000000000000000000000000
  2949. 0000000000000000000000000000000000000000000000000000000000000000
  2950. 0000000000000000000000000000000000000000000000000000000000000000
  2951. 0000000000000000000000000000000000000000000000000000000000000000
  2952. 0000000000000000000000000000000000000000000000000000000000000000
  2953. 00000000000062584F004B3F35004B3F35003028220030282200302822003028
  2954. 22004B3F35004B3F350062584F00000000000000000000000000000000000000
  2955. 0000000000000000000000000000000000000000000000000000000000000000
  2956. 0000000000000000000000000000000000000000000000000000000000000000
  2957. 0000000000000000000000000000000000000000000000000000000000000000
  2958. 0000000000000000000000000000000000000000000000000000000000000000
  2959. 0000000000000000000000000000000000000000000000000000000000000000
  2960. 0000000000000000000000000000000000000000000000000000000000000000
  2961. 0000000000000000000000000000000000000000000000000000000000000000
  2962. 0000000000000000000000000000000000000000000000000000000000000000
  2963. 00000000000000000000000000000000000027211C0027211C0027211C002721
  2964. 1C00000000000000000000000000000000000000000000000000000000000000
  2965. 0000000000000000000000000000000000000000000000000000000000000000
  2966. 0000000000000000000000000000000000000000000000000000000000000000
  2967. 0000000000000000000000000000000000000000000000000000000000000000
  2968. 0000000000000000000000000000000000000000000000000000000000000000
  2969. 0000000000000000000000000000000000000000000000000000000000000000
  2970. 0000000000000000000000000000000000000000000000000000000000000000
  2971. 0000000000000000000000000000000000000000000000000000000000000000
  2972. 0000000000000000000000000000000000000000000071675F004B3F35004B3F
  2973. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  2974. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F350071675F000000
  2975. 0000000000000000000000000000000000000000000000000000000000000000
  2976. 0000000000000000000000000000000000000000000000000000000000000000
  2977. 0000000000000000000000000000000000000000000000000000000000000000
  2978. 0000000000000000000000000000000000000000000000000000000000000000
  2979. 0000000000000000000000000000000000000000000000000000000000000000
  2980. 0000000000000000000000000000000000000000000000000000000000000000
  2981. 0000000000000000000000000000000000000000000000000000000000000000
  2982. 000000000000000000000000000000000000000000004B3F35008C8078008C80
  2983. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  2984. 78008C8078008C8078008C80780029BD3E0029BD3E008C8078004B3F35000000
  2985. 0000000000000000000000000000000000000000000000000000000000000000
  2986. 0000000000000000000000000000000000000000000000000000000000000000
  2987. 0000000000000000000000000000000000000000000000000000000000000000
  2988. 0000000000000000000000000000000000000000000000000000000000000000
  2989. 0000000000000000000000000000000000000000000000000000000000000000
  2990. 0000000000000000000000000000000000000000000000000000000000000000
  2991. 0000000000000000000000000000000000000000000000000000000000000000
  2992. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  2993. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  2994. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  2995. 0000000000000000000000000000000000000000000000000000000000000000
  2996. 0000000000000000000000000000000000000000000000000000000000000000
  2997. 0000000000000000000000000000000000000000000000000000000000000000
  2998. 0000000000000000000000000000000000000000000000000000000000000000
  2999. 0000000000000000000000000000000000000000000000000000000000000000
  3000. 0000000000000000000000000000000000000000000000000000000000000000
  3001. 0000000000000000000000000000000000000000000000000000000000000000
  3002. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3003. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3004. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3005. 0000000000000000000000000000000000000000000000000000000000000000
  3006. 0000000000000000000000000000000000000000000000000000000000000000
  3007. 0000000000000000000000000000000000000000000000000000000000000000
  3008. 0000000000000000000000000000000000000000000000000000000000000000
  3009. 0000000000000000000000000000000000000000000000000000000000000000
  3010. 0000000000000000000000000000000000000000000000000000000000000000
  3011. 0000000000000000000000000000000000000000000000000000000000000000
  3012. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3013. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3014. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3015. 0000000000000000000000000000000000000000000000000000000000000000
  3016. 0000000000000000000000000000000000000000000000000000000000000000
  3017. 0000000000000000000000000000000000000000000000000000000000000000
  3018. 0000000000000000000000000000000000000000000000000000000000000000
  3019. 0000000000000000000000000000000000000000000000000000000000000000
  3020. 0000000000000000000000000000000000000000000000000000000000000000
  3021. 0000000000000000000000000000000000000000000000000000000000000000
  3022. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3023. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3024. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3025. 0000000000000000000000000000000000000000000000000000000000000000
  3026. 0000000000000000000000000000000000000000000000000000000000000000
  3027. 0000000000000000000000000000000000000000000000000000000000000000
  3028. 0000000000000000000000000000000000000000000000000000000000000000
  3029. 0000000000000000000000000000000000000000000000000000000000000000
  3030. 0000000000000000000000000000000000000000000000000000000000000000
  3031. 0000000000000000000000000000000000000000000000000000000000000000
  3032. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3033. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3034. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3035. 0000000000000000000000000000000000000000000000000000000000000000
  3036. 0000000000000000000000000000000000000000000000000000000000000000
  3037. 0000000000000000000000000000000000000000000000000000000000000000
  3038. 0000000000000000000000000000000000000000000000000000000000000000
  3039. 0000000000000000000000000000000000000000000000000000000000000000
  3040. 0000000000000000000000000000000000000000000000000000000000000000
  3041. 0000000000000000000000000000000000000000000000000000000000000000
  3042. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3043. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3044. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3045. 0000000000000000000000000000000000000000000000000000000000000000
  3046. 0000000000000000000000000000000000000000000000000000000000000000
  3047. 0000000000000000000000000000000000000000000000000000000000000000
  3048. 0000000000000000000000000000000000000000000000000000000000000000
  3049. 0000000000000000000000000000000000000000000000000000000000000000
  3050. 0000000000000000000000000000000000000000000000000000000000000000
  3051. 0000000000000000000000000000000000000000000000000000000000000000
  3052. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3053. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3054. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3055. 0000000000000000000000000000000000000000000000000000000000000000
  3056. 0000000000000000000000000000000000000000000000000000000000000000
  3057. 0000000000000000000000000000000000000000000000000000000000000000
  3058. 0000000000000000000000000000000000000000000000000000000000000000
  3059. 0000000000000000000000000000000000000000000000000000000000000000
  3060. 0000000000000000000000000000000000000000000000000000000000000000
  3061. 0000000000000000000000000000000000000000000000000000000000000000
  3062. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3063. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3064. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3065. 0000000000000000000000000000000000000000000000000000000000000000
  3066. 0000000000000000000000000000000000000000000000000000000000000000
  3067. 0000000000000000000000000000000000000000000000000000000000000000
  3068. 0000000000000000000000000000000000000000000000000000000000000000
  3069. 0000000000000000000000000000000000000000000000000000000000000000
  3070. 0000000000000000000000000000000000000000000000000000000000000000
  3071. 0000000000000000000000000000000000000000000000000000000000000000
  3072. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3073. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3074. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3075. 0000000000000000000000000000000000000000000000000000000000000000
  3076. 0000000000000000000000000000000000000000000000000000000000000000
  3077. 0000000000000000000000000000000000000000000000000000000000000000
  3078. 0000000000000000000000000000000000000000000000000000000000000000
  3079. 0000000000000000000000000000000000000000000000000000000000000000
  3080. 0000000000000000000000000000000000000000000000000000000000000000
  3081. 0000000000000000000000000000000000000000000000000000000000000000
  3082. 000000000000000000000000000000000000000000004B3F3500FF00FF00FF00
  3083. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3084. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF004B3F35000000
  3085. 0000000000000000000000000000000000000000000000000000000000000000
  3086. 0000000000000000000000000000000000000000000000000000000000000000
  3087. 0000000000000000000000000000000000000000000000000000000000000000
  3088. 0000000000000000000000000000000000000000000000000000000000000000
  3089. 0000000000000000000000000000000000000000000000000000000000000000
  3090. 0000000000000000000000000000000000000000000000000000000000000000
  3091. 0000000000000000000000000000000000000000000000000000000000000000
  3092. 000000000000000000000000000000000000000000006F655D004B3F35004B3F
  3093. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3094. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35006F655D000000
  3095. 0000000000000000000000000000000000000000000000000000000000000000
  3096. 0000000000000000000000000000000000000000000000000000000000000000
  3097. 0000000000000000000000000000000000000000000000000000000000000000
  3098. 0000000000000000000000000000000000000000000000000000000000000000
  3099. 0000000000000000000000000000000000000000000000000000000000000000
  3100. 0000000000000000000000000000000000000000000000000000000000000000
  3101. 0000000000000000000000000000000000000000000000000000000000000000
  3102. 0000000000000000000000000000000000000000000000000000000000000000
  3103. 0000000000000000000000000000000000000000000000000000000000000000
  3104. 0000000000000000000000000000000000000000000000000000000000000000
  3105. 0000000000000000000000000000000000000000000000000000000000000000
  3106. 0000000000000000000000000000000000000000000000000000000000000000
  3107. 0000000000000000000000000000000000000000000000000000000000000000
  3108. 0000000000000000000000000000000000000000000000000000000000000000
  3109. 0000000000000000000000000000000000000000000000000000000000000000
  3110. 0000000000000000000000000000000000000000000000000000000000000000
  3111. 0000000000000000000000000000000000000000000000000000000000000000
  3112. 0000000000000000000000000000000000000000000000000000000000000000
  3113. 0000000000000000000000000000000000000000000000000000000000000000
  3114. 0000000000000000000000000000000000000000000000000000000000000000
  3115. 0000000000000000000000000000000000000000000000000000000000000000
  3116. 0000000000000000000000000000000000000000000000000000000000000000
  3117. 0000000000000000000000000000000000000000000000000000000000000000
  3118. 0000000000000000000000000000000000000000000000000000000000000000
  3119. 0000000000000000000000000000000000000000000000000000000000000000
  3120. 0000000000000000000000000000000000000000000000000000000000000000
  3121. 0000000000000000000000000000000000000000000000000000000000000000
  3122. 000000000000000000000000000000000000424D3E000000000000003E000000
  3123. 2800000050000000140000000100010000000000F00000000000000000000000
  3124. 000000000000000000000000FFFFFF00FFFFF0000000000000000000F801F000
  3125. 0000000000000000F801F0000000000000000000F801F0000000000000000000
  3126. FF0FF00000000000000000008000100000000000000000008000100000000000
  3127. 0000000080001000000000000000000080001000000000000000000080001000
  3128. 0000000000000000800010000000000000000000800010000000000000000000
  3129. 8000100000000000000000008000100000000000000000008000100000000000
  3130. 0000000080001000000000000000000080001000000000000000000080001000
  3131. 0000000000000000FFFFF0000000000000000000FFFFF0000000000000000000
  3132. 00000000000000000000000000000000000000000000}
  3133. end
  3134. object ColorImageList144: TImageList
  3135. AllocBy = 1
  3136. Height = 24
  3137. Width = 24
  3138. Left = 36
  3139. Top = 337
  3140. Bitmap = {
  3141. 494C010101006800740018001800FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  3142. 0000000000003600000028000000600000001800000001002000000000000024
  3143. 0000000000000000000000000000000000000000000000000000000000000000
  3144. 0000000000000000000000000000000000000000000000000000000000000000
  3145. 0000000000000000000000000000000000000000000000000000000000000000
  3146. 0000000000000000000000000000000000000000000000000000000000000000
  3147. 0000000000000000000000000000000000000000000000000000000000000000
  3148. 0000000000000000000000000000000000000000000000000000000000000000
  3149. 0000000000000000000000000000000000000000000000000000000000000000
  3150. 0000000000000000000000000000000000000000000000000000000000000000
  3151. 0000000000000000000000000000000000000000000000000000000000000000
  3152. 0000000000000000000000000000000000000000000000000000000000000000
  3153. 0000000000000000000000000000000000000000000000000000000000000000
  3154. 0000000000000000000000000000000000000000000000000000000000000000
  3155. 0000000000000000000000000000000000000000000000000000000000000000
  3156. 0000000000000000000062584F004B3F35004B3F35004B3F35004B3F35004B3F
  3157. 35004B3F35004B3F35004B3F35004B3F35004B3F350062584F00000000000000
  3158. 0000000000000000000000000000000000000000000000000000000000000000
  3159. 0000000000000000000000000000000000000000000000000000000000000000
  3160. 0000000000000000000000000000000000000000000000000000000000000000
  3161. 0000000000000000000000000000000000000000000000000000000000000000
  3162. 0000000000000000000000000000000000000000000000000000000000000000
  3163. 0000000000000000000000000000000000000000000000000000000000000000
  3164. 0000000000000000000000000000000000000000000000000000000000000000
  3165. 0000000000000000000000000000000000000000000000000000000000000000
  3166. 0000000000000000000000000000000000000000000000000000000000000000
  3167. 0000000000000000000000000000000000000000000000000000000000000000
  3168. 000000000000000000004B3F350099816F0099816F0099816F0099816F009981
  3169. 6F0099816F0099816F0099816F0099816F0099816F004B3F3500000000000000
  3170. 0000000000000000000000000000000000000000000000000000000000000000
  3171. 0000000000000000000000000000000000000000000000000000000000000000
  3172. 0000000000000000000000000000000000000000000000000000000000000000
  3173. 0000000000000000000000000000000000000000000000000000000000000000
  3174. 0000000000000000000000000000000000000000000000000000000000000000
  3175. 0000000000000000000000000000000000000000000000000000000000000000
  3176. 0000000000000000000000000000000000000000000000000000000000000000
  3177. 0000000000000000000000000000000000000000000000000000000000000000
  3178. 0000000000000000000000000000000000000000000000000000000000000000
  3179. 0000000000000000000000000000000000000000000000000000000000000000
  3180. 000000000000000000004B3F35007360520073605200736052004B3F35004B3F
  3181. 35004B3F35004B3F35007360520073605200736052004B3F3500000000000000
  3182. 0000000000000000000000000000000000000000000000000000000000000000
  3183. 0000000000000000000000000000000000000000000000000000000000000000
  3184. 0000000000000000000000000000000000000000000000000000000000000000
  3185. 0000000000000000000000000000000000000000000000000000000000000000
  3186. 0000000000000000000000000000000000000000000000000000000000000000
  3187. 0000000000000000000000000000000000000000000000000000000000000000
  3188. 0000000000000000000000000000000000000000000000000000000000000000
  3189. 0000000000000000000000000000000000000000000000000000000000000000
  3190. 0000000000000000000000000000000000000000000000000000000000000000
  3191. 0000000000000000000000000000000000000000000000000000000000000000
  3192. 0000000000000000000062584F004B3F35004B3F35004B3F350042372F004237
  3193. 2F0042372F0042372F004B3F35004B3F35004B3F350062584F00000000000000
  3194. 0000000000000000000000000000000000000000000000000000000000000000
  3195. 0000000000000000000000000000000000000000000000000000000000000000
  3196. 0000000000000000000000000000000000000000000000000000000000000000
  3197. 0000000000000000000000000000000000000000000000000000000000000000
  3198. 0000000000000000000000000000000000000000000000000000000000000000
  3199. 0000000000000000000000000000000000000000000000000000000000000000
  3200. 0000000000000000000000000000000000000000000000000000000000000000
  3201. 0000000000000000000000000000000000000000000000000000000000000000
  3202. 0000000000000000000000000000000000000000000000000000000000000000
  3203. 0000000000000000000000000000000000000000000000000000000000000000
  3204. 0000000000000000000000000000000000000000000000000000302822003028
  3205. 2200302822003028220000000000000000000000000000000000000000000000
  3206. 0000000000000000000000000000000000000000000000000000000000000000
  3207. 0000000000000000000000000000000000000000000000000000000000000000
  3208. 0000000000000000000000000000000000000000000000000000000000000000
  3209. 0000000000000000000000000000000000000000000000000000000000000000
  3210. 0000000000000000000000000000000000000000000000000000000000000000
  3211. 0000000000000000000000000000000000000000000000000000000000000000
  3212. 0000000000000000000000000000000000000000000000000000000000000000
  3213. 0000000000000000000000000000000000000000000000000000000000000000
  3214. 0000000000000000000000000000000000000000000000000000000000000000
  3215. 00000000000000000000000000000000000000000000746A63004B3F35004B3F
  3216. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3217. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3218. 35004B3F35004B3F3500746A6300000000000000000000000000000000000000
  3219. 0000000000000000000000000000000000000000000000000000000000000000
  3220. 0000000000000000000000000000000000000000000000000000000000000000
  3221. 0000000000000000000000000000000000000000000000000000000000000000
  3222. 0000000000000000000000000000000000000000000000000000000000000000
  3223. 0000000000000000000000000000000000000000000000000000000000000000
  3224. 0000000000000000000000000000000000000000000000000000000000000000
  3225. 0000000000000000000000000000000000000000000000000000000000000000
  3226. 0000000000000000000000000000000000000000000000000000000000000000
  3227. 000000000000000000000000000000000000000000004B3F35004E4238004E42
  3228. 38004E4238004E4238004E4238004E4238004E4238004E4238004E4238004E42
  3229. 38004E4238004E4238004E4238004E4238004E4238004E4238004E42380029BD
  3230. 3E0029BD3E004E4238004B3F3500000000000000000000000000000000000000
  3231. 0000000000000000000000000000000000000000000000000000000000000000
  3232. 0000000000000000000000000000000000000000000000000000000000000000
  3233. 0000000000000000000000000000000000000000000000000000000000000000
  3234. 0000000000000000000000000000000000000000000000000000000000000000
  3235. 0000000000000000000000000000000000000000000000000000000000000000
  3236. 0000000000000000000000000000000000000000000000000000000000000000
  3237. 0000000000000000000000000000000000000000000000000000000000000000
  3238. 0000000000000000000000000000000000000000000000000000000000000000
  3239. 000000000000000000000000000000000000000000004B3F350051443B008C80
  3240. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  3241. 78008C8078008C8078008C8078008C8078008C8078008C8078008C8078008C80
  3242. 78008C80780051443B004B3F3500000000000000000000000000000000000000
  3243. 0000000000000000000000000000000000000000000000000000000000000000
  3244. 0000000000000000000000000000000000000000000000000000000000000000
  3245. 0000000000000000000000000000000000000000000000000000000000000000
  3246. 0000000000000000000000000000000000000000000000000000000000000000
  3247. 0000000000000000000000000000000000000000000000000000000000000000
  3248. 0000000000000000000000000000000000000000000000000000000000000000
  3249. 0000000000000000000000000000000000000000000000000000000000000000
  3250. 0000000000000000000000000000000000000000000000000000000000000000
  3251. 000000000000000000000000000000000000000000004B3F350055473D00FF00
  3252. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3253. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3254. FF00FF00FF0055473D004B3F3500000000000000000000000000000000000000
  3255. 0000000000000000000000000000000000000000000000000000000000000000
  3256. 0000000000000000000000000000000000000000000000000000000000000000
  3257. 0000000000000000000000000000000000000000000000000000000000000000
  3258. 0000000000000000000000000000000000000000000000000000000000000000
  3259. 0000000000000000000000000000000000000000000000000000000000000000
  3260. 0000000000000000000000000000000000000000000000000000000000000000
  3261. 0000000000000000000000000000000000000000000000000000000000000000
  3262. 0000000000000000000000000000000000000000000000000000000000000000
  3263. 000000000000000000000000000000000000000000004B3F3500584A3F00FF00
  3264. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3265. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3266. FF00FF00FF00584A3F004B3F3500000000000000000000000000000000000000
  3267. 0000000000000000000000000000000000000000000000000000000000000000
  3268. 0000000000000000000000000000000000000000000000000000000000000000
  3269. 0000000000000000000000000000000000000000000000000000000000000000
  3270. 0000000000000000000000000000000000000000000000000000000000000000
  3271. 0000000000000000000000000000000000000000000000000000000000000000
  3272. 0000000000000000000000000000000000000000000000000000000000000000
  3273. 0000000000000000000000000000000000000000000000000000000000000000
  3274. 0000000000000000000000000000000000000000000000000000000000000000
  3275. 000000000000000000000000000000000000000000004B3F35005B4D4200FF00
  3276. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3277. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3278. FF00FF00FF005B4D42004B3F3500000000000000000000000000000000000000
  3279. 0000000000000000000000000000000000000000000000000000000000000000
  3280. 0000000000000000000000000000000000000000000000000000000000000000
  3281. 0000000000000000000000000000000000000000000000000000000000000000
  3282. 0000000000000000000000000000000000000000000000000000000000000000
  3283. 0000000000000000000000000000000000000000000000000000000000000000
  3284. 0000000000000000000000000000000000000000000000000000000000000000
  3285. 0000000000000000000000000000000000000000000000000000000000000000
  3286. 0000000000000000000000000000000000000000000000000000000000000000
  3287. 000000000000000000000000000000000000000000004B3F35005E504400FF00
  3288. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3289. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3290. FF00FF00FF005E5044004B3F3500000000000000000000000000000000000000
  3291. 0000000000000000000000000000000000000000000000000000000000000000
  3292. 0000000000000000000000000000000000000000000000000000000000000000
  3293. 0000000000000000000000000000000000000000000000000000000000000000
  3294. 0000000000000000000000000000000000000000000000000000000000000000
  3295. 0000000000000000000000000000000000000000000000000000000000000000
  3296. 0000000000000000000000000000000000000000000000000000000000000000
  3297. 0000000000000000000000000000000000000000000000000000000000000000
  3298. 0000000000000000000000000000000000000000000000000000000000000000
  3299. 000000000000000000000000000000000000000000004B3F350062534700FF00
  3300. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3301. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3302. FF00FF00FF00625347004B3F3500000000000000000000000000000000000000
  3303. 0000000000000000000000000000000000000000000000000000000000000000
  3304. 0000000000000000000000000000000000000000000000000000000000000000
  3305. 0000000000000000000000000000000000000000000000000000000000000000
  3306. 0000000000000000000000000000000000000000000000000000000000000000
  3307. 0000000000000000000000000000000000000000000000000000000000000000
  3308. 0000000000000000000000000000000000000000000000000000000000000000
  3309. 0000000000000000000000000000000000000000000000000000000000000000
  3310. 0000000000000000000000000000000000000000000000000000000000000000
  3311. 000000000000000000000000000000000000000000004B3F350065554900FF00
  3312. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3313. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3314. FF00FF00FF00655549004B3F3500000000000000000000000000000000000000
  3315. 0000000000000000000000000000000000000000000000000000000000000000
  3316. 0000000000000000000000000000000000000000000000000000000000000000
  3317. 0000000000000000000000000000000000000000000000000000000000000000
  3318. 0000000000000000000000000000000000000000000000000000000000000000
  3319. 0000000000000000000000000000000000000000000000000000000000000000
  3320. 0000000000000000000000000000000000000000000000000000000000000000
  3321. 0000000000000000000000000000000000000000000000000000000000000000
  3322. 0000000000000000000000000000000000000000000000000000000000000000
  3323. 000000000000000000000000000000000000000000004B3F350069584C00FF00
  3324. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3325. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3326. FF00FF00FF0069584C004B3F3500000000000000000000000000000000000000
  3327. 0000000000000000000000000000000000000000000000000000000000000000
  3328. 0000000000000000000000000000000000000000000000000000000000000000
  3329. 0000000000000000000000000000000000000000000000000000000000000000
  3330. 0000000000000000000000000000000000000000000000000000000000000000
  3331. 0000000000000000000000000000000000000000000000000000000000000000
  3332. 0000000000000000000000000000000000000000000000000000000000000000
  3333. 0000000000000000000000000000000000000000000000000000000000000000
  3334. 0000000000000000000000000000000000000000000000000000000000000000
  3335. 000000000000000000000000000000000000000000004B3F35006C5B4E00FF00
  3336. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3337. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3338. FF00FF00FF006C5B4E004B3F3500000000000000000000000000000000000000
  3339. 0000000000000000000000000000000000000000000000000000000000000000
  3340. 0000000000000000000000000000000000000000000000000000000000000000
  3341. 0000000000000000000000000000000000000000000000000000000000000000
  3342. 0000000000000000000000000000000000000000000000000000000000000000
  3343. 0000000000000000000000000000000000000000000000000000000000000000
  3344. 0000000000000000000000000000000000000000000000000000000000000000
  3345. 0000000000000000000000000000000000000000000000000000000000000000
  3346. 0000000000000000000000000000000000000000000000000000000000000000
  3347. 000000000000000000000000000000000000000000004B3F35006F5E5100FF00
  3348. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3349. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3350. FF00FF00FF006F5E51004B3F3500000000000000000000000000000000000000
  3351. 0000000000000000000000000000000000000000000000000000000000000000
  3352. 0000000000000000000000000000000000000000000000000000000000000000
  3353. 0000000000000000000000000000000000000000000000000000000000000000
  3354. 0000000000000000000000000000000000000000000000000000000000000000
  3355. 0000000000000000000000000000000000000000000000000000000000000000
  3356. 0000000000000000000000000000000000000000000000000000000000000000
  3357. 0000000000000000000000000000000000000000000000000000000000000000
  3358. 0000000000000000000000000000000000000000000000000000000000000000
  3359. 000000000000000000000000000000000000000000004B3F350073615300FF00
  3360. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3361. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3362. FF00FF00FF00736153004B3F3500000000000000000000000000000000000000
  3363. 0000000000000000000000000000000000000000000000000000000000000000
  3364. 0000000000000000000000000000000000000000000000000000000000000000
  3365. 0000000000000000000000000000000000000000000000000000000000000000
  3366. 0000000000000000000000000000000000000000000000000000000000000000
  3367. 0000000000000000000000000000000000000000000000000000000000000000
  3368. 0000000000000000000000000000000000000000000000000000000000000000
  3369. 0000000000000000000000000000000000000000000000000000000000000000
  3370. 0000000000000000000000000000000000000000000000000000000000000000
  3371. 000000000000000000000000000000000000000000004B3F350076645600FF00
  3372. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3373. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3374. FF00FF00FF00766456004B3F3500000000000000000000000000000000000000
  3375. 0000000000000000000000000000000000000000000000000000000000000000
  3376. 0000000000000000000000000000000000000000000000000000000000000000
  3377. 0000000000000000000000000000000000000000000000000000000000000000
  3378. 0000000000000000000000000000000000000000000000000000000000000000
  3379. 0000000000000000000000000000000000000000000000000000000000000000
  3380. 0000000000000000000000000000000000000000000000000000000000000000
  3381. 0000000000000000000000000000000000000000000000000000000000000000
  3382. 0000000000000000000000000000000000000000000000000000000000000000
  3383. 000000000000000000000000000000000000000000004B3F350079665800855D
  3384. 6700855D6700855D6700855D6700855D6700855D6700855D6700855D6700855D
  3385. 6700855D6700855D6700855D6700855D6700855D6700855D6700855D6700855D
  3386. 6700855D6700796658004B3F3500000000000000000000000000000000000000
  3387. 0000000000000000000000000000000000000000000000000000000000000000
  3388. 0000000000000000000000000000000000000000000000000000000000000000
  3389. 0000000000000000000000000000000000000000000000000000000000000000
  3390. 0000000000000000000000000000000000000000000000000000000000000000
  3391. 0000000000000000000000000000000000000000000000000000000000000000
  3392. 0000000000000000000000000000000000000000000000000000000000000000
  3393. 0000000000000000000000000000000000000000000000000000000000000000
  3394. 0000000000000000000000000000000000000000000000000000000000000000
  3395. 00000000000000000000000000000000000000000000726961004F4338004F43
  3396. 38004F4338004F4338004F4338004F4338004F4338004F4338004F4338004F43
  3397. 38004F4338004F4338004F4338004F4338004F4338004F4338004F4338004F43
  3398. 38004F4338004F43380072696100000000000000000000000000000000000000
  3399. 0000000000000000000000000000000000000000000000000000000000000000
  3400. 0000000000000000000000000000000000000000000000000000000000000000
  3401. 0000000000000000000000000000000000000000000000000000000000000000
  3402. 0000000000000000000000000000000000000000000000000000000000000000
  3403. 0000000000000000000000000000000000000000000000000000000000000000
  3404. 0000000000000000000000000000000000000000000000000000000000000000
  3405. 0000000000000000000000000000000000000000000000000000000000000000
  3406. 0000000000000000000000000000000000000000000000000000000000000000
  3407. 0000000000000000000000000000000000000000000000000000000000000000
  3408. 0000000000000000000000000000000000000000000000000000000000000000
  3409. 0000000000000000000000000000000000000000000000000000000000000000
  3410. 0000000000000000000000000000000000000000000000000000000000000000
  3411. 0000000000000000000000000000000000000000000000000000000000000000
  3412. 0000000000000000000000000000000000000000000000000000000000000000
  3413. 0000000000000000000000000000000000000000000000000000000000000000
  3414. 0000000000000000000000000000000000000000000000000000000000000000
  3415. 0000000000000000000000000000000000000000000000000000000000000000
  3416. 0000000000000000000000000000000000000000000000000000000000000000
  3417. 0000000000000000000000000000000000000000000000000000000000000000
  3418. 0000000000000000000000000000000000000000000000000000000000000000
  3419. 0000000000000000000000000000000000000000000000000000000000000000
  3420. 0000000000000000000000000000000000000000000000000000000000000000
  3421. 0000000000000000000000000000000000000000000000000000000000000000
  3422. 0000000000000000000000000000000000000000000000000000000000000000
  3423. 0000000000000000000000000000000000000000000000000000000000000000
  3424. 0000000000000000000000000000000000000000000000000000000000000000
  3425. 0000000000000000000000000000000000000000000000000000000000000000
  3426. 0000000000000000000000000000000000000000000000000000000000000000
  3427. 0000000000000000000000000000000000000000000000000000000000000000
  3428. 0000000000000000000000000000000000000000000000000000000000000000
  3429. 0000000000000000000000000000000000000000000000000000000000000000
  3430. 0000000000000000000000000000000000000000000000000000000000000000
  3431. 000000000000000000000000000000000000424D3E000000000000003E000000
  3432. 2800000060000000180000000100010000000000200100000000000000000000
  3433. 000000000000000000000000FFFFFF00FFFFFF000000000000000000FC003F00
  3434. 0000000000000000FC003F000000000000000000FC003F000000000000000000
  3435. FC003F000000000000000000FFC3FF0000000000000000008000010000000000
  3436. 0000000080000100000000000000000080000100000000000000000080000100
  3437. 0000000000000000800001000000000000000000800001000000000000000000
  3438. 8000010000000000000000008000010000000000000000008000010000000000
  3439. 0000000080000100000000000000000080000100000000000000000080000100
  3440. 0000000000000000800001000000000000000000800001000000000000000000
  3441. 800001000000000000000000800001000000000000000000FFFFFF0000000000
  3442. 00000000FFFFFF00000000000000000000000000000000000000000000000000
  3443. 000000000000}
  3444. end
  3445. object ColorImageList192: TImageList
  3446. AllocBy = 1
  3447. Height = 32
  3448. Width = 32
  3449. Left = 132
  3450. Top = 337
  3451. Bitmap = {
  3452. 494C0101010060006C0020002000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  3453. 0000000000003600000028000000800000002000000001002000000000000040
  3454. 0000000000000000000000000000000000000000000000000000000000000000
  3455. 0000000000000000000000000000000000000000000000000000000000000000
  3456. 0000000000000000000000000000000000000000000000000000000000000000
  3457. 0000000000000000000000000000000000000000000000000000000000000000
  3458. 0000000000000000000000000000000000000000000000000000000000000000
  3459. 0000000000000000000000000000000000000000000000000000000000000000
  3460. 0000000000000000000000000000000000000000000000000000000000000000
  3461. 0000000000000000000000000000000000000000000000000000000000000000
  3462. 0000000000000000000000000000000000000000000000000000000000000000
  3463. 0000000000000000000000000000000000000000000000000000000000000000
  3464. 0000000000000000000000000000000000000000000000000000000000000000
  3465. 0000000000000000000000000000000000000000000000000000000000000000
  3466. 0000000000000000000000000000000000000000000000000000000000000000
  3467. 0000000000000000000000000000000000000000000000000000000000000000
  3468. 0000000000000000000000000000000000000000000000000000000000000000
  3469. 0000000000000000000000000000000000000000000000000000000000000000
  3470. 0000000000000000000000000000000000000000000000000000000000000000
  3471. 0000000000000000000000000000000000000000000000000000000000000000
  3472. 0000000000000000000000000000000000000000000000000000000000000000
  3473. 0000000000000000000000000000000000000000000000000000000000000000
  3474. 0000000000000000000000000000000000000000000000000000000000000000
  3475. 0000000000000000000000000000000000000000000000000000000000000000
  3476. 0000000000000000000000000000000000000000000000000000000000000000
  3477. 0000000000000000000000000000000000000000000000000000000000000000
  3478. 0000000000000000000000000000000000000000000000000000000000000000
  3479. 0000000000000000000000000000000000000000000000000000000000000000
  3480. 0000000000000000000000000000000000000000000000000000000000000000
  3481. 0000000000000000000000000000000000000000000000000000000000000000
  3482. 0000000000000000000000000000000000000000000000000000000000000000
  3483. 0000000000000000000000000000000000000000000000000000000000000000
  3484. 0000000000000000000000000000000000000000000000000000000000000000
  3485. 0000000000000000000000000000000000000000000000000000000000000000
  3486. 0000000000000000000000000000000000000000000000000000000000000000
  3487. 000000000000000000000000000000000000695F57004B3F35004B3F35004B3F
  3488. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3489. 35004B3F35004B3F35004B3F3500695F57000000000000000000000000000000
  3490. 0000000000000000000000000000000000000000000000000000000000000000
  3491. 0000000000000000000000000000000000000000000000000000000000000000
  3492. 0000000000000000000000000000000000000000000000000000000000000000
  3493. 0000000000000000000000000000000000000000000000000000000000000000
  3494. 0000000000000000000000000000000000000000000000000000000000000000
  3495. 0000000000000000000000000000000000000000000000000000000000000000
  3496. 0000000000000000000000000000000000000000000000000000000000000000
  3497. 0000000000000000000000000000000000000000000000000000000000000000
  3498. 0000000000000000000000000000000000000000000000000000000000000000
  3499. 0000000000000000000000000000000000000000000000000000000000000000
  3500. 0000000000000000000000000000000000000000000000000000000000000000
  3501. 0000000000000000000000000000000000000000000000000000000000000000
  3502. 0000000000000000000000000000000000000000000000000000000000000000
  3503. 0000000000000000000000000000000000004B3F350099816F0099816F009981
  3504. 6F0099816F0099816F0099816F0099816F0099816F0099816F0099816F009981
  3505. 6F0099816F0099816F0099816F004B3F35000000000000000000000000000000
  3506. 0000000000000000000000000000000000000000000000000000000000000000
  3507. 0000000000000000000000000000000000000000000000000000000000000000
  3508. 0000000000000000000000000000000000000000000000000000000000000000
  3509. 0000000000000000000000000000000000000000000000000000000000000000
  3510. 0000000000000000000000000000000000000000000000000000000000000000
  3511. 0000000000000000000000000000000000000000000000000000000000000000
  3512. 0000000000000000000000000000000000000000000000000000000000000000
  3513. 0000000000000000000000000000000000000000000000000000000000000000
  3514. 0000000000000000000000000000000000000000000000000000000000000000
  3515. 0000000000000000000000000000000000000000000000000000000000000000
  3516. 0000000000000000000000000000000000000000000000000000000000000000
  3517. 0000000000000000000000000000000000000000000000000000000000000000
  3518. 0000000000000000000000000000000000000000000000000000000000000000
  3519. 0000000000000000000000000000000000004B3F350073605200736052007360
  3520. 5200736052004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35007360
  3521. 52007360520073605200736052004B3F35000000000000000000000000000000
  3522. 0000000000000000000000000000000000000000000000000000000000000000
  3523. 0000000000000000000000000000000000000000000000000000000000000000
  3524. 0000000000000000000000000000000000000000000000000000000000000000
  3525. 0000000000000000000000000000000000000000000000000000000000000000
  3526. 0000000000000000000000000000000000000000000000000000000000000000
  3527. 0000000000000000000000000000000000000000000000000000000000000000
  3528. 0000000000000000000000000000000000000000000000000000000000000000
  3529. 0000000000000000000000000000000000000000000000000000000000000000
  3530. 0000000000000000000000000000000000000000000000000000000000000000
  3531. 0000000000000000000000000000000000000000000000000000000000000000
  3532. 0000000000000000000000000000000000000000000000000000000000000000
  3533. 0000000000000000000000000000000000000000000000000000000000000000
  3534. 0000000000000000000000000000000000000000000000000000000000000000
  3535. 000000000000000000000000000000000000695F57004B3F35004B3F35004B3F
  3536. 35004B3F3500453A3100453A3100453A3100453A3100453A3100453A31004B3F
  3537. 35004B3F35004B3F35004B3F3500695F57000000000000000000000000000000
  3538. 0000000000000000000000000000000000000000000000000000000000000000
  3539. 0000000000000000000000000000000000000000000000000000000000000000
  3540. 0000000000000000000000000000000000000000000000000000000000000000
  3541. 0000000000000000000000000000000000000000000000000000000000000000
  3542. 0000000000000000000000000000000000000000000000000000000000000000
  3543. 0000000000000000000000000000000000000000000000000000000000000000
  3544. 0000000000000000000000000000000000000000000000000000000000000000
  3545. 0000000000000000000000000000000000000000000000000000000000000000
  3546. 0000000000000000000000000000000000000000000000000000000000000000
  3547. 0000000000000000000000000000000000000000000000000000000000000000
  3548. 0000000000000000000000000000000000000000000000000000000000000000
  3549. 0000000000000000000000000000000000000000000000000000000000000000
  3550. 0000000000000000000000000000000000000000000000000000000000000000
  3551. 0000000000000000000000000000000000000000000000000000000000000000
  3552. 0000000000003930280039302800393028003930280039302800393028000000
  3553. 0000000000000000000000000000000000000000000000000000000000000000
  3554. 0000000000000000000000000000000000000000000000000000000000000000
  3555. 0000000000000000000000000000000000000000000000000000000000000000
  3556. 0000000000000000000000000000000000000000000000000000000000000000
  3557. 0000000000000000000000000000000000000000000000000000000000000000
  3558. 0000000000000000000000000000000000000000000000000000000000000000
  3559. 0000000000000000000000000000000000000000000000000000000000000000
  3560. 0000000000000000000000000000000000000000000000000000000000000000
  3561. 0000000000000000000000000000000000000000000000000000000000000000
  3562. 0000000000000000000000000000000000000000000000000000000000000000
  3563. 0000000000000000000000000000000000000000000000000000000000000000
  3564. 0000000000000000000000000000000000000000000000000000000000000000
  3565. 0000000000000000000000000000000000000000000000000000000000000000
  3566. 0000000000000000000000000000000000000000000000000000000000000000
  3567. 0000000000000000000000000000000000000000000000000000000000000000
  3568. 0000000000002D2620002D2620002D2620002D2620002D2620002D2620000000
  3569. 0000000000000000000000000000000000000000000000000000000000000000
  3570. 0000000000000000000000000000000000000000000000000000000000000000
  3571. 0000000000000000000000000000000000000000000000000000000000000000
  3572. 0000000000000000000000000000000000000000000000000000000000000000
  3573. 0000000000000000000000000000000000000000000000000000000000000000
  3574. 0000000000000000000000000000000000000000000000000000000000000000
  3575. 0000000000000000000000000000000000000000000000000000000000000000
  3576. 0000000000000000000000000000000000000000000000000000000000000000
  3577. 0000000000000000000000000000000000000000000000000000000000000000
  3578. 0000000000000000000000000000000000000000000000000000000000000000
  3579. 0000000000000000000000000000000000000000000000000000000000000000
  3580. 0000000000000000000000000000000000000000000000000000000000000000
  3581. 0000000000000000000000000000000000000000000000000000000000000000
  3582. 00000000000000000000000000000000000000000000000000008C857E004C40
  3583. 36004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3584. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3585. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3586. 35004C4036008F88810000000000000000000000000000000000000000000000
  3587. 0000000000000000000000000000000000000000000000000000000000000000
  3588. 0000000000000000000000000000000000000000000000000000000000000000
  3589. 0000000000000000000000000000000000000000000000000000000000000000
  3590. 0000000000000000000000000000000000000000000000000000000000000000
  3591. 0000000000000000000000000000000000000000000000000000000000000000
  3592. 0000000000000000000000000000000000000000000000000000000000000000
  3593. 0000000000000000000000000000000000000000000000000000000000000000
  3594. 0000000000000000000000000000000000000000000000000000000000000000
  3595. 0000000000000000000000000000000000000000000000000000000000000000
  3596. 0000000000000000000000000000000000000000000000000000000000000000
  3597. 0000000000000000000000000000000000000000000000000000000000000000
  3598. 00000000000000000000000000000000000000000000000000004C4036004D41
  3599. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3600. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3601. 38004D4138004D4138004D4138004D4138004D4138004D4138004D4138004D41
  3602. 38004D4138004C40360000000000000000000000000000000000000000000000
  3603. 0000000000000000000000000000000000000000000000000000000000000000
  3604. 0000000000000000000000000000000000000000000000000000000000000000
  3605. 0000000000000000000000000000000000000000000000000000000000000000
  3606. 0000000000000000000000000000000000000000000000000000000000000000
  3607. 0000000000000000000000000000000000000000000000000000000000000000
  3608. 0000000000000000000000000000000000000000000000000000000000000000
  3609. 0000000000000000000000000000000000000000000000000000000000000000
  3610. 0000000000000000000000000000000000000000000000000000000000000000
  3611. 0000000000000000000000000000000000000000000000000000000000000000
  3612. 0000000000000000000000000000000000000000000000000000000000000000
  3613. 0000000000000000000000000000000000000000000000000000000000000000
  3614. 00000000000000000000000000000000000000000000000000004B3F35005043
  3615. 3A0050433A0050433A0050433A0050433A0050433A0050433A0050433A005043
  3616. 3A0050433A0050433A0050433A0050433A0050433A0050433A0050433A005043
  3617. 3A0050433A0050433A0050433A0050433A0050433A0029BD3E0029BD3E0029BD
  3618. 3E0050433A004B3F350000000000000000000000000000000000000000000000
  3619. 0000000000000000000000000000000000000000000000000000000000000000
  3620. 0000000000000000000000000000000000000000000000000000000000000000
  3621. 0000000000000000000000000000000000000000000000000000000000000000
  3622. 0000000000000000000000000000000000000000000000000000000000000000
  3623. 0000000000000000000000000000000000000000000000000000000000000000
  3624. 0000000000000000000000000000000000000000000000000000000000000000
  3625. 0000000000000000000000000000000000000000000000000000000000000000
  3626. 0000000000000000000000000000000000000000000000000000000000000000
  3627. 0000000000000000000000000000000000000000000000000000000000000000
  3628. 0000000000000000000000000000000000000000000000000000000000000000
  3629. 0000000000000000000000000000000000000000000000000000000000000000
  3630. 00000000000000000000000000000000000000000000000000004B3F35005245
  3631. 3B008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3632. 78008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3633. 78008D8178008D8178008D8178008D8178008D8178008D8178008D8178008D81
  3634. 780052453B004B3F350000000000000000000000000000000000000000000000
  3635. 0000000000000000000000000000000000000000000000000000000000000000
  3636. 0000000000000000000000000000000000000000000000000000000000000000
  3637. 0000000000000000000000000000000000000000000000000000000000000000
  3638. 0000000000000000000000000000000000000000000000000000000000000000
  3639. 0000000000000000000000000000000000000000000000000000000000000000
  3640. 0000000000000000000000000000000000000000000000000000000000000000
  3641. 0000000000000000000000000000000000000000000000000000000000000000
  3642. 0000000000000000000000000000000000000000000000000000000000000000
  3643. 0000000000000000000000000000000000000000000000000000000000000000
  3644. 0000000000000000000000000000000000000000000000000000000000000000
  3645. 0000000000000000000000000000000000000000000000000000000000000000
  3646. 00000000000000000000000000000000000000000000000000004B3F35005447
  3647. 3D00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3648. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3649. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3650. FF0054473D004B3F350000000000000000000000000000000000000000000000
  3651. 0000000000000000000000000000000000000000000000000000000000000000
  3652. 0000000000000000000000000000000000000000000000000000000000000000
  3653. 0000000000000000000000000000000000000000000000000000000000000000
  3654. 0000000000000000000000000000000000000000000000000000000000000000
  3655. 0000000000000000000000000000000000000000000000000000000000000000
  3656. 0000000000000000000000000000000000000000000000000000000000000000
  3657. 0000000000000000000000000000000000000000000000000000000000000000
  3658. 0000000000000000000000000000000000000000000000000000000000000000
  3659. 0000000000000000000000000000000000000000000000000000000000000000
  3660. 0000000000000000000000000000000000000000000000000000000000000000
  3661. 0000000000000000000000000000000000000000000000000000000000000000
  3662. 00000000000000000000000000000000000000000000000000004B3F35005749
  3663. 3F00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3664. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3665. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3666. FF0057493F004B3F350000000000000000000000000000000000000000000000
  3667. 0000000000000000000000000000000000000000000000000000000000000000
  3668. 0000000000000000000000000000000000000000000000000000000000000000
  3669. 0000000000000000000000000000000000000000000000000000000000000000
  3670. 0000000000000000000000000000000000000000000000000000000000000000
  3671. 0000000000000000000000000000000000000000000000000000000000000000
  3672. 0000000000000000000000000000000000000000000000000000000000000000
  3673. 0000000000000000000000000000000000000000000000000000000000000000
  3674. 0000000000000000000000000000000000000000000000000000000000000000
  3675. 0000000000000000000000000000000000000000000000000000000000000000
  3676. 0000000000000000000000000000000000000000000000000000000000000000
  3677. 0000000000000000000000000000000000000000000000000000000000000000
  3678. 00000000000000000000000000000000000000000000000000004B3F3500594B
  3679. 4000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3680. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3681. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3682. FF00594B40004B3F350000000000000000000000000000000000000000000000
  3683. 0000000000000000000000000000000000000000000000000000000000000000
  3684. 0000000000000000000000000000000000000000000000000000000000000000
  3685. 0000000000000000000000000000000000000000000000000000000000000000
  3686. 0000000000000000000000000000000000000000000000000000000000000000
  3687. 0000000000000000000000000000000000000000000000000000000000000000
  3688. 0000000000000000000000000000000000000000000000000000000000000000
  3689. 0000000000000000000000000000000000000000000000000000000000000000
  3690. 0000000000000000000000000000000000000000000000000000000000000000
  3691. 0000000000000000000000000000000000000000000000000000000000000000
  3692. 0000000000000000000000000000000000000000000000000000000000000000
  3693. 0000000000000000000000000000000000000000000000000000000000000000
  3694. 00000000000000000000000000000000000000000000000000004B3F35005B4D
  3695. 4200FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3696. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3697. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3698. FF005B4D42004B3F350000000000000000000000000000000000000000000000
  3699. 0000000000000000000000000000000000000000000000000000000000000000
  3700. 0000000000000000000000000000000000000000000000000000000000000000
  3701. 0000000000000000000000000000000000000000000000000000000000000000
  3702. 0000000000000000000000000000000000000000000000000000000000000000
  3703. 0000000000000000000000000000000000000000000000000000000000000000
  3704. 0000000000000000000000000000000000000000000000000000000000000000
  3705. 0000000000000000000000000000000000000000000000000000000000000000
  3706. 0000000000000000000000000000000000000000000000000000000000000000
  3707. 0000000000000000000000000000000000000000000000000000000000000000
  3708. 0000000000000000000000000000000000000000000000000000000000000000
  3709. 0000000000000000000000000000000000000000000000000000000000000000
  3710. 00000000000000000000000000000000000000000000000000004B3F35005E4F
  3711. 4400FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3712. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3713. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3714. FF005E4F44004B3F350000000000000000000000000000000000000000000000
  3715. 0000000000000000000000000000000000000000000000000000000000000000
  3716. 0000000000000000000000000000000000000000000000000000000000000000
  3717. 0000000000000000000000000000000000000000000000000000000000000000
  3718. 0000000000000000000000000000000000000000000000000000000000000000
  3719. 0000000000000000000000000000000000000000000000000000000000000000
  3720. 0000000000000000000000000000000000000000000000000000000000000000
  3721. 0000000000000000000000000000000000000000000000000000000000000000
  3722. 0000000000000000000000000000000000000000000000000000000000000000
  3723. 0000000000000000000000000000000000000000000000000000000000000000
  3724. 0000000000000000000000000000000000000000000000000000000000000000
  3725. 0000000000000000000000000000000000000000000000000000000000000000
  3726. 00000000000000000000000000000000000000000000000000004B3F35006051
  3727. 4600FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3728. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3729. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3730. FF00605146004B3F350000000000000000000000000000000000000000000000
  3731. 0000000000000000000000000000000000000000000000000000000000000000
  3732. 0000000000000000000000000000000000000000000000000000000000000000
  3733. 0000000000000000000000000000000000000000000000000000000000000000
  3734. 0000000000000000000000000000000000000000000000000000000000000000
  3735. 0000000000000000000000000000000000000000000000000000000000000000
  3736. 0000000000000000000000000000000000000000000000000000000000000000
  3737. 0000000000000000000000000000000000000000000000000000000000000000
  3738. 0000000000000000000000000000000000000000000000000000000000000000
  3739. 0000000000000000000000000000000000000000000000000000000000000000
  3740. 0000000000000000000000000000000000000000000000000000000000000000
  3741. 0000000000000000000000000000000000000000000000000000000000000000
  3742. 00000000000000000000000000000000000000000000000000004B3F35006253
  3743. 4700FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3744. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3745. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3746. FF00625347004B3F350000000000000000000000000000000000000000000000
  3747. 0000000000000000000000000000000000000000000000000000000000000000
  3748. 0000000000000000000000000000000000000000000000000000000000000000
  3749. 0000000000000000000000000000000000000000000000000000000000000000
  3750. 0000000000000000000000000000000000000000000000000000000000000000
  3751. 0000000000000000000000000000000000000000000000000000000000000000
  3752. 0000000000000000000000000000000000000000000000000000000000000000
  3753. 0000000000000000000000000000000000000000000000000000000000000000
  3754. 0000000000000000000000000000000000000000000000000000000000000000
  3755. 0000000000000000000000000000000000000000000000000000000000000000
  3756. 0000000000000000000000000000000000000000000000000000000000000000
  3757. 0000000000000000000000000000000000000000000000000000000000000000
  3758. 00000000000000000000000000000000000000000000000000004B3F35006555
  3759. 4900FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3760. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3761. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3762. FF00655549004B3F350000000000000000000000000000000000000000000000
  3763. 0000000000000000000000000000000000000000000000000000000000000000
  3764. 0000000000000000000000000000000000000000000000000000000000000000
  3765. 0000000000000000000000000000000000000000000000000000000000000000
  3766. 0000000000000000000000000000000000000000000000000000000000000000
  3767. 0000000000000000000000000000000000000000000000000000000000000000
  3768. 0000000000000000000000000000000000000000000000000000000000000000
  3769. 0000000000000000000000000000000000000000000000000000000000000000
  3770. 0000000000000000000000000000000000000000000000000000000000000000
  3771. 0000000000000000000000000000000000000000000000000000000000000000
  3772. 0000000000000000000000000000000000000000000000000000000000000000
  3773. 0000000000000000000000000000000000000000000000000000000000000000
  3774. 00000000000000000000000000000000000000000000000000004B3F35006757
  3775. 4B00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3776. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3777. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3778. FF0067574B004B3F350000000000000000000000000000000000000000000000
  3779. 0000000000000000000000000000000000000000000000000000000000000000
  3780. 0000000000000000000000000000000000000000000000000000000000000000
  3781. 0000000000000000000000000000000000000000000000000000000000000000
  3782. 0000000000000000000000000000000000000000000000000000000000000000
  3783. 0000000000000000000000000000000000000000000000000000000000000000
  3784. 0000000000000000000000000000000000000000000000000000000000000000
  3785. 0000000000000000000000000000000000000000000000000000000000000000
  3786. 0000000000000000000000000000000000000000000000000000000000000000
  3787. 0000000000000000000000000000000000000000000000000000000000000000
  3788. 0000000000000000000000000000000000000000000000000000000000000000
  3789. 0000000000000000000000000000000000000000000000000000000000000000
  3790. 00000000000000000000000000000000000000000000000000004B3F35006A59
  3791. 4C00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3792. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3793. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3794. FF006A594C004B3F350000000000000000000000000000000000000000000000
  3795. 0000000000000000000000000000000000000000000000000000000000000000
  3796. 0000000000000000000000000000000000000000000000000000000000000000
  3797. 0000000000000000000000000000000000000000000000000000000000000000
  3798. 0000000000000000000000000000000000000000000000000000000000000000
  3799. 0000000000000000000000000000000000000000000000000000000000000000
  3800. 0000000000000000000000000000000000000000000000000000000000000000
  3801. 0000000000000000000000000000000000000000000000000000000000000000
  3802. 0000000000000000000000000000000000000000000000000000000000000000
  3803. 0000000000000000000000000000000000000000000000000000000000000000
  3804. 0000000000000000000000000000000000000000000000000000000000000000
  3805. 0000000000000000000000000000000000000000000000000000000000000000
  3806. 00000000000000000000000000000000000000000000000000004B3F35006C5B
  3807. 4E00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3808. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3809. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3810. FF006C5B4E004B3F350000000000000000000000000000000000000000000000
  3811. 0000000000000000000000000000000000000000000000000000000000000000
  3812. 0000000000000000000000000000000000000000000000000000000000000000
  3813. 0000000000000000000000000000000000000000000000000000000000000000
  3814. 0000000000000000000000000000000000000000000000000000000000000000
  3815. 0000000000000000000000000000000000000000000000000000000000000000
  3816. 0000000000000000000000000000000000000000000000000000000000000000
  3817. 0000000000000000000000000000000000000000000000000000000000000000
  3818. 0000000000000000000000000000000000000000000000000000000000000000
  3819. 0000000000000000000000000000000000000000000000000000000000000000
  3820. 0000000000000000000000000000000000000000000000000000000000000000
  3821. 0000000000000000000000000000000000000000000000000000000000000000
  3822. 00000000000000000000000000000000000000000000000000004B3F35006F5D
  3823. 5000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3824. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3825. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3826. FF006F5D50004B3F350000000000000000000000000000000000000000000000
  3827. 0000000000000000000000000000000000000000000000000000000000000000
  3828. 0000000000000000000000000000000000000000000000000000000000000000
  3829. 0000000000000000000000000000000000000000000000000000000000000000
  3830. 0000000000000000000000000000000000000000000000000000000000000000
  3831. 0000000000000000000000000000000000000000000000000000000000000000
  3832. 0000000000000000000000000000000000000000000000000000000000000000
  3833. 0000000000000000000000000000000000000000000000000000000000000000
  3834. 0000000000000000000000000000000000000000000000000000000000000000
  3835. 0000000000000000000000000000000000000000000000000000000000000000
  3836. 0000000000000000000000000000000000000000000000000000000000000000
  3837. 0000000000000000000000000000000000000000000000000000000000000000
  3838. 00000000000000000000000000000000000000000000000000004B3F3500715F
  3839. 5200FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3840. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3841. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3842. FF00715F52004B3F350000000000000000000000000000000000000000000000
  3843. 0000000000000000000000000000000000000000000000000000000000000000
  3844. 0000000000000000000000000000000000000000000000000000000000000000
  3845. 0000000000000000000000000000000000000000000000000000000000000000
  3846. 0000000000000000000000000000000000000000000000000000000000000000
  3847. 0000000000000000000000000000000000000000000000000000000000000000
  3848. 0000000000000000000000000000000000000000000000000000000000000000
  3849. 0000000000000000000000000000000000000000000000000000000000000000
  3850. 0000000000000000000000000000000000000000000000000000000000000000
  3851. 0000000000000000000000000000000000000000000000000000000000000000
  3852. 0000000000000000000000000000000000000000000000000000000000000000
  3853. 0000000000000000000000000000000000000000000000000000000000000000
  3854. 00000000000000000000000000000000000000000000000000004B3F35007361
  3855. 5300FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3856. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3857. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3858. FF00736153004B3F350000000000000000000000000000000000000000000000
  3859. 0000000000000000000000000000000000000000000000000000000000000000
  3860. 0000000000000000000000000000000000000000000000000000000000000000
  3861. 0000000000000000000000000000000000000000000000000000000000000000
  3862. 0000000000000000000000000000000000000000000000000000000000000000
  3863. 0000000000000000000000000000000000000000000000000000000000000000
  3864. 0000000000000000000000000000000000000000000000000000000000000000
  3865. 0000000000000000000000000000000000000000000000000000000000000000
  3866. 0000000000000000000000000000000000000000000000000000000000000000
  3867. 0000000000000000000000000000000000000000000000000000000000000000
  3868. 0000000000000000000000000000000000000000000000000000000000000000
  3869. 0000000000000000000000000000000000000000000000000000000000000000
  3870. 00000000000000000000000000000000000000000000000000004B3F35007563
  3871. 5500FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3872. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3873. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3874. FF00756355004B3F350000000000000000000000000000000000000000000000
  3875. 0000000000000000000000000000000000000000000000000000000000000000
  3876. 0000000000000000000000000000000000000000000000000000000000000000
  3877. 0000000000000000000000000000000000000000000000000000000000000000
  3878. 0000000000000000000000000000000000000000000000000000000000000000
  3879. 0000000000000000000000000000000000000000000000000000000000000000
  3880. 0000000000000000000000000000000000000000000000000000000000000000
  3881. 0000000000000000000000000000000000000000000000000000000000000000
  3882. 0000000000000000000000000000000000000000000000000000000000000000
  3883. 0000000000000000000000000000000000000000000000000000000000000000
  3884. 0000000000000000000000000000000000000000000000000000000000000000
  3885. 0000000000000000000000000000000000000000000000000000000000000000
  3886. 00000000000000000000000000000000000000000000000000004B3F35007865
  3887. 5700FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3888. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3889. FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
  3890. FF00786557004B3F350000000000000000000000000000000000000000000000
  3891. 0000000000000000000000000000000000000000000000000000000000000000
  3892. 0000000000000000000000000000000000000000000000000000000000000000
  3893. 0000000000000000000000000000000000000000000000000000000000000000
  3894. 0000000000000000000000000000000000000000000000000000000000000000
  3895. 0000000000000000000000000000000000000000000000000000000000000000
  3896. 0000000000000000000000000000000000000000000000000000000000000000
  3897. 0000000000000000000000000000000000000000000000000000000000000000
  3898. 0000000000000000000000000000000000000000000000000000000000000000
  3899. 0000000000000000000000000000000000000000000000000000000000000000
  3900. 0000000000000000000000000000000000000000000000000000000000000000
  3901. 0000000000000000000000000000000000000000000000000000000000000000
  3902. 00000000000000000000000000000000000000000000000000004C4036007A67
  3903. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3904. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3905. 59007A6759007A6759007A6759007A6759007A6759007A6759007A6759007A67
  3906. 59007A6759004C40360000000000000000000000000000000000000000000000
  3907. 0000000000000000000000000000000000000000000000000000000000000000
  3908. 0000000000000000000000000000000000000000000000000000000000000000
  3909. 0000000000000000000000000000000000000000000000000000000000000000
  3910. 0000000000000000000000000000000000000000000000000000000000000000
  3911. 0000000000000000000000000000000000000000000000000000000000000000
  3912. 0000000000000000000000000000000000000000000000000000000000000000
  3913. 0000000000000000000000000000000000000000000000000000000000000000
  3914. 0000000000000000000000000000000000000000000000000000000000000000
  3915. 0000000000000000000000000000000000000000000000000000000000000000
  3916. 0000000000000000000000000000000000000000000000000000000000000000
  3917. 0000000000000000000000000000000000000000000000000000000000000000
  3918. 00000000000000000000000000000000000000000000000000008B837D004B3F
  3919. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3920. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3921. 35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F35004B3F
  3922. 35004C4036008C857E0000000000000000000000000000000000000000000000
  3923. 0000000000000000000000000000000000000000000000000000000000000000
  3924. 0000000000000000000000000000000000000000000000000000000000000000
  3925. 0000000000000000000000000000000000000000000000000000000000000000
  3926. 0000000000000000000000000000000000000000000000000000000000000000
  3927. 0000000000000000000000000000000000000000000000000000000000000000
  3928. 0000000000000000000000000000000000000000000000000000000000000000
  3929. 0000000000000000000000000000000000000000000000000000000000000000
  3930. 0000000000000000000000000000000000000000000000000000000000000000
  3931. 0000000000000000000000000000000000000000000000000000000000000000
  3932. 0000000000000000000000000000000000000000000000000000000000000000
  3933. 0000000000000000000000000000000000000000000000000000000000000000
  3934. 0000000000000000000000000000000000000000000000000000000000000000
  3935. 0000000000000000000000000000000000000000000000000000000000000000
  3936. 0000000000000000000000000000000000000000000000000000000000000000
  3937. 0000000000000000000000000000000000000000000000000000000000000000
  3938. 0000000000000000000000000000000000000000000000000000000000000000
  3939. 0000000000000000000000000000000000000000000000000000000000000000
  3940. 0000000000000000000000000000000000000000000000000000000000000000
  3941. 0000000000000000000000000000000000000000000000000000000000000000
  3942. 0000000000000000000000000000000000000000000000000000000000000000
  3943. 0000000000000000000000000000000000000000000000000000000000000000
  3944. 0000000000000000000000000000000000000000000000000000000000000000
  3945. 0000000000000000000000000000000000000000000000000000000000000000
  3946. 0000000000000000000000000000000000000000000000000000000000000000
  3947. 0000000000000000000000000000000000000000000000000000000000000000
  3948. 0000000000000000000000000000000000000000000000000000000000000000
  3949. 0000000000000000000000000000000000000000000000000000000000000000
  3950. 0000000000000000000000000000000000000000000000000000000000000000
  3951. 0000000000000000000000000000000000000000000000000000000000000000
  3952. 0000000000000000000000000000000000000000000000000000000000000000
  3953. 0000000000000000000000000000000000000000000000000000000000000000
  3954. 0000000000000000000000000000000000000000000000000000000000000000
  3955. 0000000000000000000000000000000000000000000000000000000000000000
  3956. 0000000000000000000000000000000000000000000000000000000000000000
  3957. 0000000000000000000000000000000000000000000000000000000000000000
  3958. 0000000000000000000000000000000000000000000000000000000000000000
  3959. 0000000000000000000000000000000000000000000000000000000000000000
  3960. 0000000000000000000000000000000000000000000000000000000000000000
  3961. 0000000000000000000000000000000000000000000000000000000000000000
  3962. 0000000000000000000000000000000000000000000000000000000000000000
  3963. 0000000000000000000000000000000000000000000000000000000000000000
  3964. 0000000000000000000000000000000000000000000000000000000000000000
  3965. 0000000000000000000000000000000000000000000000000000000000000000
  3966. 000000000000000000000000000000000000424D3E000000000000003E000000
  3967. 2800000080000000200000000100010000000000000200000000000000000000
  3968. 000000000000000000000000FFFFFF00FFFFFFFF000000000000000000000000
  3969. FFFFFFFF000000000000000000000000FF0000FF000000000000000000000000
  3970. FF0000FF000000000000000000000000FF0000FF000000000000000000000000
  3971. FF0000FF000000000000000000000000FFF81FFF000000000000000000000000
  3972. FFF81FFF000000000000000000000000C0000003000000000000000000000000
  3973. C0000003000000000000000000000000C0000003000000000000000000000000
  3974. C0000003000000000000000000000000C0000003000000000000000000000000
  3975. C0000003000000000000000000000000C0000003000000000000000000000000
  3976. C0000003000000000000000000000000C0000003000000000000000000000000
  3977. C0000003000000000000000000000000C0000003000000000000000000000000
  3978. C0000003000000000000000000000000C0000003000000000000000000000000
  3979. C0000003000000000000000000000000C0000003000000000000000000000000
  3980. C0000003000000000000000000000000C0000003000000000000000000000000
  3981. C0000003000000000000000000000000C0000003000000000000000000000000
  3982. C0000003000000000000000000000000C0000003000000000000000000000000
  3983. C0000003000000000000000000000000FFFFFFFF000000000000000000000000
  3984. FFFFFFFF00000000000000000000000000000000000000000000000000000000
  3985. 000000000000}
  3986. end
  3987. object PrivateKeyMenu: TPopupMenu
  3988. Left = 128
  3989. Top = 384
  3990. object PrivateKeyGenerateItem: TMenuItem
  3991. Caption = '&Generate New Key Pair with PuTTYgen...'
  3992. OnClick = PrivateKeyGenerateItemClick
  3993. end
  3994. object PrivateKeyUploadItem: TMenuItem
  3995. Caption = '&Install Public Key into Server...'
  3996. OnClick = PrivateKeyUploadItemClick
  3997. end
  3998. end
  3999. end