SiteAdvanced.dfm 162 KB

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