home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bedit24.zip / BEDIT.DOC next >
Text File  |  1993-02-12  |  24KB  |  522 lines

  1.                                     BEDIT
  2.                               Binary File Editor
  3.                                  USER'S GUIDE
  4.  
  5.                   Copyright 1990, 1993 by Gary C. Crider and
  6.                                Parity Solutions
  7.                                
  8.  
  9.  
  10. TABLE OF CONTENTS:
  11.  
  12.         What is BEDIT? ................................... 1.0
  13.         The BEDIT command line ........................... 2.0
  14.         Operational notes ................................ 3.0
  15.         The Keyboard and Display ......................... 4.0
  16.         Modifying Data ................................... 5.0
  17.         Deleting Data .................................... 6.0  
  18.         Inserting Data ................................... 7.0  
  19.         Locating Data .................................... 8.0
  20.           Go to a Position in the File ................... 8.1
  21.           Search for Data ................................ 8.2
  22.         Print the File ................................... 9.0
  23.         Save the File .................................... 10.0
  24.         Help ............................................. 11.0
  25.         A Useful Example - 
  26.           Modification of DOS 5's EDIT ................... 12.0
  27.         Installation ..................................... Appendix A
  28.         Disclaimer ....................................... Appendix B
  29.         Support .......................................... Appendix C
  30.         Registration ..................................... Appendix D
  31.  
  32.  
  33. 1.0 What Is BEDIT?
  34.  
  35.    One thing most of us learned early on after working on our first PC
  36. was that EDLIN, while useful, stank (stunk?) as an editor of text files.
  37. Soon there were hundreds of full screen text editors available everywhere.
  38. Even Microsoft finally came around and included EDIT in DOS 5 to get us
  39. away from EDLIN.
  40.  
  41.    An early lesson that most who aspire to be power users learn is that not
  42. all changes we desire to make are in text files.  Sooner or later we end
  43. up patching an executable program, database, or strange format file that
  44. text editors will not handle.  Enter DEBUG.  Just as EDLIN was a pain for
  45. editing text files, DEBUG is a pain for editing binary files.  Strangely,
  46. few people have jumped out with binary editors and the few I have seen are 
  47. not much better than DEBUG.  Even Microsoft is making us stick with DEBUG,
  48. and as a bonus, have taken the documentation for DEBUG out of the DOS
  49. documentation.  I guess they feel it is too dangerous for ordinary mortals.
  50. My feeling is, it's my file and I'll corrupt it if I want to.
  51.  
  52.    BEDIT is a very easy-to-use full screen editor for binary (or text) 
  53. files.  You simply type over the hex or ASCII data much as you would with
  54. any text editor.  BEDIT ensures that you enter hex characters (0-9 and A-F)
  55. while you are in hex entry mode.  You will be able to see the hex and ASCII
  56. representations at all times whether you are editing in hex or ASCII.  
  57.  
  58.    Using BEDIT is so intuitive, I don't know why I'm writing this documen-
  59. tation or why you are reading it.  Perhaps we both like to move cautiously.
  60.  
  61.    You see a full screen of data at all times, not just a few bytes.  Paging
  62. through the file is as easy as hitting PgUp and PgDn, you don't have to
  63. enter hex displacements to get to the next page.
  64.  
  65.    I think you'll find, as we have at a Fortune 100 company (my day job),
  66. that BEDIT becomes one of the handiest tools you have.  You will use it
  67. much more than you now expect that you will.
  68.  
  69.    BEDIT automatically detects and uses any available LIM 4.0 EMS expanded
  70. memory.  This allows very large files to be edited.
  71.  
  72.  
  73.  
  74. 2.0 The BEDIT Command Line
  75.  
  76.    Format: BEDIT [path]filename [/N] [/B]
  77.  
  78.    The filename is the file name of the file that you want to edit.  BEDIT 
  79. does not make an automatic backup, so back it up if you think there could    
  80. be problems.  The path is required if the file is not in the current 
  81. directory.  
  82.    
  83.    Specify /N if you do not want BEDIT to use EMS memory.
  84.  
  85.    Specify /B if you have a black and white (monochrome) monitor and you
  86. have trouble distinguishing where the cursor is located.  This invokes a
  87. monochrome display without any highlighting.  It uses reverse video for 
  88. the cursors.  The active editing cursor will blink.  When /B is invoked, 
  89. disregard any references to colors in the documentation.
  90.  
  91.    Brackets ([]) indicate optional parameters.  Do not include the brackets
  92. in the command line.
  93.  
  94.    
  95.  
  96. 3.0 Operational Notes   
  97.  
  98.    It bears repeating at this point that BEDIT DOES NOT MAKE AN AUTOMATIC
  99. BACKUP of the edited file.  Since much of the usefulness of BEDIT is to just
  100. view or print the contents of a binary file, I did not want BEDIT cluttering
  101. up my directories with backup files. 
  102.  
  103.    If you intend to modify a file with BEDIT, I highly recommend making
  104. a backup file first for obvious reasons.  Since BEDIT will allow you to 
  105. change any file in any way, it is obviously a very dangerous weapon in the
  106. hands of the unskilled as well as a very powerful tool in the hands of the
  107. skilled.  Please be careful!
  108.  
  109.    BEDIT reads the entire file into memory before any edits are performed.
  110. All changes are made only to the copy in memory until a SAVE is done.  If
  111. you have LIM 4.0 compatible EMS memory, you are limited in editable file size
  112. to the amount of free expanded memory.  If you have no expanded memory, or
  113. use the /N parameter, the file is loaded into conventional memory.  Depending
  114. on your memory configuration, you should be able to load a file of 400-500 
  115. Kbytes without the use of expanded memory.  If your available expanded
  116. memory is less than your available conventional memory, use the /N option
  117. to load larger files.  Usually there is more expanded memory than conven-
  118. tional, so excluding the /N option allows larger files to load.
  119.  
  120.  
  121.  
  122. 4.0 The Keyboard and Display
  123.  
  124.    There are two modes of editing in BEDIT.  When you first load a file, the
  125. screen appears with both hex data and its ASCII representation displayed in 
  126. separate sections of the screen.  The cursor is initially placed in the hex 
  127. portion of the screen for editing in hex.  The character (represented by two 
  128. hex digits) at the cursor location appears red on color monitors.  The same 
  129. character on the ASCII (right) side will be light cyan.  All other data 
  130. characters are yellow.  As the cursor moves, you will see the light cyan 
  131. highlighting on the ASCII display move with the cursor and red letters of the 
  132. hex display.  Pressing TAB places the cursor in the ASCII portion and the 
  133. display at the cursor becomes red.  The corresponding position in the hex 
  134. data becomes light cyan.  TAB toggles the cursor back and forth between the 
  135. two editing areas.
  136.  
  137.    The ASCII display does not display every displayable character, but only
  138. letters and numbers and the more common punctuation symbols that are common
  139. to most printers.  All other characters appear as periods.  You can only 
  140. enter these characters on the ASCII side.  To enter exotic characters you 
  141. must use the hex representation on the hex side.  If a blank appears on the
  142. ASCII display, it is  because there is a true blank (hex 20) at that position.
  143.  
  144.    The following keys function as shown during editing:
  145.  
  146.    Page Down    - Display the next page of data.
  147.    Page Up      - Display the previous page of data.
  148.    Home         - Position the cursor at the start of the file.
  149.    End          - Position the cursor at the end of the file.
  150.    Down Arrow   - Move the cursor down one line.
  151.    Up Arrow     - Move the cursor up one line.
  152.    Right Arrow  - Move the cursor right one byte.  If at the end of a line, 
  153.                   move to the first byte of next line.
  154.    Left Arrow   - Move the cursor left one byte.  If at the start of a line,
  155.                   move to the last byte of the previous line.
  156.    Enter        - Same as right arrow.
  157.    Tab          - Swap the edit cursor between hex and ASCII modes.
  158.    Back Tab     - Clears the byte.  You must then type something in the byte
  159.                   before the cursor can be moved.
  160.    Insert       - Insert one byte.  Everything beyond this byte is shifted one 
  161.                   position and a hex 00 byte is inserted at the cursor.
  162.    Delete       - Delete one byte at the cursor.
  163.  
  164.    Function keys:
  165.  
  166.    F1     - Display the help screen.
  167.    F2     - Save any changes to the file on disk.
  168.    F3     - Insert a specified number of bytes at cursor.
  169.    F4     - Delete a specified number of bytes at cursor.
  170.    F5     - Move the cursor to a specified address within the file.
  171.    F6     - Print the file to LPT1:.  It appears in basically the same format
  172.             as displayed.
  173.    F7     - Toggle case-sensitivity for ASCII string searches.
  174.    F8     - Specify a search argument and locate the first occurrence of it in
  175.             the file.
  176.    F9     - Locate the next occurrence of the search argument.
  177.    ESCAPE - Exit BEDIT.
  178.  
  179.  
  180.  
  181. 5.0 Modifying Data
  182.  
  183.    Modifying data is very simple, just type over it.  Use the TAB key to 
  184. select the hex or ASCII area.  A MODE indicator on the top line will change 
  185. to indicate whether you are in hex or ASCII edit mode.  When typing in the 
  186. hex area, only valid hex characters, 0-9 and A-F are allowed and upper case 
  187. is forced.  When entering data in the ASCII portion, only common printable 
  188. characters are allowed and upper or lower case may be used.
  189.  
  190.  
  191.  
  192. 6.0 Deleting Data
  193.  
  194.    First place the cursor on the first byte of the data that you want to 
  195. delete.  Pressing the DELETE key deletes one byte of data at this position.
  196. Press DELETE repeatedly to delete several bytes.  If a large block needs to
  197. be deleted, press the F4 key and reply to the prompt with the number of bytes 
  198. you want to delete starting with the byte at the cursor.
  199.  
  200.  
  201.  
  202. 7.0 Inserting Data
  203.  
  204.    BEDIT, rather than using an insert mode, lets you insert bytes of binary 
  205. zeros, hex 00, into the file.  You can then type over the inserted bytes with 
  206. the data that you require.
  207.  
  208.    Place the cursor at the byte where you want the data inserted.  The data
  209. is inserted BEFORE the byte at the cursor.  Pressing the INSERT key inserts 
  210. one byte at a time.  If a large block needs to be inserted, press F3 and 
  211. specify the number of bytes you want inserted.  Once the null bytes appear,
  212. type over them if necessary.
  213.  
  214.    In order to add bytes to the end of the file, press END to go to the last
  215. byte of the file then press the right arrow.  Each press of the right arrow
  216. adds a byte to the file.  To enter a large block at the end of the file,
  217. press the right arrow once, then press F3 and specify the number of bytes
  218. needed less one (since you already added one when you pressed the right
  219. arrow).
  220.  
  221.  
  222.  
  223. 8.0 Locating Data
  224.  
  225.    There are basically three ways to move the cursor to an area you want
  226. to edit.
  227.  
  228.    First you can use Page Down and Page Up to visually look for that area you
  229. want.  Primitive, but effective.
  230.  
  231.    Second, if you know the offset into the program of the area you want to 
  232. modify, press F5 and type the offset in hex.  
  233.  
  234.    The third method is to let the computer search for a known byte config-
  235. uration.
  236.  
  237.  
  238.  
  239. 8.1 Go to a Position in the File
  240.  
  241.    An offset or displacement is measured from the start of the file.  The
  242. first byte is offset 0, the second is 1, etc.  When you press F5, you are
  243. prompted for an offset which you provide in hex.  The cursor is then placed 
  244. at that address and display is updated to show the data at the cursor.
  245.  
  246.    This method is often used in applying documented patches supplied by a 
  247. software vendor.
  248.  
  249.  
  250.  
  251. 8.2 Search for Data
  252.  
  253.    Pressing F8 pops up a dialogue box that requests entry of a search argument.
  254. After supplying this argument, the cursor is positioned to the first 
  255. occurrence of that value in the file.  If it is not found, the cursor will 
  256. appear on the last byte of the file.  If a first occurrence is found, pressing
  257. F9 searches for the next occurrence.  If a second is found, pressing F9 again
  258. searches for the third occurrence, and so on.
  259.  
  260.    If the cursor is in the hex editing area, you will be prompted for up to
  261. 16 hex bytes of search argument (32 hex digits).  When the cursor is in
  262. the ASCII editing area, you may enter up to 32 ASCII characters for a search
  263. argument.  Admittedly the search arguments are small, but I have found that
  264. when editing binary files, you are generally not looking for long strings.
  265.  
  266.    Hex data is normally entered in sets of two hex digits (nibbles) since it
  267. takes two hex digits to represent one byte.  If you enter an odd number of hex 
  268. digits, a zero nibble is prepended to the argument.  For example, if you
  269. enter 18A, the resulting two bytes that are located are 01 8A.  
  270.  
  271.   No byte swapping is ever done to accommodate the PC's low-high storage 
  272. scheme of integer data.  So if you are looking for an integer value of 
  273. 1000 (decimal), hex 3E8, which is stored as hex E8 03, the search argument 
  274. you would provide is E803.  If you don't have a clue what this means, you 
  275. probably don't need to be concerned about using BEDIT in this manner.
  276.  
  277.   The F7 key is used to enable or disable case-sensitive searches when in
  278. ASCII character mode.  The current state is shown on the top line of the 
  279. display.  If ON, upper/lower case letters must match exactly.  If OFF,
  280. upper and lower case letters are equivalent.  The CASE mode has no effect
  281. on hex mode searches.
  282.  
  283.  
  284.  
  285. 9.0 Print the File
  286.  
  287.    Printing the file is easy.  You just press F6 and the output is sent to
  288. standard print (PRN).  The format is side-by-side hex/ASCII like that dis-
  289. played on the screen with offset addresses (displacements) at the start of 
  290. each line.  896 (hex 380) bytes are printed on each page.  The pages are 
  291. numbered and the file name appears at the beginning of each page.
  292.  
  293.    
  294.  
  295. 10.0 Saving the File
  296.  
  297.    Prior to pressing F2 to save the file, all modifications are only done in 
  298. memory.  F2 writes the image in memory over the file that was originally 
  299. loaded, and the changes become permanent.
  300.  
  301.  
  302.  
  303. 11.0 Help
  304.  
  305.    Pressing F1 pops up a help screen describing the editing and function keys.
  306. Pressing ESCAPE (or any key when last page is displayed) removes the help
  307. window and returns you to the editor.  Page Down and Page Up can be used to 
  308. move between help pages.
  309.  
  310.  
  311.  
  312. 12.0 A Useful Example - Modification of DOS 5's EDIT
  313.  
  314.    I prefer DOS 5's EDIT command by leaps and bounds over the EDLIN of
  315. previous DOSes, but there is one thing I especially don't like about it.
  316. When you select File/Open, it comes up with a default file list specification
  317. of *.TXT, like that is the only extension ever used for ASCII text files.  I
  318. would prefer *.* and let me choose from all of my files.  After reviewing
  319. all of the options, it appeared to me that there was no way to set this
  320. value to *.*.
  321.  
  322.    My next thought is that since there doesn't appear to be any type of
  323. configuration file for EDIT, the *.TXT string must be in the program, so
  324. I'll just pull out my trusty BEDIT and zap it to *.*.  Let's do it.
  325.  
  326.    Go to your directory where you keep DOS (usually C:\DOS).  Type BEDIT
  327. EDIT.COM.  Since we know we are looking for an ASCII string of *.TXT, press
  328. TAB to swap the cursor to the ASCII area and press F8 to search.  Enter
  329. *.TXT and press ENTER.  You now find that your cursor is positioned on the 
  330. last byte of the file.  This means it didn't find the string we were
  331. looking for.  Strange.
  332.  
  333.    But look! Right above our cursor are some messages that EDIT.COM displays.
  334. One of them reads, "Can not find file QBASIC.EXE."  Oh yeah, I read somewhere
  335. that the EDIT editor with DOS 5 was a version of the QBASIC editor.  Let's
  336. press ESCAPE, answer 'Y' and get back to the DOS prompt.  Now let's enter
  337. BEDIT QBASIC.EXE.
  338.  
  339.    Again let's go the ASCII area with TAB and search for *.TXT with F8.  
  340. Bingo! We found it.  If you are faint-of-heart (wise) you can exit at this
  341. point and make a backup of QBASIC.EXE by copying it to QBASIC.BKP or some 
  342. such file name.  The go back in BEDIT of QBASIC.EXE, and repeat the
  343. search to get back to where we were before.
  344.  
  345.    In my copy of DOS 5.0's QBASIC.EXE, I am now at a displacement of hex 
  346. 3BCCA into the program and the cursor is positioned on the * of string *.TXT.  
  347. Hit the right arrow twice to position the cursor on the first T.  Type an 
  348. asterisk (*).  The string now shows *.*XT and the cursor is on the X.
  349. Lets change the X and T to hex 00s, which in most languages is used to 
  350. terminate a string.  Since we can't enter a binary zero field in the ASCII
  351. area, press TAB to switch the cursor back to the hex area.  Now type
  352. four 0s.  As you can see you have now changed the XT characters from
  353. hex 54 58 (the hex representation of X and T) to hex 00 00.
  354.  
  355.    This is what we wanted to do, so now let's save the file by pressing
  356. F2.  Exit to DOS by pressing ESCAPE and Y.  Now type EDIT and go to the
  357. File/Open screen.  Lo and behold!  It now reads *.* and all of the files 
  358. in the current directory are displayed in the pick list.
  359.  
  360.    If you made a backup, you can go delete it now.
  361.  
  362.  
  363.  
  364. APPENDIX A
  365.  
  366. Installation
  367.  
  368.     BEDIT is distributed in a ZIP file called BEDIT.ZIP.  It contains the
  369. following files:
  370.  
  371.         BEDIT.EXE         The executable file for BEDIT.
  372.         BEDIT.DOC         The documentation file.
  373.         BEDIT.Vnn         Modification descriptions for version nn.
  374.         PRODUCTS.DOC      A description of other Parity Solutions products
  375.                           available on CompuServe and ZiffNet.
  376.  
  377.     For best results, unzip the file into a directory on your PATH.  If you
  378. don't use a directory in your path, you will have to designate the directory
  379. containing BEDIT.EXE when executing the program.
  380.  
  381.     If you have a utility directory that is on your PATH, this is an excellent
  382. location for BEDIT.  An example installation would be:
  383.  
  384.     C:
  385.     CD \UTIL
  386.     COPY [path]BEDIT.ZIP
  387.     PKUNZIP BEDIT
  388.     DEL BEDIT.ZIP
  389.  
  390.     The PKUNZIP program is by PKWARE, Inc. and is available in many CompuServe
  391. forums under the file name of PKZ110.EXE or PK204E.EXE.  Since you are reading 
  392. this doc file, you have obviously already managed to unzip the distribution 
  393. file.  If it is not currently in your path, simply copy all of the files to a 
  394. directory in your path.  Keep the BEDIT.ZIP file anywhere you like, but give 
  395. plenty of copies, as is, to your friends.  If you register BEDIT, you are not 
  396. licensed to give your serial number to anybody without first removing the 
  397. serialization from your copy.
  398.  
  399.  
  400.  
  401.  
  402. APPENDIX B
  403.  
  404.  
  405. Disclaimer
  406.  
  407. BECAUSE OF THE DIVERSE NATURE OF COMPUTER EQUIPMENT AND EXPERTISE OF USERS,
  408. PARITY SOLUTIONS AND GARY C. CRIDER MAKE NO WARRANTY ON THE BEDIT PROGRAM
  409. WHATSOEVER, EXPRESS OR IMPLIED.  THE USER ASSUMES ALL RISK OF DAMAGE TO DATA 
  410. OR EQUIPMENT RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OR MISUSE OF THIS 
  411. PROGRAM PRODUCT.  THE USER MUST BE AWARE THAT USING BEDIT TO MAKE ALTERATIONS 
  412. TO PROGRAMS OR DATA CAN RENDER THAT PROGRAM OR DATA USELESS.
  413.  
  414. USERS ARE ADVISED TO TEST MODIFICATIONS MADE WITH BEDIT THOROUGHLY ON FILES 
  415. FOR WHICH A BACKUP EXITS.  ANY LIABILITY OF THE AUTHOR OR PARITY SOLUTIONS IS 
  416. LIMITED TO REPLACEMENT OR REFUND OF THE REGISTRATION FEE.
  417.  
  418.  
  419.  
  420.  
  421. APPENDIX C
  422.  
  423.  
  424. Support
  425.  
  426.     I have tried to test the program to the fullest, but I am limited as to
  427. systems and configurations with which to test.  I have been programming for 18
  428. years and the one thing I know for sure is that bug free programs are very few
  429. and far between.  I can only promise to support the program to the best of my
  430. ability and provide fixes as expeditiously as possible.  BEDIT has been used
  431. at my home and work site extensively for several years and has proven to be a
  432. reliable tool.
  433.  
  434.     Anyone can report problems and suggest changes.  Registered users get top
  435. priority in resolving their problems.  There are three ways you can report
  436. problems.  The preferred method is to contact me through CIS mail (not forum
  437. messages).  My CIS ID is 71760,3413.  You can also write me at:
  438.  
  439.    Gary C. Crider
  440.    Parity Solutions
  441.    1105 Burgess Court
  442.    Arlington, TX 76015
  443.  
  444.     The last method is to phone (817) 467-7818.  Since I am the sole technical
  445. support and the line is also used for my network consulting business, it is
  446. often hard to get through to me.  Please call and leave a message between 7:30
  447. am and 5:30 pm Central time.
  448.  
  449.     No matter which method you use, please give a brief description of your
  450. problem, your registration serial number if you are registered, and your phone
  451. number.  If I need more information, I will contact you as soon as I can.
  452. When I have a solution, I will contact you however you prefer.
  453.  
  454.     I work full time, have a consulting business to run in my spare time and
  455. write programs instead of sleeping.  So please be a little patient with me.
  456.  
  457.  
  458.  
  459.  
  460. APPENDIX D
  461.  
  462.  
  463. Registration
  464.  
  465.  
  466.     I begin with an apology.  I hate programs that in any way inhibit func-
  467. tionality or performance for the shareware version.  But when it came down to
  468. feeding the family and paying the bills, I had a change of heart and inserted
  469. a pesky notice that pops up at the beginning and gets on your nerves.  I
  470. chose this approach above that of limited functionality.  The program's full
  471. capabilities are available for you to evaluate before you invest your hard-
  472. earned money.
  473.  
  474.     Registered users will receive a unique serial number and instructions on
  475. how to serialize the program.  Serialization can be re-applied to updated
  476. versions and in no way hinders your use of the program.  You can compress or
  477. decompress the program with no effect (LZEXE or PKLITE).  I use Fabrice
  478. Bellard's LZEXE program on BEDIT.EXE before distribution.
  479.  
  480.     As a registered user, you will be able to update without re-registration
  481. or additional fees.  You will also be kept on my PRIVATE mailing list to
  482. receive additional information on other Parity Solutions products.  Registered 
  483. users will be entitled to a discount on any present or future Parity Solutions
  484. software.
  485.  
  486.     To register your copy, please send $15 ($55 per file server on LANs) check
  487. or money order (sorry, no credit cards yet) to:
  488.  
  489.    Gary C. Crider
  490.    Parity Solutions
  491.    1105 Burgess Court
  492.    Arlington, TX 76015
  493.  
  494.     Each license gives you or your company a single use permit for BEDIT. It 
  495. is not restricted to a single machine as long as no two users can be simul-
  496. taneously using the program.  As Borland says, "treat it like a book."  As an 
  497. example, if you register BEDIT for your home computer, but during the day you 
  498. use a portable or a computer at work,  you may keep BEDIT on both machines as 
  499. long as no one is at home using it on your home computer.
  500.  
  501.     LAN licenses grant rights to all users of a file server.  If inter-
  502. networking, a license must exist for each file server that contains a copy
  503. of BEDIT.EXE.  If two or more file servers exist on a single LAN strictly for
  504. mirroring data and fault-tolerance, these will be counted as a single file
  505. server for licensing purposes.  If in doubt, contact me.  We can work out
  506. an agreement.
  507.  
  508.     Site licensing is also available on a negotiated price basis.  I guarantee
  509. it will be an economical alternative to buying licenses for each user.
  510.  
  511.     You may freely distribute the original BEDIT.ZIP file in any way you see
  512. fit other than selling it.  Users' groups and shareware distribution services
  513. may charge a reasonable fee for the medium and duplication costs.  Bulletin 
  514. boards may not charge additional fees for downloading this specific program, 
  515. other than normal connect-time and/or membership charges.
  516.  
  517.     You are NOT licensed to give anyone your serial number unless you first
  518. remove all serialization from your computer.  You may then no longer use that
  519. serial number.  Only Parity Solutions has the authority to issue serial
  520. numbers.
  521.  
  522.