]> git.ipfire.org Git - thirdparty/bash.git/commitdiff
commit bash-20080807 snapshot bash-4.0-alpha
authorChet Ramey <chet.ramey@case.edu>
Wed, 7 Dec 2011 14:26:50 +0000 (09:26 -0500)
committerChet Ramey <chet.ramey@case.edu>
Wed, 7 Dec 2011 14:26:50 +0000 (09:26 -0500)
24 files changed:
CHANGES
COMPAT
CWRU/CWRU.chlog
MANIFEST
NEWS
autom4te.cache/output.0
autom4te.cache/requests
autom4te.cache/traces.0
configure
configure.in
doc/bash.pdf
doc/bash.ps
doc/bashref.dvi
doc/bashref.log
doc/bashref.pdf
lib/intl/Makefile.in
lib/readline/readline.h
po/LINGUAS
po/cs.gmo [new file with mode: 0644]
po/cs.po [new file with mode: 0644]
po/lt.gmo [new file with mode: 0644]
po/lt.po
tests/RUN-ONE-TEST
tests/core [new file with mode: 0644]

diff --git a/CHANGES b/CHANGES
index 1d7616a7beb3fbc91d5e8f0cbb414b42a667a2ce..1b1c879ba570861e3514eea9e065c08d71d7f106 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -50,7 +50,8 @@ o.  Fixed several bugs in the expansion of $* and $@ (quoted and unquoted)
     apply to arrays subscripted with * or @.
 
 p.  Fixed several problems with pattern substitution expansions on the
-    positional parameters and arrays subscripted with * or @.
+    positional parameters and arrays subscripted with * or @ that occurred
+    when $IFS was set to the empty string.
 
 q.  Made a change to the default locale initialization code that should
     result in better behavior from the locale-aware library functions.
@@ -117,8 +118,9 @@ kk. Fixed a bug with the `test' builtin that caused it to misinterpret
 ll. Fixed bug that could cause the shell to dump core in certain cases where
     a command sets the SIGINT disposition to the default.
 
-mm. Fixed a bug in the pattern replacement word expansion that occurred when
-    the pattern and replacement strings were empty.
+mm. Fixed a bug in the pattern replacement (affecting both word expansion
+    and the `fc' builtin) that occurred when the pattern and replacement
+    strings were empty.
 
 nn. Fixed a bug that caused an arithmetic evaluation error to disable all
     further evaluation.
@@ -265,6 +267,9 @@ eeee. The shell displays more warnings about failures to set the locale.
 ffff. Fixed a bug that caused the body of a here-document to not be saved to
       the history list.
 
+gggg. Fixed a bug that caused configure to incorrectly conclude that FreeBSD
+      had /dev/fd available, resulting in problems with process substitution.
+
 2.  Changes to Readline
 
 a.  Fixed a number of redisplay errors in environments supporting multibyte 
@@ -285,8 +290,9 @@ e.  Fixed bugs in redisplay occurring when displaying prompts containing
 f.  Fixed a bug that caused the completion append character to not be reset to
     the default after an application-specified completion function changed it.
 
-g.  Fixed a problem that caused incorrect positioning of the cursor in emacs
-    mode when at the end of a line in a locale supporting multibyte characters.
+g.  Fixed a problem that caused incorrect positioning of the cursor while in
+    emacs editing mode when moving forward at the end of a line while using
+    a locale supporting multibyte characters.
 
 h.  Fixed an off-by-one error that caused readline to drop every 511th
     character of buffered input.
@@ -314,6 +320,12 @@ o.  Fixed a bug that caused readline to disable echoing when it was being used
 p.  Readline now blocks SIGINT while manipulating internal data structures
     during redisplay.
 
+q.  Fixed a bug in redisplay that caused readline to segfault when pasting a
+    very long line (over 130,000 characters).
+
+r.  Fixed bugs in redisplay when using prompts with no visible printing
+    characters.
+
 3.  New Features in Bash
 
 a.  When using substring expansion on the positional parameters, a starting
diff --git a/COMPAT b/COMPAT
index 8c8267843a5a39d1c6ec99c7d199cfd2c53c4ba4..8e7b9a1a55386adb898f7e8569b33fdbfc69b2f7 100644 (file)
--- a/COMPAT
+++ b/COMPAT
@@ -291,7 +291,7 @@ bash-2.0 were significant.)
 
 37. Bash-4.0 now allows SIGCHLD to interrupt the wait builtin, as Posix
     specifies, so the SIGCHLD trap is no longer always invoked once per
-    exiting child.
+    exiting child if you are using `wait' to wait for all children.
 
 38. Since bash-4.0 now follows Posix rules for finding the closing delimiter
     of a $() command substitution, it will not behave as previous versions
index 9df566061f511de136a2051f7fd2a03273c25da3..63d018878109e62edbbe42e4140ba82627acad85 100644 (file)
@@ -6749,3 +6749,11 @@ parse.y
        - change read_secondary_line to save lines in the body of a here-
          document in the shell history list if remember_on_history is
          set.  Fixes bug reported by Gene Golub <gene_golub@hotmail.com>
+
+                                   8/4
+                                   ---
+configure.in
+       - changed to 4.0-alpha
+
+lib/readline/readline.h
+       - changed constants to reflect readline-6.0 version
index 6a99d2e525070d2a66983acd91b83ec5908cbbff..38889ad3d9580d8137191b5c1979dfdf55626514 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -486,6 +486,8 @@ po/bg.gmo           f
 po/bg.po               f
 po/ca.gmo              f
 po/ca.po               f
+po/cs.gmo              f
+po/cs.po               f
 po/de.gmo              f
 po/de.po               f
 po/eo.gmo              f
diff --git a/NEWS b/NEWS
index 3fa504ed82f38533f225d19e36c1d9b5b2ca2d26..f4b81f0b283c07e18747d81ebf0ea03719873344 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,184 @@
+This is a terse description of the new features added to bash-4.0 since
+the release of bash-3.2.  As always, the manual page (doc/bash.1) is
+the place to look for complete descriptions.
+
+1.  New Features in Bash
+
+a.  When using substring expansion on the positional parameters, a starting
+    index of 0 now causes $0 to be prefixed to the list.
+
+b.  The `help' builtin now prints its columns with entries sorted vertically
+    rather than horizontally.
+
+c.  There is a new variable, $BASHPID, which always returns the process id of
+    the current shell.
+
+d.  There is a new `autocd' option that, when enabled, causes bash to attempt
+    to `cd' to a directory name that is supplied as the first word of a
+    simple command.
+
+e.  There is a new `checkjobs' option that causes the shell to check for and
+    report any running or stopped jobs at exit.
+
+f.  The programmable completion code exports a new COMP_TYPE variable, set to
+    a character describing the type of completion being attempted.
+
+g.  The programmable completion code exports a new COMP_KEY variable, set to
+    the character that caused the completion to be invoked (e.g., TAB).
+
+h.  If creation of a child process fails due to insufficient resources, bash
+    will try again several times before reporting failure.
+
+i.  The programmable completion code now uses the same set of characters as
+    readline when breaking the command line into a list of words.
+
+j.  The block multiplier for the ulimit -c and -f options is now 512 when in
+    Posix mode, as Posix specifies.
+
+k.  Changed the behavior of the read builtin to save any partial input received
+    in the specified variable when the read builtin times out.  This also
+    results in variables specified as arguments to read to be set to the empty
+    string when there is no input available.  When the read builtin times out,
+    it returns an exit status greater than 128.
+
+l.  The shell now has the notion of a `compatibility level', controlled by
+    new variables settable by `shopt'.  Setting this variable currently
+    restores the bash-3.1 behavior when processing quoted strings on the rhs
+    of the `=~' operator to the `[[' command.
+
+m.  The `ulimit' builtin now has new -b (socket buffer size) and -T (number
+    of threads) options.
+
+n.  The -p option to `declare' now displays all variable values and attributes
+    (or function values and attributes if used with -f).
+
+o.  There is a new `compopt' builtin that allows completion functions to modify
+    completion options for existing completions or the completion currently
+    being executed.
+
+p.  The `read' builtin has a new -i option which inserts text into the reply
+    buffer when using readline.
+
+q.  A new `-E' option to the complete builtin allows control of the default
+    behavior for completion on an empty line.
+
+r.  There is now limited support for completing command name words containing
+    globbing characters.
+
+s.  Changed format of internal help documentation for all builtins to roughly
+    follow man page format.
+
+t.  The `help' builtin now has a new -d option, to display a short description,
+    and a -m option, to print help information in a man page-like format.
+
+u.  There is a new `mapfile' builtin to populate an array with lines from a
+    given file.
+
+v.  If a command is not found, the shell attempts to execute a shell function
+    named `command_not_found_handle', supplying the command words as the
+    function arguments.
+
+w.  There is a new shell option: `globstar'.  When enabled, the globbing code
+    treats `**' specially -- it matches all directories (and files within
+    them, when appropriate) recursively.
+
+x.  There is a new shell option: `dirspell'.  When enabled, the filename
+    completion code performs spelling correction on directory names during
+    completion.
+
+y.  The `-t' option to the `read' builtin now supports fractional timeout
+    values.
+
+z.  Brace expansion now allows zero-padding of expanded numeric values and
+    will add the proper number of zeroes to make sure all values contain the
+    same number of digits.
+
+aa. There is a new bash-specific bindable readline function: `dabbrev-expand'.
+    It uses menu completion on a set of words taken from the history list.
+
+bb. The command assigned to a key sequence with `bind -x' now sets two new
+    variables in the environment of the executed command:  READLINE_LINE_BUFFER
+    and READLINE_POINT.  The command can change the current readline line
+    and cursor position by modifying READLINE_LINE_BUFFER and READLINE_POINT,
+    respectively.
+
+cc. There is a new >>& redirection operator, which appends the standard output
+    and standard error to the named file.
+
+dd. The parser now understands `|&' as a synonym for `2>&1 |', which redirects
+    the standard error for a command through a pipe.
+
+ee. The new `;&' case statement action list terminator causes execution to
+    continue with the action associated with the next pattern in the
+    statement rather than terminating the command.
+
+ff. The new `;;&' case statement action list terminator causes the shell to
+    test the next set of patterns after completing execution of the current
+    action, rather than terminating the command.
+
+gg. The shell understands a new variable: PROMPT_DIRTRIM.  When set to an
+    integer value greater than zero, prompt expansion of \w and \W  will
+    retain only that number of trailing pathname components and replace
+    the intervening characters with `...'.
+
+hh. There are new case-modifying word expansions: uppercase (^[^]) and
+    lowercase (,[,]).  They can work on either the first character or
+    array element, or globally.  They accept an optional shell pattern
+    that determines which characters to modify.  There is an optionally-
+    configured feature to include capitalization operators.
+
+ii. The shell provides associative array variables, with the appropriate
+    support to create, delete, assign values to, and expand them.
+
+jj. The `declare' builtin now has new -l (convert value to lowercase upon
+    assignment) and -u (convert value to uppercase upon assignment) options.
+    There is an optionally-configurable -c option to capitalize a value at
+    assignment.
+
+kk. There is a new `coproc' reserved word that specifies a coprocess: an
+    asynchronous command run with two pipes connected to the creating shell.
+    Coprocs can be named.  The input and output file descriptors and the
+    PID of the coprocess are available to the calling shell in variables
+    with coproc-specific names.
+
+2.  New Features in Readline
+
+a.  A new variable, rl_sort_completion_matches; allows applications to inhibit
+    match list sorting (but beware: some things don't work right if
+    applications do this).
+
+b.  A new variable, rl_completion_invoking_key; allows applications to discover
+    the key that invoked rl_complete or rl_menu_complete.
+
+c.  The functions rl_block_sigint and rl_release_sigint are now public and
+    available to calling applications who want to protect critical sections
+    (like redisplay).
+
+d.  The functions rl_save_state and rl_restore_state are now public and
+    available to calling applications; documented rest of readline's state
+    flag values.
+
+e.  A new user-settable variable, `history-size', allows setting the maximum
+    number of entries in the history list.
+
+f.  There is a new implementation of menu completion, with several improvements
+    over the old; the most notable improvement is a better `completions
+    browsing' mode.
+
+g.  The menu completion code now uses the rl_menu_completion_entry_function
+    variable, allowing applications to provide their own menu completion
+    generators.
+
+h.  There is support for replacing a prefix  of a pathname with a `...' when
+    displaying possible completions.  This is controllable by setting the
+    `completion-prefix-display-length' variable.  Matches with a common prefix
+    longer than this value have the common prefix replaced with `...'.
+
+i.  There is a new `revert-all-at-newline' variable.  If enabled, readline will
+    undo all outstanding changes to all history lines when `accept-line' is
+    executed.
+
+-------------------------------------------------------------------------------
 This is a terse description of the new features added to bash-3.2 since
 the release of bash-3.1.  As always, the manual page (doc/bash.1) is
 the place to look for complete descriptions.
index 5944cf2be623a2e21db8dfde8c4937baf0d02f34..cd27b7599d78416ac8660e4a9b8bdfc28731d9b0 100644 (file)
@@ -1,7 +1,7 @@
 @%:@! /bin/sh
-@%:@ From configure.in for Bash 4.0, version 4.003.
+@%:@ From configure.in for Bash 4.0, version 4.004.
 @%:@ Guess values for system-dependent variables and create Makefiles.
-@%:@ Generated by GNU Autoconf 2.61 for bash 4.0-devel.
+@%:@ Generated by GNU Autoconf 2.61 for bash 4.0-alpha.
 @%:@
 @%:@ Report bugs to <bug-bash@gnu.org>.
 @%:@ 
@@ -575,8 +575,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='bash'
 PACKAGE_TARNAME='bash'
-PACKAGE_VERSION='4.0-devel'
-PACKAGE_STRING='bash 4.0-devel'
+PACKAGE_VERSION='4.0-alpha'
+PACKAGE_STRING='bash 4.0-alpha'
 PACKAGE_BUGREPORT='bug-bash@gnu.org'
 
 ac_unique_file="shell.h"
@@ -1284,7 +1284,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures bash 4.0-devel to adapt to many kinds of systems.
+\`configure' configures bash 4.0-alpha to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1349,7 +1349,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of bash 4.0-devel:";;
+     short | recursive ) echo "Configuration of bash 4.0-alpha:";;
    esac
   cat <<\_ACEOF
 
@@ -1519,7 +1519,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-bash configure 4.0-devel
+bash configure 4.0-alpha
 generated by GNU Autoconf 2.61
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1533,7 +1533,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by bash $as_me 4.0-devel, which was
+It was created by bash $as_me 4.0-alpha, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   $ $0 $@
@@ -1930,7 +1930,7 @@ ac_config_headers="$ac_config_headers config.h"
 
 
 BASHVERS=4.0
-RELSTATUS=devel
+RELSTATUS=alpha
 
 case "$RELSTATUS" in
 alp*|bet*|dev*|rc*|maint*)     DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;;
@@ -28374,7 +28374,7 @@ exec 6>&1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by bash $as_me 4.0-devel, which was
+This file was extended by bash $as_me 4.0-alpha, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -28427,7 +28427,7 @@ Report bugs to <bug-autoconf@gnu.org>."
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-bash config.status 4.0-devel
+bash config.status 4.0-alpha
 configured by $0, generated by GNU Autoconf 2.61,
   with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
index f7edd0d9fa344cc1fb5a4375225f7359fd3f4f54..44f770b3f1a37db0f86fb7ad39448c3237f2b278 100644 (file)
                         'configure.in'
                       ],
                       {
-                        'AM_PROG_F77_C_O' => 1,
                         '_LT_AC_TAGCONFIG' => 1,
-                        'm4_pattern_forbid' => 1,
+                        'AM_PROG_F77_C_O' => 1,
                         'AC_INIT' => 1,
+                        'm4_pattern_forbid' => 1,
                         'AC_CANONICAL_TARGET' => 1,
-                        'AC_CONFIG_LIBOBJ_DIR' => 1,
                         'AC_SUBST' => 1,
-                        'AC_CANONICAL_HOST' => 1,
+                        'AC_CONFIG_LIBOBJ_DIR' => 1,
                         'AC_FC_SRCEXT' => 1,
+                        'AC_CANONICAL_HOST' => 1,
                         'AC_PROG_LIBTOOL' => 1,
                         'AM_INIT_AUTOMAKE' => 1,
                         'AC_CONFIG_SUBDIRS' => 1,
@@ -31,8 +31,8 @@
                         'LT_CONFIG_LTDL_DIR' => 1,
                         'AC_REQUIRE_AUX_FILE' => 1,
                         'AC_CONFIG_LINKS' => 1,
-                        'LT_SUPPORTED_TAG' => 1,
                         'm4_sinclude' => 1,
+                        'LT_SUPPORTED_TAG' => 1,
                         'AM_MAINTAINER_MODE' => 1,
                         'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
                         '_m4_warn' => 1,
                         'AH_OUTPUT' => 1,
                         '_AM_SUBST_NOTMAKE' => 1,
                         'AC_CONFIG_AUX_DIR' => 1,
-                        'AM_PROG_CC_C_O' => 1,
-                        'm4_pattern_allow' => 1,
                         'sinclude' => 1,
-                        'AM_CONDITIONAL' => 1,
+                        'm4_pattern_allow' => 1,
+                        'AM_PROG_CC_C_O' => 1,
                         'AC_CANONICAL_SYSTEM' => 1,
+                        'AM_CONDITIONAL' => 1,
                         'AC_CONFIG_HEADERS' => 1,
                         'AC_DEFINE_TRACE_LITERAL' => 1,
                         'm4_include' => 1,
index f5e946e868810be32b780429cc74e28a9f636eac..9ce1106eb355f0ed8af082f5d9ddab1679581f01 100644 (file)
@@ -1,4 +1,4 @@
-m4trace:configure.in:30: -1- AC_INIT([bash], [4.0-devel], [bug-bash@gnu.org])
+m4trace:configure.in:30: -1- AC_INIT([bash], [4.0-alpha], [bug-bash@gnu.org])
 m4trace:configure.in:30: -1- m4_pattern_forbid([^_?A[CHUM]_])
 m4trace:configure.in:30: -1- m4_pattern_forbid([_AC_])
 m4trace:configure.in:30: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
index bf78295af087a98bbd5d1e351cb2b4fde37980e2..22ccbc21c3b149b1cda53b5f776271a53192cd56 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,7 +1,7 @@
 #! /bin/sh
-# From configure.in for Bash 4.0, version 4.003.
+# From configure.in for Bash 4.0, version 4.004.
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for bash 4.0-devel.
+# Generated by GNU Autoconf 2.61 for bash 4.0-alpha.
 #
 # Report bugs to <bug-bash@gnu.org>.
 #
@@ -575,8 +575,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='bash'
 PACKAGE_TARNAME='bash'
-PACKAGE_VERSION='4.0-devel'
-PACKAGE_STRING='bash 4.0-devel'
+PACKAGE_VERSION='4.0-alpha'
+PACKAGE_STRING='bash 4.0-alpha'
 PACKAGE_BUGREPORT='bug-bash@gnu.org'
 
 ac_unique_file="shell.h"
@@ -1284,7 +1284,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures bash 4.0-devel to adapt to many kinds of systems.
+\`configure' configures bash 4.0-alpha to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1349,7 +1349,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of bash 4.0-devel:";;
+     short | recursive ) echo "Configuration of bash 4.0-alpha:";;
    esac
   cat <<\_ACEOF
 
@@ -1519,7 +1519,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-bash configure 4.0-devel
+bash configure 4.0-alpha
 generated by GNU Autoconf 2.61
 
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1533,7 +1533,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by bash $as_me 4.0-devel, which was
+It was created by bash $as_me 4.0-alpha, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   $ $0 $@
@@ -1930,7 +1930,7 @@ ac_config_headers="$ac_config_headers config.h"
 
 
 BASHVERS=4.0
-RELSTATUS=devel
+RELSTATUS=alpha
 
 case "$RELSTATUS" in
 alp*|bet*|dev*|rc*|maint*)     DEBUG='-DDEBUG' MALLOC_DEBUG='-DMALLOC_DEBUG' ;;
@@ -28374,7 +28374,7 @@ exec 6>&1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by bash $as_me 4.0-devel, which was
+This file was extended by bash $as_me 4.0-alpha, which was
 generated by GNU Autoconf 2.61.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -28427,7 +28427,7 @@ Report bugs to <bug-autoconf@gnu.org>."
 _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-bash config.status 4.0-devel
+bash config.status 4.0-alpha
 configured by $0, generated by GNU Autoconf 2.61,
   with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
index ac12ff7e0c6396f0f621b5d05cafef57b17e415f..aca356dbaf1a9dada0d205118fb310dfd2927936 100644 (file)
@@ -22,10 +22,10 @@ dnl Process this file with autoconf to produce a configure script.
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 # 02111-1307, USA.
 
-AC_REVISION([for Bash 4.0, version 4.003])dnl
+AC_REVISION([for Bash 4.0, version 4.004])dnl
 
 define(bashvers, 4.0)
-define(relstatus, devel)
+define(relstatus, alpha)
 
 AC_INIT([bash], bashvers-relstatus, [bug-bash@gnu.org])
 
index 8cd75224c5f404c9d7db48d197d21dfd8f023806..8f7c7e25db8ad5daa0cb5a797cc6653a43809b02 100644 (file)
Binary files a/doc/bash.pdf and b/doc/bash.pdf differ
index 9e54a63cc4782581e1fec62c2ca3b21ea78e44e0..f1ffe18a1df78ec356a3292ba466d54ce49b504c 100644 (file)
@@ -1,6 +1,6 @@
 %!PS-Adobe-3.0
 %%Creator: groff version 1.19.2
-%%CreationDate: Thu Jul 24 09:12:42 2008
+%%CreationDate: Tue Aug  5 10:31:32 2008
 %%DocumentNeededResources: font Times-Roman
 %%+ font Times-Bold
 %%+ font Times-Italic
@@ -3889,226 +3889,227 @@ F1(kill)3.395 E F0 .894(command to kill it.)3.395 F(A)5.894 E F1(^Z)
 3.394 E F0(tak)3.394 E(es)-.1 E(ef)108 108 Q .948(fect immediately)-.25
 F 3.448(,a)-.65 G .948(nd has the additional side ef)-3.448 F .948
 (fect of causing pending output and typeahead to be dis-)-.25 F(carded.)
-108 120 Q 1.098(There are a number of w)108 136.8 R 1.097
-(ays to refer to a job in the shell.)-.1 F 1.097(The character)6.097 F
-F1(%)3.597 E F0 1.097(introduces a job name.)3.597 F(Job)6.097 E(number)
-108 148.8 Q/F2 10/Times-Italic@0 SF(n)3.13 E F0 .27
-(may be referred to as)3.01 F F1(%n)2.77 E F0 5.27(.A)C .27
-(job may also be referred to using a pre\214x of the name used to start)
--2.5 F .277(it, or using a substring that appears in its command line.)
-108 160.8 R -.15(Fo)5.277 G 2.777(re).15 G(xample,)-2.927 E F1(%ce)2.777
-E F0 .277(refers to a stopped)2.777 F F1(ce)2.777 E F0(job)2.777 E 5.277
-(.I)-.4 G 2.777(fa)-5.277 G .38(pre\214x matches more than one job,)108
-172.8 R F1(bash)2.88 E F0 .38(reports an error)2.88 F 5.38(.U)-.55 G
-(sing)-5.38 E F1(%?ce)2.88 E F0 2.88(,o)C 2.88(nt)-2.88 G .38
-(he other hand, refers to an)-2.88 F 2.88(yj)-.15 G(ob)-2.88 E .623
-(containing the string)108 184.8 R F1(ce)3.123 E F0 .622
-(in its command line.)3.123 F .622
-(If the substring matches more than one job,)5.622 F F1(bash)3.122 E F0
-.622(reports an)3.122 F(error)108 196.8 Q 5.143(.T)-.55 G .143
-(he symbols)-5.143 F F1(%%)2.643 E F0(and)2.643 E F1(%+)2.643 E F0 .143
-(refer to the shell')2.643 F 2.643(sn)-.55 G .143(otion of the)-2.643 F
-F2(curr)2.643 E .143(ent job)-.37 F F0 2.643(,w).23 G .143
-(hich is the last job stopped)-2.643 F 1.209(while it w)108 208.8 R
-1.209(as in the fore)-.1 F 1.208(ground or started in the background.)
--.15 F(The)6.208 E F2(pr)4.958 E -.15(ev)-.37 G 1.208(ious job).15 F F0
-1.208(may be referenced using)3.938 F F1<25ad>108 220.8 Q F0 5.208(.I)C
-2.708(ft)-5.208 G .208(here is only a single job,)-2.708 F F1(%+)2.708 E
-F0(and)2.708 E F1<25ad>2.708 E F0 .208
-(can both be used to refer to that job)2.708 F 5.209(.I)-.4 G 2.709(no)
--5.209 G .209(utput pertaining to)-2.709 F .132
-(jobs \(e.g., the output of the)108 232.8 R F1(jobs)2.632 E F0 .132
-(command\), the current job is al)2.632 F -.1(wa)-.1 G .131
-(ys \215agged with a).1 F F1(+)2.631 E F0 2.631(,a)C .131(nd the pre)
--2.631 F .131(vious job)-.25 F(with a)108 244.8 Q F1<ad>2.5 E F0 5(.A)C
-(single % \(with no accompan)-2.5 E
-(ying job speci\214cation\) also refers to the current job)-.15 E(.)-.4
-E .443(Simply naming a job can be used to bring it into the fore)108
-261.6 R(ground:)-.15 E F1(%1)2.944 E F0 .444(is a synon)2.944 F .444
-(ym for)-.15 F F1 -.63(``)2.944 G .444(fg %1').63 F(')-.63 E F0 2.944
-(,b)C(ringing)-2.944 E 1.473(job 1 from the background into the fore)108
-273.6 R 3.973(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.972 G 1.472
-(%1 &').63 F(')-.63 E F0 1.472(resumes job 1 in the background,)3.972 F
-(equi)108 285.6 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1')
-.63 E(')-.63 E F0(.)A .13(The shell learns immediately whene)108 302.4 R
--.15(ve)-.25 G 2.63(raj).15 G .13(ob changes state.)-2.63 F(Normally)
-5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.631 G .131
-(its until it is about to print a).1 F .158
-(prompt before reporting changes in a job')108 314.4 R 2.658(ss)-.55 G
-.158(tatus so as to not interrupt an)-2.658 F 2.657(yo)-.15 G .157
-(ther output.)-2.657 F .157(If the)5.157 F F1<ad62>2.657 E F0 .157
-(option to)2.657 F(the)108 326.4 Q F1(set)3.951 E F0 -.2(bu)3.951 G
-1.451(iltin command is enabled,).2 F F1(bash)3.951 E F0 1.452
-(reports such changes immediately)3.951 F 6.452(.A)-.65 G 1.752 -.15
-(ny t)-6.452 H 1.452(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)3.952 E
-F0(is)3.702 E -.15(exe)108 338.4 S(cuted for each child that e).15 E
-(xits.)-.15 E .033(If an attempt to e)108 355.2 R(xit)-.15 E F1(bash)
-2.533 E F0 .033(is made while jobs are stopped \(or)2.533 F 2.532(,i)-.4
-G 2.532(ft)-2.532 G(he)-2.532 E F1(checkjobs)2.532 E F0 .032
-(shell option has been enabled)2.532 F 2.019(using the)108 367.2 R F1
-(shopt)4.519 E F0 -.2(bu)4.519 G 2.019
-(iltin, running\), the shell prints a w).2 F 2.02
-(arning message, and, if the)-.1 F F1(checkjobs)4.52 E F0 2.02
-(option is)4.52 F .459(enabled, lists the jobs and their statuses.)108
-379.2 R(The)5.459 E F1(jobs)2.959 E F0 .458
-(command may then be used to inspect their status.)2.958 F .458(If a)
-5.458 F .603(second attempt to e)108 391.2 R .604
+108 120 Q .777(There are a number of w)108 136.8 R .777
+(ays to refer to a job in the shell.)-.1 F .777(The character)5.777 F F1
+(%)3.277 E F0 .777(introduces a job speci\214cation)3.277 F(\()108 148.8
+Q/F2 10/Times-Italic@0 SF(jobspec)A F0 3.457(\). Job)B(number)3.457 E F2
+(n)3.817 E F0 .957(may be referred to as)3.697 F F1(%n)3.457 E F0 5.957
+(.A)C .957(job may also be referred to using a pre\214x of the)-2.5 F
+.59(name used to start it, or using a substring that appears in its com\
+mand line.)108 160.8 R -.15(Fo)5.59 G 3.09(re).15 G(xample,)-3.24 E F1
+(%ce)3.09 E F0 .59(refers to a)3.09 F(stopped)108 172.8 Q F1(ce)3.463 E
+F0(job)3.463 E 5.963(.I)-.4 G 3.463(fap)-5.963 G .963
+(re\214x matches more than one job,)-3.463 F F1(bash)3.463 E F0 .963
+(reports an error)3.463 F 5.963(.U)-.55 G(sing)-5.963 E F1(%?ce)3.463 E
+F0 3.464(,o)C 3.464(nt)-3.464 G .964(he other)-3.464 F .087
+(hand, refers to an)108 184.8 R 2.587(yj)-.15 G .087
+(ob containing the string)-2.587 F F1(ce)2.587 E F0 .087
+(in its command line.)2.587 F .087
+(If the substring matches more than one)5.087 F(job,)108 196.8 Q F1
+(bash)2.518 E F0 .018(reports an error)2.518 F 5.018(.T)-.55 G .018
+(he symbols)-5.018 F F1(%%)2.518 E F0(and)2.518 E F1(%+)2.518 E F0 .018
+(refer to the shell')2.518 F 2.518(sn)-.55 G .018(otion of the)-2.518 F
+F2(curr)2.518 E .018(ent job)-.37 F F0 2.518(,w).23 G .018(hich is)
+-2.518 F .495(the last job stopped while it w)108 208.8 R .495
+(as in the fore)-.1 F .495(ground or started in the background.)-.15 F
+(The)5.494 E F2(pr)4.244 E -.15(ev)-.37 G .494(ious job).15 F F0 .494
+(may be)3.224 F .787(referenced using)108 220.8 R F1<25ad>3.287 E F0
+5.787(.I)C 3.287(ft)-5.787 G .787(here is only a single job,)-3.287 F F1
+(%+)3.287 E F0(and)3.287 E F1<25ad>3.287 E F0 .788
+(can both be used to refer to that job)3.287 F 5.788(.I)-.4 G(n)-5.788 E
+.257(output pertaining to jobs \(e.g., the output of the)108 232.8 R F1
+(jobs)2.756 E F0 .256(command\), the current job is al)2.756 F -.1(wa)
+-.1 G .256(ys \215agged with a).1 F F1(+)2.756 E F0(,)A .41(and the pre)
+108 244.8 R .41(vious job with a)-.25 F F1<ad>2.91 E F0 5.41(.A)C .411
+(single % \(with no accompan)-2.5 F .411
+(ying job speci\214cation\) also refers to the cur)-.15 F(-)-.2 E
+(rent job)108 256.8 Q(.)-.4 E .444
+(Simply naming a job can be used to bring it into the fore)108 273.6 R
+(ground:)-.15 E F1(%1)2.943 E F0 .443(is a synon)2.943 F .443(ym for)
+-.15 F F1 -.63(``)2.943 G .443(fg %1').63 F(')-.63 E F0 2.943(,b)C
+(ringing)-2.943 E 1.472(job 1 from the background into the fore)108
+285.6 R 3.972(ground. Similarly)-.15 F(,)-.65 E F1 -.63(``)3.973 G 1.473
+(%1 &').63 F(')-.63 E F0 1.473(resumes job 1 in the background,)3.973 F
+(equi)108 297.6 Q -.25(va)-.25 G(lent to).25 E F1 -.63(``)2.5 G(bg %1')
+.63 E(')-.63 E F0(.)A .131(The shell learns immediately whene)108 314.4
+R -.15(ve)-.25 G 2.631(raj).15 G .131(ob changes state.)-2.631 F
+(Normally)5.131 E(,)-.65 E F1(bash)2.631 E F0 -.1(wa)2.63 G .13
+(its until it is about to print a).1 F .157
+(prompt before reporting changes in a job')108 326.4 R 2.657(ss)-.55 G
+.157(tatus so as to not interrupt an)-2.657 F 2.658(yo)-.15 G .158
+(ther output.)-2.658 F .158(If the)5.158 F F1<ad62>2.658 E F0 .158
+(option to)2.658 F(the)108 338.4 Q F1(set)3.952 E F0 -.2(bu)3.952 G
+1.452(iltin command is enabled,).2 F F1(bash)3.952 E F0 1.451
+(reports such changes immediately)3.952 F 6.451(.A)-.65 G 1.751 -.15
+(ny t)-6.451 H 1.451(rap on).15 F/F3 9/Times-Bold@0 SF(SIGCHLD)3.951 E
+F0(is)3.701 E -.15(exe)108 350.4 S(cuted for each child that e).15 E
+(xits.)-.15 E .032(If an attempt to e)108 367.2 R(xit)-.15 E F1(bash)
+2.532 E F0 .032(is made while jobs are stopped \(or)2.532 F 2.533(,i)-.4
+G 2.533(ft)-2.533 G(he)-2.533 E F1(checkjobs)2.533 E F0 .033
+(shell option has been enabled)2.533 F 2.02(using the)108 379.2 R F1
+(shopt)4.52 E F0 -.2(bu)4.52 G 2.02
+(iltin, running\), the shell prints a w).2 F 2.019
+(arning message, and, if the)-.1 F F1(checkjobs)4.519 E F0 2.019
+(option is)4.519 F .458(enabled, lists the jobs and their statuses.)108
+391.2 R(The)5.458 E F1(jobs)2.958 E F0 .459
+(command may then be used to inspect their status.)2.958 F .459(If a)
+5.459 F .604(second attempt to e)108 403.2 R .604
 (xit is made without an interv)-.15 F .604
 (ening command, the shell does not print another w)-.15 F(arning,)-.1 E
-(and an)108 403.2 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F4
-10.95/Times-Bold@0 SF(PR)72 420 Q(OMPTING)-.329 E F0 .645(When e)108 432
-R -.15(xe)-.15 G .645(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)
--.65 E F1(bash)3.145 E F0 .645(displays the primary prompt)3.145 F F3
-(PS1)3.145 E F0 .645(when it is ready to read a command,)2.895 F 1.825
-(and the secondary prompt)108 444 R F3(PS2)4.325 E F0 1.825
-(when it needs more input to complete a command.)4.075 F F1(Bash)6.826 E
-F0(allo)4.326 E 1.826(ws these)-.25 F 1.499(prompt strings to be custom\
+(and an)108 415.2 Q 2.5(ys)-.15 G(topped jobs are terminated.)-2.5 E/F4
+10.95/Times-Bold@0 SF(PR)72 432 Q(OMPTING)-.329 E F0 .644(When e)108 444
+R -.15(xe)-.15 G .644(cuting interacti).15 F -.15(ve)-.25 G(ly).15 E(,)
+-.65 E F1(bash)3.144 E F0 .645(displays the primary prompt)3.145 F F3
+(PS1)3.145 E F0 .645(when it is ready to read a command,)2.895 F 1.826
+(and the secondary prompt)108 456 R F3(PS2)4.326 E F0 1.825
+(when it needs more input to complete a command.)4.076 F F1(Bash)6.825 E
+F0(allo)4.325 E 1.825(ws these)-.25 F 1.499(prompt strings to be custom\
 ized by inserting a number of backslash-escaped special characters that\
- are)108 456 R(decoded as follo)108 468 Q(ws:)-.25 E F1(\\a)144 480 Q F0
-(an ASCII bell character \(07\))28.22 E F1(\\d)144 492 Q F0
+ are)108 468 R(decoded as follo)108 480 Q(ws:)-.25 E F1(\\a)144 492 Q F0
+(an ASCII bell character \(07\))28.22 E F1(\\d)144 504 Q F0
 (the date in "W)27.66 E(eekday Month Date" format \(e.g., "T)-.8 E
-(ue May 26"\))-.45 E F1(\\D{)144 504 Q F2(format)A F1(})A F0(the)180 516
-Q F2(format)3.926 E F0 1.426(is passed to)3.926 F F2(strftime)3.926 E F0
+(ue May 26"\))-.45 E F1(\\D{)144 516 Q F2(format)A F1(})A F0(the)180 528
+Q F2(format)3.927 E F0 1.427(is passed to)3.927 F F2(strftime)3.927 E F0
 1.427(\(3\) and the result is inserted into the prompt string; an)B
-(empty)180 528 Q F2(format)2.5 E F0
+(empty)180 540 Q F2(format)2.5 E F0
 (results in a locale-speci\214c time representation.)2.5 E
-(The braces are required)5 E F1(\\e)144 540 Q F0
-(an ASCII escape character \(033\))28.78 E F1(\\h)144 552 Q F0
-(the hostname up to the \214rst `.)27.66 E(')-.7 E F1(\\H)144 564 Q F0
-(the hostname)25.44 E F1(\\j)144 576 Q F0
+(The braces are required)5 E F1(\\e)144 552 Q F0
+(an ASCII escape character \(033\))28.78 E F1(\\h)144 564 Q F0
+(the hostname up to the \214rst `.)27.66 E(')-.7 E F1(\\H)144 576 Q F0
+(the hostname)25.44 E F1(\\j)144 588 Q F0
 (the number of jobs currently managed by the shell)29.89 E F1(\\l)144
-588 Q F0(the basename of the shell')30.44 E 2.5(st)-.55 G(erminal de)
--2.5 E(vice name)-.25 E F1(\\n)144 600 Q F0(ne)27.66 E(wline)-.25 E F1
-(\\r)144 612 Q F0(carriage return)28.78 E F1(\\s)144 624 Q F0
+600 Q F0(the basename of the shell')30.44 E 2.5(st)-.55 G(erminal de)
+-2.5 E(vice name)-.25 E F1(\\n)144 612 Q F0(ne)27.66 E(wline)-.25 E F1
+(\\r)144 624 Q F0(carriage return)28.78 E F1(\\s)144 636 Q F0
 (the name of the shell, the basename of)29.33 E F1($0)2.5 E F0
 (\(the portion follo)2.5 E(wing the \214nal slash\))-.25 E F1(\\t)144
-636 Q F0(the current time in 24-hour HH:MM:SS format)29.89 E F1(\\T)144
-648 Q F0(the current time in 12-hour HH:MM:SS format)26.55 E F1(\\@)144
-660 Q F0(the current time in 12-hour am/pm format)23.92 E F1(\\A)144 672
-Q F0(the current time in 24-hour HH:MM format)26 E F1(\\u)144 684 Q F0
-(the username of the current user)27.66 E F1(\\v)144 696 Q F0(the v)
-28.22 E(ersion of)-.15 E F1(bash)2.5 E F0(\(e.g., 2.00\))2.5 E F1(\\V)
-144 708 Q F0(the release of)26 E F1(bash)2.5 E F0 2.5(,v)C
-(ersion + patch le)-2.65 E -.15(ve)-.25 G 2.5(l\().15 G(e.g., 2.00.0\))
--2.5 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(32)200.665 E 0 Cg EP
+648 Q F0(the current time in 24-hour HH:MM:SS format)29.89 E F1(\\T)144
+660 Q F0(the current time in 12-hour HH:MM:SS format)26.55 E F1(\\@)144
+672 Q F0(the current time in 12-hour am/pm format)23.92 E F1(\\A)144 684
+Q F0(the current time in 24-hour HH:MM format)26 E F1(\\u)144 696 Q F0
+(the username of the current user)27.66 E F1(\\v)144 708 Q F0(the v)
+28.22 E(ersion of)-.15 E F1(bash)2.5 E F0(\(e.g., 2.00\))2.5 E
+(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(32)200.665 E 0 Cg EP
 %%Page: 33 33
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E/F1 10/Times-Bold@0 SF(\\w)144 84 Q F0 4.288(the current w)26 F
-4.288(orking directory)-.1 F 6.787(,w)-.65 G(ith)-6.787 E F1($HOME)6.787
-E F0(abbre)6.787 E 4.287(viated with a tilde \(uses the)-.25 F F1($PR)
-180 96 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 -.25(va)2.5 G(riable\)).25 E F1
-(\\W)144 108 Q F0(the basename of the current w)23.22 E
+-.35 E/F1 10/Times-Bold@0 SF(\\V)144 84 Q F0(the release of)26 E F1
+(bash)2.5 E F0 2.5(,v)C(ersion + patch le)-2.65 E -.15(ve)-.25 G 2.5
+(l\().15 G(e.g., 2.00.0\))-2.5 E F1(\\w)144 96 Q F0 4.287(the current w)
+26 F 4.287(orking directory)-.1 F 6.787(,w)-.65 G(ith)-6.787 E F1($HOME)
+6.787 E F0(abbre)6.787 E 4.288(viated with a tilde \(uses the)-.25 F F1
+($PR)180 108 Q(OMPT_DIR)-.3 E(TRIM)-.4 E F0 -.25(va)2.5 G(riable\)).25 E
+F1(\\W)144 120 Q F0(the basename of the current w)23.22 E
 (orking directory)-.1 E 2.5(,w)-.65 G(ith)-2.5 E F1($HOME)2.5 E F0
-(abbre)2.5 E(viated with a tilde)-.25 E F1(\\!)144 120 Q F0
-(the history number of this command)29.89 E F1(\\#)144 132 Q F0
-(the command number of this command)28.22 E F1(\\$)144 144 Q F0
+(abbre)2.5 E(viated with a tilde)-.25 E F1(\\!)144 132 Q F0
+(the history number of this command)29.89 E F1(\\#)144 144 Q F0
+(the command number of this command)28.22 E F1(\\$)144 156 Q F0
 (if the ef)28.22 E(fecti)-.25 E .3 -.15(ve U)-.25 H(ID is 0, a).15 E F1
-(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E(\\)144 156 Q/F2 10
+(#)2.5 E F0 2.5(,o)C(therwise a)-2.5 E F1($)2.5 E(\\)144 168 Q/F2 10
 /Times-Italic@0 SF(nnn)A F0
 (the character corresponding to the octal number)18.22 E F2(nnn)2.5 E F1
-(\\\\)144 168 Q F0 2.5(ab)30.44 G(ackslash)-2.5 E F1(\\[)144 180 Q F0
+(\\\\)144 180 Q F0 2.5(ab)30.44 G(ackslash)-2.5 E F1(\\[)144 192 Q F0
 (be)29.89 E 1.257(gin a sequence of non-printing characters, which coul\
 d be used to embed a terminal)-.15 F(control sequence into the prompt)
-180 192 Q F1(\\])144 204 Q F0(end a sequence of non-printing characters)
-29.89 E .12(The command number and the history number are usually dif)
-108 220.8 R .119(ferent: the history number of a command is its)-.25 F
+180 204 Q F1(\\])144 216 Q F0(end a sequence of non-printing characters)
+29.89 E .119(The command number and the history number are usually dif)
+108 232.8 R .12(ferent: the history number of a command is its)-.25 F
 1.585(position in the history list, which may include commands restored\
- from the history \214le \(see)108 232.8 R/F3 9/Times-Bold@0 SF(HIST)
-4.085 E(OR)-.162 E(Y)-.315 E F0(belo)108 244.8 Q .541(w\), while the co\
+ from the history \214le \(see)108 244.8 R/F3 9/Times-Bold@0 SF(HIST)
+4.084 E(OR)-.162 E(Y)-.315 E F0(belo)108 256.8 Q .541(w\), while the co\
 mmand number is the position in the sequence of commands e)-.25 F -.15
-(xe)-.15 G .54(cuted during the cur).15 F(-)-.2 E .546
-(rent shell session.)108 256.8 R .546
+(xe)-.15 G .541(cuted during the cur).15 F(-)-.2 E .546
+(rent shell session.)108 268.8 R .546
 (After the string is decoded, it is e)5.546 F .546
 (xpanded via parameter e)-.15 F .546(xpansion, command substitu-)-.15 F
-.352(tion, arithmetic e)108 268.8 R .352(xpansion, and quote remo)-.15 F
+.351(tion, arithmetic e)108 280.8 R .352(xpansion, and quote remo)-.15 F
 -.25(va)-.15 G .352(l, subject to the v).25 F .352(alue of the)-.25 F F1
-(pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .351(shell option \(see the)2.852
-F(description of the)108 280.8 Q F1(shopt)2.5 E F0(command under)2.5 E
+(pr)2.852 E(omptv)-.18 E(ars)-.1 E F0 .352(shell option \(see the)2.852
+F(description of the)108 292.8 Q F1(shopt)2.5 E F0(command under)2.5 E
 F3(SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)
--.25 E/F4 10.95/Times-Bold@0 SF(READLINE)72 297.6 Q F0 .15
+-.25 E/F4 10.95/Times-Bold@0 SF(READLINE)72 309.6 Q F0 .151
 (This is the library that handles reading input when using an interacti)
-108 309.6 R .451 -.15(ve s)-.25 H .151(hell, unless the).15 F F1
-(\255\255noediting)2.651 E F0(option)2.651 E .067(is gi)108 321.6 R -.15
-(ve)-.25 G 2.567(na).15 G 2.566(ts)-2.567 G .066(hell in)-2.566 F -.2
+108 321.6 R .45 -.15(ve s)-.25 H .15(hell, unless the).15 F F1
+(\255\255noediting)2.65 E F0(option)2.65 E .066(is gi)108 333.6 R -.15
+(ve)-.25 G 2.566(na).15 G 2.566(ts)-2.566 G .066(hell in)-2.566 F -.2
 (vo)-.4 G 2.566(cation. By).2 F(def)2.566 E .066
 (ault, the line editing commands are similar to those of emacs.)-.1 F
-2.566(Av)5.066 G(i-style)-2.566 E .565(line editing interf)108 333.6 R
-.565(ace is also a)-.1 F -.25(va)-.2 G 3.065(ilable. T).25 F 3.065(ot)
+2.567(Av)5.067 G(i-style)-2.567 E .566(line editing interf)108 345.6 R
+.566(ace is also a)-.1 F -.25(va)-.2 G 3.065(ilable. T).25 F 3.065(ot)
 -.8 G .565(urn of)-3.065 F 3.065(fl)-.25 G .565
-(ine editing after the shell is running, use the)-3.065 F F1 .566
-(+o emacs)3.066 F F0(or)108 345.6 Q F1(+o vi)2.5 E F0(options to the)2.5
+(ine editing after the shell is running, use the)-3.065 F F1 .565
+(+o emacs)3.065 F F0(or)108 357.6 Q F1(+o vi)2.5 E F0(options to the)2.5
 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin \(see).2 E F3(SHELL B)2.5 E(UIL)
 -.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25 E F1
-(Readline Notation)87 362.4 Q F0 .568
-(In this section, the emacs-style notation is used to denote k)108 374.4
-R -.15(ey)-.1 G(strok).15 E 3.067(es. Control)-.1 F -.1(ke)3.067 G .567
-(ys are denoted by C\255)-.05 F F2 -.1(ke)C(y)-.2 E F0(,)A 1.152
-(e.g., C\255n means Control\255N.)108 386.4 R(Similarly)6.152 E(,)-.65 E
-F2(meta)4.032 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255)-.05 F
-F2 -.1(ke)C(y)-.2 E F0 3.653(,s)C 3.653(oM)-3.653 G 1.153
-(\255x means Meta\255X.)-3.653 F(\(On)6.153 E -.1(ke)108 398.4 S .831
-(yboards without a)-.05 F F2(meta)3.711 E F0 -.1(ke)3.591 G 2.131 -.65
-(y, M)-.05 H<ad>.65 E F2(x)A F0 .831(means ESC)3.331 F F2(x)3.331 E F0
-3.331(,i)C .83(.e., press the Escape k)-3.331 F 1.13 -.15(ey t)-.1 H .83
-(hen the).15 F F2(x)4.1 E F0 -.1(ke)3.86 G 4.63 -.65(y. T)-.05 H .83
-(his mak).65 F(es)-.1 E .599(ESC the)108 410.4 R F2 .599(meta pr)3.099 F
-(e\214x)-.37 E F0 5.599(.T)C .599(he combination M\255C\255)-5.599 F F2
-(x)A F0 .599(means ESC\255Control\255)3.099 F F2(x)A F0 3.099(,o)C 3.099
-(rp)-3.099 G .6(ress the Escape k)-3.099 F .9 -.15(ey t)-.1 H .6
-(hen hold).15 F(the Control k)108 422.4 Q .3 -.15(ey w)-.1 H
+(Readline Notation)87 374.4 Q F0 .567
+(In this section, the emacs-style notation is used to denote k)108 386.4
+R -.15(ey)-.1 G(strok).15 E 3.068(es. Control)-.1 F -.1(ke)3.068 G .568
+(ys are denoted by C\255)-.05 F F2 -.1(ke)C(y)-.2 E F0(,)A 1.153
+(e.g., C\255n means Control\255N.)108 398.4 R(Similarly)6.153 E(,)-.65 E
+F2(meta)4.033 E F0 -.1(ke)3.913 G 1.153(ys are denoted by M\255)-.05 F
+F2 -.1(ke)C(y)-.2 E F0 3.652(,s)C 3.652(oM)-3.652 G 1.152
+(\255x means Meta\255X.)-3.652 F(\(On)6.152 E -.1(ke)108 410.4 S .83
+(yboards without a)-.05 F F2(meta)3.71 E F0 -.1(ke)3.59 G 2.13 -.65
+(y, M)-.05 H<ad>.65 E F2(x)A F0 .83(means ESC)3.33 F F2(x)3.33 E F0 3.33
+(,i)C .831(.e., press the Escape k)-3.33 F 1.131 -.15(ey t)-.1 H .831
+(hen the).15 F F2(x)4.101 E F0 -.1(ke)3.861 G 4.631 -.65(y. T)-.05 H
+.831(his mak).65 F(es)-.1 E .6(ESC the)108 422.4 R F2 .6(meta pr)3.1 F
+(e\214x)-.37 E F0 5.6(.T)C .6(he combination M\255C\255)-5.6 F F2(x)A F0
+.599(means ESC\255Control\255)3.099 F F2(x)A F0 3.099(,o)C 3.099(rp)
+-3.099 G .599(ress the Escape k)-3.099 F .899 -.15(ey t)-.1 H .599
+(hen hold).15 F(the Control k)108 434.4 Q .3 -.15(ey w)-.1 H
 (hile pressing the).15 E F2(x)3.27 E F0 -.1(ke)3.03 G -.65(y.)-.05 G(\))
-.65 E .62(Readline commands may be gi)108 439.2 R -.15(ve)-.25 G 3.119
+.65 E .619(Readline commands may be gi)108 451.2 R -.15(ve)-.25 G 3.119
 (nn).15 G(umeric)-3.119 E F2(ar)3.119 E(guments)-.37 E F0 3.119(,w).27 G
-.619(hich normally act as a repeat count.)-3.119 F(Sometimes,)5.619 E
-(ho)108 451.2 Q(we)-.25 E -.15(ve)-.25 G 1.418 -.4(r, i).15 H 3.118(ti)
-.4 G 3.119(st)-3.118 G .619(he sign of the ar)-3.119 F .619
+.619(hich normally act as a repeat count.)-3.119 F(Sometimes,)5.62 E(ho)
+108 463.2 Q(we)-.25 E -.15(ve)-.25 G 1.419 -.4(r, i).15 H 3.119(ti).4 G
+3.119(st)-3.119 G .619(he sign of the ar)-3.119 F .619
 (gument that is signi\214cant.)-.18 F -.15(Pa)5.619 G .619(ssing a ne)
 .15 F -.05(ga)-.15 G(ti).05 E .919 -.15(ve a)-.25 H -.18(rg).15 G .619
-(ument to a command that).18 F 1.019(acts in the forw)108 463.2 R 1.018
+(ument to a command that).18 F 1.018(acts in the forw)108 475.2 R 1.018
 (ard direction \(e.g.,)-.1 F F1(kill\255line)3.518 E F0 3.518(\)c)C
-1.018(auses that command to act in a backw)-3.518 F 1.018
-(ard direction.)-.1 F(Com-)6.018 E(mands whose beha)108 475.2 Q
+1.018(auses that command to act in a backw)-3.518 F 1.019
+(ard direction.)-.1 F(Com-)6.019 E(mands whose beha)108 487.2 Q
 (vior with ar)-.2 E(guments de)-.18 E(viates from this are noted belo)
--.25 E -.65(w.)-.25 G .811(When a command is described as)108 492 R F2
+-.25 E -.65(w.)-.25 G .812(When a command is described as)108 504 R F2
 (killing)3.311 E F0(te)3.311 E .811(xt, the te)-.15 F .811
-(xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .812
-(or possible future retrie)-3.311 F -.25(va)-.25 G 3.312(l\().25 G F2
-(yank-)-3.312 E(ing)108 504 Q F0 2.529(\). The)B .029(killed te)2.529 F
+(xt deleted is sa)-.15 F -.15(ve)-.2 G 3.311(df).15 G .811
+(or possible future retrie)-3.311 F -.25(va)-.25 G 3.311(l\().25 G F2
+(yank-)-3.311 E(ing)108 516 Q F0 2.529(\). The)B .029(killed te)2.529 F
 .029(xt is sa)-.15 F -.15(ve)-.2 G 2.529(di).15 G 2.529(na)-2.529 G F2
 .029(kill ring)B F0 5.029(.C)C(onsecuti)-5.029 E .329 -.15(ve k)-.25 H
 .029(ills cause the te).15 F .029(xt to be accumulated into one unit,)
--.15 F .567(which can be yank)108 516 R .567(ed all at once.)-.1 F .567
+-.15 F .567(which can be yank)108 528 R .567(ed all at once.)-.1 F .567
 (Commands which do not kill te)5.567 F .567
 (xt separate the chunks of te)-.15 F .567(xt on the kill)-.15 F(ring.)
-108 528 Q F1(Readline Initialization)87 544.8 Q F0 .091(Readline is cus\
-tomized by putting commands in an initialization \214le \(the)108 556.8
-R F2(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .091
-(name of this \214le)2.591 F .196(is tak)108 568.8 R .196(en from the v)
+108 540 Q F1(Readline Initialization)87 556.8 Q F0 .091(Readline is cus\
+tomized by putting commands in an initialization \214le \(the)108 568.8
+R F2(inputr)2.591 E(c)-.37 E F0 2.591(\214le\). The)2.591 F .092
+(name of this \214le)2.591 F .197(is tak)108 580.8 R .196(en from the v)
 -.1 F .196(alue of the)-.25 F F3(INPUTRC)2.696 E F0 -.25(va)2.446 G
 2.696(riable. If).25 F .196(that v)2.696 F .196
 (ariable is unset, the def)-.25 F .196(ault is)-.1 F F2(~/.inputr)2.696
-E(c)-.37 E F0 5.196(.W).31 G .197(hen a)-5.196 F 1.034(program which us\
+E(c)-.37 E F0 5.196(.W).31 G .196(hen a)-5.196 F 1.034(program which us\
 es the readline library starts up, the initialization \214le is read, a\
-nd the k)108 580.8 R 1.334 -.15(ey b)-.1 H 1.034(indings and).15 F -.25
-(va)108 592.8 S 1.149(riables are set.).25 F 1.149(There are only a fe)
-6.149 F 3.649(wb)-.25 G 1.149(asic constructs allo)-3.649 F 1.15
-(wed in the readline initialization \214le.)-.25 F(Blank)6.15 E .737
-(lines are ignored.)108 604.8 R .737(Lines be)5.737 F .737
+nd the k)108 592.8 R 1.335 -.15(ey b)-.1 H 1.035(indings and).15 F -.25
+(va)108 604.8 S 1.15(riables are set.).25 F 1.15(There are only a fe)
+6.15 F 3.649(wb)-.25 G 1.149(asic constructs allo)-3.649 F 1.149
+(wed in the readline initialization \214le.)-.25 F(Blank)6.149 E .736
+(lines are ignored.)108 616.8 R .737(Lines be)5.737 F .737
 (ginning with a)-.15 F F1(#)3.237 E F0 .737(are comments.)3.237 F .737
-(Lines be)5.737 F .737(ginning with a)-.15 F F1($)3.237 E F0 .736
-(indicate conditional)3.236 F 2.5(constructs. Other)108 616.8 R
+(Lines be)5.737 F .737(ginning with a)-.15 F F1($)3.237 E F0 .737
+(indicate conditional)3.237 F 2.5(constructs. Other)108 628.8 R
 (lines denote k)2.5 E .3 -.15(ey b)-.1 H(indings and v).15 E
-(ariable settings.)-.25 E .986(The def)108 633.6 R .986(ault k)-.1 F
+(ariable settings.)-.25 E .987(The def)108 645.6 R .987(ault k)-.1 F
 -.15(ey)-.1 G .987(-bindings may be changed with an).15 F F2(inputr)
 3.497 E(c)-.37 E F0 3.487(\214le. Other)3.797 F .987
-(programs that use this library may)3.487 F(add their o)108 645.6 Q
-(wn commands and bindings.)-.25 E -.15(Fo)108 662.4 S 2.5(re).15 G
-(xample, placing)-2.65 E(M\255Control\255u: uni)144 679.2 Q -.15(ve)-.25
-G(rsal\255ar).15 E(gument)-.18 E(or)108 691.2 Q(C\255Meta\255u: uni)144
-703.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 715.2
+(programs that use this library may)3.487 F(add their o)108 657.6 Q
+(wn commands and bindings.)-.25 E -.15(Fo)108 674.4 S 2.5(re).15 G
+(xample, placing)-2.65 E(M\255Control\255u: uni)144 691.2 Q -.15(ve)-.25
+G(rsal\255ar).15 E(gument)-.18 E(or)108 703.2 Q(C\255Meta\255u: uni)144
+715.2 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18 E(into the)108 727.2
 Q F2(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G
 (\255C\255u e)-2.5 E -.15(xe)-.15 G(cute the readline command).15 E F2
 (univer)2.5 E(sal\255ar)-.1 E(gument)-.37 E F0(.).68 E(GNU Bash-4.0)72
@@ -4118,12 +4119,12 @@ Q F2(inputr)2.51 E(c)-.37 E F0 -.1(wo)2.81 G(uld mak).1 E 2.5(eM)-.1 G
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E 1.261(The follo)108 84 R 1.261
+-.35 E 1.26(The follo)108 84 R 1.261
 (wing symbolic character names are recognized:)-.25 F/F1 10
 /Times-Italic@0 SF -.4(RU)3.761 G(BOUT).4 E F0(,)1.27 E F1(DEL)3.761 E
 F0(,).53 E F1(ESC)3.761 E F0(,).72 E F1(LFD)3.761 E F0(,).28 E F1
-(NEWLINE)3.76 E F0(,).73 E F1(RET)3.76 E F0(,)1.27 E F1(RETURN)108 96 Q
-F0(,)1.1 E F1(SPC)2.5 E F0(,).72 E F1(SP)2.5 E -.3(AC)-.9 G(E).3 E F0
+(NEWLINE)3.761 E F0(,).73 E F1(RET)3.761 E F0(,)1.27 E F1(RETURN)108 96
+F0(,)1.1 E F1(SPC)2.5 E F0(,).72 E F1(SP)2.5 E -.3(AC)-.9 G(E).3 E F0
 2.5(,a).73 G(nd)-2.5 E F1 -.5(TA)2.5 G(B).5 E F0(.).27 E .209
 (In addition to command names, readline allo)108 112.8 R .209(ws k)-.25
 F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209
@@ -4133,47 +4134,47 @@ F -.15(ey)-.1 G 2.709(st).15 G 2.709(ob)-2.709 G 2.709(eb)-2.709 G .209
 (The syntax for controlling k)108 153.6 R .666 -.15(ey b)-.1 H .366
 (indings in the).15 F F1(inputr)2.876 E(c)-.37 E F0 .366
 (\214le is simple.)3.176 F .366(All that is required is the name of the)
-5.366 F .382(command or the te)108 165.6 R .383(xt of a macro and a k)
+5.366 F .383(command or the te)108 165.6 R .383(xt of a macro and a k)
 -.15 F .683 -.15(ey s)-.1 H .383
 (equence to which it should be bound. The name may be speci-).15 F .853
 (\214ed in one of tw)108 177.6 R 3.353(ow)-.1 G .853
 (ays: as a symbolic k)-3.453 F 1.153 -.15(ey n)-.1 H .853
 (ame, possibly with).15 F F1(Meta\255)3.353 E F0(or)3.353 E F1(Contr)
 3.353 E(ol\255)-.45 E F0(pre\214x)3.353 E .853(es, or as a k)-.15 F -.15
-(ey)-.1 G(sequence.)108 189.6 Q 1.541(When using the form)108 206.4 R F2
--.1(ke)4.041 G(yname).1 E F0(:)A F1(function\255name).833 E F0(or)4.041
+(ey)-.1 G(sequence.)108 189.6 Q 1.542(When using the form)108 206.4 R F2
+-.1(ke)4.042 G(yname).1 E F0(:)A F1(function\255name).833 E F0(or)4.042
 E F1(macr)4.042 E(o)-.45 E F0(,)A F1 -.1(ke)4.042 G(yname)-.2 E F0 1.542
-(is the name of a k)4.222 F 1.842 -.15(ey s)-.1 H 1.542(pelled out in)
+(is the name of a k)4.222 F 1.841 -.15(ey s)-.1 H 1.541(pelled out in)
 .15 F 2.5(English. F)108 218.4 R(or e)-.15 E(xample:)-.15 E
 (Control-u: uni)144 242.4 Q -.15(ve)-.25 G(rsal\255ar).15 E(gument)-.18
 E(Meta-Rubout: backw)144 254.4 Q(ard-kill-w)-.1 E(ord)-.1 E
-(Control-o: "> output")144 266.4 Q .699(In the abo)108 283.2 R .998 -.15
+(Control-o: "> output")144 266.4 Q .698(In the abo)108 283.2 R .998 -.15
 (ve ex)-.15 H(ample,).15 E F1(C\255u)3.038 E F0 .698
 (is bound to the function)3.448 F F2(uni)3.198 E -.1(ve)-.1 G
 (rsal\255ar).1 E(gument)-.1 E F0(,)A F1(M\255DEL)3.878 E F0 .698
 (is bound to the func-)3.728 F(tion)108 295.2 Q F2
-(backward\255kill\255w)2.758 E(ord)-.1 E F0 2.758(,a)C(nd)-2.758 E F1
-(C\255o)2.598 E F0 .258(is bound to run the macro e)2.938 F .259
+(backward\255kill\255w)2.759 E(ord)-.1 E F0 2.759(,a)C(nd)-2.759 E F1
+(C\255o)2.599 E F0 .258(is bound to run the macro e)2.939 F .258
 (xpressed on the right hand side \(that is, to)-.15 F(insert the te)108
 307.2 Q(xt)-.15 E/F3 10/Courier@0 SF 6(>o)2.5 G(utput)-6 E F0
-(into the line\).)2.5 E .056(In the second form,)108 324 R F2("k)2.556 E
-(eyseq")-.1 E F0(:)A F1(function\255name).833 E F0(or)2.556 E F1(macr)
-2.556 E(o)-.45 E F0(,)A F2 -.1(ke)2.556 G(yseq).1 E F0(dif)2.555 E .055
-(fers from)-.25 F F2 -.1(ke)2.555 G(yname).1 E F0(abo)2.555 E .355 -.15
-(ve i)-.15 H 2.555(nt).15 G .055(hat strings)-2.555 F 1.284
+(into the line\).)2.5 E .055(In the second form,)108 324 R F2("k)2.555 E
+(eyseq")-.1 E F0(:)A F1(function\255name).833 E F0(or)2.555 E F1(macr)
+2.555 E(o)-.45 E F0(,)A F2 -.1(ke)2.555 G(yseq).1 E F0(dif)2.556 E .056
+(fers from)-.25 F F2 -.1(ke)2.556 G(yname).1 E F0(abo)2.556 E .356 -.15
+(ve i)-.15 H 2.556(nt).15 G .056(hat strings)-2.556 F 1.284
 (denoting an entire k)108 336 R 1.584 -.15(ey s)-.1 H 1.284(equence may\
  be speci\214ed by placing the sequence within double quotes.).15 F
-(Some)6.284 E .386(GNU Emacs style k)108 348 R .686 -.15(ey e)-.1 H .385
-(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .385
-(xample, b)-.15 F .385(ut the symbolic character names)-.2 F
+(Some)6.284 E .385(GNU Emacs style k)108 348 R .685 -.15(ey e)-.1 H .385
+(scapes can be used, as in the follo).15 F .385(wing e)-.25 F .386
+(xample, b)-.15 F .386(ut the symbolic character names)-.2 F
 (are not recognized.)108 360 Q("\\C\255u": uni)144 384 Q -.15(ve)-.25 G
 (rsal\255ar).15 E(gument)-.18 E
 ("\\C\255x\\C\255r": re\255read\255init\255\214le)144 396 Q
-("\\e[11~": "Function K)144 408 Q .3 -.15(ey 1)-.25 H(").15 E .314
-(In this e)108 424.8 R(xample,)-.15 E F1(C\255u)2.654 E F0 .314(is ag)
-3.064 F .315(ain bound to the function)-.05 F F2(uni)2.815 E -.1(ve)-.1
+("\\e[11~": "Function K)144 408 Q .3 -.15(ey 1)-.25 H(").15 E .315
+(In this e)108 424.8 R(xample,)-.15 E F1(C\255u)2.655 E F0 .315(is ag)
+3.065 F .315(ain bound to the function)-.05 F F2(uni)2.815 E -.1(ve)-.1
 G(rsal\255ar).1 E(gument)-.1 E F0(.)A F1 .315(C\255x C\255r)5.155 F F0
-.315(is bound to the func-)3.545 F(tion)108 436.8 Q F2 -.18(re)2.5 G
+.314(is bound to the func-)3.544 F(tion)108 436.8 Q F2 -.18(re)2.5 G
 <ad72>.18 E(ead\255init\255\214le)-.18 E F0 2.5(,a)C(nd)-2.5 E F1
 (ESC [ 1 1 ~)3.01 E F0(is bound to insert the te)3.94 E(xt)-.15 E F3
 (Function Key 1)2.5 E F0(.)A
@@ -4193,62 +4194,63 @@ F1(nnn)A F0(the eight-bit character whose v)18.22 E(alue is the octal v)
 -.25 E(alue)-.25 E F1(nnn)2.5 E F0(\(one to three digits\))2.5 E F2(\\x)
 144 662.4 Q F1(HH)A F0(the eight-bit character whose v)13.78 E
 (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F1(HH)2.5 E F0
-(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.142
+(\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E 1.141
 (When entering the te)108 679.2 R 1.141(xt of a macro, single or double\
- quotes must be used to indicate a macro de\214nition.)-.15 F .089
-(Unquoted te)108 691.2 R .089(xt is assumed to be a function name.)-.15
-F .09(In the macro body)5.089 F 2.59(,t)-.65 G .09
-(he backslash escapes described abo)-2.59 F -.15(ve)-.15 G(are e)108
+ quotes must be used to indicate a macro de\214nition.)-.15 F .09
+(Unquoted te)108 691.2 R .09(xt is assumed to be a function name.)-.15 F
+.089(In the macro body)5.089 F 2.589(,t)-.65 G .089
+(he backslash escapes described abo)-2.589 F -.15(ve)-.15 G(are e)108
 703.2 Q 2.5(xpanded. Backslash)-.15 F(will quote an)2.5 E 2.5(yo)-.15 G
 (ther character in the macro te)-2.5 E(xt, including " and \010.)-.15 E
-F2(Bash)108 720 Q F0(allo)2.93 E .43(ws the current readline k)-.25 F
-.73 -.15(ey b)-.1 H .429(indings to be displayed or modi\214ed with the)
-.15 F F2(bind)2.929 E F0 -.2(bu)2.929 G .429(iltin command.).2 F
-(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(34)200.665 E 0 Cg EP
+F2(Bash)108 720 Q F0(allo)2.929 E .429(ws the current readline k)-.25 F
+.729 -.15(ey b)-.1 H .429
+(indings to be displayed or modi\214ed with the).15 F F2(bind)2.93 E F0
+-.2(bu)2.93 G .43(iltin command.).2 F(GNU Bash-4.0)72 768 Q(2008 July 6)
+150.675 E(34)200.665 E 0 Cg EP
 %%Page: 35 35
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E .045(The editing mode may be switched during interacti)108 84 R
-.345 -.15(ve u)-.25 H .046(se by using the).15 F/F1 10/Times-Bold@0 SF
-<ad6f>2.546 E F0 .046(option to the)2.546 F F1(set)2.546 E F0 -.2(bu)
-2.546 G .046(iltin command).2 F(\(see)108 96 Q/F2 9/Times-Bold@0 SF
+-.35 E .046(The editing mode may be switched during interacti)108 84 R
+.346 -.15(ve u)-.25 H .046(se by using the).15 F/F1 10/Times-Bold@0 SF
+<ad6f>2.545 E F0 .045(option to the)2.545 F F1(set)2.545 E F0 -.2(bu)
+2.545 G .045(iltin command).2 F(\(see)108 96 Q/F2 9/Times-Bold@0 SF
 (SHELL B)2.5 E(UIL)-.09 E(TIN COMMANDS)-.828 E F0(belo)2.25 E(w\).)-.25
-E F1(Readline V)87 112.8 Q(ariables)-.92 E F0 .044(Readline has v)108
+E F1(Readline V)87 112.8 Q(ariables)-.92 E F0 .043(Readline has v)108
 124.8 R .043(ariables that can be used to further customize its beha)
 -.25 F(vior)-.2 E 5.043(.A)-.55 G -.25(va)-2.5 G .043
-(riable may be set in the).25 F/F3 10/Times-Italic@0 SF(inpu-)2.553 E
+(riable may be set in the).25 F/F3 10/Times-Italic@0 SF(inpu-)2.554 E
 (tr)108 136.8 Q(c)-.37 E F0(\214le with a statement of the form)2.81 E
 F1(set)144 153.6 Q F3(variable\255name value)2.5 E F0 .79
 (Except where noted, readline v)108 170.4 R .79(ariables can tak)-.25 F
 3.29(et)-.1 G .79(he v)-3.29 F(alues)-.25 E F1(On)3.29 E F0(or)3.29 E F1
 (Off)3.29 E F0 .79(\(without re)3.29 F -.05(ga)-.15 G .79(rd to case\).)
-.05 F(Unrecog-)5.79 E .449(nized v)108 182.4 R .448
+.05 F(Unrecog-)5.79 E .448(nized v)108 182.4 R .448
 (ariable names are ignored.)-.25 F .448(When a v)5.448 F .448(ariable v)
--.25 F .448(alue is read, empty or null v)-.25 F .448
-(alues, "on" \(case-insensi-)-.25 F(ti)108 194.4 Q -.15(ve)-.25 G .467
+-.25 F .448(alue is read, empty or null v)-.25 F .449
+(alues, "on" \(case-insensi-)-.25 F(ti)108 194.4 Q -.15(ve)-.25 G .468
 (\), and "1" are equi).15 F -.25(va)-.25 G .468(lent to).25 F F1(On)
 2.968 E F0 5.468(.A)C .468(ll other v)-5.468 F .468(alues are equi)-.25
-F -.25(va)-.25 G .468(lent to).25 F F1(Off)2.968 E F0 5.468(.T)C .468
-(he v)-5.468 F .468(ariables and their def)-.25 F(ault)-.1 E -.25(va)108
-206.4 S(lues are:).25 E F1(bell\255style \(audible\))108 223.2 Q F0 .011
+F -.25(va)-.25 G .468(lent to).25 F F1(Off)2.968 E F0 5.468(.T)C .467
+(he v)-5.468 F .467(ariables and their def)-.25 F(ault)-.1 E -.25(va)108
+206.4 S(lues are:).25 E F1(bell\255style \(audible\))108 223.2 Q F0 .01
 (Controls what happens when readline w)144 235.2 R .011
-(ants to ring the terminal bell.)-.1 F .01(If set to)5.01 F F1(none)2.51
-E F0 2.51(,r)C .01(eadline ne)-2.51 F -.15(ve)-.25 G(r).15 E .94
-(rings the bell.)144 247.2 R .94(If set to)5.94 F F1(visible)3.44 E F0
-3.44(,r)C .94(eadline uses a visible bell if one is a)-3.44 F -.25(va)
--.2 G 3.44(ilable. If).25 F .94(set to)3.44 F F1(audible)3.44 E F0(,)A
-(readline attempts to ring the terminal')144 259.2 Q 2.5(sb)-.55 G(ell.)
--2.5 E F1(bind\255tty\255special\255chars \(On\))108 271.2 Q F0 .056
-(If set to)144 283.2 R F1(On)2.556 E F0 2.556(,r)C .056(eadline attempt\
-s to bind the control characters treated specially by the k)-2.556 F
-(ernel')-.1 E 2.555(st)-.55 G(ermi-)-2.555 E(nal dri)144 295.2 Q -.15
+(ants to ring the terminal bell.)-.1 F .011(If set to)5.011 F F1(none)
+2.511 E F0 2.511(,r)C .011(eadline ne)-2.511 F -.15(ve)-.25 G(r).15 E
+.94(rings the bell.)144 247.2 R .94(If set to)5.94 F F1(visible)3.44 E
+F0 3.44(,r)C .94(eadline uses a visible bell if one is a)-3.44 F -.25
+(va)-.2 G 3.44(ilable. If).25 F .94(set to)3.44 F F1(audible)3.44 E F0
+(,)A(readline attempts to ring the terminal')144 259.2 Q 2.5(sb)-.55 G
+(ell.)-2.5 E F1(bind\255tty\255special\255chars \(On\))108 271.2 Q F0
+.055(If set to)144 283.2 R F1(On)2.555 E F0 2.555(,r)C .056(eadline att\
+empts to bind the control characters treated specially by the k)-2.555 F
+(ernel')-.1 E 2.556(st)-.55 G(ermi-)-2.556 E(nal dri)144 295.2 Q -.15
 (ve)-.25 G 2.5(rt).15 G 2.5(ot)-2.5 G(heir readline equi)-2.5 E -.25(va)
 -.25 G(lents.).25 E F1(comment\255begin \(`)108 307.2 Q(`#')-.63 E('\))
--.63 E F0 .884(The string that is inserted when the readline)144 319.2 R
-F1(insert\255comment)3.385 E F0 .885(command is e)3.385 F -.15(xe)-.15 G
-3.385(cuted. This).15 F(com-)3.385 E(mand is bound to)144 331.2 Q F1
+-.63 E F0 .885(The string that is inserted when the readline)144 319.2 R
+F1(insert\255comment)3.385 E F0 .884(command is e)3.384 F -.15(xe)-.15 G
+3.384(cuted. This).15 F(com-)3.384 E(mand is bound to)144 331.2 Q F1
 (M\255#)2.5 E F0(in emacs mode and to)2.5 E F1(#)2.5 E F0
 (in vi command mode.)2.5 E F1(completion\255ignor)108 343.2 Q
 (e\255case \(Off\))-.18 E F0(If set to)144 355.2 Q F1(On)2.5 E F0 2.5
@@ -4256,55 +4258,55 @@ F1(insert\255comment)3.385 E F0 .885(command is e)3.385 F -.15(xe)-.15 G
 insensiti)-2.5 E .3 -.15(ve f)-.25 H(ashion.).05 E F1(completion\255pr)
 108 367.2 Q(e\214x\255display\255length \(0\))-.18 E F0 .829(The length\
  in characters of the common pre\214x of a list of possible completions\
- that is displayed)144 379.2 R 1.274(without modi\214cation.)144 391.2 R
-1.274(When set to a v)6.274 F 1.274
-(alue greater than zero, common pre\214x)-.25 F 1.275
+ that is displayed)144 379.2 R 1.275(without modi\214cation.)144 391.2 R
+1.275(When set to a v)6.275 F 1.274
+(alue greater than zero, common pre\214x)-.25 F 1.274
 (es longer than this)-.15 F -.25(va)144 403.2 S(lue are replaced with a\
 n ellipsis when displaying possible completions.).25 E F1
-(completion\255query\255items \(100\))108 415.2 Q F0 .53
-(This determines when the user is queried about vie)144 427.2 R .529
-(wing the number of possible completions gen-)-.25 F .56(erated by the)
-144 439.2 R F1(possible\255completions)3.06 E F0 3.06(command. It)3.06 F
-.561(may be set to an)3.061 F 3.061(yi)-.15 G(nte)-3.061 E .561(ger v)
--.15 F .561(alue greater than or)-.25 F .783(equal to zero.)144 451.2 R
-.783(If the number of possible completions is greater than or equal to \
-the v)5.783 F .782(alue of this)-.25 F -.25(va)144 463.2 S .237
+(completion\255query\255items \(100\))108 415.2 Q F0 .529
+(This determines when the user is queried about vie)144 427.2 R .53
+(wing the number of possible completions gen-)-.25 F .561(erated by the)
+144 439.2 R F1(possible\255completions)3.061 E F0 3.061(command. It)
+3.061 F .561(may be set to an)3.061 F 3.06(yi)-.15 G(nte)-3.06 E .56
+(ger v)-.15 F .56(alue greater than or)-.25 F .782(equal to zero.)144
+451.2 R .783(If the number of possible completions is greater than or e\
+qual to the v)5.782 F .783(alue of this)-.25 F -.25(va)144 463.2 S .237
 (riable, the user is ask).25 F .237(ed whether or not he wishes to vie)
 -.1 F 2.737(wt)-.25 G .237(hem; otherwise the)-2.737 F 2.737(ya)-.15 G
 .237(re simply listed)-2.737 F(on the terminal.)144 475.2 Q F1(con)108
-487.2 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .613(If set to)144 499.2
-R F1(On)3.113 E F0 3.113(,r)C .613(eadline will con)-3.113 F -.15(ve)-.4
-G .613(rt characters with the eighth bit set to an ASCII k).15 F .912
--.15(ey s)-.1 H .612(equence by).15 F .541
+487.2 Q -.1(ve)-.4 G(rt\255meta \(On\)).1 E F0 .612(If set to)144 499.2
+R F1(On)3.112 E F0 3.112(,r)C .613(eadline will con)-3.112 F -.15(ve)-.4
+G .613(rt characters with the eighth bit set to an ASCII k).15 F .913
+-.15(ey s)-.1 H .613(equence by).15 F .541
 (stripping the eighth bit and pre\214xing an escape character \(in ef)
-144 511.2 R .541(fect, using escape as the)-.25 F F3 .542(meta pr)3.042
+144 511.2 R .541(fect, using escape as the)-.25 F F3 .541(meta pr)3.041
 F(e-)-.37 E<8c78>144 523.2 Q F0(\).)A F1(disable\255completion \(Off\))
 108 535.2 Q F0 .038(If set to)144 547.2 R F1(On)2.538 E F0 2.538(,r)C
 .038(eadline will inhibit w)-2.538 F .038(ord completion.)-.1 F .038
 (Completion characters will be inserted into the)5.038 F(line as if the)
 144 559.2 Q 2.5(yh)-.15 G(ad been mapped to)-2.5 E F1(self-insert)2.5 E
-F0(.)A F1(editing\255mode \(emacs\))108 571.2 Q F0 .252
+F0(.)A F1(editing\255mode \(emacs\))108 571.2 Q F0 .253
 (Controls whether readline be)144 583.2 R .253(gins with a set of k)-.15
-F .553 -.15(ey b)-.1 H .253(indings similar to).15 F F3(emacs)2.753 E F0
-(or)2.753 E F3(vi)2.753 E F0(.)A F1(editing\255mode)5.253 E F0
+F .553 -.15(ey b)-.1 H .253(indings similar to).15 F F3(emacs)2.752 E F0
+(or)2.752 E F3(vi)2.752 E F0(.)A F1(editing\255mode)5.252 E F0
 (can be set to either)144 595.2 Q F1(emacs)2.5 E F0(or)2.5 E F1(vi)2.5 E
-F0(.)A F1(enable\255k)108 607.2 Q(eypad \(Off\))-.1 E F0 .893
+F0(.)A F1(enable\255k)108 607.2 Q(eypad \(Off\))-.1 E F0 .892
 (When set to)144 619.2 R F1(On)3.393 E F0 3.393(,r)C .893
 (eadline will try to enable the application k)-3.393 F -.15(ey)-.1 G
-.893(pad when it is called.).15 F .892(Some sys-)5.893 F
+.893(pad when it is called.).15 F .893(Some sys-)5.893 F
 (tems need this to enable the arro)144 631.2 Q 2.5(wk)-.25 G -.15(ey)
 -2.6 G(s.).15 E F1(expand\255tilde \(Off\))108 643.2 Q F0(If set to)144
 655.2 Q F1(on)2.5 E F0 2.5(,t)C(ilde e)-2.5 E
 (xpansion is performed when readline attempts w)-.15 E(ord completion.)
 -.1 E F1(history\255pr)108 667.2 Q(eser)-.18 E -.1(ve)-.1 G
-(\255point \(Off\)).1 E F0 1.492(If set to)144 679.2 R F1(on)3.992 E F0
-3.992(,t)C 1.493(he history code attempts to place point at the same lo\
-cation on each history line)-3.992 F(retrie)144 691.2 Q -.15(ve)-.25 G
+(\255point \(Off\)).1 E F0 1.493(If set to)144 679.2 R F1(on)3.993 E F0
+3.993(,t)C 1.493(he history code attempts to place point at the same lo\
+cation on each history line)-3.993 F(retrie)144 691.2 Q -.15(ve)-.25 G
 2.5(dw).15 G(ith)-2.5 E F1(pr)2.5 E -.15(ev)-.18 G(ious-history).15 E F0
 (or)2.5 E F1(next-history)2.5 E F0(.)A F1(history\255size \(0\))108
-703.2 Q F0 .463(Set the maximum number of history entries sa)144 715.2 R
+703.2 Q F0 .462(Set the maximum number of history entries sa)144 715.2 R
 -.15(ve)-.2 G 2.963(di).15 G 2.963(nt)-2.963 G .463(he history list.)
--2.963 F .462(If set to zero, the number of)5.463 F
+-2.963 F .463(If set to zero, the number of)5.463 F
 (entries in the history list is not limited.)144 727.2 Q(GNU Bash-4.0)72
 768 Q(2008 July 6)150.675 E(35)200.665 E 0 Cg EP
 %%Page: 36 36
@@ -4313,37 +4315,37 @@ BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E/F1 10/Times-Bold@0 SF(horizontal\255scr)108 84 Q
-(oll\255mode \(Off\))-.18 E F0 .448(When set to)144 96 R F1(On)2.948 E
-F0 2.948(,m)C(ak)-2.948 E .448
-(es readline use a single line for display)-.1 F 2.948(,s)-.65 G .449
+(oll\255mode \(Off\))-.18 E F0 .449(When set to)144 96 R F1(On)2.949 E
+F0 2.949(,m)C(ak)-2.949 E .448
+(es readline use a single line for display)-.1 F 2.948(,s)-.65 G .448
 (crolling the input horizontally on a)-2.948 F 1.194(single screen line\
  when it becomes longer than the screen width rather than wrapping to a\
  ne)144 108 R(w)-.25 E(line.)144 120 Q F1(input\255meta \(Off\))108 132
-Q F0 .227(If set to)144 144 R F1(On)2.727 E F0 2.727(,r)C .228(eadline \
+Q F0 .228(If set to)144 144 R F1(On)2.728 E F0 2.728(,r)C .227(eadline \
 will enable eight-bit input \(that is, it will not strip the high bit f\
-rom the char)-2.727 F(-)-.2 E .957(acters it reads\), re)144 156 R -.05
+rom the char)-2.728 F(-)-.2 E .956(acters it reads\), re)144 156 R -.05
 (ga)-.15 G .956(rdless of what the terminal claims it can support.).05 F
-.956(The name)5.956 F F1(meta\255\215ag)3.456 E F0 .956(is a)3.456 F
+.957(The name)5.956 F F1(meta\255\215ag)3.457 E F0 .957(is a)3.457 F
 (synon)144 168 Q(ym for this v)-.15 E(ariable.)-.25 E F1(isear)108 180 Q
 (ch\255terminators \(`)-.18 E(`C\255[C\255J')-.63 E('\))-.63 E F0 .439(\
 The string of characters that should terminate an incremental search wi\
-thout subsequently e)144 192 R -.15(xe)-.15 G(cut-).15 E .935
+thout subsequently e)144 192 R -.15(xe)-.15 G(cut-).15 E .934
 (ing the character as a command.)144 204 R .935(If this v)5.935 F .935
-(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.434(nav).15 G .934
-(alue, the characters)-3.684 F/F2 10/Times-Italic@0 SF(ESC)3.434 E F0
+(ariable has not been gi)-.25 F -.15(ve)-.25 G 3.435(nav).15 G .935
+(alue, the characters)-3.685 F/F2 10/Times-Italic@0 SF(ESC)3.435 E F0
 (and)144 216 Q F2(C\255J)2.5 E F0(will terminate an incremental search.)
-2.5 E F1 -.1(ke)108 228 S(ymap \(emacs\)).1 E F0 2.02
+2.5 E F1 -.1(ke)108 228 S(ymap \(emacs\)).1 E F0 2.021
 (Set the current readline k)144 240 R -.15(ey)-.1 G 4.521(map. The).15 F
 2.021(set of v)4.521 F 2.021(alid k)-.25 F -.15(ey)-.1 G 2.021
-(map names is).15 F F2 2.021(emacs, emacs\255standar)4.521 F(d,)-.37 E
-.069(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 252 R F0 2.568
+(map names is).15 F F2 2.02(emacs, emacs\255standar)4.52 F(d,)-.37 E
+.068(emacs\255meta, emacs\255ctlx, vi, vi\255command)144 252 R F0 2.568
 (,a)C(nd)-2.568 E F2(vi\255insert)2.568 E F0(.).68 E F2(vi)5.068 E F0
 .068(is equi)2.568 F -.25(va)-.25 G .068(lent to).25 F F2(vi\255command)
-2.568 E F0(;)A F2(emacs)2.568 E F0 1.543(is equi)144 264 R -.25(va)-.25
-G 1.543(lent to).25 F F2(emacs\255standar)4.044 E(d)-.37 E F0 6.544(.T)C
+2.569 E F0(;)A F2(emacs)2.569 E F0 1.544(is equi)144 264 R -.25(va)-.25
+G 1.544(lent to).25 F F2(emacs\255standar)4.044 E(d)-.37 E F0 6.544(.T)C
 1.544(he def)-6.544 F 1.544(ault v)-.1 F 1.544(alue is)-.25 F F2(emacs)
 4.044 E F0 4.044(;t).27 G 1.544(he v)-4.044 F 1.544(alue of)-.25 F F1
-(editing\255mode)4.044 E F0(also)4.044 E(af)144 276 Q(fects the def)-.25
+(editing\255mode)4.043 E F0(also)4.043 E(af)144 276 Q(fects the def)-.25
 E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1(mark\255dir)108 288 Q
 (ectories \(On\))-.18 E F0(If set to)144 300 Q F1(On)2.5 E F0 2.5(,c)C
 (ompleted directory names ha)-2.5 E .3 -.15(ve a s)-.2 H(lash appended.)
@@ -4356,50 +4358,50 @@ E(ault k)-.1 E -.15(ey)-.1 G(map.).15 E F1(mark\255dir)108 288 Q
 (ompleted names which are symbolic links to directories ha)-2.675 F .475
 -.15(ve a s)-.2 H .175(lash appended \(sub-).15 F(ject to the v)144 360
 Q(alue of)-.25 E F1(mark\255dir)2.5 E(ectories)-.18 E F0(\).)A F1
-(match\255hidden\255\214les \(On\))108 372 Q F0 .192(This v)144 384 R
-.192(ariable, when set to)-.25 F F1(On)2.692 E F0 2.692(,c)C .192
-(auses readline to match \214les whose names be)-2.692 F .193
-(gin with a `.)-.15 F 2.693('\()-.7 G(hidden)-2.693 E 1.024
+(match\255hidden\255\214les \(On\))108 372 Q F0 .193(This v)144 384 R
+.193(ariable, when set to)-.25 F F1(On)2.693 E F0 2.693(,c)C .192
+(auses readline to match \214les whose names be)-2.693 F .192
+(gin with a `.)-.15 F 2.692('\()-.7 G(hidden)-2.692 E 1.023
 (\214les\) when performing \214lename completion, unless the leading `.)
-144 396 R 3.523('i)-.7 G 3.523(ss)-3.523 G 1.023
+144 396 R 3.523('i)-.7 G 3.523(ss)-3.523 G 1.024
 (upplied by the user in the)-3.523 F(\214lename to be completed.)144 408
-Q F1(output\255meta \(Off\))108 420 Q F0 .506(If set to)144 432 R F1(On)
-3.006 E F0 3.006(,r)C .507(eadline will display characters with the eig\
-hth bit set directly rather than as a meta-)-3.006 F(pre\214x)144 444 Q
+Q F1(output\255meta \(Off\))108 420 Q F0 .507(If set to)144 432 R F1(On)
+3.007 E F0 3.007(,r)C .507(eadline will display characters with the eig\
+hth bit set directly rather than as a meta-)-3.007 F(pre\214x)144 444 Q
 (ed escape sequence.)-.15 E F1(page\255completions \(On\))108 456 Q F0
-.809(If set to)144 468 R F1(On)3.308 E F0 3.308(,r)C .808
+.808(If set to)144 468 R F1(On)3.308 E F0 3.308(,r)C .808
 (eadline uses an internal)-3.308 F F2(mor)3.308 E(e)-.37 E F0(-lik)A
 3.308(ep)-.1 G .808(ager to display a screenful of possible comple-)
 -3.308 F(tions at a time.)144 480 Q F1
-(print\255completions\255horizontally \(Off\))108 492 Q F0 1.318
-(If set to)144 504 R F1(On)3.818 E F0 3.818(,r)C 1.319(eadline will dis\
-play completions with matches sorted horizontally in alphabetical)-3.818
+(print\255completions\255horizontally \(Off\))108 492 Q F0 1.319
+(If set to)144 504 R F1(On)3.819 E F0 3.819(,r)C 1.318(eadline will dis\
+play completions with matches sorted horizontally in alphabetical)-3.819
 F(order)144 516 Q 2.5(,r)-.4 G(ather than do)-2.5 E(wn the screen.)-.25
 E F1 -2.29 -.18(re v)108 528 T(ert\255all\255at\255newline \(Off\)).08 E
-F0 .873(If set to)144 540 R F1(on)3.373 E F0 3.373(,r)C .872
+F0 .872(If set to)144 540 R F1(on)3.372 E F0 3.372(,r)C .873
 (eadline will undo all changes to history lines before returning when)
--3.373 F F1(accept\255line)3.372 E F0(is)3.372 E -.15(exe)144 552 S
+-3.372 F F1(accept\255line)3.373 E F0(is)3.373 E -.15(exe)144 552 S
 2.686(cuted. By).15 F(def)2.686 E .186
 (ault, history lines may be modi\214ed and retain indi)-.1 F .186
 (vidual undo lists across calls to)-.25 F F1 -.18(re)144 564 S(adline)
 .18 E F0(.)A F1(sho)108 576 Q(w\255all\255if\255ambiguous \(Off\))-.1 E
-F0 .478(This alters the def)144 588 R .478(ault beha)-.1 F .478
-(vior of the completion functions.)-.2 F .477(If set to)5.477 F F1(on)
-2.977 E F0 2.977(,w)C .477(ords which ha)-3.077 F .777 -.15(ve m)-.2 H
+F0 .477(This alters the def)144 588 R .477(ault beha)-.1 F .477
+(vior of the completion functions.)-.2 F .478(If set to)5.478 F F1(on)
+2.978 E F0 2.978(,w)C .478(ords which ha)-3.078 F .778 -.15(ve m)-.2 H
 (ore).15 E 1.264(than one possible completion cause the matches to be l\
 isted immediately instead of ringing the)144 600 R(bell.)144 612 Q F1
-(sho)108 624 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.346
-(This alters the def)144 636 R 5.346(ault beha)-.1 F 5.345
-(vior of the completion functions in a f)-.2 F 5.345(ashion similar to)
--.1 F F1(sho)144 648 Q(w\255all\255if\255ambiguous)-.1 E F0 6.922(.I)C
-4.422(fs)-6.922 G 1.922(et to)-4.422 F F1(on)4.422 E F0 4.422(,w)C 1.922
-(ords which ha)-4.522 F 2.223 -.15(ve m)-.2 H 1.923
-(ore than one possible completion).15 F 1.04(without an)144 660 R 3.54
+(sho)108 624 Q(w\255all\255if\255unmodi\214ed \(Off\))-.1 E F0 5.345
+(This alters the def)144 636 R 5.345(ault beha)-.1 F 5.345
+(vior of the completion functions in a f)-.2 F 5.346(ashion similar to)
+-.1 F F1(sho)144 648 Q(w\255all\255if\255ambiguous)-.1 E F0 6.923(.I)C
+4.423(fs)-6.923 G 1.923(et to)-4.423 F F1(on)4.423 E F0 4.423(,w)C 1.923
+(ords which ha)-4.523 F 2.222 -.15(ve m)-.2 H 1.922
+(ore than one possible completion).15 F 1.039(without an)144 660 R 3.539
 (yp)-.15 G 1.039
-(ossible partial completion \(the possible completions don')-3.54 F
-3.539(ts)-.18 G 1.039(hare a common pre\214x\))-3.539 F(cause the match\
-es to be listed immediately instead of ringing the bell.)144 672 Q F1
-(visible\255stats \(Off\))108 684 Q F0 .846(If set to)144 696 R F1(On)
+(ossible partial completion \(the possible completions don')-3.539 F
+3.539(ts)-.18 G 1.04(hare a common pre\214x\))-3.539 F(cause the matche\
+s to be listed immediately instead of ringing the bell.)144 672 Q F1
+(visible\255stats \(Off\))108 684 Q F0 .847(If set to)144 696 R F1(On)
 3.346 E F0 3.346(,ac)C .846(haracter denoting a \214le')-3.346 F 3.346
 (st)-.55 G .846(ype as reported by)-3.346 F F2(stat)3.346 E F0 .846
 (\(2\) is appended to the \214lename)B
@@ -4412,19 +4414,19 @@ BP
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E/F1 10/Times-Bold@0 SF(Readline Conditional Constructs)87 84 Q F0
 .05(Readline implements a f)108 96 R .05(acility similar in spirit to t\
-he conditional compilation features of the C preprocessor)-.1 F .096
-(which allo)108 108 R .096(ws k)-.25 F .396 -.15(ey b)-.1 H .096
+he conditional compilation features of the C preprocessor)-.1 F .097
+(which allo)108 108 R .097(ws k)-.25 F .396 -.15(ey b)-.1 H .096
 (indings and v).15 F .096
-(ariable settings to be performed as the result of tests.)-.25 F .097
+(ariable settings to be performed as the result of tests.)-.25 F .096
 (There are four parser)5.096 F(directi)108 120 Q -.15(ve)-.25 G 2.5(su)
-.15 G(sed.)-2.5 E F1($if)108 136.8 Q F0(The)24.89 E F1($if)2.963 E F0
-.463(construct allo)2.963 F .462(ws bindings to be made based on the ed\
-iting mode, the terminal being used,)-.25 F .477
+.15 G(sed.)-2.5 E F1($if)108 136.8 Q F0(The)24.89 E F1($if)2.962 E F0
+.462(construct allo)2.962 F .463(ws bindings to be made based on the ed\
+iting mode, the terminal being used,)-.25 F .478
 (or the application using readline.)144 148.8 R .477(The te)5.477 F .477
 (xt of the test e)-.15 F .477
 (xtends to the end of the line; no characters)-.15 F
 (are required to isolate it.)144 160.8 Q F1(mode)144 177.6 Q F0(The)
-12.67 E F1(mode=)3.712 E F0 1.212(form of the)3.712 F F1($if)3.711 E F0
+12.67 E F1(mode=)3.711 E F0 1.211(form of the)3.711 F F1($if)3.711 E F0
 (directi)3.711 E 1.511 -.15(ve i)-.25 H 3.711(su).15 G 1.211
 (sed to test whether readline is in emacs or vi)-3.711 F 3.065
 (mode. This)180 189.6 R .565(may be used in conjunction with the)3.065 F
@@ -4433,13 +4435,13 @@ F1 .565(set k)3.065 F(eymap)-.1 E F0 .565(command, for instance, to)
 (emacs\255standar)3.235 E(d)-.37 E F0(and)3.235 E F2(emacs\255ctlx)3.235
 E F0 -.1(ke)3.235 G .735(ymaps only if readline is starting)-.05 F
 (out in emacs mode.)180 213.6 Q F1(term)144 230.4 Q F0(The)15.46 E F1
-(term=)3.196 E F0 .696
-(form may be used to include terminal-speci\214c k)3.196 F .996 -.15
-(ey b)-.1 H .697(indings, perhaps to bind).15 F .654(the k)180 242.4 R
+(term=)3.197 E F0 .696
+(form may be used to include terminal-speci\214c k)3.197 F .996 -.15
+(ey b)-.1 H .696(indings, perhaps to bind).15 F .654(the k)180 242.4 R
 .954 -.15(ey s)-.1 H .654(equences output by the terminal').15 F 3.154
 (sf)-.55 G .654(unction k)-3.154 F -.15(ey)-.1 G 3.154(s. The).15 F -.1
-(wo)3.154 G .654(rd on the right side of).1 F(the)180 254.4 Q F1(=)3.231
-E F0 .731(is tested ag)3.231 F .732(ainst the both full name of the ter\
+(wo)3.154 G .654(rd on the right side of).1 F(the)180 254.4 Q F1(=)3.232
+E F0 .732(is tested ag)3.232 F .732(ainst the both full name of the ter\
 minal and the portion of the terminal)-.05 F(name before the \214rst)180
 266.4 Q F1<ad>2.5 E F0 5(.T)C(his allo)-5 E(ws)-.25 E F2(sun)2.84 E F0
 (to match both)2.74 E F2(sun)2.84 E F0(and)2.74 E F2(sun\255cmd)2.5 E F0
@@ -4448,12 +4450,12 @@ minal and the portion of the terminal)-.05 F(name before the \214rst)180
 (construct is used to include application-speci\214c settings.)3.003 F
 .503(Each program)5.503 F .114(using the readline library sets the)180
 307.2 R F2 .114(application name)2.614 F F0 2.614(,a)C .114
-(nd an initialization \214le can test for a)-2.614 F .501(particular v)
-180 319.2 R 3.001(alue. This)-.25 F .501(could be used to bind k)3.001 F
-.801 -.15(ey s)-.1 H .5(equences to functions useful for a spe-).15 F
-.396(ci\214c program.)180 331.2 R -.15(Fo)5.396 G 2.896(ri).15 G .396
+(nd an initialization \214le can test for a)-2.614 F .5(particular v)180
+319.2 R 3(alue. This)-.25 F .501(could be used to bind k)3 F .801 -.15
+(ey s)-.1 H .501(equences to functions useful for a spe-).15 F .397
+(ci\214c program.)180 331.2 R -.15(Fo)5.397 G 2.896(ri).15 G .396
 (nstance, the follo)-2.896 F .396(wing command adds a k)-.25 F .696 -.15
-(ey s)-.1 H .397(equence that quotes the).15 F(current or pre)180 343.2
+(ey s)-.1 H .396(equence that quotes the).15 F(current or pre)180 343.2
 Q(vious w)-.25 E(ord in Bash:)-.1 E F1($if)180 367.2 Q F0(Bash)2.5 E 2.5
 (#Q)180 379.2 S(uote the current or pre)-2.5 E(vious w)-.25 E(ord)-.1 E
 ("\\C\255xq": "\\eb\\"\\ef\\"")180 391.2 Q F1($endif)180 403.2 Q($endif)
@@ -4461,52 +4463,52 @@ Q(vious w)-.25 E(ord in Bash:)-.1 E F1($if)180 367.2 Q F0(Bash)2.5 E 2.5
 (xample, terminates an)-.15 E F1($if)2.5 E F0(command.)2.5 E F1($else)
 108 436.8 Q F0(Commands in this branch of the)15.45 E F1($if)2.5 E F0
 (directi)2.5 E .3 -.15(ve a)-.25 H(re e).15 E -.15(xe)-.15 G
-(cuted if the test f).15 E(ails.)-.1 E F1($include)108 453.6 Q F0 .357
-(This directi)144 465.6 R .657 -.15(ve t)-.25 H(ak).15 E .357
-(es a single \214lename as an ar)-.1 F .356
+(cuted if the test f).15 E(ails.)-.1 E F1($include)108 453.6 Q F0 .356
+(This directi)144 465.6 R .656 -.15(ve t)-.25 H(ak).15 E .356
+(es a single \214lename as an ar)-.1 F .357
 (gument and reads commands and bindings from that)-.18 F 2.5(\214le. F)
 144 477.6 R(or e)-.15 E(xample, the follo)-.15 E(wing directi)-.25 E .3
 -.15(ve w)-.25 H(ould read).05 E F2(/etc/inputr)2.5 E(c)-.37 E F0(:)A F1
 ($include)144 501.6 Q F2(/etc/inputr)5.833 E(c)-.37 E F1(Sear)87 518.4 Q
-(ching)-.18 E F0 .834(Readline pro)108 530.4 R .834
+(ching)-.18 E F0 .835(Readline pro)108 530.4 R .835
 (vides commands for searching through the command history \(see)-.15 F
-/F3 9/Times-Bold@0 SF(HIST)3.335 E(OR)-.162 E(Y)-.315 E F0(belo)3.085 E
-.835(w\) for lines)-.25 F(containing a speci\214ed string.)108 542.4 Q
+/F3 9/Times-Bold@0 SF(HIST)3.334 E(OR)-.162 E(Y)-.315 E F0(belo)3.084 E
+.834(w\) for lines)-.25 F(containing a speci\214ed string.)108 542.4 Q
 (There are tw)5 E 2.5(os)-.1 G(earch modes:)-2.5 E F2(incr)2.51 E
 (emental)-.37 E F0(and)3.01 E F2(non-incr)2.5 E(emental)-.37 E F0(.).51
-E .698(Incremental searches be)108 559.2 R .698
+E .697(Incremental searches be)108 559.2 R .697
 (gin before the user has \214nished typing the search string.)-.15 F
-.697(As each character of the)5.697 F .112
+.698(As each character of the)5.698 F .113
 (search string is typed, readline displays the ne)108 571.2 R .112
 (xt entry from the history matching the string typed so f)-.15 F(ar)-.1
-E 5.113(.A)-.55 G(n)-5.113 E .542
+E 5.112(.A)-.55 G(n)-5.112 E .542
 (incremental search requires only as man)108 583.2 R 3.042(yc)-.15 G
 .542(haracters as needed to \214nd the desired history entry)-3.042 F
-5.541(.T)-.65 G .541(he char)-5.541 F(-)-.2 E .224
+5.542(.T)-.65 G .542(he char)-5.542 F(-)-.2 E .224
 (acters present in the v)108 595.2 R .224(alue of the)-.25 F F1(isear)
 2.724 E(ch-terminators)-.18 E F0 -.25(va)2.724 G .224
 (riable are used to terminate an incremental search.).25 F .66
 (If that v)108 607.2 R .66(ariable has not been assigned a v)-.25 F .66
 (alue the Escape and Control-J characters will terminate an incre-)-.25
-F .096(mental search.)108 619.2 R .096(Control-G will abort an incremen\
-tal search and restore the original line.)5.096 F .097
-(When the search is)5.097 F(terminated, the history entry containing th\
-e search string becomes the current line.)108 631.2 Q 2.939 -.8(To \214)
+F .097(mental search.)108 619.2 R .096(Control-G will abort an incremen\
+tal search and restore the original line.)5.097 F .096
+(When the search is)5.096 F(terminated, the history entry containing th\
+e search string becomes the current line.)108 631.2 Q 2.938 -.8(To \214)
 108 648 T 1.339(nd other matching entries in the history list, type Con\
-trol-S or Control-R as appropriate.).8 F 1.338(This will)6.338 F .674
-(search backw)108 660 R .674(ard or forw)-.1 F .674
-(ard in the history for the ne)-.1 F .675
-(xt entry matching the search string typed so f)-.15 F(ar)-.1 E 5.675
-(.A)-.55 G -.15(ny)-5.675 G .175(other k)108 672 R .475 -.15(ey s)-.1 H
+trol-S or Control-R as appropriate.).8 F 1.339(This will)6.339 F .675
+(search backw)108 660 R .675(ard or forw)-.1 F .675
+(ard in the history for the ne)-.1 F .674
+(xt entry matching the search string typed so f)-.15 F(ar)-.1 E 5.674
+(.A)-.55 G -.15(ny)-5.674 G .174(other k)108 672 R .474 -.15(ey s)-.1 H
 .174
 (equence bound to a readline command will terminate the search and e).15
-F -.15(xe)-.15 G .174(cute that command.).15 F -.15(Fo)5.174 G(r).15 E
-.54(instance, a)108 684 R F2(ne)3.04 E(wline)-.15 E F0 .541
-(will terminate the search and accept the line, thereby e)3.04 F -.15
-(xe)-.15 G .541(cuting the command from the).15 F(history list.)108 696
-Q .653(Readline remembers the last incremental search string.)108 712.8
-.653(If tw)5.653 F 3.153(oC)-.1 G .653(ontrol-Rs are typed without an)
--3.153 F 3.152(yi)-.15 G(nterv)-3.152 E(en-)-.15 E
+F -.15(xe)-.15 G .175(cute that command.).15 F -.15(Fo)5.175 G(r).15 E
+.541(instance, a)108 684 R F2(ne)3.041 E(wline)-.15 E F0 .541
+(will terminate the search and accept the line, thereby e)3.041 F -.15
+(xe)-.15 G .54(cuting the command from the).15 F(history list.)108 696 Q
+.653(Readline remembers the last incremental search string.)108 712.8 R
+.653(If tw)5.653 F 3.153(oC)-.1 G .653(ontrol-Rs are typed without an)
+-3.153 F 3.153(yi)-.15 G(nterv)-3.153 E(en-)-.15 E
 (ing characters de\214ning a ne)108 724.8 Q 2.5(ws)-.25 G
 (earch string, an)-2.5 E 2.5(yr)-.15 G(emembered search string is used.)
 -2.5 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(37)200.665 E 0 Cg EP
@@ -4519,17 +4521,17 @@ BP
 re starting to search for matching history lines.)108 84 R(The search s\
 tring may be typed by the user or be part of the contents of the curren\
 t line.)108 96 Q/F1 10/Times-Bold@0 SF(Readline Command Names)87 112.8 Q
-F0 1.392(The follo)108 124.8 R 1.391
+F0 1.391(The follo)108 124.8 R 1.391
 (wing is a list of the names of the commands and the def)-.25 F 1.391
 (ault k)-.1 F 1.691 -.15(ey s)-.1 H 1.391(equences to which the).15 F
-3.891(ya)-.15 G(re)-3.891 E 2.621(bound. Command)108 136.8 R .121
-(names without an accompan)2.621 F .121(ying k)-.15 F .421 -.15(ey s)-.1
-H .122(equence are unbound by def).15 F 2.622(ault. In)-.1 F .122
-(the follo)2.622 F(wing)-.25 E(descriptions,)108 148.8 Q/F2 10
-/Times-Italic@0 SF(point)3.411 E F0 .911
-(refers to the current cursor position, and)3.411 F F2(mark)3.411 E F0
-.91(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.41(db).15 G
-3.41(yt)-3.41 G(he)-3.41 E F1(set\255mark)108 160.8 Q F0 2.5
+3.892(ya)-.15 G(re)-3.892 E 2.622(bound. Command)108 136.8 R .122
+(names without an accompan)2.622 F .122(ying k)-.15 F .421 -.15(ey s)-.1
+H .121(equence are unbound by def).15 F 2.621(ault. In)-.1 F .121
+(the follo)2.621 F(wing)-.25 E(descriptions,)108 148.8 Q/F2 10
+/Times-Italic@0 SF(point)3.41 E F0 .91
+(refers to the current cursor position, and)3.41 F F2(mark)3.411 E F0
+.911(refers to a cursor position sa)3.411 F -.15(ve)-.2 G 3.411(db).15 G
+3.411(yt)-3.411 G(he)-3.411 E F1(set\255mark)108 160.8 Q F0 2.5
 (command. The)2.5 F(te)2.5 E
 (xt between the point and mark is referred to as the)-.15 E F2 -.37(re)
 2.5 G(gion)-.03 E F0(.)A F1(Commands f)87 177.6 Q(or Mo)-.25 E(ving)-.1
@@ -4541,9 +4543,9 @@ E(beginning\255of\255line \(C\255a\))108 189.6 Q F0(Mo)144 201.6 Q .3
 -.15 H(orw).15 E(ard a character)-.1 E(.)-.55 E F1
 (backward\255char \(C\255b\))108 261.6 Q F0(Mo)144 273.6 Q .3 -.15(ve b)
 -.15 H(ack a character).15 E(.)-.55 E F1 -.25(fo)108 285.6 S(rward\255w)
-.25 E(ord \(M\255f\))-.1 E F0(Mo)144 297.6 Q .822 -.15(ve f)-.15 H(orw)
-.15 E .522(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W)
--.1 F .523(ords are composed of alphanumeric characters \(let-)-.8 F
+.25 E(ord \(M\255f\))-.1 E F0(Mo)144 297.6 Q .823 -.15(ve f)-.15 H(orw)
+.15 E .523(ard to the end of the ne)-.1 F .523(xt w)-.15 F 3.023(ord. W)
+-.1 F .522(ords are composed of alphanumeric characters \(let-)-.8 F
 (ters and digits\).)144 309.6 Q F1(backward\255w)108 321.6 Q
 (ord \(M\255b\))-.1 E F0(Mo)144 333.6 Q 1.71 -.15(ve b)-.15 H 1.41
 (ack to the start of the current or pre).15 F 1.41(vious w)-.25 F 3.91
@@ -4556,10 +4558,10 @@ G .993(th an ar).4 F .993(gument, refresh the)-.18 F
 393.6 S(draw\255curr).18 E(ent\255line)-.18 E F0
 (Refresh the current line.)144 405.6 Q F1(Commands f)87 422.4 Q
 (or Manipulating the History)-.25 E(accept\255line \(Newline, Retur)108
-434.4 Q(n\))-.15 E F0 .159(Accept the line re)144 446.4 R -.05(ga)-.15 G
-.159(rdless of where the cursor is.).05 F .158
-(If this line is non-empty)5.158 F 2.658(,a)-.65 G .158
-(dd it to the history list)-2.658 F .699(according to the state of the)
+434.4 Q(n\))-.15 E F0 .158(Accept the line re)144 446.4 R -.05(ga)-.15 G
+.158(rdless of where the cursor is.).05 F .158
+(If this line is non-empty)5.158 F 2.659(,a)-.65 G .159
+(dd it to the history list)-2.659 F .699(according to the state of the)
 144 458.4 R/F3 9/Times-Bold@0 SF(HISTCONTR)3.199 E(OL)-.27 E F0 -.25(va)
 2.949 G 3.199(riable. If).25 F .699
 (the line is a modi\214ed history line, then)3.199 F
@@ -4575,21 +4577,21 @@ E(ving forw)-.15 E(ard in the list.)-.1 E F1
 .3 -.15(ve t)-.15 H 2.5(ot).15 G(he end of the input history)-2.5 E 2.5
 (,i)-.65 G(.e., the line currently being entered.)-2.5 E F1 -2.29 -.18
 (re v)108 578.4 T(erse\255sear).08 E(ch\255history \(C\255r\))-.18 E F0
-1.471(Search backw)144 590.4 R 1.471
-(ard starting at the current line and mo)-.1 F 1.47
+1.47(Search backw)144 590.4 R 1.471
+(ard starting at the current line and mo)-.1 F 1.471
 (ving `up' through the history as necessary)-.15 F(.)-.65 E
 (This is an incremental search.)144 602.4 Q F1 -.25(fo)108 614.4 S
-(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.131
-(Search forw)144 626.4 R 1.131(ard starting at the current line and mo)
--.1 F 1.132(ving `do)-.15 F 1.132(wn' through the history as necessary)
+(rward\255sear).25 E(ch\255history \(C\255s\))-.18 E F0 1.132
+(Search forw)144 626.4 R 1.132(ard starting at the current line and mo)
+-.1 F 1.131(ving `do)-.15 F 1.131(wn' through the history as necessary)
 -.25 F(.)-.65 E(This is an incremental search.)144 638.4 Q F1
 (non\255incr)108 650.4 Q(emental\255r)-.18 E -2.3 -.15(ev e)-.18 H
-(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .165(Search backw)
+(rse\255sear).15 E(ch\255history \(M\255p\))-.18 E F0 .164(Search backw)
 144 662.4 R .164(ard through the history starting at the current line u\
 sing a non-incremental search for)-.1 F 2.5(as)144 674.4 S
 (tring supplied by the user)-2.5 E(.)-.55 E F1(non\255incr)108 686.4 Q
 (emental\255f)-.18 E(orward\255sear)-.25 E(ch\255history \(M\255n\))-.18
-E F0 1.353(Search forw)144 698.4 R 1.354(ard through the history using \
+E F0 1.354(Search forw)144 698.4 R 1.354(ard through the history using \
 a non-incremental search for a string supplied by the)-.1 F(user)144
 710.4 Q(.)-.55 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(38)200.665
 E 0 Cg EP
@@ -4599,71 +4601,71 @@ BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E/F1 10/Times-Bold@0 SF(history\255sear)108 84 Q(ch\255f)-.18 E
-(orward)-.25 E F0 .249(Search forw)144 96 R .249(ard through the histor\
+(orward)-.25 E F0 .248(Search forw)144 96 R .249(ard through the histor\
 y for the string of characters between the start of the current line)-.1
 F(and the point.)144 108 Q(This is a non-incremental search.)5 E F1
-(history\255sear)108 120 Q(ch\255backward)-.18 E F0 .95(Search backw)144
-132 R .951(ard through the history for the string of characters between\
- the start of the current)-.1 F(line and the point.)144 144 Q
+(history\255sear)108 120 Q(ch\255backward)-.18 E F0 .951(Search backw)
+144 132 R .951(ard through the history for the string of characters bet\
+ween the start of the current)-.1 F(line and the point.)144 144 Q
 (This is a non-incremental search.)5 E F1(yank\255nth\255ar)108 156 Q
 2.5(g\()-.1 G<4dad43ad7929>-2.5 E F0 .622(Insert the \214rst ar)144 168
 R .622(gument to the pre)-.18 F .622
 (vious command \(usually the second w)-.25 F .622(ord on the pre)-.1 F
-.622(vious line\))-.25 F .794(at point.)144 180 R -.4(Wi)5.794 G .794
+.622(vious line\))-.25 F .795(at point.)144 180 R -.4(Wi)5.795 G .794
 (th an ar).4 F(gument)-.18 E/F2 10/Times-Italic@0 SF(n)3.294 E F0 3.294
 (,i).24 G .794(nsert the)-3.294 F F2(n)3.294 E F0 .794(th w)B .794
-(ord from the pre)-.1 F .794(vious command \(the w)-.25 F .795
-(ords in the)-.1 F(pre)144 192 Q .292(vious command be)-.25 F .292
+(ord from the pre)-.1 F .794(vious command \(the w)-.25 F .794
+(ords in the)-.1 F(pre)144 192 Q .291(vious command be)-.25 F .291
 (gin with w)-.15 F .291(ord 0\).)-.1 F 2.791(An)5.291 G -2.25 -.15(eg a)
 -2.791 H(ti).15 E .591 -.15(ve a)-.25 H -.18(rg).15 G .291
-(ument inserts the).18 F F2(n)2.791 E F0 .291(th w)B .291
-(ord from the end of)-.1 F .281(the pre)144 204 R .281(vious command.)
--.25 F .281(Once the ar)5.281 F(gument)-.18 E F2(n)2.781 E F0 .281
-(is computed, the ar)2.781 F .281(gument is e)-.18 F .282
+(ument inserts the).18 F F2(n)2.791 E F0 .291(th w)B .292
+(ord from the end of)-.1 F .282(the pre)144 204 R .282(vious command.)
+-.25 F .282(Once the ar)5.282 F(gument)-.18 E F2(n)2.781 E F0 .281
+(is computed, the ar)2.781 F .281(gument is e)-.18 F .281
 (xtracted as if the "!)-.15 F F2(n)A F0(")A(history e)144 216 Q
 (xpansion had been speci\214ed.)-.15 E F1(yank\255last\255ar)108 228 Q
-2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.308
-(Insert the last ar)144 240 R 1.308(gument to the pre)-.18 F 1.307
-(vious command \(the last w)-.25 F 1.307(ord of the pre)-.1 F 1.307
-(vious history entry\).)-.25 F -.4(Wi)144 252 S .735(th an ar).4 F .735
-(gument, beha)-.18 F 1.035 -.15(ve ex)-.2 H .735(actly lik).15 F(e)-.1 E
-F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.736(.S)C(uccessi)-5.736 E
-1.036 -.15(ve c)-.25 H .736(alls to).15 F F1(yank\255last\255ar)3.236 E
-(g)-.1 E F0(mo)3.236 E -.15(ve)-.15 G .728
+2.5(g\()-.1 G -1.667(M\255. ,)-2.5 F -1.667(M\255_ \))2.5 F F0 1.307
+(Insert the last ar)144 240 R 1.307(gument to the pre)-.18 F 1.307
+(vious command \(the last w)-.25 F 1.308(ord of the pre)-.1 F 1.308
+(vious history entry\).)-.25 F -.4(Wi)144 252 S .736(th an ar).4 F .736
+(gument, beha)-.18 F 1.036 -.15(ve ex)-.2 H .736(actly lik).15 F(e)-.1 E
+F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.735(.S)C(uccessi)-5.735 E
+1.035 -.15(ve c)-.25 H .735(alls to).15 F F1(yank\255last\255ar)3.235 E
+(g)-.1 E F0(mo)3.235 E -.15(ve)-.15 G .728
 (back through the history list, inserting the last ar)144 264 R .728
-(gument of each line in turn.)-.18 F .728(The history e)5.728 F(xpan-)
+(gument of each line in turn.)-.18 F .729(The history e)5.728 F(xpan-)
 -.15 E .14(sion f)144 276 R .14(acilities are used to e)-.1 F .14
 (xtract the last ar)-.15 F .14(gument, as if the "!$" history e)-.18 F
 .14(xpansion had been speci-)-.15 F(\214ed.)144 288 Q F1
-(shell\255expand\255line \(M\255C\255e\))108 300 Q F0 .623
+(shell\255expand\255line \(M\255C\255e\))108 300 Q F0 .622
 (Expand the line as the shell does.)144 312 R .622
-(This performs alias and history e)5.622 F .622
+(This performs alias and history e)5.622 F .623
 (xpansion as well as all of the)-.15 F(shell w)144 324 Q(ord e)-.1 E 2.5
 (xpansions. See)-.15 F/F3 9/Times-Bold@0 SF(HIST)2.5 E(OR)-.162 E 2.25
 (YE)-.315 G(XP)-2.25 E(ANSION)-.666 E F0(belo)2.25 E 2.5(wf)-.25 G
 (or a description of history e)-2.5 E(xpansion.)-.15 E F1
-(history\255expand\255line \(M\255^\))108 336 Q F0 .938
+(history\255expand\255line \(M\255^\))108 336 Q F0 .939
 (Perform history e)144 348 R .939(xpansion on the current line.)-.15 F
 (See)5.939 E F3(HIST)3.439 E(OR)-.162 E 3.189(YE)-.315 G(XP)-3.189 E
-(ANSION)-.666 E F0(belo)3.189 E 3.439(wf)-.25 G .939(or a descrip-)
--3.439 F(tion of history e)144 360 Q(xpansion.)-.15 E F1(magic\255space)
-108 372 Q F0 1.627(Perform history e)144 384 R 1.627
-(xpansion on the current line and insert a space.)-.15 F(See)6.626 E F3
-(HIST)4.126 E(OR)-.162 E 3.876(YE)-.315 G(XP)-3.876 E(ANSION)-.666 E F0
+(ANSION)-.666 E F0(belo)3.189 E 3.438(wf)-.25 G .938(or a descrip-)
+-3.438 F(tion of history e)144 360 Q(xpansion.)-.15 E F1(magic\255space)
+108 372 Q F0 1.626(Perform history e)144 384 R 1.626
+(xpansion on the current line and insert a space.)-.15 F(See)6.627 E F3
+(HIST)4.127 E(OR)-.162 E 3.877(YE)-.315 G(XP)-3.877 E(ANSION)-.666 E F0
 (belo)144 396 Q 2.5(wf)-.25 G(or a description of history e)-2.5 E
-(xpansion.)-.15 E F1(alias\255expand\255line)108 408 Q F0 .394
-(Perform alias e)144 420 R .394(xpansion on the current line.)-.15 F
-(See)5.395 E F3(ALIASES)2.895 E F0(abo)2.645 E .695 -.15(ve f)-.15 H
-.395(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 432 Q F1
+(xpansion.)-.15 E F1(alias\255expand\255line)108 408 Q F0 .395
+(Perform alias e)144 420 R .395(xpansion on the current line.)-.15 F
+(See)5.395 E F3(ALIASES)2.895 E F0(abo)2.645 E .694 -.15(ve f)-.15 H
+.394(or a description of alias e).15 F(xpan-)-.15 E(sion.)144 432 Q F1
 (history\255and\255alias\255expand\255line)108 444 Q F0
 (Perform history and alias e)144 456 Q(xpansion on the current line.)
 -.15 E F1(insert\255last\255ar)108 468 Q(gument \(M\255.)-.1 E 2.5(,M)
 .833 G -1.667(\255_ \))-2.5 F F0 2.5(As)144 480 S(ynon)-2.5 E(ym for)
 -.15 E F1(yank\255last\255ar)2.5 E(g)-.1 E F0(.)A F1
-(operate\255and\255get\255next \(C\255o\))108 492 Q F0 .948
+(operate\255and\255get\255next \(C\255o\))108 492 Q F0 .947
 (Accept the current line for e)144 504 R -.15(xe)-.15 G .948
-(cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.247 -.15
-(ve t)-.25 H 3.447(ot).15 G .947(he current line from the)-3.447 F
+(cution and fetch the ne).15 F .948(xt line relati)-.15 F 1.248 -.15
+(ve t)-.25 H 3.448(ot).15 G .948(he current line from the)-3.448 F
 (history for editing.)144 516 Q(An)5 E 2.5(ya)-.15 G -.18(rg)-2.5 G
 (ument is ignored.).18 E F1
 (edit\255and\255execute\255command \(C\255xC\255e\))108 528 Q F0(In)144
@@ -4674,25 +4676,25 @@ F1(yank\255nth\255ar)3.235 E(g)-.1 E F0 5.736(.S)C(uccessi)-5.736 E
 /Times-Roman@0 SF(,)A F3($EDIT)2.25 E(OR)-.162 E F4(,)A F0(and)2.25 E F2
 (emacs)2.5 E F0(as the editor)2.5 E 2.5(,i)-.4 G 2.5(nt)-2.5 G
 (hat order)-2.5 E(.)-.55 E F1(Commands f)87 568.8 Q(or Changing T)-.25 E
-(ext)-.92 E(delete\255char \(C\255d\))108 580.8 Q F0 .358
+(ext)-.92 E(delete\255char \(C\255d\))108 580.8 Q F0 .357
 (Delete the character at point.)144 592.8 R .358(If point is at the be)
 5.358 F .358(ginning of the line, there are no characters in the)-.15 F
 (line, and the last character typed w)144 604.8 Q(as not bound to)-.1 E
 F1(delete\255char)2.5 E F0 2.5(,t)C(hen return)-2.5 E F3(EOF)2.5 E F4(.)
-A F1(backward\255delete\255char \(Rubout\))108 616.8 Q F0 .552
+A F1(backward\255delete\255char \(Rubout\))108 616.8 Q F0 .553
 (Delete the character behind the cursor)144 628.8 R 5.553(.W)-.55 G .553
 (hen gi)-5.553 F -.15(ve)-.25 G 3.053(nan).15 G .553(umeric ar)-3.053 F
-.553(gument, sa)-.18 F .853 -.15(ve t)-.2 H .553(he deleted te).15 F
-.553(xt on)-.15 F(the kill ring.)144 640.8 Q F1 -.25(fo)108 652.8 S
-(rward\255backward\255delete\255char).25 E F0 .474
-(Delete the character under the cursor)144 664.8 R 2.974(,u)-.4 G .474
-(nless the cursor is at the end of the line, in which case the)-2.974 F
+.552(gument, sa)-.18 F .852 -.15(ve t)-.2 H .552(he deleted te).15 F
+.552(xt on)-.15 F(the kill ring.)144 640.8 Q F1 -.25(fo)108 652.8 S
+(rward\255backward\255delete\255char).25 E F0 .473
+(Delete the character under the cursor)144 664.8 R 2.973(,u)-.4 G .474
+(nless the cursor is at the end of the line, in which case the)-2.973 F
 (character behind the cursor is deleted.)144 676.8 Q F1
-(quoted\255insert \(C\255q, C\255v\))108 688.8 Q F0 .778(Add the ne)144
+(quoted\255insert \(C\255q, C\255v\))108 688.8 Q F0 .779(Add the ne)144
 700.8 R .779(xt character typed to the line v)-.15 F 3.279
 (erbatim. This)-.15 F .779(is ho)3.279 F 3.279(wt)-.25 G 3.279(oi)-3.279
-G .779(nsert characters lik)-3.279 F(e)-.1 E F1(C\255q)3.279 E F0 3.279
-(,f)C(or)-3.279 E -.15(ex)144 712.8 S(ample.).15 E(GNU Bash-4.0)72 768 Q
+G .779(nsert characters lik)-3.279 F(e)-.1 E F1(C\255q)3.278 E F0 3.278
+(,f)C(or)-3.278 E -.15(ex)144 712.8 S(ample.).15 E(GNU Bash-4.0)72 768 Q
 (2008 July 6)150.675 E(39)200.665 E 0 Cg EP
 %%Page: 40 40
 %%BeginPageSetup
@@ -4703,56 +4705,56 @@ BP
 E F0(Insert a tab character)144 96 Q(.)-.55 E F1
 (self\255insert \(a, b, A, 1, !, ...\))108 108 Q F0
 (Insert the character typed.)144 120 Q F1(transpose\255chars \(C\255t\))
-108 132 Q F0 .322(Drag the character before point forw)144 144 R .321
+108 132 Q F0 .321(Drag the character before point forw)144 144 R .321
 (ard o)-.1 F -.15(ve)-.15 G 2.821(rt).15 G .321
-(he character at point, mo)-2.821 F .321(ving point forw)-.15 F .321
+(he character at point, mo)-2.821 F .322(ving point forw)-.15 F .322
 (ard as well.)-.1 F 1.182
 (If point is at the end of the line, then this transposes the tw)144 156
-R 3.683(oc)-.1 G 1.183(haracters before point.)-3.683 F(Ne)6.183 E -.05
+R 3.682(oc)-.1 G 1.182(haracters before point.)-3.682 F(Ne)6.182 E -.05
 (ga)-.15 G(ti).05 E -.15(ve)-.25 G(ar)144 168 Q(guments ha)-.18 E .3
 -.15(ve n)-.2 H 2.5(oe).15 G -.25(ff)-2.5 G(ect.).25 E F1
-(transpose\255w)108 180 Q(ords \(M\255t\))-.1 E F0 .024(Drag the w)144
-192 R .024(ord before point past the w)-.1 F .023(ord after point, mo)
--.1 F .023(ving point o)-.15 F -.15(ve)-.15 G 2.523(rt).15 G .023(hat w)
--2.523 F .023(ord as well.)-.1 F .023(If point)5.023 F
+(transpose\255w)108 180 Q(ords \(M\255t\))-.1 E F0 .023(Drag the w)144
+192 R .023(ord before point past the w)-.1 F .023(ord after point, mo)
+-.1 F .023(ving point o)-.15 F -.15(ve)-.15 G 2.524(rt).15 G .024(hat w)
+-2.524 F .024(ord as well.)-.1 F .024(If point)5.024 F
 (is at the end of the line, this transposes the last tw)144 204 Q 2.5
 (ow)-.1 G(ords on the line.)-2.6 E F1(upcase\255w)108 216 Q
-(ord \(M\255u\))-.1 E F0 1.698(Uppercase the current \(or follo)144 228
+(ord \(M\255u\))-.1 E F0 1.699(Uppercase the current \(or follo)144 228
 R 1.698(wing\) w)-.25 F 4.198(ord. W)-.1 F 1.698(ith a ne)-.4 F -.05(ga)
--.15 G(ti).05 E 1.999 -.15(ve a)-.25 H -.18(rg).15 G 1.699
+-.15 G(ti).05 E 1.998 -.15(ve a)-.25 H -.18(rg).15 G 1.698
 (ument, uppercase the pre).18 F(vious)-.25 E -.1(wo)144 240 S(rd, b).1 E
 (ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1(do)108 252 Q
-(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 264 Q 1.648
-(wercase the current \(or follo)-.25 F 1.648(wing\) w)-.25 F 4.148
-(ord. W)-.1 F 1.647(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.947 -.15
-(ve a)-.25 H -.18(rg).15 G 1.647(ument, lo).18 F 1.647(wercase the pre)
+(wncase\255w)-.1 E(ord \(M\255l\))-.1 E F0(Lo)144 264 Q 1.647
+(wercase the current \(or follo)-.25 F 1.647(wing\) w)-.25 F 4.147
+(ord. W)-.1 F 1.648(ith a ne)-.4 F -.05(ga)-.15 G(ti).05 E 1.948 -.15
+(ve a)-.25 H -.18(rg).15 G 1.648(ument, lo).18 F 1.648(wercase the pre)
 -.25 F(vious)-.25 E -.1(wo)144 276 S(rd, b).1 E(ut do not mo)-.2 E .3
 -.15(ve p)-.15 H(oint.).15 E F1(capitalize\255w)108 288 Q
-(ord \(M\255c\))-.1 E F0 1.974(Capitalize the current \(or follo)144 300
+(ord \(M\255c\))-.1 E F0 1.975(Capitalize the current \(or follo)144 300
 R 1.974(wing\) w)-.25 F 4.474(ord. W)-.1 F 1.974(ith a ne)-.4 F -.05(ga)
--.15 G(ti).05 E 2.274 -.15(ve a)-.25 H -.18(rg).15 G 1.975
+-.15 G(ti).05 E 2.274 -.15(ve a)-.25 H -.18(rg).15 G 1.974
 (ument, capitalize the pre).18 F(vious)-.25 E -.1(wo)144 312 S(rd, b).1
 E(ut do not mo)-.2 E .3 -.15(ve p)-.15 H(oint.).15 E F1 -.1(ove)108 324
-S(rwrite\255mode).1 E F0 -.8(To)144 336 S .438(ggle o).8 F -.15(ve)-.15
-G .438(rwrite mode.).15 F -.4(Wi)5.438 G .438(th an e).4 F .438
-(xplicit positi)-.15 F .737 -.15(ve n)-.25 H .437(umeric ar).15 F .437
-(gument, switches to o)-.18 F -.15(ve)-.15 G .437(rwrite mode.).15 F -.4
-(Wi)144 348 S .78(th an e).4 F .781(xplicit non-positi)-.15 F 1.081 -.15
-(ve n)-.25 H .781(umeric ar).15 F .781(gument, switches to insert mode.)
--.18 F .781(This command af)5.781 F(fects)-.25 E(only)144 360 Q F1
-(emacs)4.395 E F0(mode;)4.395 E F1(vi)4.395 E F0 1.894(mode does o)4.395
-F -.15(ve)-.15 G 1.894(rwrite dif).15 F(ferently)-.25 E 6.894(.E)-.65 G
-1.894(ach call to)-6.894 F/F2 10/Times-Italic@0 SF -.37(re)4.394 G
-(adline\(\)).37 E F0 1.894(starts in insert)4.394 F 3.968(mode. In)144
-372 R -.15(ove)3.968 G 1.468(rwrite mode, characters bound to).15 F F1
-(self\255insert)3.969 E F0 1.469(replace the te)3.969 F 1.469
-(xt at point rather than)-.15 F .958(pushing the te)144 384 R .958
-(xt to the right.)-.15 F .957(Characters bound to)5.958 F F1
-(backward\255delete\255char)3.457 E F0 .957(replace the character)3.457
-F(before point with a space.)144 396 Q(By def)5 E
-(ault, this command is unbound.)-.1 E F1(Killing and Y)87 412.8 Q
-(anking)-.85 E(kill\255line \(C\255k\))108 424.8 Q F0(Kill the te)144
-436.8 Q(xt from point to the end of the line.)-.15 E F1
+S(rwrite\255mode).1 E F0 -.8(To)144 336 S .437(ggle o).8 F -.15(ve)-.15
+G .437(rwrite mode.).15 F -.4(Wi)5.437 G .437(th an e).4 F .437
+(xplicit positi)-.15 F .738 -.15(ve n)-.25 H .438(umeric ar).15 F .438
+(gument, switches to o)-.18 F -.15(ve)-.15 G .438(rwrite mode.).15 F -.4
+(Wi)144 348 S .781(th an e).4 F .781(xplicit non-positi)-.15 F 1.081
+-.15(ve n)-.25 H .781(umeric ar).15 F .781
+(gument, switches to insert mode.)-.18 F .78(This command af)5.781 F
+(fects)-.25 E(only)144 360 Q F1(emacs)4.394 E F0(mode;)4.394 E F1(vi)
+4.394 E F0 1.894(mode does o)4.394 F -.15(ve)-.15 G 1.894(rwrite dif).15
+F(ferently)-.25 E 6.894(.E)-.65 G 1.894(ach call to)-6.894 F/F2 10
+/Times-Italic@0 SF -.37(re)4.395 G(adline\(\)).37 E F0 1.895
+(starts in insert)4.395 F 3.969(mode. In)144 372 R -.15(ove)3.969 G
+1.469(rwrite mode, characters bound to).15 F F1(self\255insert)3.969 E
+F0 1.468(replace the te)3.969 F 1.468(xt at point rather than)-.15 F
+.957(pushing the te)144 384 R .957(xt to the right.)-.15 F .958
+(Characters bound to)5.957 F F1(backward\255delete\255char)3.458 E F0
+.958(replace the character)3.458 F(before point with a space.)144 396 Q
+(By def)5 E(ault, this command is unbound.)-.1 E F1(Killing and Y)87
+412.8 Q(anking)-.85 E(kill\255line \(C\255k\))108 424.8 Q F0
+(Kill the te)144 436.8 Q(xt from point to the end of the line.)-.15 E F1
 (backward\255kill\255line \(C\255x Rubout\))108 448.8 Q F0(Kill backw)
 144 460.8 Q(ard to the be)-.1 E(ginning of the line.)-.15 E F1
 (unix\255line\255discard \(C\255u\))108 472.8 Q F0(Kill backw)144 484.8
@@ -4760,23 +4762,23 @@ Q(ard from point to the be)-.1 E(ginning of the line.)-.15 E
 (The killed te)5 E(xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)
 -2.5 G(he kill-ring.)-2.5 E F1(kill\255whole\255line)108 496.8 Q F0
 (Kill all characters on the current line, no matter where point is.)144
-508.8 Q F1(kill\255w)108 520.8 Q(ord \(M\255d\))-.1 E F0 .728
-(Kill from point to the end of the current w)144 532.8 R .729
-(ord, or if between w)-.1 F .729(ords, to the end of the ne)-.1 F .729
+508.8 Q F1(kill\255w)108 520.8 Q(ord \(M\255d\))-.1 E F0 .729
+(Kill from point to the end of the current w)144 532.8 R .728
+(ord, or if between w)-.1 F .728(ords, to the end of the ne)-.1 F .728
 (xt w)-.15 F(ord.)-.1 E -.8(Wo)144 544.8 S
 (rd boundaries are the same as those used by).8 E F1 -.25(fo)2.5 G
 (rward\255w).25 E(ord)-.1 E F0(.)A F1(backward\255kill\255w)108 556.8 Q
 (ord \(M\255Rubout\))-.1 E F0(Kill the w)144 568.8 Q(ord behind point.)
 -.1 E -.8(Wo)5 G(rd boundaries are the same as those used by).8 E F1
 (backward\255w)2.5 E(ord)-.1 E F0(.)A F1(unix\255w)108 580.8 Q
-(ord\255rubout \(C\255w\))-.1 E F0 .365(Kill the w)144 592.8 R .365
-(ord behind point, using white space as a w)-.1 F .364(ord boundary)-.1
-F 5.364(.T)-.65 G .364(he killed te)-5.364 F .364(xt is sa)-.15 F -.15
-(ve)-.2 G 2.864(do).15 G 2.864(nt)-2.864 G(he)-2.864 E(kill-ring.)144
-604.8 Q F1(unix\255\214lename\255rubout)108 616.8 Q F0 .166(Kill the w)
+(ord\255rubout \(C\255w\))-.1 E F0 .364(Kill the w)144 592.8 R .364
+(ord behind point, using white space as a w)-.1 F .365(ord boundary)-.1
+F 5.365(.T)-.65 G .365(he killed te)-5.365 F .365(xt is sa)-.15 F -.15
+(ve)-.2 G 2.865(do).15 G 2.865(nt)-2.865 G(he)-2.865 E(kill-ring.)144
+604.8 Q F1(unix\255\214lename\255rubout)108 616.8 Q F0 .167(Kill the w)
 144 628.8 R .166
 (ord behind point, using white space and the slash character as the w)
--.1 F .167(ord boundaries.)-.1 F(The)5.167 E(killed te)144 640.8 Q
+-.1 F .166(ord boundaries.)-.1 F(The)5.166 E(killed te)144 640.8 Q
 (xt is sa)-.15 E -.15(ve)-.2 G 2.5(do).15 G 2.5(nt)-2.5 G(he kill-ring.)
 -2.5 E F1(delete\255horizontal\255space \(M\255\\\))108 652.8 Q F0
 (Delete all spaces and tabs around point.)144 664.8 Q F1(kill\255r)108
@@ -4791,14 +4793,14 @@ BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E/F1 10/Times-Bold@0 SF(copy\255backward\255w)108 84 Q(ord)-.1 E F0
-(Cop)144 96 Q 4.801(yt)-.1 G 2.301(he w)-4.801 F 2.301
+(Cop)144 96 Q 4.8(yt)-.1 G 2.3(he w)-4.8 F 2.3
 (ord before point to the kill b)-.1 F(uf)-.2 E(fer)-.25 E 7.301(.T)-.55
-G 2.301(he w)-7.301 F 2.3(ord boundaries are the same as)-.1 F F1(back-)
-4.8 E(ward\255w)144 108 Q(ord)-.1 E F0(.)A F1(copy\255f)108 120 Q
-(orward\255w)-.25 E(ord)-.1 E F0(Cop)144 132 Q 4.507(yt)-.1 G 2.007
-(he w)-4.507 F 2.007(ord follo)-.1 F 2.007(wing point to the kill b)-.25
-F(uf)-.2 E(fer)-.25 E 7.008(.T)-.55 G 2.008(he w)-7.008 F 2.008
-(ord boundaries are the same as)-.1 F F1 -.25(fo)4.508 G -.37(r-).25 G
+G 2.301(he w)-7.301 F 2.301(ord boundaries are the same as)-.1 F F1
+(back-)4.801 E(ward\255w)144 108 Q(ord)-.1 E F0(.)A F1(copy\255f)108 120
+Q(orward\255w)-.25 E(ord)-.1 E F0(Cop)144 132 Q 4.508(yt)-.1 G 2.008
+(he w)-4.508 F 2.008(ord follo)-.1 F 2.008(wing point to the kill b)-.25
+F(uf)-.2 E(fer)-.25 E 7.007(.T)-.55 G 2.007(he w)-7.007 F 2.007
+(ord boundaries are the same as)-.1 F F1 -.25(fo)4.507 G -.37(r-).25 G
 (ward\255w)144 144 Q(ord)-.1 E F0(.)A F1(yank \(C\255y\))108 156 Q F0 -1
 (Ya)144 168 S(nk the top of the kill ring into the b)1 E(uf)-.2 E
 (fer at point.)-.25 E F1(yank\255pop \(M\255y\))108 180 Q F0
@@ -4806,26 +4808,26 @@ F(uf)-.2 E(fer)-.25 E 7.008(.T)-.55 G 2.008(he w)-7.008 F 2.008
 (op. Only)-2.5 F -.1(wo)2.5 G(rks follo).1 E(wing)-.25 E F1(yank)2.5 E
 F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 208.8 Q
 (guments)-.1 E(digit\255ar)108 220.8 Q
-(gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .642
+(gument \(M\2550, M\2551, ..., M\255\255\))-.1 E F0 .641
 (Add this digit to the ar)144 232.8 R .641
 (gument already accumulating, or start a ne)-.18 F 3.141(wa)-.25 G -.18
-(rg)-3.141 G 3.141(ument. M\255\255).18 F .641(starts a ne)3.141 F(g-)
+(rg)-3.141 G 3.142(ument. M\255\255).18 F .642(starts a ne)3.142 F(g-)
 -.15 E(ati)144 244.8 Q .3 -.15(ve a)-.25 H -.18(rg).15 G(ument.).18 E F1
-(uni)108 256.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0 .778
+(uni)108 256.8 Q -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0 .779
 (This is another w)144 268.8 R .779(ay to specify an ar)-.1 F 3.279
-(gument. If)-.18 F .779(this command is follo)3.279 F .779
+(gument. If)-.18 F .779(this command is follo)3.279 F .778
 (wed by one or more digits,)-.25 F 1.376
 (optionally with a leading minus sign, those digits de\214ne the ar)144
 280.8 R 3.876(gument. If)-.18 F 1.376(the command is fol-)3.876 F(lo)144
 292.8 Q 1.17(wed by digits, e)-.25 F -.15(xe)-.15 G(cuting).15 E F1(uni)
 3.67 E -.1(ve)-.1 G(rsal\255ar).1 E(gument)-.1 E F0(ag)3.67 E 1.17
 (ain ends the numeric ar)-.05 F 1.17(gument, b)-.18 F 1.17(ut is other)
--.2 F(-)-.2 E .899(wise ignored.)144 304.8 R .898
-(As a special case, if this command is immediately follo)5.899 F .898
+-.2 F(-)-.2 E .898(wise ignored.)144 304.8 R .898
+(As a special case, if this command is immediately follo)5.898 F .898
 (wed by a character that is)-.25 F .243
 (neither a digit or minus sign, the ar)144 316.8 R .243
 (gument count for the ne)-.18 F .243(xt command is multiplied by four)
--.15 F 5.243(.T)-.55 G(he)-5.243 E(ar)144 328.8 Q .378
+-.15 F 5.242(.T)-.55 G(he)-5.242 E(ar)144 328.8 Q .378
 (gument count is initially one, so e)-.18 F -.15(xe)-.15 G .378
 (cuting this function the \214rst time mak).15 F .378(es the ar)-.1 F
 .378(gument count)-.18 F(four)144 340.8 Q 2.5(,as)-.4 G(econd time mak)
@@ -4833,12 +4835,12 @@ F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 208.8 Q
 (Completing)87 357.6 Q(complete \(T)108 369.6 Q(AB\))-.9 E F0 1.137
 (Attempt to perform completion on the te)144 381.6 R 1.137
 (xt before point.)-.15 F F1(Bash)6.137 E F0 1.137
-(attempts completion treating the)3.637 F(te)144 393.6 Q .533(xt as a v)
--.15 F .533(ariable \(if the te)-.25 F .533(xt be)-.15 F .533(gins with)
--.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .532(xt be)-.15 F
-.532(gins with)-.15 F F1(~)3.032 E F0 .532(\), hostname \(if the)B(te)
-144 405.6 Q .701(xt be)-.15 F .701(gins with)-.15 F F1(@)3.201 E F0 .701
-(\), or command \(including aliases and functions\) in turn.)B .702
+(attempts completion treating the)3.637 F(te)144 393.6 Q .532(xt as a v)
+-.15 F .532(ariable \(if the te)-.25 F .532(xt be)-.15 F .533(gins with)
+-.15 F F1($)3.033 E F0 .533(\), username \(if the te)B .533(xt be)-.15 F
+.533(gins with)-.15 F F1(~)3.033 E F0 .533(\), hostname \(if the)B(te)
+144 405.6 Q .702(xt be)-.15 F .702(gins with)-.15 F F1(@)3.202 E F0 .701
+(\), or command \(including aliases and functions\) in turn.)B .701
 (If none of these pro-)5.701 F
 (duces a match, \214lename completion is attempted.)144 417.6 Q F1
 (possible\255completions \(M\255?\))108 429.6 Q F0
@@ -4846,19 +4848,19 @@ F0(or)2.5 E F1(yank\255pop)2.5 E F0(.)A F1(Numeric Ar)87 208.8 Q
 -.15 E F1(insert\255completions \(M\255*\))108 453.6 Q F0 .783
 (Insert all completions of the te)144 465.6 R .783
 (xt before point that w)-.15 F .783(ould ha)-.1 F 1.083 -.15(ve b)-.2 H
-.783(een generated by).15 F F1(possible\255com-)3.282 E(pletions)144
-477.6 Q F0(.)A F1(menu\255complete)108 489.6 Q F0 .928(Similar to)144
-501.6 R F1(complete)3.428 E F0 3.428(,b)C .929(ut replaces the w)-3.628
+.783(een generated by).15 F F1(possible\255com-)3.283 E(pletions)144
+477.6 Q F0(.)A F1(menu\255complete)108 489.6 Q F0 .929(Similar to)144
+501.6 R F1(complete)3.429 E F0 3.429(,b)C .929(ut replaces the w)-3.629
 F .929(ord to be completed with a single match from the list of)-.1 F
-1.194(possible completions.)144 513.6 R 1.194(Repeated e)6.194 F -.15
-(xe)-.15 G 1.194(cution of).15 F F1(menu\255complete)3.694 E F0 1.193
-(steps through the list of possible)3.694 F .828
+1.193(possible completions.)144 513.6 R 1.193(Repeated e)6.193 F -.15
+(xe)-.15 G 1.193(cution of).15 F F1(menu\255complete)3.694 E F0 1.194
+(steps through the list of possible)3.694 F .829
 (completions, inserting each match in turn.)144 525.6 R .828
 (At the end of the list of completions, the bell is rung)5.828 F .727
 (\(subject to the setting of)144 537.6 R F1(bell\255style)3.227 E F0
 3.227(\)a)C .727(nd the original te)-3.227 F .727(xt is restored.)-.15 F
 .727(An ar)5.727 F .727(gument of)-.18 F/F2 10/Times-Italic@0 SF(n)3.227
-E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.227 E F0 1.73
+E F0(mo)3.227 E -.15(ve)-.15 G(s).15 E F2(n)3.228 E F0 1.73
 (positions forw)144 549.6 R 1.73(ard in the list of matches; a ne)-.1 F
 -.05(ga)-.15 G(ti).05 E 2.03 -.15(ve a)-.25 H -.18(rg).15 G 1.73
 (ument may be used to mo).18 F 2.03 -.15(ve b)-.15 H(ackw).15 E(ard)-.1
@@ -4867,7 +4869,7 @@ E(through the list.)144 561.6 Q(This command is intended to be bound to)
 (ault.)-.1 E F1(delete\255char\255or\255list)108 573.6 Q F0 .234
 (Deletes the character under the cursor if not at the be)144 585.6 R
 .234(ginning or end of the line \(lik)-.15 F(e)-.1 E F1(delete\255char)
-2.734 E F0(\).)A .425(If at the end of the line, beha)144 597.6 R -.15
+2.735 E F0(\).)A .425(If at the end of the line, beha)144 597.6 R -.15
 (ve)-.2 G 2.925(si).15 G .425(dentically to)-2.925 F F1
 (possible\255completions)2.925 E F0 5.425(.T)C .425
 (his command is unbound)-5.425 F(by def)144 609.6 Q(ault.)-.1 E F1
@@ -4900,10 +4902,10 @@ BP
 (possible\255hostname\255completions \(C\255x @\))108 156 Q F0
 (List the possible completions of the te)144 168 Q
 (xt before point, treating it as a hostname.)-.15 E F1
-(complete\255command \(M\255!\))108 180 Q F0 .581
+(complete\255command \(M\255!\))108 180 Q F0 .58
 (Attempt completion on the te)144 192 R .581
-(xt before point, treating it as a command name.)-.15 F .58
-(Command comple-)5.58 F .715(tion attempts to match the te)144 204 R
+(xt before point, treating it as a command name.)-.15 F .581
+(Command comple-)5.581 F .715(tion attempts to match the te)144 204 R
 .715(xt ag)-.15 F .715(ainst aliases, reserv)-.05 F .715(ed w)-.15 F
 .715(ords, shell functions, shell b)-.1 F .715(uiltins, and)-.2 F
 (\214nally e)144 216 Q -.15(xe)-.15 G
@@ -4911,14 +4913,14 @@ BP
 (possible\255command\255completions \(C\255x !\))108 228 Q F0
 (List the possible completions of the te)144 240 Q
 (xt before point, treating it as a command name.)-.15 E F1
-(dynamic\255complete\255history \(M\255T)108 252 Q(AB\))-.9 E F0 .425
+(dynamic\255complete\255history \(M\255T)108 252 Q(AB\))-.9 E F0 .424
 (Attempt completion on the te)144 264 R .425
-(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .424
+(xt before point, comparing the te)-.15 F .425(xt ag)-.15 F .425
 (ainst lines from the history list)-.05 F
 (for possible completion matches.)144 276 Q F1(dab)108 288 Q(br)-.1 E
--.15(ev)-.18 G(\255expand).15 E F0 .61
+-.15(ev)-.18 G(\255expand).15 E F0 .611
 (Attempt menu completion on the te)144 300 R .611
-(xt before point, comparing the te)-.15 F .611(xt ag)-.15 F .611
+(xt before point, comparing the te)-.15 F .61(xt ag)-.15 F .61
 (ainst lines from the his-)-.05 F
 (tory list for possible completion matches.)144 312 Q F1
 (complete\255into\255braces \(M\255{\))108 324 Q F0 .4(Perform \214lena\
@@ -4934,21 +4936,21 @@ E(start\255kbd\255macr)108 376.8 Q 2.5(o\()-.18 G(C\255x \()-2.5 E(\))
 (ving the characters typed into the current k)-.2 E -.15(ey)-.1 G
 (board macro and store the de\214nition.).15 E F1
 (call\255last\255kbd\255macr)108 424.8 Q 2.5(o\()-.18 G(C\255x e\))-2.5
-E F0(Re-e)144 436.8 Q -.15(xe)-.15 G .999(cute the last k).15 F -.15(ey)
--.1 G .999(board macro de\214ned, by making the characters in the macro\
- appear as if).15 F(typed at the k)144 448.8 Q -.15(ey)-.1 G(board.).15
-E F1(Miscellaneous)87 465.6 Q -.18(re)108 477.6 S<ad72>.18 E
-(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.777
+E F0(Re-e)144 436.8 Q -.15(xe)-.15 G 1(cute the last k).15 F -.15(ey)-.1
+G .999(board macro de\214ned, by making the characters in the macro app\
+ear as if).15 F(typed at the k)144 448.8 Q -.15(ey)-.1 G(board.).15 E F1
+(Miscellaneous)87 465.6 Q -.18(re)108 477.6 S<ad72>.18 E
+(ead\255init\255\214le \(C\255x C\255r\))-.18 E F0 1.776
 (Read in the contents of the)144 489.6 R/F2 10/Times-Italic@0 SF(inputr)
-4.277 E(c)-.37 E F0 1.776(\214le, and incorporate an)4.276 F 4.276(yb)
--.15 G 1.776(indings or v)-4.276 F 1.776(ariable assignments)-.25 F
-(found there.)144 501.6 Q F1(abort \(C\255g\))108 513.6 Q F0 3.248
+4.276 E(c)-.37 E F0 1.777(\214le, and incorporate an)4.276 F 4.277(yb)
+-.15 G 1.777(indings or v)-4.277 F 1.777(ariable assignments)-.25 F
+(found there.)144 501.6 Q F1(abort \(C\255g\))108 513.6 Q F0 3.249
 (Abort the current editing command and ring the terminal')144 525.6 R
-5.749(sb)-.55 G 3.249(ell \(subject to the setting of)-5.749 F F1
+5.748(sb)-.55 G 3.248(ell \(subject to the setting of)-5.748 F F1
 (bell\255style)144 537.6 Q F0(\).)A F1(do\255upper)108 549.6 Q
 (case\255v)-.18 E(ersion \(M\255a, M\255b, M\255)-.1 E F2(x)A F1 2.5(,.)
-C(..\))-2.5 E F0 1.756(If the meta\214ed character)144 561.6 R F2(x)
-4.256 E F0 1.755(is lo)4.256 F 1.755
+C(..\))-2.5 E F0 1.755(If the meta\214ed character)144 561.6 R F2(x)
+4.255 E F0 1.755(is lo)4.255 F 1.756
 (wercase, run the command that is bound to the corresponding)-.25 F
 (uppercase character)144 573.6 Q(.)-.55 E F1(pr)108 585.6 Q
 (e\214x\255meta \(ESC\))-.18 E F0(Metafy the ne)144 597.6 Q
@@ -4974,49 +4976,49 @@ BP
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E/F1 10/Times-Bold@0 SF
 (exchange\255point\255and\255mark \(C\255x C\255x\))108 84 Q F0(Sw)144
-96 Q .283(ap the point with the mark.)-.1 F .283
+96 Q .282(ap the point with the mark.)-.1 F .283
 (The current cursor position is set to the sa)5.283 F -.15(ve)-.2 G
-2.782(dp).15 G .282(osition, and the old)-2.782 F(cursor position is sa)
+2.783(dp).15 G .283(osition, and the old)-2.783 F(cursor position is sa)
 144 108 Q -.15(ve)-.2 G 2.5(da).15 G 2.5(st)-2.5 G(he mark.)-2.5 E F1
-(character\255sear)108 120 Q(ch \(C\255]\))-.18 E F0 3.035(Ac)144 132 S
-.535(haracter is read and point is mo)-3.035 F -.15(ve)-.15 G 3.035(dt)
+(character\255sear)108 120 Q(ch \(C\255]\))-.18 E F0 3.036(Ac)144 132 S
+.536(haracter is read and point is mo)-3.036 F -.15(ve)-.15 G 3.035(dt)
 .15 G 3.035(ot)-3.035 G .535(he ne)-3.035 F .535
-(xt occurrence of that character)-.15 F 5.536(.A)-.55 G(ne)-2.5 E -.05
-(ga)-.15 G(ti).05 E .836 -.15(ve c)-.25 H(ount).15 E(searches for pre)
+(xt occurrence of that character)-.15 F 5.535(.A)-.55 G(ne)-2.5 E -.05
+(ga)-.15 G(ti).05 E .835 -.15(ve c)-.25 H(ount).15 E(searches for pre)
 144 144 Q(vious occurrences.)-.25 E F1(character\255sear)108 156 Q
-(ch\255backward \(M\255C\255]\))-.18 E F0 3.544(Ac)144 168 S 1.044
-(haracter is read and point is mo)-3.544 F -.15(ve)-.15 G 3.544(dt).15 G
+(ch\255backward \(M\255C\255]\))-.18 E F0 3.543(Ac)144 168 S 1.043
+(haracter is read and point is mo)-3.543 F -.15(ve)-.15 G 3.544(dt).15 G
 3.544(ot)-3.544 G 1.044(he pre)-3.544 F 1.044
-(vious occurrence of that character)-.25 F 6.043(.A)-.55 G(ne)-2.5 E
+(vious occurrence of that character)-.25 F 6.044(.A)-.55 G(ne)-2.5 E
 -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G
 (count searches for subsequent occurrences.)144 180 Q F1
-(insert\255comment \(M\255#\))108 192 Q F0 -.4(Wi)144 204 S .48
-(thout a numeric ar).4 F .48(gument, the v)-.18 F .481
+(insert\255comment \(M\255#\))108 192 Q F0 -.4(Wi)144 204 S .481
+(thout a numeric ar).4 F .481(gument, the v)-.18 F .481
 (alue of the readline)-.25 F F1(comment\255begin)2.981 E F0 -.25(va)
-2.981 G .481(riable is inserted at the).25 F(be)144 216 Q .098
-(ginning of the current line.)-.15 F .098(If a numeric ar)5.098 F .097
-(gument is supplied, this command acts as a toggle:)-.18 F(if)5.097 E
-.321(the characters at the be)144 228 R .321
+2.981 G .48(riable is inserted at the).25 F(be)144 216 Q .097
+(ginning of the current line.)-.15 F .098(If a numeric ar)5.097 F .098
+(gument is supplied, this command acts as a toggle:)-.18 F(if)5.098 E
+.322(the characters at the be)144 228 R .321
 (ginning of the line do not match the v)-.15 F .321(alue of)-.25 F F1
-(comment\255begin)2.821 E F0 2.822(,t)C .322(he v)-2.822 F .322(alue is)
--.25 F 1.014(inserted, otherwise the characters in)144 240 R F1
-(comment-begin)3.514 E F0 1.014(are deleted from the be)3.514 F 1.013
-(ginning of the line.)-.15 F 1.468
+(comment\255begin)2.821 E F0 2.821(,t)C .321(he v)-2.821 F .321(alue is)
+-.25 F 1.013(inserted, otherwise the characters in)144 240 R F1
+(comment-begin)3.514 E F0 1.014(are deleted from the be)3.514 F 1.014
+(ginning of the line.)-.15 F 1.469
 (In either case, the line is accepted as if a ne)144 252 R 1.468
-(wline had been typed.)-.25 F 1.469(The def)6.469 F 1.469(ault v)-.1 F
-1.469(alue of)-.25 F F1(com-)3.969 E(ment\255begin)144 264 Q F0 .84
-(causes this command to mak)3.34 F 3.339(et)-.1 G .839
-(he current line a shell comment.)-3.339 F .839(If a numeric ar)5.839 F
+(wline had been typed.)-.25 F 1.468(The def)6.468 F 1.468(ault v)-.1 F
+1.468(alue of)-.25 F F1(com-)3.968 E(ment\255begin)144 264 Q F0 .839
+(causes this command to mak)3.339 F 3.339(et)-.1 G .839
+(he current line a shell comment.)-3.339 F .84(If a numeric ar)5.84 F
 (gu-)-.18 E(ment causes the comment character to be remo)144 276 Q -.15
 (ve)-.15 G(d, the line will be e).15 E -.15(xe)-.15 G
 (cuted by the shell.).15 E F1(glob\255complete\255w)108 288 Q
-(ord \(M\255g\))-.1 E F0 .791(The w)144 300 R .791
-(ord before point is treated as a pattern for pathname e)-.1 F .792
+(ord \(M\255g\))-.1 E F0 .792(The w)144 300 R .791
+(ord before point is treated as a pattern for pathname e)-.1 F .791
 (xpansion, with an asterisk implicitly)-.15 F 2.5(appended. This)144 312
 R(pattern is used to generate a list of matching \214le names for possi\
 ble completions.)2.5 E F1(glob\255expand\255w)108 324 Q
-(ord \(C\255x *\))-.1 E F0 .372(The w)144 336 R .372
-(ord before point is treated as a pattern for pathname e)-.1 F .371
+(ord \(C\255x *\))-.1 E F0 .371(The w)144 336 R .372
+(ord before point is treated as a pattern for pathname e)-.1 F .372
 (xpansion, and the list of matching \214le)-.15 F .516
 (names is inserted, replacing the w)144 348 R 3.016(ord. If)-.1 F 3.016
 (an)3.016 G .516(umeric ar)-3.016 F .516
@@ -5028,54 +5030,54 @@ ble completions.)2.5 E F1(glob\255expand\255w)108 324 Q
 .872(the line is redra)144 396 R 3.372(wn. If)-.15 F 3.372(an)3.372 G
 .872(umeric ar)-3.372 F .872
 (gument is supplied, an asterisk is appended before pathname)-.18 F -.15
-(ex)144 408 S(pansion.).15 E F1(dump\255functions)108 420 Q F0 .627
-(Print all of the functions and their k)144 432 R .927 -.15(ey b)-.1 H
-.626(indings to the readline output stream.).15 F .626(If a numeric ar)
-5.626 F(gu-)-.18 E
+(ex)144 408 S(pansion.).15 E F1(dump\255functions)108 420 Q F0 .626
+(Print all of the functions and their k)144 432 R .926 -.15(ey b)-.1 H
+.627(indings to the readline output stream.).15 F .627(If a numeric ar)
+5.627 F(gu-)-.18 E
 (ment is supplied, the output is formatted in such a w)144 444 Q
 (ay that it can be made part of an)-.1 E/F2 10/Times-Italic@0 SF(inputr)
 2.5 E(c)-.37 E F0(\214le.)2.5 E F1(dump\255v)108 456 Q(ariables)-.1 E F0
-1.799(Print all of the settable readline v)144 468 R 1.799
-(ariables and their v)-.25 F 1.8(alues to the readline output stream.)
--.25 F 1.8(If a)6.8 F .305(numeric ar)144 480 R .304
+1.8(Print all of the settable readline v)144 468 R 1.799
+(ariables and their v)-.25 F 1.799(alues to the readline output stream.)
+-.25 F 1.799(If a)6.799 F .304(numeric ar)144 480 R .304
 (gument is supplied, the output is formatted in such a w)-.18 F .304
 (ay that it can be made part of an)-.1 F F2(inputr)144 492 Q(c)-.37 E F0
-(\214le.)2.5 E F1(dump\255macr)108 504 Q(os)-.18 E F0 .592
-(Print all of the readline k)144 516 R .892 -.15(ey s)-.1 H .592
-(equences bound to macros and the strings the).15 F 3.093(yo)-.15 G
-3.093(utput. If)-3.093 F 3.093(an)3.093 G(umeric)-3.093 E(ar)144 528 Q
+(\214le.)2.5 E F1(dump\255macr)108 504 Q(os)-.18 E F0 .593
+(Print all of the readline k)144 516 R .893 -.15(ey s)-.1 H .592
+(equences bound to macros and the strings the).15 F 3.092(yo)-.15 G
+3.092(utput. If)-3.092 F 3.092(an)3.092 G(umeric)-3.092 E(ar)144 528 Q
 .528(gument is supplied, the output is formatted in such a w)-.18 F .528
-(ay that it can be made part of an)-.1 F F2(inputr)3.027 E(c)-.37 E F0
+(ay that it can be made part of an)-.1 F F2(inputr)3.028 E(c)-.37 E F0
 (\214le.)144 540 Q F1(display\255shell\255v)108 552 Q
 (ersion \(C\255x C\255v\))-.1 E F0(Display v)144 564 Q
 (ersion information about the current instance of)-.15 E F1(bash)2.5 E
-F0(.)A F1(Pr)87 580.8 Q(ogrammable Completion)-.18 E F0 .146(When w)108
+F0(.)A F1(Pr)87 580.8 Q(ogrammable Completion)-.18 E F0 .147(When w)108
 592.8 R .147(ord completion is attempted for an ar)-.1 F .147
 (gument to a command for which a completion speci\214cation \(a)-.18 F
-F2(compspec)108 604.8 Q F0 3.829(\)h)C 1.329
-(as been de\214ned using the)-3.829 F F1(complete)3.829 E F0 -.2(bu)
+F2(compspec)108 604.8 Q F0 3.828(\)h)C 1.329
+(as been de\214ned using the)-3.828 F F1(complete)3.829 E F0 -.2(bu)
 3.829 G 1.329(iltin \(see).2 F/F3 9/Times-Bold@0 SF 1.329(SHELL B)3.829
-F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.328(w\), the)
+F(UIL)-.09 E 1.329(TIN COMMANDS)-.828 F F0(belo)3.579 E 1.329(w\), the)
 -.25 F(programmable completion f)108 616.8 Q(acilities are in)-.1 E -.2
-(vo)-.4 G -.1(ke).2 G(d.).1 E .333
-(First, the command name is identi\214ed.)108 633.6 R .334
+(vo)-.4 G -.1(ke).2 G(d.).1 E .334
+(First, the command name is identi\214ed.)108 633.6 R .333
 (If a compspec has been de\214ned for that command, the compspec is)
-5.333 F .587
+5.334 F .587
 (used to generate the list of possible completions for the w)108 645.6 R
-3.087(ord. If)-.1 F .587(the command w)3.087 F .586
-(ord is a full pathname, a)-.1 F 1.18
+3.087(ord. If)-.1 F .587(the command w)3.087 F .587
+(ord is a full pathname, a)-.1 F 1.181
 (compspec for the full pathname is searched for \214rst.)108 657.6 R
-1.181(If no compspec is found for the full pathname, an)6.181 F
+1.18(If no compspec is found for the full pathname, an)6.181 F
 (attempt is made to \214nd a compspec for the portion follo)108 669.6 Q
 (wing the \214nal slash.)-.25 E .817(Once a compspec has been found, it\
  is used to generate the list of matching w)108 686.4 R 3.317(ords. If)
 -.1 F 3.317(ac)3.317 G .817(ompspec is not)-3.317 F(found, the def)108
 698.4 Q(ault)-.1 E F1(bash)2.5 E F0(completion as described abo)2.5 E .3
 -.15(ve u)-.15 H(nder).15 E F1(Completing)2.5 E F0(is performed.)2.5 E
-.463(First, the actions speci\214ed by the compspec are used.)108 715.2
-R .464(Only matches which are pre\214x)5.464 F .464(ed by the w)-.15 F
-.464(ord being)-.1 F .596(completed are returned.)108 727.2 R .596
-(When the)5.596 F F1<ad66>3.096 E F0(or)3.095 E F1<ad64>3.095 E F0 .595
+.464(First, the actions speci\214ed by the compspec are used.)108 715.2
+R .463(Only matches which are pre\214x)5.464 F .463(ed by the w)-.15 F
+.463(ord being)-.1 F .595(completed are returned.)108 727.2 R .595
+(When the)5.595 F F1<ad66>3.095 E F0(or)3.095 E F1<ad64>3.095 E F0 .596
 (option is used for \214lename or directory name completion, the)3.095 F
 (GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(43)200.665 E 0 Cg EP
 %%Page: 44 44
@@ -5088,140 +5090,140 @@ E F0(is used to \214lter the matches.)2.25 E(An)108 100.8 Q 2.585(yc)
 -.15 G .085(ompletions speci\214ed by a \214lename e)-2.585 F .085
 (xpansion pattern to the)-.15 F/F2 10/Times-Bold@0 SF<ad47>2.585 E F0
 .085(option are generated ne)2.585 F 2.585(xt. The)-.15 F -.1(wo)2.585 G
-(rds).1 E .844(generated by the pattern need not match the w)108 112.8 R
-.844(ord being completed.)-.1 F(The)5.844 E F1(GLOBIGNORE)3.343 E F0
-.843(shell v)3.093 F .843(ariable is)-.25 F
+(rds).1 E .843(generated by the pattern need not match the w)108 112.8 R
+.844(ord being completed.)-.1 F(The)5.844 E F1(GLOBIGNORE)3.344 E F0
+.844(shell v)3.094 F .844(ariable is)-.25 F
 (not used to \214lter the matches, b)108 124.8 Q(ut the)-.2 E F1
 (FIGNORE)2.5 E F0 -.25(va)2.25 G(riable is used.).25 E(Ne)108 141.6 Q
-.32(xt, the string speci\214ed as the ar)-.15 F .32(gument to the)-.18 F
-F2<ad57>2.82 E F0 .321(option is considered.)2.821 F .321
-(The string is \214rst split using the)5.321 F .413(characters in the)
-108 153.6 R F1(IFS)2.913 E F0 .412(special v)2.663 F .412
+.321(xt, the string speci\214ed as the ar)-.15 F .321(gument to the)-.18
+F F2<ad57>2.821 E F0 .32(option is considered.)2.821 F .32
+(The string is \214rst split using the)5.32 F .412(characters in the)108
+153.6 R F1(IFS)2.912 E F0 .412(special v)2.662 F .412
 (ariable as delimiters.)-.25 F .412(Shell quoting is honored.)5.412 F
-.412(Each w)5.412 F .412(ord is then e)-.1 F(xpanded)-.15 E .091
-(using brace e)108 165.6 R .091(xpansion, tilde e)-.15 F .092
-(xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .092
-(xpansion, command substitution, and arith-)-.15 F 1.397(metic e)108
+.413(Each w)5.412 F .413(ord is then e)-.1 F(xpanded)-.15 E .092
+(using brace e)108 165.6 R .092(xpansion, tilde e)-.15 F .092
+(xpansion, parameter and v)-.15 F .092(ariable e)-.25 F .091
+(xpansion, command substitution, and arith-)-.15 F 1.396(metic e)108
 177.6 R 1.396(xpansion, as described abo)-.15 F 1.696 -.15(ve u)-.15 H
 (nder).15 E F1(EXP)3.896 E(ANSION)-.666 E/F3 9/Times-Roman@0 SF(.)A F0
 1.396(The results are split using the rules described)5.896 F(abo)108
-189.6 Q .509 -.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)2.709 G .209
-(rd Splitting).75 F F0 5.209(.T)C .209(he results of the e)-5.209 F .209
-(xpansion are pre\214x-matched ag)-.15 F .21(ainst the w)-.05 F .21
+189.6 Q .51 -.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)2.71 G .21
+(rd Splitting).75 F F0 5.21(.T)C .209(he results of the e)-5.21 F .209
+(xpansion are pre\214x-matched ag)-.15 F .209(ainst the w)-.05 F .209
 (ord being com-)-.1 F(pleted, and the matching w)108 201.6 Q
-(ords become the possible completions.)-.1 E 1.238
-(After these matches ha)108 218.4 R 1.538 -.15(ve b)-.2 H 1.238
-(een generated, an).15 F 3.738(ys)-.15 G 1.237
-(hell function or command speci\214ed with the)-3.738 F F2<ad46>3.737 E
-F0(and)3.737 E F2<ad43>3.737 E F0 3.375(options is in)108 230.4 R -.2
+(ords become the possible completions.)-.1 E 1.237
+(After these matches ha)108 218.4 R 1.537 -.15(ve b)-.2 H 1.237
+(een generated, an).15 F 3.737(ys)-.15 G 1.238
+(hell function or command speci\214ed with the)-3.737 F F2<ad46>3.738 E
+F0(and)3.738 E F2<ad43>3.738 E F0 3.376(options is in)108 230.4 R -.2
 (vo)-.4 G -.1(ke).2 G 5.875(d. When).1 F 3.375
 (the command or function is in)5.875 F -.2(vo)-.4 G -.1(ke).2 G 3.375
-(d, the).1 F F1(COMP_LINE)5.876 E F3(,)A F1(COMP_POINT)5.626 E F3(,)A F1
-(COMP_KEY)108 242.4 Q F3(,)A F0(and)2.408 E F1(COMP_TYPE)2.658 E F0 -.25
-(va)2.408 G .157(riables are assigned v).25 F .157
-(alues as described abo)-.25 F .457 -.15(ve u)-.15 H(nder).15 E F2 .157
-(Shell V)2.657 F(ariables)-.92 E F0 5.157(.I)C(f)-5.157 E 3.485(as)108
-254.4 S .986(hell function is being in)-3.485 F -.2(vo)-.4 G -.1(ke).2 G
+(d, the).1 F F1(COMP_LINE)5.875 E F3(,)A F1(COMP_POINT)5.625 E F3(,)A F1
+(COMP_KEY)108 242.4 Q F3(,)A F0(and)2.407 E F1(COMP_TYPE)2.657 E F0 -.25
+(va)2.407 G .157(riables are assigned v).25 F .157
+(alues as described abo)-.25 F .457 -.15(ve u)-.15 H(nder).15 E F2 .158
+(Shell V)2.658 F(ariables)-.92 E F0 5.158(.I)C(f)-5.158 E 3.486(as)108
+254.4 S .986(hell function is being in)-3.486 F -.2(vo)-.4 G -.1(ke).2 G
 .986(d, the).1 F F1(COMP_W)3.486 E(ORDS)-.09 E F0(and)3.236 E F1
 (COMP_CW)3.486 E(ORD)-.09 E F0 -.25(va)3.236 G .986
-(riables are also set.).25 F(When)5.986 E .609
+(riables are also set.).25 F(When)5.985 E .608
 (the function or command is in)108 266.4 R -.2(vo)-.4 G -.1(ke).2 G .608
 (d, the \214rst ar).1 F .608(gument is the name of the command whose ar)
--.18 F .608(guments are)-.18 F .073(being completed, the second ar)108
+-.18 F .609(guments are)-.18 F .073(being completed, the second ar)108
 278.4 R .073(gument is the w)-.18 F .073
 (ord being completed, and the third ar)-.1 F .073(gument is the w)-.18 F
-.073(ord pre-)-.1 F .608(ceding the w)108 290.4 R .607
-(ord being completed on the current command line.)-.1 F .607
-(No \214ltering of the generated completions)5.607 F(ag)108 302.4 Q .093
+.072(ord pre-)-.1 F .607(ceding the w)108 290.4 R .607
+(ord being completed on the current command line.)-.1 F .608
+(No \214ltering of the generated completions)5.607 F(ag)108 302.4 Q .094
 (ainst the w)-.05 F .093(ord being completed is performed; the function\
  or command has complete freedom in generat-)-.1 F(ing the matches.)108
-314.4 Q(An)108 331.2 Q 2.938(yf)-.15 G .437(unction speci\214ed with)
--2.938 F F2<ad46>2.937 E F0 .437(is in)2.937 F -.2(vo)-.4 G -.1(ke).2 G
+314.4 Q(An)108 331.2 Q 2.937(yf)-.15 G .437(unction speci\214ed with)
+-2.937 F F2<ad46>2.937 E F0 .437(is in)2.937 F -.2(vo)-.4 G -.1(ke).2 G
 2.937<648c>.1 G 2.937(rst. The)-2.937 F .437(function may use an)2.937 F
-2.937(yo)-.15 G 2.937(ft)-2.937 G .437(he shell f)-2.937 F .437
-(acilities, including)-.1 F(the)108 343.2 Q F2(compgen)2.956 E F0 -.2
-(bu)2.956 G .456(iltin described belo).2 F 1.756 -.65(w, t)-.25 H 2.956
-(og).65 G .456(enerate the matches.)-2.956 F .457
+2.937(yo)-.15 G 2.937(ft)-2.937 G .437(he shell f)-2.937 F .438
+(acilities, including)-.1 F(the)108 343.2 Q F2(compgen)2.957 E F0 -.2
+(bu)2.957 G .457(iltin described belo).2 F 1.756 -.65(w, t)-.25 H 2.956
+(og).65 G .456(enerate the matches.)-2.956 F .456
 (It must put the possible completions in the)5.456 F F1(COMPREPL)108
-355.2 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E(Ne)108 372 Q .081
-(xt, an)-.15 F 2.581(yc)-.15 G .081(ommand speci\214ed with the)-2.581 F
-F2<ad43>2.581 E F0 .081(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G
-2.581(di).1 G 2.58(na)-2.581 G 2.58(ne)-2.58 G -.4(nv)-2.58 G .08
-(ironment equi).4 F -.25(va)-.25 G .08(lent to command sub-).25 F 2.858
+355.2 Q(Y)-.828 E F0(array v)2.25 E(ariable.)-.25 E(Ne)108 372 Q .08
+(xt, an)-.15 F 2.58(yc)-.15 G .08(ommand speci\214ed with the)-2.58 F F2
+<ad43>2.58 E F0 .081(option is in)2.581 F -.2(vo)-.4 G -.1(ke).2 G 2.581
+(di).1 G 2.581(na)-2.581 G 2.581(ne)-2.581 G -.4(nv)-2.581 G .081
+(ironment equi).4 F -.25(va)-.25 G .081(lent to command sub-).25 F 2.859
 (stitution. It)108 384 R .359(should print a list of completions, one p\
-er line, to the standard output.)2.858 F .359(Backslash may be used)
+er line, to the standard output.)2.859 F .358(Backslash may be used)
 5.359 F(to escape a ne)108 396 Q(wline, if necessary)-.25 E(.)-.65 E
-.377(After all of the possible completions are generated, an)108 412.8 R
-2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F2<ad58>2.876
-E F0 .376(option is applied to the)2.876 F 3.181(list. The)108 424.8 R
-.681(\214lter is a pattern as used for pathname e)3.181 F .681
-(xpansion; a)-.15 F F2(&)3.181 E F0 .682
-(in the pattern is replaced with the te)3.182 F .682(xt of)-.15 F .523
-(the w)108 436.8 R .523(ord being completed.)-.1 F 3.023(Al)5.523 G
-(iteral)-3.023 E F2(&)3.023 E F0 .522
+.376(After all of the possible completions are generated, an)108 412.8 R
+2.877<798c>-.15 G .377(lter speci\214ed with the)-2.877 F F2<ad58>2.877
+E F0 .377(option is applied to the)2.877 F 3.182(list. The)108 424.8 R
+.682(\214lter is a pattern as used for pathname e)3.182 F .681
+(xpansion; a)-.15 F F2(&)3.181 E F0 .681
+(in the pattern is replaced with the te)3.181 F .681(xt of)-.15 F .522
+(the w)108 436.8 R .522(ord being completed.)-.1 F 3.022(Al)5.522 G
+(iteral)-3.022 E F2(&)3.022 E F0 .523
 (may be escaped with a backslash; the backslash is remo)3.022 F -.15(ve)
--.15 G 3.022(db).15 G(efore)-3.022 E .849(attempting a match.)108 448.8
-R(An)5.849 E 3.349(yc)-.15 G .849
-(ompletion that matches the pattern will be remo)-3.349 F -.15(ve)-.15 G
-3.35(df).15 G .85(rom the list.)-3.35 F 3.35(Al)5.85 G(eading)-3.35 E F2
-(!)3.35 E F0(ne)108 460.8 Q -.05(ga)-.15 G
+-.15 G 3.023(db).15 G(efore)-3.023 E .85(attempting a match.)108 448.8 R
+(An)5.85 E 3.35(yc)-.15 G .849
+(ompletion that matches the pattern will be remo)-3.35 F -.15(ve)-.15 G
+3.349(df).15 G .849(rom the list.)-3.349 F 3.349(Al)5.849 G(eading)
+-3.349 E F2(!)3.349 E F0(ne)108 460.8 Q -.05(ga)-.15 G
 (tes the pattern; in this case an).05 E 2.5(yc)-.15 G
 (ompletion not matching the pattern will be remo)-2.5 E -.15(ve)-.15 G
-(d.).15 E(Finally)108 477.6 Q 3.087(,a)-.65 G .887 -.15(ny p)-3.087 H
-.587(re\214x and suf).15 F .587(\214x speci\214ed with the)-.25 F F2
+(d.).15 E(Finally)108 477.6 Q 3.086(,a)-.65 G .886 -.15(ny p)-3.086 H
+.586(re\214x and suf).15 F .587(\214x speci\214ed with the)-.25 F F2
 <ad50>3.087 E F0(and)3.087 E F2<ad53>3.087 E F0 .587
 (options are added to each member of the com-)3.087 F(pletion list, and\
  the result is returned to the readline completion code as the list of \
-possible completions.)108 489.6 Q .246(If the pre)108 506.4 R .247
+possible completions.)108 489.6 Q .247(If the pre)108 506.4 R .247
 (viously-applied actions do not generate an)-.25 F 2.747(ym)-.15 G .247
 (atches, and the)-2.747 F F2 .247(\255o dir)2.747 F(names)-.15 E F0 .247
-(option w)2.747 F .247(as supplied to)-.1 F F2(complete)108 518.4 Q F0
+(option w)2.747 F .246(as supplied to)-.1 F F2(complete)108 518.4 Q F0
 (when the compspec w)2.5 E
-(as de\214ned, directory name completion is attempted.)-.1 E .462
-(If the)108 535.2 R F2 .462(\255o plusdirs)2.962 F F0 .462(option w)
+(as de\214ned, directory name completion is attempted.)-.1 E .461
+(If the)108 535.2 R F2 .462(\255o plusdirs)2.961 F F0 .462(option w)
 2.962 F .462(as supplied to)-.1 F F2(complete)2.962 E F0 .462
 (when the compspec w)2.962 F .462(as de\214ned, directory name com-)-.1
 F(pletion is attempted and an)108 547.2 Q 2.5(ym)-.15 G
-(atches are added to the results of the other actions.)-2.5 E .559
-(By def)108 564 R .559(ault, if a compspec is found, whate)-.1 F -.15
-(ve)-.25 G 3.059(ri).15 G 3.059(tg)-3.059 G .56
-(enerates is returned to the completion code as the full set)-3.059 F
-.632(of possible completions.)108 576 R .632(The def)5.632 F(ault)-.1 E
-F2(bash)3.132 E F0 .631
-(completions are not attempted, and the readline def)3.131 F .631
-(ault of \214le-)-.1 F .558(name completion is disabled.)108 588 R .558
-(If the)5.558 F F2 .559(\255o bashdefault)3.059 F F0 .559(option w)3.059
-F .559(as supplied to)-.1 F F2(complete)3.059 E F0 .559
-(when the compspec)3.059 F -.1(wa)108 600 S 3.172(sd).1 G .672
-(e\214ned, the)-3.172 F F2(bash)3.172 E F0(def)3.172 E .671
+(atches are added to the results of the other actions.)-2.5 E .56
+(By def)108 564 R .56(ault, if a compspec is found, whate)-.1 F -.15(ve)
+-.25 G 3.06(ri).15 G 3.06(tg)-3.06 G .559
+(enerates is returned to the completion code as the full set)-3.06 F
+.631(of possible completions.)108 576 R .631(The def)5.631 F(ault)-.1 E
+F2(bash)3.131 E F0 .631
+(completions are not attempted, and the readline def)3.131 F .632
+(ault of \214le-)-.1 F .559(name completion is disabled.)108 588 R .559
+(If the)5.559 F F2 .559(\255o bashdefault)3.059 F F0 .559(option w)3.059
+F .559(as supplied to)-.1 F F2(complete)3.058 E F0 .558
+(when the compspec)3.058 F -.1(wa)108 600 S 3.171(sd).1 G .671
+(e\214ned, the)-3.171 F F2(bash)3.171 E F0(def)3.171 E .671
 (ault completions are attempted if the compspec generates no matches.)
--.1 F .671(If the)5.671 F F2<ad6f>3.171 E(default)108 612 Q F0 1.207
-(option w)3.706 F 1.207(as supplied to)-.1 F F2(complete)3.707 E F0
+-.1 F .672(If the)5.672 F F2<ad6f>3.172 E(default)108 612 Q F0 1.207
+(option w)3.707 F 1.207(as supplied to)-.1 F F2(complete)3.707 E F0
 1.207(when the compspec w)3.707 F 1.207(as de\214ned, readline')-.1 F
-3.707(sd)-.55 G(ef)-3.707 E 1.207(ault completion)-.1 F
+3.707(sd)-.55 G(ef)-3.707 E 1.206(ault completion)-.1 F
 (will be performed if the compspec \(and, if attempted, the def)108 624
 Q(ault)-.1 E F2(bash)2.5 E F0(completions\) generate no matches.)2.5 E
 .245(When a compspec indicates that directory name completion is desire\
-d, the programmable completion func-)108 640.8 R .632(tions force readl\
+d, the programmable completion func-)108 640.8 R .633(tions force readl\
 ine to append a slash to completed names which are symbolic links to di\
-rectories, subject)108 652.8 R 2.762(to the v)108 664.8 R 2.762
-(alue of the)-.25 F F2(mark\255dir)5.262 E(ectories)-.18 E F0 2.761
-(readline v)5.262 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.761
-(rdless of the setting of the).05 F F2(mark-sym-)5.261 E(link)108 676.8
+rectories, subject)108 652.8 R 2.761(to the v)108 664.8 R 2.761
+(alue of the)-.25 F F2(mark\255dir)5.261 E(ectories)-.18 E F0 2.761
+(readline v)5.261 F 2.761(ariable, re)-.25 F -.05(ga)-.15 G 2.762
+(rdless of the setting of the).05 F F2(mark-sym-)5.262 E(link)108 676.8
 Q(ed\255dir)-.1 E(ectories)-.18 E F0(readline v)2.5 E(ariable.)-.25 E/F4
-10.95/Times-Bold@0 SF(HIST)72 693.6 Q(OR)-.197 E(Y)-.383 E F0 .371
-(When the)108 705.6 R F2 .371(\255o history)2.871 F F0 .371
-(option to the)2.871 F F2(set)2.872 E F0 -.2(bu)2.872 G .372
-(iltin is enabled, the shell pro).2 F .372(vides access to the)-.15 F/F5
-10/Times-Italic@0 SF .372(command history)2.872 F F0(,)A .032
+10.95/Times-Bold@0 SF(HIST)72 693.6 Q(OR)-.197 E(Y)-.383 E F0 .372
+(When the)108 705.6 R F2 .372(\255o history)2.872 F F0 .372
+(option to the)2.872 F F2(set)2.872 E F0 -.2(bu)2.872 G .372
+(iltin is enabled, the shell pro).2 F .371(vides access to the)-.15 F/F5
+10/Times-Italic@0 SF .371(command history)2.871 F F0(,)A .031
 (the list of commands pre)108 717.6 R .031(viously typed.)-.25 F .031
 (The v)5.031 F .031(alue of the)-.25 F F2(HISTSIZE)2.531 E F0 -.25(va)
-2.531 G .031(riable is used as the number of com-).25 F .429
-(mands to sa)108 729.6 R .729 -.15(ve i)-.2 H 2.929(nah).15 G .429
-(istory list.)-2.929 F .429(The te)5.429 F .429(xt of the last)-.15 F F1
-(HISTSIZE)2.93 E F0 .43(commands \(def)2.68 F .43(ault 500\) is sa)-.1 F
--.15(ve)-.2 G 2.93(d. The).15 F(shell)2.93 E(GNU Bash-4.0)72 768 Q
-(2008 July 6)150.675 E(44)200.665 E 0 Cg EP
+2.531 G .031(riable is used as the number of com-).25 F .43(mands to sa)
+108 729.6 R .73 -.15(ve i)-.2 H 2.93(nah).15 G .43(istory list.)-2.93 F
+.43(The te)5.43 F .429(xt of the last)-.15 F F1(HISTSIZE)2.929 E F0 .429
+(commands \(def)2.679 F .429(ault 500\) is sa)-.1 F -.15(ve)-.2 G 2.929
+(d. The).15 F(shell)2.929 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E
+(44)200.665 E 0 Cg EP
 %%Page: 45 45
 %%BeginPageSetup
 BP
 (stores each command in the history list prior to parameter and v)108 84
 R .287(ariable e)-.25 F .287(xpansion \(see)-.15 F/F1 9/Times-Bold@0 SF
 (EXP)2.787 E(ANSION)-.666 E F0(abo)2.537 E -.15(ve)-.15 G(\)).15 E -.2
-(bu)108 96 S 4.065(ta).2 G 1.565(fter history e)-4.065 F 1.565
+(bu)108 96 S 4.066(ta).2 G 1.565(fter history e)-4.066 F 1.565
 (xpansion is performed, subject to the v)-.15 F 1.565
 (alues of the shell v)-.25 F(ariables)-.25 E F1(HISTIGNORE)4.065 E F0
-(and)3.816 E F1(HISTCONTR)108 108 Q(OL)-.27 E/F2 9/Times-Roman@0 SF(.)A
+(and)3.815 E F1(HISTCONTR)108 108 Q(OL)-.27 E/F2 9/Times-Roman@0 SF(.)A
 F0 .082
 (On startup, the history is initialized from the \214le named by the v)
-108 124.8 R(ariable)-.25 E F1(HISTFILE)2.582 E F0(\(def)2.332 E(ault)-.1
-E/F3 10/Times-Italic@0 SF(~/.bash_history)2.582 E F0(\).)A .315
+108 124.8 R(ariable)-.25 E F1(HISTFILE)2.583 E F0(\(def)2.333 E(ault)-.1
+E/F3 10/Times-Italic@0 SF(~/.bash_history)2.583 E F0(\).)A .315
 (The \214le named by the v)108 136.8 R .315(alue of)-.25 F F1(HISTFILE)
 2.815 E F0 .315(is truncated, if necessary)2.565 F 2.815(,t)-.65 G 2.815
 (oc)-2.815 G .315(ontain no more than the number of)-2.815 F .532
 (lines speci\214ed by the v)108 148.8 R .532(alue of)-.25 F F1
 (HISTFILESIZE)3.032 E F2(.)A F0 .532
 (When the history \214le is read, lines be)5.032 F .532
-(ginning with the his-)-.15 F 1.158(tory comment character follo)108
-160.8 R 1.159(wed immediately by a digit are interpreted as timestamps \
-for the preceding)-.25 F .053(history line.)108 172.8 R .053
-(These timestamps are optionally displayed depending on the v)5.053 F
-.052(alue of the)-.25 F F1(HISTTIMEFORMA)2.552 E(T)-.855 E F0 -.25(va)
-108 184.8 S 4.386(riable. When).25 F 1.886(an interacti)4.386 F 2.187
+(ginning with the his-)-.15 F 1.159(tory comment character follo)108
+160.8 R 1.158(wed immediately by a digit are interpreted as timestamps \
+for the preceding)-.25 F .052(history line.)108 172.8 R .053
+(These timestamps are optionally displayed depending on the v)5.052 F
+.053(alue of the)-.25 F F1(HISTTIMEFORMA)2.553 E(T)-.855 E F0 -.25(va)
+108 184.8 S 4.387(riable. When).25 F 1.887(an interacti)4.387 F 2.187
 -.15(ve s)-.25 H 1.887(hell e).15 F 1.887(xits, the last)-.15 F F1
 ($HISTSIZE)4.387 E F0 1.887(lines are copied from the history list to)
 4.137 F F1($HISTFILE)108 196.8 Q F2(.)A F0 .056(If the)4.556 F/F4 10
 /Times-Bold@0 SF(histappend)2.556 E F0 .056
 (shell option is enabled \(see the description of)2.556 F F4(shopt)2.556
 E F0(under)2.556 E F1 .056(SHELL B)2.556 F(UIL)-.09 E(TIN)-.828 E
-(COMMANDS)108 208.8 Q F0(belo)2.671 E .422(w\), the lines are appended \
+(COMMANDS)108 208.8 Q F0(belo)2.672 E .422(w\), the lines are appended \
 to the history \214le, otherwise the history \214le is o)-.25 F -.15(ve)
--.15 G 2.922(rwritten. If).15 F F1(HISTFILE)108 220.8 Q F0 1.114(is uns\
-et, or if the history \214le is unwritable, the history is not sa)3.364
-F -.15(ve)-.2 G 3.614(d. If).15 F(the)3.614 E F2 -.225(va)3.613 G 1.113
-(riable is set, time).225 F 1.251
+-.15 G 2.921(rwritten. If).15 F F1(HISTFILE)108 220.8 Q F0 1.114(is uns\
+et, or if the history \214le is unwritable, the history is not sa)3.363
+F -.15(ve)-.2 G 3.614(d. If).15 F(the)3.614 E F2 -.225(va)3.614 G 1.114
+(riable is set, time).225 F 1.252
 (stamps are written to the history \214le, mark)108 232.8 R(ed)-.09 E F0
-1.252(with the history comment character)3.502 F 3.752(,s)-.4 G 3.752
-(ot)-3.752 G(he)-3.752 E 3.752(ym)-.15 G 1.252(ay be preserv)-3.752 F
+1.252(with the history comment character)3.502 F 3.751(,s)-.4 G 3.751
+(ot)-3.751 G(he)-3.751 E 3.751(ym)-.15 G 1.251(ay be preserv)-3.751 F
 (ed)-.15 E .105(across shell sessions.)108 244.8 R .105(This uses the h\
 istory comment character to distinguish timestamps from other history)
-5.105 F 2.604(lines. After)108 256.8 R(sa)2.604 E .104(ving the history)
--.2 F 2.604(,t)-.65 G .104
-(he history \214le is truncated to contain no more than)-2.604 F F1
-(HISTFILESIZE)2.605 E F0 2.605(lines. If)2.355 F F1(HISTFILESIZE)108
-268.8 Q F0(is not set, no truncation is performed.)2.25 E 1.294(The b)
-108 285.6 R 1.294(uiltin command)-.2 F F4(fc)3.794 E F0(\(see)3.794 E F1
-1.293(SHELL B)3.794 F(UIL)-.09 E 1.293(TIN COMMANDS)-.828 F F0(belo)
-3.543 E 1.293(w\) may be used to list or edit and re-)-.25 F -.15(exe)
-108 297.6 S .673(cute a portion of the history list.).15 F(The)5.673 E
+5.105 F 2.605(lines. After)108 256.8 R(sa)2.605 E .105(ving the history)
+-.2 F 2.605(,t)-.65 G .104
+(he history \214le is truncated to contain no more than)-2.605 F F1
+(HISTFILESIZE)2.604 E F0 2.604(lines. If)2.354 F F1(HISTFILESIZE)108
+268.8 Q F0(is not set, no truncation is performed.)2.25 E 1.293(The b)
+108 285.6 R 1.293(uiltin command)-.2 F F4(fc)3.793 E F0(\(see)3.793 E F1
+1.293(SHELL B)3.793 F(UIL)-.09 E 1.293(TIN COMMANDS)-.828 F F0(belo)
+3.543 E 1.294(w\) may be used to list or edit and re-)-.25 F -.15(exe)
+108 297.6 S .674(cute a portion of the history list.).15 F(The)5.673 E
 F4(history)3.173 E F0 -.2(bu)3.173 G .673
-(iltin may be used to display or modify the history list).2 F .28
+(iltin may be used to display or modify the history list).2 F .279
 (and manipulate the history \214le.)108 309.6 R .279
 (When using command-line editing, search commands are a)5.279 F -.25(va)
--.2 G .279(ilable in each).25 F(editing mode that pro)108 321.6 Q
-(vide access to the history list.)-.15 E 1.485(The shell allo)108 338.4
-R 1.485(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486
+-.2 G .28(ilable in each).25 F(editing mode that pro)108 321.6 Q
+(vide access to the history list.)-.15 E 1.486(The shell allo)108 338.4
+R 1.486(ws control o)-.25 F -.15(ve)-.15 G 3.986(rw).15 G 1.486
 (hich commands are sa)-3.986 F -.15(ve)-.2 G 3.986(do).15 G 3.986(nt)
--3.986 G 1.486(he history list.)-3.986 F(The)6.486 E F1(HISTCONTR)3.986
-E(OL)-.27 E F0(and)3.736 E F1(HISTIGNORE)108 350.4 Q F0 -.25(va)2.708 G
-.458(riables may be set to cause the shell to sa).25 F .757 -.15(ve o)
--.2 H .457(nly a subset of the commands entered.).15 F(The)5.457 E F4
+-3.986 G 1.486(he history list.)-3.986 F(The)6.485 E F1(HISTCONTR)3.985
+E(OL)-.27 E F0(and)3.735 E F1(HISTIGNORE)108 350.4 Q F0 -.25(va)2.707 G
+.457(riables may be set to cause the shell to sa).25 F .758 -.15(ve o)
+-.2 H .458(nly a subset of the commands entered.).15 F(The)5.458 E F4
 (cmdhist)108 362.4 Q F0 .75
 (shell option, if enabled, causes the shell to attempt to sa)3.25 F 1.05
 -.15(ve e)-.2 H .75(ach line of a multi-line command in).15 F 1.077
 (the same history entry)108 374.4 R 3.577(,a)-.65 G 1.077
 (dding semicolons where necessary to preserv)-3.577 F 3.577(es)-.15 G
-1.077(yntactic correctness.)-3.577 F(The)6.077 E F4(lithist)3.576 E F0
-.373(shell option causes the shell to sa)108 386.4 R .674 -.15(ve t)-.2
-H .374(he command with embedded ne).15 F .374
-(wlines instead of semicolons.)-.25 F .374(See the)5.374 F .319
-(description of the)108 398.4 R F4(shopt)2.819 E F0 -.2(bu)2.819 G .318
+1.077(yntactic correctness.)-3.577 F(The)6.077 E F4(lithist)3.577 E F0
+.374(shell option causes the shell to sa)108 386.4 R .674 -.15(ve t)-.2
+H .374(he command with embedded ne).15 F .373
+(wlines instead of semicolons.)-.25 F .373(See the)5.373 F .318
+(description of the)108 398.4 R F4(shopt)2.818 E F0 -.2(bu)2.818 G .318
 (iltin belo).2 F 2.818(wu)-.25 G(nder)-2.818 E F1 .318(SHELL B)2.818 F
-(UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .318
+(UIL)-.09 E .318(TIN COMMANDS)-.828 F F0 .319
 (for information on setting and)2.568 F(unsetting shell options.)108
 410.4 Q/F5 10.95/Times-Bold@0 SF(HIST)72 427.2 Q(OR)-.197 E 2.738(YE)
--.383 G(XP)-2.738 E(ANSION)-.81 E F0 .61(The shell supports a history e)
-108 439.2 R .611(xpansion feature that is similar to the history e)-.15
-F .611(xpansion in)-.15 F F4(csh.)3.111 E F0 .611(This section)5.611 F
-.871(describes what syntax features are a)108 451.2 R -.25(va)-.2 G
-3.371(ilable. This).25 F .871(feature is enabled by def)3.371 F .87
-(ault for interacti)-.1 F 1.17 -.15(ve s)-.25 H .87(hells, and).15 F
-2.013(can be disabled using the)108 463.2 R F4(+H)4.514 E F0 2.014
+-.383 G(XP)-2.738 E(ANSION)-.81 E F0 .611
+(The shell supports a history e)108 439.2 R .611
+(xpansion feature that is similar to the history e)-.15 F .61
+(xpansion in)-.15 F F4(csh.)3.11 E F0 .61(This section)5.61 F .87
+(describes what syntax features are a)108 451.2 R -.25(va)-.2 G 3.371
+(ilable. This).25 F .871(feature is enabled by def)3.371 F .871
+(ault for interacti)-.1 F 1.171 -.15(ve s)-.25 H .871(hells, and).15 F
+2.014(can be disabled using the)108 463.2 R F4(+H)4.514 E F0 2.014
 (option to the)4.514 F F4(set)4.514 E F0 -.2(bu)4.514 G 2.014
-(iltin command \(see).2 F F1 2.014(SHELL B)4.514 F(UIL)-.09 E 2.014
+(iltin command \(see).2 F F1 2.013(SHELL B)4.513 F(UIL)-.09 E 2.013
 (TIN COMMANDS)-.828 F F0(belo)108 475.2 Q 2.5(w\). Non-interacti)-.25 F
 .3 -.15(ve s)-.25 H(hells do not perform history e).15 E
-(xpansion by def)-.15 E(ault.)-.1 E 1.306(History e)108 492 R 1.306
+(xpansion by def)-.15 E(ault.)-.1 E 1.305(History e)108 492 R 1.305
 (xpansions introduce w)-.15 F 1.306(ords from the history list into the\
- input stream, making it easy to repeat)-.1 F .209
-(commands, insert the ar)108 504 R .209(guments to a pre)-.18 F .21
+ input stream, making it easy to repeat)-.1 F .21
+(commands, insert the ar)108 504 R .21(guments to a pre)-.18 F .209
 (vious command into the current input line, or \214x errors in pre)-.25
-F(vious)-.25 E(commands quickly)108 516 Q(.)-.65 E 1.164(History e)108
+F(vious)-.25 E(commands quickly)108 516 Q(.)-.65 E 1.163(History e)108
 532.8 R 1.163(xpansion is performed immediately after a complete line i\
 s read, before the shell breaks it into)-.15 F -.1(wo)108 544.8 S 3.2
 (rds. It).1 F(tak)3.2 E .7(es place in tw)-.1 F 3.2(op)-.1 G 3.2
 (arts. The)-3.2 F .7
 (\214rst is to determine which line from the history list to use during)
-3.2 F 4.368(substitution. The)108 556.8 R 1.868(second is to select por\
-tions of that line for inclusion into the current one.)4.368 F 1.867
-(The line)6.867 F .662(selected from the history is the)108 568.8 R F3
--.15(ev)3.162 G(ent).15 E F0 3.162(,a)C .663
-(nd the portions of that line that are acted upon are)-3.162 F F3(wor)
-3.163 E(ds)-.37 E F0 5.663(.V)C(arious)-6.773 E F3(modi\214er)108 580.8
-Q(s)-.1 E F0 .227(are a)2.727 F -.25(va)-.2 G .227
-(ilable to manipulate the selected w).25 F 2.727(ords. The)-.1 F .226
-(line is brok)2.726 F .226(en into w)-.1 F .226(ords in the same f)-.1 F
-(ashion)-.1 E .351(as when reading input, so that se)108 592.8 R -.15
-(ve)-.25 G(ral).15 E F3(metac)2.852 E(har)-.15 E(acter)-.15 E F0 .352
-(-separated w)B .352(ords surrounded by quotes are considered)-.1 F .625
-(one w)108 604.8 R 3.125(ord. History)-.1 F -.15(ex)3.125 G .624
-(pansions are introduced by the appearance of the history e).15 F .624
-(xpansion character)-.15 F 3.124(,w)-.4 G(hich)-3.124 E(is)108 616.8 Q
+3.2 F 4.367(substitution. The)108 556.8 R 1.868(second is to select por\
+tions of that line for inclusion into the current one.)4.367 F 1.868
+(The line)6.868 F .663(selected from the history is the)108 568.8 R F3
+-.15(ev)3.163 G(ent).15 E F0 3.163(,a)C .663
+(nd the portions of that line that are acted upon are)-3.163 F F3(wor)
+3.162 E(ds)-.37 E F0 5.662(.V)C(arious)-6.772 E F3(modi\214er)108 580.8
+Q(s)-.1 E F0 .226(are a)2.726 F -.25(va)-.2 G .226
+(ilable to manipulate the selected w).25 F 2.726(ords. The)-.1 F .227
+(line is brok)2.726 F .227(en into w)-.1 F .227(ords in the same f)-.1 F
+(ashion)-.1 E .352(as when reading input, so that se)108 592.8 R -.15
+(ve)-.25 G(ral).15 E F3(metac)2.852 E(har)-.15 E(acter)-.15 E F0 .351
+(-separated w)B .351(ords surrounded by quotes are considered)-.1 F .624
+(one w)108 604.8 R 3.124(ord. History)-.1 F -.15(ex)3.124 G .624
+(pansions are introduced by the appearance of the history e).15 F .625
+(xpansion character)-.15 F 3.125(,w)-.4 G(hich)-3.125 E(is)108 616.8 Q
 F4(!)3.333 E F0(by def)3.333 E 2.5(ault. Only)-.1 F(backslash \()2.5 E
 F4(\\).833 E F0 2.5(\)a).833 G(nd single quotes can quote the history e)
 -2.5 E(xpansion character)-.15 E(.)-.55 E(Se)108 633.6 Q -.15(ve)-.25 G
 .03(ral characters inhibit history e).15 F .03
 (xpansion if found immediately follo)-.15 F .03(wing the history e)-.25
 F .03(xpansion character)-.15 F(,)-.4 E -2.15 -.25(ev e)108 645.6 T
-3.163(ni).25 G 3.163(fi)-3.163 G 3.162(ti)-3.163 G 3.162(su)-3.162 G
+3.162(ni).25 G 3.162(fi)-3.162 G 3.162(ti)-3.162 G 3.162(su)-3.162 G
 .662(nquoted: space, tab, ne)-3.162 F .662(wline, carriage return, and)
 -.25 F F4(=)3.162 E F0 5.662(.I)C 3.162(ft)-5.662 G(he)-3.162 E F4
-(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F4(\()3.162 E
+(extglob)3.162 E F0 .662(shell option is enabled,)3.162 F F4(\()3.163 E
 F0(will also inhibit e)108 657.6 Q(xpansion.)-.15 E(Se)108 674.4 Q -.15
-(ve)-.25 G .109(ral shell options settable with the).15 F F4(shopt)2.609
-E F0 -.2(bu)2.609 G .11(iltin may be used to tailor the beha).2 F .11
-(vior of history e)-.2 F(xpansion.)-.15 E 1.259(If the)108 686.4 R F4
-(histv)3.759 E(erify)-.1 E F0 1.259
-(shell option is enabled \(see the description of the)3.759 F F4(shopt)
-3.759 E F0 -.2(bu)3.759 G 1.259(iltin\), and).2 F F4 -.18(re)3.758 G
-(adline).18 E F0 1.258(is being)3.758 F 1.497(used, history substitutio\
-ns are not immediately passed to the shell parser)108 698.4 R 6.498(.I)
--.55 G 1.498(nstead, the e)-6.498 F 1.498(xpanded line is)-.15 F 2.228
+(ve)-.25 G .11(ral shell options settable with the).15 F F4(shopt)2.61 E
+F0 -.2(bu)2.61 G .109(iltin may be used to tailor the beha).2 F .109
+(vior of history e)-.2 F(xpansion.)-.15 E 1.258(If the)108 686.4 R F4
+(histv)3.758 E(erify)-.1 E F0 1.259
+(shell option is enabled \(see the description of the)3.758 F F4(shopt)
+3.759 E F0 -.2(bu)3.759 G 1.259(iltin\), and).2 F F4 -.18(re)3.759 G
+(adline).18 E F0 1.259(is being)3.759 F 1.498(used, history substitutio\
+ns are not immediately passed to the shell parser)108 698.4 R 6.497(.I)
+-.55 G 1.497(nstead, the e)-6.497 F 1.497(xpanded line is)-.15 F 2.228
 (reloaded into the)108 710.4 R F4 -.18(re)4.728 G(adline).18 E F0 2.228
 (editing b)4.728 F(uf)-.2 E 2.228(fer for further modi\214cation.)-.25 F
 (If)7.228 E F4 -.18(re)4.728 G(adline).18 E F0 2.228
@@ -5373,27 +5376,27 @@ ns are not immediately passed to the shell parser)108 698.4 R 6.498(.I)
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E -.2(bu)108 84 S -.25(ff).2 G 1.161(er for correction.).25 F(The)
-6.161 E/F1 10/Times-Bold@0 SF<ad70>3.661 E F0 1.161(option to the)3.661
-F F1(history)3.661 E F0 -.2(bu)3.661 G 1.16
+-.35 E -.2(bu)108 84 S -.25(ff).2 G 1.16(er for correction.).25 F(The)
+6.16 E/F1 10/Times-Bold@0 SF<ad70>3.66 E F0 1.16(option to the)3.66 F F1
+(history)3.66 E F0 -.2(bu)3.661 G 1.161
 (iltin command may be used to see what a history).2 F -.15(ex)108 96 S
-.055(pansion will do before using it.).15 F(The)5.055 E F1<ad73>2.555 E
-F0 .055(option to the)2.555 F F1(history)2.556 E F0 -.2(bu)2.556 G .056
+.056(pansion will do before using it.).15 F(The)5.056 E F1<ad73>2.556 E
+F0 .056(option to the)2.556 F F1(history)2.555 E F0 -.2(bu)2.555 G .055
 (iltin may be used to add commands to the).2 F
 (end of the history list without actually e)108 108 Q -.15(xe)-.15 G
 (cuting them, so that the).15 E 2.5(ya)-.15 G(re a)-2.5 E -.25(va)-.2 G
 (ilable for subsequent recall.).25 E 2.2(The shell allo)108 124.8 R 2.2
 (ws control of the v)-.25 F 2.2(arious characters used by the history e)
--.25 F 2.2(xpansion mechanism \(see the)-.15 F 1.146(description of)108
-136.8 R F1(histchars)3.646 E F0(abo)3.646 E 1.446 -.15(ve u)-.15 H(nder)
-.15 E F1 1.146(Shell V)3.646 F(ariables)-.92 E F0 3.646(\). The)B 1.147
+-.25 F 2.2(xpansion mechanism \(see the)-.15 F 1.147(description of)108
+136.8 R F1(histchars)3.647 E F0(abo)3.647 E 1.447 -.15(ve u)-.15 H(nder)
+.15 E F1 1.147(Shell V)3.647 F(ariables)-.92 E F0 3.646(\). The)B 1.146
 (shell uses the history comment character to)3.646 F
 (mark history timestamps when writing the history \214le.)108 148.8 Q F1
 (Ev)87 165.6 Q(ent Designators)-.1 E F0(An e)108 177.6 Q -.15(ve)-.25 G
 (nt designator is a reference to a command line entry in the history li\
-st.).15 E F1(!)108 194.4 Q F0 1.608(Start a history substitution, e)
-32.67 F 1.608(xcept when follo)-.15 F 1.607(wed by a)-.25 F F1(blank)
-4.107 E F0 4.107(,n)C -.25(ew)-4.107 G 1.607
+st.).15 E F1(!)108 194.4 Q F0 1.607(Start a history substitution, e)
+32.67 F 1.607(xcept when follo)-.15 F 1.607(wed by a)-.25 F F1(blank)
+4.107 E F0 4.107(,n)C -.25(ew)-4.107 G 1.608
 (line, carriage return, = or \().25 F(\(when the)144 206.4 Q F1(extglob)
 2.5 E F0(shell option is enabled using the)2.5 E F1(shopt)2.5 E F0 -.2
 (bu)2.5 G(iltin\).).2 E F1(!)108 218.4 Q/F2 10/Times-Italic@0 SF(n)A F0
@@ -5405,29 +5408,29 @@ F2(n)A F0(Refer to the current command line minus)21.97 E F2(n)2.5 E F0
 (string)2.5 E F0(.).22 E F1(!?)108 266.4 Q F2(string)A F1([?])A F0 1.022
 (Refer to the most recent command containing)144 278.4 R F2(string)3.522
 E F0 6.022(.T).22 G 1.022(he trailing)-6.022 F F1(?)3.522 E F0 1.022
-(may be omitted if)3.522 F F2(string)3.862 E F0(is)3.742 E(follo)144
+(may be omitted if)3.522 F F2(string)3.861 E F0(is)3.741 E(follo)144
 290.4 Q(wed immediately by a ne)-.25 E(wline.)-.25 E/F3 12/Times-Bold@0
 SF(^)108 307.4 Q F2(string1)-5 I F3(^)5 I F2(string2)-5 I F3(^)5 I F0
-2.63(Quick substitution.)144 314.4 R 2.629
+2.629(Quick substitution.)144 314.4 R 2.629
 (Repeat the last command, replacing)7.629 F F2(string1)5.469 E F0(with)
 5.129 E F2(string2)5.129 E F0 7.629(.E).02 G(qui)-7.629 E -.25(va)-.25 G
-2.629(lent to).25 F -.74(``)144 326.4 S(!!:s/).74 E F2(string1)A F0(/)A
+2.63(lent to).25 F -.74(``)144 326.4 S(!!:s/).74 E F2(string1)A F0(/)A
 F2(string2)A F0(/')A 2.5('\()-.74 G(see)-2.5 E F1(Modi\214ers)2.5 E F0
 (belo)2.5 E(w\).)-.25 E F1(!#)108 338.4 Q F0
 (The entire command line typed so f)27.67 E(ar)-.1 E(.)-.55 E F1 -.75
-(Wo)87 355.2 S(rd Designators).75 E F0 -.8(Wo)108 367.2 S 1.313
+(Wo)87 355.2 S(rd Designators).75 E F0 -.8(Wo)108 367.2 S 1.314
 (rd designators are used to select desired w).8 F 1.314(ords from the e)
--.1 F -.15(ve)-.25 G 3.814(nt. A).15 F F1(:)3.814 E F0 1.314
-(separates the e)3.814 F -.15(ve)-.25 G 1.314(nt speci\214cation).15 F
-.53(from the w)108 379.2 R .529(ord designator)-.1 F 5.529(.I)-.55 G
+-.1 F -.15(ve)-.25 G 3.814(nt. A).15 F F1(:)3.814 E F0 1.313
+(separates the e)3.813 F -.15(ve)-.25 G 1.313(nt speci\214cation).15 F
+.529(from the w)108 379.2 R .529(ord designator)-.1 F 5.529(.I)-.55 G
 3.029(tm)-5.529 G .529(ay be omitted if the w)-3.029 F .529
 (ord designator be)-.1 F .529(gins with a)-.15 F F1(^)3.029 E F0(,)A F1
 ($)3.029 E F0(,)A F1(*)3.029 E F0(,)A F1<ad>3.029 E F0 3.029(,o)C(r)
--3.029 E F1(%)3.029 E F0 5.529(.W)C(ords)-6.329 E 1.3
-(are numbered from the be)108 391.2 R 1.3
-(ginning of the line, with the \214rst w)-.15 F 1.301
-(ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)6.301 G 1.301(rds are).8
-F(inserted into the current line separated by single spaces.)108 403.2 Q
+-3.029 E F1(%)3.029 E F0 5.53(.W)C(ords)-6.33 E 1.301
+(are numbered from the be)108 391.2 R 1.301
+(ginning of the line, with the \214rst w)-.15 F 1.3
+(ord being denoted by 0 \(zero\).)-.1 F -.8(Wo)6.3 G 1.3(rds are).8 F
+(inserted into the current line separated by single spaces.)108 403.2 Q
 F1 2.5(0\()108 420 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 432 Q 2.5
 (ord. F)-.1 F(or the shell, this is the command w)-.15 E(ord.)-.1 E F2
 (n)108.36 444 Q F0(The)30.64 E F2(n)2.5 E F0(th w)A(ord.)-.1 E F1(^)108
@@ -5436,21 +5439,21 @@ F1 2.5(0\()108 420 S(zer)-2.5 E(o\))-.18 E F0(The zeroth w)144 432 Q 2.5
 480 Q F0(The w)26 E(ord matched by the most recent `?)-.1 E F2(string)A
 F0(?' search.)A F2(x)108.77 492 Q F1<ad>A F2(y)A F0 2.5(Ar)20.65 G
 (ange of w)-2.5 E(ords; `\255)-.1 E F2(y)A F0 2.5('a)C(bbre)-2.5 E
-(viates `0\255)-.25 E F2(y)A F0('.)A F1(*)108 504 Q F0 .316
-(All of the w)31 F .316(ords b)-.1 F .316(ut the zeroth.)-.2 F .315
+(viates `0\255)-.25 E F2(y)A F0('.)A F1(*)108 504 Q F0 .315
+(All of the w)31 F .315(ords b)-.1 F .315(ut the zeroth.)-.2 F .315
 (This is a synon)5.315 F .315(ym for `)-.15 F F2(1\255$)A F0 2.815
-('. It)B .315(is not an error to use)2.815 F F1(*)2.815 E F0 .315
-(if there is)2.815 F(just one w)144 516 Q(ord in the e)-.1 E -.15(ve)
+('. It)B .315(is not an error to use)2.815 F F1(*)2.816 E F0 .316
+(if there is)2.816 F(just one w)144 516 Q(ord in the e)-.1 E -.15(ve)
 -.25 G(nt; the empty string is returned in that case.).15 E F1(x*)108
 528 Q F0(Abbre)26 E(viates)-.25 E F2(x\255$)2.5 E F0(.)A F1<78ad>108 540
 Q F0(Abbre)25.3 E(viates)-.25 E F2(x\255$)2.5 E F0(lik)2.5 E(e)-.1 E F1
 (x*)2.5 E F0 2.5(,b)C(ut omits the last w)-2.7 E(ord.)-.1 E(If a w)108
 556.8 Q(ord designator is supplied without an e)-.1 E -.15(ve)-.25 G
 (nt speci\214cation, the pre).15 E(vious command is used as the e)-.25 E
--.15(ve)-.25 G(nt.).15 E F1(Modi\214ers)87 573.6 Q F0 .183
-(After the optional w)108 585.6 R .183(ord designator)-.1 F 2.683(,t)-.4
-G .184(here may appear a sequence of one or more of the follo)-2.683 F
-.184(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 597.6 Q F1(h)
+-.15(ve)-.25 G(nt.).15 E F1(Modi\214ers)87 573.6 Q F0 .184
+(After the optional w)108 585.6 R .184(ord designator)-.1 F 2.684(,t)-.4
+G .183(here may appear a sequence of one or more of the follo)-2.684 F
+.183(wing modi\214ers,)-.25 F(each preceded by a `:'.)108 597.6 Q F1(h)
 108 614.4 Q F0(Remo)30.44 E .3 -.15(ve a t)-.15 H
 (railing \214le name component, lea).15 E(ving only the head.)-.2 E F1
 (t)108 626.4 Q F0(Remo)32.67 E .3 -.15(ve a)-.15 H
@@ -5465,13 +5468,13 @@ E -.15(xe)-.15 G(cute it.).15 E F1(q)108 674.4 Q F0
 -.1 E F1(x)108 686.4 Q F0(Quote the substituted w)31 E(ords as with)-.1
 E F1(q)2.5 E F0 2.5(,b)C(ut break into w)-2.7 E(ords at)-.1 E F1(blanks)
 2.5 E F0(and ne)2.5 E(wlines.)-.25 E F1(s/)108 698.4 Q F2(old)A F1(/)A
-F2(ne)A(w)-.15 E F1(/)A F0(Substitute)144 710.4 Q F2(ne)3.082 E(w)-.15 E
-F0 .221(for the \214rst occurrence of)3.032 F F2(old)2.951 E F0 .221
+F2(ne)A(w)-.15 E F1(/)A F0(Substitute)144 710.4 Q F2(ne)3.081 E(w)-.15 E
+F0 .221(for the \214rst occurrence of)3.031 F F2(old)2.951 E F0 .221
 (in the e)3.491 F -.15(ve)-.25 G .221(nt line.).15 F(An)5.221 E 2.721
-(yd)-.15 G .221(elimiter can be used in place)-2.721 F .616(of /.)144
+(yd)-.15 G .221(elimiter can be used in place)-2.721 F .617(of /.)144
 722.4 R .617
 (The \214nal delimiter is optional if it is the last character of the e)
-5.616 F -.15(ve)-.25 G .617(nt line.).15 F .617(The delimiter may)5.617
+5.617 F -.15(ve)-.25 G .617(nt line.).15 F .616(The delimiter may)5.616
 F(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(46)200.665 E 0 Cg EP
 %%Page: 47 47
 %%BeginPageSetup
@@ -5482,39 +5485,39 @@ BP
 (and)3.936 E F1(ne)3.526 E(w)-.15 E F0 .666(with a single backslash.)
 3.476 F .666(If & appears in)5.666 F F1(ne)3.166 E(w)-.15 E F0 3.166(,i)
 .31 G 3.166(ti)-3.166 G 3.166(sr)-3.166 G .666(eplaced by)-3.166 F F1
-(old)3.166 E F0 5.666(.A).77 G .274(single backslash will quote the &.)
-144 96 R(If)5.274 E F1(old)3.004 E F0 .274
-(is null, it is set to the last)3.544 F F1(old)3.005 E F0 .275
-(substituted, or)3.545 F 2.775(,i)-.4 G 2.775(fn)-2.775 G 2.775(op)
--2.775 G(re)-2.775 E(vi-)-.25 E
+(old)3.166 E F0 5.666(.A).77 G .275(single backslash will quote the &.)
+144 96 R(If)5.275 E F1(old)3.004 E F0 .274
+(is null, it is set to the last)3.544 F F1(old)3.004 E F0 .274
+(substituted, or)3.544 F 2.774(,i)-.4 G 2.774(fn)-2.774 G 2.774(op)
+-2.774 G(re)-2.774 E(vi-)-.25 E
 (ous history substitutions took place, the last)144 108 Q F1(string)2.84
 E F0(in a)2.72 E/F2 10/Times-Bold@0 SF(!?)2.5 E F1(string)A F2([?])A F0
 (search.)5 E F2(&)108 120 Q F0(Repeat the pre)27.67 E
-(vious substitution.)-.25 E F2(g)108 132 Q F0 .398
-(Cause changes to be applied o)31 F -.15(ve)-.15 G 2.898(rt).15 G .398
-(he entire e)-2.898 F -.15(ve)-.25 G .398(nt line.).15 F .397
-(This is used in conjunction with `)5.398 F F2(:s)A F0 2.897('\()C
-(e.g.,)-2.897 E(`)144 144 Q F2(:gs/)A F1(old)A F2(/)A F1(ne)A(w)-.15 E
-F2(/)A F0 1.218('\) or `)B F2(:&)A F0 3.718('. If)B 1.218(used with `)
-3.718 F F2(:s)A F0 1.218(', an)B 3.718(yd)-.15 G 1.219
-(elimiter can be used in place of /, and the \214nal)-3.718 F .09
+(vious substitution.)-.25 E F2(g)108 132 Q F0 .397
+(Cause changes to be applied o)31 F -.15(ve)-.15 G 2.897(rt).15 G .398
+(he entire e)-2.897 F -.15(ve)-.25 G .398(nt line.).15 F .398
+(This is used in conjunction with `)5.398 F F2(:s)A F0 2.898('\()C
+(e.g.,)-2.898 E(`)144 144 Q F2(:gs/)A F1(old)A F2(/)A F1(ne)A(w)-.15 E
+F2(/)A F0 1.219('\) or `)B F2(:&)A F0 3.719('. If)B 1.219(used with `)
+3.719 F F2(:s)A F0 1.218(', an)B 3.718(yd)-.15 G 1.218
+(elimiter can be used in place of /, and the \214nal)-3.718 F .089
 (delimiter is optional if it is the last character of the e)144 156 R
--.15(ve)-.25 G .089(nt line.).15 F(An)5.089 E F2(a)2.589 E F0 .089
-(may be used as a synon)2.589 F .089(ym for)-.15 F F2(g)144 168 Q F0(.)A
+-.15(ve)-.25 G .09(nt line.).15 F(An)5.09 E F2(a)2.59 E F0 .09
+(may be used as a synon)2.59 F .09(ym for)-.15 F F2(g)144 168 Q F0(.)A
 F2(G)108 180 Q F0(Apply the follo)28.22 E(wing `)-.25 E F2(s)A F0 2.5
 ('m)C(odi\214er once to each w)-2.5 E(ord in the e)-.1 E -.15(ve)-.25 G
 (nt line.).15 E/F3 10.95/Times-Bold@0 SF(SHELL B)72 196.8 Q(UIL)-.11 E
-(TIN COMMANDS)-1.007 E F0 .062(Unless otherwise noted, each b)108 208.8
+(TIN COMMANDS)-1.007 E F0 .063(Unless otherwise noted, each b)108 208.8
 R .062(uiltin command documented in this section as accepting options p\
 receded by)-.2 F F2<ad>108 220.8 Q F0(accepts)3.8 E F2<adad>3.8 E F0 1.3
 (to signify the end of the options.)3.8 F -.15(Fo)6.3 G 3.8(re).15 G 1.3
 (xample, the)-3.95 F F2(:)3.8 E F0(,)A F2(true)3.8 E F0(,)A F2(false)3.8
 E F0 3.8(,a)C(nd)-3.8 E F2(test)3.8 E F0 -.2(bu)3.8 G 1.3(iltins do not)
 .2 F(accept options.)108 232.8 Q F2(:)108 250.8 Q F0([)2.5 E F1(ar)A
-(guments)-.37 E F0(])A .451(No ef)144 262.8 R .451
+(guments)-.37 E F0(])A .452(No ef)144 262.8 R .452
 (fect; the command does nothing be)-.25 F .452(yond e)-.15 F(xpanding)
--.15 E F1(ar)3.282 E(guments)-.37 E F0 .452(and performing an)3.222 F
-2.952(ys)-.15 G(peci\214ed)-2.952 E 2.5(redirections. A)144 274.8 R
+-.15 E F1(ar)3.282 E(guments)-.37 E F0 .451(and performing an)3.221 F
+2.951(ys)-.15 G(peci\214ed)-2.951 E 2.5(redirections. A)144 274.8 R
 (zero e)2.5 E(xit code is returned.)-.15 E F2(.)110.5 291.6 Q F1
 (\214lename)6.666 E F0([)2.5 E F1(ar)A(guments)-.37 E F0(])A F2(sour)108
 303.6 Q(ce)-.18 E F1(\214lename)2.5 E F0([)2.5 E F1(ar)A(guments)-.37 E
@@ -5527,28 +5530,28 @@ F0(])A 1.02(Read and e)144 315.6 R -.15(xe)-.15 G 1.02
 (names in)144 339.6 R/F4 9/Times-Bold@0 SF -.666(PA)3.108 G(TH)-.189 E
 F0 .608(are used to \214nd the directory containing)2.858 F F1
 (\214lename)3.108 E F0 5.608(.T).18 G .608(he \214le searched for in)
--5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .832(need not be e)144 351.6
-R -.15(xe)-.15 G 3.332(cutable. When).15 F F2(bash)3.332 E F0 .832
-(is not in)3.332 F F1 .832(posix mode)3.332 F F0 3.332(,t)C .833
-(he current directory is searched if no)-3.332 F .982
+-5.608 F F4 -.666(PA)3.108 G(TH)-.189 E F0 .833(need not be e)144 351.6
+R -.15(xe)-.15 G 3.333(cutable. When).15 F F2(bash)3.333 E F0 .832
+(is not in)3.333 F F1 .832(posix mode)3.332 F F0 3.332(,t)C .832
+(he current directory is searched if no)-3.332 F .981
 (\214le is found in)144 363.6 R F4 -.666(PA)3.481 G(TH)-.189 E/F5 9
 /Times-Roman@0 SF(.)A F0 .981(If the)5.481 F F2(sour)3.481 E(cepath)-.18
 E F0 .981(option to the)3.481 F F2(shopt)3.481 E F0 -.2(bu)3.481 G .981
-(iltin command is turned of).2 F .981(f, the)-.25 F F4 -.666(PA)144
-375.6 S(TH)-.189 E F0 .112(is not searched.)2.362 F .112(If an)5.112 F
+(iltin command is turned of).2 F .982(f, the)-.25 F F4 -.666(PA)144
+375.6 S(TH)-.189 E F0 .112(is not searched.)2.363 F .112(If an)5.112 F
 (y)-.15 E F1(ar)2.612 E(guments)-.37 E F0 .112(are supplied, the)2.612 F
 2.612(yb)-.15 G .112(ecome the positional parameters when)-2.612 F F1
-(\214lename)144 387.6 Q F0 .342(is e)2.842 F -.15(xe)-.15 G 2.842
-(cuted. Otherwise).15 F .342(the positional parameters are unchanged.)
-2.842 F .341(The return status is the)5.341 F .716
+(\214lename)144 387.6 Q F0 .341(is e)2.841 F -.15(xe)-.15 G 2.841
+(cuted. Otherwise).15 F .341(the positional parameters are unchanged.)
+2.841 F .342(The return status is the)5.342 F .716
 (status of the last command e)144 399.6 R .716
 (xited within the script \(0 if no commands are e)-.15 F -.15(xe)-.15 G
-.716(cuted\), and f).15 F .716(alse if)-.1 F F1(\214lename)145.91 411.6
+.716(cuted\), and f).15 F .715(alse if)-.1 F F1(\214lename)145.91 411.6
 Q F0(is not found or cannot be read.)2.68 E F2(alias)108 428.4 Q F0([)
 2.5 E F2<ad70>A F0 2.5(][)C F1(name)-2.5 E F0([=)A F1(value)A F0 2.5(].)
-C(..])-2.5 E F2(Alias)144 440.4 Q F0 2.725(with no ar)5.225 F 2.724
+C(..])-2.5 E F2(Alias)144 440.4 Q F0 2.724(with no ar)5.224 F 2.724
 (guments or with the)-.18 F F2<ad70>5.224 E F0 2.724
-(option prints the list of aliases in the form)5.224 F F2(alias)5.224 E
+(option prints the list of aliases in the form)5.224 F F2(alias)5.225 E
 F1(name)144 452.4 Q F0(=)A F1(value)A F0 .58(on standard output.)3.08 F
 .58(When ar)5.58 F .58
 (guments are supplied, an alias is de\214ned for each)-.18 F F1(name)
@@ -5558,23 +5561,23 @@ F1(name)144 452.4 Q F0(=)A F1(value)A F0 .58(on standard output.)3.08 F
 (ord to be check)-.1 F .395(ed for alias sub-)-.1 F .054
 (stitution when the alias is e)144 476.4 R 2.554(xpanded. F)-.15 F .054
 (or each)-.15 F F1(name)2.554 E F0 .054(in the ar)2.554 F .054
-(gument list for which no)-.18 F F1(value)2.554 E F0 .054(is sup-)2.554
-F 1.314(plied, the name and v)144 488.4 R 1.314
+(gument list for which no)-.18 F F1(value)2.554 E F0 .053(is sup-)2.553
+F 1.313(plied, the name and v)144 488.4 R 1.314
 (alue of the alias is printed.)-.25 F F2(Alias)6.314 E F0 1.314
-(returns true unless a)3.814 F F1(name)3.814 E F0 1.313(is gi)3.814 F
--.15(ve)-.25 G 3.813(nf).15 G(or)-3.813 E
+(returns true unless a)3.814 F F1(name)3.814 E F0 1.314(is gi)3.814 F
+-.15(ve)-.25 G 3.814(nf).15 G(or)-3.814 E
 (which no alias has been de\214ned.)144 500.4 Q F2(bg)108 517.2 Q F0([)
-2.5 E F1(jobspec)A F0(...])2.5 E .744(Resume each suspended job)144
-529.2 R F1(jobspec)3.244 E F0 .745
-(in the background, as if it had been started with)3.244 F F2(&)3.245 E
-F0 5.745(.I)C(f)-5.745 E F1(job-)4.985 E(spec)144 541.2 Q F0 .672
-(is not present, the shell')3.482 F 3.172(sn)-.55 G .672(otion of the)
--3.172 F F1(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F2
-(bg)5.671 E F1(jobspec)4.911 E F0 .671(returns 0 unless run)3.481 F .418
+2.5 E F1(jobspec)A F0(...])2.5 E .745(Resume each suspended job)144
+529.2 R F1(jobspec)3.245 E F0 .745
+(in the background, as if it had been started with)3.245 F F2(&)3.244 E
+F0 5.744(.I)C(f)-5.744 E F1(job-)4.984 E(spec)144 541.2 Q F0 .671
+(is not present, the shell')3.481 F 3.171(sn)-.55 G .672(otion of the)
+-3.171 F F1(curr)3.172 E .672(ent job)-.37 F F0 .672(is used.)3.172 F F2
+(bg)5.672 E F1(jobspec)4.912 E F0 .672(returns 0 unless run)3.482 F .419
 (when job control is disabled or)144 553.2 R 2.919(,w)-.4 G .419
-(hen run with job control enabled, an)-2.919 F 2.919(ys)-.15 G
-(peci\214ed)-2.919 E F1(jobspec)2.919 E F0 -.1(wa)2.919 G 2.919(sn).1 G
-(ot)-2.919 E(found or w)144 565.2 Q(as started without job control.)-.1
+(hen run with job control enabled, an)-2.919 F 2.918(ys)-.15 G
+(peci\214ed)-2.918 E F1(jobspec)2.918 E F0 -.1(wa)2.918 G 2.918(sn).1 G
+(ot)-2.918 E(found or w)144 565.2 Q(as started without job control.)-.1
 E F2(bind)108 582 Q F0([)2.5 E F2<ad6d>A F1 -.1(ke)2.5 G(ymap)-.2 E F0
 2.5(][)C F2(\255lpsvPSV)-2.5 E F0(])A F2(bind)108 594 Q F0([)2.5 E F2
 <ad6d>A F1 -.1(ke)2.5 G(ymap)-.2 E F0 2.5(][)C F2<ad71>-2.5 E F1
@@ -5586,23 +5589,23 @@ F2<ad72>-2.5 E F1 -.1(ke)2.5 G(yseq)-.2 E F0(])A F2(bind)108 606 Q F0([)
 (shell\255command)A F2(bind)108 630 Q F0([)2.5 E F2<ad6d>A F1 -.1(ke)2.5
 G(ymap)-.2 E F0(])A F1 -.1(ke)2.5 G(yseq)-.2 E F0(:)A F1
 (function\255name)A F2(bind)108 642 Q F1 -.37(re)2.5 G
-(adline\255command).37 E F0 .239(Display current)144 654 R F2 -.18(re)
-2.739 G(adline).18 E F0 -.1(ke)2.739 G 2.739(ya)-.05 G .239
-(nd function bindings, bind a k)-2.739 F .539 -.15(ey s)-.1 H .238
-(equence to a).15 F F2 -.18(re)2.738 G(adline).18 E F0 .238(function or)
-2.738 F .475(macro, or set a)144 666 R F2 -.18(re)2.975 G(adline).18 E
-F0 -.25(va)2.975 G 2.975(riable. Each).25 F .476(non-option ar)2.976 F
-.476(gument is a command as it w)-.18 F .476(ould appear in)-.1 F F1
-(.inputr)144 678 Q(c)-.37 E F0 2.984(,b).31 G .484
-(ut each binding or command must be passed as a separate ar)-3.184 F
-.483(gument; e.g., '"\\C\255x\\C\255r":)-.18 F 2.5
+(adline\255command).37 E F0 .238(Display current)144 654 R F2 -.18(re)
+2.738 G(adline).18 E F0 -.1(ke)2.738 G 2.738(ya)-.05 G .239
+(nd function bindings, bind a k)-2.738 F .539 -.15(ey s)-.1 H .239
+(equence to a).15 F F2 -.18(re)2.739 G(adline).18 E F0 .239(function or)
+2.739 F .476(macro, or set a)144 666 R F2 -.18(re)2.976 G(adline).18 E
+F0 -.25(va)2.976 G 2.976(riable. Each).25 F .476(non-option ar)2.976 F
+.475(gument is a command as it w)-.18 F .475(ould appear in)-.1 F F1
+(.inputr)144 678 Q(c)-.37 E F0 2.983(,b).31 G .484
+(ut each binding or command must be passed as a separate ar)-3.183 F
+.484(gument; e.g., '"\\C\255x\\C\255r":)-.18 F 2.5
 (re\255read\255init\255\214le'. Options,)144 690 R(if supplied, ha)2.5 E
 .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F2<ad6d>144 702
-Q F1 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 714 Q F1 -.1(ke)5.158 G(ymap)-.2
-E F0 2.658(as the k)5.348 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.659
-(fected by the subsequent bindings.)-.25 F(Acceptable)7.659 E F1 -.1(ke)
-180 726 S(ymap)-.2 E F0 3.193(names are)5.883 F F1 3.193
-(emacs, emacs\255standar)5.693 F 3.192
+Q F1 -.1(ke)2.5 G(ymap)-.2 E F0(Use)180 714 Q F1 -.1(ke)5.159 G(ymap)-.2
+E F0 2.659(as the k)5.349 F -.15(ey)-.1 G 2.658(map to be af).15 F 2.658
+(fected by the subsequent bindings.)-.25 F(Acceptable)7.658 E F1 -.1(ke)
+180 726 S(ymap)-.2 E F0 3.192(names are)5.882 F F1 3.192
+(emacs, emacs\255standar)5.692 F 3.193
 (d, emacs\255meta, emacs\255ctlx, vi, vi\255mo)-.37 F(ve)-.1 E(,)-.1 E
 F0(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(47)200.665 E 0 Cg EP
 %%Page: 48 48
@@ -5610,11 +5613,11 @@ F0(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(47)200.665 E 0 Cg EP
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E/F1 10/Times-Italic@0 SF(vi\255command)180 84 Q F0 4.429(,a)C(nd)
--4.429 E F1(vi\255insert)4.429 E F0(.).68 E F1(vi)6.929 E F0 1.929
+-.35 E/F1 10/Times-Italic@0 SF(vi\255command)180 84 Q F0 4.43(,a)C(nd)
+-4.43 E F1(vi\255insert)4.429 E F0(.).68 E F1(vi)6.929 E F0 1.929
 (is equi)4.429 F -.25(va)-.25 G 1.929(lent to).25 F F1(vi\255command)
 4.429 E F0(;)A F1(emacs)4.429 E F0 1.929(is equi)4.429 F -.25(va)-.25 G
-1.93(lent to).25 F F1(emacs\255standar)180 96 Q(d)-.37 E F0(.)A/F2 10
+1.929(lent to).25 F F1(emacs\255standar)180 96 Q(d)-.37 E F0(.)A/F2 10
 /Times-Bold@0 SF<ad6c>144 108 Q F0(List the names of all)27.52 E F2 -.18
 (re)2.5 G(adline).18 E F0(functions.)2.5 E F2<ad70>144 120 Q F0(Display)
 24.74 E F2 -.18(re)2.5 G(adline).18 E F0
@@ -5646,91 +5649,91 @@ E F2 -.18(re)2.5 G(adline).18 E F0 -.1(ke)2.5 G 2.5(ys)-.05 G
 180 312 Q F1(shell\255command)4.325 E F0 1.825(to be e)4.325 F -.15(xe)
 -.15 G 1.825(cuted whene).15 F -.15(ve)-.25 G(r).15 E F1 -.1(ke)4.325 G
 (yseq)-.2 E F0 1.825(is entered.)4.325 F(When)6.825 E F1(shell\255com-)
-4.325 E(mand)180 324 Q F0 1.113(is e)3.614 F -.15(xe)-.15 G 1.113
+4.325 E(mand)180 324 Q F0 1.113(is e)3.613 F -.15(xe)-.15 G 1.113
 (cuted, the shell sets the).15 F F2(READLINE_LINE)3.613 E F0 -.25(va)
 3.613 G 1.113(riable to the contents of the).25 F F2 -.18(re)180 336 S
-(adline).18 E F0 .586(line b)3.086 F(uf)-.2 E .586(fer and the)-.25 F F2
-(READLINE_POINT)3.087 E F0 -.25(va)3.087 G .587
-(riable to the current location of the).25 F 1.241(insertion point.)180
+(adline).18 E F0 .587(line b)3.087 F(uf)-.2 E .587(fer and the)-.25 F F2
+(READLINE_POINT)3.087 E F0 -.25(va)3.087 G .586
+(riable to the current location of the).25 F 1.24(insertion point.)180
 348 R 1.241(If the e)6.241 F -.15(xe)-.15 G 1.241
 (cuted command changes the v).15 F 1.241(alue of)-.25 F F2
-(READLINE_LINE)3.741 E F0(or)3.74 E F2(READLINE_POINT)180 360 Q F0 2.5
+(READLINE_LINE)3.741 E F0(or)3.741 E F2(READLINE_POINT)180 360 Q F0 2.5
 (,t)C(hose ne)-2.5 E 2.5(wv)-.25 G
 (alues will be re\215ected in the editing state.)-2.75 E(The return v)
 144 376.8 Q(alue is 0 unless an unrecognized option is gi)-.25 E -.15
 (ve)-.25 G 2.5(no).15 G 2.5(ra)-2.5 G 2.5(ne)-2.5 G(rror occurred.)-2.5
-E F2(br)108 393.6 Q(eak)-.18 E F0([)2.5 E F1(n)A F0(])A .054
-(Exit from within a)144 405.6 R F2 -.25(fo)2.554 G(r).25 E F0(,)A F2
-(while)2.554 E F0(,)A F2(until)2.555 E F0 2.555(,o)C(r)-2.555 E F2
+E F2(br)108 393.6 Q(eak)-.18 E F0([)2.5 E F1(n)A F0(])A .055
+(Exit from within a)144 405.6 R F2 -.25(fo)2.555 G(r).25 E F0(,)A F2
+(while)2.555 E F0(,)A F2(until)2.555 E F0 2.555(,o)C(r)-2.555 E F2
 (select)2.555 E F0 2.555(loop. If)2.555 F F1(n)2.555 E F0 .055
 (is speci\214ed, break)2.555 F F1(n)2.555 E F0(le)2.555 E -.15(ve)-.25 G
-(ls.).15 E F1(n)5.415 E F0 .055(must be)2.795 F/F3 10/Symbol SF<b3>2.555
-E F0(1.)2.555 E(If)144 417.6 Q F1(n)3.075 E F0 .215(is greater than the\
- number of enclosing loops, all enclosing loops are e)2.955 F 2.714
-(xited. The)-.15 F .214(return v)2.714 F(alue)-.25 E(is 0 unless)144
+(ls.).15 E F1(n)5.414 E F0 .054(must be)2.794 F/F3 10/Symbol SF<b3>2.554
+E F0(1.)2.554 E(If)144 417.6 Q F1(n)3.074 E F0 .215(is greater than the\
+ number of enclosing loops, all enclosing loops are e)2.954 F 2.715
+(xited. The)-.15 F .215(return v)2.715 F(alue)-.25 E(is 0 unless)144
 429.6 Q F1(n)2.5 E F0(is not greater than or equal to 1.)2.5 E F2 -.2
 (bu)108 446.4 S(iltin).2 E F1(shell\255b)2.5 E(uiltin)-.2 E F0([)2.5 E
-F1(ar)A(guments)-.37 E F0(])A(Ex)144 458.4 Q .792
-(ecute the speci\214ed shell b)-.15 F .792(uiltin, passing it)-.2 F F1
+F1(ar)A(guments)-.37 E F0(])A(Ex)144 458.4 Q .793
+(ecute the speci\214ed shell b)-.15 F .793(uiltin, passing it)-.2 F F1
 (ar)3.293 E(guments)-.37 E F0 3.293(,a).27 G .793(nd return its e)-3.293
-F .793(xit status.)-.15 F .793(This is useful)5.793 F .616
+F .792(xit status.)-.15 F .792(This is useful)5.792 F .615
 (when de\214ning a function whose name is the same as a shell b)144
-470.4 R .615(uiltin, retaining the functionality of)-.2 F .57(the b)144
+470.4 R .616(uiltin, retaining the functionality of)-.2 F .57(the b)144
 482.4 R .57(uiltin within the function.)-.2 F(The)5.57 E F2(cd)3.07 E F0
 -.2(bu)3.07 G .57(iltin is commonly rede\214ned this w).2 F(ay)-.1 E
 5.57(.T)-.65 G .57(he return status)-5.57 F(is f)144 494.4 Q(alse if)-.1
 E F1(shell\255b)2.84 E(uiltin)-.2 E F0(is not a shell b)2.74 E
 (uiltin command.)-.2 E F2(caller)108 511.2 Q F0([)2.5 E F1 -.2(ex)C(pr)
-.2 E F0(])A .254(Returns the conte)144 523.2 R .254(xt of an)-.15 F
+.2 E F0(])A .253(Returns the conte)144 523.2 R .254(xt of an)-.15 F
 2.754(ya)-.15 G(cti)-2.754 E .554 -.15(ve s)-.25 H .254
 (ubroutine call \(a shell function or a script e).15 F -.15(xe)-.15 G
-.254(cuted with the).15 F F2(.)2.753 E F0(or)2.753 E F2(sour)144 535.2 Q
-(ce)-.18 E F0 -.2(bu)3.062 G 3.062(iltins. W).2 F(ithout)-.4 E F1 -.2
+.254(cuted with the).15 F F2(.)2.754 E F0(or)2.754 E F2(sour)144 535.2 Q
+(ce)-.18 E F0 -.2(bu)3.063 G 3.063(iltins. W).2 F(ithout)-.4 E F1 -.2
 (ex)3.062 G(pr).2 E F0(,)A F2(caller)3.062 E F0 .562
 (displays the line number and source \214lename of the current)3.062 F
-.254(subroutine call.)144 547.2 R .254(If a non-ne)5.254 F -.05(ga)-.15
-G(ti).05 E .554 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15
-F F1 -.2(ex)2.753 G(pr).2 E F0(,)A F2(caller)2.753 E F0 .253
-(displays the line number)2.753 F 2.753(,s)-.4 G(ub-)-2.753 E 1.327(rou\
+.253(subroutine call.)144 547.2 R .253(If a non-ne)5.253 F -.05(ga)-.15
+G(ti).05 E .553 -.15(ve i)-.25 H(nte).15 E .253(ger is supplied as)-.15
+F F1 -.2(ex)2.753 G(pr).2 E F0(,)A F2(caller)2.753 E F0 .254
+(displays the line number)2.754 F 2.754(,s)-.4 G(ub-)-2.754 E 1.327(rou\
 tine name, and source \214le corresponding to that position in the curr\
-ent e)144 559.2 R -.15(xe)-.15 G 1.328(cution call stack.).15 F .001
-(This e)144 571.2 R .001(xtra information may be used, for e)-.15 F .001
-(xample, to print a stack trace.)-.15 F(The current frame is frame)5 E
-3.019(0. The)144 583.2 R .519(return v)3.019 F .519
-(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .52
-(cuting a subroutine call or).15 F F1 -.2(ex)3.02 G(pr).2 E F0 .52
-(does not corre-)3.02 F(spond to a v)144 595.2 Q
+ent e)144 559.2 R -.15(xe)-.15 G 1.327(cution call stack.).15 F(This e)
+144 571.2 Q(xtra information may be used, for e)-.15 E .001
+(xample, to print a stack trace.)-.15 F .001(The current frame is frame)
+5.001 F 3.02(0. The)144 583.2 R .52(return v)3.02 F .52
+(alue is 0 unless the shell is not e)-.25 F -.15(xe)-.15 G .519
+(cuting a subroutine call or).15 F F1 -.2(ex)3.019 G(pr).2 E F0 .519
+(does not corre-)3.019 F(spond to a v)144 595.2 Q
 (alid position in the call stack.)-.25 E F2(cd)108 612 Q F0([)2.5 E F2
 (\255L|-P)A F0 2.5(][)C F1(dir)-2.5 E F0(])A .21
 (Change the current directory to)144 624 R F1(dir)2.71 E F0 5.21(.T)C
 .21(he v)-5.21 F(ariable)-.25 E/F4 9/Times-Bold@0 SF(HOME)2.71 E F0 .21
 (is the def)2.46 F(ault)-.1 E F1(dir)2.71 E F0 5.21(.T).73 G .21(he v)
--5.21 F(ariable)-.25 E F4(CDP)2.71 E -.855(AT)-.666 G(H).855 E F0 .776
+-5.21 F(ariable)-.25 E F4(CDP)2.71 E -.855(AT)-.666 G(H).855 E F0 .777
 (de\214nes the search path for the directory containing)144 636 R F1
-(dir)3.276 E F0 5.777(.A).73 G(lternati)-5.777 E 1.077 -.15(ve d)-.25 H
-.777(irectory names in).15 F F4(CDP)3.277 E -.855(AT)-.666 G(H).855 E F0
+(dir)3.276 E F0 5.776(.A).73 G(lternati)-5.776 E 1.076 -.15(ve d)-.25 H
+.776(irectory names in).15 F F4(CDP)3.276 E -.855(AT)-.666 G(H).855 E F0
 .764(are separated by a colon \(:\).)144 648 R 3.264(An)5.764 G .764
 (ull directory name in)-3.264 F F4(CDP)3.264 E -.855(AT)-.666 G(H).855 E
-F0 .764(is the same as the current direc-)3.014 F(tory)144 660 Q 2.973
-(,i)-.65 G .473(.e., `)-2.973 F(`)-.74 E F2(.)A F0 -.74('')C 5.473(.I)
-.74 G(f)-5.473 E F1(dir)3.323 E F0(be)3.703 E .474
+F0 .764(is the same as the current direc-)3.014 F(tory)144 660 Q 2.974
+(,i)-.65 G .474(.e., `)-2.974 F(`)-.74 E F2(.)A F0 -.74('')C 5.474(.I)
+.74 G(f)-5.474 E F1(dir)3.324 E F0(be)3.704 E .474
 (gins with a slash \(/\), then)-.15 F F4(CDP)2.974 E -.855(AT)-.666 G(H)
-.855 E F0 .474(is not used. The)2.724 F F2<ad50>2.974 E F0 .474
-(option says to use)2.974 F .58(the ph)144 672 R .58
+.855 E F0 .473(is not used. The)2.724 F F2<ad50>2.973 E F0 .473
+(option says to use)2.973 F .579(the ph)144 672 R .579
 (ysical directory structure instead of follo)-.05 F .579
-(wing symbolic links \(see also the)-.25 F F2<ad50>3.079 E F0 .579
-(option to the)3.079 F F2(set)144 684 Q F0 -.2(bu)3.383 G .883
-(iltin command\); the).2 F F2<ad4c>3.383 E F0 .884
+(wing symbolic links \(see also the)-.25 F F2<ad50>3.08 E F0 .58
+(option to the)3.08 F F2(set)144 684 Q F0 -.2(bu)3.384 G .884
+(iltin command\); the).2 F F2<ad4c>3.384 E F0 .884
 (option forces symbolic links to be follo)3.384 F 3.384(wed. An)-.25 F
-(ar)3.384 E .884(gument of)-.18 F F2<ad>3.384 E F0(is)3.384 E(equi)144
-696 Q -.25(va)-.25 G .063(lent to).25 F F4($OLDPWD)2.563 E/F5 9
-/Times-Roman@0 SF(.)A F0 .063(If a non-empty directory name from)4.563 F
-F2(CDP)2.562 E -.95(AT)-.74 G(H).95 E F0 .062(is used, or if)2.562 F F2
-<ad>2.562 E F0 .062(is the \214rst)2.562 F(ar)144 708 Q .116(gument, an\
+(ar)3.383 E .883(gument of)-.18 F F2<ad>3.383 E F0(is)3.383 E(equi)144
+696 Q -.25(va)-.25 G .062(lent to).25 F F4($OLDPWD)2.562 E/F5 9
+/Times-Roman@0 SF(.)A F0 .062(If a non-empty directory name from)4.562 F
+F2(CDP)2.562 E -.95(AT)-.74 G(H).95 E F0 .063(is used, or if)2.562 F F2
+<ad>2.563 E F0 .063(is the \214rst)2.563 F(ar)144 708 Q .116(gument, an\
 d the directory change is successful, the absolute pathname of the ne)
--.18 F 2.616(ww)-.25 G .116(orking direc-)-2.716 F 1.165
+-.18 F 2.615(ww)-.25 G .115(orking direc-)-2.715 F 1.164
 (tory is written to the standard output.)144 720 R 1.164(The return v)
-6.164 F 1.164(alue is true if the directory w)-.25 F 1.164
+6.164 F 1.165(alue is true if the directory w)-.25 F 1.165
 (as successfully)-.1 F(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(48)
 200.665 E 0 Cg EP
 %%Page: 49 49
@@ -5741,38 +5744,38 @@ BP
 -.35 E(changed; f)144 84 Q(alse otherwise.)-.1 E/F1 10/Times-Bold@0 SF
 (command)108 100.8 Q F0([)2.5 E F1(\255pVv)A F0(])A/F2 10/Times-Italic@0
 SF(command)2.5 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Run)144 112.8
-Q F2(command)2.956 E F0(with)3.527 E F2(ar)3.087 E(gs)-.37 E F0 .257
+Q F2(command)2.957 E F0(with)3.527 E F2(ar)3.087 E(gs)-.37 E F0 .257
 (suppressing the normal shell function lookup. Only b)3.027 F .257
-(uiltin commands or)-.2 F .502(commands found in the)144 124.8 R/F3 9
-/Times-Bold@0 SF -.666(PA)3.002 G(TH)-.189 E F0 .502(are e)2.752 F -.15
+(uiltin commands or)-.2 F .501(commands found in the)144 124.8 R/F3 9
+/Times-Bold@0 SF -.666(PA)3.001 G(TH)-.189 E F0 .502(are e)2.751 F -.15
 (xe)-.15 G 3.002(cuted. If).15 F(the)3.002 E F1<ad70>3.002 E F0 .502
-(option is gi)3.002 F -.15(ve)-.25 G .501(n, the search for).15 F F2
-(command)3.201 E F0(is)3.771 E .231(performed using a def)144 136.8 R
+(option is gi)3.002 F -.15(ve)-.25 G .502(n, the search for).15 F F2
+(command)3.202 E F0(is)3.772 E .232(performed using a def)144 136.8 R
 .231(ault v)-.1 F .231(alue for)-.25 F F1 -.74(PA)2.731 G(TH)-.21 E F0
 .231(that is guaranteed to \214nd all of the standard utilities.)2.731 F
-(If)5.232 E .175(either the)144 148.8 R F1<ad56>2.675 E F0(or)2.675 E F1
-<ad76>2.675 E F0 .175(option is supplied, a description of)2.675 F F2
-(command)2.875 E F0 .174(is printed.)3.445 F(The)5.174 E F1<ad76>2.674 E
-F0 .174(option causes)2.674 F 3.11(as)144 160.8 S .61(ingle w)-3.11 F
+(If)5.231 E .174(either the)144 148.8 R F1<ad56>2.674 E F0(or)2.674 E F1
+<ad76>2.674 E F0 .175(option is supplied, a description of)2.674 F F2
+(command)2.875 E F0 .175(is printed.)3.445 F(The)5.175 E F1<ad76>2.675 E
+F0 .175(option causes)2.675 F 3.11(as)144 160.8 S .61(ingle w)-3.11 F
 .61(ord indicating the command or \214le name used to in)-.1 F -.2(vo)
 -.4 G -.1(ke).2 G F2(command)3.41 E F0 .61(to be displayed; the)3.88 F
-F1<ad56>144 172.8 Q F0 .25(option produces a more v)2.75 F .25
-(erbose description.)-.15 F .249(If the)5.25 F F1<ad56>2.749 E F0(or)
-2.749 E F1<ad76>2.749 E F0 .249(option is supplied, the e)2.749 F .249
-(xit status)-.15 F 1.004(is 0 if)144 184.8 R F2(command)3.704 E F0 -.1
-(wa)4.274 G 3.504(sf).1 G 1.005(ound, and 1 if not.)-3.504 F 1.005
+F1<ad56>144 172.8 Q F0 .249(option produces a more v)2.749 F .249
+(erbose description.)-.15 F .249(If the)5.249 F F1<ad56>2.749 E F0(or)
+2.749 E F1<ad76>2.75 E F0 .25(option is supplied, the e)2.75 F .25
+(xit status)-.15 F 1.005(is 0 if)144 184.8 R F2(command)3.705 E F0 -.1
+(wa)4.275 G 3.505(sf).1 G 1.005(ound, and 1 if not.)-3.505 F 1.004
 (If neither option is supplied and an error occurred or)6.005 F F2
-(command)144.2 196.8 Q F0 1.599(cannot be found, the e)4.869 F 1.599
-(xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.598
-(xit status of the)-.15 F F1(command)4.098 E F0 -.2(bu)144 208.8 S
+(command)144.2 196.8 Q F0 1.598(cannot be found, the e)4.868 F 1.599
+(xit status is 127.)-.15 F 1.599(Otherwise, the e)6.599 F 1.599
+(xit status of the)-.15 F F1(command)4.099 E F0 -.2(bu)144 208.8 S
 (iltin is the e).2 E(xit status of)-.15 E F2(command)2.5 E F0(.).77 E F1
 (compgen)108 225.6 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(wor)-2.5 E(d)
--.37 E F0(])A .012(Generate possible completion matches for)144 237.6 R
+-.37 E F0(])A .013(Generate possible completion matches for)144 237.6 R
 F2(wor)2.513 E(d)-.37 E F0 .013(according to the)2.513 F F2(option)2.513
-E F0 .013(s, which may be an)B 2.513(yo)-.15 G(ption)-2.513 E .982
-(accepted by the)144 249.6 R F1(complete)3.482 E F0 -.2(bu)3.481 G .981
+E F0 .013(s, which may be an)B 2.512(yo)-.15 G(ption)-2.512 E .981
+(accepted by the)144 249.6 R F1(complete)3.481 E F0 -.2(bu)3.481 G .981
 (iltin with the e).2 F .981(xception of)-.15 F F1<ad70>3.481 E F0(and)
-3.481 E F1<ad72>3.481 E F0 3.481(,a)C .981(nd write the matches to the)
+3.481 E F1<ad72>3.481 E F0 3.481(,a)C .982(nd write the matches to the)
 -3.481 F 1.415(standard output.)144 261.6 R 1.415(When using the)6.415 F
 F1<ad46>3.915 E F0(or)3.915 E F1<ad43>3.915 E F0 1.415(options, the v)
 3.915 F 1.415(arious shell v)-.25 F 1.415(ariables set by the pro-)-.25
@@ -5786,60 +5789,60 @@ em directly from a completion speci\214cation with the same \215ags.)144
 (will be displayed.)2.5 E(The return v)144 345.6 Q
 (alue is true unless an in)-.25 E -.25(va)-.4 G
 (lid option is supplied, or no matches were generated.).25 E F1
-(complete)108 362.4 Q F0([)3.034 E F1(\255abcdefgjksuv)A F0 3.034(][)C
-F1<ad6f>-3.034 E F2(comp-option)3.034 E F0 3.034(][)C F1<ad45>-3.034 E
+(complete)108 362.4 Q F0([)3.033 E F1(\255abcdefgjksuv)A F0 3.033(][)C
+F1<ad6f>-3.033 E F2(comp-option)3.033 E F0 3.033(][)C F1<ad45>-3.033 E
 F0 3.033(][)C F1<ad41>-3.033 E F2(action)3.033 E F0 3.033(][)C F1<ad47>
--3.033 E F2(globpat)3.033 E F0 3.033(][)C F1<ad57>-3.033 E F2(wor)3.033
-E(dlist)-.37 E F0 3.033(][)C F1<ad46>-3.033 E F2(function)3.033 E F0(])A
+-3.033 E F2(globpat)3.033 E F0 3.034(][)C F1<ad57>-3.034 E F2(wor)3.034
+E(dlist)-.37 E F0 3.034(][)C F1<ad46>-3.034 E F2(function)3.034 E F0(])A
 ([)108 374.4 Q F1<ad43>A F2(command)2.5 E F0(])A([)144 386.4 Q F1<ad58>A
 F2(\214lterpat)2.5 E F0 2.5(][)C F1<ad50>-2.5 E F2(pr)2.5 E(e\214x)-.37
 E F0 2.5(][)C F1<ad53>-2.5 E F2(suf)2.5 E<8c78>-.18 E F0(])A F2(name)2.5
 E F0([)2.5 E F2(name ...)A F0(])A F1(complete \255pr)108 398.4 Q F0([)
-2.5 E F1<ad45>A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .634
-(Specify ho)144 410.4 R 3.134(wa)-.25 G -.18(rg)-3.134 G .634
-(uments to each).18 F F2(name)3.134 E F0 .634(should be completed.)3.134
-F .633(If the)5.634 F F1<ad70>3.133 E F0 .633
-(option is supplied, or if no)3.133 F .139(options are supplied, e)144
+2.5 E F1<ad45>A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .633
+(Specify ho)144 410.4 R 3.133(wa)-.25 G -.18(rg)-3.133 G .633
+(uments to each).18 F F2(name)3.133 E F0 .633(should be completed.)3.133
+F .634(If the)5.634 F F1<ad70>3.134 E F0 .634
+(option is supplied, or if no)3.134 F .14(options are supplied, e)144
 422.4 R .139(xisting completion speci\214cations are printed in a w)-.15
-F .14(ay that allo)-.1 F .14(ws them to be)-.25 F .31(reused as input.)
-144 434.4 R(The)5.31 E F1<ad72>2.81 E F0 .31(option remo)2.81 F -.15(ve)
--.15 G 2.81(sac).15 G .31(ompletion speci\214cation for each)-2.81 F F2
-(name)2.81 E F0 2.81(,o)C 1.11 -.4(r, i)-2.81 H 2.81(fn).4 G(o)-2.81 E
-F2(name)2.81 E F0(s)A 1.392
-(are supplied, all completion speci\214cations.)144 446.4 R(The)6.392 E
-F1<ad45>3.892 E F0 1.393(option indicates that the remaining options)
-3.893 F 1.304(and actions should apply to `)144 458.4 R(`empty')-.74 E
+F .139(ay that allo)-.1 F .139(ws them to be)-.25 F .31
+(reused as input.)144 434.4 R(The)5.31 E F1<ad72>2.81 E F0 .31
+(option remo)2.81 F -.15(ve)-.15 G 2.81(sac).15 G .31
+(ompletion speci\214cation for each)-2.81 F F2(name)2.81 E F0 2.81(,o)C
+1.11 -.4(r, i)-2.81 H 2.81(fn).4 G(o)-2.81 E F2(name)2.81 E F0(s)A 1.393
+(are supplied, all completion speci\214cations.)144 446.4 R(The)6.393 E
+F1<ad45>3.893 E F0 1.392(option indicates that the remaining options)
+3.892 F 1.304(and actions should apply to `)144 458.4 R(`empty')-.74 E
 3.804('c)-.74 G 1.304
 (ommand completion; that is, completion attempted on a)-3.804 F
-(blank line.)144 470.4 Q 1.437
+(blank line.)144 470.4 Q 1.438
 (The process of applying these completion speci\214cations when w)144
-494.4 R 1.438(ord completion is attempted is)-.1 F(described abo)144
+494.4 R 1.437(ord completion is attempted is)-.1 F(described abo)144
 506.4 Q .3 -.15(ve u)-.15 H(nder).15 E F1(Pr)2.5 E
-(ogrammable Completion)-.18 E F0(.)A .556
-(Other options, if speci\214ed, ha)144 530.4 R .856 -.15(ve t)-.2 H .555
+(ogrammable Completion)-.18 E F0(.)A .555
+(Other options, if speci\214ed, ha)144 530.4 R .855 -.15(ve t)-.2 H .555
 (he follo).15 F .555(wing meanings.)-.25 F .555(The ar)5.555 F .555
-(guments to the)-.18 F F1<ad47>3.055 E F0(,)A F1<ad57>3.055 E F0 3.055
-(,a)C(nd)-3.055 E F1<ad58>3.055 E F0 .722(options \(and, if necessary)
-144 542.4 R 3.222(,t)-.65 G(he)-3.222 E F1<ad50>3.222 E F0(and)3.222 E
-F1<ad53>3.222 E F0 .723
-(options\) should be quoted to protect them from e)3.222 F(xpan-)-.15 E
+(guments to the)-.18 F F1<ad47>3.056 E F0(,)A F1<ad57>3.056 E F0 3.056
+(,a)C(nd)-3.056 E F1<ad58>3.056 E F0 .723(options \(and, if necessary)
+144 542.4 R 3.223(,t)-.65 G(he)-3.223 E F1<ad50>3.223 E F0(and)3.223 E
+F1<ad53>3.223 E F0 .722
+(options\) should be quoted to protect them from e)3.223 F(xpan-)-.15 E
 (sion before the)144 554.4 Q F1(complete)2.5 E F0 -.2(bu)2.5 G
 (iltin is in).2 E -.2(vo)-.4 G -.1(ke).2 G(d.).1 E F1<ad6f>144 566.4 Q
-F2(comp-option)2.5 E F0(The)184 578.4 Q F2(comp-option)2.791 E F0 .291
+F2(comp-option)2.5 E F0(The)184 578.4 Q F2(comp-option)2.79 E F0 .291
 (controls se)2.791 F -.15(ve)-.25 G .291(ral aspects of the compspec')
 .15 F 2.791(sb)-.55 G(eha)-2.791 E .291(vior be)-.2 F .291
 (yond the simple)-.15 F(generation of completions.)184 590.4 Q F2
 (comp-option)5 E F0(may be one of:)2.5 E F1(bashdefault)184 602.4 Q F0
 .281(Perform the rest of the def)224 614.4 R(ault)-.1 E F1(bash)2.781 E
 F0 .281(completions if the compspec generates no)2.781 F(matches.)224
-626.4 Q F1(default)184 638.4 Q F0 2.876(Use readline')10 F 5.376(sd)-.55
-G(ef)-5.376 E 2.875
+626.4 Q F1(default)184 638.4 Q F0 2.875(Use readline')10 F 5.375(sd)-.55
+G(ef)-5.375 E 2.876
 (ault \214lename completion if the compspec generates no)-.1 F(matches.)
 224 650.4 Q F1(dir)184 662.4 Q(names)-.15 E F0(Perform directory name c\
 ompletion if the compspec generates no matches.)224 674.4 Q F1
 (\214lenames)184 686.4 Q F0 -.7(Te)224 698.4 S .137(ll readline that th\
-e compspec generates \214lenames, so it can perform an).7 F 2.637<798c>
--.15 G(le-)-2.637 E .496(name\255speci\214c processing \(lik)224 710.4 R
+e compspec generates \214lenames, so it can perform an).7 F 2.636<798c>
+-.15 G(le-)-2.636 E .496(name\255speci\214c processing \(lik)224 710.4 R
 2.996(ea)-.1 G .496(dding a slash to directory names or suppress-)-2.996
 F(ing trailing spaces\).)224 722.4 Q
 (Intended to be used with shell functions.)5 E(GNU Bash-4.0)72 768 Q
@@ -5854,7 +5857,7 @@ BP
 .22(ords completed at the end)-.1 F(of the line.)224 96 Q F1(plusdirs)
 184 108 Q F0 1.985(After an)5.54 F 4.485(ym)-.15 G 1.985
 (atches de\214ned by the compspec are generated, directory name)-4.485 F
-.583(completion is attempted and an)224 120 R 3.084(ym)-.15 G .584
+.584(completion is attempted and an)224 120 R 3.084(ym)-.15 G .584
 (atches are added to the results of the other)-3.084 F(actions.)224 132
 Q F1<ad41>144 144 Q/F2 10/Times-Italic@0 SF(action)2.5 E F0(The)184 156
 Q F2(action)2.5 E F0(may be one of the follo)2.5 E
@@ -5897,25 +5900,25 @@ F0(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E F1
 (May also be speci\214ed as)5 E F1<ad75>2.5 E F0(.)A F1 -.1(va)184 540 S
 (riable).1 E F0(Names of all shell v)5.1 E 2.5(ariables. May)-.25 F
 (also be speci\214ed as)2.5 E F1<ad76>2.5 E F0(.)A F1<ad47>144 552 Q F2
-(globpat)2.5 E F0 1.411(The \214lename e)184 564 R 1.411
+(globpat)2.5 E F0 1.41(The \214lename e)184 564 R 1.411
 (xpansion pattern)-.15 F F2(globpat)3.911 E F0 1.411(is e)3.911 F 1.411
 (xpanded to generate the possible comple-)-.15 F(tions.)184 576 Q F1
-<ad57>144 588 Q F2(wor)2.5 E(dlist)-.37 E F0(The)184 600 Q F2(wor)3.639
-E(dlist)-.37 E F0 1.14(is split using the characters in the)3.639 F F3
-(IFS)3.64 E F0 1.14(special v)3.39 F 1.14(ariable as delimiters, and)
--.25 F 2.008(each resultant w)184 612 R 2.008(ord is e)-.1 F 4.508
-(xpanded. The)-.15 F 2.007(possible completions are the members of the)
-4.508 F(resultant list which match the w)184 624 Q(ord being completed.)
--.1 E F1<ad43>144 636 Q F2(command)2.5 E(command)184 648 Q F0 1.055
-(is e)3.555 F -.15(xe)-.15 G 1.055(cuted in a subshell en).15 F 1.056
+<ad57>144 588 Q F2(wor)2.5 E(dlist)-.37 E F0(The)184 600 Q F2(wor)3.64 E
+(dlist)-.37 E F0 1.14(is split using the characters in the)3.64 F F3
+(IFS)3.64 E F0 1.139(special v)3.39 F 1.139(ariable as delimiters, and)
+-.25 F 2.007(each resultant w)184 612 R 2.007(ord is e)-.1 F 4.507
+(xpanded. The)-.15 F 2.008(possible completions are the members of the)
+4.507 F(resultant list which match the w)184 624 Q(ord being completed.)
+-.1 E F1<ad43>144 636 Q F2(command)2.5 E(command)184 648 Q F0 1.056
+(is e)3.556 F -.15(xe)-.15 G 1.056(cuted in a subshell en).15 F 1.056
 (vironment, and its output is used as the possible)-.4 F(completions.)
-184 660 Q F1<ad46>144 672 Q F2(function)2.5 E F0 1.181
-(The shell function)184 684 R F2(function)3.681 E F0 1.181(is e)3.681 F
--.15(xe)-.15 G 1.181(cuted in the current shell en).15 F 3.68
-(vironment. When)-.4 F 1.18(it \214n-)3.68 F .932
+184 660 Q F1<ad46>144 672 Q F2(function)2.5 E F0 1.18
+(The shell function)184 684 R F2(function)3.68 E F0 1.181(is e)3.681 F
+-.15(xe)-.15 G 1.181(cuted in the current shell en).15 F 3.681
+(vironment. When)-.4 F 1.181(it \214n-)3.681 F .932
 (ishes, the possible completions are retrie)184 696 R -.15(ve)-.25 G
 3.432(df).15 G .932(rom the v)-3.432 F .932(alue of the)-.25 F F3
-(COMPREPL)3.432 E(Y)-.828 E F0(array)3.182 E -.25(va)184 708 S(riable.)
+(COMPREPL)3.431 E(Y)-.828 E F0(array)3.181 E -.25(va)184 708 S(riable.)
 .25 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(50)200.665 E 0 Cg EP
 %%Page: 51 51
 %%BeginPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E/F1 10/Times-Bold@0 SF<ad58>144 84 Q/F2 10/Times-Italic@0 SF
 (\214lterpat)2.5 E(\214lterpat)184 96 Q F0 .733
-(is a pattern as used for \214lename e)3.234 F 3.233(xpansion. It)-.15 F
+(is a pattern as used for \214lename e)3.233 F 3.233(xpansion. It)-.15 F
 .733(is applied to the list of possible)3.233 F 1.596
 (completions generated by the preceding options and ar)184 108 R 1.596
 (guments, and each completion)-.18 F(matching)184 120 Q F2(\214lterpat)
-3.205 E F0 .705(is remo)3.205 F -.15(ve)-.15 G 3.205(df).15 G .704
-(rom the list.)-3.205 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0
-(in)3.204 E F2(\214lterpat)3.204 E F0(ne)3.204 E -.05(ga)-.15 G .704
+3.204 E F0 .704(is remo)3.204 F -.15(ve)-.15 G 3.204(df).15 G .704
+(rom the list.)-3.204 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0
+(in)3.204 E F2(\214lterpat)3.205 E F0(ne)3.205 E -.05(ga)-.15 G .705
 (tes the pattern;).05 F(in this case, an)184 132 Q 2.5(yc)-.15 G
 (ompletion not matching)-2.5 E F2(\214lterpat)2.5 E F0(is remo)2.5 E
 -.15(ve)-.15 G(d.).15 E F1<ad50>144 144 Q F2(pr)2.5 E(e\214x)-.37 E(pr)
-184 156 Q(e\214x)-.37 E F0 .534(is added at the be)3.034 F .534
+184 156 Q(e\214x)-.37 E F0 .535(is added at the be)3.035 F .534
 (ginning of each possible completion after all other options ha)-.15 F
 -.15(ve)-.2 G(been applied.)184 168 Q F1<ad53>144 180 Q F2(suf)2.5 E
 2.81(\214x suf)-.18 F<8c78>-.18 E F0
 (is appended to each possible completion after all other options ha)2.5
-E .3 -.15(ve b)-.2 H(een applied.).15 E .467(The return v)144 196.8 R
-.467(alue is true unless an in)-.25 F -.25(va)-.4 G .466
-(lid option is supplied, an option other than).25 F F1<ad70>2.966 E F0
-(or)2.966 E F1<ad72>2.966 E F0 .466(is sup-)2.966 F 1.361
-(plied without a)144 208.8 R F2(name)3.861 E F0(ar)3.861 E 1.361
-(gument, an attempt is made to remo)-.18 F 1.662 -.15(ve a c)-.15 H
-1.362(ompletion speci\214cation for a).15 F F2(name)144 220.8 Q F0
+E .3 -.15(ve b)-.2 H(een applied.).15 E .466(The return v)144 196.8 R
+.466(alue is true unless an in)-.25 F -.25(va)-.4 G .466
+(lid option is supplied, an option other than).25 F F1<ad70>2.967 E F0
+(or)2.967 E F1<ad72>2.967 E F0 .467(is sup-)2.967 F 1.362
+(plied without a)144 208.8 R F2(name)3.862 E F0(ar)3.862 E 1.361
+(gument, an attempt is made to remo)-.18 F 1.661 -.15(ve a c)-.15 H
+1.361(ompletion speci\214cation for a).15 F F2(name)144 220.8 Q F0
 (for which no speci\214cation e)2.5 E
 (xists, or an error occurs adding a completion speci\214cation.)-.15 E
 F1(compopt)108 237.6 Q F0([)2.5 E F1<ad6f>A F2(option)2.5 E F0 2.5(][)C
 F1(+o)-2.5 E F2(option)2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A .447
 (Modify completion options for each)144 249.6 R F2(name)2.947 E F0 .447
 (according to the)2.947 F F2(option)2.947 E F0 .447
-(s, or for the currently-e)B -.15(xe)-.15 G(cution).15 E .725
-(completion if no)144 261.6 R F2(name)3.225 E F0 3.225(sa)C .725
-(re supplied.)-3.225 F .725(If no)5.725 F F2(option)3.225 E F0 3.225(sa)
-C .725(re gi)-3.225 F -.15(ve)-.25 G .726
+(s, or for the currently-e)B -.15(xe)-.15 G(cution).15 E .726
+(completion if no)144 261.6 R F2(name)3.226 E F0 3.226(sa)C .726
+(re supplied.)-3.226 F .725(If no)5.725 F F2(option)3.225 E F0 3.225(sa)
+C .725(re gi)-3.225 F -.15(ve)-.25 G .725
 (n, display the completion options for).15 F(each)144 273.6 Q F2(name)
-3.224 E F0 .724(or the current completion.)3.224 F .724(The possible v)
+3.223 E F0 .723(or the current completion.)3.223 F .724(The possible v)
 5.724 F .724(alues of)-.25 F F2(option)3.224 E F0 .724(are those v)3.224
-F .723(alid for the)-.25 F F1(com-)3.223 E(plete)144 285.6 Q F0 -.2(bu)
+F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 285.6 Q F0 -.2(bu)
 2.5 G(iltin described abo).2 E -.15(ve)-.15 G(.).15 E .327(The return v)
 108 302.4 R .327(alue is true unless an in)-.25 F -.25(va)-.4 G .327
 (lid option is supplied, an attempt is made to modify the options for a)
 .25 F F2(name)108 314.4 Q F0(for which no completion speci\214cation e)
 2.5 E(xists, or an output error occurs.)-.15 E F1(continue)108 331.2 Q
-F0([)2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 343.2 R 1.754
+F0([)2.5 E F2(n)A F0(])A 1.753(Resume the ne)144 343.2 R 1.753
 (xt iteration of the enclosing)-.15 F F1 -.25(fo)4.254 G(r).25 E F0(,)A
 F1(while)4.254 E F0(,)A F1(until)4.254 E F0 4.254(,o)C(r)-4.254 E F1
-(select)4.254 E F0 4.253(loop. If)4.254 F F2(n)4.613 E F0 1.753
-(is speci\214ed,)4.493 F 1.208(resume at the)144 355.2 R F2(n)3.709 E F0
+(select)4.254 E F0 4.254(loop. If)4.254 F F2(n)4.614 E F0 1.754
+(is speci\214ed,)4.494 F 1.209(resume at the)144 355.2 R F2(n)3.709 E F0
 1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F3 10
 /Symbol SF<b3>3.709 E F0 3.709(1. If)3.709 F F2(n)4.069 E F0 1.209
-(is greater than the number of enclosing)3.949 F .514
+(is greater than the number of enclosing)3.949 F .513
 (loops, the last enclosing loop \(the `)144 367.2 R(`top-le)-.74 E -.15
-(ve)-.25 G(l').15 E 3.014('l)-.74 G .514(oop\) is resumed.)-3.014 F .513
-(The return v)5.513 F .513(alue is 0 unless)-.25 F F2(n)3.013 E F0(is)
-3.013 E(not greater than or equal to 1.)144 379.2 Q F1(declar)108 396 Q
+(ve)-.25 G(l').15 E 3.013('l)-.74 G .513(oop\) is resumed.)-3.013 F .514
+(The return v)5.514 F .514(alue is 0 unless)-.25 F F2(n)3.014 E F0(is)
+3.014 E(not greater than or equal to 1.)144 379.2 Q F1(declar)108 396 Q
 (e)-.18 E F0([)2.5 E F1(\255aAfFilrtux)A F0 2.5(][)C F1<ad70>-2.5 E F0
 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C(..])-2.5 E F1
 (typeset)108 408 Q F0([)2.5 E F1(\255aAfFilrtux)A F0 2.5(][)C F1<ad70>
 -2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C(..])
--2.5 E 1.264(Declare v)144 420 R 1.264(ariables and/or gi)-.25 F 1.564
--.15(ve t)-.25 H 1.264(hem attrib).15 F 3.765(utes. If)-.2 F(no)3.765 E
-F2(name)3.765 E F0 3.765(sa)C 1.265(re gi)-3.765 F -.15(ve)-.25 G 3.765
-(nt).15 G 1.265(hen display the v)-3.765 F 1.265(alues of)-.25 F -.25
-(va)144 432 S 3.483(riables. The).25 F F1<ad70>3.483 E F0 .983
-(option will display the attrib)3.483 F .983(utes and v)-.2 F .982
-(alues of each)-.25 F F2(name)3.482 E F0 5.982(.W).18 G(hen)-5.982 E F1
-<ad70>3.482 E F0 .982(is used)3.482 F(with)144 444 Q F2(name)3.579 E F0
-(ar)3.579 E 1.079(guments, additional options are ignored.)-.18 F(When)
+-2.5 E 1.265(Declare v)144 420 R 1.265(ariables and/or gi)-.25 F 1.565
+-.15(ve t)-.25 H 1.265(hem attrib).15 F 3.765(utes. If)-.2 F(no)3.765 E
+F2(name)3.765 E F0 3.765(sa)C 1.265(re gi)-3.765 F -.15(ve)-.25 G 3.764
+(nt).15 G 1.264(hen display the v)-3.764 F 1.264(alues of)-.25 F -.25
+(va)144 432 S 3.482(riables. The).25 F F1<ad70>3.482 E F0 .982
+(option will display the attrib)3.482 F .982(utes and v)-.2 F .983
+(alues of each)-.25 F F2(name)3.483 E F0 5.983(.W).18 G(hen)-5.983 E F1
+<ad70>3.483 E F0 .983(is used)3.483 F(with)144 444 Q F2(name)3.58 E F0
+(ar)3.58 E 1.079(guments, additional options are ignored.)-.18 F(When)
 6.079 E F1<ad70>3.579 E F0 1.079(is supplied without)3.579 F F2(name)
-3.58 E F0(ar)3.58 E(gu-)-.18 E .151(ments, it will display the attrib)
-144 456 R .151(utes and v)-.2 F .151(alues of all v)-.25 F .15
-(ariables ha)-.25 F .15(ving the attrib)-.2 F .15
-(utes speci\214ed by the)-.2 F .046(additional options.)144 468 R .046
-(If no other options are supplied with)5.046 F F1<ad70>2.547 E F0(,)A F1
-(declar)2.547 E(e)-.18 E F0 .047(will display the attrib)2.547 F .047
-(utes and)-.2 F -.25(va)144 480 S 1.363(lues of all shell v).25 F 3.863
-(ariables. The)-.25 F F1<ad66>3.863 E F0 1.362
-(option will restrict the display to shell functions.)3.863 F(The)6.362
-E F1<ad46>3.862 E F0 2.422(option inhibits the display of function de\
-\214nitions; only the function name and attrib)144 492 R 2.423(utes are)
--.2 F 2.664(printed. If)144 504 R(the)2.664 E F1(extdeb)2.664 E(ug)-.2 E
-F0 .164(shell option is enabled using)2.664 F F1(shopt)2.664 E F0 2.664
-(,t)C .163(he source \214le name and line number)-2.664 F 1.382
+3.579 E F0(ar)3.579 E(gu-)-.18 E .15(ments, it will display the attrib)
+144 456 R .15(utes and v)-.2 F .151(alues of all v)-.25 F .151
+(ariables ha)-.25 F .151(ving the attrib)-.2 F .151
+(utes speci\214ed by the)-.2 F .047(additional options.)144 468 R .047
+(If no other options are supplied with)5.047 F F1<ad70>2.547 E F0(,)A F1
+(declar)2.547 E(e)-.18 E F0 .046(will display the attrib)2.546 F .046
+(utes and)-.2 F -.25(va)144 480 S 1.362(lues of all shell v).25 F 3.862
+(ariables. The)-.25 F F1<ad66>3.862 E F0 1.363
+(option will restrict the display to shell functions.)3.862 F(The)6.363
+E F1<ad46>3.863 E F0 2.422(option inhibits the display of function de\
+\214nitions; only the function name and attrib)144 492 R 2.422(utes are)
+-.2 F 2.663(printed. If)144 504 R(the)2.663 E F1(extdeb)2.663 E(ug)-.2 E
+F0 .164(shell option is enabled using)2.663 F F1(shopt)2.664 E F0 2.664
+(,t)C .164(he source \214le name and line number)-2.664 F 1.382
 (where the function is de\214ned are displayed as well.)144 516 R(The)
 6.382 E F1<ad46>3.882 E F0 1.382(option implies)3.882 F F1<ad66>3.882 E
-F0 6.382(.T)C 1.382(he follo)-6.382 F(wing)-.25 E .794
+F0 6.382(.T)C 1.382(he follo)-6.382 F(wing)-.25 E .793
 (options can be used to restrict output to v)144 528 R .794
-(ariables with the speci\214ed attrib)-.25 F .793(ute or to gi)-.2 F
-1.093 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 540 Q(utes:)-.2 E F1
+(ariables with the speci\214ed attrib)-.25 F .794(ute or to gi)-.2 F
+1.094 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 540 Q(utes:)-.2 E F1
 <ad61>144 552 Q F0(Each)25.3 E F2(name)2.5 E F0(is an inde)2.5 E -.15
 (xe)-.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F1(Arrays)2.5
 E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1<ad41>144 564 Q F0(Each)23.08
 E F2(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v).15
 E(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).)
 .15 E F1<ad66>144 576 Q F0(Use function names only)26.97 E(.)-.65 E F1
-<ad69>144 588 Q F0 .557(The v)27.52 F .558
+<ad69>144 588 Q F0 .558(The v)27.52 F .558
 (ariable is treated as an inte)-.25 F .558(ger; arithmetic e)-.15 F -.25
-(va)-.25 G .558(luation \(see).25 F/F4 9/Times-Bold@0 SF .558
+(va)-.25 G .558(luation \(see).25 F/F4 9/Times-Bold@0 SF .557
 (ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION \))180 600 Q F0
 (is performed when the v)2.25 E(ariable is assigned a v)-.25 E(alue.)
--.25 E F1<ad6c>144 612 Q F0 .91(When the v)27.52 F .909
+-.25 E F1<ad6c>144 612 Q F0 .909(When the v)27.52 F .909
 (ariable is assigned a v)-.25 F .909(alue, all upper)-.25 F .909
-(-case characters are con)-.2 F -.15(ve)-.4 G .909(rted to lo).15 F(wer)
+(-case characters are con)-.2 F -.15(ve)-.4 G .91(rted to lo).15 F(wer)
 -.25 E(-)-.2 E 2.5(case. The)180 624 R(upper)2.5 E(-case attrib)-.2 E
 (ute is disabled.)-.2 E F1<ad72>144 636 Q F0(Mak)25.86 E(e)-.1 E F2
-(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E 7.546(.T)-.65 G 2.546
-(hese names cannot then be assigned v)-7.546 F 2.547
+(name)5.047 E F0 5.047(sr)C(eadonly)-5.047 E 7.547(.T)-.65 G 2.546
+(hese names cannot then be assigned v)-7.547 F 2.546
 (alues by subsequent)-.25 F(assignment statements or unset.)180 648 Q F1
-<ad74>144 660 Q F0(Gi)26.97 E .73 -.15(ve e)-.25 H(ach).15 E F2(name)
-2.93 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E 2.929
+<ad74>144 660 Q F0(Gi)26.97 E .729 -.15(ve e)-.25 H(ach).15 E F2(name)
+2.929 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E 2.929
 (ute. T)-.2 F .429(raced functions inherit the)-.35 F F1(DEB)2.929 E(UG)
--.1 E F0(and)2.929 E F1(RETURN)2.929 E F0(traps from the calling shell.)
+-.1 E F0(and)2.93 E F1(RETURN)2.93 E F0(traps from the calling shell.)
 180 672 Q(The trace attrib)5 E(ute has no special meaning for v)-.2 E
-(ariables.)-.25 E F1<ad75>144 684 Q F0 .909(When the v)24.74 F .909
+(ariables.)-.25 E F1<ad75>144 684 Q F0 .91(When the v)24.74 F .909
 (ariable is assigned a v)-.25 F .909(alue, all lo)-.25 F(wer)-.25 E .909
-(-case characters are con)-.2 F -.15(ve)-.4 G .91(rted to upper).15 F(-)
--.2 E 2.5(case. The)180 696 R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E
+(-case characters are con)-.2 F -.15(ve)-.4 G .909(rted to upper).15 F
+(-)-.2 E 2.5(case. The)180 696 R(lo)2.5 E(wer)-.25 E(-case attrib)-.2 E
 (ute is disabled.)-.2 E F1<ad78>144 708 Q F0(Mark)25.3 E F2(name)2.5 E
 F0 2.5(sf)C(or e)-2.5 E(xport to subsequent commands via the en)-.15 E
-(vironment.)-.4 E .121(Using `+' instead of `\255' turns of)144 724.8 R
-2.621(ft)-.25 G .121(he attrib)-2.621 F .121(ute instead, with the e)-.2
-F .12(xceptions that)-.15 F F1(+a)2.62 E F0 .12(may not be used)2.62 F
+(vironment.)-.4 E .12(Using `+' instead of `\255' turns of)144 724.8 R
+2.62(ft)-.25 G .12(he attrib)-2.62 F .121(ute instead, with the e)-.2 F
+.121(xceptions that)-.15 F F1(+a)2.621 E F0 .121(may not be used)2.621 F
 (GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(51)200.665 E 0 Cg EP
 %%Page: 52 52
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E 1.236(to destro)144 84 R 3.736(ya)-.1 G 3.737(na)-3.736 G 1.237
+-.35 E 1.237(to destro)144 84 R 3.737(ya)-.1 G 3.737(na)-3.737 G 1.237
 (rray v)-3.737 F 1.237(ariable and)-.25 F/F1 10/Times-Bold@0 SF 1.237
 (+r will not r)3.737 F(emo)-.18 E 1.437 -.1(ve t)-.1 H 1.237(he r).1 F
-1.237(eadonly attrib)-.18 F 3.737(ute. When)-.2 F 1.237(used in a)3.737
-F .312(function, mak)144 96 R .312(es each)-.1 F/F2 10/Times-Italic@0 SF
-(name)2.812 E F1 .311(local, as with the local)2.812 F F0 2.811
-(command. If)2.811 F 2.811(av)2.811 G .311(ariable name is follo)-3.061
-F .311(wed by)-.25 F(=)144 108 Q F2(value)A F0 3.238(,t)C .738(he v)
--3.238 F .738(alue of the v)-.25 F .738(ariable is set to)-.25 F F2
-(value)3.238 E F0 5.738(.T)C .738(he return v)-5.738 F .739
-(alue is 0 unless an in)-.25 F -.25(va)-.4 G .739(lid option is).25 F
+1.237(eadonly attrib)-.18 F 3.737(ute. When)-.2 F 1.236(used in a)3.737
+F .311(function, mak)144 96 R .311(es each)-.1 F/F2 10/Times-Italic@0 SF
+(name)2.811 E F1 .311(local, as with the local)2.811 F F0 2.811
+(command. If)2.811 F 2.811(av)2.811 G .312(ariable name is follo)-3.061
+F .312(wed by)-.25 F(=)144 108 Q F2(value)A F0 3.239(,t)C .739(he v)
+-3.239 F .739(alue of the v)-.25 F .739(ariable is set to)-.25 F F2
+(value)3.238 E F0 5.738(.T)C .738(he return v)-5.738 F .738
+(alue is 0 unless an in)-.25 F -.25(va)-.4 G .738(lid option is).25 F
 .603(encountered, an attempt is made to de\214ne a function using)144
 120 R/F3 10/Courier@0 SF .603(\255f foo=bar)3.103 F F0 3.103(,a)C 3.103
-(na)-3.103 G .603(ttempt is made to)-3.103 F 1.242(assign a v)144 132 R
-1.242(alue to a readonly v)-.25 F 1.242
-(ariable, an attempt is made to assign a v)-.25 F 1.243
+(na)-3.103 G .604(ttempt is made to)-3.103 F 1.243(assign a v)144 132 R
+1.243(alue to a readonly v)-.25 F 1.242
+(ariable, an attempt is made to assign a v)-.25 F 1.242
 (alue to an array v)-.25 F(ariable)-.25 E 1.386
 (without using the compound assignment syntax \(see)144 144 R F1(Arrays)
 3.886 E F0(abo)3.886 E -.15(ve)-.15 G 1.386(\), one of the).15 F F2
-(names)3.886 E F0 1.386(is not a)3.886 F -.25(va)144 156 S .171
+(names)3.886 E F0 1.386(is not a)3.886 F -.25(va)144 156 S .172
 (lid shell v).25 F .171(ariable name, an attempt is made to turn of)-.25
-F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .172
+F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .171
 (ariable, an)-.25 F .96(attempt is made to turn of)144 168 R 3.46(fa)
 -.25 G .96(rray status for an array v)-3.46 F .96
 (ariable, or an attempt is made to display a)-.25 F(non-e)144 180 Q
 (xistent function with)-.15 E F1<ad66>2.5 E F0(.)A F1(dirs [+)108 196.8
 Q F2(n)A F1 2.5(][)C<ad>-2.5 E F2(n)A F1 2.5(][)C(\255cplv])-2.5 E F0
--.4(Wi)144 208.8 S .328
+-.4(Wi)144 208.8 S .329
 (thout options, displays the list of currently remembered directories.)
-.4 F .329(The def)5.329 F .329(ault display is on a)-.1 F 1.238
+.4 F .328(The def)5.328 F .328(ault display is on a)-.1 F 1.238
 (single line with directory names separated by spaces.)144 220.8 R 1.238
 (Directories are added to the list with the)6.238 F F1(pushd)144 232.8 Q
 F0(command; the)2.5 E F1(popd)2.5 E F0(command remo)2.5 E -.15(ve)-.15 G
 2.5(se).15 G(ntries from the list.)-2.5 E F1(+)144 244.8 Q F2(n)A F0
-1.564(Displays the)25.3 F F2(n)4.064 E F0 1.565
-(th entry counting from the left of the list sho)B 1.565(wn by)-.25 F F1
-(dirs)4.065 E F0 1.565(when in)4.065 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E
+1.565(Displays the)25.3 F F2(n)4.065 E F0 1.565
+(th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F1
+(dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E
 (without options, starting with zero.)180 256.8 Q F1<ad>144 268.8 Q F2
 (n)A F0 1.194(Displays the)25.3 F F2(n)3.694 E F0 1.194
 (th entry counting from the right of the list sho)B 1.194(wn by)-.25 F
@@ -6097,9 +6100,9 @@ F1(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E
 .324(ault listing format uses a tilde to denote the home direc-)-.1 F
 (tory)180 316.8 Q(.)-.65 E F1<ad70>144 328.8 Q F0
 (Print the directory stack with one entry per line.)24.74 E F1<ad76>144
-340.8 Q F0 .273(Print the directory stack with one entry per line, pre\
-\214xing each entry with its inde)25.3 F 2.772(xi)-.15 G 2.772(nt)-2.772
-G(he)-2.772 E(stack.)180 352.8 Q .257(The return v)144 369.6 R .258
+340.8 Q F0 .272(Print the directory stack with one entry per line, pre\
+\214xing each entry with its inde)25.3 F 2.773(xi)-.15 G 2.773(nt)-2.773
+G(he)-2.773 E(stack.)180 352.8 Q .258(The return v)144 369.6 R .258
 (alue is 0 unless an in)-.25 F -.25(va)-.4 G .258
 (lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe)
 -.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-)
@@ -6108,47 +6111,46 @@ G(he)-2.772 E(stack.)180 352.8 Q .257(The return v)144 369.6 R .258
 (...])2.5 E -.4(Wi)144 410.4 S .295(thout options, each).4 F F2(jobspec)
 4.535 E F0 .295(is remo)3.105 F -.15(ve)-.15 G 2.795(df).15 G .295
 (rom the table of acti)-2.795 F .595 -.15(ve j)-.25 H 2.795(obs. If).15
-F F2(jobspec)4.535 E F0 .295(is not present,)3.105 F .243(and neither)
-144 422.4 R F1 .243(\255a nor \255r is supplied, the shell')2.743 F
+F F2(jobspec)4.535 E F0 .295(is not present,)3.105 F .244(and neither)
+144 422.4 R F1 .243(\255a nor \255r is supplied, the shell')2.744 F
 2.743(sn)-.37 G .243(otion of the)-2.743 F F2(curr)2.743 E .243(ent job)
--.37 F F1 .243(is used.)2.743 F .244(If the \255h option)5.243 F .334
-(is gi)144 434.4 R -.1(ve)-.1 G .334(n, each).1 F F2(jobspec)4.574 E F0
+-.37 F F1 .243(is used.)2.743 F .243(If the \255h option)5.243 F .333
+(is gi)144 434.4 R -.1(ve)-.1 G .333(n, each).1 F F2(jobspec)4.574 E F0
 .334(is not remo)3.144 F -.15(ve)-.15 G 2.834(df).15 G .334
 (rom the table, b)-2.834 F .334(ut is mark)-.2 F .334(ed so that)-.1 F
-/F4 9/Times-Bold@0 SF(SIGHUP)2.834 E F0 .333(is not sent to)2.584 F
-1.189(the job if the shell recei)144 446.4 R -.15(ve)-.25 G 3.689(sa).15
-G F4(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 1.189(If no)5.689 F F2
-(jobspec)5.429 E F0 1.189(is present, and neither the)3.999 F F1<ad61>
-3.689 E F0 1.19(nor the)3.69 F F1<ad72>3.69 E F0 1.57
-(option is supplied, the)144 458.4 R F2(curr)4.07 E 1.57(ent job)-.37 F
-F0 1.57(is used.)4.07 F 1.569(If no)6.569 F F2(jobspec)5.809 E F0 1.569
-(is supplied, the)4.379 F F1<ad61>4.069 E F0 1.569(option means to)4.069
-F(remo)144 470.4 Q .903 -.15(ve o)-.15 H 3.103(rm).15 G .603
-(ark all jobs; the)-3.103 F F1<ad72>3.103 E F0 .603(option without a)
-3.103 F F2(jobspec)4.843 E F0(ar)3.414 E .604
-(gument restricts operation to running)-.18 F 2.5(jobs. The)144 482.4 R
-(return v)2.5 E(alue is 0 unless a)-.25 E F2(jobspec)4.24 E F0
+/F4 9/Times-Bold@0 SF(SIGHUP)2.834 E F0 .334(is not sent to)2.584 F 1.19
+(the job if the shell recei)144 446.4 R -.15(ve)-.25 G 3.689(sa).15 G F4
+(SIGHUP)A/F5 9/Times-Roman@0 SF(.)A F0 1.189(If no)5.689 F F2(jobspec)
+5.429 E F0 1.189(is present, and neither the)3.999 F F1<ad61>3.689 E F0
+1.189(nor the)3.689 F F1<ad72>3.689 E F0 1.569(option is supplied, the)
+144 458.4 R F2(curr)4.069 E 1.569(ent job)-.37 F F0 1.569(is used.)4.069
+F 1.569(If no)6.569 F F2(jobspec)5.809 E F0 1.57(is supplied, the)4.38 F
+F1<ad61>4.07 E F0 1.57(option means to)4.07 F(remo)144 470.4 Q .904 -.15
+(ve o)-.15 H 3.104(rm).15 G .604(ark all jobs; the)-3.104 F F1<ad72>
+3.103 E F0 .603(option without a)3.103 F F2(jobspec)4.843 E F0(ar)3.413
+E .603(gument restricts operation to running)-.18 F 2.5(jobs. The)144
+482.4 R(return v)2.5 E(alue is 0 unless a)-.25 E F2(jobspec)4.24 E F0
 (does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E F1(echo)108 499.2 Q
 F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E
-.395(Output the)144 511.2 R F2(ar)2.895 E(g)-.37 E F0 .395
+.394(Output the)144 511.2 R F2(ar)2.894 E(g)-.37 E F0 .394
 (s, separated by spaces, follo)B .395(wed by a ne)-.25 F 2.895
-(wline. The)-.25 F .394(return status is al)2.895 F -.1(wa)-.1 G .394
-(ys 0.).1 F(If)5.394 E F1<ad6e>2.894 E F0 .548
+(wline. The)-.25 F .395(return status is al)2.895 F -.1(wa)-.1 G .395
+(ys 0.).1 F(If)5.395 E F1<ad6e>2.895 E F0 .549
 (is speci\214ed, the trailing ne)144 523.2 R .548(wline is suppressed.)
 -.25 F .548(If the)5.548 F F1<ad65>3.048 E F0 .548(option is gi)3.048 F
 -.15(ve)-.25 G .548(n, interpretation of the fol-).15 F(lo)144 535.2 Q
-.053(wing backslash-escaped characters is enabled.)-.25 F(The)5.053 E F1
-<ad45>2.553 E F0 .052(option disables the interpretation of these)2.552
-F 1.502(escape characters, e)144 547.2 R -.15(ve)-.25 G 4.002(no).15 G
-4.002(ns)-4.002 G 1.502(ystems where the)-4.002 F 4.002(ya)-.15 G 1.502
-(re interpreted by def)-4.002 F 4.003(ault. The)-.1 F F1(xpg_echo)4.003
-E F0(shell)4.003 E .009
+.052(wing backslash-escaped characters is enabled.)-.25 F(The)5.052 E F1
+<ad45>2.552 E F0 .053(option disables the interpretation of these)2.553
+F 1.503(escape characters, e)144 547.2 R -.15(ve)-.25 G 4.003(no).15 G
+4.003(ns)-4.003 G 1.502(ystems where the)-4.003 F 4.002(ya)-.15 G 1.502
+(re interpreted by def)-4.002 F 4.002(ault. The)-.1 F F1(xpg_echo)4.002
+E F0(shell)4.002 E .009
 (option may be used to dynamically determine whether or not)144 559.2 R
-F1(echo)2.509 E F0 -.15(ex)2.509 G .009(pands these escape characters)
-.15 F .659(by def)144 571.2 R(ault.)-.1 E F1(echo)5.659 E F0 .659
-(does not interpret)3.159 F F1<adad>3.159 E F0 .659
-(to mean the end of options.)3.159 F F1(echo)5.66 E F0 .66
-(interprets the follo)3.16 F(wing)-.25 E(escape sequences:)144 583.2 Q
+F1(echo)2.509 E F0 -.15(ex)2.51 G .01(pands these escape characters).15
+F .66(by def)144 571.2 R(ault.)-.1 E F1(echo)5.66 E F0 .66
+(does not interpret)3.16 F F1<adad>3.16 E F0 .659
+(to mean the end of options.)3.159 F F1(echo)5.659 E F0 .659
+(interprets the follo)3.159 F(wing)-.25 E(escape sequences:)144 583.2 Q
 F1(\\a)144 595.2 Q F0(alert \(bell\))28.22 E F1(\\b)144 607.2 Q F0
 (backspace)27.66 E F1(\\c)144 619.2 Q F0(suppress trailing ne)28.78 E
 (wline)-.25 E F1(\\e)144 631.2 Q F0(an escape character)28.78 E F1(\\f)
@@ -6170,129 +6172,130 @@ F0(the eight-bit character whose v)13.78 E(alue is the he)-.25 E
 (xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0(\(one or tw)2.5 E 2.5(oh)
 -.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1(enable)108 100.8 Q F0([)2.5 E
 F1<ad61>A F0 2.5(][)C F1(\255dnps)-2.5 E F0 2.5(][)C F1<ad66>-2.5 E F2
-(\214lename)2.5 E F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .278
+(\214lename)2.5 E F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .277
 (Enable and disable b)144 112.8 R .278(uiltin shell commands.)-.2 F .278
 (Disabling a b)5.278 F .278(uiltin allo)-.2 F .278
-(ws a disk command which has)-.25 F .833(the same name as a shell b)144
+(ws a disk command which has)-.25 F .834(the same name as a shell b)144
 124.8 R .834(uiltin to be e)-.2 F -.15(xe)-.15 G .834
-(cuted without specifying a full pathname, e).15 F -.15(ve)-.25 G 3.334
-(nt).15 G(hough)-3.334 E .99(the shell normally searches for b)144 136.8
-R .989(uiltins before disk commands.)-.2 F(If)5.989 E F1<ad6e>3.489 E F0
-.989(is used, each)3.489 F F2(name)3.489 E F0 .989(is dis-)3.489 F 1.581
-(abled; otherwise,)144 148.8 R F2(names)4.082 E F0 1.582(are enabled.)
-4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582(xample, to use the)-4.232 F
-F1(test)4.082 E F0 1.582(binary found via the)4.082 F/F3 9/Times-Bold@0
-SF -.666(PA)4.082 G(TH)-.189 E F0 .081(instead of the shell b)144 160.8
-R .081(uiltin v)-.2 F .081(ersion, run)-.15 F/F4 10/Courier@0 SF .081
-(enable -n test)2.581 F F0 5.081(.T)C(he)-5.081 E F1<ad66>2.58 E F0 .08
-(option means to load the ne)2.58 F(w)-.25 E -.2(bu)144 172.8 S 1.524
-(iltin command).2 F F2(name)4.384 E F0 1.524(from shared object)4.204 F
+(cuted without specifying a full pathname, e).15 F -.15(ve)-.25 G 3.333
+(nt).15 G(hough)-3.333 E .989(the shell normally searches for b)144
+136.8 R .989(uiltins before disk commands.)-.2 F(If)5.989 E F1<ad6e>
+3.489 E F0 .99(is used, each)3.49 F F2(name)3.49 E F0 .99(is dis-)3.49 F
+1.582(abled; otherwise,)144 148.8 R F2(names)4.082 E F0 1.582
+(are enabled.)4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582
+(xample, to use the)-4.232 F F1(test)4.082 E F0 1.582
+(binary found via the)4.082 F/F3 9/Times-Bold@0 SF -.666(PA)4.081 G(TH)
+-.189 E F0 .08(instead of the shell b)144 160.8 R .08(uiltin v)-.2 F .08
+(ersion, run)-.15 F/F4 10/Courier@0 SF .081(enable -n test)2.58 F F0
+5.081(.T)C(he)-5.081 E F1<ad66>2.581 E F0 .081
+(option means to load the ne)2.581 F(w)-.25 E -.2(bu)144 172.8 S 1.525
+(iltin command).2 F F2(name)4.385 E F0 1.524(from shared object)4.204 F
 F2(\214lename)4.024 E F0 4.024(,o).18 G 4.024(ns)-4.024 G 1.524
 (ystems that support dynamic loading.)-4.024 F(The)144 184.8 Q F1<ad64>
-2.867 E F0 .367(option will delete a b)2.867 F .367(uiltin pre)-.2 F
-.367(viously loaded with)-.25 F F1<ad66>2.866 E F0 5.366(.I)C 2.866(fn)
--5.366 G(o)-2.866 E F2(name)2.866 E F0(ar)2.866 E .366(guments are gi)
--.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 196.8 R F1<ad70>
-2.898 E F0 .399(option is supplied, a list of shell b)2.899 F .399
+2.866 E F0 .366(option will delete a b)2.866 F .366(uiltin pre)-.2 F
+.366(viously loaded with)-.25 F F1<ad66>2.867 E F0 5.367(.I)C 2.867(fn)
+-5.367 G(o)-2.867 E F2(name)2.867 E F0(ar)2.867 E .367(guments are gi)
+-.18 F -.15(ve)-.25 G .367(n, or).15 F .399(if the)144 196.8 R F1<ad70>
+2.899 E F0 .399(option is supplied, a list of shell b)2.899 F .399
 (uiltins is printed.)-.2 F -.4(Wi)5.399 G .399(th no other option ar).4
-F .399(guments, the)-.18 F .099(list consists of all enabled shell b)144
+F .398(guments, the)-.18 F .098(list consists of all enabled shell b)144
 208.8 R 2.598(uiltins. If)-.2 F F1<ad6e>2.598 E F0 .098
-(is supplied, only disabled b)2.598 F .098(uiltins are printed.)-.2 F
-(If)5.098 E F1<ad61>2.598 E F0 1.916
+(is supplied, only disabled b)2.598 F .099(uiltins are printed.)-.2 F
+(If)5.099 E F1<ad61>2.599 E F0 1.917
 (is supplied, the list printed includes all b)144 220.8 R 1.916
-(uiltins, with an indication of whether or not each is)-.2 F 2.879
-(enabled. If)144 232.8 R F1<ad73>2.879 E F0 .379
-(is supplied, the output is restricted to the POSIX)2.879 F F2(special)
-2.879 E F0 -.2(bu)2.878 G 2.878(iltins. The).2 F .378(return v)2.878 F
-(alue)-.25 E .994(is 0 unless a)144 244.8 R F2(name)3.854 E F0 .994
-(is not a shell b)3.674 F .994(uiltin or there is an error loading a ne)
--.2 F 3.495(wb)-.25 G .995(uiltin from a shared)-3.695 F(object.)144
+(uiltins, with an indication of whether or not each is)-.2 F 2.878
+(enabled. If)144 232.8 R F1<ad73>2.878 E F0 .379
+(is supplied, the output is restricted to the POSIX)2.878 F F2(special)
+2.879 E F0 -.2(bu)2.879 G 2.879(iltins. The).2 F .379(return v)2.879 F
+(alue)-.25 E .995(is 0 unless a)144 244.8 R F2(name)3.855 E F0 .994
+(is not a shell b)3.675 F .994(uiltin or there is an error loading a ne)
+-.2 F 3.494(wb)-.25 G .994(uiltin from a shared)-3.694 F(object.)144
 256.8 Q F1 -2.3 -.15(ev a)108 273.6 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37
-E F0(...])2.5 E(The)144 285.6 Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)C
-.671(re read and concatenated together into a single command.)-3.171 F
-.67(This command is then read)5.67 F .495(and e)144 297.6 R -.15(xe)-.15
-.495(cuted by the shell, and its e).15 F .495
+E F0(...])2.5 E(The)144 285.6 Q F2(ar)3.17 E(g)-.37 E F0 3.17(sa)C .671
+(re read and concatenated together into a single command.)-3.17 F .671
+(This command is then read)5.671 F .495(and e)144 297.6 R -.15(xe)-.15 G
+.495(cuted by the shell, and its e).15 F .495
 (xit status is returned as the v)-.15 F .495(alue of)-.25 F F1 -2.3 -.15
 (ev a)2.995 H(l).15 E F0 5.495(.I)C 2.995(ft)-5.495 G .495(here are no)
 -2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 309.6 Q
 (guments,)-.18 E F1 -2.3 -.15(ev a)2.5 H(l).15 E F0(returns 0.)2.5 E F1
 (exec)108 326.4 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1<ad61>-2.5 E F2
 (name)2.5 E F0 2.5(][)C F2(command)-2.5 E F0([)2.5 E F2(ar)A(guments)
--.37 E F0(]])A(If)144 338.4 Q F2(command)3.006 E F0 .306
-(is speci\214ed, it replaces the shell.)3.576 F .305(No ne)5.305 F 2.805
-(wp)-.25 G .305(rocess is created.)-2.805 F(The)5.305 E F2(ar)3.135 E
-(guments)-.37 E F0(become)3.075 E .176(the ar)144 350.4 R .176
+-.37 E F0(]])A(If)144 338.4 Q F2(command)3.005 E F0 .305
+(is speci\214ed, it replaces the shell.)3.575 F .305(No ne)5.305 F 2.805
+(wp)-.25 G .306(rocess is created.)-2.805 F(The)5.306 E F2(ar)3.136 E
+(guments)-.37 E F0(become)3.076 E .177(the ar)144 350.4 R .177
 (guments to)-.18 F F2(command)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G
 (he)-2.676 E F1<ad6c>2.676 E F0 .176
-(option is supplied, the shell places a dash at the be)2.676 F .177
-(ginning of)-.15 F .5(the zeroth ar)144 362.4 R .5(gument passed to)-.18
-F F2(command)3 E F0 5.499(.T).77 G .499(his is what)-5.499 F F2(lo)2.999
-E(gin)-.1 E F0 .499(\(1\) does.).24 F(The)5.499 E F1<ad63>2.999 E F0
-.499(option causes)2.999 F F2(com-)3.199 E(mand)144 374.4 Q F0 .638
-(to be e)3.908 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138
+(option is supplied, the shell places a dash at the be)2.676 F .176
+(ginning of)-.15 F .499(the zeroth ar)144 362.4 R .499(gument passed to)
+-.18 F F2(command)2.999 E F0 5.499(.T).77 G .499(his is what)-5.499 F F2
+(lo)2.999 E(gin)-.1 E F0 .499(\(1\) does.).24 F(The)5.5 E F1<ad63>3 E F0
+.5(option causes)3 F F2(com-)3.2 E(mand)144 374.4 Q F0 .639(to be e)
+3.909 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138
 (vironment. If)-.4 F F1<ad61>3.138 E F0 .638
-(is supplied, the shell passes)3.138 F F2(name)3.499 E F0 .639(as the)
-3.319 F 1.078(zeroth ar)144 386.4 R 1.077(gument to the e)-.18 F -.15
+(is supplied, the shell passes)3.138 F F2(name)3.498 E F0 .638(as the)
+3.318 F 1.077(zeroth ar)144 386.4 R 1.077(gument to the e)-.18 F -.15
 (xe)-.15 G 1.077(cuted command.).15 F(If)6.077 E F2(command)3.777 E F0
 1.077(cannot be e)4.347 F -.15(xe)-.15 G 1.077(cuted for some reason, a)
-.15 F(non-interacti)144 398.4 Q .617 -.15(ve s)-.25 H .317(hell e).15 F
-.317(xits, unless the shell option)-.15 F F1(execfail)2.817 E F0 .318
+.15 F(non-interacti)144 398.4 Q .618 -.15(ve s)-.25 H .318(hell e).15 F
+.318(xits, unless the shell option)-.15 F F1(execfail)2.817 E F0 .317
 (is enabled, in which case it returns f)2.817 F(ail-)-.1 E 2.505
 (ure. An)144 410.4 R(interacti)2.505 E .305 -.15(ve s)-.25 H .005
 (hell returns f).15 F .005(ailure if the \214le cannot be e)-.1 F -.15
 (xe)-.15 G 2.505(cuted. If).15 F F2(command)2.705 E F0 .005
-(is not speci\214ed,)3.275 F(an)144 422.4 Q 3.036(yr)-.15 G .536
-(edirections tak)-3.036 F 3.036(ee)-.1 G -.25(ff)-3.036 G .536
+(is not speci\214ed,)3.275 F(an)144 422.4 Q 3.037(yr)-.15 G .537
+(edirections tak)-3.037 F 3.036(ee)-.1 G -.25(ff)-3.036 G .536
 (ect in the current shell, and the return status is 0.).25 F .536
 (If there is a redirection)5.536 F(error)144 434.4 Q 2.5(,t)-.4 G
 (he return status is 1.)-2.5 E F1(exit)108 451.2 Q F0([)2.5 E F2(n)A F0
-6.29(]C)C .096(ause the shell to e)-6.29 F .096(xit with a status of)
--.15 F F2(n)2.596 E F0 5.096(.I)C(f)-5.096 E F2(n)2.955 E F0 .095
-(is omitted, the e)2.835 F .095(xit status is that of the last command)
+6.29(]C)C .095(ause the shell to e)-6.29 F .095(xit with a status of)
+-.15 F F2(n)2.595 E F0 5.095(.I)C(f)-5.095 E F2(n)2.955 E F0 .096
+(is omitted, the e)2.835 F .096(xit status is that of the last command)
 -.15 F -.15(exe)144 463.2 S 2.5(cuted. A).15 F(trap on)2.5 E F3(EXIT)2.5
 E F0(is e)2.25 E -.15(xe)-.15 G(cuted before the shell terminates.).15 E
 F1(export)108 480 Q F0([)2.5 E F1(\255fn)A F0 2.5(][).833 G F2(name)-2.5
 E F0([=)A F2(wor)A(d)-.37 E F0(]] ...)A F1(export \255p)108 492 Q F0
-.256(The supplied)144 504 R F2(names)3.117 E F0 .257(are mark)3.027 F
+.257(The supplied)144 504 R F2(names)3.117 E F0 .257(are mark)3.027 F
 .257(ed for automatic e)-.1 F .257(xport to the en)-.15 F .257
-(vironment of subsequently e)-.4 F -.15(xe)-.15 G(cuted).15 E 2.627
-(commands. If)144 516 R(the)2.627 E F1<ad66>2.627 E F0 .127
+(vironment of subsequently e)-.4 F -.15(xe)-.15 G(cuted).15 E 2.626
+(commands. If)144 516 R(the)2.626 E F1<ad66>2.626 E F0 .127
 (option is gi)2.627 F -.15(ve)-.25 G .127(n, the).15 F F2(names)2.987 E
 F0 .127(refer to functions.)2.897 F .127(If no)5.127 F F2(names)2.987 E
-F0 .127(are gi)2.897 F -.15(ve)-.25 G .126(n, or if the).15 F F1<ad70>
-144 528 Q F0 .659(option is supplied, a list of all names that are e)
-3.159 F .66(xported in this shell is printed.)-.15 F(The)5.66 E F1<ad6e>
-3.16 E F0(option)3.16 E 1.587(causes the e)144 540 R 1.587
+F0 .127(are gi)2.897 F -.15(ve)-.25 G .127(n, or if the).15 F F1<ad70>
+144 528 Q F0 .66(option is supplied, a list of all names that are e)3.16
+F .659(xported in this shell is printed.)-.15 F(The)5.659 E F1<ad6e>
+3.159 E F0(option)3.159 E 1.586(causes the e)144 540 R 1.586
 (xport property to be remo)-.15 F -.15(ve)-.15 G 4.086(df).15 G 1.586
 (rom each)-4.086 F F2(name)4.086 E F0 6.586(.I)C 4.086(fav)-6.586 G
-1.586(ariable name is follo)-4.336 F 1.586(wed by)-.25 F(=)144 552 Q F2
-(wor)A(d)-.37 E F0 2.803(,t)C .303(he v)-2.803 F .303(alue of the v)-.25
+1.587(ariable name is follo)-4.336 F 1.587(wed by)-.25 F(=)144 552 Q F2
+(wor)A(d)-.37 E F0 2.804(,t)C .304(he v)-2.804 F .304(alue of the v)-.25
 F .304(ariable is set to)-.25 F F2(wor)2.804 E(d)-.37 E F0(.)A F1
-(export)5.304 E F0 .304(returns an e)2.804 F .304
-(xit status of 0 unless an in)-.15 F -.25(va)-.4 G(lid).25 E .294
+(export)5.304 E F0 .304(returns an e)2.804 F .303
+(xit status of 0 unless an in)-.15 F -.25(va)-.4 G(lid).25 E .293
 (option is encountered, one of the)144 564 R F2(names)2.793 E F0 .293
 (is not a v)2.793 F .293(alid shell v)-.25 F .293(ariable name, or)-.25
-F F1<ad66>2.793 E F0 .293(is supplied with a)2.793 F F2(name)144.36 576
+F F1<ad66>2.793 E F0 .294(is supplied with a)2.793 F F2(name)144.36 576
 Q F0(that is not a function.)2.68 E F1(fc)108 592.8 Q F0([)2.5 E F1
 <ad65>A F2(ename)2.5 E F0 2.5(][)C F1(\255lnr)-2.5 E F0 2.5(][)C F2
 <8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)-2.5 E F0(])A F1(fc \255s)108
 604.8 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37 E F0 2.5(][)C F2
-(cmd)-2.5 E F0(])A .477(Fix Command.)144 616.8 R .478
-(In the \214rst form, a range of commands from)5.477 F F2<8c72>4.888 E
-(st)-.1 E F0(to)3.658 E F2(last)3.068 E F0 .478
-(is selected from the his-)3.658 F .882(tory list.)144 628.8 R F2 -.45
-(Fi)5.882 G -.1(rs).45 G(t).1 E F0(and)4.062 E F2(last)3.472 E F0 .882
+(cmd)-2.5 E F0(])A .478(Fix Command.)144 616.8 R .478
+(In the \214rst form, a range of commands from)5.478 F F2<8c72>4.888 E
+(st)-.1 E F0(to)3.658 E F2(last)3.068 E F0 .477
+(is selected from the his-)3.658 F .881(tory list.)144 628.8 R F2 -.45
+(Fi)5.881 G -.1(rs).45 G(t).1 E F0(and)4.061 E F2(last)3.471 E F0 .882
 (may be speci\214ed as a string \(to locate the last command be)4.062 F
-.881(ginning with)-.15 F .797(that string\) or as a number \(an inde)144
+.882(ginning with)-.15 F .797(that string\) or as a number \(an inde)144
 640.8 R 3.297(xi)-.15 G .797(nto the history list, where a ne)-3.297 F
--.05(ga)-.15 G(ti).05 E 1.097 -.15(ve n)-.25 H .797(umber is used as an)
-.15 F(of)144 652.8 Q .277(fset from the current command number\).)-.25 F
-(If)5.277 E F2(last)2.867 E F0 .276
-(is not speci\214ed it is set to the current command)3.457 F .092
+-.05(ga)-.15 G(ti).05 E 1.097 -.15(ve n)-.25 H .796(umber is used as an)
+.15 F(of)144 652.8 Q .276(fset from the current command number\).)-.25 F
+(If)5.276 E F2(last)2.866 E F0 .277
+(is not speci\214ed it is set to the current command)3.456 F .093
 (for listing \(so that)144 664.8 R F4 .092(fc \255l \25510)2.592 F F0
 .092(prints the last 10 commands\) and to)2.592 F F2<8c72>4.502 E(st)-.1
-E F0 2.592(otherwise. If)3.272 F F2<8c72>4.502 E(st)-.1 E F0 .093
-(is not)3.273 F(speci\214ed it is set to the pre)144 676.8 Q
+E F0 2.592(otherwise. If)3.272 F F2<8c72>4.502 E(st)-.1 E F0 .092
+(is not)3.272 F(speci\214ed it is set to the pre)144 676.8 Q
 (vious command for editing and \25516 for listing.)-.25 E(The)144 700.8
 Q F1<ad6e>2.522 E F0 .022
 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E
@@ -6300,10 +6303,10 @@ F1<ad72>2.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022
 (rses the order of).15 F .438(the commands.)144 712.8 R .438(If the)
 5.438 F F1<ad6c>2.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438
 (n, the commands are listed on standard output.).15 F(Otherwise,)5.438 E
-.335(the editor gi)144 724.8 R -.15(ve)-.25 G 2.835(nb).15 G(y)-2.835 E
-F2(ename)3.025 E F0 .335(is in)3.015 F -.2(vo)-.4 G -.1(ke).2 G 2.835
+.334(the editor gi)144 724.8 R -.15(ve)-.25 G 2.834(nb).15 G(y)-2.834 E
+F2(ename)3.024 E F0 .335(is in)3.014 F -.2(vo)-.4 G -.1(ke).2 G 2.835
 (do).1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835
-F(If)5.334 E F2(ename)3.024 E F0 .334(is not gi)3.014 F -.15(ve)-.25 G
+F(If)5.335 E F2(ename)3.025 E F0 .335(is not gi)3.015 F -.15(ve)-.25 G
 (n,).15 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(53)200.665 E 0 Cg
 EP
 %%Page: 54 54
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E .63(the v)144 84 R .63(alue of the)-.25 F/F1 9/Times-Bold@0 SF
-(FCEDIT)3.13 E F0 -.25(va)2.88 G .631(riable is used, and the v).25 F
+-.35 E .631(the v)144 84 R .631(alue of the)-.25 F/F1 9/Times-Bold@0 SF
+(FCEDIT)3.131 E F0 -.25(va)2.881 G .631(riable is used, and the v).25 F
 .631(alue of)-.25 F F1(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F1(FCEDIT)
-3.131 E F0 .631(is not set.)2.881 F .631(If nei-)5.631 F .951(ther v)144
-96 R .951(ariable is set,)-.25 F/F2 10/Times-Italic@0 SF(vi)5.117 E F0
-.951(is used.)5.117 F .95
-(When editing is complete, the edited commands are echoed and)5.951 F
--.15(exe)144 108 S(cuted.).15 E .039(In the second form,)144 132 R F2
-(command)2.539 E F0 .039(is re-e)2.539 F -.15(xe)-.15 G .039
-(cuted after each instance of).15 F F2(pat)2.54 E F0 .04(is replaced by)
-2.54 F F2 -.37(re)2.54 G(p).37 E F0 5.04(.A)C(useful)-2.5 E .406
-(alias to use with this is)144 144 R/F3 10/Courier@0 SF .406
+3.13 E F0 .63(is not set.)2.88 F .63(If nei-)5.63 F .95(ther v)144 96 R
+.95(ariable is set,)-.25 F/F2 10/Times-Italic@0 SF(vi)5.116 E F0 .95
+(is used.)5.116 F .951
+(When editing is complete, the edited commands are echoed and)5.95 F
+-.15(exe)144 108 S(cuted.).15 E .04(In the second form,)144 132 R F2
+(command)2.54 E F0 .04(is re-e)2.54 F -.15(xe)-.15 G .039
+(cuted after each instance of).15 F F2(pat)2.539 E F0 .039
+(is replaced by)2.539 F F2 -.37(re)2.539 G(p).37 E F0 5.039(.A)C(useful)
+-2.5 E .406(alias to use with this is)144 144 R/F3 10/Courier@0 SF .406
 (r='fc \255s')2.906 F F0 2.906(,s)C 2.906(ot)-2.906 G .406(hat typing)
 -2.906 F F3 6.406(rc)2.906 G(c)-6.406 E F0 .406
-(runs the last command be)2.906 F .406(ginning with)-.15 F F3(cc)144 156
+(runs the last command be)2.906 F .407(ginning with)-.15 F F3(cc)144 156
 Q F0(and typing)2.5 E F3(r)2.5 E F0(re-e)2.5 E -.15(xe)-.15 G
 (cutes the last command.).15 E .142
 (If the \214rst form is used, the return v)144 180 R .142
 (alue is 0 unless an in)-.25 F -.25(va)-.4 G .142
 (lid option is encountered or).25 F F2<8c72>4.552 E(st)-.1 E F0(or)3.322
-E F2(last)2.732 E F0 .455(specify history lines out of range.)144 192 R
+E F2(last)2.732 E F0 .454(specify history lines out of range.)144 192 R
 .454(If the)5.454 F/F4 10/Times-Bold@0 SF<ad65>2.954 E F0 .454
-(option is supplied, the return v)2.954 F .454(alue is the v)-.25 F .454
-(alue of the)-.25 F .787(last command e)144 204 R -.15(xe)-.15 G .787
-(cuted or f).15 F .788
+(option is supplied, the return v)2.954 F .455(alue is the v)-.25 F .455
+(alue of the)-.25 F .788(last command e)144 204 R -.15(xe)-.15 G .788
+(cuted or f).15 F .787
 (ailure if an error occurs with the temporary \214le of commands.)-.1 F
-.788(If the)5.788 F 1.136
+.787(If the)5.787 F 1.135
 (second form is used, the return status is that of the command re-e)144
-216 R -.15(xe)-.15 G 1.135(cuted, unless).15 F F2(cmd)3.835 E F0 1.135
-(does not)4.405 F(specify a v)144 228 Q
+216 R -.15(xe)-.15 G 1.136(cuted, unless).15 F F2(cmd)3.836 E F0 1.136
+(does not)4.406 F(specify a v)144 228 Q
 (alid history line, in which case)-.25 E F4(fc)2.5 E F0(returns f)2.5 E
 (ailure.)-.1 E F4(fg)108 244.8 Q F0([)2.5 E F2(jobspec)A F0(])A(Resume)
-144 256.8 Q F2(jobspec)5.653 E F0 1.413(in the fore)4.223 F 1.413
+144 256.8 Q F2(jobspec)5.654 E F0 1.413(in the fore)4.224 F 1.413
 (ground, and mak)-.15 F 3.913(ei)-.1 G 3.913(tt)-3.913 G 1.413
 (he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F2(jobspec)5.653 E F0
-1.414(is not present, the)4.223 F(shell')144 268.8 Q 3.117(sn)-.55 G
-.617(otion of the)-3.117 F F2(curr)3.117 E .617(ent job)-.37 F F0 .617
-(is used.)3.117 F .617(The return v)5.617 F .616
+1.413(is not present, the)4.223 F(shell')144 268.8 Q 3.116(sn)-.55 G
+.616(otion of the)-3.116 F F2(curr)3.116 E .616(ent job)-.37 F F0 .617
+(is used.)3.116 F .617(The return v)5.617 F .617
 (alue is that of the command placed into the)-.25 F(fore)144 280.8 Q
-.362(ground, or f)-.15 F .362
-(ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .363
+.363(ground, or f)-.15 F .363
+(ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .362
 (hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 292.8 Q
-F0 .004(does not specify a v)2.815 F .004(alid job or)-.25 F F2(jobspec)
+F0 .004(does not specify a v)2.814 F .004(alid job or)-.25 F F2(jobspec)
 4.244 E F0 .004(speci\214es a job that w)2.814 F .004
 (as started without job control.)-.1 F F4(getopts)108 309.6 Q F2
 (optstring name)2.5 E F0([)2.5 E F2(ar)A(gs)-.37 E F0(])A F4(getopts)144
 321.6 Q F0 .793
-(is used by shell procedures to parse positional parameters.)3.293 F F2
-(optstring)6.023 E F0 .793(contains the option)3.513 F .15
-(characters to be recognized; if a character is follo)144 333.6 R .149
-(wed by a colon, the option is e)-.25 F .149(xpected to ha)-.15 F .449
--.15(ve a)-.2 H(n).15 E(ar)144 345.6 Q .578
-(gument, which should be separated from it by white space.)-.18 F .579
+(is used by shell procedures to parse positional parameters.)3.294 F F2
+(optstring)6.023 E F0 .793(contains the option)3.513 F .149
+(characters to be recognized; if a character is follo)144 333.6 R .15
+(wed by a colon, the option is e)-.25 F .15(xpected to ha)-.15 F .45
+-.15(ve a)-.2 H(n).15 E(ar)144 345.6 Q .579
+(gument, which should be separated from it by white space.)-.18 F .578
 (The colon and question mark char)5.579 F(-)-.2 E 1.665
 (acters may not be used as option characters.)144 357.6 R 1.665
 (Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F4(getopts)
-4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .796
-(option in the shell v)144 369.6 R(ariable)-.25 E F2(name)3.296 E F0
-3.296(,i).18 G(nitializing)-3.296 E F2(name)3.657 E F0 .797
-(if it does not e)3.477 F .797(xist, and the inde)-.15 F 3.297(xo)-.15 G
-3.297(ft)-3.297 G .797(he ne)-3.297 F(xt)-.15 E(ar)144 381.6 Q .085
+4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .797
+(option in the shell v)144 369.6 R(ariable)-.25 E F2(name)3.297 E F0
+3.297(,i).18 G(nitializing)-3.297 E F2(name)3.657 E F0 .797
+(if it does not e)3.477 F .796(xist, and the inde)-.15 F 3.296(xo)-.15 G
+3.296(ft)-3.296 G .796(he ne)-3.296 F(xt)-.15 E(ar)144 381.6 Q .085
 (gument to be processed into the v)-.18 F(ariable)-.25 E F1(OPTIND)2.585
 E/F5 9/Times-Roman@0 SF(.)A F1(OPTIND)4.585 E F0 .085
-(is initialized to 1 each time the shell)2.335 F .845
+(is initialized to 1 each time the shell)2.335 F .846
 (or a shell script is in)144 393.6 R -.2(vo)-.4 G -.1(ke).2 G 3.345
 (d. When).1 F .845(an option requires an ar)3.345 F(gument,)-.18 E F4
-(getopts)3.346 E F0 .846(places that ar)3.346 F(gument)-.18 E .804
-(into the v)144 405.6 R(ariable)-.25 E F1(OPT)3.304 E(ARG)-.81 E F5(.)A
-F0 .803(The shell does not reset)5.304 F F1(OPTIND)3.303 E F0 .803
-(automatically; it must be manually)3.053 F .293
+(getopts)3.345 E F0 .845(places that ar)3.345 F(gument)-.18 E .803
+(into the v)144 405.6 R(ariable)-.25 E F1(OPT)3.303 E(ARG)-.81 E F5(.)A
+F0 .803(The shell does not reset)5.303 F F1(OPTIND)3.303 E F0 .804
+(automatically; it must be manually)3.054 F .294
 (reset between multiple calls to)144 417.6 R F4(getopts)2.793 E F0 .293
 (within the same shell in)2.793 F -.2(vo)-.4 G .293(cation if a ne).2 F
-2.793(ws)-.25 G .294(et of parameters)-2.793 F(is to be used.)144 429.6
-Q 2.044(When the end of options is encountered,)144 453.6 R F4(getopts)
-4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.043
+2.793(ws)-.25 G .293(et of parameters)-2.793 F(is to be used.)144 429.6
+Q 2.043(When the end of options is encountered,)144 453.6 R F4(getopts)
+4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.044
 (alue greater than zero.)-.25 F F4(OPTIND)144 465.6 Q F0
 (is set to the inde)2.5 E 2.5(xo)-.15 G 2.5(ft)-2.5 G
 (he \214rst non-option ar)-2.5 E(gument, and)-.18 E F4(name)2.5 E F0
-(is set to ?.)2.5 E F4(getopts)144 489.6 Q F0 2.392
-(normally parses the positional parameters, b)4.892 F 2.392
-(ut if more ar)-.2 F 2.393(guments are gi)-.18 F -.15(ve)-.25 G 4.893
-(ni).15 G(n)-4.893 E F2(ar)4.893 E(gs)-.37 E F0(,).27 E F4(getopts)144
-501.6 Q F0(parses those instead.)2.5 E F4(getopts)144 525.6 Q F0 1.166
-(can report errors in tw)3.666 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F
-1.165(the \214rst character of)3.665 F F2(optstring)3.895 E F0 1.165
-(is a colon,)3.885 F F2(silent)4.005 E F0(error)4.345 E 1.263
+(is set to ?.)2.5 E F4(getopts)144 489.6 Q F0 2.393
+(normally parses the positional parameters, b)4.893 F 2.392
+(ut if more ar)-.2 F 2.392(guments are gi)-.18 F -.15(ve)-.25 G 4.892
+(ni).15 G(n)-4.892 E F2(ar)4.892 E(gs)-.37 E F0(,).27 E F4(getopts)144
+501.6 Q F0(parses those instead.)2.5 E F4(getopts)144 525.6 Q F0 1.165
+(can report errors in tw)3.665 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F
+1.165(the \214rst character of)3.665 F F2(optstring)3.895 E F0 1.166
+(is a colon,)3.886 F F2(silent)4.006 E F0(error)4.346 E 1.264
 (reporting is used.)144 537.6 R 1.263
 (In normal operation diagnostic messages are printed when in)6.263 F
--.25(va)-.4 G 1.263(lid options or).25 F .394(missing option ar)144
-549.6 R .394(guments are encountered.)-.18 F .394(If the v)5.394 F
+-.25(va)-.4 G 1.263(lid options or).25 F .393(missing option ar)144
+549.6 R .393(guments are encountered.)-.18 F .394(If the v)5.394 F
 (ariable)-.25 E F1(OPTERR)2.894 E F0 .394
 (is set to 0, no error messages)2.644 F(will be displayed, e)144 561.6 Q
 -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214rst character of)-2.5 E
-F2(optstring)2.73 E F0(is not a colon.)2.72 E .666(If an in)144 585.6 R
--.25(va)-.4 G .666(lid option is seen,).25 F F4(getopts)3.166 E F0 .667
-(places ? into)3.167 F F2(name)3.527 E F0 .667
-(and, if not silent, prints an error message)3.347 F .4(and unsets)144
-597.6 R F1(OPT)2.9 E(ARG)-.81 E F5(.)A F0(If)4.899 E F4(getopts)2.899 E
-F0 .399(is silent, the option character found is placed in)2.899 F F1
-(OPT)2.899 E(ARG)-.81 E F0 .399(and no)2.649 F
-(diagnostic message is printed.)144 609.6 Q 1.241(If a required ar)144
-633.6 R 1.241(gument is not found, and)-.18 F F4(getopts)3.741 E F0
-1.241(is not silent, a question mark \()3.741 F F4(?).833 E F0 3.742
-(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F F2(name)144 645.6
-Q F0(,).18 E F1(OPT)2.735 E(ARG)-.81 E F0 .234
-(is unset, and a diagnostic message is printed.)2.485 F(If)5.234 E F4
-(getopts)2.734 E F0 .234(is silent, then a colon \()2.734 F F4(:).833 E
+F2(optstring)2.73 E F0(is not a colon.)2.72 E .667(If an in)144 585.6 R
+-.25(va)-.4 G .667(lid option is seen,).25 F F4(getopts)3.167 E F0 .667
+(places ? into)3.167 F F2(name)3.527 E F0 .666
+(and, if not silent, prints an error message)3.347 F .399(and unsets)144
+597.6 R F1(OPT)2.899 E(ARG)-.81 E F5(.)A F0(If)4.899 E F4(getopts)2.899
+F0 .399(is silent, the option character found is placed in)2.899 F F1
+(OPT)2.899 E(ARG)-.81 E F0 .4(and no)2.65 F
+(diagnostic message is printed.)144 609.6 Q 1.242(If a required ar)144
+633.6 R 1.242(gument is not found, and)-.18 F F4(getopts)3.741 E F0
+1.241(is not silent, a question mark \()3.741 F F4(?).833 E F0 3.741
+(\)i).833 G 3.741(sp)-3.741 G 1.241(laced in)-3.741 F F2(name)144 645.6
+Q F0(,).18 E F1(OPT)2.734 E(ARG)-.81 E F0 .234
+(is unset, and a diagnostic message is printed.)2.484 F(If)5.234 E F4
+(getopts)2.734 E F0 .235(is silent, then a colon \()2.734 F F4(:).833 E
 F0(\)).833 E(is placed in)144 657.6 Q F2(name)2.86 E F0(and)2.68 E F1
 (OPT)2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F4
 (getopts)144 681.6 Q F0 .902
 (returns true if an option, speci\214ed or unspeci\214ed, is found.)
-3.401 F .902(It returns f)5.902 F .902(alse if the end of)-.1 F
+3.402 F .902(It returns f)5.902 F .901(alse if the end of)-.1 F
 (options is encountered or an error occurs.)144 693.6 Q(GNU Bash-4.0)72
 768 Q(2008 July 6)150.675 E(54)200.665 E 0 Cg EP
 %%Page: 55 55
@@ -6433,37 +6436,38 @@ BP
 -.35 E/F1 10/Times-Bold@0 SF(hash)108 84 Q F0([)2.5 E F1(\255lr)A F0 2.5
 (][)C F1<ad70>-2.5 E/F2 10/Times-Italic@0 SF(\214lename)2.5 E F0 2.5(][)
 C F1(\255dt)-2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A -.15(Fo)144 96 S
-3.555(re).15 G(ach)-3.555 E F2(name)3.555 E F0 3.555(,t).18 G 1.054(he \
+3.554(re).15 G(ach)-3.554 E F2(name)3.554 E F0 3.554(,t).18 G 1.054(he \
 full \214le name of the command is determined by searching the director\
-ies in)-3.555 F F1($P)144 108 Q -.95(AT)-.74 G(H).95 E F0 .349
-(and remembered.)2.849 F .349(If the)5.349 F F1<ad70>2.849 E F0 .349
+ies in)-3.554 F F1($P)144 108 Q -.95(AT)-.74 G(H).95 E F0 .35
+(and remembered.)2.85 F .35(If the)5.35 F F1<ad70>2.85 E F0 .349
 (option is supplied, no path search is performed, and)2.849 F F2
-(\214lename)4.76 E F0 .452
+(\214lename)4.759 E F0 .452
 (is used as the full \214le name of the command.)144 120 R(The)5.452 E
-F1<ad72>2.952 E F0 .452(option causes the shell to for)2.952 F .452
-(get all remem-)-.18 F .592(bered locations.)144 132 R(The)5.592 E F1
-<ad64>3.092 E F0 .593(option causes the shell to for)3.092 F .593
-(get the remembered location of each)-.18 F F2(name)3.093 E F0(.)A .021
-(If the)144 144 R F1<ad74>2.521 E F0 .021
-(option is supplied, the full pathname to which each)2.521 F F2(name)
-2.52 E F0 .02(corresponds is printed.)2.52 F .02(If multi-)5.02 F(ple)
-144 156 Q F2(name)3.703 E F0(ar)3.703 E 1.203(guments are supplied with)
--.18 F F1<ad74>3.703 E F0 3.703(,t)C(he)-3.703 E F2(name)3.703 E F0
-1.204(is printed before the hashed full pathname.)3.703 F(The)144 168 Q
-F1<ad6c>3.216 E F0 .715(option causes output to be displayed in a forma\
-t that may be reused as input.)3.216 F .715(If no ar)5.715 F(gu-)-.18 E
-1.183(ments are gi)144 180 R -.15(ve)-.25 G 1.183(n, or if only).15 F F1
-<ad6c>3.683 E F0 1.184
+F1<ad72>2.952 E F0 .452(option causes the shell to for)2.952 F .453
+(get all remem-)-.18 F .593(bered locations.)144 132 R(The)5.593 E F1
+<ad64>3.093 E F0 .593(option causes the shell to for)3.093 F .592
+(get the remembered location of each)-.18 F F2(name)3.092 E F0(.)A .02
+(If the)144 144 R F1<ad74>2.52 E F0 .02
+(option is supplied, the full pathname to which each)2.52 F F2(name)
+2.521 E F0 .021(corresponds is printed.)2.521 F .021(If multi-)5.021 F
+(ple)144 156 Q F2(name)3.704 E F0(ar)3.704 E 1.204
+(guments are supplied with)-.18 F F1<ad74>3.703 E F0 3.703(,t)C(he)
+-3.703 E F2(name)3.703 E F0 1.203
+(is printed before the hashed full pathname.)3.703 F(The)144 168 Q F1
+<ad6c>3.215 E F0 .715(option causes output to be displayed in a format \
+that may be reused as input.)3.215 F .716(If no ar)5.716 F(gu-)-.18 E
+1.184(ments are gi)144 180 R -.15(ve)-.25 G 1.184(n, or if only).15 F F1
+<ad6c>3.684 E F0 1.183
 (is supplied, information about remembered commands is printed.)3.684 F
 (The return status is true unless a)144 192 Q F2(name)2.86 E F0
 (is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.).25
 E F1(help)108 208.8 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F2(pattern)
--2.5 E F0(])A .867(Display helpful information about b)144 220.8 R .867
-(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0 .866
-(is speci\214ed,)3.607 F F1(help)3.366 E F0(gi)3.366 E -.15(ve)-.25 G
-3.366(sd).15 G(etailed)-3.366 E .306(help on all commands matching)144
-232.8 R F2(pattern)2.806 E F0 2.807(;o).24 G .307
-(therwise help for all the b)-2.807 F .307
+-2.5 E F0(])A .866(Display helpful information about b)144 220.8 R .867
+(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0 .867
+(is speci\214ed,)3.607 F F1(help)3.367 E F0(gi)3.367 E -.15(ve)-.25 G
+3.367(sd).15 G(etailed)-3.367 E .307(help on all commands matching)144
+232.8 R F2(pattern)2.807 E F0 2.807(;o).24 G .307
+(therwise help for all the b)-2.807 F .306
 (uiltins and shell control struc-)-.2 F(tures is printed.)144 244.8 Q F1
 <ad64>144 256.8 Q F0(Display a short description of each)24.74 E F2
 (pattern)2.5 E F1(-m)146.5 268.8 Q F0(Display the description of each)
@@ -6479,16 +6483,16 @@ F1(history \255p)108 357.6 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5
 -.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144
 381.6 S .752
 (th no options, display the command history list with line numbers.).4 F
-.752(Lines listed with a)5.752 F F1(*)3.251 E F0(ha)3.251 E -.15(ve)-.2
-G 1.23(been modi\214ed.)144 393.6 R 1.23(An ar)6.23 F 1.23(gument of)
--.18 F F2(n)4.09 E F0 1.231(lists only the last)3.97 F F2(n)4.091 E F0
-3.731(lines. If)3.971 F 1.231(the shell v)3.731 F(ariable)-.25 E F1
-(HISTTIME-)3.731 E(FORMA)144 405.6 Q(T)-.95 E F0 .25
-(is set and not null, it is used as a format string for)2.75 F F2
-(strftime)2.749 E F0 .249(\(3\) to display the time stamp)B .378
-(associated with each displayed history entry)144 417.6 R 5.378(.N)-.65
-G 2.878(oi)-5.378 G(nterv)-2.878 E .379
-(ening blank is printed between the format-)-.15 F .815
+.752(Lines listed with a)5.752 F F1(*)3.252 E F0(ha)3.252 E -.15(ve)-.2
+G 1.231(been modi\214ed.)144 393.6 R 1.231(An ar)6.231 F 1.231
+(gument of)-.18 F F2(n)4.091 E F0 1.231(lists only the last)3.971 F F2
+(n)4.091 E F0 3.73(lines. If)3.97 F 1.23(the shell v)3.73 F(ariable)-.25
+E F1(HISTTIME-)3.73 E(FORMA)144 405.6 Q(T)-.95 E F0 .249
+(is set and not null, it is used as a format string for)2.749 F F2
+(strftime)2.75 E F0 .25(\(3\) to display the time stamp)B .379
+(associated with each displayed history entry)144 417.6 R 5.379(.N)-.65
+G 2.878(oi)-5.379 G(nterv)-2.878 E .378
+(ening blank is printed between the format-)-.15 F .814
 (ted time stamp and the history line.)144 429.6 R(If)5.814 E F2
 (\214lename)3.314 E F0 .814
 (is supplied, it is used as the name of the history)3.314 F
@@ -6497,47 +6501,48 @@ G 2.878(oi)-5.378 G(nterv)-2.878 E .379
 (ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1<ad63>144 453.6 Q F0
 (Clear the history list by deleting all the entries.)25.86 E F1<ad64>144
 465.6 Q F2(of)2.5 E(fset)-.18 E F0(Delete the history entry at position)
-180 477.6 Q F2(of)2.5 E(fset)-.18 E F0(.)A F1<ad61>144 489.6 Q F0 .598
-(Append the `)25.3 F(`ne)-.74 E(w')-.25 E 3.098('h)-.74 G .598
-(istory lines \(history lines entered since the be)-3.098 F .599
+180 477.6 Q F2(of)2.5 E(fset)-.18 E F0(.)A F1<ad61>144 489.6 Q F0 .599
+(Append the `)25.3 F(`ne)-.74 E(w')-.25 E 3.099('h)-.74 G .598
+(istory lines \(history lines entered since the be)-3.099 F .598
 (ginning of the current)-.15 F F1(bash)180 501.6 Q F0
 (session\) to the history \214le.)2.5 E F1<ad6e>144 513.6 Q F0 .854(Rea\
 d the history lines not already read from the history \214le into the c\
-urrent history list.)24.74 F .772
+urrent history list.)24.74 F .773
 (These are lines appended to the history \214le since the be)180 525.6 R
-.773(ginning of the current)-.15 F F1(bash)3.273 E F0(ses-)3.273 E
+.772(ginning of the current)-.15 F F1(bash)3.272 E F0(ses-)3.272 E
 (sion.)180 537.6 Q F1<ad72>144 549.6 Q F0(Read the contents of the hist\
 ory \214le and use them as the current history)25.86 E(.)-.65 E F1<ad77>
 144 561.6 Q F0(Write the current history to the history \214le, o)23.08
 E -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G
-(ontents.)-2.5 E F1<ad70>144 573.6 Q F0 .626
+(ontents.)-2.5 E F1<ad70>144 573.6 Q F0 .625
 (Perform history substitution on the follo)24.74 F(wing)-.25 E F2(ar)
-3.125 E(gs)-.37 E F0 .625(and display the result on the standard)3.125 F
+3.125 E(gs)-.37 E F0 .626(and display the result on the standard)3.125 F
 2.975(output. Does)180 585.6 R .475
 (not store the results in the history list.)2.975 F(Each)5.475 E F2(ar)
 2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F
 (normal history e)180 597.6 Q(xpansion.)-.15 E F1<ad73>144 609.6 Q F0
-.363(Store the)26.41 F F2(ar)3.193 E(gs)-.37 E F0 .363
-(in the history list as a single entry)3.133 F 5.363(.T)-.65 G .362
+.362(Store the)26.41 F F2(ar)3.192 E(gs)-.37 E F0 .363
+(in the history list as a single entry)3.132 F 5.363(.T)-.65 G .363
 (he last command in the history list is)-5.363 F(remo)180 621.6 Q -.15
 (ve)-.15 G 2.5(db).15 G(efore the)-2.5 E F2(ar)2.83 E(gs)-.37 E F0
 (are added.)2.77 E .28(If the)144 638.4 R F1(HISTTIMEFORMA)2.78 E(T)-.95
 E F0 .28
 (is set, the time stamp information associated with each history entry)
-2.78 F .54(is written to the history \214le, mark)144 650.4 R .539
-(ed with the history comment character)-.1 F 5.539(.W)-.55 G .539
-(hen the history \214le is)-5.539 F 1.778(read, lines be)144 662.4 R
-1.778(ginning with the history comment character follo)-.15 F 1.779
+2.78 F .539(is written to the history \214le, mark)144 650.4 R .539
+(ed with the history comment character)-.1 F 5.54(.W)-.55 G .54
+(hen the history \214le is)-5.54 F 1.779(read, lines be)144 662.4 R
+1.779(ginning with the history comment character follo)-.15 F 1.778
 (wed immediately by a digit are)-.25 F 1.424
 (interpreted as timestamps for the pre)144 674.4 R 1.424
 (vious history line.)-.25 F 1.424(The return v)6.424 F 1.424
 (alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .499(option is e\
 ncountered, an error occurs while reading or writing the history \214le\
-, an in)144 686.4 R -.25(va)-.4 G(lid).25 E F2(of)3 E(fset)-.18 E F0(is)
-3 E(supplied as an ar)144 698.4 Q(gument to)-.18 E F1<ad64>2.5 E F0 2.5
-(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E(xpansion supplied as an ar)-.15
-E(gument to)-.18 E F1<ad70>2.5 E F0 -.1(fa)2.5 G(ils.).1 E(GNU Bash-4.0)
-72 768 Q(2008 July 6)150.675 E(55)200.665 E 0 Cg EP
+, an in)144 686.4 R -.25(va)-.4 G(lid).25 E F2(of)2.999 E(fset)-.18 E F0
+(is)2.999 E(supplied as an ar)144 698.4 Q(gument to)-.18 E F1<ad64>2.5 E
+F0 2.5(,o)C 2.5(rt)-2.5 G(he history e)-2.5 E
+(xpansion supplied as an ar)-.15 E(gument to)-.18 E F1<ad70>2.5 E F0 -.1
+(fa)2.5 G(ils.).1 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(55)
+200.665 E 0 Cg EP
 %%Page: 56 56
 %%BeginPageSetup
 BP
@@ -6551,20 +6556,20 @@ E(The \214rst form lists the acti)144 108 Q .3 -.15(ve j)-.25 H 2.5
 (wing meanings:)-.25 E F1<ad6c>144 120 Q F0
 (List process IDs in addition to the normal information.)27.52 E F1
 <ad70>144 132 Q F0(List only the process ID of the job')24.74 E 2.5(sp)
--.55 G(rocess group leader)-2.5 E(.)-.55 E F1<ad6e>144 144 Q F0 .194
+-.55 G(rocess group leader)-2.5 E(.)-.55 E F1<ad6e>144 144 Q F0 .193
 (Display information only about jobs that ha)24.74 F .494 -.15(ve c)-.2
-H .193(hanged status since the user w).15 F .193(as last noti-)-.1 F
+H .194(hanged status since the user w).15 F .194(as last noti-)-.1 F
 (\214ed of their status.)180 156 Q F1<ad72>144 168 Q F0
 (Restrict output to running jobs.)25.86 E F1<ad73>144 180 Q F0
 (Restrict output to stopped jobs.)26.41 E(If)144 196.8 Q F2(jobspec)
-4.553 E F0 .313(is gi)3.123 F -.15(ve)-.25 G .313
-(n, output is restricted to information about that job).15 F 5.314(.T)
--.4 G .314(he return status is 0 unless)-5.314 F(an in)144 208.8 Q -.25
+4.554 E F0 .314(is gi)3.124 F -.15(ve)-.25 G .314
+(n, output is restricted to information about that job).15 F 5.313(.T)
+-.4 G .313(he return status is 0 unless)-5.313 F(an in)144 208.8 Q -.25
 (va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25
-E F2(jobspec)4.24 E F0(is supplied.)2.81 E .395(If the)144 225.6 R F1
-<ad78>2.895 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0
+E F2(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144 225.6 R F1
+<ad78>2.894 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0
 .394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in)
-3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .394
+3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .395
 (with the corre-)3.164 F(sponding process group ID, and e)144 237.6 Q
 -.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar)
 2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 E
@@ -6572,54 +6577,54 @@ F1(kill)108 254.4 Q F0([)2.5 E F1<ad73>A F2(sigspec)2.5 E F0(|)2.5 E F1
 <ad6e>2.5 E F2(signum)2.5 E F0(|)2.5 E F1<ad>2.5 E F2(sigspec)A F0 2.5
 (][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F1
 (kill \255l)108 266.4 Q F0([)2.5 E F2(sigspec)A F0(|)2.5 E F2 -.2(ex)2.5
-G(it_status).2 E F0(])A .119(Send the signal named by)144 278.4 R F2
-(sigspec)2.959 E F0(or)2.929 E F2(signum)2.959 E F0 .119
-(to the processes named by)2.939 F F2(pid)3.87 E F0(or)3.39 E F2
-(jobspec)2.62 E F0(.).31 E F2(sigspec)5.46 E F0(is)2.93 E .319
-(either a case-insensiti)144 290.4 R .619 -.15(ve s)-.25 H .319
-(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.819 E F0 .318
-(\(with or without the)2.569 F F3(SIG)2.818 E F0 .318
-(pre\214x\) or a signal)2.568 F(number;)144 302.4 Q F2(signum)4.188 E F0
-1.349(is a signal number)4.168 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec)
+G(it_status).2 E F0(])A .12(Send the signal named by)144 278.4 R F2
+(sigspec)2.96 E F0(or)2.93 E F2(signum)2.96 E F0 .119
+(to the processes named by)2.939 F F2(pid)3.869 E F0(or)3.389 E F2
+(jobspec)2.619 E F0(.).31 E F2(sigspec)5.459 E F0(is)2.929 E .318
+(either a case-insensiti)144 290.4 R .618 -.15(ve s)-.25 H .318
+(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.818 E F0 .319
+(\(with or without the)2.569 F F3(SIG)2.819 E F0 .319
+(pre\214x\) or a signal)2.569 F(number;)144 302.4 Q F2(signum)4.189 E F0
+1.349(is a signal number)4.169 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec)
 4.189 E F0 1.349(is not present, then)4.159 F F3(SIGTERM)3.849 E F0
-1.349(is assumed.)3.599 F(An)6.349 E(ar)144 314.4 Q .523(gument of)-.18
+1.348(is assumed.)3.599 F(An)6.348 E(ar)144 314.4 Q .522(gument of)-.18
 F F1<ad6c>3.023 E F0 .523(lists the signal names.)3.023 F .523(If an)
 5.523 F 3.023(ya)-.15 G -.18(rg)-3.023 G .523(uments are supplied when)
 .18 F F1<ad6c>3.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523
 (n, the names).15 F .28(of the signals corresponding to the ar)144 326.4
 R .28(guments are listed, and the return status is 0.)-.18 F(The)5.28 E
-F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 338.4 Q .378(gument to)-.18 F
-F1<ad6c>2.878 E F0 .378
-(is a number specifying either a signal number or the e)2.878 F .377
-(xit status of a process termi-)-.15 F .593(nated by a signal.)144 350.4
+F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 338.4 Q .377(gument to)-.18 F
+F1<ad6c>2.877 E F0 .378
+(is a number specifying either a signal number or the e)2.877 F .378
+(xit status of a process termi-)-.15 F .594(nated by a signal.)144 350.4
 R F1(kill)5.593 E F0 .593(returns true if at least one signal w)3.093 F
-.593(as successfully sent, or f)-.1 F .594(alse if an error)-.1 F
+.593(as successfully sent, or f)-.1 F .593(alse if an error)-.1 F
 (occurs or an in)144 362.4 Q -.25(va)-.4 G(lid option is encountered.)
 .25 E F1(let)108 379.2 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37
-E F0(...])2.5 E(Each)144 391.2 Q F2(ar)3.965 E(g)-.37 E F0 1.135
-(is an arithmetic e)3.855 F 1.134(xpression to be e)-.15 F -.25(va)-.25
-G 1.134(luated \(see).25 F F3 1.134(ARITHMETIC EV)3.634 F(ALU)-1.215 E
--.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(\).)A F0 1.134(If the)
-5.634 F(last)144 403.2 Q F2(ar)2.83 E(g)-.37 E F0 -.25(eva)2.72 G
+E F0(...])2.5 E(Each)144 391.2 Q F2(ar)3.964 E(g)-.37 E F0 1.134
+(is an arithmetic e)3.854 F 1.134(xpression to be e)-.15 F -.25(va)-.25
+G 1.135(luated \(see).25 F F3 1.135(ARITHMETIC EV)3.635 F(ALU)-1.215 E
+-.855(AT)-.54 G(ION).855 E/F4 9/Times-Roman@0 SF(\).)A F0 1.135(If the)
+5.635 F(last)144 403.2 Q F2(ar)2.83 E(g)-.37 E F0 -.25(eva)2.72 G
 (luates to 0,).25 E F1(let)2.5 E F0(returns 1; 0 is returned otherwise.)
 2.5 E F1(local)108 420 Q F0([)2.5 E F2(option)A F0 2.5(][)C F2(name)-2.5
 E F0([=)A F2(value)A F0 2.5(].)C(..])-2.5 E -.15(Fo)144 432 S 2.56(re)
 .15 G .06(ach ar)-2.56 F .06(gument, a local v)-.18 F .06(ariable named)
 -.25 F F2(name)2.92 E F0 .06(is created, and assigned)2.74 F F2(value)
 2.56 E F0 5.06(.T).18 G(he)-5.06 E F2(option)2.56 E F0 .06(can be)2.56 F
-(an)144 444 Q 3.153(yo)-.15 G 3.153(ft)-3.153 G .653
-(he options accepted by)-3.153 F F1(declar)3.153 E(e)-.18 E F0 5.652(.W)
-C(hen)-5.652 E F1(local)3.152 E F0 .652
+(an)144 444 Q 3.152(yo)-.15 G 3.152(ft)-3.152 G .652
+(he options accepted by)-3.152 F F1(declar)3.152 E(e)-.18 E F0 5.652(.W)
+C(hen)-5.652 E F1(local)3.152 E F0 .653
 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144
-456 Q F2(name)3.72 E F0 .86(to ha)3.54 F 1.16 -.15(ve a v)-.2 H .861
+456 Q F2(name)3.721 E F0 .861(to ha)3.541 F 1.161 -.15(ve a v)-.2 H .861
 (isible scope restricted to that function and its children.).15 F -.4
-(Wi)5.861 G .861(th no operands,).4 F F1(local)144 468 Q F0 1.165
-(writes a list of local v)3.665 F 1.165
+(Wi)5.86 G .86(th no operands,).4 F F1(local)144 468 Q F0 1.164
+(writes a list of local v)3.664 F 1.165
 (ariables to the standard output.)-.25 F 1.165(It is an error to use)
-6.165 F F1(local)3.664 E F0 1.164(when not)3.664 F .232
-(within a function.)144 480 R .233(The return status is 0 unless)5.232 F
+6.165 F F1(local)3.665 E F0 1.165(when not)3.665 F .233
+(within a function.)144 480 R .233(The return status is 0 unless)5.233 F
 F1(local)2.733 E F0 .233(is used outside a function, an in)2.733 F -.25
-(va)-.4 G(lid).25 E F2(name)3.093 E F0(is)2.913 E(supplied, or)144 492 Q
+(va)-.4 G(lid).25 E F2(name)3.092 E F0(is)2.912 E(supplied, or)144 492 Q
 F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1(logout)108
 508.8 Q F0(Exit a login shell.)9.33 E F1(map\214le)108 525.6 Q F0([)2.5
 E F1<ad6e>A F2(count)2.5 E F0 2.5(][)C F1<ad4f>-2.5 E F2(origin)2.5 E F0
@@ -6629,11 +6634,11 @@ E F1<ad6e>A F2(count)2.5 E F0 2.5(][)C F1<ad4f>-2.5 E F2(origin)2.5 E F0
 (arr)-2.5 E(ay)-.15 E F0(])A 1.006
 (Read lines from the standard input into array v)144 537.6 R(ariable)
 -.25 E F2(arr)3.506 E(ay)-.15 E F0 3.506(,o).32 G 3.506(rf)-3.506 G
-1.006(rom \214le descriptor)-3.506 F F2(fd)3.506 E F0 1.005(if the)3.506
-F F1<ad75>3.505 E F0 1.086(option is supplied.)144 549.6 R 1.086(The v)
-6.086 F(ariable)-.25 E F1(MAPFILE)3.586 E F0 1.086(is the def)3.586 F
-(ault)-.1 E F2(arr)3.587 E(ay)-.15 E F0 6.087(.O)C 1.087
-(ptions, if supplied, ha)-6.087 F 1.387 -.15(ve t)-.2 H(he).15 E(follo)
+1.006(rom \214le descriptor)-3.506 F F2(fd)3.506 E F0 1.006(if the)3.506
+F F1<ad75>3.506 E F0 1.087(option is supplied.)144 549.6 R 1.087(The v)
+6.087 F(ariable)-.25 E F1(MAPFILE)3.587 E F0 1.086(is the def)3.587 F
+(ault)-.1 E F2(arr)3.586 E(ay)-.15 E F0 6.086(.O)C 1.086
+(ptions, if supplied, ha)-6.086 F 1.386 -.15(ve t)-.2 H(he).15 E(follo)
 144 561.6 Q(wing meanings:)-.25 E F1<ad6e>144 573.6 Q F0(Cop)24.74 E 2.5
 (ya)-.1 G 2.5(tm)-2.5 G(ost)-2.5 E F2(count)2.7 E F0 2.5(lines. If)3.18
 F F2(count)2.5 E F0(is 0, all lines are copied.)2.5 E F1<ad4f>144 585.6
@@ -6654,9 +6659,9 @@ Q F0(Specify the number of lines read between each call to)25.86 E F2
 (ault quantum is 5000.)-.1 E(If not supplied with an e)144 679.2 Q
 (xplicit origin,)-.15 E F1(map\214le)2.5 E F0(will clear)2.5 E F2(arr)
 2.5 E(ay)-.15 E F0(before assigning to it.)2.5 E F1(map\214le)144 696 Q
-F0 .996(returns successfully unless an in)3.496 F -.25(va)-.4 G .996
-(lid option or option ar).25 F .995(gument is supplied, or)-.18 F F2
-(arr)3.495 E(ay)-.15 E F0(is)3.495 E(in)144 708 Q -.25(va)-.4 G
+F0 .995(returns successfully unless an in)3.495 F -.25(va)-.4 G .996
+(lid option or option ar).25 F .996(gument is supplied, or)-.18 F F2
+(arr)3.496 E(ay)-.15 E F0(is)3.496 E(in)144 708 Q -.25(va)-.4 G
 (lid or unassignable.).25 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E
 (56)200.665 E 0 Cg EP
 %%Page: 57 57
@@ -6666,13 +6671,13 @@ BP
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E/F1 10/Times-Bold@0 SF(popd)108 84 Q F0<5bad>2.5 E F1(n)A F0 2.5
 (][)C(+)-2.5 E/F2 10/Times-Italic@0 SF(n)A F0 2.5(][)C<ad>-2.5 E F2(n)A
-F0(])A(Remo)144 96 Q -.15(ve)-.15 G 2.799(se).15 G .299
-(ntries from the directory stack.)-2.799 F -.4(Wi)5.299 G .299(th no ar)
-.4 F .299(guments, remo)-.18 F -.15(ve)-.15 G 2.799(st).15 G .3
-(he top directory from the)-2.799 F 1.479(stack, and performs a)144 108
-R F1(cd)3.979 E F0 1.479(to the ne)3.979 F 3.979(wt)-.25 G 1.479
-(op directory)-3.979 F 6.479(.A)-.65 G -.18(rg)-6.479 G 1.478
-(uments, if supplied, ha).18 F 1.778 -.15(ve t)-.2 H 1.478(he follo).15
+F0(])A(Remo)144 96 Q -.15(ve)-.15 G 2.8(se).15 G .3
+(ntries from the directory stack.)-2.8 F -.4(Wi)5.299 G .299(th no ar).4
+F .299(guments, remo)-.18 F -.15(ve)-.15 G 2.799(st).15 G .299
+(he top directory from the)-2.799 F 1.478(stack, and performs a)144 108
+R F1(cd)3.978 E F0 1.479(to the ne)3.978 F 3.979(wt)-.25 G 1.479
+(op directory)-3.979 F 6.479(.A)-.65 G -.18(rg)-6.479 G 1.479
+(uments, if supplied, ha).18 F 1.779 -.15(ve t)-.2 H 1.479(he follo).15
 F(wing)-.25 E(meanings:)144 120 Q F1<ad6e>144 132 Q F0 .551
 (Suppresses the normal change of directory when remo)24.74 F .551
 (ving directories from the stack, so)-.15 F
@@ -6683,17 +6688,17 @@ F(wing)-.25 E(meanings:)144 120 Q F1<ad6e>144 132 Q F0 .551
 S 2.5(re).15 G(xample:)-2.65 E/F3 10/Courier@0 SF(popd +0)2.5 E F0(remo)
 2.5 E -.15(ve)-.15 G 2.5(st).15 G(he \214rst directory)-2.5 E(,)-.65 E
 F3(popd +1)2.5 E F0(the second.)2.5 E F1<ad>144 180 Q F2(n)A F0(Remo)
-25.3 E -.15(ve)-.15 G 3.759(st).15 G(he)-3.759 E F2(n)3.759 E F0 1.259
-(th entry counting from the right of the list sho)B 1.26(wn by)-.25 F F1
-(dirs)3.76 E F0 3.76(,s)C 1.26(tarting with)-3.76 F 2.5(zero. F)180 192
-R(or e)-.15 E(xample:)-.15 E F3(popd -0)2.5 E F0(remo)2.5 E -.15(ve)-.15
-G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 E F3(popd -1)2.5 E F0
-(the ne)2.5 E(xt to last.)-.15 E .644(If the)144 208.8 R F1(popd)3.144 E
-F0 .644(command is successful, a)3.144 F F1(dirs)3.143 E F0 .643
-(is performed as well, and the return status is 0.)3.143 F F1(popd)5.643
-E F0 .415(returns f)144 220.8 R .415(alse if an in)-.1 F -.25(va)-.4 G
-.415(lid option is encountered, the directory stack is empty).25 F 2.916
-(,an)-.65 G(on-e)-2.916 E .416(xistent direc-)-.15 F
+25.3 E -.15(ve)-.15 G 3.76(st).15 G(he)-3.76 E F2(n)3.76 E F0 1.259
+(th entry counting from the right of the list sho)B 1.259(wn by)-.25 F
+F1(dirs)3.759 E F0 3.759(,s)C 1.259(tarting with)-3.759 F 2.5(zero. F)
+180 192 R(or e)-.15 E(xample:)-.15 E F3(popd -0)2.5 E F0(remo)2.5 E -.15
+(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 E F3(popd -1)2.5
+E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144 208.8 R F1(popd)
+3.143 E F0 .643(command is successful, a)3.143 F F1(dirs)3.143 E F0 .644
+(is performed as well, and the return status is 0.)3.143 F F1(popd)5.644
+E F0 .416(returns f)144 220.8 R .416(alse if an in)-.1 F -.25(va)-.4 G
+.415(lid option is encountered, the directory stack is empty).25 F 2.915
+(,an)-.65 G(on-e)-2.915 E .415(xistent direc-)-.15 F
 (tory stack entry is speci\214ed, or the directory change f)144 232.8 Q
 (ails.)-.1 E F1(printf)108 249.6 Q F0([)2.5 E F1<ad76>A F2(var)2.5 E F0
 (])A F2(format)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A .372
@@ -6701,53 +6706,53 @@ E F0 .415(returns f)144 220.8 R .415(alse if an in)-.1 F -.25(va)-.4 G
 (to the standard output under the control of the)2.872 F F2(format)2.872
 E F0 5.372(.T)C(he)-5.372 E F2(format)2.872 E F0 1.804(is a character s\
 tring which contains three types of objects: plain characters, which ar\
-e simply)144 273.6 R .159
+e simply)144 273.6 R .158
 (copied to standard output, character escape sequences, which are con)
-144 285.6 R -.15(ve)-.4 G .158(rted and copied to the stan-).15 F .499(\
+144 285.6 R -.15(ve)-.4 G .159(rted and copied to the stan-).15 F .499(\
 dard output, and format speci\214cations, each of which causes printing\
- of the ne)144 297.6 R .5(xt successi)-.15 F -.15(ve)-.25 G F2(ar)3.15 E
-(gu-)-.37 E(ment)144 309.6 Q F0 5.424(.I)C 2.924(na)-5.424 G .424
-(ddition to the standard)-2.924 F F2(printf)2.924 E F0 .424
-(\(1\) formats,)B F1(%b)2.924 E F0(causes)2.923 E F1(printf)2.923 E F0
-.423(to e)2.923 F .423(xpand backslash escape)-.15 F .976
+ of the ne)144 297.6 R .499(xt successi)-.15 F -.15(ve)-.25 G F2(ar)
+3.149 E(gu-)-.37 E(ment)144 309.6 Q F0 5.423(.I)C 2.923(na)-5.423 G .423
+(ddition to the standard)-2.923 F F2(printf)2.923 E F0 .424
+(\(1\) formats,)B F1(%b)2.924 E F0(causes)2.924 E F1(printf)2.924 E F0
+.424(to e)2.924 F .424(xpand backslash escape)-.15 F .977
 (sequences in the corresponding)144 321.6 R F2(ar)3.476 E(gument)-.37 E
 F0(\(e)3.476 E .976(xcept that)-.15 F F1(\\c)3.476 E F0 .976
-(terminates output, backslashes in)3.476 F F1<5c08>3.477 E F0(,)A F1
-(\\")3.477 E F0(,)A(and)144 333.6 Q F1(\\?)3.422 E F0 .922(are not remo)
-3.422 F -.15(ve)-.15 G .922(d, and octal escapes be).15 F .922
-(ginning with)-.15 F F1(\\0)3.422 E F0 .921
+(terminates output, backslashes in)3.476 F F1<5c08>3.476 E F0(,)A F1
+(\\")3.476 E F0(,)A(and)144 333.6 Q F1(\\?)3.421 E F0 .921(are not remo)
+3.421 F -.15(ve)-.15 G .922(d, and octal escapes be).15 F .922
+(ginning with)-.15 F F1(\\0)3.422 E F0 .922
 (may contain up to four digits\), and)3.422 F F1(%q)144 345.6 Q F0
-(causes)3.63 E F1(printf)3.63 E F0 1.13(to output the corresponding)3.63
-F F2(ar)3.631 E(gument)-.37 E F0 1.131
+(causes)3.631 E F1(printf)3.631 E F0 1.131(to output the corresponding)
+3.631 F F2(ar)3.631 E(gument)-.37 E F0 1.13
 (in a format that can be reused as shell)3.631 F(input.)144 357.6 Q(The)
-144 381.6 Q F1<ad76>2.904 E F0 .404
-(option causes the output to be assigned to the v)2.904 F(ariable)-.25 E
+144 381.6 Q F1<ad76>2.903 E F0 .404
+(option causes the output to be assigned to the v)2.903 F(ariable)-.25 E
 F2(var)2.904 E F0 .404(rather than being printed to the)2.904 F
-(standard output.)144 393.6 Q(The)144 417.6 Q F2(format)3.423 E F0 .923
-(is reused as necessary to consume all of the)3.423 F F2(ar)3.423 E
+(standard output.)144 393.6 Q(The)144 417.6 Q F2(format)3.424 E F0 .923
+(is reused as necessary to consume all of the)3.424 F F2(ar)3.423 E
 (guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F2(format)
-3.423 E F0 .924(requires more)3.424 F F2(ar)144 429.6 Q(guments)-.37 E
-F0 .033(than are supplied, the e)2.534 F .033
+3.423 E F0 .923(requires more)3.423 F F2(ar)144 429.6 Q(guments)-.37 E
+F0 .033(than are supplied, the e)2.533 F .033
 (xtra format speci\214cations beha)-.15 F .333 -.15(ve a)-.2 H 2.533(si)
-.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .033(alue or null string,)
+.15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .034(alue or null string,)
 -.25 F(as appropriate, had been supplied.)144 441.6 Q(The return v)5 E
 (alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd)
 108 458.4 Q F0([)2.5 E F1<ad6e>A F0 2.5(][)C(+)-2.5 E F2(n)A F0 2.5(][)C
 <ad>-2.5 E F2(n)A F0(])A F1(pushd)108 470.4 Q F0([)2.5 E F1<ad6e>A F0
-2.5(][)C F2(dir)-2.5 E F0(])A .639(Adds a directory to the top of the d\
-irectory stack, or rotates the stack, making the ne)144 482.4 R 3.14(wt)
--.25 G .64(op of the)-3.14 F 1.316(stack the current w)144 494.4 R 1.316
-(orking directory)-.1 F 6.316(.W)-.65 G 1.315(ith no ar)-6.716 F 1.315
-(guments, e)-.18 F 1.315(xchanges the top tw)-.15 F 3.815(od)-.1 G 1.315
-(irectories and)-3.815 F .871
+2.5(][)C F2(dir)-2.5 E F0(])A .64(Adds a directory to the top of the di\
+rectory stack, or rotates the stack, making the ne)144 482.4 R 3.139(wt)
+-.25 G .639(op of the)-3.139 F 1.315(stack the current w)144 494.4 R
+1.315(orking directory)-.1 F 6.315(.W)-.65 G 1.315(ith no ar)-6.715 F
+1.315(guments, e)-.18 F 1.316(xchanges the top tw)-.15 F 3.816(od)-.1 G
+1.316(irectories and)-3.816 F .872
 (returns 0, unless the directory stack is empty)144 506.4 R 5.871(.A)
--.65 G -.18(rg)-5.871 G .872(uments, if supplied, ha).18 F 1.172 -.15
-(ve t)-.2 H .872(he follo).15 F .872(wing mean-)-.25 F(ings:)144 518.4 Q
+-.65 G -.18(rg)-5.871 G .871(uments, if supplied, ha).18 F 1.171 -.15
+(ve t)-.2 H .871(he follo).15 F .871(wing mean-)-.25 F(ings:)144 518.4 Q
 F1<ad6e>144 530.4 Q F0 .902(Suppresses the normal change of directory w\
 hen adding directories to the stack, so that)24.74 F
 (only the stack is manipulated.)180 542.4 Q F1(+)144 554.4 Q F2(n)A F0
-1.267(Rotates the stack so that the)25.3 F F2(n)3.767 E F0 1.268
-(th directory \(counting from the left of the list sho)B 1.268(wn by)
+1.268(Rotates the stack so that the)25.3 F F2(n)3.768 E F0 1.267
+(th directory \(counting from the left of the list sho)B 1.267(wn by)
 -.25 F F1(dirs)180 566.4 Q F0 2.5(,s)C
 (tarting with zero\) is at the top.)-2.5 E F1<ad>144 578.4 Q F2(n)A F0
 .92(Rotates the stack so that the)25.3 F F2(n)3.42 E F0 .92
@@ -6755,26 +6760,26 @@ hen adding directories to the stack, so that)24.74 F
 F F1(dirs)180 590.4 Q F0 2.5(,s)C(tarting with zero\) is at the top.)
 -2.5 E F2(dir)144.35 602.4 Q F0(Adds)23.98 E F2(dir)2.85 E F0
 (to the directory stack at the top, making it the ne)3.23 E 2.5(wc)-.25
-G(urrent w)-2.5 E(orking directory)-.1 E(.)-.65 E .488(If the)144 619.2
-R F1(pushd)2.988 E F0 .488(command is successful, a)2.988 F F1(dirs)
-2.988 E F0 .488(is performed as well.)2.988 F .489
-(If the \214rst form is used,)5.488 F F1(pushd)2.989 E F0 1.04
-(returns 0 unless the cd to)144 631.2 R F2(dir)3.89 E F0 -.1(fa)4.27 G
-3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F1(pushd)3.539 E F0
-1.039(returns 0 unless the directory)3.539 F .846(stack is empty)144
-643.2 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent directory stack ele\
-ment is speci\214ed, or the directory change to the)-.15 F
-(speci\214ed ne)144 655.2 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E
-(ails.)-.1 E F1(pwd)108 672 Q F0([)2.5 E F1(\255LP)A F0(])A .845
+G(urrent w)-2.5 E(orking directory)-.1 E(.)-.65 E .489(If the)144 619.2
+R F1(pushd)2.989 E F0 .489(command is successful, a)2.989 F F1(dirs)
+2.988 E F0 .488(is performed as well.)2.988 F .488
+(If the \214rst form is used,)5.488 F F1(pushd)2.988 E F0 1.039
+(returns 0 unless the cd to)144 631.2 R F2(dir)3.889 E F0 -.1(fa)4.269 G
+3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F1(pushd)3.54 E F0
+1.04(returns 0 unless the directory)3.54 F .847(stack is empty)144 643.2
+R 3.347(,an)-.65 G(on-e)-3.347 E .847(xistent directory stack element i\
+s speci\214ed, or the directory change to the)-.15 F(speci\214ed ne)144
+655.2 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E(ails.)-.1 E F1(pwd)108
+672 Q F0([)2.5 E F1(\255LP)A F0(])A .844
 (Print the absolute pathname of the current w)144 684 R .845
-(orking directory)-.1 F 5.844(.T)-.65 G .844
-(he pathname printed contains no)-5.844 F .181(symbolic links if the)144
+(orking directory)-.1 F 5.845(.T)-.65 G .845
+(he pathname printed contains no)-5.845 F .182(symbolic links if the)144
 696 R F1<ad50>2.681 E F0 .181(option is supplied or the)2.681 F F1 .181
 (\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1(set)
-2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264(enabled. If)
-144 708 R(the)3.264 E F1<ad4c>3.264 E F0 .763
-(option is used, the pathname printed may contain symbolic links.)3.264
-F .763(The return)5.763 F 1.36(status is 0 unless an error occurs while\
+2.681 E F0 -.2(bu)2.681 G .181(iltin command is).2 F 3.263(enabled. If)
+144 708 R(the)3.263 E F1<ad4c>3.263 E F0 .763
+(option is used, the pathname printed may contain symbolic links.)3.263
+F .764(The return)5.764 F 1.36(status is 0 unless an error occurs while\
  reading the name of the current directory or an in)144 720 R -.25(va)
 -.4 G(lid).25 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(57)200.665 E
 0 Cg EP
@@ -6791,62 +6796,62 @@ E F2(nc)2.5 E(har)-.15 E(s)-.1 E F0 2.5(][)C F1<ad70>-2.5 E F2(pr)2.5 E
 (ompt)-.45 E F0 2.5(][)C F1<ad74>-2.5 E F2(timeout)2.5 E F0 2.5(][)C F1
 <ad75>-2.5 E F2(fd)2.5 E F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E .516(\
 One line is read from the standard input, or from the \214le descriptor)
-144 112.8 R F2(fd)3.016 E F0 .516(supplied as an ar)3.016 F .516
-(gument to)-.18 F(the)144 124.8 Q F1<ad75>2.538 E F0 .038
-(option, and the \214rst w)2.538 F .038(ord is assigned to the \214rst)
--.1 F F2(name)2.539 E F0 2.539(,t).18 G .039(he second w)-2.539 F .039
-(ord to the second)-.1 F F2(name)2.539 E F0(,).18 E .42
+144 112.8 R F2(fd)3.016 E F0 .516(supplied as an ar)3.016 F .517
+(gument to)-.18 F(the)144 124.8 Q F1<ad75>2.539 E F0 .039
+(option, and the \214rst w)2.539 F .038(ord is assigned to the \214rst)
+-.1 F F2(name)2.538 E F0 2.538(,t).18 G .038(he second w)-2.538 F .038
+(ord to the second)-.1 F F2(name)2.538 E F0(,).18 E .42
 (and so on, with lefto)144 136.8 R -.15(ve)-.15 G 2.92(rw).15 G .42
 (ords and their interv)-3.02 F .42
 (ening separators assigned to the last)-.15 F F2(name)2.92 E F0 5.42(.I)
-.18 G 2.92(ft)-5.42 G(here)-2.92 E .54(are fe)144 148.8 R .54(wer w)-.25
-F .541(ords read from the input stream than names, the remaining names \
-are assigned empty)-.1 F -.25(va)144 160.8 S 2.511(lues. The).25 F .011
-(characters in)2.511 F/F3 9/Times-Bold@0 SF(IFS)2.511 E F0 .011
+.18 G 2.92(ft)-5.42 G(here)-2.92 E .541(are fe)144 148.8 R .541(wer w)
+-.25 F .541(ords read from the input stream than names, the remaining n\
+ames are assigned empty)-.1 F -.25(va)144 160.8 S 2.51(lues. The).25 F
+.011(characters in)2.511 F/F3 9/Times-Bold@0 SF(IFS)2.511 E F0 .011
 (are used to split the line into w)2.261 F 2.511(ords. The)-.1 F .011
-(backslash character \()2.511 F F1(\\)A F0 2.51(\)m)C(ay)-2.51 E 1.89
-(be used to remo)144 172.8 R 2.19 -.15(ve a)-.15 H 2.19 -.15(ny s).15 H
-1.891(pecial meaning for the ne).15 F 1.891
+(backslash character \()2.511 F F1(\\)A F0 2.511(\)m)C(ay)-2.511 E 1.891
+(be used to remo)144 172.8 R 2.191 -.15(ve a)-.15 H 2.191 -.15(ny s).15
+H 1.891(pecial meaning for the ne).15 F 1.89
 (xt character read and for line continuation.)-.15 F
 (Options, if supplied, ha)144 184.8 Q .3 -.15(ve t)-.2 H(he follo).15 E
-(wing meanings:)-.25 E F1<ad61>144 196.8 Q F2(aname)2.5 E F0 1.05(The w)
-180 208.8 R 1.049
+(wing meanings:)-.25 E F1<ad61>144 196.8 Q F2(aname)2.5 E F0 1.049
+(The w)180 208.8 R 1.049
 (ords are assigned to sequential indices of the array v)-.1 F(ariable)
--.25 E F2(aname)3.549 E F0 3.549(,s).18 G 1.049(tarting at 0.)-3.549 F
-F2(aname)180.33 220.8 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5
--.25(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0
-(ar)2.5 E(guments are ignored.)-.18 E F1<ad64>144 232.8 Q F2(delim)2.5 E
-F0(The \214rst character of)180 244.8 Q F2(delim)2.5 E F0
+-.25 E F2(aname)3.55 E F0 3.55(,s).18 G 1.05(tarting at 0.)-3.55 F F2
+(aname)180.33 220.8 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25
+(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0(ar)2.5
+E(guments are ignored.)-.18 E F1<ad64>144 232.8 Q F2(delim)2.5 E F0
+(The \214rst character of)180 244.8 Q F2(delim)2.5 E F0
 (is used to terminate the input line, rather than ne)2.5 E(wline.)-.25 E
-F1<ad65>144 256.8 Q F0 .372
+F1<ad65>144 256.8 Q F0 .373
 (If the standard input is coming from a terminal,)25.86 F F1 -.18(re)
-2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.873 E F0(abo)2.623 E
--.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G(sed)-2.873 E
+2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.872 E F0(abo)2.622 E
+-.15(ve)-.15 G 2.872(\)i).15 G 2.872(su)-2.872 G(sed)-2.872 E
 (to obtain the line.)180 268.8 Q F1<ad69>144 280.8 Q F2(te)2.5 E(xt)-.2
-E F0(If)10.78 E F1 -.18(re)2.716 G(adline).18 E F0 .216
-(is being used to read the line,)2.716 F F2(te)2.716 E(xt)-.2 E F0 .216
-(is placed into the editing b)2.716 F(uf)-.2 E .215(fer before edit-)
+E F0(If)10.78 E F1 -.18(re)2.715 G(adline).18 E F0 .216
+(is being used to read the line,)2.715 F F2(te)2.716 E(xt)-.2 E F0 .216
+(is placed into the editing b)2.716 F(uf)-.2 E .216(fer before edit-)
 -.25 F(ing be)180 292.8 Q(gins.)-.15 E F1<ad6e>144 304.8 Q F2(nc)2.5 E
-(har)-.15 E(s)-.1 E F1 -.18(re)180 316.8 S(ad).18 E F0 1.394
-(returns after reading)3.894 F F2(nc)3.894 E(har)-.15 E(s)-.1 E F0 1.395
-(characters rather than w)3.894 F 1.395(aiting for a complete line of)
+(har)-.15 E(s)-.1 E F1 -.18(re)180 316.8 S(ad).18 E F0 1.395
+(returns after reading)3.895 F F2(nc)3.895 E(har)-.15 E(s)-.1 E F0 1.395
+(characters rather than w)3.895 F 1.394(aiting for a complete line of)
 -.1 F(input.)180 328.8 Q F1<ad70>144 340.8 Q F2(pr)2.5 E(ompt)-.45 E F0
-(Display)180 352.8 Q F2(pr)3.661 E(ompt)-.45 E F0 1.161
-(on standard error)3.661 F 3.661(,w)-.4 G 1.161(ithout a trailing ne)
+(Display)180 352.8 Q F2(pr)3.66 E(ompt)-.45 E F0 1.161
+(on standard error)3.66 F 3.661(,w)-.4 G 1.161(ithout a trailing ne)
 -3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 364.8 Q
 2.5(yi)-.15 G 2.5(nput. The)-2.5 F
 (prompt is displayed only if input is coming from a terminal.)2.5 E F1
-<ad72>144 376.8 Q F0 .543(Backslash does not act as an escape character)
-25.86 F 5.543(.T)-.55 G .544(he backslash is considered to be part of)
+<ad72>144 376.8 Q F0 .544(Backslash does not act as an escape character)
+25.86 F 5.543(.T)-.55 G .543(he backslash is considered to be part of)
 -5.543 F(the line.)180 388.8 Q(In particular)5 E 2.5(,ab)-.4 G
 (ackslash-ne)-2.5 E(wline pair may not be used as a line continuation.)
 -.25 E F1<ad73>144 400.8 Q F0(Silent mode.)26.41 E
 (If input is coming from a terminal, characters are not echoed.)5 E F1
-<ad74>144 412.8 Q F2(timeout)2.5 E F0(Cause)180 424.8 Q F1 -.18(re)3.549
-G(ad).18 E F0 1.048(to time out and return f)3.549 F 1.048
+<ad74>144 412.8 Q F2(timeout)2.5 E F0(Cause)180 424.8 Q F1 -.18(re)3.548
+G(ad).18 E F0 1.048(to time out and return f)3.548 F 1.048
 (ailure if a complete line of input is not read within)-.1 F F2(timeout)
-180 436.8 Q F0(seconds.)3.496 E F2(timeout)5.996 E F0 .997
-(may be a decimal number with a fractional portion follo)3.496 F(wing)
+180 436.8 Q F0(seconds.)3.497 E F2(timeout)5.997 E F0 .997
+(may be a decimal number with a fractional portion follo)3.497 F(wing)
 -.25 E .576(the decimal point.)180 448.8 R .576(This option is only ef)
 5.576 F(fecti)-.25 E .876 -.15(ve i)-.25 H(f).15 E F1 -.18(re)3.076 G
 (ad).18 E F0 .576(is reading input from a terminal,)3.076 F .16
@@ -6854,14 +6859,14 @@ G(ad).18 E F0 1.048(to time out and return f)3.549 F 1.048
 (fect when reading from re)-.25 F .16(gular \214les.)-.15 F .16(The e)
 5.16 F .16(xit status)-.15 F(is greater than 128 if the timeout is e)180
 472.8 Q(xceeded.)-.15 E F1<ad75>144 484.8 Q F2(fd)2.5 E F0
-(Read input from \214le descriptor)14.46 E F2(fd)2.5 E F0(.)A .192
-(If no)144 501.6 R F2(names)3.052 E F0 .192
-(are supplied, the line read is assigned to the v)2.962 F(ariable)-.25 E
-F3(REPL)2.691 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .191
-(The return code is zero,)4.691 F 1.343
-(unless end-of-\214le is encountered,)144 513.6 R F1 -.18(re)3.843 G(ad)
+(Read input from \214le descriptor)14.46 E F2(fd)2.5 E F0(.)A .191
+(If no)144 501.6 R F2(names)3.051 E F0 .191
+(are supplied, the line read is assigned to the v)2.961 F(ariable)-.25 E
+F3(REPL)2.692 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .192
+(The return code is zero,)4.692 F 1.344
+(unless end-of-\214le is encountered,)144 513.6 R F1 -.18(re)3.844 G(ad)
 .18 E F0 1.343
-(times out \(in which case the return code is greater than)3.843 F
+(times out \(in which case the return code is greater than)3.844 F
 (128\), or an in)144 525.6 Q -.25(va)-.4 G
 (lid \214le descriptor is supplied as the ar).25 E(gument to)-.18 E F1
 <ad75>2.5 E F0(.)A F1 -.18(re)108 542.4 S(adonly).18 E F0([)2.5 E F1
@@ -6869,47 +6874,47 @@ F3(REPL)2.691 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A F0 .191
 F0 2.5(].)C(..])-2.5 E .77(The gi)144 554.4 R -.15(ve)-.25 G(n).15 E F2
 (names)3.27 E F0 .77(are mark)3.27 F .77(ed readonly; the v)-.1 F .77
 (alues of these)-.25 F F2(names)3.63 E F0 .77
-(may not be changed by subse-)3.54 F 1.096(quent assignment.)144 566.4 R
-1.096(If the)6.096 F F1<ad66>3.596 E F0 1.097
-(option is supplied, the functions corresponding to the)3.596 F F2
-(names)3.597 E F0 1.097(are so)3.597 F(mark)144 578.4 Q 3.334(ed. The)
+(may not be changed by subse-)3.54 F 1.097(quent assignment.)144 566.4 R
+1.097(If the)6.097 F F1<ad66>3.597 E F0 1.097
+(option is supplied, the functions corresponding to the)3.597 F F2
+(names)3.596 E F0 1.096(are so)3.596 F(mark)144 578.4 Q 3.334(ed. The)
 -.1 F F1<ad61>3.334 E F0 .834(option restricts the v)3.334 F .834
 (ariables to inde)-.25 F -.15(xe)-.15 G 3.334(da).15 G .834(rrays; the)
 -3.334 F F1<ad41>3.334 E F0 .834(option restricts the v)3.334 F(ari-)
--.25 E .537(ables to associati)144 590.4 R .837 -.15(ve a)-.25 H 3.037
+-.25 E .538(ables to associati)144 590.4 R .838 -.15(ve a)-.25 H 3.038
 (rrays. If).15 F(no)3.038 E F2(name)3.398 E F0(ar)3.218 E .538
 (guments are gi)-.18 F -.15(ve)-.25 G .538(n, or if the).15 F F1<ad70>
-3.038 E F0 .538(option is supplied, a list)3.038 F .081
-(of all readonly names is printed.)144 602.4 R(The)5.081 E F1<ad70>2.581
-E F0 .08(option causes output to be displayed in a format that may)2.581
-F 1.176(be reused as input.)144 614.4 R 1.176(If a v)6.176 F 1.176
+3.038 E F0 .537(option is supplied, a list)3.038 F .08
+(of all readonly names is printed.)144 602.4 R(The)5.08 E F1<ad70>2.58 E
+F0 .081(option causes output to be displayed in a format that may)2.58 F
+1.177(be reused as input.)144 614.4 R 1.177(If a v)6.177 F 1.176
 (ariable name is follo)-.25 F 1.176(wed by =)-.25 F F2(wor)A(d)-.37 E F0
-3.676(,t)C 1.176(he v)-3.676 F 1.177(alue of the v)-.25 F 1.177
-(ariable is set to)-.25 F F2(wor)144 626.4 Q(d)-.37 E F0 6.206(.T)C
-1.206(he return status is 0 unless an in)-6.206 F -.25(va)-.4 G 1.205
-(lid option is encountered, one of the).25 F F2(names)4.065 E F0 1.205
-(is not a)3.975 F -.25(va)144 638.4 S(lid shell v).25 E
+3.676(,t)C 1.176(he v)-3.676 F 1.176(alue of the v)-.25 F 1.176
+(ariable is set to)-.25 F F2(wor)144 626.4 Q(d)-.37 E F0 6.205(.T)C
+1.205(he return status is 0 unless an in)-6.205 F -.25(va)-.4 G 1.206
+(lid option is encountered, one of the).25 F F2(names)4.066 E F0 1.206
+(is not a)3.976 F -.25(va)144 638.4 S(lid shell v).25 E
 (ariable name, or)-.25 E F1<ad66>2.5 E F0(is supplied with a)2.5 E F2
 (name)2.86 E F0(that is not a function.)2.68 E F1 -.18(re)108 655.2 S
-(tur).18 E(n)-.15 E F0([)2.5 E F2(n)A F0(])A .586
+(tur).18 E(n)-.15 E F0([)2.5 E F2(n)A F0(])A .587
 (Causes a function to e)144 667.2 R .587(xit with the return v)-.15 F
 .587(alue speci\214ed by)-.25 F F2(n)3.087 E F0 5.587(.I).24 G(f)-5.587
-E F2(n)3.447 E F0 .587(is omitted, the return status is)3.327 F 1.335
+E F2(n)3.447 E F0 .586(is omitted, the return status is)3.327 F 1.335
 (that of the last command e)144 679.2 R -.15(xe)-.15 G 1.335
 (cuted in the function body).15 F 6.335(.I)-.65 G 3.835(fu)-6.335 G
 1.335(sed outside a function, b)-3.835 F 1.335(ut during)-.2 F -.15(exe)
 144 691.2 S .794(cution of a script by the).15 F F1(.)3.294 E F0(\()
 5.794 E F1(sour)A(ce)-.18 E F0 3.294(\)c)C .794
-(ommand, it causes the shell to stop e)-3.294 F -.15(xe)-.15 G .795
-(cuting that script).15 F .246(and return either)144 703.2 R F2(n)3.106
-E F0 .246(or the e)2.986 F .246(xit status of the last command e)-.15 F
--.15(xe)-.15 G .246(cuted within the script as the e).15 F .245
-(xit sta-)-.15 F .081(tus of the script.)144 715.2 R .082
+(ommand, it causes the shell to stop e)-3.294 F -.15(xe)-.15 G .794
+(cuting that script).15 F .245(and return either)144 703.2 R F2(n)3.105
+E F0 .246(or the e)2.985 F .246(xit status of the last command e)-.15 F
+-.15(xe)-.15 G .246(cuted within the script as the e).15 F .246
+(xit sta-)-.15 F .082(tus of the script.)144 715.2 R .082
 (If used outside a function and not during e)5.082 F -.15(xe)-.15 G .082
-(cution of a script by).15 F F1(.)2.582 E F0 2.582(,t).833 G .082
-(he return sta-)-2.582 F 2.306(tus is f)144 727.2 R 4.806(alse. An)-.1 F
-4.806(yc)-.15 G 2.305(ommand associated with the)-4.806 F F1(RETURN)
-4.805 E F0 2.305(trap is e)4.805 F -.15(xe)-.15 G 2.305(cuted before e)
+(cution of a script by).15 F F1(.)2.582 E F0 2.581(,t).833 G .081
+(he return sta-)-2.581 F 2.305(tus is f)144 727.2 R 4.805(alse. An)-.1 F
+4.805(yc)-.15 G 2.305(ommand associated with the)-4.805 F F1(RETURN)
+4.805 E F0 2.306(trap is e)4.806 F -.15(xe)-.15 G 2.306(cuted before e)
 .15 F -.15(xe)-.15 G(cution).15 E(GNU Bash-4.0)72 768 Q(2008 July 6)
 150.675 E(58)200.665 E 0 Cg EP
 %%Page: 59 59
@@ -6922,70 +6927,71 @@ SF(set)108 100.8 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5
 (][)C F1<ad6f>-2.5 E/F2 10/Times-Italic@0 SF(option)2.5 E F0 2.5(][)C F2
 (ar)-2.5 E(g)-.37 E F0(...])2.5 E F1(set)108 112.8 Q F0([)2.5 E F1
 (+abefhkmnptuvxBCEHPT)A F0 2.5(][)C F1(+o)-2.5 E F2(option)2.5 E F0 2.5
-(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144 124.8 S .835
+(][)C F2(ar)-2.5 E(g)-.37 E F0(...])2.5 E -.4(Wi)144 124.8 S .836
 (thout options, the name and v).4 F .835(alue of each shell v)-.25 F
-.836(ariable are displayed in a format that can be)-.25 F .784
+.835(ariable are displayed in a format that can be)-.25 F .784
 (reused as input for setting or resetting the currently-set v)144 136.8
-R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .783
-(riables cannot be).25 F 2.946(reset. In)144 148.8 R F2 .447(posix mode)
-2.946 F F0 2.947(,o)C .447(nly shell v)-2.947 F .447
+R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .784
+(riables cannot be).25 F 2.947(reset. In)144 148.8 R F2 .447(posix mode)
+2.947 F F0 2.947(,o)C .447(nly shell v)-2.947 F .447
 (ariables are listed.)-.25 F .447
-(The output is sorted according to the current)5.447 F 3.531
-(locale. When)144 160.8 R 1.031(options are speci\214ed, the)3.531 F
-3.531(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.53(utes. An)
--.2 F 3.53(ya)-.15 G -.18(rg)-3.53 G 1.03(uments remaining).18 F .202
+(The output is sorted according to the current)5.447 F 3.53
+(locale. When)144 160.8 R 1.031(options are speci\214ed, the)3.53 F
+3.531(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.531(utes. An)
+-.2 F 3.531(ya)-.15 G -.18(rg)-3.531 G 1.031(uments remaining).18 F .202
 (after the options are processed are treated as v)144 172.8 R .202
 (alues for the positional parameters and are assigned,)-.25 F(in order)
 144 184.8 Q 2.5(,t)-.4 G(o)-2.5 E F1($1)2.5 E F0(,)A F1($2)2.5 E F0(,)A
 F1 2.5(... $)2.5 F F2(n)A F0 5(.O)C(ptions, if speci\214ed, ha)-5 E .3
 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1<ad61>144 196.8 Q
-F0 .54(Automatically mark v)29.3 F .539
-(ariables and functions which are modi\214ed or created for e)-.25 F
-.539(xport to)-.15 F(the en)184 208.8 Q
-(vironment of subsequent commands.)-.4 E F1<ad62>144 220.8 Q F0 .131
+F0 .539(Automatically mark v)29.3 F .539
+(ariables and functions which are modi\214ed or created for e)-.25 F .54
+(xport to)-.15 F(the en)184 208.8 Q(vironment of subsequent commands.)
+-.4 E F1<ad62>144 220.8 Q F0 .132
 (Report the status of terminated background jobs immediately)28.74 F
-2.632(,r)-.65 G .132(ather than before the ne)-2.632 F(xt)-.15 E
+2.632(,r)-.65 G .131(ather than before the ne)-2.632 F(xt)-.15 E
 (primary prompt.)184 232.8 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)
 -.25 H(nly when job control is enabled.).15 E F1<ad65>144 244.8 Q F0
-1.694(Exit immediately if a)29.86 F F2 1.693(simple command)4.193 F F0
+1.693(Exit immediately if a)29.86 F F2 1.693(simple command)4.193 F F0
 (\(see)4.193 E/F3 9/Times-Bold@0 SF 1.693(SHELL GRAMMAR)4.193 F F0(abo)
-3.943 E -.15(ve)-.15 G 4.193(\)e).15 G 1.693(xits with a)-4.343 F .011
-(non-zero status.)184 256.8 R .011(The shell does not e)5.011 F .011
-(xit if the command that f)-.15 F .012(ails is part of the command)-.1 F
-.719(list immediately follo)184 268.8 R .719(wing a)-.25 F F1(while)
-3.219 E F0(or)3.219 E F1(until)3.219 E F0 -.1(ke)3.219 G(yw)-.05 E .719
-(ord, part of the test in an)-.1 F F1(if)3.218 E F0(statement,)3.218 E
-.378(part of a command e)184 280.8 R -.15(xe)-.15 G .379(cuted in a).15
+3.943 E -.15(ve)-.15 G 4.194(\)e).15 G 1.694(xits with a)-4.344 F .012
+(non-zero status.)184 256.8 R .012(The shell does not e)5.012 F .011
+(xit if the command that f)-.15 F .011(ails is part of the command)-.1 F
+.718(list immediately follo)184 268.8 R .718(wing a)-.25 F F1(while)
+3.218 E F0(or)3.218 E F1(until)3.219 E F0 -.1(ke)3.219 G(yw)-.05 E .719
+(ord, part of the test in an)-.1 F F1(if)3.219 E F0(statement,)3.219 E
+.379(part of a command e)184 280.8 R -.15(xe)-.15 G .379(cuted in a).15
 F F1(&&)2.879 E F0(or)2.879 E/F4 10/Symbol SF<efef>2.879 E F0 .379
 (list, an)2.879 F 2.879(yc)-.15 G .379(ommand in a pipeline b)-2.879 F
-.379(ut the last,)-.2 F .578(or if the command')184 292.8 R 3.078(sr)
+.378(ut the last,)-.2 F .577(or if the command')184 292.8 R 3.078(sr)
 -.55 G .578(eturn v)-3.078 F .578(alue is being in)-.25 F -.15(ve)-.4 G
-.578(rted via).15 F F1(!)3.078 E F0 5.578(.F)C .577
+.578(rted via).15 F F1(!)3.078 E F0 5.578(.F)C .578
 (ailing simple commands that)-5.728 F .402(are part of shell functions \
 or command lists enclosed in braces or parentheses satisfying)184 304.8
-R .841(the abo)184 316.8 R 1.141 -.15(ve c)-.15 H .841
-(onditions do not cause the shell to e).15 F 3.341(xit. A)-.15 F .84
-(trap on)3.34 F F1(ERR)3.34 E F0 3.34(,i)C 3.34(fs)-3.34 G .84(et, is e)
--3.34 F -.15(xe)-.15 G(cuted).15 E(before the shell e)184 328.8 Q(xits.)
--.15 E F1<ad66>144 340.8 Q F0(Disable pathname e)30.97 E(xpansion.)-.15
-E F1<ad68>144 352.8 Q F0 2.238(Remember the location of commands as the)
-28.74 F 4.738(ya)-.15 G 2.239(re look)-4.738 F 2.239(ed up for e)-.1 F
--.15(xe)-.15 G 4.739(cution. This).15 F(is)4.739 E(enabled by def)184
-364.8 Q(ault.)-.1 E F1<ad6b>144 376.8 Q F0 .514(All ar)28.74 F .514
+R .84(the abo)184 316.8 R 1.14 -.15(ve c)-.15 H .84
+(onditions do not cause the shell to e).15 F 3.341(xit. A)-.15 F .841
+(trap on)3.341 F F1(ERR)3.341 E F0 3.341(,i)C 3.341(fs)-3.341 G .841
+(et, is e)-3.341 F -.15(xe)-.15 G(cuted).15 E(before the shell e)184
+328.8 Q(xits.)-.15 E F1<ad66>144 340.8 Q F0(Disable pathname e)30.97 E
+(xpansion.)-.15 E F1<ad68>144 352.8 Q F0 2.239
+(Remember the location of commands as the)28.74 F 4.738(ya)-.15 G 2.238
+(re look)-4.738 F 2.238(ed up for e)-.1 F -.15(xe)-.15 G 4.738
+(cution. This).15 F(is)4.738 E(enabled by def)184 364.8 Q(ault.)-.1 E F1
+<ad6b>144 376.8 Q F0 .513(All ar)28.74 F .514
 (guments in the form of assignment statements are placed in the en)-.18
-F .513(vironment for a)-.4 F
+F .514(vironment for a)-.4 F
 (command, not just those that precede the command name.)184 388.8 Q F1
-<ad6d>144 400.8 Q F0 .148(Monitor mode.)25.97 F .148
-(Job control is enabled.)5.148 F .149(This option is on by def)5.148 F
-.149(ault for interacti)-.1 F .449 -.15(ve s)-.25 H(hells).15 E .637
+<ad6d>144 400.8 Q F0 .149(Monitor mode.)25.97 F .149
+(Job control is enabled.)5.149 F .148(This option is on by def)5.149 F
+.148(ault for interacti)-.1 F .448 -.15(ve s)-.25 H(hells).15 E .636
 (on systems that support it \(see)184 412.8 R F3 .636(JOB CONTR)3.136 F
-(OL)-.27 E F0(abo)2.886 E -.15(ve)-.15 G 3.136(\). Background).15 F .636
-(processes run in a)3.136 F .641
-(separate process group and a line containing their e)184 424.8 R .642
+(OL)-.27 E F0(abo)2.886 E -.15(ve)-.15 G 3.136(\). Background).15 F .637
+(processes run in a)3.136 F .642
+(separate process group and a line containing their e)184 424.8 R .641
 (xit status is printed upon their com-)-.15 F(pletion.)184 436.8 Q F1
-<ad6e>144 448.8 Q F0 .653(Read commands b)28.74 F .653(ut do not e)-.2 F
--.15(xe)-.15 G .653(cute them.).15 F .652
-(This may be used to check a shell script for)5.653 F(syntax errors.)184
+<ad6e>144 448.8 Q F0 .652(Read commands b)28.74 F .652(ut do not e)-.2 F
+-.15(xe)-.15 G .652(cute them.).15 F .653
+(This may be used to check a shell script for)5.652 F(syntax errors.)184
 460.8 Q(This is ignored by interacti)5 E .3 -.15(ve s)-.25 H(hells.).15
 E F1<ad6f>144 472.8 Q F2(option\255name)2.5 E F0(The)184 484.8 Q F2
 (option\255name)2.5 E F0(can be one of the follo)2.5 E(wing:)-.25 E F1
@@ -7001,14 +7007,14 @@ F1<ad45>2.5 E F0(.)A F1(functrace)184 592.8 Q F0(Same as)224 604.8 Q F1
 <ad54>2.5 E F0(.)A F1(err)184 616.8 Q(exit)-.18 E F0(Same as)11.31 E F1
 <ad65>2.5 E F0(.)A F1(hashall)184 628.8 Q F0(Same as)9.43 E F1<ad68>2.5
 E F0(.)A F1(histexpand)184 640.8 Q F0(Same as)224 652.8 Q F1<ad48>2.5 E
-F0(.)A F1(history)184 664.8 Q F0 .586(Enable command history)10 F 3.087
+F0(.)A F1(history)184 664.8 Q F0 .587(Enable command history)10 F 3.087
 (,a)-.65 G 3.087(sd)-3.087 G .587(escribed abo)-3.087 F .887 -.15(ve u)
 -.15 H(nder).15 E F3(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F5 9
 /Times-Roman@0 SF(.)A F0 .587(This option is)5.087 F(on by def)224 676.8
 Q(ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184
-688.8 Q(eeof)-.18 E F0 1.657(The ef)224 700.8 R 1.657
+688.8 Q(eeof)-.18 E F0 1.656(The ef)224 700.8 R 1.656
 (fect is as if the shell command)-.25 F/F6 10/Courier@0 SF(IGNOREEOF=10)
-4.156 E F0 1.656(had been e)4.156 F -.15(xe)-.15 G(cuted).15 E(\(see)224
+4.157 E F0 1.657(had been e)4.157 F -.15(xe)-.15 G(cuted).15 E(\(see)224
 712.8 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G
 (\).).15 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(59)200.665 E 0 Cg
 EP
@@ -7026,14 +7032,14 @@ F0(.)A F1(nolog)5 E F0(Currently ignored.)2.5 E F1(notify)184 168 Q F0
 (Same as)15 E F1<ad62>2.5 E F0(.)A F1(nounset)184 180 Q F0(Same as)6.66
 E F1<ad75>2.5 E F0(.)A F1(onecmd)184 192 Q F0(Same as)6.67 E F1<ad74>2.5
 E F0(.)A F1(ph)184 204 Q(ysical)-.15 E F0(Same as)5.14 E F1<ad50>2.5 E
-F0(.)A F1(pipefail)184 216 Q F0 1.029(If set, the return v)7.77 F 1.029
-(alue of a pipeline is the v)-.25 F 1.03
-(alue of the last \(rightmost\) com-)-.25 F 1.137(mand to e)224 228 R
+F0(.)A F1(pipefail)184 216 Q F0 1.03(If set, the return v)7.77 F 1.029
+(alue of a pipeline is the v)-.25 F 1.029
+(alue of the last \(rightmost\) com-)-.25 F 1.136(mand to e)224 228 R
 1.136
 (xit with a non-zero status, or zero if all commands in the pipeline)
 -.15 F -.15(ex)224 240 S(it successfully).15 E 5(.T)-.65 G
 (his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 252 Q F0
-2.09(Change the beha)17.77 F 2.091(vior of)-.2 F F1(bash)4.591 E F0
+2.091(Change the beha)17.77 F 2.091(vior of)-.2 F F1(bash)4.591 E F0
 2.091(where the def)4.591 F 2.091(ault operation dif)-.1 F 2.091
 (fers from the)-.25 F(POSIX standard to match the standard \()224 264 Q
 /F2 10/Times-Italic@0 SF(posix mode)A F0(\).)A F1(pri)184 276 Q(vileged)
@@ -7041,37 +7047,37 @@ F0(.)A F1(pipefail)184 216 Q F0 1.029(If set, the return v)7.77 F 1.029
 (rbose).1 E F0(Same as)7.33 E F1<ad76>2.5 E F0(.)A F1(vi)184 312 Q F0
 (Use a vi-style command line editing interf)32.22 E(ace.)-.1 E F1
 (xtrace)184 324 Q F0(Same as)13.35 E F1<ad78>2.5 E F0(.)A(If)184 342 Q
-F1<ad6f>3.053 E F0 .553(is supplied with no)3.053 F F2(option\255name)
-3.053 E F0 3.053(,t)C .553(he v)-3.053 F .552
-(alues of the current options are printed.)-.25 F(If)5.552 E F1(+o)184
-354 Q F0 1.071(is supplied with no)3.571 F F2(option\255name)3.571 E F0
-3.571(,as)C 1.071(eries of)-3.571 F F1(set)3.572 E F0 1.072
-(commands to recreate the current)3.572 F
+F1<ad6f>3.052 E F0 .552(is supplied with no)3.052 F F2(option\255name)
+3.053 E F0 3.053(,t)C .553(he v)-3.053 F .553
+(alues of the current options are printed.)-.25 F(If)5.553 E F1(+o)184
+354 Q F0 1.072(is supplied with no)3.572 F F2(option\255name)3.572 E F0
+3.572(,a)C 1.071(series of)-.001 F F1(set)3.571 E F0 1.071
+(commands to recreate the current)3.571 F
 (option settings is displayed on the standard output.)184 366 Q F1<ad70>
-144 378 Q F0 -.45(Tu)28.74 G 1.072(rn on).45 F F2(privile)4.822 E -.1
-(ge)-.4 G(d).1 E F0 3.572(mode. In)4.342 F 1.072(this mode, the)3.572 F
+144 378 Q F0 -.45(Tu)28.74 G 1.071(rn on).45 F F2(privile)4.821 E -.1
+(ge)-.4 G(d).1 E F0 3.572(mode. In)4.341 F 1.072(this mode, the)3.572 F
 /F3 9/Times-Bold@0 SF($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV)
--.27 E F0 1.071(\214les are not pro-)3.322 F 1.705
+-.27 E F0 1.072(\214les are not pro-)3.322 F 1.705
 (cessed, shell functions are not inherited from the en)184 390 R 1.705
-(vironment, and the)-.4 F F3(SHELLOPTS)4.206 E F0 -.25(va)184 402 S .019
+(vironment, and the)-.4 F F3(SHELLOPTS)4.205 E F0 -.25(va)184 402 S .018
 (riable, if it appears in the en).25 F .019(vironment, is ignored.)-.4 F
-.018(If the shell is started with the ef)5.019 F(fec-)-.25 E(ti)184 414
-Q 1.158 -.15(ve u)-.25 H .859
+.019(If the shell is started with the ef)5.019 F(fec-)-.25 E(ti)184 414
+Q 1.159 -.15(ve u)-.25 H .859
 (ser \(group\) id not equal to the real user \(group\) id, and the).15 F
-F1<ad70>3.359 E F0 .859(option is not sup-)3.359 F .294
+F1<ad70>3.359 E F0 .858(option is not sup-)3.359 F .293
 (plied, these actions are tak)184 426 R .293(en and the ef)-.1 F(fecti)
 -.25 E .593 -.15(ve u)-.25 H .293(ser id is set to the real user id.).15
-F .293(If the)5.293 F F1<ad70>2.793 E F0 1.195
+F .294(If the)5.294 F F1<ad70>2.794 E F0 1.196
 (option is supplied at startup, the ef)184 438 R(fecti)-.25 E 1.495 -.15
-(ve u)-.25 H 1.195(ser id is not reset.).15 F -.45(Tu)6.196 G 1.196
+(ve u)-.25 H 1.195(ser id is not reset.).15 F -.45(Tu)6.195 G 1.195
 (rning this option of).45 F(f)-.25 E(causes the ef)184 450 Q(fecti)-.25
 E .3 -.15(ve u)-.25 H
 (ser and group ids to be set to the real user and group ids.).15 E F1
 <ad74>144 462 Q F0(Exit after reading and e)30.97 E -.15(xe)-.15 G
-(cuting one command.).15 E F1<ad75>144 474 Q F0 -.35(Tr)28.74 G .445
+(cuting one command.).15 E F1<ad75>144 474 Q F0 -.35(Tr)28.74 G .444
 (eat unset v).35 F .444
 (ariables as an error when performing parameter e)-.25 F 2.944
-(xpansion. If)-.15 F -.15(ex)2.944 G .444(pansion is).15 F .519
+(xpansion. If)-.15 F -.15(ex)2.945 G .445(pansion is).15 F .52
 (attempted on an unset v)184 486 R .519
 (ariable, the shell prints an error message, and, if not interacti)-.25
 F -.15(ve)-.25 G(,).15 E -.15(ex)184 498 S(its with a non-zero status.)
@@ -7079,37 +7085,37 @@ F -.15(ve)-.25 G(,).15 E -.15(ex)184 498 S(its with a non-zero status.)
 -.15 G(re read.)-2.5 E F1<ad78>144 522 Q F0 .315(After e)29.3 F .315
 (xpanding each)-.15 F F2 .315(simple command)2.815 F F0(,)A F1 -.25(fo)
 2.815 G(r).25 E F0(command,)2.815 E F1(case)2.815 E F0(command,)2.815 E
-F1(select)2.815 E F0(command,)2.815 E 1.235(or arithmetic)184 534 R F1
+F1(select)2.815 E F0(command,)2.815 E 1.236(or arithmetic)184 534 R F1
 -.25(fo)3.736 G(r).25 E F0 1.236(command, display the e)3.736 F 1.236
 (xpanded v)-.15 F 1.236(alue of)-.25 F F3(PS4)3.736 E/F4 9/Times-Roman@0
 SF(,)A F0(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184
 546 Q(xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E
-F1<ad42>144 558 Q F0 2.579(The shell performs brace e)27.63 F 2.578
+F1<ad42>144 558 Q F0 2.578(The shell performs brace e)27.63 F 2.578
 (xpansion \(see)-.15 F F1 2.578(Brace Expansion)5.078 F F0(abo)5.078 E
--.15(ve)-.15 G 5.078(\). This).15 F 2.578(is on by)5.078 F(def)184 570 Q
-(ault.)-.1 E F1<ad43>144 582 Q F0 .213(If set,)27.08 F F1(bash)2.713 E
-F0 .213(does not o)2.713 F -.15(ve)-.15 G .214(rwrite an e).15 F .214
+-.15(ve)-.15 G 5.079(\). This).15 F 2.579(is on by)5.079 F(def)184 570 Q
+(ault.)-.1 E F1<ad43>144 582 Q F0 .214(If set,)27.08 F F1(bash)2.714 E
+F0 .214(does not o)2.714 F -.15(ve)-.15 G .214(rwrite an e).15 F .214
 (xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0
-2.714(,a)C(nd)-2.714 E F1(<>)2.714 E F0 .214(redirection opera-)2.714 F
-3.054(tors. This)184 594 R .553(may be o)3.053 F -.15(ve)-.15 G .553
+2.713(,a)C(nd)-2.713 E F1(<>)2.713 E F0 .213(redirection opera-)2.713 F
+3.053(tors. This)184 594 R .553(may be o)3.053 F -.15(ve)-.15 G .553
 (rridden when creating output \214les by using the redirection opera-)
 .15 F(tor)184 606 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1
-<ad45>144 618 Q F0 .103(If set, an)27.63 F 2.603(yt)-.15 G .103(rap on)
--2.603 F F1(ERR)2.603 E F0 .104
-(is inherited by shell functions, command substitutions, and com-)2.603
-F .839(mands e)184 630 R -.15(xe)-.15 G .839(cuted in a subshell en).15
-F 3.339(vironment. The)-.4 F F1(ERR)3.338 E F0 .838
-(trap is normally not inherited in)3.338 F(such cases.)184 642 Q F1
-<ad48>144 654 Q F0(Enable)26.52 E F1(!)3.031 E F0 .531
-(style history substitution.)5.531 F .531(This option is on by def)5.531
-F .532(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 666 Q -.15
-(ve)-.25 G(.).15 E F1<ad50>144 678 Q F0 1.165
+<ad45>144 618 Q F0 .104(If set, an)27.63 F 2.604(yt)-.15 G .104(rap on)
+-2.604 F F1(ERR)2.604 E F0 .103
+(is inherited by shell functions, command substitutions, and com-)2.604
+F .838(mands e)184 630 R -.15(xe)-.15 G .838(cuted in a subshell en).15
+F 3.338(vironment. The)-.4 F F1(ERR)3.338 E F0 .839
+(trap is normally not inherited in)3.339 F(such cases.)184 642 Q F1
+<ad48>144 654 Q F0(Enable)26.52 E F1(!)3.032 E F0 .532
+(style history substitution.)5.532 F .531(This option is on by def)5.532
+F .531(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 666 Q -.15
+(ve)-.25 G(.).15 E F1<ad50>144 678 Q F0 1.164
 (If set, the shell does not follo)28.19 F 3.664(ws)-.25 G 1.164
-(ymbolic links when e)-3.664 F -.15(xe)-.15 G 1.164
-(cuting commands such as).15 F F1(cd)3.664 E F0 2.821
+(ymbolic links when e)-3.664 F -.15(xe)-.15 G 1.165
+(cuting commands such as).15 F F1(cd)3.665 E F0 2.822
 (that change the current w)184 690 R 2.822(orking directory)-.1 F 7.822
-(.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.822
-(ysical directory structure)-.05 F 2.686(instead. By)184 702 R(def)2.686
+(.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.821
+(ysical directory structure)-.05 F 2.685(instead. By)184 702 R(def)2.685
 E(ault,)-.1 E F1(bash)2.686 E F0(follo)2.686 E .186
 (ws the logical chain of directories when performing com-)-.25 F
 (mands which change the current directory)184 714 Q(.)-.65 E
@@ -7126,42 +7132,42 @@ F1(RETURN)3.39 E F0 .89(are inherited by shell functions, command)3.39 F
 (cuted in a subshell en).15 F 4.432(vironment. The)-.4 F F1(DEB)4.432 E
 (UG)-.1 E F0(and)4.432 E F1(RETURN)184 108 Q F0
 (traps are normally not inherited in such cases.)2.5 E F1<adad>144 120 Q
-F0 .4(If no ar)28.6 F .401(guments follo)-.18 F 2.901(wt)-.25 G .401
+F0 .401(If no ar)28.6 F .401(guments follo)-.18 F 2.901(wt)-.25 G .401
 (his option, then the positional parameters are unset.)-2.901 F
-(Otherwise,)5.401 E(the positional parameters are set to the)184 132 Q
-/F2 10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5
-(ni).15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F1<ad>
-2.5 E F0(.)A F1<ad>144 144 Q F0 1.945
+(Otherwise,)5.4 E(the positional parameters are set to the)184 132 Q/F2
+10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni)
+.15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F1<ad>2.5 E
+F0(.)A F1<ad>144 144 Q F0 1.944
 (Signal the end of options, cause all remaining)34.3 F F2(ar)4.444 E(g)
--.37 E F0 4.444(st)C 4.444(ob)-4.444 G 4.444(ea)-4.444 G 1.944
-(ssigned to the positional)-4.444 F 3.445(parameters. The)184 156 R F1
-<ad78>3.445 E F0(and)3.445 E F1<ad76>3.445 E F0 .945
-(options are turned of)3.445 F 3.445(f. If)-.25 F .946(there are no)
-3.445 F F2(ar)3.446 E(g)-.37 E F0 .946(s, the positional)B
+-.37 E F0 4.444(st)C 4.444(ob)-4.444 G 4.445(ea)-4.444 G 1.945
+(ssigned to the positional)-4.445 F 3.446(parameters. The)184 156 R F1
+<ad78>3.446 E F0(and)3.446 E F1<ad76>3.446 E F0 .945
+(options are turned of)3.446 F 3.445(f. If)-.25 F .945(there are no)
+3.445 F F2(ar)3.445 E(g)-.37 E F0 .945(s, the positional)B
 (parameters remain unchanged.)184 168 Q .425(The options are of)144
 184.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425
 (ault unless otherwise noted.)-.1 F .425
-(Using + rather than \255 causes these options)5.425 F .177
-(to be turned of)144 196.8 R 2.677(f. The)-.25 F .178
+(Using + rather than \255 causes these options)5.425 F .178
+(to be turned of)144 196.8 R 2.678(f. The)-.25 F .178
 (options can also be speci\214ed as ar)2.678 F .178(guments to an in)
--.18 F -.2(vo)-.4 G .178(cation of the shell.).2 F(The)5.178 E .066
+-.18 F -.2(vo)-.4 G .177(cation of the shell.).2 F(The)5.177 E .066
 (current set of options may be found in)144 208.8 R F1<24ad>2.566 E F0
 5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)-.1 G .066
-(ys true unless an in).1 F -.25(va)-.4 G .066(lid option).25 F
+(ys true unless an in).1 F -.25(va)-.4 G .067(lid option).25 F
 (is encountered.)144 220.8 Q F1(shift)108 237.6 Q F0([)2.5 E F2(n)A F0
-(])A .428(The positional parameters from)144 249.6 R F2(n)2.928 E F0
-.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.429 G
-.429(rameters represented by the num-).15 F(bers)144 261.6 Q F1($#)2.583
-E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0<ad>A F2(n)A F0 .083
-(+1 are unset.)B F2(n)5.443 E F0 .083(must be a non-ne)2.823 F -.05(ga)
--.15 G(ti).05 E .382 -.15(ve n)-.25 H .082(umber less than or equal to)
-.15 F F1($#)2.582 E F0 5.082(.I)C(f)-5.082 E F2(n)2.942 E F0 .06
+(])A .429(The positional parameters from)144 249.6 R F2(n)2.929 E F0
+.429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.428 G
+.428(rameters represented by the num-).15 F(bers)144 261.6 Q F1($#)2.582
+E F0(do)2.582 E .082(wn to)-.25 F F1($#)2.582 E F0<ad>A F2(n)A F0 .082
+(+1 are unset.)B F2(n)5.442 E F0 .082(must be a non-ne)2.822 F -.05(ga)
+-.15 G(ti).05 E .383 -.15(ve n)-.25 H .083(umber less than or equal to)
+.15 F F1($#)2.583 E F0 5.083(.I)C(f)-5.083 E F2(n)2.943 E F0 .06
 (is 0, no parameters are changed.)144 273.6 R(If)5.06 E F2(n)2.92 E F0
 .06(is not gi)2.8 F -.15(ve)-.25 G .06(n, it is assumed to be 1.).15 F
 (If)5.06 E F2(n)2.92 E F0 .06(is greater than)2.8 F F1($#)2.56 E F0 2.56
-(,t)C(he)-2.56 E .144(positional parameters are not changed.)144 285.6 R
-.144(The return status is greater than zero if)5.144 F F2(n)3.003 E F0
-.143(is greater than)2.883 F F1($#)2.643 E F0
+(,t)C(he)-2.56 E .143(positional parameters are not changed.)144 285.6 R
+.144(The return status is greater than zero if)5.143 F F2(n)3.004 E F0
+.144(is greater than)2.884 F F1($#)2.644 E F0
 (or less than zero; otherwise 0.)144 297.6 Q F1(shopt)108 314.4 Q F0([)
 2.5 E F1(\255pqsu)A F0 2.5(][)C F1<ad6f>-2.5 E F0 2.5(][)C F2(optname)
 -2.5 E F0(...])2.5 E -.8(To)144 326.4 S .222(ggle the v).8 F .222
@@ -7169,64 +7175,64 @@ E F0(do)2.583 E .083(wn to)-.25 F F1($#)2.583 E F0<ad>A F2(n)A F0 .083
 (vior)-.2 E 5.222(.W)-.55 G .222(ith no options, or with the)-5.622 F F1
 <ad70>2.722 E F0 .721(option, a list of all settable options is display\
 ed, with an indication of whether or not each is set.)144 338.4 R(The)
-144 350.4 Q F1<ad70>2.827 E F0 .327(option causes output to be displaye\
-d in a form that may be reused as input.)2.827 F .328(Other options)
-5.328 F(ha)144 362.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)
+144 350.4 Q F1<ad70>2.828 E F0 .327(option causes output to be displaye\
+d in a form that may be reused as input.)2.828 F .327(Other options)
+5.327 F(ha)144 362.4 Q .3 -.15(ve t)-.2 H(he follo).15 E(wing meanings:)
 -.25 E F1<ad73>144 374.4 Q F0(Enable \(set\) each)26.41 E F2(optname)2.5
 E F0(.)A F1<ad75>144 386.4 Q F0(Disable \(unset\) each)24.74 E F2
 (optname)2.5 E F0(.)A F1<ad71>144 398.4 Q F0 .003(Suppresses normal out\
 put \(quiet mode\); the return status indicates whether the)24.74 F F2
-(optname)2.503 E F0(is)2.503 E .255(set or unset.)180 410.4 R .255
-(If multiple)5.255 F F2(optname)2.755 E F0(ar)2.755 E .256
+(optname)2.504 E F0(is)2.504 E .256(set or unset.)180 410.4 R .256
+(If multiple)5.256 F F2(optname)2.756 E F0(ar)2.756 E .256
 (guments are gi)-.18 F -.15(ve)-.25 G 2.756(nw).15 G(ith)-2.756 E F1
-<ad71>2.756 E F0 2.756(,t)C .256(he return status is zero if)-2.756 F
+<ad71>2.756 E F0 2.755(,t)C .255(he return status is zero if)-2.755 F
 (all)180 422.4 Q F2(optnames)2.5 E F0(are enabled; non-zero otherwise.)
 2.5 E F1<ad6f>144 434.4 Q F0(Restricts the v)25.3 E(alues of)-.25 E F2
 (optname)2.5 E F0(to be those de\214ned for the)2.5 E F1<ad6f>2.5 E F0
-(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .128
-(If either)144 451.2 R F1<ad73>2.628 E F0(or)2.628 E F1<ad75>2.628 E F0
+(option to the)2.5 E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .127
+(If either)144 451.2 R F1<ad73>2.627 E F0(or)2.627 E F1<ad75>2.627 E F0
 .127(is used with no)2.627 F F2(optname)2.627 E F0(ar)2.627 E .127
-(guments, the display is limited to those options which)-.18 F 1.023
-(are set or unset, respecti)144 463.2 R -.15(ve)-.25 G(ly).15 E 6.023
-(.U)-.65 G 1.024(nless otherwise noted, the)-6.023 F F1(shopt)3.524 E F0
-1.024(options are disabled \(unset\) by)3.524 F(def)144 475.2 Q(ault.)
+(guments, the display is limited to those options which)-.18 F 1.024
+(are set or unset, respecti)144 463.2 R -.15(ve)-.25 G(ly).15 E 6.024
+(.U)-.65 G 1.024(nless otherwise noted, the)-6.024 F F1(shopt)3.523 E F0
+1.023(options are disabled \(unset\) by)3.523 F(def)144 475.2 Q(ault.)
 -.1 E 1.544(The return status when listing options is zero if all)144
-492 R F2(optnames)4.044 E F0 1.544(are enabled, non-zero otherwise.)
-4.044 F .696
+492 R F2(optnames)4.044 E F0 1.545(are enabled, non-zero otherwise.)
+4.045 F .696
 (When setting or unsetting options, the return status is zero unless an)
-144 504 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .696(alid shell)
+144 504 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695(alid shell)
 -.25 F(option.)144 516 Q(The list of)144 532.8 Q F1(shopt)2.5 E F0
-(options is:)2.5 E F1(autocd)144 550.8 Q F0 .2
+(options is:)2.5 E F1(autocd)144 550.8 Q F0 .199
 (If set, a command name that is the name of a directory is e)11.11 F
--.15(xe)-.15 G .199(cuted as if it were the ar).15 F(gu-)-.18 E
+-.15(xe)-.15 G .2(cuted as if it were the ar).15 F(gu-)-.18 E
 (ment to the)184 562.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F
 (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E
-F1(cdable_v)144 574.8 Q(ars)-.1 E F0 .155(If set, an ar)184 586.8 R .155
-(gument to the)-.18 F F1(cd)2.655 E F0 -.2(bu)2.655 G .156
+F1(cdable_v)144 574.8 Q(ars)-.1 E F0 .156(If set, an ar)184 586.8 R .156
+(gument to the)-.18 F F1(cd)2.656 E F0 -.2(bu)2.656 G .155
 (iltin command that is not a directory is assumed to be the).2 F
 (name of a v)184 598.8 Q(ariable whose v)-.25 E
 (alue is the directory to change to.)-.25 E F1(cdspell)144 610.8 Q F0
 1.055
 (If set, minor errors in the spelling of a directory component in a)
-10.55 F F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.987
-(corrected. The)184 622.8 R 1.487(errors check)3.987 F 1.487
-(ed for are transposed characters, a missing character)-.1 F 3.988(,a)
--.4 G(nd)-3.988 E .552(one character too man)184 634.8 R 4.352 -.65
+10.55 F F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988
+(corrected. The)184 622.8 R 1.488(errors check)3.988 F 1.487
+(ed for are transposed characters, a missing character)-.1 F 3.987(,a)
+-.4 G(nd)-3.987 E .552(one character too man)184 634.8 R 4.352 -.65
 (y. I)-.15 H 3.052(fac).65 G .552
 (orrection is found, the corrected \214le name is printed, and)-3.052 F
 (the command proceeds.)184 646.8 Q
 (This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.)
-.15 E F1(checkhash)144 658.8 Q F0 2.079(If set,)184 670.8 R F1(bash)
-4.579 E F0 2.079(checks that a command found in the hash table e)4.579 F
-2.08(xists before trying to)-.15 F -.15(exe)184 682.8 S(cute it.).15 E
+.15 E F1(checkhash)144 658.8 Q F0 2.08(If set,)184 670.8 R F1(bash)4.58
+E F0 2.079(checks that a command found in the hash table e)4.58 F 2.079
+(xists before trying to)-.15 F -.15(exe)184 682.8 S(cute it.).15 E
 (If a hashed command no longer e)5 E
 (xists, a normal path search is performed.)-.15 E F1(checkjobs)144 694.8
-Q F0 .449(If set,)184 706.8 R F1(bash)2.949 E F0 .449
-(lists the status of an)2.949 F 2.949(ys)-.15 G .448
-(topped and running jobs before e)-2.949 F .448(xiting an interacti)-.15
-F -.15(ve)-.25 G 3.438(shell. If)184 718.8 R(an)3.438 E 3.438(yj)-.15 G
-.938(obs are running, this causes the e)-3.438 F .938
-(xit to be deferred until a second e)-.15 F .939(xit is)-.15 F 1.456
+Q F0 .448(If set,)184 706.8 R F1(bash)2.948 E F0 .448
+(lists the status of an)2.948 F 2.949(ys)-.15 G .449
+(topped and running jobs before e)-2.949 F .449(xiting an interacti)-.15
+F -.15(ve)-.25 G 3.439(shell. If)184 718.8 R(an)3.439 E 3.439(yj)-.15 G
+.938(obs are running, this causes the e)-3.439 F .938
+(xit to be deferred until a second e)-.15 F .938(xit is)-.15 F 1.456
 (attempted without an interv)184 730.8 R 1.456(ening command \(see)-.15
 F F1 1.456(JOB CONTR)3.956 F(OL)-.3 E F0(abo)3.956 E -.15(ve)-.15 G
 3.956(\). The).15 F(shell)3.956 E(GNU Bash-4.0)72 768 Q(2008 July 6)
@@ -7238,64 +7244,64 @@ BP
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
 -.35 E(al)184 84 Q -.1(wa)-.1 G(ys postpones e).1 E(xiting if an)-.15 E
 2.5(yj)-.15 G(obs are stopped.)-2.5 E/F1 10/Times-Bold@0 SF
-(checkwinsize)144 96 Q F0 .796(If set,)184 108 R F1(bash)3.296 E F0 .796
-(checks the windo)3.296 F 3.296(ws)-.25 G .797
-(ize after each command and, if necessary)-3.296 F 3.297(,u)-.65 G .797
-(pdates the)-3.297 F -.25(va)184 120 S(lues of).25 E/F2 9/Times-Bold@0
+(checkwinsize)144 96 Q F0 .797(If set,)184 108 R F1(bash)3.297 E F0 .797
+(checks the windo)3.297 F 3.297(ws)-.25 G .796
+(ize after each command and, if necessary)-3.297 F 3.296(,u)-.65 G .796
+(pdates the)-3.296 F -.25(va)184 120 S(lues of).25 E/F2 9/Times-Bold@0
 SF(LINES)2.5 E F0(and)2.25 E F2(COLUMNS)2.5 E/F3 9/Times-Roman@0 SF(.)A
 F1(cmdhist)144 132 Q F0 1.202(If set,)6.11 F F1(bash)3.702 E F0 1.202
 (attempts to sa)3.702 F 1.502 -.15(ve a)-.2 H 1.202
 (ll lines of a multiple-line command in the same history).15 F(entry)184
 144 Q 5(.T)-.65 G(his allo)-5 E
 (ws easy re-editing of multi-line commands.)-.25 E F1(compat31)144 156 Q
-F0 .419(If set,)184 168 R F1(bash)2.919 E F0 .419(changes its beha)2.919
-F .419(vior to that of v)-.2 F .42(ersion 3.1 with respect to quoted ar)
+F0 .42(If set,)184 168 R F1(bash)2.92 E F0 .42(changes its beha)2.92 F
+.419(vior to that of v)-.2 F .419(ersion 3.1 with respect to quoted ar)
 -.15 F(guments)-.18 E(to the conditional command')184 180 Q 2.5(s=)-.55
-G 2.5(~o)-2.5 G(perator)-2.5 E(.)-.55 E F1(dirspell)144 192 Q F0 .859
-(If set,)7.77 F F1(bash)3.359 E F0 .858
-(attempts spelling correction on directory names during w)3.359 F .858
+G 2.5(~o)-2.5 G(perator)-2.5 E(.)-.55 E F1(dirspell)144 192 Q F0 .858
+(If set,)7.77 F F1(bash)3.358 E F0 .858
+(attempts spelling correction on directory names during w)3.358 F .859
 (ord completion if)-.1 F
 (the directory name initially supplied does not e)184 204 Q(xist.)-.15 E
 F1(dotglob)144 216 Q F0 .165(If set,)7.77 F F1(bash)2.665 E F0 .165
 (includes \214lenames be)2.665 F .165(ginning with a `.)-.15 F 2.665('i)
 -.7 G 2.665(nt)-2.665 G .165(he results of pathname e)-2.665 F
-(xpansion.)-.15 E F1(execfail)144 228 Q F0 1.387
-(If set, a non-interacti)7.79 F 1.687 -.15(ve s)-.25 H 1.386
+(xpansion.)-.15 E F1(execfail)144 228 Q F0 1.386
+(If set, a non-interacti)7.79 F 1.686 -.15(ve s)-.25 H 1.386
 (hell will not e).15 F 1.386(xit if it cannot e)-.15 F -.15(xe)-.15 G
-1.386(cute the \214le speci\214ed as an).15 F(ar)184 240 Q
+1.387(cute the \214le speci\214ed as an).15 F(ar)184 240 Q
 (gument to the)-.18 E F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E
 (An interacti)5 E .3 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15
 E F1(exec)2.5 E F0 -.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 252 Q F0
-.716(If set, aliases are e)184 264 R .717(xpanded as described abo)-.15
-F 1.017 -.15(ve u)-.15 H(nder).15 E F2(ALIASES)3.217 E F3(.)A F0 .717
+.717(If set, aliases are e)184 264 R .717(xpanded as described abo)-.15
+F 1.017 -.15(ve u)-.15 H(nder).15 E F2(ALIASES)3.217 E F3(.)A F0 .716
 (This option is enabled)5.217 F(by def)184 276 Q(ault for interacti)-.1
 E .3 -.15(ve s)-.25 H(hells.).15 E F1(extdeb)144 288 Q(ug)-.2 E F0
 (If set, beha)184 300 Q(vior intended for use by deb)-.2 E
-(uggers is enabled:)-.2 E F1(1.)184 312 Q F0(The)28.5 E F1<ad46>4.251 E
-F0 1.751(option to the)4.251 F F1(declar)4.251 E(e)-.18 E F0 -.2(bu)
-4.251 G 1.751(iltin displays the source \214le name and line).2 F
+(uggers is enabled:)-.2 E F1(1.)184 312 Q F0(The)28.5 E F1<ad46>4.25 E
+F0 1.75(option to the)4.25 F F1(declar)4.251 E(e)-.18 E F0 -.2(bu)4.251
+G 1.751(iltin displays the source \214le name and line).2 F
 (number corresponding to each function name supplied as an ar)220 324 Q
 (gument.)-.18 E F1(2.)184 336 Q F0 1.667(If the command run by the)28.5
 F F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)4.167 F
 1.667(alue, the ne)-.25 F(xt)-.15 E(command is skipped and not e)220 348
-Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 360 Q F0 .841
-(If the command run by the)28.5 F F1(DEB)3.341 E(UG)-.1 E F0 .841
-(trap returns a v)3.341 F .84(alue of 2, and the shell is)-.25 F -.15
+Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 360 Q F0 .84
+(If the command run by the)28.5 F F1(DEB)3.34 E(UG)-.1 E F0 .841
+(trap returns a v)3.341 F .841(alue of 2, and the shell is)-.25 F -.15
 (exe)220 372 S .488
 (cuting in a subroutine \(a shell function or a shell script e).15 F
 -.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E F1
 (sour)220 384 Q(ce)-.18 E F0 -.2(bu)2.5 G(iltins\), a call to).2 E F1
 -.18(re)2.5 G(tur).18 E(n)-.15 E F0(is simulated.)2.5 E F1 26(4. B)184
-396 R(ASH_ARGC)-.3 E F0(and)3.776 E F1 -.3(BA)3.776 G(SH_ARGV).3 E F0
-1.275(are updated as described in their descrip-)3.776 F(tions abo)220
+396 R(ASH_ARGC)-.3 E F0(and)3.775 E F1 -.3(BA)3.775 G(SH_ARGV).3 E F0
+1.276(are updated as described in their descrip-)3.775 F(tions abo)220
 408 Q -.15(ve)-.15 G(.).15 E F1(5.)184 420 Q F0 1.359
 (Function tracing is enabled:)28.5 F 1.359
 (command substitution, shell functions, and sub-)6.359 F(shells in)220
 432 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E/F4 10
 /Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1
 (DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0(traps.)2.5 E F1(6.)
-184 444 Q F0 .805(Error tracing is enabled:)28.5 F .804
-(command substitution, shell functions, and subshells)5.805 F(in)220 456
+184 444 Q F0 .804(Error tracing is enabled:)28.5 F .805
+(command substitution, shell functions, and subshells)5.804 F(in)220 456
 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F4
 (command)2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E(OR)-.3 E F0
 (trap.)2.5 E F1(extglob)144 468 Q F0 .4(If set, the e)8.89 F .4
@@ -7307,29 +7313,29 @@ E F0(")A F4(string)A F0 4.973("q)C 2.473(uoting is performed within)
 -4.973 F F1(${)4.973 E F4(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G
 (pansions).15 E(enclosed in double quotes.)184 516 Q
 (This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 528 Q F0
-1.424(If set, patterns which f)7.77 F 1.425
-(ail to match \214lenames during pathname e)-.1 F 1.425
+1.425(If set, patterns which f)7.77 F 1.425
+(ail to match \214lenames during pathname e)-.1 F 1.424
 (xpansion result in an)-.15 F -.15(ex)184 540 S(pansion error).15 E(.)
 -.55 E F1 -.25(fo)144 552 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0
 .585(If set, the suf)184 564 R<8c78>-.25 E .585(es speci\214ed by the)
 -.15 F F1(FIGNORE)3.085 E F0 .585(shell v)3.085 F .585(ariable cause w)
 -.25 F .585(ords to be ignored)-.1 F .32(when performing w)184 576 R .32
 (ord completion e)-.1 F -.15(ve)-.25 G 2.82(ni).15 G 2.82(ft)-2.82 G .32
-(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 3.33
-(pletions. See)184 588 R F2 .83(SHELL V)3.33 F(ARIABLES)-1.215 E F0(abo)
-3.08 E 1.13 -.15(ve f)-.15 H .829(or a description of).15 F F1(FIGNORE)
-3.329 E F0 5.829(.T)C .829(his option)-5.829 F(is enabled by def)184 600
-Q(ault.)-.1 E F1(globstar)144 612 Q F0 .439(If set, the pattern)5 F F1
-(**)2.939 E F0 .439(used in a \214lename e)2.939 F .439(xpansion conte)
--.15 F .44(xt will match a \214les and zero or)-.15 F 1.298
+(he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 3.329
+(pletions. See)184 588 R F2 .829(SHELL V)3.329 F(ARIABLES)-1.215 E F0
+(abo)3.079 E 1.129 -.15(ve f)-.15 H .83(or a description of).15 F F1
+(FIGNORE)3.33 E F0 5.83(.T)C .83(his option)-5.83 F(is enabled by def)
+184 600 Q(ault.)-.1 E F1(globstar)144 612 Q F0 .44(If set, the pattern)5
+F F1(**)2.94 E F0 .44(used in a \214lename e)2.94 F .439(xpansion conte)
+-.15 F .439(xt will match a \214les and zero or)-.15 F 1.297
 (more directories and subdirectories.)184 624 R 1.298
-(If the pattern is follo)6.298 F 1.298(wed by a)-.25 F F1(/)3.797 E F0
-3.797(,o)C 1.297(nly directories)-3.797 F(and subdirectories match.)184
+(If the pattern is follo)6.297 F 1.298(wed by a)-.25 F F1(/)3.798 E F0
+3.798(,o)C 1.298(nly directories)-3.798 F(and subdirectories match.)184
 636 Q F1(gnu_errfmt)144 648 Q F0(If set, shell error messages are writt\
 en in the standard GNU error message format.)184 660 Q F1(histappend)144
-672 Q F0 .383
+672 Q F0 .384
 (If set, the history list is appended to the \214le named by the v)184
-684 R .384(alue of the)-.25 F F1(HISTFILE)2.884 E F0 -.25(va)2.884 G
+684 R .383(alue of the)-.25 F F1(HISTFILE)2.883 E F0 -.25(va)2.883 G
 (ri-).25 E(able when the shell e)184 696 Q(xits, rather than o)-.15 E
 -.15(ve)-.15 G(rwriting the \214le.).15 E(GNU Bash-4.0)72 768 Q
 (2008 July 6)150.675 E(62)200.665 E 0 Cg EP
@@ -7338,23 +7344,23 @@ en in the standard GNU error message format.)184 660 Q F1(histappend)144
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E/F1 10/Times-Bold@0 SF(histr)144 84 Q(eedit)-.18 E F0 .576
-(If set, and)184 96 R F1 -.18(re)3.076 G(adline).18 E F0 .575
-(is being used, a user is gi)3.076 F -.15(ve)-.25 G 3.075(nt).15 G .575
-(he opportunity to re-edit a f)-3.075 F .575(ailed his-)-.1 F
-(tory substitution.)184 108 Q F1(histv)144 120 Q(erify)-.1 E F0 .402
+-.35 E/F1 10/Times-Bold@0 SF(histr)144 84 Q(eedit)-.18 E F0 .575
+(If set, and)184 96 R F1 -.18(re)3.075 G(adline).18 E F0 .575
+(is being used, a user is gi)3.075 F -.15(ve)-.25 G 3.075(nt).15 G .576
+(he opportunity to re-edit a f)-3.075 F .576(ailed his-)-.1 F
+(tory substitution.)184 108 Q F1(histv)144 120 Q(erify)-.1 E F0 .403
 (If set, and)184 132 R F1 -.18(re)2.903 G(adline).18 E F0 .403
 (is being used, the results of history substitution are not immediately)
-2.903 F .662(passed to the shell parser)184 144 R 5.662(.I)-.55 G .661
-(nstead, the resulting line is loaded into the)-5.662 F F1 -.18(re)3.161
-G(adline).18 E F0(editing)3.161 E -.2(bu)184 156 S -.25(ff).2 G(er).25 E
+2.903 F .661(passed to the shell parser)184 144 R 5.661(.I)-.55 G .662
+(nstead, the resulting line is loaded into the)-5.661 F F1 -.18(re)3.162
+G(adline).18 E F0(editing)3.162 E -.2(bu)184 156 S -.25(ff).2 G(er).25 E
 2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F1
-(hostcomplete)144 168 Q F0 1.181(If set, and)184 180 R F1 -.18(re)3.681
-G(adline).18 E F0 1.181(is being used,)3.681 F F1(bash)3.682 E F0 1.182
-(will attempt to perform hostname completion)3.682 F 1.381(when a w)184
-192 R 1.381(ord containing a)-.1 F F1(@)3.881 E F0 1.381
-(is being completed \(see)3.881 F F1(Completing)3.88 E F0(under)3.88 E
-/F2 9/Times-Bold@0 SF(READLINE)3.88 E F0(abo)184 204 Q -.15(ve)-.15 G
+(hostcomplete)144 168 Q F0 1.182(If set, and)184 180 R F1 -.18(re)3.682
+G(adline).18 E F0 1.182(is being used,)3.682 F F1(bash)3.682 E F0 1.181
+(will attempt to perform hostname completion)3.681 F 1.38(when a w)184
+192 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381
+(is being completed \(see)3.881 F F1(Completing)3.881 E F0(under)3.881 E
+/F2 9/Times-Bold@0 SF(READLINE)3.881 E F0(abo)184 204 Q -.15(ve)-.15 G
 2.5(\). This).15 F(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144
 216 Q F0(If set,)184 228 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)
 2.5 E F0(to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H
@@ -7364,52 +7370,52 @@ G(adline).18 E F0 1.181(is being used,)3.681 F F1(bash)3.682 E F0 1.182
 (to cause that w)2.83 F .33(ord and all remaining characters on)-.1 F
 .967(that line to be ignored in an interacti)184 264 R 1.267 -.15(ve s)
 -.25 H .967(hell \(see).15 F F2(COMMENTS)3.467 E F0(abo)3.217 E -.15(ve)
--.15 G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184
-276 Q(ault.)-.1 E F1(lithist)144 288 Q F0 .654(If set, and the)15.55 F
-F1(cmdhist)3.154 E F0 .654
+-.15 G 3.467(\). This).15 F .968(option is)3.468 F(enabled by def)184
+276 Q(ault.)-.1 E F1(lithist)144 288 Q F0 .655(If set, and the)15.55 F
+F1(cmdhist)3.155 E F0 .654
 (option is enabled, multi-line commands are sa)3.154 F -.15(ve)-.2 G
-3.155(dt).15 G 3.155(ot)-3.155 G .655(he history)-3.155 F
+3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F
 (with embedded ne)184 300 Q
 (wlines rather than using semicolon separators where possible.)-.25 E F1
 (login_shell)144 312 Q F0 .486
 (The shell sets this option if it is started as a login shell \(see)184
-324 R F2(INV)2.986 E(OCA)-.405 E(TION)-.855 E F0(abo)2.736 E -.15(ve)
--.15 G 2.986(\). The).15 F -.25(va)184 336 S(lue may not be changed.).25
-E F1(mailwar)144 348 Q(n)-.15 E F0 .814(If set, and a \214le that)184
-360 R F1(bash)3.314 E F0 .815
-(is checking for mail has been accessed since the last time it)3.314 F
+324 R F2(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0(abo)2.737 E -.15(ve)
+-.15 G 2.987(\). The).15 F -.25(va)184 336 S(lue may not be changed.).25
+E F1(mailwar)144 348 Q(n)-.15 E F0 .815(If set, and a \214le that)184
+360 R F1(bash)3.315 E F0 .814
+(is checking for mail has been accessed since the last time it)3.315 F
 -.1(wa)184 372 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E
 (`The mail in)-.74 E/F3 10/Times-Italic@0 SF(mail\214le)2.5 E F0
 (has been read')2.5 E 2.5('i)-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1
-(no_empty_cmd_completion)144 384 Q F0 .146(If set, and)184 396 R F1 -.18
-(re)2.646 G(adline).18 E F0 .146(is being used,)2.646 F F1(bash)2.646 E
-F0 .145(will not attempt to search the)2.646 F F1 -.74(PA)2.645 G(TH)
--.21 E F0 .145(for possible)2.645 F
+(no_empty_cmd_completion)144 384 Q F0 .145(If set, and)184 396 R F1 -.18
+(re)2.645 G(adline).18 E F0 .145(is being used,)2.645 F F1(bash)2.646 E
+F0 .146(will not attempt to search the)2.646 F F1 -.74(PA)2.646 G(TH)
+-.21 E F0 .146(for possible)2.646 F
 (completions when completion is attempted on an empty line.)184 408 Q F1
-(nocaseglob)144 420 Q F0 .436(If set,)184 432 R F1(bash)2.936 E F0 .436
-(matches \214lenames in a case\255insensiti)2.936 F .737 -.15(ve f)-.25
-H .437(ashion when performing pathname).05 F -.15(ex)184 444 S
+(nocaseglob)144 420 Q F0 .437(If set,)184 432 R F1(bash)2.937 E F0 .436
+(matches \214lenames in a case\255insensiti)2.937 F .736 -.15(ve f)-.25
+H .436(ashion when performing pathname).05 F -.15(ex)184 444 S
 (pansion \(see).15 E F1 -.1(Pa)2.5 G(thname Expansion).1 E F0(abo)2.5 E
--.15(ve)-.15 G(\).).15 E F1(nocasematch)144 456 Q F0 1.194(If set,)184
-468 R F1(bash)3.694 E F0 1.194(matches patterns in a case\255insensiti)
-3.694 F 1.493 -.15(ve f)-.25 H 1.193(ashion when performing matching).05
+-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 456 Q F0 1.193(If set,)184
+468 R F1(bash)3.693 E F0 1.194(matches patterns in a case\255insensiti)
+3.693 F 1.494 -.15(ve f)-.25 H 1.194(ashion when performing matching).05
 F(while e)184 480 Q -.15(xe)-.15 G(cuting).15 E F1(case)2.5 E F0(or)2.5
 E F1([[)2.5 E F0(conditional commands.)2.5 E F1(nullglob)144 492 Q F0
-.854(If set,)184 504 R F1(bash)3.354 E F0(allo)3.354 E .855
-(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa)3.355 G .855
-(thname Expansion).1 F F0(abo)3.355 E -.15(ve)-.15 G 3.355(\)t).15 G(o)
--3.355 E -.15(ex)184 516 S(pand to a null string, rather than themselv)
-.15 E(es.)-.15 E F1(pr)144 528 Q(ogcomp)-.18 E F0 .677
+.855(If set,)184 504 R F1(bash)3.355 E F0(allo)3.355 E .855
+(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa)3.354 G .854
+(thname Expansion).1 F F0(abo)3.354 E -.15(ve)-.15 G 3.354(\)t).15 G(o)
+-3.354 E -.15(ex)184 516 S(pand to a null string, rather than themselv)
+.15 E(es.)-.15 E F1(pr)144 528 Q(ogcomp)-.18 E F0 .676
 (If set, the programmable completion f)184 540 R .677(acilities \(see)
--.1 F F1(Pr)3.176 E .676(ogrammable Completion)-.18 F F0(abo)3.176 E
+-.1 F F1(Pr)3.177 E .677(ogrammable Completion)-.18 F F0(abo)3.177 E
 -.15(ve)-.15 G(\)).15 E(are enabled.)184 552 Q
 (This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 564 Q(omptv)
--.18 E(ars)-.1 E F0 1.447(If set, prompt strings under)184 576 R 1.448
-(go parameter e)-.18 F 1.448(xpansion, command substitution, arithmetic)
--.15 F -.15(ex)184 588 S .171(pansion, and quote remo).15 F -.25(va)-.15
+-.18 E(ars)-.1 E F0 1.448(If set, prompt strings under)184 576 R 1.448
+(go parameter e)-.18 F 1.447(xpansion, command substitution, arithmetic)
+-.15 F -.15(ex)184 588 S .17(pansion, and quote remo).15 F -.25(va)-.15
 G 2.67(la).25 G .17(fter being e)-2.67 F .17(xpanded as described in)
--.15 F F2(PR)2.67 E(OMPTING)-.27 E F0(abo)2.42 E -.15(ve)-.15 G(.).15 E
-(This option is enabled by def)184 600 Q(ault.)-.1 E F1 -.18(re)144 612
+-.15 F F2(PR)2.671 E(OMPTING)-.27 E F0(abo)2.421 E -.15(ve)-.15 G(.).15
+E(This option is enabled by def)184 600 Q(ault.)-.1 E F1 -.18(re)144 612
 S(stricted_shell).18 E F0 1.069
 (The shell sets this option if it is started in restricted mode \(see)
 184 624 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 636 Q 4.178
@@ -7417,16 +7423,17 @@ S(stricted_shell).18 E F0 1.069
 1.678(This is not reset when the startup \214les are)6.678 F -.15(exe)
 184 648 S(cuted, allo).15 E(wing the startup \214les to disco)-.25 E
 -.15(ve)-.15 G 2.5(rw).15 G(hether or not a shell is restricted.)-2.5 E
-F1(shift_v)144 660 Q(erbose)-.1 E F0 .501(If set, the)184 672 R F1
-(shift)3.001 E F0 -.2(bu)3.001 G .501
-(iltin prints an error message when the shift count e).2 F .502
+F1(shift_v)144 660 Q(erbose)-.1 E F0 .502(If set, the)184 672 R F1
+(shift)3.002 E F0 -.2(bu)3.002 G .501
+(iltin prints an error message when the shift count e).2 F .501
 (xceeds the number)-.15 F(of positional parameters.)184 684 Q F1(sour)
-144 696 Q(cepath)-.18 E F0 .771(If set, the)184 708 R F1(sour)3.271 E
-(ce)-.18 E F0(\()3.271 E F1(.)A F0 3.271(\)b)C .771(uiltin uses the v)
--3.471 F .771(alue of)-.25 F F2 -.666(PA)3.27 G(TH)-.189 E F0 .77
-(to \214nd the directory containing the)3.02 F(\214le supplied as an ar)
-184 720 Q 2.5(gument. This)-.18 F(option is enabled by def)2.5 E(ault.)
--.1 E(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(63)200.665 E 0 Cg EP
+144 696 Q(cepath)-.18 E F0 .77(If set, the)184 708 R F1(sour)3.27 E(ce)
+-.18 E F0(\()3.27 E F1(.)A F0 3.27(\)b)C .77(uiltin uses the v)-3.47 F
+.771(alue of)-.25 F F2 -.666(PA)3.271 G(TH)-.189 E F0 .771
+(to \214nd the directory containing the)3.021 F
+(\214le supplied as an ar)184 720 Q 2.5(gument. This)-.18 F
+(option is enabled by def)2.5 E(ault.)-.1 E(GNU Bash-4.0)72 768 Q
+(2008 July 6)150.675 E(63)200.665 E 0 Cg EP
 %%Page: 64 64
 %%BeginPageSetup
 BP
@@ -7435,28 +7442,28 @@ BP
 -.35 E/F1 10/Times-Bold@0 SF(xpg_echo)144 84 Q F0(If set, the)184 96 Q
 F1(echo)2.5 E F0 -.2(bu)2.5 G(iltin e).2 E
 (xpands backslash-escape sequences by def)-.15 E(ault.)-.1 E F1(suspend)
-108 108 Q F0([)2.5 E F1<ad66>A F0(])A 1.001(Suspend the e)144 120 R -.15
-(xe)-.15 G 1.001(cution of this shell until it recei).15 F -.15(ve)-.25
-G 3.501(sa).15 G/F2 9/Times-Bold@0 SF(SIGCONT)A F0 3.502(signal. A)3.252
-F 1.002(login shell cannot be)3.502 F .023(suspended; the)144 132 R F1
-<ad66>2.523 E F0 .023(option can be used to o)2.523 F -.15(ve)-.15 G
-.022(rride this and force the suspension.).15 F .022
-(The return status is)5.022 F 2.5(0u)144 144 S
+108 108 Q F0([)2.5 E F1<ad66>A F0(])A 1.002(Suspend the e)144 120 R -.15
+(xe)-.15 G 1.002(cution of this shell until it recei).15 F -.15(ve)-.25
+G 3.501(sa).15 G/F2 9/Times-Bold@0 SF(SIGCONT)A F0 3.501(signal. A)3.251
+F 1.001(login shell cannot be)3.501 F .022(suspended; the)144 132 R F1
+<ad66>2.522 E F0 .022(option can be used to o)2.522 F -.15(ve)-.15 G
+.022(rride this and force the suspension.).15 F .023
+(The return status is)5.023 F 2.5(0u)144 144 S
 (nless the shell is a login shell and)-2.5 E F1<ad66>2.5 E F0
 (is not supplied, or if job control is not enabled.)2.5 E F1(test)108
 156 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)108 168 Q F3 -.2
 (ex)2.5 G(pr).2 E F1(])2.5 E F0 1.15
 (Return a status of 0 or 1 depending on the e)6.77 F -.25(va)-.25 G 1.15
 (luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)3.65 G
-(pr).2 E F0 6.15(.E).73 G(ach)-6.15 E 1.188
+(pr).2 E F0 6.15(.E).73 G(ach)-6.15 E 1.187
 (operator and operand must be a separate ar)144 180 R 3.688
-(gument. Expressions)-.18 F 1.187(are composed of the primaries)3.688 F
-1.889(described abo)144 192 R 2.189 -.15(ve u)-.15 H(nder).15 E F2
-(CONDITION)4.389 E 1.889(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A
-F1(test)6.389 E F0 1.89(does not accept an)4.389 F 4.39(yo)-.15 G 1.89
-(ptions, nor)-4.39 F(does it accept and ignore an ar)144 204 Q
+(gument. Expressions)-.18 F 1.188(are composed of the primaries)3.688 F
+1.89(described abo)144 192 R 2.19 -.15(ve u)-.15 H(nder).15 E F2
+(CONDITION)4.39 E 1.89(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A
+F1(test)6.39 E F0 1.889(does not accept an)4.389 F 4.389(yo)-.15 G 1.889
+(ptions, nor)-4.389 F(does it accept and ignore an ar)144 204 Q
 (gument of)-.18 E F1<adad>2.5 E F0(as signifying the end of options.)2.5
-E .786(Expressions may be combined using the follo)144 222 R .785
+E .785(Expressions may be combined using the follo)144 222 R .786
 (wing operators, listed in decreasing order of prece-)-.25 F 2.5
 (dence. The)144 234 R -.25(eva)2.5 G
 (luation depends on the number of ar).25 E(guments; see belo)-.18 E -.65
@@ -7481,38 +7488,38 @@ F0 -.25(eva)2.5 G(luate conditional e).25 E
 E 2.5(2a)144 400.8 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)
 180 412.8 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87
 F .37(xpression is true if and only if the second ar)-.15 F .37
-(gument is null.)-.18 F .379(If the \214rst ar)180 424.8 R .38
-(gument is one of the unary conditional operators listed abo)-.18 F .68
--.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 436.8 Q .553
+(gument is null.)-.18 F .38(If the \214rst ar)180 424.8 R .38
+(gument is one of the unary conditional operators listed abo)-.18 F .679
+-.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.879 E(TION)180 436.8 Q .552
 (AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552
 (xpression is true if the unary test is true.)-.15 F .552
 (If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 448.8 Q
 (alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E
 (xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 460.8 S -.18(rg)-2.5 G
-(uments).18 E .023(If the second ar)180 472.8 R .023
+(uments).18 E .024(If the second ar)180 472.8 R .023
 (gument is one of the binary conditional operators listed abo)-.18 F
-.324 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.524 E(DITION)180 484.8 Q
-1.478(AL EXPRESSIONS)-.18 F F4(,)A F0 1.477(the result of the e)3.727 F
+.323 -.15(ve u)-.15 H(nder).15 E F2(CON-)2.523 E(DITION)180 484.8 Q
+1.477(AL EXPRESSIONS)-.18 F F4(,)A F0 1.477(the result of the e)3.727 F
 1.477(xpression is the result of the binary test)-.15 F .513
 (using the \214rst and third ar)180 496.8 R .513(guments as operands.)
 -.18 F(The)5.513 E F1<ad61>3.013 E F0(and)3.013 E F1<ad6f>3.013 E F0
-.513(operators are considered)3.013 F .972
+.512(operators are considered)3.013 F .972
 (binary operators when there are three ar)180 508.8 R 3.472(guments. If)
 -.18 F .972(the \214rst ar)3.472 F .972(gument is)-.18 F F1(!)3.472 E F0
-3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .883(the ne)180 520.8
-R -.05(ga)-.15 G .883(tion of the tw).05 F(o-ar)-.1 E .884
-(gument test using the second and third ar)-.18 F 3.384(guments. If)-.18
-F .884(the \214rst)3.384 F(ar)180 532.8 Q .875(gument is e)-.18 F
-(xactly)-.15 E F1(\()3.375 E F0 .875(and the third ar)3.375 F .875
-(gument is e)-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.374(,t)C .874
-(he result is the one-ar)-3.374 F(gument)-.18 E(test of the second ar)
+3.472(,t)C .972(he v)-3.472 F .972(alue is)-.25 F .884(the ne)180 520.8
+R -.05(ga)-.15 G .884(tion of the tw).05 F(o-ar)-.1 E .884
+(gument test using the second and third ar)-.18 F 3.383(guments. If)-.18
+F .883(the \214rst)3.383 F(ar)180 532.8 Q .874(gument is e)-.18 F
+(xactly)-.15 E F1(\()3.374 E F0 .875(and the third ar)3.374 F .875
+(gument is e)-.18 F(xactly)-.15 E F1(\))3.375 E F0 3.375(,t)C .875
+(he result is the one-ar)-3.375 F(gument)-.18 E(test of the second ar)
 180 544.8 Q 2.5(gument. Otherwise,)-.18 F(the e)2.5 E(xpression is f)
--.15 E(alse.)-.1 E 2.5(4a)144 556.8 S -.18(rg)-2.5 G(uments).18 E .384
-(If the \214rst ar)180 568.8 R .384(gument is)-.18 F F1(!)2.884 E F0
-2.885(,t)C .385(he result is the ne)-2.885 F -.05(ga)-.15 G .385
-(tion of the three-ar).05 F .385(gument e)-.18 F .385(xpression com-)
--.15 F 1.648(posed of the remaining ar)180 580.8 R 4.147
-(guments. Otherwise,)-.18 F 1.647(the e)4.147 F 1.647
+-.15 E(alse.)-.1 E 2.5(4a)144 556.8 S -.18(rg)-2.5 G(uments).18 E .385
+(If the \214rst ar)180 568.8 R .385(gument is)-.18 F F1(!)2.885 E F0
+2.885(,t)C .385(he result is the ne)-2.885 F -.05(ga)-.15 G .384
+(tion of the three-ar).05 F .384(gument e)-.18 F .384(xpression com-)
+-.15 F 1.647(posed of the remaining ar)180 580.8 R 4.147
+(guments. Otherwise,)-.18 F 1.647(the e)4.147 F 1.648
 (xpression is parsed and e)-.15 F -.25(va)-.25 G(luated).25 E
 (according to precedence using the rules listed abo)180 592.8 Q -.15(ve)
 -.15 G(.).15 E 2.5(5o)144 604.8 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments)
@@ -7523,60 +7530,59 @@ F .884(the \214rst)3.384 F(ar)180 532.8 Q .875(gument is e)-.18 F
 accumulated user and system times for the shell and for processes run f\
 rom the shell.)13.23 F(The return status is 0.)144 657.6 Q F1(trap)108
 674.4 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E F3(ar)A(g)-.37 E F0
-(])A F3(sigspec)2.5 E F0(...])2.5 E .702(The command)144 686.4 R F3(ar)
-3.532 E(g)-.37 E F0 .702(is to be read and e)3.422 F -.15(xe)-.15 G .702
-(cuted when the shell recei).15 F -.15(ve)-.25 G 3.203(ss).15 G
-(ignal\(s\))-3.203 E F3(sigspec)3.203 E F0 5.703(.I).31 G(f)-5.703 E F3
-(ar)3.533 E(g)-.37 E F0(is)3.423 E .609(absent \(and there is a single)
+(])A F3(sigspec)2.5 E F0(...])2.5 E .703(The command)144 686.4 R F3(ar)
+3.533 E(g)-.37 E F0 .703(is to be read and e)3.423 F -.15(xe)-.15 G .702
+(cuted when the shell recei).15 F -.15(ve)-.25 G 3.202(ss).15 G
+(ignal\(s\))-3.202 E F3(sigspec)3.202 E F0 5.702(.I).31 G(f)-5.702 E F3
+(ar)3.532 E(g)-.37 E F0(is)3.422 E .608(absent \(and there is a single)
 144 698.4 R F3(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F1<ad>3.108 E
 F0 3.108(,e)C .608
 (ach speci\214ed signal is reset to its original disposition)-3.108 F
-.658(\(the v)144 710.4 R .658(alue it had upon entrance to the shell\).)
--.25 F(If)5.658 E F3(ar)3.488 E(g)-.37 E F0 .659
+.659(\(the v)144 710.4 R .659(alue it had upon entrance to the shell\).)
+-.25 F(If)5.658 E F3(ar)3.488 E(g)-.37 E F0 .658
 (is the null string the signal speci\214ed by each)3.378 F F3(sigspec)
-144.34 722.4 Q F0 .581
-(is ignored by the shell and by the commands it in)3.391 F -.2(vo)-.4 G
--.1(ke).2 G 3.08(s. If).1 F F3(ar)3.41 E(g)-.37 E F0 .58
-(is not present and)3.3 F F1<ad70>3.08 E F0(has)3.08 E(GNU Bash-4.0)72
-768 Q(2008 July 6)150.675 E(64)200.665 E 0 Cg EP
+144.34 722.4 Q F0 .58(is ignored by the shell and by the commands it in)
+3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F F3(ar)3.411 E(g)-.37 E
+F0 .581(is not present and)3.301 F F1<ad70>3.081 E F0(has)3.081 E
+(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(64)200.665 E 0 Cg EP
 %%Page: 65 65
 %%BeginPageSetup
 BP
 %%EndPageSetup
 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 389.54(SH\(1\) B).35 F(ASH\(1\))
--.35 E 1.214(been supplied, then the trap commands associated with each)
-144 84 R/F1 10/Times-Italic@0 SF(sigspec)4.054 E F0 1.215
-(are displayed.)4.024 F 1.215(If no ar)6.215 F(gu-)-.18 E .86
+-.35 E 1.215(been supplied, then the trap commands associated with each)
+144 84 R/F1 10/Times-Italic@0 SF(sigspec)4.054 E F0 1.214
+(are displayed.)4.024 F 1.214(If no ar)6.214 F(gu-)-.18 E .86
 (ments are supplied or if only)144 96 R/F2 10/Times-Bold@0 SF<ad70>3.36
 E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F2(trap)3.36 E F0 .86
 (prints the list of commands associated with each)3.36 F 2.83
 (signal. The)144 108 R F2<ad6c>2.83 E F0 .33(option causes the shell to\
- print a list of signal names and their corresponding num-)2.83 F 4.311
-(bers. Each)144 120 R F1(sigspec)4.651 E F0 1.811
-(is either a signal name de\214ned in <)4.621 F F1(signal.h)A F0 1.81
-(>, or a signal number)B 6.81(.S)-.55 G(ignal)-6.81 E .745
+ print a list of signal names and their corresponding num-)2.83 F 4.31
+(bers. Each)144 120 R F1(sigspec)4.65 E F0 1.811
+(is either a signal name de\214ned in <)4.62 F F1(signal.h)A F0 1.811
+(>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E .745
 (names are case insensiti)144 132 R 1.045 -.15(ve a)-.25 H .745
 (nd the SIG pre\214x is optional.).15 F .745(If a)5.745 F F1(sigspec)
 3.585 E F0(is)3.555 E/F3 9/Times-Bold@0 SF(EXIT)3.245 E F0 .745
-(\(0\) the command)2.995 F F1(ar)144.33 144 Q(g)-.37 E F0 1.63(is e)4.35
-F -.15(xe)-.15 G 1.63(cuted on e).15 F 1.63(xit from the shell.)-.15 F
-1.63(If a)6.63 F F1(sigspec)4.47 E F0(is)4.44 E F3(DEB)4.13 E(UG)-.09 E
-/F4 9/Times-Roman@0 SF(,)A F0 1.629(the command)3.88 F F1(ar)4.459 E(g)
--.37 E F0 1.629(is e)4.349 F -.15(xe)-.15 G(cuted).15 E 1.206(before e)
-144 156 R -.15(ve)-.25 G(ry).15 E F1 1.206(simple command)3.706 F F0(,)A
-F1(for)3.706 E F0(command,)3.706 E F1(case)3.706 E F0(command,)3.706 E
-F1(select)3.707 E F0 1.207(command, e)3.707 F -.15(ve)-.25 G 1.207
+(\(0\) the command)2.995 F F1(ar)144.33 144 Q(g)-.37 E F0 1.629(is e)
+4.349 F -.15(xe)-.15 G 1.629(cuted on e).15 F 1.63(xit from the shell.)
+-.15 F 1.63(If a)6.63 F F1(sigspec)4.47 E F0(is)4.44 E F3(DEB)4.13 E(UG)
+-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.63(the command)3.88 F F1(ar)4.46 E
+(g)-.37 E F0 1.63(is e)4.35 F -.15(xe)-.15 G(cuted).15 E 1.207(before e)
+144 156 R -.15(ve)-.25 G(ry).15 E F1 1.207(simple command)3.707 F F0(,)A
+F1(for)3.707 E F0(command,)3.706 E F1(case)3.706 E F0(command,)3.706 E
+F1(select)3.706 E F0 1.206(command, e)3.706 F -.15(ve)-.25 G 1.206
 (ry arithmetic).15 F F1(for)144 168 Q F0 .412
-(command, and before the \214rst command e)2.913 F -.15(xe)-.15 G .412
-(cutes in a shell function \(see).15 F F3 .412(SHELL GRAMMAR)2.912 F F0
-(abo)144 180 Q -.15(ve)-.15 G 2.665(\). Refer).15 F .166
-(to the description of the)2.665 F F2(extdeb)2.666 E(ug)-.2 E F0 .166
+(command, and before the \214rst command e)2.912 F -.15(xe)-.15 G .412
+(cutes in a shell function \(see).15 F F3 .413(SHELL GRAMMAR)2.912 F F0
+(abo)144 180 Q -.15(ve)-.15 G 2.666(\). Refer).15 F .166
+(to the description of the)2.666 F F2(extdeb)2.666 E(ug)-.2 E F0 .166
 (option to the)2.666 F F2(shopt)2.666 E F0 -.2(bu)2.666 G .166
-(iltin for details of its ef).2 F(fect)-.25 E .509(on the)144 192 R F2
-(DEB)3.009 E(UG)-.1 E F0 3.009(trap. If)3.009 F(a)3.009 E F1(sigspec)
+(iltin for details of its ef).2 F(fect)-.25 E .508(on the)144 192 R F2
+(DEB)3.008 E(UG)-.1 E F0 3.008(trap. If)3.008 F(a)3.008 E F1(sigspec)
 3.348 E F0(is)3.318 E F3(ERR)3.008 E F4(,)A F0 .508(the command)2.758 F
-F1(ar)3.338 E(g)-.37 E F0 .508(is e)3.228 F -.15(xe)-.15 G .508
-(cuted whene).15 F -.15(ve)-.25 G 3.008(ras).15 G .508(imple com-)-3.008
+F1(ar)3.338 E(g)-.37 E F0 .509(is e)3.228 F -.15(xe)-.15 G .509
+(cuted whene).15 F -.15(ve)-.25 G 3.009(ras).15 G .509(imple com-)-3.009
 F 2.506(mand has a non\255zero e)144 204 R 2.506
 (xit status, subject to the follo)-.15 F 2.506(wing conditions.)-.25 F
 (The)7.506 E F3(ERR)5.006 E F0 2.506(trap is not)4.756 F -.15(exe)144
@@ -7586,18 +7592,18 @@ F 2.506(mand has a non\255zero e)144 204 R 2.506
 (ke)144 228 S(yw)-.05 E .549(ord, part of the test in an)-.1 F F1(if)
 3.059 E F0 .549(statement, part of a command e)5.009 F -.15(xe)-.15 G
 .549(cuted in a).15 F F2(&&)3.049 E F0(or)3.049 E/F5 10/Symbol SF<efef>
-3.049 E F0 .549(list, or if)3.049 F .578(the command')144 240 R 3.078
-(sr)-.55 G .578(eturn v)-3.078 F .578(alue is being in)-.25 F -.15(ve)
--.4 G .578(rted via).15 F F2(!)3.078 E F0 5.577(.T)C .577
-(hese are the same conditions obe)-5.577 F .577(yed by the)-.15 F F2
-(err)144 252 Q(exit)-.18 E F0 3.03(option. If)3.03 F(a)3.03 E F1
-(sigspec)3.37 E F0(is)3.341 E F3(RETURN)3.031 E F4(,)A F0 .531
+3.049 E F0 .549(list, or if)3.049 F .577(the command')144 240 R 3.077
+(sr)-.55 G .577(eturn v)-3.077 F .577(alue is being in)-.25 F -.15(ve)
+-.4 G .577(rted via).15 F F2(!)3.077 E F0 5.578(.T)C .578
+(hese are the same conditions obe)-5.578 F .578(yed by the)-.15 F F2
+(err)144 252 Q(exit)-.18 E F0 3.031(option. If)3.031 F(a)3.031 E F1
+(sigspec)3.371 E F0(is)3.341 E F3(RETURN)3.031 E F4(,)A F0 .531
 (the command)2.781 F F1(ar)3.361 E(g)-.37 E F0 .531(is e)3.251 F -.15
-(xe)-.15 G .531(cuted each time a shell function).15 F .317
+(xe)-.15 G .53(cuted each time a shell function).15 F .316
 (or a script e)144 264 R -.15(xe)-.15 G .317(cuted with the).15 F F2(.)
 2.817 E F0(or)2.817 E F2(sour)2.817 E(ce)-.18 E F0 -.2(bu)2.817 G .317
 (iltins \214nishes e).2 F -.15(xe)-.15 G 2.817(cuting. Signals).15 F
-.316(ignored upon entry to)2.817 F .787
+.317(ignored upon entry to)2.817 F .787
 (the shell cannot be trapped or reset.)144 276 R -.35(Tr)5.787 G .787
 (apped signals that are not being ignored are reset to their).35 F 1.1
 (original v)144 288 R 1.1(alues in a child process when it is created.)
@@ -7605,69 +7611,69 @@ F 2.506(mand has a non\255zero e)144 204 R 2.506
 (sigspec)3.94 E F0(is)3.91 E(in)144 300 Q -.25(va)-.4 G(lid; otherwise)
 .25 E F2(trap)2.5 E F0(returns true.)2.5 E F2(type)108 316.8 Q F0([)2.5
 E F2(\255aftpP)A F0(])A F1(name)2.5 E F0([)2.5 E F1(name)A F0(...])2.5 E
--.4(Wi)144 328.8 S .173(th no options, indicate ho).4 F 2.673(we)-.25 G
-(ach)-2.673 E F1(name)3.033 E F0 -.1(wo)2.853 G .174
-(uld be interpreted if used as a command name.).1 F .174(If the)5.174 F
-F2<ad74>144 340.8 Q F0 .843(option is used,)3.343 F F2(type)3.343 E F0
+-.4(Wi)144 328.8 S .174(th no options, indicate ho).4 F 2.674(we)-.25 G
+(ach)-2.674 E F1(name)3.034 E F0 -.1(wo)2.854 G .173
+(uld be interpreted if used as a command name.).1 F .173(If the)5.173 F
+F2<ad74>144 340.8 Q F0 .842(option is used,)3.342 F F2(type)3.342 E F0
 .843(prints a string which is one of)3.343 F F1(alias)3.343 E F0(,).27 E
 F1 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F1(function)3.343 E F0
-(,).24 E F1 -.2(bu)3.342 G(iltin).2 E F0 3.342(,o).24 G(r)-3.342 E F1
-(\214le)5.252 E F0(if)3.522 E F1(name)144.36 352.8 Q F0 .086
-(is an alias, shell reserv)2.766 F .086(ed w)-.15 F .086
-(ord, function, b)-.1 F .087(uiltin, or disk \214le, respecti)-.2 F -.15
-(ve)-.25 G(ly).15 E 5.087(.I)-.65 G 2.587(ft)-5.087 G(he)-2.587 E F1
-(name)2.947 E F0 .087(is not)2.767 F .119
+(,).24 E F1 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F1
+(\214le)5.253 E F0(if)3.523 E F1(name)144.36 352.8 Q F0 .087
+(is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087
+(ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15
+(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F1
+(name)2.946 E F0 .086(is not)2.766 F .118
 (found, then nothing is printed, and an e)144 364.8 R .118
-(xit status of f)-.15 F .118(alse is returned.)-.1 F .118(If the)5.118 F
-F2<ad70>2.618 E F0 .118(option is used,)2.618 F F2(type)2.618 E F0 .855
+(xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F
+F2<ad70>2.619 E F0 .119(option is used,)2.619 F F2(type)2.619 E F0 .855
 (either returns the name of the disk \214le that w)144 376.8 R .855
 (ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F1(name)3.715 E F0
-.855(were speci\214ed as a com-)3.535 F .641(mand name, or nothing if)
-144 388.8 R/F6 10/Courier@0 SF .641(type -t name)3.141 F F0 -.1(wo)3.141
-G .641(uld not return).1 F F1(\214le)3.14 E F0 5.64(.T).18 G(he)-5.64 E
-F2<ad50>3.14 E F0 .64(option forces a)3.14 F F3 -.666(PA)3.14 G(TH)-.189
-E F0 .112(search for each)144 400.8 R F1(name)2.612 E F0 2.612(,e)C -.15
-(ve)-2.862 G 2.613(ni).15 G(f)-2.613 E F6 .113(type -t name)2.613 F F0
--.1(wo)2.613 G .113(uld not return).1 F F1(\214le)2.613 E F0 5.113(.I)
-.18 G 2.613(fac)-5.113 G .113(ommand is hashed,)-2.613 F F2<ad70>2.613 E
-F0(and)144 412.8 Q F2<ad50>2.945 E F0 .445(print the hashed v)2.945 F
-.444(alue, not necessarily the \214le that appears \214rst in)-.25 F F3
--.666(PA)2.944 G(TH)-.189 E F4(.)A F0 .444(If the)4.944 F F2<ad61>2.944
-E F0(option)2.944 E .265(is used,)144 424.8 R F2(type)2.765 E F0 .265
-(prints all of the places that contain an e)2.765 F -.15(xe)-.15 G .265
-(cutable named).15 F F1(name)2.765 E F0 5.265(.T).18 G .265
-(his includes aliases)-5.265 F .427(and functions, if and only if the)
+.855(were speci\214ed as a com-)3.535 F .64(mand name, or nothing if)144
+388.8 R/F6 10/Courier@0 SF .64(type -t name)3.14 F F0 -.1(wo)3.14 G .641
+(uld not return).1 F F1(\214le)3.141 E F0 5.641(.T).18 G(he)-5.641 E F2
+<ad50>3.141 E F0 .641(option forces a)3.141 F F3 -.666(PA)3.141 G(TH)
+-.189 E F0 .113(search for each)144 400.8 R F1(name)2.613 E F0 2.613(,e)
+C -.15(ve)-2.863 G 2.613(ni).15 G(f)-2.613 E F6 .113(type -t name)2.613
+F F0 -.1(wo)2.613 G .113(uld not return).1 F F1(\214le)2.613 E F0 5.113
+(.I).18 G 2.613(fa)-5.113 G .112(command is hashed,)-.001 F F2<ad70>
+2.612 E F0(and)144 412.8 Q F2<ad50>2.944 E F0 .444(print the hashed v)
+2.944 F .444(alue, not necessarily the \214le that appears \214rst in)
+-.25 F F3 -.666(PA)2.945 G(TH)-.189 E F4(.)A F0 .445(If the)4.945 F F2
+<ad61>2.945 E F0(option)2.945 E .265(is used,)144 424.8 R F2(type)2.765
+E F0 .265(prints all of the places that contain an e)2.765 F -.15(xe)
+-.15 G .265(cutable named).15 F F1(name)2.765 E F0 5.265(.T).18 G .265
+(his includes aliases)-5.265 F .426(and functions, if and only if the)
 144 436.8 R F2<ad70>2.926 E F0 .426(option is not also used.)2.926 F
-.426(The table of hashed commands is not)5.426 F .548
-(consulted when using)144 448.8 R F2<ad61>3.048 E F0 5.548(.T)C(he)
--5.548 E F2<ad66>3.048 E F0 .549
-(option suppresses shell function lookup, as with the)3.048 F F2
-(command)3.049 E F0 -.2(bu)144 460.8 S(iltin.).2 E F2(type)5 E F0
+.427(The table of hashed commands is not)5.426 F .549
+(consulted when using)144 448.8 R F2<ad61>3.049 E F0 5.549(.T)C(he)
+-5.549 E F2<ad66>3.049 E F0 .548
+(option suppresses shell function lookup, as with the)3.049 F F2
+(command)3.048 E F0 -.2(bu)144 460.8 S(iltin.).2 E F2(type)5 E F0
 (returns true if all of the ar)2.5 E(guments are found, f)-.18 E
 (alse if an)-.1 E 2.5(ya)-.15 G(re not found.)-2.5 E F2(ulimit)108 477.6
 Q F0([)2.5 E F2(\255HST)A(abcde\214lmnpqrstuvx)-.92 E F0([)2.5 E F1
-(limit)A F0(]])A(Pro)144 489.6 Q .244(vides control o)-.15 F -.15(ve)
--.15 G 2.744(rt).15 G .244(he resources a)-2.744 F -.25(va)-.2 G .244
+(limit)A F0(]])A(Pro)144 489.6 Q .243(vides control o)-.15 F -.15(ve)
+-.15 G 2.743(rt).15 G .243(he resources a)-2.743 F -.25(va)-.2 G .244
 (ilable to the shell and to processes started by it, on systems).25 F
-.943(that allo)144 501.6 R 3.443(ws)-.25 G .943(uch control.)-3.443 F
-(The)5.943 E F2<ad48>3.443 E F0(and)3.443 E F2<ad53>3.444 E F0 .944
+.944(that allo)144 501.6 R 3.444(ws)-.25 G .944(uch control.)-3.444 F
+(The)5.944 E F2<ad48>3.444 E F0(and)3.444 E F2<ad53>3.444 E F0 .943
 (options specify that the hard or soft limit is set for the)3.444 F(gi)
-144 513.6 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208
+144 513.6 Q -.15(ve)-.25 G 2.708(nr).15 G 2.708(esource. A)-2.708 F .208
 (hard limit cannot be increased by a non-root user once it is set; a so\
-ft limit may)2.709 F .425(be increased up to the v)144 525.6 R .425
-(alue of the hard limit.)-.25 F .426(If neither)5.425 F F2<ad48>2.926 E
-F0(nor)2.926 E F2<ad53>2.926 E F0 .426
-(is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144
+ft limit may)2.708 F .426(be increased up to the v)144 525.6 R .426
+(alue of the hard limit.)-.25 F .425(If neither)5.426 F F2<ad48>2.925 E
+F0(nor)2.925 E F2<ad53>2.925 E F0 .425
+(is speci\214ed, both the soft and)2.925 F .139(hard limits are set.)144
 537.6 R .139(The v)5.139 F .139(alue of)-.25 F F1(limit)2.729 E F0 .139
 (can be a number in the unit speci\214ed for the resource or one)3.319 F
-.741(of the special v)144 549.6 R(alues)-.25 E F2(hard)3.241 E F0(,)A F2
+.742(of the special v)144 549.6 R(alues)-.25 E F2(hard)3.242 E F0(,)A F2
 (soft)3.241 E F0 3.241(,o)C(r)-3.241 E F2(unlimited)3.241 E F0 3.241(,w)
 C .741(hich stand for the current hard limit, the current)-3.241 F .78
 (soft limit, and no limit, respecti)144 561.6 R -.15(ve)-.25 G(ly).15 E
 5.78(.I)-.65 G(f)-5.78 E F1(limit)3.37 E F0 .78
 (is omitted, the current v)3.96 F .78(alue of the soft limit of the)-.25
-F .498(resource is printed, unless the)144 573.6 R F2<ad48>2.999 E F0
-.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499
+F .499(resource is printed, unless the)144 573.6 R F2<ad48>2.999 E F0
+.499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .498
 (more than one resource is speci\214ed, the)2.999 F
 (limit name and unit are printed before the v)144 585.6 Q 2.5
 (alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F2
@@ -7683,8 +7689,9 @@ F0(The maximum size of \214les written by the shell and its children)
 (ed into memory)-.1 E F2<ad6d>144 693.6 Q F0
 (The maximum resident set size)21.97 E F2<ad6e>144 705.6 Q F0 .791(The \
 maximum number of open \214le descriptors \(most systems do not allo)
-24.74 F 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F(be set\))180
-717.6 Q(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(65)200.665 E 0 Cg EP
+24.74 F 3.291(wt)-.25 G .791(his v)-3.291 F .791(alue to)-.25 F
+(be set\))180 717.6 Q(GNU Bash-4.0)72 768 Q(2008 July 6)150.675 E(65)
+200.665 E 0 Cg EP
 %%Page: 66 66
 %%BeginPageSetup
 BP
@@ -7705,16 +7712,16 @@ BP
 /Times-Italic@0 SF(limit)2.933 E F0 .343(is gi)3.523 F -.15(ve)-.25 G
 .343(n, it is the ne).15 F 2.843(wv)-.25 G .343
 (alue of the speci\214ed resource \(the)-3.093 F F1<ad61>2.843 E F0 .343
-(option is display only\).)2.843 F .343(If no)5.343 F .176(option is gi)
-144 208.8 R -.15(ve)-.25 G .176(n, then).15 F F1<ad66>2.676 E F0 .175
-(is assumed.)2.676 F -1.11(Va)5.175 G .175
-(lues are in 1024-byte increments, e)1.11 F .175(xcept for)-.15 F F1
-<ad74>2.675 E F0 2.675(,w)C .175(hich is in)-2.675 F(seconds,)144 220.8
-Q F1<ad70>2.515 E F0 2.515(,w)C .015
-(hich is in units of 512-byte blocks, and)-2.515 F F1<ad54>2.516 E F0(,)
-A F1<ad62>2.516 E F0(,)A F1<ad6e>2.516 E F0 2.516(,a)C(nd)-2.516 E F1
-<ad75>2.516 E F0 2.516(,w)C .016(hich are unscaled v)-2.516 F(al-)-.25 E
-3.788(ues. The)144 232.8 R 1.287(return status is 0 unless an in)3.787 F
+(option is display only\).)2.843 F .343(If no)5.343 F .175(option is gi)
+144 208.8 R -.15(ve)-.25 G .175(n, then).15 F F1<ad66>2.675 E F0 .175
+(is assumed.)2.675 F -1.11(Va)5.175 G .175
+(lues are in 1024-byte increments, e)1.11 F .176(xcept for)-.15 F F1
+<ad74>2.676 E F0 2.676(,w)C .176(hich is in)-2.676 F(seconds,)144 220.8
+Q F1<ad70>2.516 E F0 2.516(,w)C .016
+(hich is in units of 512-byte blocks, and)-2.516 F F1<ad54>2.516 E F0(,)
+A F1<ad62>2.515 E F0(,)A F1<ad6e>2.515 E F0 2.515(,a)C(nd)-2.515 E F1
+<ad75>2.515 E F0 2.515(,w)C .015(hich are unscaled v)-2.515 F(al-)-.25 E
+3.787(ues. The)144 232.8 R 1.287(return status is 0 unless an in)3.787 F
 -.25(va)-.4 G 1.287(lid option or ar).25 F 1.287
 (gument is supplied, or an error occurs)-.18 F(while setting a ne)144
 244.8 Q 2.5(wl)-.25 G(imit.)-2.5 E F1(umask)108 261.6 Q F0([)2.5 E F1
@@ -7724,15 +7731,15 @@ A F1<ad62>2.516 E F0(,)A F1<ad6e>2.516 E F0 2.516(,a)C(nd)-2.516 E F1
 (gins with a digit, it is interpreted as an octal)-.15 F .066(number; o\
 therwise it is interpreted as a symbolic mode mask similar to that acce\
 pted by)144 285.6 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144
-297.6 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382
+297.6 Q F2(mode)3.263 E F0 .382(is omitted, the current v)3.063 F .382
 (alue of the mask is printed.)-.25 F(The)5.382 E F1<ad53>2.882 E F0 .382
 (option causes the mask to be)2.882 F .547
 (printed in symbolic form; the def)144 309.6 R .547
 (ault output is an octal number)-.1 F 5.547(.I)-.55 G 3.047(ft)-5.547 G
 (he)-3.047 E F1<ad70>3.047 E F0 .547(option is supplied, and)3.047 F F2
-(mode)144.38 321.6 Q F0 .551
-(is omitted, the output is in a form that may be reused as input.)3.231
-F .552(The return status is 0 if the)5.552 F(mode w)144 333.6 Q
+(mode)144.38 321.6 Q F0 .552
+(is omitted, the output is in a form that may be reused as input.)3.232
+F .551(The return status is 0 if the)5.551 F(mode w)144 333.6 Q
 (as successfully changed or if no)-.1 E F2(mode)2.5 E F0(ar)2.5 E
 (gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E F1
 (unalias)108 350.4 Q F0<5bad>2.5 E F1(a)A F0 2.5(][)C F2(name)-2.5 E F0
@@ -7742,50 +7749,50 @@ F1<ad61>4.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155
 F(remo)144 374.4 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E
 (alue is true unless a supplied)-.25 E F2(name)2.86 E F0
 (is not a de\214ned alias.)2.68 E F1(unset)108 391.2 Q F0<5bad>2.5 E F1
-(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 403.2 S 3.106
-(re).15 G(ach)-3.106 E F2(name)3.106 E F0 3.106(,r).18 G(emo)-3.106 E
-.906 -.15(ve t)-.15 H .606(he corresponding v).15 F .607
-(ariable or function.)-.25 F .607(If no options are supplied, or the)
-5.607 F F1<ad76>144 415.2 Q F0 .305(option is gi)2.805 F -.15(ve)-.25 G
-.305(n, each).15 F F2(name)3.165 E F0 .305(refers to a shell v)2.985 F
-2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .304
-(riables may not be unset.).25 F(If)5.304 E F1<ad66>144 427.2 Q F0 .459
-(is speci\214ed, each)2.959 F F2(name)3.319 E F0 .459
-(refers to a shell function, and the function de\214nition is remo)3.139
-F -.15(ve)-.15 G 2.96(d. Each).15 F .903(unset v)144 439.2 R .903
+(fv)A F0 2.5(][)C F2(name)-2.5 E F0(...])2.5 E -.15(Fo)144 403.2 S 3.107
+(re).15 G(ach)-3.107 E F2(name)3.107 E F0 3.107(,r).18 G(emo)-3.107 E
+.907 -.15(ve t)-.15 H .607(he corresponding v).15 F .607
+(ariable or function.)-.25 F .606(If no options are supplied, or the)
+5.607 F F1<ad76>144 415.2 Q F0 .304(option is gi)2.804 F -.15(ve)-.25 G
+.304(n, each).15 F F2(name)3.164 E F0 .305(refers to a shell v)2.985 F
+2.805(ariable. Read-only)-.25 F -.25(va)2.805 G .305
+(riables may not be unset.).25 F(If)5.305 E F1<ad66>144 427.2 Q F0 .46
+(is speci\214ed, each)2.96 F F2(name)3.32 E F0 .459
+(refers to a shell function, and the function de\214nition is remo)3.14
+F -.15(ve)-.15 G 2.959(d. Each).15 F .902(unset v)144 439.2 R .902
 (ariable or function is remo)-.25 F -.15(ve)-.15 G 3.402(df).15 G .902
-(rom the en)-3.402 F .902(vironment passed to subsequent commands.)-.4 F
-(If)5.902 E(an)144 451.2 Q 4.284(yo)-.15 G(f)-4.284 E/F3 9/Times-Bold@0
-SF(RANDOM)4.284 E/F4 9/Times-Roman@0 SF(,)A F3(SECONDS)4.035 E F4(,)A F3
+(rom the en)-3.402 F .903(vironment passed to subsequent commands.)-.4 F
+(If)5.903 E(an)144 451.2 Q 4.285(yo)-.15 G(f)-4.285 E/F3 9/Times-Bold@0
+SF(RANDOM)4.285 E/F4 9/Times-Roman@0 SF(,)A F3(SECONDS)4.035 E F4(,)A F3
 (LINENO)4.035 E F4(,)A F3(HISTCMD)4.035 E F4(,)A F3(FUNCN)4.035 E(AME)
 -.18 E F4(,)A F3(GR)4.035 E(OUPS)-.27 E F4(,)A F0(or)4.035 E F3(DIRST)
-4.285 E -.495(AC)-.81 G(K).495 E F0(are)4.035 E .329(unset, the)144
-463.2 R 2.829(yl)-.15 G .328(ose their special properties, e)-2.829 F
+4.284 E -.495(AC)-.81 G(K).495 E F0(are)4.034 E .328(unset, the)144
+463.2 R 2.828(yl)-.15 G .328(ose their special properties, e)-2.828 F
 -.15(ve)-.25 G 2.828(ni).15 G 2.828(ft)-2.828 G(he)-2.828 E 2.828(ya)
--.15 G .328(re subsequently reset.)-2.828 F .328(The e)5.328 F .328
+-.15 G .328(re subsequently reset.)-2.828 F .328(The e)5.328 F .329
 (xit status is true)-.15 F(unless a)144 475.2 Q F2(name)2.86 E F0
 (is readonly)2.68 E(.)-.65 E F1(wait)108 492 Q F0([)2.5 E F2 2.5(n.)C
 (..)-2.5 E F0(])A -.8(Wa)144 504 S .288
 (it for each speci\214ed process and return its termination status.).8 F
-(Each)5.288 E F2(n)3.148 E F0 .288(may be a process ID or a)3.028 F .722
+(Each)5.288 E F2(n)3.148 E F0 .287(may be a process ID or a)3.028 F .722
 (job speci\214cation; if a job spec is gi)144 516 R -.15(ve)-.25 G .722
 (n, all processes in that job').15 F 3.222(sp)-.55 G .722(ipeline are w)
--3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E F2(n)3.582 E F0
-(is)3.462 E 1.265(not gi)144 528 R -.15(ve)-.25 G 1.265
-(n, all currently acti).15 F 1.565 -.15(ve c)-.25 H 1.265
-(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.266
-(nd the return status is zero.)-3.765 F(If)6.266 E F2(n)4.126 E F0 .457
+-3.222 F .722(aited for)-.1 F 5.722(.I)-.55 G(f)-5.722 E F2(n)3.583 E F0
+(is)3.463 E 1.266(not gi)144 528 R -.15(ve)-.25 G 1.266
+(n, all currently acti).15 F 1.566 -.15(ve c)-.25 H 1.265
+(hild processes are w).15 F 1.265(aited for)-.1 F 3.765(,a)-.4 G 1.265
+(nd the return status is zero.)-3.765 F(If)6.265 E F2(n)4.125 E F0 .456
 (speci\214es a non-e)144 540 R .457
 (xistent process or job, the return status is 127.)-.15 F .457
 (Otherwise, the return status is the)5.457 F -.15(ex)144 552 S
 (it status of the last process or job w).15 E(aited for)-.1 E(.)-.55 E
 /F5 10.95/Times-Bold@0 SF(RESTRICTED SHELL)72 568.8 Q F0(If)108 580.8 Q
-F1(bash)4.396 E F0 1.896(is started with the name)4.396 F F1(rbash)4.397
-E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F1<ad72>4.397 E F0 1.897
-(option is supplied at in)4.397 F -.2(vo)-.4 G 1.897
-(cation, the shell becomes).2 F 3.446(restricted. A)108 592.8 R .945
-(restricted shell is used to set up an en)3.446 F .945
-(vironment more controlled than the standard shell.)-.4 F(It)5.945 E
+F1(bash)4.397 E F0 1.897(is started with the name)4.397 F F1(rbash)4.397
+E F0 4.397(,o)C 4.397(rt)-4.397 G(he)-4.397 E F1<ad72>4.397 E F0 1.896
+(option is supplied at in)4.397 F -.2(vo)-.4 G 1.896
+(cation, the shell becomes).2 F 3.445(restricted. A)108 592.8 R .945
+(restricted shell is used to set up an en)3.445 F .946
+(vironment more controlled than the standard shell.)-.4 F(It)5.946 E
 (beha)108 604.8 Q -.15(ve)-.2 G 2.5(si).15 G(dentically to)-2.5 E F1
 (bash)2.5 E F0(with the e)2.5 E(xception that the follo)-.15 E
 (wing are disallo)-.25 E(wed or not performed:)-.25 E 32.5<8363>108
@@ -7799,7 +7806,7 @@ E F1 -.3(BA)2.5 G(SH_ENV).3 E F0 32.5<8373>108 655.2 S
 (iltin command).2 E 32.5<8353>108 688.8 S .351
 (pecifying a \214lename containing a slash as an ar)-32.5 F .351
 (gument to the)-.18 F F1<ad70>2.851 E F0 .351(option to the)2.851 F F1
-(hash)2.852 E F0 -.2(bu)2.852 G .352(iltin com-).2 F(mand)144 700.8 Q
+(hash)2.851 E F0 -.2(bu)2.851 G .351(iltin com-).2 F(mand)144 700.8 Q
 32.5<8369>108 717.6 S(mporting function de\214nitions from the shell en)
 -32.5 E(vironment at startup)-.4 E(GNU Bash-4.0)72 768 Q(2008 July 6)
 150.675 E(66)200.665 E 0 Cg EP
@@ -7826,8 +7833,8 @@ F1<ad66>2.5 E F0(and)2.5 E F1<ad64>2.5 E F0(options to the)2.5 E F1
 (These restrictions are enforced after an)108 201.6 Q 2.5(ys)-.15 G
 (tartup \214les are read.)-2.5 E 1.566
 (When a command that is found to be a shell script is e)108 218.4 R -.15
-(xe)-.15 G 1.566(cuted \(see).15 F/F2 9/Times-Bold@0 SF 1.566
-(COMMAND EXECUTION)4.066 F F0(abo)3.816 E -.15(ve)-.15 G(\),).15 E F1
+(xe)-.15 G 1.567(cuted \(see).15 F/F2 9/Times-Bold@0 SF 1.567
+(COMMAND EXECUTION)4.067 F F0(abo)3.817 E -.15(ve)-.15 G(\),).15 E F1
 (rbash)108 230.4 Q F0(turns of)2.5 E 2.5(fa)-.25 G .3 -.15(ny r)-2.5 H
 (estrictions in the shell spa).15 E(wned to e)-.15 E -.15(xe)-.15 G
 (cute the script.).15 E/F3 10.95/Times-Bold@0 SF(SEE ALSO)72 247.2 Q/F4
@@ -7857,20 +7864,20 @@ F0(Brian F)108 520.8 Q(ox, Free Softw)-.15 E(are F)-.1 E(oundation)-.15
 E(bfox@gnu.or)108 532.8 Q(g)-.18 E(Chet Rame)108 549.6 Q 1.3 -.65(y, C)
 -.15 H(ase W).65 E(estern Reserv)-.8 E 2.5(eU)-.15 G(ni)-2.5 E -.15(ve)
 -.25 G(rsity).15 E(chet@po.cwru.edu)108 561.6 Q F3 -.11(BU)72 578.4 S
-2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .567(If you \214nd a b)108
+2.738(GR).11 G(EPOR)-2.738 E(TS)-.438 E F0 .568(If you \214nd a b)108
 590.4 R .568(ug in)-.2 F F1(bash,)3.068 E F0 .568(you should report it.)
 3.068 F .568(But \214rst, you should mak)5.568 F 3.068(es)-.1 G .568
-(ure that it really is a b)-3.068 F .568(ug, and)-.2 F 5.626
+(ure that it really is a b)-3.068 F .567(ug, and)-.2 F 5.625
 (that it appears in the latest v)108 602.4 R 5.625(ersion of)-.15 F F1
-(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.625
-(ersion is al)-.15 F -.1(wa)-.1 G 5.625(ys a).1 F -.25(va)-.2 G 5.625
+(bash)8.125 E F0 10.625(.T)C 5.625(he latest v)-10.625 F 5.626
+(ersion is al)-.15 F -.1(wa)-.1 G 5.626(ys a).1 F -.25(va)-.2 G 5.626
 (ilable from).25 F F4(ftp://ftp.gnu.or)108 614.4 Q(g/pub/bash/)-.37 E F0
-(.)A .41(Once you ha)108 631.2 R .71 -.15(ve d)-.2 H .41
-(etermined that a b).15 F .41(ug actually e)-.2 F .411(xists, use the)
--.15 F F4(bashb)3.181 E(ug)-.2 E F0 .411(command to submit a b)3.131 F
-.411(ug report.)-.2 F(If)5.411 E .595(you ha)108 643.2 R .895 -.15
-(ve a \214)-.2 H .595(x, you are encouraged to mail that as well!).15 F
-.594(Suggestions and `philosophical' b)5.595 F .594(ug reports may)-.2 F
+(.)A .411(Once you ha)108 631.2 R .711 -.15(ve d)-.2 H .411
+(etermined that a b).15 F .411(ug actually e)-.2 F .411(xists, use the)
+-.15 F F4(bashb)3.18 E(ug)-.2 E F0 .41(command to submit a b)3.13 F .41
+(ug report.)-.2 F(If)5.41 E .594(you ha)108 643.2 R .894 -.15(ve a \214)
+-.2 H .595(x, you are encouraged to mail that as well!).15 F .595
+(Suggestions and `philosophical' b)5.595 F .595(ug reports may)-.2 F
 (be mailed to)108 655.2 Q F4 -.2(bu)2.5 G(g-bash@gnu.or).2 E(g)-.37 E F0
 (or posted to the Usenet ne)2.5 E(wsgroup)-.25 E F1(gnu.bash.b)2.5 E(ug)
 -.2 E F0(.)A(ALL b)108 672 Q(ug reports should include:)-.2 E(The v)108
@@ -7891,27 +7898,27 @@ E(ug)-.2 E/F1 10/Times-Italic@0 SF(bashb)108.27 124.8 Q(ug)-.2 E F0
 141.6 Q(ug reports concerning this manual page should be directed to)-.2
 E F1 -.15(ch)2.5 G(et@po.cwru.edu).15 E F0(.).25 E/F2 10.95/Times-Bold@0
 SF -.11(BU)72 158.4 S(GS).11 E F0(It')108 170.4 Q 2.5(st)-.55 G
-(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.868
-(There are some subtle dif)108 187.2 R 1.868(ferences between)-.25 F/F3
+(oo big and too slo)-2.5 E -.65(w.)-.25 G 1.869
+(There are some subtle dif)108 187.2 R 1.869(ferences between)-.25 F/F3
 10/Times-Bold@0 SF(bash)4.369 E F0 1.869(and traditional v)4.369 F 1.869
-(ersions of)-.15 F F3(sh)4.369 E F0 4.369(,m)C 1.869
-(ostly because of the)-4.369 F/F4 9/Times-Bold@0 SF(POSIX)108 199.2 Q F0
+(ersions of)-.15 F F3(sh)4.368 E F0 4.368(,m)C 1.868
+(ostly because of the)-4.368 F/F4 9/Times-Bold@0 SF(POSIX)108 199.2 Q F0
 (speci\214cation.)2.25 E(Aliases are confusing in some uses.)108 216 Q
 (Shell b)108 232.8 Q
 (uiltin commands and functions are not stoppable/restartable.)-.2 E
 1.315(Compound commands and command sequences of the form `a ; b ; c' a\
-re not handled gracefully when)108 249.6 R .389
+re not handled gracefully when)108 249.6 R .39
 (process suspension is attempted.)108 261.6 R .389
-(When a process is stopped, the shell immediately e)5.389 F -.15(xe)-.15
-G .39(cutes the ne).15 F .39(xt com-)-.15 F .193(mand in the sequence.)
-108 273.6 R .192(It suf)5.193 F .192(\214ces to place the sequence of c\
-ommands between parentheses to force it into a)-.25 F
-(subshell, which may be stopped as a unit.)108 285.6 Q .955
-(Commands inside of)108 302.4 R F3($\()3.455 E F0(...)A F3(\))A F0 .956
+(When a process is stopped, the shell immediately e)5.39 F -.15(xe)-.15
+G .389(cutes the ne).15 F .389(xt com-)-.15 F .192
+(mand in the sequence.)108 273.6 R .192(It suf)5.192 F .192(\214ces to \
+place the sequence of commands between parentheses to force it into a)
+-.25 F(subshell, which may be stopped as a unit.)108 285.6 Q .956
+(Commands inside of)108 302.4 R F3($\()3.456 E F0(...)A F3(\))A F0 .956
 (command substitution are not parsed until substitution is attempted.)
-3.455 F .956(This will)5.956 F .567
+3.456 F .955(This will)5.955 F .567
 (delay error reporting until some time after the command is entered.)108
-314.4 R -.15(Fo)5.567 G 3.067(re).15 G .567
+314.4 R -.15(Fo)5.567 G 3.067(re).15 G .568
 (xample, unmatched parentheses,)-3.217 F -2.15 -.25(ev e)108 326.4 T 2.5
 (ni).25 G(nside shell comments, will result in error messages while the\
  construct is being read.)-2.5 E(Array v)108 343.2 Q
index de27001516d29e2517703286d3916cea0aa85013..b4ab8b5cc857c6275dc2771fdf9f3e3c3dac5818 100644 (file)
Binary files a/doc/bashref.dvi and b/doc/bashref.dvi differ
index 81055da85328356e0901f9a14e674e25705b3e2e..dca1c3c9b818ca594fb2edca5f9c88de3c0a920d 100644 (file)
@@ -1,4 +1,4 @@
-This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.4.8)  24 JUL 2008 09:12
+This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.4.8)  5 AUG 2008 10:31
 **/usr/homes/chet/src/bash/src/doc/bashref.texi
 (/usr/homes/chet/src/bash/src/doc/bashref.texi (./texinfo.tex
 Loading texinfo [version 2003-02-03.16]: Basics,
@@ -352,4 +352,4 @@ Here is how much of TeX's memory you used:
  19 hyphenation exceptions out of 8191
  15i,8n,11p,273b,474s stack positions out of 5000i,500n,6000p,200000b,5000s
 
-Output written on bashref.dvi (162 pages, 632652 bytes).
+Output written on bashref.dvi (162 pages, 632680 bytes).
index 0722553760bedbbd01747efc338212c0ebcad458..156c64b61c9b9ff2b94405d67e722ed034002e11 100644 (file)
@@ -13,7 +13,7 @@ endobj
 /Subtype/Type1
 /Name/F1
 /FontDescriptor 9 0 R
-/BaseFont/RYABOS+CMBX12
+/BaseFont/MCPWEB+CMBX12
 /FirstChar 33
 /LastChar 196
 /Widths[342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5
@@ -35,7 +35,7 @@ endobj
 /Subtype/Type1
 /Name/F2
 /FontDescriptor 12 0 R
-/BaseFont/MRDZHP+CMR10
+/BaseFont/KOHAEC+CMR10
 /FirstChar 33
 /LastChar 196
 /Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8
@@ -64,7 +64,7 @@ endobj
 /Subtype/Type1
 /Name/F3
 /FontDescriptor 16 0 R
-/BaseFont/JCYCIE+CMTT10
+/BaseFont/BPPISA+CMTT10
 /FirstChar 33
 /LastChar 196
 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525
@@ -107,7 +107,7 @@ endobj
 /Subtype/Type1
 /Name/F4
 /FontDescriptor 25 0 R
-/BaseFont/AQLFWE+CMSL10
+/BaseFont/DOHDCQ+CMSL10
 /FirstChar 33
 /LastChar 196
 /Widths[277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8
@@ -137,7 +137,7 @@ endobj
 /Subtype/Type1
 /Name/F5
 /FontDescriptor 29 0 R
-/BaseFont/TQNPIW+CMSY10
+/BaseFont/YDEPED+CMSY10
 /FirstChar 33
 /LastChar 196
 /Widths[1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8
@@ -191,7 +191,7 @@ endobj
 /Subtype/Type1
 /Name/F6
 /FontDescriptor 37 0 R
-/BaseFont/CMTOIX+CMBXTI10
+/BaseFont/PUOJLV+CMBXTI10
 /FirstChar 33
 /LastChar 196
 /Widths[386.1 620.6 944.4 868.5 944.4 885.5 355.6 473.3 473.3 591.1 885.5 355.6 414.4
@@ -214,7 +214,7 @@ endobj
 /Subtype/Type1
 /Name/F7
 /FontDescriptor 40 0 R
-/BaseFont/HQMHFX+CMTI10
+/BaseFont/JUVMCM+CMTI10
 /FirstChar 33
 /LastChar 196
 /Widths[306.7 514.4 817.8 769.1 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8
@@ -355,7 +355,7 @@ endobj
 /Subtype/Type1
 /Name/F8
 /FontDescriptor 60 0 R
-/BaseFont/DNNGPG+CMCSC10
+/BaseFont/HQTUZE+CMCSC10
 /FirstChar 33
 /LastChar 196
 /Widths[319.4 552.8 902.8 552.8 902.8 844.4 319.4 436.1 436.1 552.8 844.4 319.4 377.8
@@ -528,7 +528,7 @@ endobj
 /Subtype/Type1
 /Name/F9
 /FontDescriptor 83 0 R
-/BaseFont/LMJXGX+CMSLTT10
+/BaseFont/ALOWJJ+CMSLTT10
 /FirstChar 33
 /LastChar 196
 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525
@@ -2666,7 +2666,7 @@ endobj
 /Subtype/Type1
 /Name/F10
 /FontDescriptor 346 0 R
-/BaseFont/XTTDRJ+CMTT12
+/BaseFont/MSHGRM+CMTT12
 /FirstChar 33
 /LastChar 196
 /Widths[514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6
@@ -3170,7 +3170,7 @@ endobj
 412 0 obj
 <<
 /Filter[/FlateDecode]
-/Length 3038
+/Length 3064
 >>
 stream
 xÚ\95\19]sã¶ñ½¿B/7GO,\86\ 4À¯ô)I\9bÌe¦ÉCÝé$q:¥%ØbN"UB<×ÿ¾û\ 5\12\14içú"\81\v`±Øï]l\928I6O\eúû~óÍÝ\97ß©M\9aÄUº¹{ܤå&Õqe6w\7fù5úöP\9f/¶¿Ùj­¢â«\9b­1YôC÷\80\0\1d}Ûµ7ª\88.}w¼ÙªR\15&*\8b\9bßî~øò»t\93\16±"\84[8'ÝlM\15\97\84³¸Ùf¹\12,EFXtÂXhoH\8cAJ¶:\89SE\9bï\ e\8d\83me\19íðè\91<\0ì\e·\e\9c³2ÿ|¨/<ú\9dN*«h\17Ò«Ë"jÜ-\)QÑ¡»Qyô,PÙ÷\8c\8b»þ£_T·{\9eÀÕ\85_ýMí\ e\8c¾>\1eyÂñÌ\vâì\ 6þ¸tx¹ÍVn\ 4,N3ºQ½ÛYç\98¡Í\85\ 6&z¬wͱ¹4ÖÅ#?M¬\rò\84Ù©U\9c\15ÌÏ8]ãhêï        R\ 1\1a\9b\9d[å®ÞlU\15W9¡b\fF3§r\8fÁ¨¨·\8f¶Gâ\8cÁ«Ð¢ËÁ2 ~@bñê/2#+\9c=ÚÝ¥ù\84Sö(\93îÒ\9dyß}ä\ 6\ac\9cm÷÷7\82\9eÑêÈþ×î\86K\ 3¤\10¼{äÿsßÑ\16d\9bu¯q\15
@@ -3186,10 +3186,9 @@ j
 \ 4\9aëø\7f\8c?\94}_:\914gÿ9W6t\88½\f}+\9bg\r\10\e7\ 4¨\f\båe¦Jd&¯kÿ²·Ç\1a½çË\8d'\ 1ò¨ÐF\16,.ÍÄâ\1dî\9aä\88{ï¯û2\ 62Å¥\1cÓDa\11+\82üù\ f\ 5\99©YStû3
 \12Ï\e¹ï³X³H\ 4\r&\89\1dÏLÌ/¯\98ÏÖ\ 2ú\95\8e\ 2\95ðIÂÍËdôå\8e¡l>©w渮=\ f²TB\r.#\7f\91Lñ÷\96µ\8eëXX0ï \8e\88\93 mA§ NØýülÑ\ 1\ 3.ìî`WàW\e&¥È\86\ 5`ª¡\ eh\9bópäÆ\90I\8dO\12°\91H\85\r\ e©¤Lµ/ES*änù°Á±®¥zµs¢ò\1c\8fg!><-e\9cM®Cú&BbÇô,;\8c8\8brÀ#©\8e\15ª%ÃWØÌ\ ený0\8bÖ·\9c\91
 ;µ§ôq\95Ò2[P\9a\16ÿW(M4S\9a\18¦4ñüMÂ,ç\96ûd\98\89ø\15\v6\9a|\8aÕ\1f\9bã²\97¯\8a©¥\11\90§ÇÖ¸^´\8c\b\ fx8åÝ}J\rVø^Úª)b£?Óç"\ e`qý\91b¶ãOKIéî"\a\9eNv\8fí\ eìniên\81.s[\19¦\ fµã\ 1§ä0¨÷û\ 6«ÒZ(vÍ^fæ\88© \84\7ft   \       W¾\97\f\8e\f\8c\fBÈ,\9fï\86\v[,fPÜh5Þ\8bq8«\ flÝZ\927J]¼Yb\92Ò¸\1d$¹vÿJÖ\0VI\99YVH\8a\96\ 5¿ÇF×ÔKá   j¥d\ 5¿\95°\8f\93H\80\19z9\98\83\ 4
-\0§¦TV\88û\81\ 1õ\861\97\ 5ùóÀëp\9c­E^\9deqêÕàÝB\v \88Ó\93\12ÈÙìÐèZûaç\9f\14t\91Å3\ 1Ôc\87\88yßÖ'û
-'å\1d%_m\10^\93\9c'qá\1dL» ¸\8a½ÖNmb\13D\b<\85\93¿5ÂeSpkÉä«a­\9aLñ]»j+\9e¢÷hw¥\121\0\12´9ºã«\87\14\10£|VýîÝ\1fÙ#â`­^E¦Ó8õÕã»/>\a\99\91\7fX\12õzïå¬ËÑë° }wIKûF\97~/Fò°ë\81\0\ e4º*çɳ\91\949Ø*}Y\0I\96|\9dX!ħ|0ld5Û\96\13¬í\15Ö°\16%\8aûÕÐJ\r}ªk+n®â¿8¯ü*\ 4\85®6\1f[¯8^Ñ¥ÂÄyú\96Á©Ðëbê%O3\80®íø¿ÞA@8×ÄÖ\17q\8aÒM&
-ÄÁí°oPì¨_I­ Üzt\82D\9e(9C*\13|-½®°µ/\89ôUûJë·~³Rt]c¶m?5Ýàx\87X~\19X¢.B\17[2\r¶Ýñ\e[és\ f\·d\9dªª8÷Üy·}[«\854ªì4¹Ê^Îl\84¼®å\87\15àO\ 4'mþ4N\8a\90!¢·f-\96*\90©ù?Ì-ñ¶\9b®Ûn\92\7fæ-\19Ç\8e\1e7\8dÏ*;zø2a\92\89uÏ`¶ït2ùT@\89\7fw\ 1\88H\17J\97\ f-CÆ\80
-ë|y\8c%)K,@BÏi\ 4¹\8f\14KI\8f\ e.t\e\9c7a\9a$\881\8d£ÄT©õt®\9aZbëOvE\9c]eL÷7\98\8bùÇwÄ<Óc<\92\1fa`@©°Â\ 6\94\8fÎüälT\12Ý«<©\9f\9e¨\96\82\98\83\8b\8aN@\9c*½R|ñfd\15\12\9b.\ fZXê8/æ}»ÉÂ\82Ø*\8f\9dÓ+áz\8díÕjû¦ßá ý×»?ý\ fç\a\f\8b
+\0§¦TV\88û\81\ 1õ\861\97\ 5ùóÀëp\9c­E^\9deqêÕàÝB\v \88Ó\93\12ÈÙìÐèZûaç\9f\14t\91Å3\ 1Ôc\87H²Waû\ e«\99bWû¦\8e\19ÓР¢U:®Ê =ë÷.\8bH85\1f\93Q©îR\94U(*y¨ÉW;\90×<É\93¸ð(ÛÅ\81UìÍbêC\9b \ 4á)$Ã\9e\1cº\111\9a\82{W&_\8d\9bÕdëïÚUcô\14½GÃ.\95È\19к\97 \8fÒ\1d_=¤\80 èYúîÝ\1f\19<â`³YE¦Ó8õåé»/>\a\99×ë\91\7f¹\12ý}ï\15I\97£[cMòí+-ý!]ú½\98*\84m\15\ 4p$ÓU9ÏÎ\8dääÁViü\ 2HÒðëÌ\r!>§\84a#«Ùx\9d`m¯°\86Å.QܯÆnz1 Â¹âî-þ\8bw̯b\èËó±·\8bã\15]*L\9c§oY´
+Ý:ævòö\ 3èÚ\8eÿë\1dD\9csMl}\11¯+íj¢`Å\94©×\84[\8fN\90È\e([d\99àsìu  ¯}Í¥¯úcZ\17¾·\9c\95¢ë\1aÓyû©é\ 6Ç;ĵ\94\81%ê"ôá%Ó`Û\1d\95>¹ÁuKÖ©ª\8a\9dwÛ·µZH£ÒQ\93/îåÌFÈëZ~)äb\ 4þDpò\8e\90ÆI\112DôÖ¬\ 5k\ 525ÿ\87¹%ÞvÓuÛMòϼ%ãØÑë©ñikG/k&Ìb\r½áî\19Ìö\9dN&\9f
+(ñ\ f;\0\11éBmô¡eÈ\18±a\9d¯¿±æe\89\ 5Hè½\8e ÷\91\8d\9f\19 \83\vÝ\ 6'f\98\87  bÌ\13)óUj=_¬¦\9eÛú\9b`\11gW)Ùý\r&{þu\1f1Ïô\18\8fäW\1e\18P®­°ÃåÃ?¿i\e\95D÷*Oê§'*Ö`\89¼\16ábÞ»¢\13\10§J¯\14\19º\85DΠ§Ë\83\16\96\8bycp²° xËkêô\f¹^Ä{µÚ¾éw8JÿõîOÿ\ 3%¼$X
 endstream
 endobj
 413 0 obj
@@ -3317,7 +3316,7 @@ endobj
 /Subtype/Type1
 /Name/F11
 /FontDescriptor 429 0 R
-/BaseFont/GOKYXE+CMSY9
+/BaseFont/SWZQGN+CMSY9
 /FirstChar 33
 /LastChar 196
 /Widths[1027.8 513.9 513.9 1027.8 1027.8 1027.8 799.4 1027.8 1027.8 628.1 628.1 1027.8
@@ -3340,7 +3339,7 @@ endobj
 /Subtype/Type1
 /Name/F12
 /FontDescriptor 432 0 R
-/BaseFont/BRJHXW+CMR8
+/BaseFont/NTUIRZ+CMR8
 /FirstChar 33
 /LastChar 196
 /Widths[295.1 531.3 885.4 531.3 885.4 826.4 295.1 413.2 413.2 531.3 826.4 295.1 354.2
@@ -5138,7 +5137,7 @@ endobj
 /Subtype/Type1
 /Name/F13
 /FontDescriptor 659 0 R
-/BaseFont/PTTIWW+CMTT9
+/BaseFont/XWDNZO+CMTT9
 /FirstChar 33
 /LastChar 196
 /Widths[525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525
@@ -5213,7 +5212,7 @@ endobj
 /Subtype/Type1
 /Name/F14
 /FontDescriptor 670 0 R
-/BaseFont/YOOZZS+CMTI9
+/BaseFont/PKXZUV+CMTI9
 /FirstChar 33
 /LastChar 196
 /Widths[314.8 527.8 839.5 786.1 839.5 787 314.8 419.8 419.8 524.7 787 314.8 367.3
@@ -5235,7 +5234,7 @@ endobj
 /Subtype/Type1
 /Name/F15
 /FontDescriptor 673 0 R
-/BaseFont/VPLCCO+CMR9
+/BaseFont/JBWKPP+CMR9
 /FirstChar 33
 /LastChar 196
 /Widths[285.5 513.9 856.5 513.9 856.5 799.4 285.5 399.7 399.7 513.9 799.4 285.5 342.6
@@ -5517,7 +5516,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-53 -251 1139 750]
-/FontName/RYABOS+CMBX12
+/FontName/MCPWEB+CMBX12
 /ItalicAngle 0
 /StemV 109
 /FontFile 8 0 R
@@ -5534,7 +5533,7 @@ endobj
 >>
 stream
 xÚí·Stn_·æ\9b\15Ûæ\eÛ¶mÛycÛY±mcÅvVlÛZY±m'õÿ¾]»ªÕÞusÚ¹;íÌy3{ïÏ|úoô1çÅ 'VR¥\176s0\ 1J8Ø»Ò330ó\0DåE´\98Y\0Ì\fL°ää¢Î@cW+\a{1cW \ f\80\99\9b\9b\19 ìf\ 1`a\ 20sð°²ñ°³ÁÂ\92\ 3D\1d\1c½\9c­,,]\ 1T¢ÔÿRq\ 2\84í\80ÎV¦Æö\0ycWK Ý?&¦Æ¶\0U\aS+ «\17\ 3\0 lk\vPù×+.\0\15 \vÐÙ\1d\0\vËÌ\f0³2u\ 5\98\0-¬ìa\19ÿ\ 5%moî\0àü\8f´\99\9bã\7f\96Ü\81Î.ÿp\ 1¨þá¤\ 6üCiæ`oë\ 50\ 3\9aÃ2*8üÓ\rø\ fËÿc¬ÿ\vÕ\7f5\97p³µU0¶û\97ý¿\aõßêÆvV¶^ÿSá`çèæ
-t\ 6È;\98\ 1\9díÿ«T\13ø\1fp"\ e¶ÿ­\8d´«±­\95©°½\85-\10Àô\1f)+\17 +O \99\92\95«©%ÀÜØÖ\ 5øï<ÐÞì¿"ü3¶\7f\ 30ªh\v\8b(ªÒþÏ-ý\8fª\92±\95½«\9a\97ãÿòý\97üß1óÿ\8eÿ\19\8f³\95'@\97\89\81\89\89ù\1fá?÷\7f>éÿ\97nâö¦\ efVö\16\0UWc{3cg³ÿ\95øïT""\ e\9e>ôì¬\0z\16vf\033+7\80\93\9dÉïÿ\14ªÛ[9¹\ 1¥Å\0ìLLL\9c\1cÜÿÎ\9aº9;\ 3í]ÿý\19ü³âÿ\8cÍ­þ\99\ f\10è       4\85ÍÎÁ°úaHG@ûhôзL¢Ù1½¢\ 4Û]r\99ÁþT\809;v\ 3g\vÁ°j\1d\1ej£ô°\86ðv®\14\93þBE$\18Ñà/Ï\9bÐ÷d0èå\85\a\93Æ|²Kwï\91§&ö\98~\1e­E\a\94±÷
+t\ 6È;\98\ 1\9díÿ«T\13ø\1fp"\ e¶ÿ­\8d´«±­\95©°½\85-\10Àô\1f)+\17 +O \99\92\95«©%ÀÜØÖ\ 5øï<ÐÞì¿"ü3¶\7f\ 30Ê\8b*i\8a\8bÐþÏ-ý\8fª\92±\95½«\9a\97ãÿòý\97üß1óÿ\8eÿ\19\8f³\95'@\97\89\81\89\89ù\1fá?÷\7f>éÿ\97nâö¦\ efVö\16\0UWc{3cg³ÿ\95øïT""\ e\9e>ôì¬\0z\16vf\033+7\80\93\9dÉïÿ\14ªÛ[9¹\ 1¥Å\0ìLLL\9c\1cÜÿÎ\9aº9;\ 3í]ÿý\19ü³âÿ\8cÍ­þ\99\ f\10è       4\85ÍÎÁ°úaHG@ûhôзL¢Ù1½¢\ 4Û]r\99ÁþT\809;v\ 3g\vÁ°j\1d\1ej£ô°\86ðv®\14\93þBE$\18Ñà/Ï\9bÐ÷d0èå\85\a\93Æ|²Kwï\91§&ö\98~\1e­E\a\94±÷
 \18Ón¨ÛD[Àîc\0\81´ugVàêØs;L\8cÓú¾<êß³nV­CÛ3¾Öt\10uØ     Âcº,î!\9bD\9bkøT\ fi?#j¦\83\86íUÏ\82æg\17Ä\1aú¥~/D¯\1e°Ø,es\9c\802ÿØ[«G$i\7ftcа0qN\91©Õ\90¢\82\92Þ\84ú1³\14\16À\17ß\r\ 6·\8a±ö½A0-.\8b¥à\8d\9bÞ\92\7fìxä\ 1ª\9c\9b\9b\82Û\17B¶¬NF\13S\10#]{\ f\92¢\9fÙ\9eY\96s,\ 5^kóyDú Áê$Æ\b$-y\9aÁ\19ã.\83î#Gc \19I\e\9bª9Ðøy\88ã\14\1a\17\80`\98jÀÎíØ\94
 k9¥Q\ f¦¿Ý\v°erí9\87âþÓUä\zDýî}F§[Öq\bï#W\92ºí \80g§N¿\1084Û&ÉïTsy<\99j\98ú¡zZ¶\97Y~V\94m5ßJÒp3û¡E\8d\96\ 6µ\8e¢4        ©\8c
 ãø'ß\95÷üZì©6émfØ]+3'ú\86ÈÈ\18Ã\b\9cÛ¤ÏÊ\0ï·\1f\f"ÒF\150\17¨    \882\87;­½\8e:4túÝåÎ-ïEmq\80·\ 6Êk\1f\10Ã\9f\19¾|(§ÚKÛÉ\12ª\9bbæÒ,ÅÚí\19Îÿr0zdùýM^Ù\19[\8c\1eï*\9b\vA¶2\19\14HæÃ¤2¥o~\7fÛõRb-Ø,q¦å³ÖÃDî®2³Ãn\12u¹½FÅ«³\80\17\8dþ³\86l-#\1dv¬p_@\8dï`\7f(>ï\88xxF ê\94é%á\a\9e)´ùx\84\91\91åú)iÚù#^Ó&@\1câ\83\1f\11w\14¬P>©ó\8b²Û\15¥É´<\8eµü´\1cTg\90\88ø\98\7f\98\96\9571\16\ eÕqXÊ¥8\81\84\1e\1c×|\a\87\ 2µÇ\8e."5*Þ±\1f,\ 1Ýþ\10\86à\ 6P\95na\10\83ÄþR  U\9fc\80¸'\1e`æ*"&\8bvÃb\18\99\1d_h\80\8e\8e\92
@@ -5591,7 +5590,7 @@ gi
 ¤ófÀÀó\1c%UÊ^Ú\87¾\13+¸EÞ6\×ýÈ'\8c¾\81'*ªâ{õþ\81É?é׸\90
 ±µ&o\99\ 1GiÒ\12±ÊëY-v¸Ü\r&A\87qä}¿SÑ\81\9aüZ!K¦\17_>w¨;ÊÓÆ¶R<¤ÇFó\18³\8fºIq÷q±¸ZÊÆÞú_\10=îmxM
 6÷\93Ë{p\9f{ds\9e!z×-\8f:qû\89\9c)\88\ 51ÿ\16¾Í<Ø\18]ä,Õì6\9c£ñ¿#ZUÌsç\93:K­×V·
-û^&4µ£\ 2ÃàWÑZ#`¸ûÜ£\9e¼\8f®¶2Í×\c\18Ävy\9dn¿)x\a½éiÆ Þ`WÁ\1c\ 1*\9a\12õñòX;Êö\16Ï\e\86\11êíñ\7f=¥ò¼\18&\90Ì\v¦`æ\15\95µÙÓVeªZÓJ\1c8\16õ\8dîßà§\81à/F\ f\8a\9fgâ9÷Í7\rvó5b®÷`]|ú\8a\87 ­>ÙZI\93\9e¥Es\1e\14Å\ 1Þ3-$«x´\fo<¿¬)ÐÐ\9eýl=£76q¤ÿùÍe\7f¬MJ©\19ï½Q¥`yùi\89ÕáJ\1a¿\1a\9f\8eâþrtqS D(î\87b¤%ü\11vLÏ-¼\1f\81\ 2ÝÀu0Ï\18ÄXÓËú61O\ØÿèW½æ\1f_\82^\e(PâJÎvïV$\19Î\1dP\1fû9@ÐsF \ª|Â\10\85øÄn\9d»\9dÎ\ 5/q\8b=\15G:Ûð»ûÝ\fÓÙ\14­\ 6\95}\8e\b\8bʪ-\f"É.»\89§J­ j¥à872~§\99»\95\95Æ\13¹\ÿ\12É\1d\84)\95<L¹Rñ\883Ú<\84_MåX\91CÞölå\85UÍB÷\8bÿWu¯ó\1fãÞ9\18® \11\94«PW¦XpÇ˵%Kü\85/vQ&7\8cÃv%\ 3\8e\16Ú/\87M|¼ËòFp\19¿óM\15\9aør\f<A·G\9d.`}vwÚG¡\1cZÿ\17æ\97\129ýê\v\994\ 39ü\©á×ñP|m\14       yLs[9õK'\1f\81³\ 6£\89\1e\8e\91f"ÌKÞàa\\91Ôs\ fmQ\93°Æê\13¯ gÑ\ 5=ÓÿË\vöÿ7øÿ\84\81©-ÐØÙÕÁÎØÙ\ 6\16ö\7f\0Ò-ý 
+û^&4µ£\ 2ÃàWÑZ#`¸ûÜ£\9e¼\8f®¶2Í×\c\18Ävy\9dn¿)x\a½éiÆ Þ`WÁ\1c\ 1*\9a\12õñòX;Êö\16Ï\e\86\11êíñ\7f=¥ò¼\18&\90Ì\v¦`æ\15\95µÙÓVeªZÓJ\1c8\16õ\8dîßà§\81à/F\ f\8a\9fgâ9÷Í7\rvó5b®÷`]|ú\8a\87 ­>ÙZI\93\9e¥Es\1e\14Å\ 1Þ3-$«x´\fo<¿¬)ÐÐ\9eýl=£76q¤ÿùÍe\7f¬MJ©\19ï½Q¥`yùi\89ÕáJ\1a¿\1a\9f\8eâþrtqS D(î\87b¤%ü\11vLÏ-¼\1f\81\ 2ÝÀu0Ï\18ÄXÓËú61O\ØÿèW½æ\1f_\82^\e(PâJÎvïV$\19Î\1dP\1fû9@ÐsF \ª|Â\10\85øÄn\9d»\9dÎ\ 5/q\8b=\15G:Ûð»ûÝ\fÓÙ\14­\ 6\95}\8e\b\8bʪ-\f"É.»\89§J­ j¥à872~§\99»\95\95Æ\13¹\ÿ\12É\1d\84)\95<L¹Rñ\883Ú<\84_MåX\91CÞölå\85UÍB÷\8bÿWu¯ó\1fãÞ9\18® \11\94«PW¦XpÇ˵%Kü\85/vQ&7\8cÃv%\ 3\8e\16Ú/\87M|¼ËòFp\19¿óM\15\9aør\f<A·G\9d.`}vwÚG¡\1cZÿ\17æ\97\129ýê\v\994\ 39ü\©á×ñP|m\14       yLs[9õK'\1f\81³\ 6£\89\1e\8e\91f"ÌKÞàa\\91Ôs\ fmQ\93°Æê\13¯ gÑ\ 5=ÓÿË\vöÿ7øÿ\84\81©-ÐØÙÕÁÎØÙ\ 6\16ö\7f\0 \ 4ü÷
 endstream
 endobj
 12 0 obj
@@ -5601,7 +5600,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-251 -250 1009 969]
-/FontName/MRDZHP+CMR10
+/FontName/KOHAEC+CMR10
 /ItalicAngle 0
 /StemV 69
 /FontFile 11 0 R
@@ -5618,7 +5617,7 @@ endobj
 >>
 stream
 xÚ\94·cÐ(ÝÒ¦ùØû±mÛ¶mÛ¶mÛ¶mÛ¶mÛÞó\9esæë\89\7f:jEÅÊÌ»r]\95\95µ¢\8a\84@^\89FÀØÎÐDÔÎÖ\99\86\81\96\81\13_HF\91\81\1e\9f\81\96\9e^\10\8a\84DÈÑÄÀÙÂÎVØÀÙ\84\13\9f\81\83\83\11_ÔÄð\9fÉ?\83\93\85\99\93\85\11
-\8a\ 4_ÈÎÞÃÑÂÌÜ\19\9f\\88â_*6|\ 1\e\13G\v#\ 3[|\19\ 3gs\13\9b\7f\92\18\19Xã+Ù\19Y\988{Ðâã\vX[ã+þë\12'|E\13'\13GW\13cZ((\ 6\ 6|c\v#g|C\133\v[(º\7fQIØ\9aÚá³ýÇmìbÿ?!W\13\7f¸ðÉÿMJ\81ÿ\ f§±\9d­µ\a¾±\89)\14\9d¬Ý?ë\99üCó\7f\rö\7fàúïä¢.ÖÖ²\ 66ÿJÿ¯Zýoa\ 3\e\vk\8fÿW`gcïâlâ\88/cglâhûßR5\93ÿ°É\98\18[¸ØüwTÂÙÀÚÂHÀÖÌÚ\ 4\9fþ?.\v'Q\vw\13cy\vg#s|S\ 3k'\93\7fûMl\8dÿ\eâ\9fÊý\e\81NFQXS\\9eê?\8fõ?Ay\ 3\v[ge\ fûÿ\95ö_ê\7fÛ\fÿ\9fýOy\1c-Üñµèÿ©/Ã?Â\7f\8eÿ\99éü×b"¶FvÆ\16¶føJÎ\ 6¶Æ\ 6\8eÆÿËñ¿C        
+\8a\ 4_ÈÎÞÃÑÂÌÜ\19\9f\\88â_*6|\ 1\e\13G\v#\ 3[|\19\ 3gs\13\9b\7f\92\18\19Xã+Ù\19Y\988{Ðâã\vX[ã+þë\12'|E\13'\13GW\13cZ((\ 6\ 6|c\v#g|C\133\v[(º\7fQIØ\9aÚá³ýÇmìbÿ?!W\13\7f¸ðÉÿMJ\81ÿ\ f§±\9d­µ\a¾±\89)\14\9d¬Ý?ë\99üCó\7f\rö\7fàúïä¢.ÖÖ²\ 66ÿJÿ¯Zýoa\ 3\e\vk\8fÿW`gcïâlâ\88/cglâhûßR5\93ÿ°É\98\18[¸ØüwTÂÙÀÚÂHÀÖÌÚ\ 4\9fþ?.\v'Q\vw\13cy\vg#s|S\ 3k'\93\7fûMl\8dÿ\eâ\9fÊý\e\81NJN\@D\88ê?\8fõ?Ay\ 3\v[ge\ fûÿ\95ö_ê\7fÛ\fÿ\9fýOy\1c-Üñµèÿ©/Ã?Â\7f\8eÿ\99éü×b"¶FvÆ\16¶føJÎ\ 6¶Æ\ 6\8eÆÿËñ¿C        
 Ú¹{Ñ0²0àÿsú§Ïèé9ð9X9|þÿJ\15[\v\a\17\13 a|\16zzz6\ e¦\7f{\8d\\1c\1dMl\9dÿÝ    ÿÜñÿئ\16ÿÔÇÄÄÝÄ\bÊ_IA\86ü\9a|\13\95\1e\8a\94<pé»,< \90[\85í×\9ag3ö¤=íÀ»\9eìe\8co«Å
 Ê\9bä\9b\ 5±Eïü©úëï´\9f$;M`ÆtÜ\92\ f÷¥ÄfÏdb°ç½*4¿ì\e\ 2sýÓF\ 6ów\ e´¬>>BÇ\»ê _J\1c·&]/컺\ f\9e\9asX6£¬Âw#yx\9b\1c1\8aü\1a?nGüòSY\9d\91Bº aÐä@ë\8c°ÍÖÔ\ 6ÊVÖßð`Ywi«7ötà\r\11h\18\ 2\17K@'0\11o_Ã\81E\8b\1ef CÓÝo.]\9fÈ\18:­û_\9b\1dþy§\84\1aI}ôíÃLª8\v*\8aG NoXÓÝØumä\87w       \ 23\16?\85²sé\91\rZ¸[\99\809¿î\98\13\1a\16\aA`\8e¤\8fþh\ 6ÍÎÝ\98nI'Úà\ 3Á¥Þ\13\14µ\ 4\99È"o\91L]+?E\8b\97x÷ª¢^Q\81\ 2Ìá\18hCí \92¦ØþXé\]¿\9b4KUù\8d\9c@\ 49á¬ì\ 2iÙ        5{Â\94¢Ì¤»¤Wô\8cöK°úÄ¡\81\13àÓcÖý\8aOB5ë\bú*\9eñA8\9dÀÖì\9d÷¿2Õ\9fÙʽ+E\95¼%\r\14¿©½FäB\1d­Ý      ­(ê\98é:-V¸\80\93ú·\16\93\89\10\81×§´\9bK\a`ë,Ìá\84üpЦu&q\94'¶óqQ\0ðjèà\0YNU\88åsÈ\93Ö\ e÷Ü\94â#\0\1f«\84¦u(\92F.\7fõÿdUó\81Î2#Ó\98\9b\95¥\ 4\8c0¡Y5>!8±\9aáÒ
 \eE¦¡úÒV\18Ë2\¢\ eÖPÄ_2\8dð\ 3î\8f£ØÚ\9cWYÊð\97!y\15º<¥Dü\16\1en\ 5ªÖ\f\0¯~L\ 3û³\15ûÆ-[\8c|Dêr£ôHÎò/ñ\ 3FaÿõÁ]¯ª¯Vki)\1c\84RHñJ\1dVºiÛ<©ûI(¶I\8aÛ/`2\ 2À \96¹\11"z¸µ¡\a¤¼Ä¨'.QdP\ 1\ eÙ&í\Â\85\1c\815Aô§p]L\1f¾ø\ 3 <dxÚÇÙdX¬|\9b´K2«,\0\1f?\98\9bã2\ esh\19Ì/µ±Ëy\vË\97\889\12ö\ 1®F\15¤\2\84ª{é\eEU|ÄäOÀø¦ß\8c\19\ fc\11Û´è\14u      UçY\9bZ¢~\1feP;6¶ªE\1eÑå\95á\ fó÷V« s\ 2n\16AÈë`çû¾»Ä\fZ\99+U¸\f;\8ct~\0@³§ÃÎ\16æm²\92!\ 5л\1c\ 5\ 3\ 5\9b\1a\1aä\1d×Á\e\95Óõ¢Q\89b\96\94¤\raÊë#\87è\9aªå:ò®} ¨\99°ÆÀ\8b§x95äGx\9a àW\17E\0\95³é@C\14p\95Û7Ý\1fÇMTLÈm6é\1d\19äI\rêkeë×M-\144Á³ÃÂ(Ý×ö\9b\86/ãSõºÖ\98P-]QÕ/~:þøÎÆÎa!$Ð\1e_Ùí\90\00\92\9c[\8d\8a/\8dZ!`!Thv
@@ -5677,7 +5676,7 @@ _\f\19
 Øû7."{ËÃð¾r\14-\94±\1fâ䬨øñ\96\18Ñ£\13\88\ e\92\ 3Àv\9al\8b~G¦s×\829Ó·bÁvÐçåÉñ\86Þ¸\8a\7f\82\95×\0\15'F\ e\1f¤óëPá¶\e\11Ò\91ëà·\15\94(º.\81`\96~C»Ñ\8b÷ \84ìö\94p\ f\1cM9SJdѤ\1dÆrÍ!ÏM\91=\82²)\88%]ÿ¾Ã\ 3í<øÉqâOé\8eíy¼­?\8cró0²dx
 àYQ\80û\a}\8bª³;Ð\9a$é¾\14ûVXÕ\98\9aÜfãñ%\98l\ 5äG\91\96¡=ºkÂ\92ï<Î#)ÖD!'°­\9c\86rÔi2jy@ÖAï:\ e%f(7Á \13V+¬W\ 1èÎQlêHõ\82\1eô2\90LÓ/\9d\9b\97°¾·\82euc\ 4w\81\81W¿\85\8b\rj:\89/C§Ë\8c[þlã\0b\8d\ efTñ"ÉÀ\85Ϲ{\96\92¯*\Øü4e?7\9eÉ\1fD½{7\aiOC\11\ 5ExÕ0V( l Î\94z.ýÍÄX\80¸\1dÀ\8e§\1eäh\8aº±þ\99¡\99ÕW2?f+®\aô\ 4I©æ
 ò\86VÍ·\12S Ô\8d»\ 6ê\85¯§3¨5\r¸ý5H
\81åt)>\vQ\es\91ò\8e{çp×Lü\ 6\13Õ\95hpÏ\82I\f\7f`p§ømaÃS[\8c\f\14!kmè&\8a\1a߯\9f[\ 4¡H\0­ï;q\e\ 6ÅU-Q\83\b*2&\96\8eìù·´\1e\89\fÄ:\1f\94óG±\93\878W_O6\99ÊwD¯ô§\8b¯a%Ô\95â\ 2úD©&~q\8aûN¬\8a×^ö¤\84\fºc¢­É\9f>¦ø\9b <\95h Yè\16\f        \aõ2·\1f+6ö\8aí#gô´\0­\90\811\92\8e\1aÌÚÔ"ì& \v\86 ØbI¡ts\85Z\0.söAÉ4\8f\99¹Z/õ\16=Q?\10²üÔv\83ð»\16ß:\ 4D\13äÎ\fKp\ 3¦ãƽÂ\9f¶]Acð ­\13­Ó\ 4û/\10»ÅdÎhJô<öJ\0¸yxí\1dc\9cY¿\ 2ú&âI\1ffp\a\98Ø\19%dª½D¼µ?¡Â}©m\13ñ\8c 4^Í_pê=Æb»#ä£\9c¡Êqm\ 6*}2k2\ 17\8d\84\87è\8e»¸;\88Ü/óañ-\13òØ¡µæ@\91\aI3ºÖ^ÿÏd<ûO_Ϋ~æ¸{³\96ahm\92@o×µå7\9f\9dÍ\8aa0\þmÍÛóa¥\95ï\96=\9eäç¯ß8Ý«mëË[b\e\16ÉÚ¤\vz³Ýq³go]Ü/T£pzñù-·þÿu\9f~%-ÌÎ:9~rêûº\85o\96\7f   \8a×\94¼ÿdbBÞâ«G¢Ë·X¯\96Ùµåre&\83<\97Ëo\83\ eó\1cѲ\95:^uëg¦[ºe¶¦ñóô\15´\1cP\9e½ t\9fæ_nK+«­\12ÞU«l²l?í6Z û¦s¥²SWúµ®\ fÙ2Ùò\8f\9fv¿\8c®¯\982ûX­ô\99÷1¾IR>·\19\14\13\ e'ü[Í}Àù\85ß\8f;Óon\9c$¶|­ñ>\99ùÁÊ©Ëf¿s­Úh¾êÉq\93Éî\v~\1985-]õP¥ýÐ.é& îb\ e¹ïó×>ª1ñ½(h¶ý\99\98\8eÅÛw\1ex´|Gxû\89\93b­]zA+Ï?k\8dª\9biû`Û<ÿG\9b\96\1f\92V~óÅ`ë\8e\9f\vì\17J'eØeg_Qÿ{?Ú\80BÀ5jÀ°0 9'5±¨$?7±(\9b\8b\v\0çt^0
\81åt)>\vQ\es\91ò\8e{çp×Lü\ 6\13Õ\95hpÏ\82I\f\7f`p§ømaÃS[\8c\f\14!kmè&\8a\1a߯\9f[\ 4¡H\0­ï;q\e\ 6ÅU-Q\83\b*2&\96\8eìù·´\1e\89\fÄ:\1f\94óG±\93\878W_O6\99ÊwD¯ô§\8b¯a%Ô\95â\ 2úD©&~q\8aûN¬\8a×^ö¤\84\fºc¢­É\9f>¦ø\9b <\95h Yè\16\f        \aõ2·\1f+6ö\8aí#gô´\0­\90\811\92\8e\1aÌÚÔ"ì& \v\86 ØbI¡ts\85Z\0.söAÉ4\8f\99¹Z/õ\16=Q?\10²üÔv\83ð»\16ß:\ 4D\13äÎ\fKp\ 3¦ãƽÂ\9f¶]Acð ­\13­Ó\ 4û/\10»ÅdÎhJô<öJ\0¸yxí\1dc\9cY¿\ 2ú&âI\1ffp\a\98Ø\19%dª½D¼µ?¡Â}©m\13ñ\8c 4^Í_pê=Æb»#ä£\9c¡Êqm\ 6*}2k2\ 17\8d\84\87è\8e»¸;\88Ü/óañ-\13òØ¡µæ@\91\aI3ºÖ^ÿÏd<ûO_Ϋ~æ¸{³\96ahm\92@o×µå7\9f\9dÍ\8aa0\þmÍÛóa¥\95ï\96=\9eäç¯ß8Ý«mëË[b\e\16ÉÚ¤\vz³Ýq³go]Ü/T£pzñù-·þÿu\9f~%-ÌÎ:9~rêûº\85o\96\7f   \8a×\94¼ÿdbBÞâ«G¢Ë·X¯\96Ùµåre&\83<\97Ëo\83\ eó\1cѲ\95:^uëg¦[ºe¶¦ñóô\15´\1cP\9e½ t\9fæ_nK+«­\12ÞU«l²l?í6Z û¦s¥²SWúµ®\ fÙ2Ùò\8f\9fv¿\8c®¯\982ûX­ô\99÷1¾IR>·\19\14\13\ e'ü[Í}Àù\85ß\8f;Óon\9c$¶|­ñ>\99ùÁÊ©Ëf¿s­Úh¾êÉq\93Éî\v~\1985-]õP¥ýÐ.é& îb\ e¹ïó×>ª1ñ½(h¶ý\99\98\8eÅÛw\1ex´|Gxû\89\93b­]zA+Ï?k\8dª\9biû`Û<ÿG\9b\96\1f\92V~óÅ`ë\8e\9f\vì\17J'eØeg_Qÿ{?Ú\80BÀ5jÀ°0 9'5±¨$?7±(\9b\8b\v\0ï ^\ 6
 endstream
 endobj
 16 0 obj
@@ -5687,7 +5686,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-4 -235 731 800]
-/FontName/JCYCIE+CMTT10
+/FontName/BPPISA+CMTT10
 /ItalicAngle 0
 /StemV 69
 /FontFile 15 0 R
@@ -5703,7 +5702,7 @@ endobj
 /Length 15915
 >>
 stream
-xÚí·S\94/ÝÖæ\99væNÛ¶mÛ¶ÿi;s§Í\9d¶mî´mÛ¶mô{Ω¯zÔWuÓ£ïztD\Ä\9có\89gýbÆ\8a\18±È\88\14\84\8d\ 1âöv.tLôLÜ\84"rªªL\8c\84\8c\8cÂ0dd"N\0#\17K{;Q#\17\07!\13\17\17\90\83\13!3;!\13#7+ó?\a\f\f\19¡\88½\83§\93¥¹\85\v\bÕ¿T\1c\84\0'K\13#;B9#\17\v\80í?&&F6\84*ö&\96\0\17OzBB!\e\e\7f]âL¨\fp\ 6\ 1Léa`\98\98\bM-M\\b\8d\ 1æ\96v0\fÿÂ\92²3³'äøOÚÔÕá¿Jn\0\7f¸\b)ÿMJEø\ f§©½\9d\8d'¡)À\f\86AÞþ\9fñ\0ÿÐü?\ 6û?pýwsqW\e\ey#Û\7fÙÿ»Yÿ[ÝÈÖÒÆó\7f(ìm\1d\]\0N\84rö¦\0'»ÿ.Õ\0ü\aN\ e`jéjûß«R.F6\96&Bvæ6\0BÆÿ¤,\9dÅ-=\0¦\8a\96.&\16\84.N®\80\7f§\ 1v¦ÿ\9dá\9fÎý\9b\80AZDKDJ\8cæ\7f<×ÿT\15\8d,í\T=\1dþ§í¿äÿ\8e\99þïø\9fþ8Yz\10ê0þÓ`¦\7f\84ÿìÿu¦÷ßF\13³3±7µ´3'Tq1²35r2ý\9f\89ÿ\9dJXØÞã7\1d+!\1d3\v\e!\a\v\13!'#£Ïÿ*S³³tt\ 5H\89\12²122r²0ÿ;kâêä\ 4°sù÷<øç~ÿ+6³ü§9\0\80\aÀ\ 4Æ_EI\8eò\92r\1d\9d\11Ý \92\9c2pá³4< \90W\8dãÛ\86oýÏQkê\9ew\1dÅÓ\88ÀF\935\8c7Ù'\er\93ÁéCÕÇϤ\9f4']`údì\82\ fï¹Ôz×xB°×­:¬ ü\v\12kÝÃZ:ëg6¬¼!!RÛL«z¿@r,¯6C7«¦\ f\81\86KX\16³¼Òg\ 3ex\8b\ 2)\9aâ\8a ~[ÜâCi­\89R\9a0qÐx_ó\94¨íÆÄ\1aÚFæOx°¼\87¬õ\vg\1aè\9a\18,\1c\91«\15°3\848­:\9fÒåMÅ\14d*ó\1d-\15\93¾L
+xÚí·S\94/ÝÖæ\99væNÛ¶mÛ¶ÿi;s§Í\9d¶mî´mÛ¶mô{Ω¯zÔWuÓ£ïztD\Ä\9có\89gýbÆ\8a\18±È\88\14\84\8d\ 1âöv.tLôLÜ\84"rªªL\8c\84\8c\8cÂ0dd"N\0#\17K{;Q#\17\07!\13\17\17\90\83\13!3;!\13#7+ó?\a\f\f\19¡\88½\83§\93¥¹\85\v\bÕ¿T\1c\84\0'K\13#;B9#\17\v\80í?&&F6\84*ö&\96\0\17OzBB!\e\e\7f]âL¨\fp\ 6\ 1Léa`\98\98\bM-M\\b\8d\ 1æ\96v0\fÿÂ\92²3³'äøOÚÔÕá¿Jn\0\7f¸\b)ÿMJEø\ f§©½\9d\8d'¡)À\f\86AÞþ\9fñ\0ÿÐü?\ 6û?pýwsqW\e\ey#Û\7fÙÿ»Yÿ[ÝÈÖÒÆó\7f(ìm\1d\]\0N\84rö¦\0'»ÿ.Õ\0ü\aN\ e`jéjûß«R.F6\96&Bvæ6\0BÆÿ¤,\9dÅ-=\0¦\8a\96.&\16\84.N®\80\7f§\ 1v¦ÿ\9dá\9fÎý\9b\80AXQQJE\88æ\7f<×ÿT\15\8d,í\T=\1dþ§í¿äÿ\8e\99þïø\9fþ8Yz\10ê0þÓ`¦\7f\84ÿìÿu¦÷ßF\13³3±7µ´3'Tq1²35r2ý\9f\89ÿ\9dJXØÞã7\1d+!\1d3\v\e!\a\v\13!'#£Ïÿ*S³³tt\ 5H\89\12²122r²0ÿ;kâêä\ 4°sù÷<øç~ÿ+6³ü§9\0\80\aÀ\ 4Æ_EI\8eò\92r\1d\9d\11Ý \92\9c2pá³4< \90W\8dãÛ\86oýÏQkê\9ew\1dÅÓ\88ÀF\935\8c7Ù'\er\93ÁéCÕÇϤ\9f4']`údì\82\ fï¹Ôz×xB°×­:¬ ü\v\12kÝÃZ:ëg6¬¼!!RÛL«z¿@r,¯6C7«¦\ f\81\86KX\16³¼Òg\ 3ex\8b\ 2)\9aâ\8a ~[ÜâCi­\89R\9a0qÐx_ó\94¨íÆÄ\1aÚFæOx°¼\87¬õ\vg\1aè\9a\18,\1c\91«\15°3\848­:\9fÒåMÅ\14d*ó\1d-\15\93¾L
 I±+­=^\80Xh\ e2|<,¹h¸÷¹/c½º[9\19G\7f6w\19ü\0P`e¹\8c`:là\av\98¯¿>\´ä3~.ýz¯N\92üá*\94|ßÒ¤\92WÍ¥\ e\7f¡ç\16\85\98ìe%÷¼(o¸·&E\84\13\9bºó\11hí7hÒ§Ï_¼\ 3ÓÃ'\eRP^\9f{r]uQýan<õä\120üü6QȽ©\96!\13uТ/0_»Í\9a\86Ùu\9b\1c\84Ä\94%liÍÓ¯>\8d0Æ·\ 4\11\92ý\85\ 3\vwÐk\ 6\8f§\b\93\88ª`\87N\7f\v`7ú\88æÍ\8c\9d\10ßj\80\19á¾fF\8d\13-GÁ\95\17\95Ð\80a\9dù5ëêÒ8ÏsL\v\99\91\¢õ\ 4¡{Àãâ%õðo\94âjt\ 2\ 1ð\8c­ßú|q\92L\a¸\84½bâï§¼åÜli9\80~`W\8bð\17\8a6_\15\94±0\841;ÙK.àsÐâ\11QWÑ\90\93\8e±¨W§YO;Ìl\91\16äd8\8eP2\9f¨]«f(ØìÄ\ 4&æ4fW©²"\ \82éBKXi\16\8a\0mÓ÷ñ½þFqÁPبаÚî¯.\1diUl'%ù\93\85]Wê\873«ð1=¦wô\ 5\99\82[\86\r ðz@°\ 2\88\11®³ôÆ$!G\8f\vÁvéiç&
 \9cÃ\0\87Ó\8bûjçÖ£\11^[\1cðä\ fêJ-M\9dÞÍ\80$ìú_ä¼\9bû\a×ÚÆÝ\1d\ 6\7f^-\19ïÄ\17Ü¢ÚPì=G,æï»Ìo\86\rËå?Ú\ eçrØ|:«ÊLõ\96\89Ïú\1f\1cye$·ª\fÑ$\82\9b8\87e¬~Ù\8c\16%"º«\14Qðõþ9\91of²´i\99¹èa¼@IRÍ\942!ër×HcVàíAT\f\b\ek´Ï.\15ËUØ\ 6of?\ 3¾á%\86\92ÛWàl\80&ýç®Öþûg\ fæ×Ä\ffQúb\ 5\94YP)9\13Å\82P\19a¯xòò~+P,èo\95÷`\93V8\81/\15\9b\f½ù¬\v\98NÒ^Pîk§­9­ûÓ\92O$\ 1a\7f\87\vöimÎRú¥®¤UìÆõÛ?]£G\9d\96êÄ»Ô\97\8b@ò¶²ßN*²ÅÆñ?\ 6\fAì8Sm\92\19é\ 2\11Í[R¤é[\1a(ÄN\88¯\89\ e      \91ë@!ûµ\14~*\87Ó\ 3r62ÑK÷»èàÔ`ý05ÓQ\ 1µ9¹,¦¼¿J2tÊLçó\9d\89\11\1dË\ 1o©ðN\89\9bÛÑ\ 2Ï0¡E\v\ e\16\8a\13\83ª\82\9bó\f\8cNFûÏï\85×hV\9a\10Ùo\9ecMç\85äC\85Öv¿zYø~\v\8a\8bã\16Ü8\98Fs\94«¼Ù×,\93Û\8d\81P¨\\fÄu'öN¶\f`\ e2ÉåÚ©RÈú\8b\97\rMú^\1c\93õhå    ¨\82;óÏ\11\ 6£\19N$\12\9fײ\82\10\ 1\88ºZ&J©IT\92\18º\8bòæ\9a\8e"J´_O\8aßeÂÌ©\97\f4V\82\86m÷æðaÐ;\1fÈ\18-IüG\18ç(Yݽ\86]\7f\85 à¹×=ñ\18\9b±\8d/tüÉ\ 5S}\87Òí\9c\0å\ 2U0hØ';¦Ý£\8födÐñ%\11\ f\9f¯\88\12w`É15I\7fÃO\12\1669êcÈå\13"(\12\952Â/÷Ð&ü(eù¡öH\983%\b²Y¤Õ\9c\17ZÞ/®a|ÇÜN\13¯NÃ"1\94õÌD/Oõü\9cÈG\14u\81í\1c        @?Õhü\e·\8d`\96\80â\86\88g\8cO\90\az\8b} ú\9dGd@æ~6Fk5ëÇ î\92÷ë\90z\88à¨\1cÓ\86\17\89í\aoY¦\18UEn˹w\18Wõcù} ñ+\ eñSm\87\9a#\1f©\v\15dñì×ê_C¼\85³o2\139\87\1cei³\9d\ 1ÞuSx.'Ë®\9c\89l\84Si\9fß\89å>CÄùÖ\96\80\96¥\15O\18F\10Vü  ~ÿ4\15ÇbôLN\14\1e\94O]¼\8bý58\91v=ÚK\1f\9eT:æ
 ìD\1aWx\9bQV.ç\8f¶Tº`s\98¡ñ¡Ù¦\13Ý]¢·¤Äiª\9a¸Î¼    Wð¨º"\9f÷ãÑYW0\9e\88øþ¼Vؽ Ð\95\92÷×Ü\8bÁjTj\1c\84óðà\8b÷°\0_â~b\f¸æY\99á­&!JytA Êë\ 2WR\19Ë:\96y êôß'sÛÝ(3\1e<{(N\1e¤@6\87M\a\ frÐï\rì.ÙüN½,é^\0ªÀÀD·\9døÊ'\96[DØ{Ò~Ï\ 5%%·\9d%\ef\1d>/þoØ\9bWa\96¦Òkr2\8dW9W\ 5Ð\0ï8h±\8d¥M­FëÓ`\1f\82î-\aÏìA:`É`¼ýWôפê¥\vZ\ 4\9c»\eµÈW¹£æÄP\10øWÔm7\89/!d\17­e\8d´:»¡9æª_\988ûHÆò©¯Ð60ÄÇ\rèP\1eqÙ@å\98g°"ºÑas ü\82
@@ -5772,7 +5771,7 @@ u
 É\8b°äO>*Àµ6~ý\96Ý)Ý\ 2Î\15½\eh.Î/tÀ8\8f\87~@ëV"¢ÖßÜ\1e«ÿ~\1d
 ­\92 þ5Ø\94\8b\1fÏ\89ãE¶/\17ë\88!hù\14t\1aD¢í^\82SÒz·Ö.{_\eµö[iJÜí\ 5Dø#ª\8cC\91éÈD\87Ô¨\ 6\bÚoTíM"U]½v\rðÛ)ÀZÕÇW+V©Õ\99
 ×<'\82ï~Ò÷å¢'ð^&\8dj^ê÷\ 5äÑ×\12NA®[\ 2ÎÝ1       9Ñ\bô&³\9a<kÓ\16²Öà^
\92V\15\7føE³IlBËX\eFoMX\13\115ßL!7\16k\83õºUdõ±²àÚPIõGO\13çpbñd\f\96Âí¢\8c±\1fNèÑÝÀ*?ò\83ÓîTÞÆ\89ÛÑö¤¦§ò®×y[øJÞë±VyC1\ 1\9cÈ[\1aÞ¯\98è/$|=O³Nðfç¶é\ 4x24̬¾U=\vçL+bf\88\19P\1f5\15¥ã%ª»\84ÙÛa¶%¿ú\13´1\8c\89\14ùÛ{P\92\1c|ðæEB\v·Ë\13\17\vDïK\ 1~ñÆ'.kÏñÊU§]ó\979 qû\90]Mg±\19      \88ñ\94\9fCQ·Ì!\1dømÆ\v\18\81Þ1Æÿ\97\eÌÿoðÿ     \ 3\13\e\80\91\93\8b½­\91\935\fÌÿ\ 5¦\1c
\92V\15\7føE³IlBËX\eFoMX\13\115ßL!7\16k\83õºUdõ±²àÚPIõGO\13çpbñd\f\96Âí¢\8c±\1fNèÑÝÀ*?ò\83ÓîTÞÆ\89ÛÑö¤¦§ò®×y[øJÞë±VyC1\ 1\9cÈ[\1aÞ¯\98è/$|=O³Nðfç¶é\ 4x24̬¾U=\vçL+bf\88\19P\1f5\15¥ã%ª»\84ÙÛa¶%¿ú\13´1\8c\89\14ùÛ{P\92\1c|ðæEB\v·Ë\13\17\vDïK\ 1~ñÆ'.kÏñÊU§]ó\979 qû\90]Mg±\19      \88ñ\94\9fCQ·Ì!\1dømÆ\v\18\81Þ1Æÿ\97\eÌÿoðÿ     \ 3\13\e\80\91\93\8b½­\91\935\fÌÿ\ 5\9e\19
 endstream
 endobj
 25 0 obj
@@ -5782,7 +5781,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-62 -250 1123 750]
-/FontName/AQLFWE+CMSL10
+/FontName/DOHDCQ+CMSL10
 /ItalicAngle -9.46
 /StemV 79
 /FontFile 24 0 R
@@ -5800,7 +5799,7 @@ endobj
 stream
 xÚí·S\94/M·æ[¶­Uõ/Û¶mÛv­²mÛ¶íZeÛ¶msõ»¿½w÷è¯ûæ\8cswÆÉ¼É9\9f'gübFä\88\91¤\84
 Ê´\82&öF¦bövδ\8ct\8c\\0aYe\19F\ 6\0#\1d\ 3\f)©°£©¡³¥½\9d\88¡³)\17\80\91\93\93\11 èb\ e`úGgãbaàbb\80\81!\ 5\bÛ;x8Z\9a[8\ 3(\84)ÿÃÅ\ e\10´5u´46´\ 3È\1a:[\98ÚþSÄØÐ\ 6 loliêìA\a\0\bÚØ\0\94þã\15'\80\92©\93©£«©    \1d\f\f##ÀÄÒØ\19`djni\aCÿ\1fP\92vfö\0öÿL\9b¸8ü·äjêèô\ f\17\80â\1fNJÀ?\94&öv6\1e\0\13S3\18z9û\7fF3ý\87åÿ1Öÿ\85êß\8b\8b¹ØØÈ\19ÚþGù\7f5êÿÐ\rm-m<þËaoëàâlê\b\90µ71u´ûw«ºé\7fÂÉ\9a\9aXºØþ»*élhci,hgnc
- å¤caûÏ´¥\93\98¥»©\89\82¥³±\ 5ÀÌÐÆÉô_yS;\93\7f\aù§yÿ \17T\94\11S\17¥þ¯\85ýOUÁÐÒÎYÅÃÁ\14Àð¿ìÿ\8a\19ÿWüO\93\1c\ 1Ú\ft\f\f\8cÿ\18ÿ¹ÿûI÷ßF\13µ3¶7±´3\a(;\eÚ\99\18:\9aüÏÄÿI%$dïîEËÆ\ 4 ebýg#121\ 3ØY\19|þw£ª\9dåo\17SI\11\0+\ 3\ 3\ 3;'Ç¿²Æ.\8e\8e¦vÎÿÚ\fÿÌø¿c3Ë\7fzdjênj\f\93\95\8dn   ¬Oó\8búÙà©o\99H½sæ8¨d\9c\93\93\ f\98\1c²Ù\17\8e Ø\87B
+ å¤caûÏ´¥\93\98¥»©\89\82¥³±\ 5ÀÌÐÆÉô_yS;\93\7f\aù§yÿ \17\91\97\10\11þ¯\85ýOUÁÐÒÎYÅÃÁ\14Àð¿ìÿ\8a\19ÿWüO\93\1c\ 1Ú\ft\f\f\8cÿ\18ÿ¹ÿûI÷ßF\13µ3¶7±´3\a(;\eÚ\99\18:\9aüÏÄÿI%$dïîEËÆ\ 4 ebýg#121\ 3ØY\19|þw£ª\9dåo\17SI\11\0+\ 3\ 3\ 3;'Ç¿²Æ.\8e\8e¦vÎÿÚ\fÿÌø¿c3Ë\7fzdjênj\f\93\95\8dn   ¬Oó\8búÙà©o\99H½sæ8¨d\9c\93\93\ f\98\1c²Ù\17\8e Ø\87B
 \7f+\a¸8mÕñOù°0G¬mßüÁP²¸\808\ 2\8bÞ'${}\b.u\19jE>,Û\9c\9f\16J@GKî\8f\86\e\v\88'\8f\9e©Yå"Ó\8fý\9f\99yAw\90@*î\80\15,w\172^ëî|é?/Ga\8875\ 6÷`]<Z®fHÛȵ¥RÖH^°`Ây\85áQÑ\83\89L]A¯\96Z\9d\ 1wdpË$Q¹&Ùk@\7f\9aHÅ¢=þVwL3°=\{µê\8eÜÓ1oÛ\8a¶¢82ʧgÀCõ½\91ËeäI\8bÕIëèV\10[ð¤"V\1f\ 3\85\ 2DV        q°ö\ 6(Ío#TÉ\8c:3\10h?\13Í÷rYå\ 5OeEºý\v×Á\17®WàÃ)Ï\0#U\88»L\94&ýW­jéXŦËd¶Ìf«\12Í("v\ 6ôpÃô<5D¨\7f­ÖiÀ^f¢:\93#\10\9båj\86\84®\8b\7fÒ\88N\96\1a<ùmYg]taðâç\ 6@¹1:]\87ÔP=gö\90éX¯?\1d!*&±¶\13\9d\ 5ð\1c\ 6Aã5K\82\92\11E¦°ÿ^3%#\9e\ 1\98\12÷A\17ª¦\v\9cvC2´nÒ{¥\bL/\96õÛaûFÙ5ò
 à\9e±3FXötýËv?\r\85¹»;1/2½\12_\8d5\fÁÇÈ}¬R\7fA\93a\8e\88\8b\8aÂú<Ý\96A\ 5¿\0ûd\812\ 6ȼ\82Ü£\81\91^F=\rX^\81ÑïDhù\19éH0õ\17\b\17Hõ´¥\1fpk¾Åv£¡\95\9a\ 2\84µdâtWK$ÊV
 ?Rï2´û>g\13\1a
@@ -5848,7 +5847,7 @@ a
 Õ\7f\87\85W\ eo~\ f\16\ e\ e\19\ 5rik°I¤Â[çÐó \1cº\89À\84×\1a§5)¾`½ÇîñZ¡r4;\ 3ßX{Y1m\95        þqó\802\18*êT£bßë(¤
 x/JòK+&\9c\82\9fcHÇ?\ 3J\ fI\ fÚ¶V1$ÂIçòy¼¸Àf\11{2h#qζ\80óXÝ\9e(¹9\a§\8e\ fµô.\f\96î\16t\9fº{Uxí¢Yåb¤\ e\89¡e\1dµ²5ÌJ\80h¬Eø Äý6d;ßtu\a%\10ým6g&1ÜÊcr)o«tígõWF)ƪ\ 2\91Ô¼¡\18\ 2§5BÖ2O\fGK¶\90áIs{Ý\87[ñÞÝäHùc¹\839_ý07n÷R\14°\9e\8aóÑ\1c\90P\15Ó\ 6òi4\ f®Q"xeæØR§.\19ÿv\1c\92±0\fÖ&z\8eÀ\15 {ÍbD{áj\842\10 D³^\14¿òò*4°6)&w
 ;
\ 2\89/ÈA­ü!ÏåS).³þ\81Ù\9eªC¾pýò.eS|ç\18\98Q\aP¦jáOA\16òäË   yV\v¯í\eká`\ 2\8f\87s~øó°~\ 4Ñ\97Kõ¡y\8df¯KF½\9f\7f\$\vm\15B\8d,\82\bâ<TM",~\93Q&ñ\82\ eÚÞGyâº\f¼*SôÖiäE¡5*i\r!}3-XذÓ\83§îÍöÀ½K/\ 2>w\ e¥JÍ\11ln¤q3'Ç\81Ý9'U´f Ï\ 4Rë7ëÛ°\14T\91\19Q\9a\92\0vä4ü\1eYR\f,Y\18âûÚ\ 4j#\14¾0\ 2½\ 1á\ 5(jK\83g¡Ó\ 2\95\81f\ 3Omé¿ò\9f¸\dôì\953¿4pkÙ¬¹´©¯\92\ 2r\9d\10\7f\ 4boX\13Ë\83ì\10\82\91Øq\93l?ÀaÊû\95\foäW(zÈbÚÆ\97\1a+\10/ª·\ 1ª8\86\7f\11I6@\8fÜf~hfÓ\eéË4\9bB(»&Ø\91\ e\e±9\a\a\97dE7\1evRDu[\9cYæÏìVû}%ʰ£\9f\8fë    \10\8d\95Þ\1f\b!ÚH\99ܲµwé³»_,G¡\86¦È\8d\19\1af¼e\8e¤\8a\89\rB\9e5ÚÚù]¼\e\1dz\\9b\19Ùê   ùwLI\17µ4á|îaô\98¹@íÌ\98ÿ¡¨*\85ú\8c0Ñä'1àjè\83o\9bͬ)}ï\8aÂ,mÿ|ʶ -ã5?/ü\ fïJ\?   î\ 2\8djîþ{j\13åô>\a^4¨=»ü\15È\97\85\ 2z¨Ý\ 3Íî*{Õ\`óÐLÿwå/RÙÍ_Uõ¥¿Ø)\992ü##\90ê|\8f\8eÂU\8d@@I\95úY­Å$Ù{PS½Ûd­EZ\9cë\ e¬÷ð<Ò\18¨©\9e©¨%ãi\ 5\1c\93û\94«\9a\8a\94â¾OVU\10Ô(\ 2\91\11϶4åΤHÙøyç\12ÚEyÌ*ÿÒ\1eÑ90KBôï=õsq\ f¢\14\11ð\8fß\89ö¹®\ 5\fajäU\97K¿úè\ e!ió´\15Ǫ\89Ýüú\ 5\87ÖZZó\832mUÿp\ 6®\10q\7fÊN.\8bSÊðÿò\82ùÿ\vü\7f¢\80±\8d©¡£³½­¡£5\fÌÿ\0p\85-"
\ 2\89/ÈA­ü!ÏåS).³þ\81Ù\9eªC¾pýò.eS|ç\18\98Q\aP¦jáOA\16òäË   yV\v¯í\eká`\ 2\8f\87s~øó°~\ 4Ñ\97Kõ¡y\8df¯KF½\9f\7f\$\vm\15B\8d,\82\bâ<TM",~\93Q&ñ\82\ eÚÞGyâº\f¼*SôÖiäE¡5*i\r!}3-XذÓ\83§îÍöÀ½K/\ 2>w\ e¥JÍ\11ln¤q3'Ç\81Ý9'U´f Ï\ 4Rë7ëÛ°\14T\91\19Q\9a\92\0vä4ü\1eYR\f,Y\18âûÚ\ 4j#\14¾0\ 2½\ 1á\ 5(jK\83g¡Ó\ 2\95\81f\ 3Omé¿ò\9f¸\dôì\953¿4pkÙ¬¹´©¯\92\ 2r\9d\10\7f\ 4boX\13Ë\83ì\10\82\91Øq\93l?ÀaÊû\95\foäW(zÈbÚÆ\97\1a+\10/ª·\ 1ª8\86\7f\11I6@\8fÜf~hfÓ\eéË4\9bB(»&Ø\91\ e\e±9\a\a\97dE7\1evRDu[\9cYæÏìVû}%ʰ£\9f\8fë    \10\8d\95Þ\1f\b!ÚH\99ܲµwé³»_,G¡\86¦È\8d\19\1af¼e\8e¤\8a\89\rB\9e5ÚÚù]¼\e\1dz\\9b\19Ùê   ùwLI\17µ4á|îaô\98¹@íÌ\98ÿ¡¨*\85ú\8c0Ñä'1àjè\83o\9bͬ)}ï\8aÂ,mÿ|ʶ -ã5?/ü\ fïJ\?   î\ 2\8djîþ{j\13åô>\a^4¨=»ü\15È\97\85\ 2z¨Ý\ 3Íî*{Õ\`óÐLÿwå/RÙÍ_Uõ¥¿Ø)\992ü##\90ê|\8f\8eÂU\8d@@I\95úY­Å$Ù{PS½Ûd­EZ\9cë\ e¬÷ð<Ò\18¨©\9e©¨%ãi\ 5\1c\93û\94«\9a\8a\94â¾OVU\10Ô(\ 2\91\11϶4åΤHÙøyç\12ÚEyÌ*ÿÒ\1eÑ90KBôï=õsq\ f¢\14\11ð\8fß\89ö¹®\ 5\fajäU\97K¿úè\ e!ió´\15Ǫ\89Ýüú\ 5\87ÖZZó\832mUÿp\ 6®\10q\7fÊN.\8bSÊðÿò\82ùÿ\vü\7f¢\80±\8d©¡£³½­¡£5\fÌÿ\0öa-\15
 endstream
 endobj
 29 0 obj
@@ -5858,7 +5857,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-29 -960 1116 775]
-/FontName/TQNPIW+CMSY10
+/FontName/YDEPED+CMSY10
 /ItalicAngle -14.035
 /StemV 85
 /FontFile 28 0 R
@@ -5874,13 +5873,14 @@ endobj
 /Length 1530
 >>
 stream
-xÚí\92iT\13W\18\86UJÅX0Ô£(¢\µ\88
\99@\88!l!,E$²\84\80¸À\98\fad2\13&\136W\16\97\ 2R\10\11\15)¢,î\95º!*¢(ZdÓ\8a\82Ê¢\aµ\8a\1e@P
-Zi\ 4­§Ø?=ý×Ó\99?ó}ï;ï}îw¯Ét/_\v\81\8c\\81º\92\ 4m\ 1³`\e ôô]\fC\0fA\f\13\13!\85"4F\12Î\b\8dÚ\0\98Ç\83\81@-\a0\a@\\e6dÃá2\18&@H*£)L\1eJ\83ÙÂ9ï]\ P \14&E\bà\89С¨B\13"EpàKJ1\94\8ef\ 1 Àqàóþ\17\15ðAU(\15\81ÊX\f\ 6\f\ 3\19&¥Á
-T\8e\11\8cyï¡Ü\89\10\12p\87Ú2µò£\14\81R*\r\17\98­á\9c\ 34\942\92À£\81\f\r\13\91\9aÕP\rË?Æú\eªáá®j\1c\17!\8a÷ñ\83\83úLG\14\18\1eýÁA*\94j\1a¥\80')C)b¸Õ\1f\1d\82óDe\98Z1\u§\11\1c\93
-\b9\8e\ 2\vØ\8a\ 5Yr\86\ 4\8aE¡2/\8c\96\86\82\10\ 4\83}\94\90\r\8co\10d\9eØ[äåîoöáh\87T/\ 4#hq´\12\ 5Ð'û`\r\7fª5c¢°(°\ 4bA\10¬1jÞ\8f\86­æBHI\19\81/\8d\102\84\92ýÙø\9cÊÉ\89\8cZeÁæ\ 1\v\9eµæªÁ°5àr9kþjô#°p5êî\f8\10\ 4Íg\ fQJÕ\14\85\12ôàuÐìøc\1d\82\84¢Q¨\94\91µ{\ 262È|ªÙ«à\9e²ú\19þ%×j\1a\8fí2\rü    \9e\8dK÷Ñ\8e#E\99Ëjj®\9a\99wçnÞYÕlÜÈ©Ë\8eå\8fÁ+\8am[\16Í<S {ÂxgÄaK¶ôg\9dû\1dÕç\17&\8cz1b\1fAo\92zêäÜ
-ìÙ\97\13\98óÇþØß\1e¾ª³9çMLBð\ 5·@ù¤cWmýõ]êfeP\11¾ÚÐÞ7\1d\15×^+}¢RäZg\97·eXn\1a[i¬oÓÀõªÏ,vjhÄ\9dø¹¦vMìîü\ 5is\9d\1dª\9d\vÞñ$Ç\ eN\8bZp´âmë\96£_EÜÍfØ\97ø\9fI\aÙø´³¼s\U\98ùʬ½6Ýß=n\19\10½+oÖ¾m\8a\87µ\19(m\1fép×\99l×ëy\11\7f"kd±ª»\80W3¢[2#K\16¹'6Ý¡\83_¬g\96=PØë'/ê÷TeEÎÛ"\17IÔV\15WÎvÕ"¾T)(J z\ f\ 6\94&OW\9co\89­bl<Õ\0'\17|ÿÐ<±\8b/¾ãO¶U\ 6Æô\8dX\9e_%º\17]v($eÑs\8fu\81?\9cìl+Û\\1d\9bRµ¨ÝÃñyÒÍ\1dS^Z\ 6Ó§\16
-µí®þ~\99L\9c`d\15Pc\0Ùí»^]-\ f\b\9aä1Öú÷à~¡ÄíüRV×éä\8b\e\fíyOûe.%*x¡û\8ex£ Þ§\19á\8b\9fÝ7dOo_¯W~Á¥ucÃ\ 1{]»ZqÙ\83¤\19"½µ¥ÞI¡¿%ú÷ò\ 2Â\14\9cÊ­ãZo\1ct¥"ò\8cÂët_ÙÔ\19¥ò8ÌlçÂ`ÿNÇÙ\96«OÙõ_\9c\9eº$\1cyr8³%Oø%{Y\87\8e\9b\17e£aÙ\1e¿\84g\ f`J\9aTh|N˳>¡?öFÜ\92üUaÏS²Ã\1cZ\1d¨V·K\ 3\8a\rÞ-éõ¬\87\99»î¾Ö%à&\1dã\16\82\89Å\8e?\92$vÌ5íy7âÆIÛ%í}s©mo\85&\9d®ç\98}\95éAá§\85õ¦\eGÝ(`\9a\eEc±\12Æ\9a_7¸¯õÙ¤½5\89ÛÓe\1dsÄiî\94\9b¤¼\1a'µÎò\ezï¾*Ê\8a¹7\80Ç\1c¬¤Q\87È1Lu|@Õý\aÉP\9c\ 4/÷ýºÙÀè¸\97z\91\9f¹VF\89\99~ÅíK\ 2çÇ\ 6Z¼â\92\17»\88\vXHR×ÊÙKyëùÉ\13æëW\ 4\19Å\aÖ\8eÜO}«6À\1d\1ej5\ 4é_®»~1yt¶Wä\93¨8qNZ\93KGùhCk}qëê\17\9c]}\81Ò­Û¦qó\93ýr\1e\Õ¿µâyÍJåÌã᫼-\99\17×\16b\17òöÜ1-êjX\96*\81\82>£Cü1=\8fÜ\12cßL_i °âK\16Û\e¶8EsrÇy\ e\1c\9a\18J   ¦Áy¢öÝyn¥\ 5v¾³®ç\8bµ'Îw\96\185x\14\9d;c\7fö\vUlZLHi\1aЭ­9p§Ä°\899²ðüËý\99\9d!»u¬vµÅ\84Ú\8eßé~?ÏñJµGä¥5éäöÐf\9e\86¦\1cÀd·§ÞÍ|1ÿ\95âÎ-=N!ô/\1fÆÿ\ 1ÿ\89\0)\8e"\14M*\10*\8cÁø\ 3Rí>§
+xÚí\92iT\13W\18\86UJÅP\10êQ\14Q®ZD\ 5âL Ä\10\16C\ 2\14\91\88\10Ââ\ 2c2\84\91ÉL\98LØ\Y\
+hUD\14¤¸°¸Wê\86¨\88¢`\91M+
+*\8b\1eÔ"x\0A)h¥\11´\9ebÿôô_OgþÌ÷½ï¼÷¹ß½fÓ¼|¬ø2r\ 5êJ\12´\15Ì\84í\80ÀÓ'\0\86\0Ì\84\18ff\ 2
+Eh\8c$\84\b\8dÚ\ 1\98Ë\85\ 1_-\a0\e@\1c;\16dÇæ0\18f@@*£)L\1eJ\83Y\82Ùï]\1cÀW \14&E\bà\89С¨B\13"EpàCJ1\94\8ef\ 2ÀÇqàýþ\17\15ðFU(\15\81Ê\98\f\ 6\f\ 3\19&¥Á
+T\8e\11\8c¹ï¡Ü\89\10\12p\86Ú2µò£\14\81R*\r\17\98¥á\9c\r4\942\92À£\81\f\r\15\91\9aÕP\rË?Æú\eªáá®j\1c\17!\8a÷ñ\83\83úLG\14\18\1eýÁA*\94j\1a¥\80')C)b¸Õ\ f\1d\82óDe\98Z1\u§\11\1c\93ò 9\8e\ 2\86  Y³\87\ 4\8aE¡2/\8c\96\86\82\10\ 4\83}\94\90\r\8co\10dn\80ÐÅËEhñáh\87T/\ 4#hq´\12\ 5Ð'û`\r\7fª5c¢°(°\ 4bB\10¬1jÞ\8f\86­æBHI\19\81\ f\8d\102\84\92ýÙø\9cÊÙ\99\8cZeÅâ\ 2+®­æªÁ°-àpØkþjô%°p5ê.\ 4l\b\82æ±\86(¥j\8aB        zð:hvü±\ eÁ4SBÑ(TÊÈØ;\1e\e\19d9ÅâUpOqít¿Â\eUõ'ÓÍ\ 3\7f\82'\89ªãR¼µãHQÚ²ªª2\vËîý\9b÷T4\9aÖ³k2cycðÒ\ 2û¦E3Îçê\9d\13\9a%ýYçaGå¥\85    £^\8c8HÐ\9b¤\9e:Yw\ 2{\ e&J²ù\96\1fûÛÂWu6f½\89I\b¾ì\16(\9fx²ÌÞÏÐ¥ff*\15á£\r\1dxÓQzãµÒ;j«\ëÂò\96TëMºå¦\86vu\1c¯Ú´\ 2çºzÜ\99·ßÜ¡\81Õ\9d³`û\1c¡S¥°·$÷\1dWròÈÔ¨\ 5'Jß6o9ñUÄýL\86c¡ßùÄ\15Öõ­\9d%\9dc+Â,Wf\1c°ëþîiÓ\80è]I£ö]s<¬ÅHiÿD\87³Îl\97\8bøÓ\19#\vTݹܪ\11Ý\92é\19²È}±)N\1d¼\ 2}\8bÌ\81¼^_y~¿§*#rî\16¹H¢¶)½~¡«\1añ¡\8a@~\ 2Õ{Ä¿(y\9aâRSl\ 5cãÙ:89÷ûÇ\96\89]<ñ=?²¥<0¦oÄò\9c
\83èâ£![\17µ{¬\vüáLgKñæÊØ­\15\8bÚ<æ·'ÝÞ=ù¥u0}v¡@Û!¬ì÷kdâx\13\eÿ*#ÈáàÍÊJ¹\7fÐD\ f]Ûß\83û\ 5\12·KK\99\92¯l0vä¶öË\
+UðB÷Ýñ&A½­©á\ 1Ï\1f\1a³¦µ­×/¹ìÒ¼±î°£\9eCµ¸øQÒt\91þÚ¢ÅI¡¿%úõrýÃ\14ìò\1dc\9bo\1dq¥"²MÂkô^ÙÕ\98lã²\r2\85yÁ~\9dógY¯>ëÐ\7fe\928sÊ\92päÙ±´¦lÁ\97¬e\1d:nÊø_\94õÆÅû|\13\9e?\82)iR\9eéE-ÏÚ\84þØ[qKrV\85µoÍ\fsjv¢\9aÝ®\ e´²\14\e\167¥Ô2\1f§¥ß\7f­GÀ\r:¦M\84\ 1\16;îx\92xþ~ó\9ew#n\9d±_ÒÖ7\87ÚùV`ÖézÑ ¯<%(ü\9c Ö|ã¨[¹\ 6æ\90ãF\91.VÈXóë\ 6÷µÞ\9b´w$qzºlc\8e\99|\9b\94Wâ¤Ö\ 5^]ïýWù\191\ f\ 6ð\98#å4ê\149Æ@\1dï_ñðQ2\14'ÁK|¾n429å¥^äk©\95ZhaXz÷*_øÔH\8b[PøMN\80\8b8\97\89$u­\9cµ\94»\9e\97<~\9eai\90I|`õÈCÔ·j#Üi\9bÅc­º Ãk57¯$\8fÎô\8a|\16\15'ÎÚÞàÒQ2ÚØÖPܼú\ 5\;;½/PºcçTNN²oÖ£2Ã;+Ú«V*g\9c
+_µØÚàÊÚ<ìrö¾{æù]u˶I`Q ¿Ïä(oLÏ\13·ÄØ7ÓV\1añmx\92\0Gã&çhöþ±\9e\ 3G'\84Rü©p¶¨mo¶[Q®\83ÏÌ\9b9bí    ó\84\12\93:\8f|ź\8bç\1d/|¡\8aÝ\1e\13\1dèUW\1d¾WhÜ`02ïÒËCi\9d!{ulÒ[bBíÇíq\7f\98=ÿz¥GäÕ5)ä®ÐF®a×\86\86,`ÀjÛv?íżW\8a{wôÙyп|\18ÿ\aü'\ 2¤8\8aP4©@¨0\ 6ã\ f>\8c>\7f
 endstream
 endobj
 37 0 obj
@@ -5890,7 +5890,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-29 -250 1274 754]
-/FontName/CMTOIX+CMBXTI10
+/FontName/PUOJLV+CMBXTI10
 /ItalicAngle -14.04
 /StemV 107
 /FontFile 36 0 R
@@ -5903,13 +5903,16 @@ endobj
 /Length1 727
 /Length2 1052
 /Length3 533
-/Length 1583
+/Length 1582
 >>
 stream
-xÚí\92iTSG\14Ç\ 5Q4âV\ 4\17\f\ e\1eP\ 4\13ó0\10v\fa1\14\10\ 5\94E Ï¼\97ð0¼\17^\16ADA­¨¸\82V\v²¨,.U°\1a\91\80\107Z\8cUv\15\81º\81\ 5\brD±A\Nµ_zú­§3_æÞùÏÿþæÎ\98\99øùÓØ\b±\ 2õ p)\r¢Cö\80ãã\1a\14À\85\18\0¢3(ff\1c\12\85¥\18\81»ÁRÔ\1e@vv\10\84\0²\ 5\10Ë\9eic?\9f\98\ 1\ e!\8e#1a¤\14\98\fªX\80\1d\8d\92\18\1fÆ\81\ f,\8dD£5&|X\ 4ü    >\86Jãè\0°E"°dð\88\ 4,A%()G\11:\85\ 2A\0ÁøR°\ 2\15b8eÞ \16\17\17\10\805\94Fdâ\8f[r\94\94\80¹\86s\ eÐP"\ 4.\8a\ 3\b* Ìó%4ÕP\rË?Æú\eª/Í=d"\91/\1c=hÿ¡U_)àhL\14÷ACD\8beR\94\ 4>\ 4\82\92ø\97Òeè\10\9e+!úª\10W
-\8b0>\e\17\8aP@\83\98t\ 6s(\8fI<°X\14ñäüH \80E\12ô}\1eÅ\91/94Ý{O1\8fã\13°\88\edùém\87öý`\f\97\ 6Ä\89QÀø|à}\f}\8e5}"±X\10Ê 3\18\90\99\1fWa_ÔsÇù\ 4\82áBà/\85q\ 4&\91O\89¯¹\]\89Øx\9a\95\1d YYkþ\9a\15\8b     XÖÌ\84¿
-\ 3q,F\86\805\83Á`±\86¨ø2\92Dqéûÿ ¹óÇX\80\84¢±(\9f\92\0Ó\8a\98Kµìá½T5Ì\¦¼Þ¶!¯ÊÎÎYk¶î\99µz3r\13̽\8c\9b3µr÷Ý$Ë\8e\áØî\88VÕÜ¿¼Çs\81ç¸Ñ\93zÃûuYEß\19Y\16è\1fÍ\19cS\9d\90\98\ 3J\14Y\ 3\98Ú«\1dÃQÁ±:«\ 1¢ìz\r;V{½\85CRã\94XÙ,§\95çs¾-ë}\98<þé        Þs\9d\10¹`BËÄ\93ù^+'Ä\8fÑád\1fÚ\9c²íRªUé\86WX\88\8fYz\r¦)YÈ\81;Gw{\9fk¼)i\8c{sÉÃ9£g\92*~kpi@¢eOÉË\99ÛRR¢ÒzÔ¸÷\93®î.o#÷z\9b\82Ì\91#\8e\87æ    \8d^\1eLõk\1c\1dOSté\84,N:ôë(ë95w\99Û\8a\90úܨý<WG\13óß\aò/\ eÔM¦_2ÝYe[qõ\0pöØãÀ|Öí\9fï·0wµÐ\10b        3\80K`R\ 3;(&\vª®¯ë\7f\12ZèV^ò|U+-Ñ1ë]AÅ\96içÅÎ\89¡\87\8d&¤»\1cs9Q\[t6&ÜÍÌz¶Ë\8f\98½\89Dê£-\99\91ÔyÙ\82VCJÕµ«\92Å]XÌ.y\14ÜW{°T¿ðACǰÞÅ<¹<¿Ý&!\89 ¢¶~z«Æ\14»_\96Sòì*\14\11\11\91#\83²LÞM­\f1Y\1aaûM61&óQß¾d^}¦Ê\fa\19Zµd\90»\12sÚ%¯+Ç\9dXæ¶f\14µsxw\91¤Ú\88©eãÑѺàl¶gàî`]ÊÂMÏ÷+âò¦  ;\1f¿4\17N¿\9f\ e\1fÞ­h¦\91boý\11tA>ªX:<¬ú4¶;¥Ét»\98Ò\1a÷Û°\10å\1dmË"¥\19»k×õuëõW¼å\89Ë\97W7ù\96Ý\91\ 6(O{±¶\1aø¨\ 2\83Óºç\8e\1dmÞ<Pùö@ù;\ 1\85\8eÅìBqoss\ 5õº«xf·ñ\ 2ÇÔñÏ\9cʧ\1d      no\rÜH§ÖV\15\18­­¼\95\91~+\¥~¦tr\1a©B\95©j_\ 3ÏFý"\85\9d\r³×ñ\14¶Ôç{s¥·/$]uÕülI\1f\8fÂì+¸7Jß\8bK\14÷ê\9d\v\17\9bV¹s\93o\1fywwÝñ¢Ô)\rzYWN³&¯öÿùFùÞ±z®ã,\8eÙ\17\93)\13o$\¶\90s¯:\1dwR\97q\92+G\8c0Pï\f¦mKKó§N\ÔÞ$\8fê¨[Äl¨\19åqçbÂ\ 5\87\93ºó·/9\9aÓ\9f@kz*ééõ´\9eÕå®[üÀ!}Æm§³ç\9bÒ\15x_-o8@*r\f{_tÈN98G\98\1e7רqÎ\91\v·ÚxnÜÎü\15¯'­ÞtnãX¥î¹°¶BíâµL\11;\95º°\9aöpºGн\8a°þ7Ú§O¶ü²Ósª*¤V\94w͸¹®P=Ì8\8a\9a80p&7>ôJÚm\88Ö©Ô\9dïê\9c\\15)h7¶ØÜf ã\16ô¶E¡Bì£\vF\9a¾¸wÁ]++7¤¡ïZ§z\8dÖ\e¯d[Xÿ\a\81»bs½ËÌò\eO×­u*±U;øy=.\1d¾ü\ 6²À0³øÕÝ\85îofõ÷d×5´ÔzýÔ¶´~Ó\8bÖ\1d²K¢\1d\1d\13Mr«óÄ.'×\9dá\15ÎÈï?ü sËyÆ¿\1c\94ÿ\rþ\13\ 6|\11
-\93R"\1a&WR(\7f\ 2\13j]=
+xÚí\92iTSG\14Ç\ 5Q4âV\ 4\17\f\ e\1eP\16\13ó0\10v\f«P@\14A\16\81<ó^ÂÃð^xY\0\11\ 5µ¢â
+Z-È¢²©U°\1a\91\80\107Z\8cUv\95­n`AÑ*\82\1cQl\10\97\97\9e~ëéÌ\97¹wþó¿¿¹3F\ 6¾~46B¬FÝ\b\L\83è\90\rpöv
+\á\ 11\0DgP\8c\8c\9cI\14\16c\ 4î\ 2\8bQ\e\0Y[C\80\ 3È
+@,\e¦¥Í"\ 6\85b\ 4\9c   a\1c\89ñ#ÄÀØÙdXÅ\ 2ì(\94ĸ0\ e¼aq\ 4\1a¥2áÂ\ 2àGp1T\1cG\a\80-\10\80åÃGD`9*BI)\8aÐ)\14\b\ 2\bÆ\15\83Õ(\1fÃ)\v\87±<p\1e\ 1X#iD"ü¸%EI\91\8a\v\18«8M\80\8a\12!pA\1c@P\1e\ f¡ª\86ªXþ1ÖßP}iî&\11\b|à¨aû\ f­úJ\ 1Ga\82¸\ f\1a"J(\11£$ð&\10\94Ä¿\94®DGð\9c\bÁW\85<İ\0ã²q¾\0\ 54\88Ig0Gò\98È\r\8bE\11_LÌ\8d\0<X BßçQ\1cù\92CÕ½÷\14\v\97zz\ 5\98}zÛ\91}_\18ÃÅ+â\84(`|>ð>\86>Ǫ>\91X,\b\19\fH%TÍ\8f«Ð/ê¹â\\ 2Áp>ð\13Ã8\ 2\93ȧÄ×\NNDl<ÍÜ\1aÐÌ-T\7fÍ\9cÅ\ 4,\vfÂ_\85þ8\16-A=\\80\ 5\83Á`±F¨¸\12\92Dqñûÿ ºóÇ\98\87©Ú\84¢±(\97\92qH\aS\v_@5ëã¼T4Î])¿Ñ±)¯ÚÚÚAm¾æÙõZsr\13\8c=õ[3Õr\ fÜ"Ë\v¯:[í\8aRÔÞ¿²Ï}±û¤ñÓúÃ\ 65YÅßé\99\15h\1fË\99`Y\93\90_.3\ 1¥²¬¡À\18¦úZ»0\94w¼Þ|\88(¿QË\8eUßhj\9bÔ4#V2Ï~Í\85\9coËû\1f&O~z\92ó\£Ì.XÊ\9bÒ6õT¾ç\9a\134\9c³\8flMÙq9Õ¼lÓ+,X\9eôÇ<­FÃ\94,äP˱½^ç\9bn\89\9aâÞ\vsÈè\9b¦\88ß\1eT¶"Ѭ¯ôåÜ\1d))\91i}JÜëIOo\8f\97\9ek\83eAæØ1'Bòøz/\ f§ú6\8d\8f§Éz4\82\97%\1dùu\9c\85Ií]æ\8e\92Üj¤!7ò ÇÉÎÀø÷¡üKCõÓé\97\rwW[U^;\ 4\1cÜöÙ2\9fõúåû.É]Ë×\85\fàè\9fÔÈ\ e\8cÎ\82j\1aê\a\9f\84\14¹T\94>\8fi§%Úe½+¨Ü6ë\82Ð!1ä¨Þ\94tÇã\8e'Kê\8aÏE\87¹\18YÌwü±Y\11½?\91H}´-3\82º0\9b×®K©¾~M´¬\a\8bÞ#\8d\84\aê\ e\97i\17=hì\1aÕ¿\8c#\95æwZ&$\11TÔÊW+fB\89ë\15)%ϺR\16\1e\1e160ËàÝ̪`\83\80p«o²\89 \99\8f\ 6\ e$s\1a2\15F\bK×¼-\83Ü\93\98Ó)z]5éäJ\97uã¨Ý£{\8bE5zL5K·®öÅç²Ýý÷\ 6iR\96ly~P\16\977\8bßýø¥1\7föýtøè^Y+\8d\14zi\8f¡óòQYÀèÐ\9a3ØÞ\94\9dBJ{Üo£\82å-êfÅr#vÏ\9e\e\e6j¯~Ë\11V¬ªiö)o\11¯\90\9fñdm×ñVø\a¥õ.\988Þ¸u¨êí¡\8aw<zð\v\rÓùEÂþÖÖJê\r'áÜ^ýÅv©\93\9fÙWÌ*\fêl÷ßL§ÖU\17è­¯º\9d\91~;L¡|&··\1f«@å©J\1f\1d÷&íb\99µ%³ßî4\16àý½±ÜË\a\12Ç\3>W:À¡0\a
\8dÓöô JúµÎ\87    \r«]=\92ï\14¾»»áDqê\8cF­¬«gXÓ×úý|³bÿD-§I¦ÇmJÈ\94©7\13®\98J=®Ù\9f°W\96;'W\8d\19££Ü\1d\91\96æG\9dº´³Y\1aÙU¿\94ÙX;έåRÂEÛS\9a\8bv.?\963\98@k~*êëw·\98×ãªYòÀ6}Î\1dûs\17\9aÓeø@\1dg4@*stû_tINÛ:\84\e0B\1f·Ö*qçÂ\8b·;8.\1eÝù«_O[»åüæ\89rÍó¡\1dEê%ë\99\ 2v*uI\ríál·À{\95¡\83oÔÏ\9cjûe·ûLEp\9d ïº~k}\91r\94~$5qhèln|ÈÕ´;\10­[®¹ÈÉ!¹:\82שoºµCGÃ%ðm\9bL\81ØD\15\8c5|qZVnpãÀõnå:µ7\9eÉV°ö\ f<WÙÖ\ 6ǹ\157\9fnXo_j¥´õõ|\6zÕMd±nfÉ«»K\ßÌ\eìË®ol«óü©# aË\8bö]\92Ë\82]]S\rrkò\84\8e§6\9cå\14ÍÉ\1f<ú {Û\ 5Æ¿\1c\94ÿ\rþ\13\ 6\\ 1
+\93b"
+&×P(\7f\ 2hí]I
 endstream
 endobj
 40 0 obj
@@ -5919,7 +5922,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-163 -250 1146 969]
-/FontName/HQMHFX+CMTI10
+/FontName/JUVMCM+CMTI10
 /ItalicAngle -14.04
 /StemV 68
 /FontFile 39 0 R
@@ -5932,29 +5935,25 @@ endobj
 /Length1 728
 /Length2 4981
 /Length3 533
-/Length 5541
->>
-stream
-xÚí\97UT\Û\96\86\81`A\83\86\0\81\ 2\82»;ÁÝÝCA\15¤\bU\ 5\16,H!AB¨à\10Ü\9d$\10\ 6      \1e\b\16Hpw\9asν}G\9fÛ/=ú­Gï½\1fÖ\9cóßs}ûßk\8c5\16+\93¾\11¯\ 2\bn\ fV\85Ã\90¼\82|\82R\0%\1dc\rA\ 1\80 \9f\80\80"\ 1\12\ 2\fDBà0e \12,\ 5\10\94\94\14\ 2¨\82íï\ 6w\8f\94¨\98\94 \18\ 1\ 1+@  îê\83\808=G\ 28\948ÿP\89\ 3\14 `\ 4Ä\ 1\b\ 3è\0\91ÏÁл&\ e@\17\80\11Ü\ 1\ 2Fúð\ 1\0
-..\0Ã?^q\a\18\82ÝÁ\bO0\88\8f\80@P\10\0\82\ 1ö`'\b\8c\80ÿ\ f,\r\98#\1c þW\1aäáúÏ\92'\18á~Ç\ 5àø\93\94\13pÇ  \82Ã\|\0 °#\ 1¿.ün>ð\1dÍÿ\18ì¿áú{sU\ f\17\17] ô\8fö\7f\9aõou \14ââó\ f\ 5\1cêê\81\ 4#\0:p\10\18\ 1û»Ô\fü\17\9c\ e\18\ 4ñ\80þ½ª\81\ 4º@\1c\14`N.`\0¯ \b\9f\80È_y\88»*Ä\e\fÒ\87 \1d\9e\ 3\1c\81.îà?ó`\18èï$wþýÉÁ¯n £®jÎý\8f¿ûWU\1f\b\81!\8d}\Á\0\81\7fÉÿ\8c\ 5ÿ\15ß¹\84\80x\ 3¬\ 4îl\16¼\13ÞÝÿ\1cÙüm6\15\98\ 3\1c\ 4\819\ 1\8c\90@\18\b\88\0ýgâß©\14\15áÞ~¼\82\0^!Ñ»å&("\ 6\90\14\93\fø¯J\13\18ÄÍ\ 3¬¡\f\10\15\10\10\90\10\92ø3ëà\81@\80aÈ?\17ÄÝ'ÿ3v\84ܹ\ 4\ 6{\83\1d\b^\1a\19èplqÌR\vP?+eã\b\19¿\1d»Ç\96ì÷\0\fJ3\92«ß\)\8a\8e¸Iõ¡)\88xCÈv¢öm     µ¯\93*÷u¢¨\9f\81·h&ü\\99ï\ 3õqÃ6îÛ2\7fá\1f+ÎÒGvãګϨ\ 5#\1e¼\1dÀÞ\8f\93\88Ò>*£\92øýH\9d\82lLoå³ß¯÷yî$(uÁ\e\8bo3Ã|ªd/ìÓýrÏ\87å\ 6r\8f¤Ûíó³½úé8BÞs]\ fw\1e5ZÙ8,5ÇÙô\19\9ayBãÞ;\95§\7f<ò['õñx9¸ý<¬¶ Þµ\8fQoñå5Æv\82äÏ£\97óR\9e\95\88ò4%\85\bwÂÅ\8a\eíÖµ\9eíþÊ'\89Ø×®\ 2dI|\96\9fUQ\ 1¥\90Ù\9cØO\rÂ\96M\v×Ýx)ôþXæì\ e\17¸\19J¦Ò9^ØXh\95\11Å«êôÓ\18\83E\92\ 6øP¥öR\89\rð®Ø«g·RøUôÍU®\1fÕ\93NÕy{\82ß\8dÊ
-\a\1a\92\ 4ÄLK7\95ùÞê\1c:\19\1cís\95üâ\86"ìÚÞ±mFôacÈá±\ 44\7f)Zݰ\1e\92\1fï?¶Fò|\92/'®ÆÖ\ 6¼ßg.xê\17ü8Ùê\ 2âÈ\14\83\9f\f\1aû5s²mW\1f\¥@99aûö3{¾§(\95nZ\18è {\91f6ܶ\9e.\1e4\8e£EÈ\17\88e\89çù\15¾ý!ò½,/¨\93ýùÂ\83\17YÆ´\eëÑm\9fÜÑ?à:ZÙÈ\1a*^\ 2Ý4«+¦ÖìIÁå`ð\1aÍm\9bñ\82îè\94n?^\ 6àg\8a«BVâ\92ôÀÍÖ¡\89\8e#UÊÉA&ùC|ì¯\96¬Ä     A7¾(X|¾\80\1aÃ\8c_>(Øü\1d¸\9f\ 2\98À¹¿ì|»ÞÁO$aL\1a³\12x   ËL³«§µL¯SÑ\9bê9ççO\16§J\89(µ \15ý \9a¯\9c\9e\9e\bYÚ¿T¯æ\f¦\ fÙ®}Hßb\80s\ 3~\rAÎE\a\14óë)Í\a½\10\83\ 4SB_\8d\89Qdׯf\0\13æ²~a"6C\ 6è»H$ø!³tâþt\9bòA\91¹\85Àz¸d\98S¶Ù¡\rM\e}§×\12.\rO\14C/\16b\99OÊÚ\8de\88}k¨×=±øúDº\8e\14«\11\94~e´\9b$\ 3¦Aj7¥\7f\9a\10\ f%9®\9eDa4ø5\1f)BÛ×wÍ¥ 5Ç+Z\90\fO÷N9+Ø\19ï\ 1\1eUÿd{©tÍdµöú|äÉ,e1)uhå@\11\86Ë®\8d©P\87:c3Ý4³n\94á÷Oþ*)¹âkú\96íJ4÷Mû\19íä¶\\87êòäèµs\90ºøÉD?½\97U\93Â8\97\8egH9\98Ùù ¾Üº]|Ý:Nñ\1a\93¥\14þ\ f,UýüõjêÑMFNlI\96¯)\9f)Bù±xË\8dÐVh\86·Hm¬ lEÿ¯d¾Ëª\ 6òB\87\97%'7i\1aPgîÞÖFWù1X\89\92êý\9b¨öÛ+Ù\97ÁM\8e¢!MI        Üþþ¦k\1e²,óü»ÖR»ÙhÎS5\82\96yôÖÕ\17ídSCÌ\9c´è«[\97Ô\96Þ@g\1f\8có\97¿0\0×=åÍooÑf¨\97h¡9¿4go!f\ e\93ìüWî±ç¢Aã7TM\894-\9bòó^a\±soEÅJ\83;<5+nFY
-÷òî\93ÖÆLOÒþ,0Â\18YB\89\99\ 6h³âæÎ´ªDòÐ'G,nn\1dã±ÅNx˳5\11{¬E\93D\8f¸ì1zÜ\163}vGîmò\90Ô¯;ç\8cgW2Ê{gdö²
-ën?*5/\1dF.S\86×  m6\87\97\9b*HíJ}y-:Ò5Nû\11â§o\14þ½m\1cî\19\96Õ¥O\ e|\ eX\1dÛj_²¤.\ e\93(v4tP\9eÿ\144\99gÂwB[=\0`wÒ,µ\90GÎûé,ú\a\9bp~ØZ\94ÌQ\9f6I&&°+\99>}?@\17C\89ÕzV*×N\8c\8f\82öÕ\abû7þhpTI\85v÷¹Ã]}G¨
-"\964Q\13ÁQï\93$U.½\fùiu\ eòA>׺9HO·%!\95×\1fÇ<\1dæ\85Ê×\12¶Ìr\14´(\84>ËÍ\9b~[1\1eIn\9fJ*þ¼\ 4r\81|¡Üf~ýLAæÂý\9c\93.{´yëÍ\vRª+Î\v\ e¢Ö\15ܬWJYc*ª\86mL4²ÂàßMy\ e¼ÂÑácÜ­è\89eç³ãÍÅ     PßÈ\93K\8bÜãÑ\98u\bÀ3,Ô\0W\83\9a£4ä©°­ì=kïðÚÒUº\1aÀÓm\7f£ûØ\15\9c1r\121\93\1e\9f/7\16\13\1e^ó¹(\12\192V\93\19ñÌ\8c1\ f\10\84\9aä\ 5D\ 5nÃ3<ô:Ýtö>\15\8b\e7&ͽ"ñ\19Këx \8e\99Än®ùÄ\ 6Ï(\925\8c\99UV¸\15µOÄ?kS!2Kn'O¦ôãH²½î\86\19í0\1f\10\9aùHf\eÝÛ*ñÈ\9cݼb[\906Xzó\rÞhÞ¥e\ 6\9bÝq/¥^å\82ªMo`v×eiÛíae\89\83N¶`DÇÁ\9e7^WW­O«ãÌ`ÀþèÂ\8bõ®Ð\88\fðjÄEö£Ý\83 L5\8629\ 2C\87YjÊż«÷²\9dô@ëfÖ*\8aæzIÖ^lqÉUß3\8cÅ:\8f¾Ñ:!\9dÖ^\ f\eÜ0\12I{µ\vÎ\16\1a\91\80óé\ eëïF\10!\94ñ\97\r\11\v\98\fÒ\7fþ!&­ \8c§TM\97S\9d\88é>%êõsÏ(ò£\fSBKò\84*AÉ2»S.6\19¹·\ 3¹SO\1fC\19µ<o\85Û\<Åo\97yx        Ö6zW\13Þ"\8d\fp\8eKc{\vYÖ<\7f\8f2\8awçø+\9a\93²(×0ºa\ 6\1f[¾ç       ³¯ö~áH\9cÀkN-²Zÿ.\85\8bU'T¬_zþ©£"Uñ¥½<O¾ZlÿûV\vè8\8b´;öXâ\83ÆB\83/Ä5¡cs,ì»Fxüúx\ eH®²©FoýÁ£Ó½.ÉÈÂÓ(¿­ÐóÆ$'Ô\1eH!®K\1eáwC|\86f\1fêø\90¯&ÅZ\91;îÝd\1d¦*~o\9d\90\1e(!©ôp¥}Xüb/;lå\81íé쨯\95WѺ3\11kf¦Ö\95,\87YL>\8a\98f;\83¼>/FÒh\80MA:L+Óæ8\ fÙH5J\1a\95#\84+ÑS&ëeÓ\1fy1\153\e®O;Á¬ö\ 1^\92t´]êÑúa'ÝfkW×\ fb\80\12ý_Í\86mÚýõ*Á\91¼](Û·O<\86\86Ôõ\e\95ZP²æß¶A2|pZ\928ò·6þôZ\³~\1c?4ZóZ3EXÄÁRMì©o"     gë\86!R6Ì"Sì\84=N5ö\ 4Ï\8eM?.RtOe9ºÕø¶Áu\e\1d˹²Ð+ \10M²oÁiC%¬\92¾0\1cÌ        \12\vªRJ\8cñn\1e&Ñ]U³e^\11ñÚÑÃ'\8dH\fª5\b\8c²\rÌ\81{¾7d\83\9cmTÈú\91;n\85?³Ýø¯(ÈÉ~÷ë_ß\87ë#\11û!#\93Dù>Ä\81\f\ 1\1ct´·Ìañl5ÆT\93}DÕ¾\81*/&É\89\18³\96\ 6w~*\fÖI\95.jFÇaZ\r<:
-}Ò\82?%\8aJ5¡\8dá\ 3²\10\\98a\ 2KY\ 6DÝÔÊ\96\1e\7f\83\8a×{\8dÿ\16^=ªq¦uÁnî\88x
-)Âê¢å\ 4kòÿÎÄ\83Å\9a\18'Æ1G{_½%\ e\89\13ûÍ\8a¾B\88\83)LGo}:\90\8dmvåÒ´Lkç~;%\aâ^\8fÊ\91i_\9dZ\9a5E °\1d>è;\11i^Ü\87éñÌC\11íTük\1a_\18f\1dd¿ÇäòDg%\GdɰlºlÊ[\9fE ñ¨íê\93W°èNÉâ·)DxßÈ\14ä¥\8có^\ 4\10âm\8abJ\1e\94ÿH\vô¦\ 4\98©é_\98º÷\19Ù\r?W8O*\95s\1eäÅAi:h+\10;V0+ÄåÄHX\8eÕO½zö3y±34¾\1d\1eù]e<\8f\92ïôP¢f\7f\17M¦'\881T9Ë\80\9b±¹\91,Èÿ©Ð  ¿ïuEIû\8c\b\1fÝÅ\ò,W\18\7f§|\\8b\8c\88e\9bÐp\1chJìEÑo\95\96ú\f\1cîË¡¯ÁÖbØ\8c£å\e\ f\1c\88¹Ææ(\16¹GyÇôùö\84z\809\ 6\8eóLè\ 3ê{Ã=ËB£Áö¬D\1d\89\99Ïãaêâºð¤\8c{{k\ 2ëtt\e\85\ fv\83\1e\9e5L¤åò:úöDßmÒ˲Ýo
-o\9fC\99h¨7yñ\8cÔ\8aRw\1e\18,\v?f\r§°Ór¯÷\9exe\b\8d\96ì|qñs³\1d\99Å\7fN«:sS5"çA2è´ñ½\1d-I]ül\r\9b9¶W3çñææóª\aî$©â¿ªÝ­¦\91\81Z\88Ò£kÉÅ\ eÓ\98*\89\1fÅ©Ýß\1fð´:\ 6`3÷¡32h\17rxR±C\a/3?5o\9b°n\93xn\8c\aãÝ:ú]O-ÛÉy|\9fÖ/\92«\8eoP¤zº@\93Q"Ê\9e¯]@ï\82\92xªsܰWtR)\7f\824\vÐ=µ³ª½¶Á\15l,òö
-\8e¿d©:2\12\1f6]\ få½òL_ØÏåi¯OAl+è?ß
-sFiÒ\89\1f\9e½\93nÖÚA\8c\87ϸ9)(°\ 3wÓd®±ü?\1c\84\9f©¢¹C\17Å\1aÍ\9bÉ\14\r`
-ú÷°é¤ã\Yì\9cévª°
-î;þP)\13IT·V7ÔR\88©\99(RÅÙÏKöiµÐëÃ2\rï¾Hÿ\91{TX\96¸\9eT¯Lé´£\11\19+þÞ\ 4í\85\87­åmtP\98¹è#_À8,ó¨Q\9ekV1\87µ0åµS\83hõ¨i\8a¦\ 5Í\9aU\99\ 1õ\9añùªóï×\a3\1eß(é TL\82ÞÑí\8a\Ög3\10ó\90Ö¼¼\1f\87z\81Eùf\91y\8e\8d\8bT\87þ8j\97´®NuÒþçím
-J\1f\98íÕûBQVU<ËäÅê\a\8f\9e\aòLýrQ\ fj u¯ö+sî0qÃ^*ÅÒHe¬ä³\8aÝ®Êe_Â#Ø\1aî\97\rc,£\89ÐþqZ\7fÜ\8d-\9b+³EüU\9f\8d6C\17(\81Þ\19rO<#Åò>®Èï^ó­Ó­ï±nü!®J\15WêׯÒéþ­ª\7f2©Ì\15¦[WÞmwâ@¾]\81\90{û¾gm\8dzàÍ öåY΢\1d-\ 1E®S\97ÓRÕÎ\90\97\92
-ë¹\8ev&\86÷\8dK^\F\84·Ð³~oß2ÔÑx\03e|¼X rÀ/v\86\11L·0p\89\8fWt¦\85\81\8dÃby\81È:`ºâi°ëX×\8cÞÂäb'È\15ðn\87\94}Zñ^|ÜÄ\ eûFx\8d
-=¶$\14koS\96çê%9õ\85YÁÁ´xJƯò~?Ã\83zöø\ eÆTÇÇ _]Ñ\ fÇÉ¢\86kh_¢:f\81Õ?ùK4}oL­¡Ìj\82­ýTØå\13®jw\87\r\fÆVÿ¹\87\981\9b­ÁÄv¹íT\14l\8cX\89Øöã\ÍçÔóDze\18<«&¿\10\eü¥\9e7Õ©ÃÉ\976Gdg\94áå«\ 1\1d[²¬ÍÝ´v©\9cLT&PÒO§ïV~å£\ fS\94\7fF\btwÑ×\14»c\ fEèµ{e\8bÚ-\91x\89¨\9d\84B\15Ù~\16xãj\ e\9a\1c\5\9f\9dæÚâùù\16Ǧp\1fsJÁ¾C;ª¯$íÔû\ eºí\8dÞõ]\ 5M\97î¢òOµ«ªp\16ºK\83pK\9b¸4s\87Xe\12?;vfdk        (÷&\8b²ò\ 5ëùà\17+jlÙ\7fb\17¤.\ e\1c«<öÐ%®\85`¤×-T\7fÚú \13t«É\e¥ÝSkJ\80g¦1Øen;Ã8\89fðçfÄó­ó\9bºÏí\8c󦡳¸\91\b\8ehÙ¿ù\10\18öÒ£\0»=¨Oûu24%yÀz\8bÔ1Æ~ZU*QÝ}\8eÌ-Z\86Ъw\81}á´Õ«Ý:ùã½\86ìL\ f¤\87TAíÖ\8e\9bª(\81\834\13³ÊöñÙDÃ\ 1\11\12Iè¿i\80[!\81\12VÒúÂ-EG©ø(T\90ÓUÜ9ñ´s\87YQ\8e\93\14=\ 3Ößû&mfëûËú2§Ó³\Æ\ 6¿iý\14\9f\8c\1e\9d×\82~ÓMFÓ«û7êõo\83[R\9f\88L}\19ø\90`ïhg\84\10\9aÙem\r@\1cPmíHþ\96w2!äg\ 1£UQÝ\15²D\816LhâW¤Y!)¢Ú=\fav,8§óI\98Í÷F¯¢®®Ê\1dju\9eã\10¼ØL£ãú\88-Âí÷\9e\8aü\16\91Øy#÷²þº~\9e\7f\94¥~Y!\13¡áI\15ÉI\89vÔc\8e\e z÷]\e¾f\ 2|÷Ê/k.Jç1Ø\8eXìM\85/3ßíà\aH\ f'\9bÕï5xVE&\ 1xvn\bÕB±w\96¥?ÆeC\93.\82\7fN\93   ?ñ8ùq\85í?Á\84/ ÚiÃ`ôFÖãYÃ~ù¡7Á<} \a\ 1ñAÞQ\96ÉÛ\17Ü]\84ÓÊÉÏiÌ\95\8dN\97i\12"¦"s» \vÓ|¢(\17Ûª©®gÊî\97¾à\93xkŽKË<¼J[e*\13ÞW\9a9z\8d\8cÂ÷s×*?m­Ä\9aQͤÊ\12~\ 2Z%\ 4ù\89\94lnæwíht\vóoZ-­\9d\18×¼é#\foa\17\ fâêû\ 1\85\91Z£Hl\1eg%ç\9c\1aä\17J\e5\8e÷fã¿°h ]íXße£\87iÏãîT_\93è­W\\7f÷\vLåévèØ}U?j\19¯\ 6[Ôb¾æ^\.­(¢ÓP2às±uäÊ×X\16\7fj\15Dx\ 5/\85¼!e\ evw4@ÖÖ¾\85>¬®\9dÄ\9aï\17ñ?ein´Ç\87eàà\86\93Ôßsv#Å\ eá?;ä3ÄP\8c"¡NõS\rEML\87%;\87sËo)Ì\15ÓwJ¯\90Ö\1dYY»\8fSÃK±àþñÔg\85!¶4h\9dÉÆ
-ýô9\9bý\12ú:LGT\10¤FpqÄ\ 1\a\97äÀ`\90¼\1f°ñ\ 5\ e\88ãiç\8e2ÖR\96¾iµ\82ÙR\88ÊmÂ\9c\8c-â9ªBÈô«Élù`\8b\ 4\ fNðÆo\81\f_\96\fà]\1a»\89 a7.\8aØ\17¦\82}ë<Ì¡H\88\0¤\ 5sopRZGí¨j\8bó\86++®NGE\1aÓÉÙÅ0¬wiáuá\8f\83\8d
-R¯x\ 6 \1aÙ\85%d¼ÊÎ\1e\ 6K}\fÉH&\88\94HñÄ¢¼ðá1Æ~¼\¾V: bô³^@<xM\1aï£%ý\82:п6=·×  ±v/1Ú¢©?ä+ÛjÒ\95ÅÞm\87Aáã(ÅÔØ@Þ×ïc«E\1cw\8bnv\86ÅNÚ¬zËÓ]ÁcX\89Êi<éª\15ÑïrÉ\8cÚ9î\87¯\8c \86°\1aßq\87\11\9c8W½d\8c\1a"ÊïrºØ[]o,\e°íQ$\8a\14yµÜ\ f\184zg\e\90 \vyÔ$¼m3§z\92~­öÔvÑ|´j\ f\92F\9akXöàDÐíóÂ1\7fÑ i\8eÌ3 \95séË      v\8e \8f\ 4\16í3'þe»\õ\85²\18ôYQs\1c \8b~!ò     E8áH\9fÊñÓ\19XÉã)ë1\ 6÷\rNÕöõ\9d \9bL%6\9d\94\96JÂlĹè8?\97\bm!\9f\ 4É\0%"âûZÜ\ e°Çæµ\ 1À\ 5Ne^OW|L:)L;þñ\99\e\8bõGÃ<\9f¶ßUO«±ÂV~zS\86\1e\ 2«é\99Ô¸\96e#à     m:\8fµÊ»U\9f\89mØòBt·ü\95×\8d\90=¨ú
-ñ70%\7fQÂó\14:g¤   %Msä\ 5\91í©\87Àÿò"øÿ\ 6ÿ'\1a\80\81\b$\1c
-D¼  ø\ fYPÿZ
+/Length 5542
+>>
+stream
+xÚí\97UT\Û\96\86\81`A\83\86\0\81\ 2\82»;ÁÝ5ÁBA\15¤\80ª\82¢p\v\16¤\b\ 4        PÁ!¸;I Xp\r\12<8\81\ 4w§9çÜÛwô¹ýÒ£ßzôÞûaÍ9ÿ=×·ÿ½ÆXc±2é\eñ*\80à¶`U8\fÉ+È'(\ 5PÒ1Ö\10\14\0\bò        \b(\12°²*!À@$\ 4\ eS\ 6"ÁR\0AII!\80*Øönp÷H\89\8aI       \8a\11\10°\ 2\94à.Þ\b\88ÃK$\80C\89ó\ f\958@\ 1
+F@ì\800\80\ e\10ù\12\f½kb\at\ 6\18Áí `¤7\1f\0 àì\f0üã\157\80\r\8cð\0\83ø\b\b\ 4\ 5\ 1 \88\1d\12`\vv\80À\bøÿÀÒ\80ÙÃ\ 1â\7f¥Aî.ÿ,y\80\11nw\\0\8e?I9\ 1w\9c 8ÌÙ\e\0\ 2Û\13ðëÂïæ\ 3ßÑü\8fÁþ\e®¿7WuwvÖ\ 5Bÿhÿ§YÿV\aB!ÎÞÿPÀ¡.îH0\ 2 \ 3\a\81\11°¿KÍÀ\7fÁé\80A\10wèß«\1aH 3ÄN\ 1æà\f\ 6ð
+\8að     \88ü\95\87¸©B¼À }\bÒî%À\1eèì\ 6þ3\ f\86\81þNrçß\9f\1cü\9a&¦:J:Üÿø»\7f\81\10\18ÒØÛ\ 5\f\10ø\97üÏXð_ñ\9dK\b\88\17ÀBàÎfÁ;áÝýÏ\91ÕßfS\81ÙÁA\10\98\ 3À\b   \84\81\80\bÐ\7f\9dJQ\11îåË+(&\fà\15\12½[n\82"b\0I1Iÿÿª4\81A\ÝÁ\1aÊ\0Q\ 1\ 1\ 1        !\89?³vî\b\ 4\18\86üsAÜ}ò?c{È\9dK`°\17Ø\8eà\95\91\81\ eÇ\16Ç\fµ\0õ\8b\126\8eà±ÛÑ{l\89¾\ fÀ T#¹ºÍ\95¨ð\9b\14o\9aüðw\84l'jß\17Qû:)r߯\vû\18x\v§ÃÎ\95ù>R\1f×oã&\97ú  /­8J\1fÙ\8ci¯¾ \16\f\7f\90Ü\8f½\1f#\11©}TJ%ñû\91:\ 5Ù¨ÞÊ\17ß_\1frÝHPê\827Ï¿O\ fñ©\929Ù¦ùæ\9c\ fÉõç\1cI·ÙæeyöÑq\ 4\7fàº\1eê8j°°²[l\8a±ê54ó\80Æ|p(Kûtä»Nêíþj`ûehM~¬K/£Þ«k\8cí8É\9fG¯æ¤<*\10e©J
+án\84\vå7Ú-kÝÛ}\15OⱯ]\ 4È\12øÌeØ¿¨¢üK 3Ùo>×\v\9b7Î_wá%Ñûa=c·»ÀMW2\95ÎöÄÆB«\f+^U¥\9dF\e,\90|\9d\87\95Hl\80wÅ^¿¸\95¯¤oªtù¤\9epªÎÛ\1dô~DV8À\90Ä?zJº±ÔçVçÐÁàh\9f«ø\177\14aÓú\9em3¼\17\eC\ e\8fÅ¿ékáê\86å\18k¦üXß±%\92ç³|\19q\15¶6àÃ>sþSß Ç\89\16\17\10{¦È!\1düDÐè¯é\93m\9bº J\ 5Ê\89qëä/ìy\1e¢Tº©¡ \83¬\ 5\9a\990ë:ºXÐ\18\8e\16!_¨-#\969\9eÇ7øöÇ\88\ f²¼ \ eö\97ó\ f\9c2\8di7Ö£Z?»¡\97à:ZYÈj*^\ 2ÝT\8b\96¬ Áå ð\1aÍm«ñ¼îȤn\1f^:àg\92\8bBfü¢tÿÍÖ¡\89\8e=UÒÉA\ 6ùC|ìoæ¬Äq\817>(Xl\9e\80\1aôo\1e(èÙ{p\1f\ 50\8es\7fÙñv½\9d\9f\984z%à\12\96\91jSGk\9eV«¢7Ù}ÎÏ\9f(N\95\14\9cTô£j\9er\\81[Z<dqÿR½\8a3\88>x»æ!}³\ 1Î\rø-\ 49\eå_į§4\17è$\ 6        ¢\84¾\1e\15£Èªy\93\ e\8c\9bÍü\85\89Ø\fî§ï$\91à\87ÌÐ\89ûÑmÊ\a\14\0ëà\92¡\ eYf\87V4­ô\1d\9e\8b¸4<\91\f=X\88e>)KW\96Aö­Á\1e·ø¢ë\13éZR¬\ 6\95Ñn\82\f\98\ 6©Ý\98öy\<\84ä¸j\ 2\85QïÛt¤\bm[ß}&M¨9VÞ\8cdxºwÊYÎÎx\ fð¨ê'Û+¥k&\8bµ·çÃOf(\8bH©C*ú\v1\9cw­L\85ÚÕ\19\9bè¦\98u#\r\7f|öSIÊ\11_Ó7oS¢¹oÚÇh#·å2X\9b+G¯\9d\8dÔÅO$ú鵬\9a\10ʹ\98\11z<MÊÁÌÎ\añáÖíäëÒq\88Õ\98(¡ð{`®êë§W]\87n4r`K0\7fKùB\11Ê\8fÅ[f\84¶@3$#µ±\ 2³\14ý¾\91ù,«\1aÈ\v\1d^\16\9fܤj@\1d¹{Z\1a\äGaÅJª÷o"Ûn¯d_\ 5\8b\ 67&Äqûù\99®¹Ë²ÌñïZJíf¡9OÕ\b\9açÐ[W_µ\13M\r1³S£®n\9dS\9a{\ 2\1c½1Î_ýÂ\0\w\975%ߢÍP¯ÐB³¾©\8e^BÌ\1c&Yy¯ÝÞ\9c\8b\ 6\8eÝP5ÆÓ4oÊÏy\86\99M\16\15+  j÷Ð,¿\19a)ØË½OZ\13=5Aû3ß\bcx\11%\8aìbê§Í\8c\99=Óª\14ÉE\9f\1c±¸º¶\8f½)rÀ[\9e©\ eßc-\9c zÄe\8bÑíº\90á½;|o\93\87¤nÝ1{,«\82QÞ+=£\87U\18^yûI©iñ0b\992¬Vh³)¬ÌTAjWêë[ÑáÎ1ÚO\10_}£°\1f­cp\8fÐÌN}ràKÀêèVÛ¢9uQ¨D\91½¡\9dòÜçÀ\89\\13¾\13Úª~\0»\83fÉsyä\9c¯Î\82_\90     çÇ­\ 5Élõ)\93Db\ 2\9bâ©Ó\ fýtÑ\94X-g%rmÄø(ho]\0¶_ÃR½½J
+´«×\rîâ3L\95\1f¾¨\89\1a\ f\8aü\90 ©réiÈO«s\90\aò¾ÖÍFz¸.
+©¼ý4êa7'T¶\16·e\96­ E!ôEnÎôû\8añpbÛdBÑ\97E\903ä+å6óÛ\17
+2\17\9ctY#M[ï\9cH©®8/|õÛ\89ZVp3_+e\8eª¨\1a¶2ÑÈ
+\83\7f7æÚñ
+G\85\8dr· Ç\97\1dÏ\8e7\17ÆA½ÃO.\9fç\1c\8fD¯C\0\1e¡!\ 6¸\1aÔ\1c%ÁO\85­eïYz\85Õ\94¬ÒU\ 3\9e\19ÝÇ.ç\8c\96\93\88\9epÿr¹±\10\87\13óð\9aÏY\91È\90±\8aÌ\88gz\94¹\9fh#;Ä$×?2`\e\9eî®×᪳÷¹Hܸ!aö5\89÷hjû\ 3\ 4ög\9aO¬ð\8c"XC\99Ye\85[PûDü3Vå"3ä6òdJKG\92mµ7Ìh»¹\10\v\85\90\8cG2Ûè\9e\16\89GÏØ\9f\95o\vÒ\ 6Io¾Ã\eɽ4OÇoy·;æ©Ô£\9c_¹é\ 5Ìê¼,i½=¬(¶ÓÉ\12\fo?ØóÂëì¬ñn±\9f\1eðß\1f\99wZï\f     O\a¯\86_d=Ú=\bÌPc(\95#0´\9b¡¦\Ƚú ÛA\ f´lb­¤hª\93díÁ\16\97\õ9ÃX¨uï\1d©\15Òiéq·Â\r%\91´U»àl¦\11ñ?\9fj·üa\ 4\11B\19\7fÝ\10y\ e\93AúÍ=Ĥ\15\84ñ\94¨érª\131ݧD½}é\11I~\94nJhN\1eW)(YjsÊÅ&#\97Ü\9f3ùô1\94QËãV¸ÕÙCüv\99\87\97`m£g5.\19id\80s\ò¦§\80eÍã÷\b£xW¶\9f¢i\14=)\8br5£+fбù\a\9ePÛ*/'{â8ÞgÔ"«uï\93¸XuBÄú¤ç\9eÚ+R\15]ÚÊó䩽éûÐò\1c:Æ"í\86=\1aÿ ¡Àà+quÈè,\vû®\11\1e¿>\9e\1d\92«t²ÁK\7fàèt¯S2¢à4Òw+ä¼!Á\ 1µ\aR\88é\94GøÞ\10\9f¡Ù\aÛ?æ©I±\96ç\8cy5Z\86ª\8aß['\8a\aJH*=\i\e\12¿ØË
+]y`ýp2+ò[ÅU\94îtø\9a\99©e\ 5Ëa&\93·¢k\ e¦ÙÎ\0¯·Óp*\r°1P\87ieê\19ÎC6R\8dâú\96*åpá
+ô¤ÉzéÔ'^LÅ\8cúëÓ\ e0«­¿§$\1dm§z\94~èI\97ÙÚÕõ\83h Dß7³!«6?½
+p\ 4o'Ê:ù\89ûà º~\83R3JöÙ÷m\90\f\1f\9c\96$\86<ÙÊ\8f^\8b\97cI£%·%C\84E\1c,ÕÈ\9eò.\82p¦v\b"eÅ,2ÉNØíPmKðâØôÓ\ 2E×d¦½kµO+\·¾\83Ú¾\8c+\13½\ 2
+Ö$û\1e\94:XÌ*é\ 3ÃÁ\1c'yNUB\891ÖÅÃ$º«j¶Ì+"^3rø¤\ 1\89\ 6!O\91\82ÙqÏõ\ 4o\90³\8d\bY>rÃ-÷c¶\19û\15  9ÙïzûëÇP]\ 4b?xx\82\9b8\80Á\9f\83\8eö\9694\96­Ú\98\97¨Ê'@Åi\82\9c\881sq`ç§Â@­TÉ\82fT\f¦Eÿ££\90'Íø\93¢¨\14\13Úh> \vÁ\85\19\84¥_ÔU­tññw¨x\9dçØoáÕ£jGZgì¦öð§\90B¬NZN°&ÿï\f\e\13ãø\18æ(¯«dâà\18±ß¬è+\848\98ÂtäÖ»\1dÙÐjS&MË´vî»S| îù¨\f\99úÍ¡¹IS\ 4\ 2Ûá\83¾\17\91æÅ}\98\16Ë<\18ÞFÅ¿¦ñ\95aÆNöGt\ eOTfÜux¦\f˦ó¦¼åY¤\10\8fÚ®>y9\8bî¤,~«B¸×\8dL~nÒ\18ï\85?!Þ¦(¦äAÙRj\80\17%ÀLMÿÂÔ­×Èfè¥ÂyB\89\9cã\0/\ eJÓN[\81ؾ\9cY!&;ZÂ|´nòõ\8b\9f\89\v\1d!±mð\88\1f*c¹\94\87\12Õû»h2=A\8cÁ\8a\19\ 6ÜôÍ\8dDAþÏ\ 5\ eø½oË\8bÛ¦Eøè.f\13g¸Bù;äc\9aeTÊ\86Í[\85\86b@\93bN\85¿U\9aëÒq¸/\a¿\ 5Y\8aa3\8e\94m<°#æ\1a\9d¥Xà\1eá\1dÕçÛ\13ê\ 6f\eØÏ1¡\ f¨ï\ru/\v\8d\ 4Ù²\12µw£Ç§¿\8c\85ª\8bëÂ\13Òïí­ ¬ÓÑm\14\r|xV?\9e\9aÃkïÓ\1du·I/Ëv½+¸}   e¢¡ÞäÅ3R+LÙy\14\81c°,ü\985\8cÂFË­Îküµ!4J²Ãéâçf\e2\93ÿ\9cVuú¦rXÎ\9ddÀaãG\eZ\92ºèÅ\1a\9b\1eÍìÇ\9b\9b/+\1f¸\91¤\88ÿªr³\98B\ 6h!J\8e®%\17ÚM£+%\96\8aRº~<ài±÷ÇfîE§§ÓÎgó¤`\87\f\f|nÚ6aÝ&ñØ\18\v»µ÷½\9e\91sÿ1¥_(W\15[¯Hõt\9e&½X\94=O;\9fÞ\19%ñTç¸~¯ð¤Bþpb\ 5iæ¯{jcQsm\85+ØPèå\19\14{ÉRyd$>dº\1eÂ{å\916¿\9fÃÓV\97\84ØVÐ\7f¹\15ê\88Ò¤\13?<{/ݤµ\83\18\v\9bvuPP`\aî¦Ê\cù}<b^     ;SEs\87,\885<k"S4\80)èßæ\93\8eqa±q¤Û©ÄÊ¿o¿¤R*\12¯n©n¨¥\10]=^¨\8a³\9f\9bèÝò\¯\17Ë4¬ë"m)稠4~=¡N\99ÒaG#â\8dø\a\13´'\1e\96\97ÑAAÆ\82·|>ã\90Ì£\ 6\19ÅlÖ\82¤·\ eõ¢U#¦I\9aÏiÖ,J\r¨×\8cÏW\1d\7f¿=\98vÿNI\a¡b\12ô\8ajSä²<\9b\86<\vnÉÍ]:Ô\v(Ì3\8bȵoX :ôÃQ»¤uq¨\95\1eò9okUPúÈl«Þ\e\82²¨äY&/R?xô2\80\97³z`=©[\95o©c»\89+öb        \96F
+c\ 5\9fÅ\9bíÊ\1cöE<\82­¡>ÙPÆR\9apí¥Óºã.lÙ\1c\99-âoúl´éº@       ôΠ[ü\19)\96×qy^×\9aO­n]·eÃ\92¸*UL\89o+K\87Û÷ʾ\89\84R\17\98nmY\97Í\89\1dùv9B.ùC÷Ú\1auÿ»\ 1í˳ì\ 5\eZ\ 2\8a\1c\87N\87ÅÊ\9dAO%\15Ös\1dí\f\f¯\eçÜ\98ôp/¡\17}^>¥¨£1\7ffÊØX±\0eÿ_ì\fÃ\98®¡àbI /¯èt3\ 3\eÇóåy"Kÿ©ò§A.£\9dÓzó\13\v\1d \17Àû\1dRö)Å{±1ã;ì\eaÕ*ôØ\92P¬½MY\9e«WäÔ\17\aSâIé¿Êú|\r\ fêØcÛ\19\1f\83~uF=\1c#\8b\1cª¦}\85j\9f\ 1Výä/Öô¹1µ\842«       ¶ôQa\97\8d»¨Ý\1d~Ù70\18[üf\1fª\99bFo¶\ 4\11Ûä´QQ°1bÅcÛ\8eq5\9d\11é\95bð¬\9aüBlð\97xÜT¥\f%^Z\1d\91\9dQ\86\95­ú·oɲ6uÑÚ¤p2Q\99@I?\9f¾_ù\95\87>LRþ\19.ÐÕI_]ä\86=\18®×æ\99%j³Hâ)¢v\12\ 2Udû\99ï\85«9`rpÕt¾pw\9ak\8dåç[\18\9dÄ}Ì)\ 5û\ 1m¯º\92´Qï=è²5zß{\158U²\8bÊ;Õ®¬Ä\99ï*  Ä-iäÒÌ\19d\95\89ÿbß\91\9e¥% Ü\93(ÊÊ\17¤ç\8d_¤¨±eû\99]\90º(`´âØ]\97¸\ 6\82\91V;_õyë£Là­&o¤vw\8d)\ 1\9e\99Æ@ç3ëiÆ     4\83\1f7#\9eO­ïä}nG\9c\1dE\rDpDóþÍÇ\80ÐWîùØm\81½Úo\13¡I\89ý\96[¤öѶSªRñên³d®Q2\84\16=óìó§-\9em\96\89\9fîÕge¸#Ý¥òk¶v\UE ì¤\99\98\8fÏÆë\ f\88\90HB¿M\ 3Ür    \94°\92ÖWn):JÅG!\82\9c\8eñ§\1d\8ar,*\1d¤èi°þÞwi3k\9f_\96\97Ù\1d\1ee2Vø\8dë§ødì)÷è<çõ\e\e_ß¿Q¯K\ ejNy"2ùµÿc\9c­½\8d\11Bhz\97µÅ\1fq@µµ#ù[ÞÁ\84\90\9f\ 5\8cVEu\95Ë\12\ 5X1¡\89_\93f\ 6'\89jw3\84Ú°à\9cÎ%`6Ý\e¹\8a¼º*³«Ñy\89Cà´\99JÇõ      [\84Û÷\ 3\15ù-"¾ãFîUÝuÝ\1cÿ\bKݲB\ 6\83*\82\93\12m¯Ç\1cÓOõþ\876|Í\ 4øþµoæl¤Îc°\r±Ø»r\1ff¾Û\81\8f\90nN6\8bßkðÌò\f\ 2ðÌì ª\99bï,S\7f\94Ë\8a&M\ 4ÿ\9c&\ 3~â~²t\85í7Î\84/ ÚaÅ`ôNÖýEý~Ù¡\17Á\1c}\0\a\ 1ñAîQ¦I²\13w'á\94râK\9agÊF§Ë4qá\93\119\9dÐù)>Q\94³uådç\ve·K\1fðI¬¥âÞ¥y.^\85µ2\95   ïkÍl½\ 6%~Fáû9k\15\9f·VÞ\98QM§È\12~\ 6\ 5ú\8a\14onæuîht óoZ,®\9d\18W¿ë%\fkf\17\ fäê]\82¦fI-Q$V\8f3\13³O\rò
\8d\1aÆz²ð\9d\9e×\93®¶¯ï²Ñôçpwª®IôÖ˯\7fø\ 6¤ðtٵᆴ\e1\8fU\83-h1_s/,\97\94\17Òi(\19ð9[Ûsåi,\8b\b\82\97\912\a¹Ù\e kj\92¡\ f«j&°æúDüNY\9a\1alñaé8¸a$u÷\1c]I±\83ùÏ\ eù\f1\14#I¨S|UCPãS¡\89\8eaÜò[
+³Eô\1dÒ+¤µG\16\96ncÔð\12,¸_,õYA°5\rZg¢¡\?mÖj¿\98¾\16Ó\1e\15\b©\16\\18¶ÃÁ%90\18 ï\ 3l|\85\ 3bxÚ¸#\8dµ\94¥oZ,`Ö\14¢r\9b0\aãç±\1c\95ÁdúUdÖ|°\ 5\82\a'xc·@\86¯\8b\ 6ðN\8dÝx\90°+\17Å\e'SÁÞu\1eæ\10$D\0Ò\8c¹70!­£vT¹ÅyÃ\95\19S«£"\8déàèl\18Ú³8ÿ¶`é \14\82Ô+\9a\ 6\88Ftb \19¯²³\87ÂR\1e\13     "$\92<°(/¼y\8c±\1f/\97­\95ô\8b\18ý¬\13\10\ fZ\93ÆûdN?¯\ eô«IËé1È\8f¯Ù\8b\8fzÞØ\17ü\8dm5áêùÞm»AÁãHÅ\947\ 1¼o?¼©\12±ß-¼Ù\19\12;iµè)Ks\ 1\8fbÅ+§ò¤©\96G½Ï!3jã¸\1f¶2\8c\1aÄjxÏ\1dJpâXù\8a1r\90(¯Óábou½¡´ßº[\91(Bäõr\1f`Àè½µ\7f\9c,äQ£ð¶Õ¬êIÚµÚSë\85g#\95{\90\1cÃÒ\a'\82®_æ\8fù\v\aH³e^\0©\1cK^\8d³s\ 4~"xÞ6}âWºËUW \8bA\9f\19\ 1ºè\13"\1fW\84\13\ e÷ª\1c?\9d\86\15?\9e´\1cepÛàTm[ß\19·ÊPbÓIj® ÌB\9c\8b\8eñség\88Ð\16ðI\90ôS"Â\7f¬Åì\0»­Þ\1a\0\9cáTÏêè\8a\8eI'\84iÇ>½pe±üd\98ëÝú»òi\15VèÊO/Ê\90C`\15=\93\1aײl8<®Uç±VY\97ê\v±\rk^\88î\96\9fòºQ¶\r²\eUW.þ\ e¦ä'Jx\9e\884¡¤i\8a¸ ²>u\17ø_^\ 4ÿßàÿD\ 3;g0\10\81\84C\81\b'\ 2\82ÿ\0à8ÿ`
 endstream
 endobj
 60 0 obj
@@ -5964,7 +5963,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[14 -250 1077 750]
-/FontName/DNNGPG+CMCSC10
+/FontName/HQTUZE+CMCSC10
 /ItalicAngle 0
 /StemV 72
 /FontFile 59 0 R
@@ -5980,19 +5979,24 @@ endobj
 /Length 5041
 >>
 stream
-xÚí\96WXSë\97ÆiÒ;\82H(A¤·@@zï½I/\12\92\0¡$\10z\17\f\1dé\88Ò«\80\80(½7E¤\84Þ\ 4©"\ 2JG\90"\fç\9c9ÿyæÌÜÌ3wóÌÞ7{½ëÝï÷Ûk\7f\17\1f'»¡\89 \12\få\0WG!½\ 5E\84\81*z*&*"  \88\10\88\94\93S\ 5\r\87x#PHU\887\\1a("%%\ 2Tòq\ 2\8aH\ 2E$¤Å\1eH\8bI\91\92r\ 2UP\1e\ 1h\84\93³7\90G\85÷\ f\97\ 4\1d\8eF@!H \1eÄÛ\19î~\13\ 2\85¸\ 1MPP\ 4Ü;@\b\bTrs\ 3\1aÿñ\8a\17Ð\18î\ 5GûÂaB¤¤""@\18\ 2ê\rt\80;!\90¤Â\7fPi!\1dQ@\89¿d\98\8fÇß-_8Úë\86\vÈsÃÉ\v¼¡\84¡\90n\ 1@\18Ü\91TX\1f\1aü\86å\7f\8cõßPý3\ÝÇÍM\1fâþGü_\93ú/\ 6\88;Â-àß-(w\ f\1fo8\1a¨\87\82ÁÑÈ\7fZÍá\7fÑéÁa\b\1f÷\7fvµ¼!n\b¨\12ÒÉ\r\ e\ 4ý%!¼Ô\11þp\98\eê\ft\84¸yÁÿÔáHØ?!n&÷'\82°ª¾¾\86¡\ 6ÿß¿õ¯¶!\ 4\81ô~\18àñ¯à?ü\7fÖ"ÿQß\8c\b\8dð\aZ\83\84\91\eãÍý÷\93í?\96SCBQ0\ 4Ò    hâ\rA hØ¿\84ÿ\8a¥¬\8cò\ f\12\11\ 3
-\8a\8aßì2\90\84\ 4PB\1c\14ò\9f}¦H\84§\ f\K\15(\ e\ 2Ý8DÿT¡>h4\1céýçN¸ùâ¿kGÄÍ|àp\7f8\944;\87\1e\81ûH\80\85ÿ§ýq÷ô=óÖ\91¯OJ\a¤¤äq¹\89êCÉÙJBx´Y?çâ\96d΢ÛËûT$\13Ý»Ç×Þ§k(jP\92Ü>±» \92x\13   à/£«( {0\16ò²½\81\17ØÒ\90weá'\86\17(k\aw|5)z\85j\1f\19WòÇ\8bà\93       \9faô÷á\92sí(Ði?Y\8f¦Ú­¶? h\93µòu¤^¤yýRÛ\95:\88\8c@%¿(&>á]ªhÛ\93S\84Ukø>\17ùôýø<XÎ\1cN{\1d§zBÀuU\v\16$QHK\88\8f\9d     »6\7f\98\fk\89\9c        ]\12~#\8a&\96àxHmô}ëÁÞ>\93v\1d\16ckfûûÐ6w\91;uáÎOáX\9dmMÕÇûnOØ\15\7fϼ«¡¼Ú·ÐuõoXkk)3>¸\15þ\9bYsH+.\82ï\82\11»ÔV¬\9eÑRÏ\88\8bïüû"èÔb\9aJz\1flßÌì\aå|'\9b\13NGÆ
-ØT\1cuîgûMÂ2ܽ\1cd\18\99!÷î\89Ëþ<ñuþÑÖ(:æÓ÷ø\9aëª\87.T\9f¢_'\92\8d\ 6ùä«\12¯\8aß?ö_²x6Ç0D:\91¬ì9ô#¢tÐpß2\12¯^ìÇ'5\91ú\97\ru5Cp\12\82·Fæ^\81%\92(¦0ZãÁÃê\ e\9bp\87.\19B\eÜA\r\16\18ý¶ÕÚü\f-:}\1eÛmáU\8b\1e+â2Uì<N\9b\9b\ 3}\84Ã\9a\ 6Þc¹<\96\9eÉbº'Äf"ô:Da½\ 41»Ò\ 5
-\1a\8e0\15P\8b\12øðL2ûEó³I\8f\10fëZîß2\1dG/¯Íù÷=aÔÁ\81ÌDÔ¥ý£\8dè\88³^IjªBÉ&\eS¹àÎ\83Ð{©ÅÀÉ9\17\aê\8d/\85_\93ßRT!ïx¤O/2È5rÌÖ©jD\e\9f\1cÍN×\9d§n´£?£Þ©L\9c©§\98|\19×µrweÉ)åÕh\8a\1dÒ=¹ë\82\97)}MFâ\ 5þ5Cß]\88viúÂ,\91XéGOõ\8agø«xÍ\97׿Ï\15\ 5J\99;\18\97>\v¨\18\87\8fùÓ\19-\83\8eÇï@Ì\9fùªf­\97\ 4R\9føa'\99+h©zí]\929'\87I¦cÌ*Ú.î8æ{ ~õï}  |`6PKH2<dQGr+cÐÌñ\89\ 2\7fW\8cv\15ó\8cèåF¶>eÑJ\91u\8e\9e\ 6\e¥¨\10\89îÞ¼(\9dååþâÑ}å\ 2QV\87§,òÕ\8b¸Ï]&+\9c¨»=\a¼>p5P?W\80\80Ò-\95\18V¶Ï:\93ow\18F\1e\9bÐk\8e8p\9c¶®\9dÞþÞ\7f\8c!¹p\ e\12Ï\14\135`\93Ò¯úQ\ 40\ f\15\vù.2î?%L3Wvf\82Ö\19ÑÔÃÑü\98\1cnJ Û\9b\9fÕ@NoT÷ðS\85`M5\94)+O{Qæì\08³õô\92üPë\8cr2\ 1ËhµÛú\96gO¡ÖâÞÀ\11â\16X\ 3³\1a´\ 5Et¼qÚ\97\83Q\96ìʾµü¤Öa_?\88ÓfI\rV.î\98ÚèÖ\93¼hUÏ3Öÿì\ 2\86Ë(\1f9\83\1d\1d\ 6Fö     wëä[À\91\ 6ê±é^¸\16éaW\8foí<;\ 1X\9cæDQ\ 5\81\91\92AëÜ\8d°+¹#\1c·ü±¨3SÞJW^èr\82ÉèPSðñNFáíì»\98¬Ôû.d¨¡(/G·\1cù\8eÝ]Óaf\8aÓ·qTI\16\10©G\rí\10\1e>&Ã0\8f\19\ 1e\v\ 5C-¼\ 2ÅÐz\7fj\=îÒ¤\92½o\9f{¿/\8drËÙ4\80ßì\88GÅI¼Ð\9a\8f\e\f|ç:Ç6\8f¾\aK£!\f;çë\80ve\85±\atáRÙêpanó\92G4¶'ê³.ÀýÝ÷Ê«ÒÙ=×YR\96ë­\94Í:ú\ 2\ 1\e»4h¬73CtÛ\95\80"RH\ fζoÊþ@ÂûçÝ\9fKì5\O\12o£?3E[\1f¹b"Õd\ 3£\95®Ë\9eÖïÅó9s\8eú\ 6c\8b\8a#Uué\14W[\196\99%°÷b©ùùÆ\9a ÔùBYe]oÕ\b\ 4ì¿Fá²]éè\9dç­îż»\18\9e_ÈÒÓ\10wÞKÆWÏ\9d\7f\92~lÉ~\97|Ë9çÃZé\ 6\ 1\93ÂüÉÂÞlo\8e\ 1Iñs0\r\93\86¨þû¥\85ñ­i\ 5Á7¬$¯Åö8\16ß\ 4\19\\92- 3¸4Ûéö=½\12û6ñ\96\931Î~ \ f\1e1\85bvæ!\ f­È-å\92ì8Í*}\ 4\98\92ð\13\11íäªÖ\ 5D\86¹±jý\12D\93oC\gjÚ)R\ 4@&'q\86oO\8c6¿øÉòtï\819*MWõ\18ø\92\ 1+\9cij]ÔÌé]`å5):vB\8fêj$\80\82ʬ`J³}ûkx½P¬Ö\80ø\96`[Ãï\9a9N½\82\86\87Ì\1fÂ^j«\91\92ÔÅ\9f¶¨ó÷´üB\97|¯®W\84_®üÚoÁ9[\ eF\1a"­l>\1dìc´\12\19;     rö\82\9b\93h\835Ô<=(jR(âh\13\e{iÁ+C¯\86Q\9eÛ¿\88ø]·ýXÚ>\11R2\13¦µ°A)Ø\ 30\81ºkç:\87\88ÇP\ 2\1aD\e/\80%ÆÆgtû}³Ý\92/L¯ÞÏU7²Oçö\1c\b©\9a/\95ð¬\vËý¾Kç¥È\v\80L'«4åÑ´±|\90-ö2ô¨M°VË»`åN\9eä+\87ç#Ú[Q¦óÖ´\1aߦ2±Rï\f\ fBY²'÷ØËô4\88\ 3b/\ 2¾ï\9d\97r\93\84jsÖ\v\ 1¾\12±fõ\92§ÇõÉ\8fÍF°\ 5,â3\9c\84Q ÏÆmåà?
--\91vj\8fSKK;ÌJ\81 C\8a}Íì~Äñè\85\8dN\83\17·8¡1¤è\9dühL¯4\1cÎ\f\7f\1aÌ\9f\ 3+±Ò\16.{Sí@\98V»Ôêé\9a\90UsWy\7f\87½\8cÆ\8fÛ^\8e\9dÒ£ê\8b;\9bäw6Hs\98\18\18\82\ 5çà1ÒgûYG\1e`!ê¹Àï;?/º\8cI\e#\9cò2\ eç\16"muLú\12ÙÅ\9fËà]\99\86ß#9\96\95\9b½j®/å¶¢"ð\9anNÚ:R°çR\9aå.\rÍ\19\1e2\9d¯Õ3úpaP³\ fh\87à3ðtþ°\1c¤Ù5,\19È\9d2°w/´ÊÝ~Ýì\e\1dàѽa}\9c\18`¥4^Nj§Ô¬8î*\13\ 1cùöÀ/Òù«ÎÓ_\14ýèd¹½þ\15\16<\19\9d+J\86ß\16Ë\98ï        \ f<5\8b\1e>[Ô\9eJO\9d¦8Ð\8bBûUäÝ­µ\14KzåÃ\1aç\92\1c\9fP\1dÞ³p5Ѥgý\9d\865ô5®aÉǯ\94\ 6®\9dÙýg]kÙ\DI¶°\ 2ï{r\8b\18-SªÑ½#ÛÌY\82ºNÖ\86Ðî    \93\ ejz¡\b\19úìÞ\90·ä\9d »ý\8a$ÆX\16Ê"k©\99Ä:à¥\8bt\87 ´8Ö\967\ 1¶ê?æºZPNàZÕµ>\16ÛÄÆÁþQrÃ7¹\7fcƤxÏQ\ fZ6¬\13ðzê1p·\82¬À¢¡¬\12²6þrÁFd[\13ÕBw\1fH*Û9®Ë¿K\80\92\15IÂk¼u9\85Á>ݪ\90ׯ\88\91\b I¢1/Æy»£ÁÄ9ÇÓ¹\ 6îc\91ßLÇ2gÉ\9co\89ä        ´$¬¬½\9fat¡Õ±É\90ÊÞ^b!\81¶m:Ì\ f\f^I/\99Ų«° ü\9f\8a(ÊóS\82åN¬1ì5ó#Ì\ 2t&,ZaAÓ\9e»{àê]M\96a\ eÈ=+ÕßÏËXµ\8c\9aÊóÈ©N\9aÓ\7fëö|P\ e\ 4~¥Tù5\1f\19\7fZ¿F\83Ú\9c\95Ï\88z ºýIU Ý\9e*m¹v2U\93è.\1d?¦ÁÜG!ºÏ\ 6ÏzN>\ 2¾{9v\16¦ûAx\85º\16'±PW\b¤xKY\9fÏz'\10üÆÃ_k9\89\87.¼®êõ£j±ø_ÛÖx\85+\87\80<\ f%¶Ý\88\89ÔÜÒÕP1\0 \12\9a¡`~ÊYfÕ'ë\9aT5Ôba°#TyH\80M?¡^¥\8d[t{\ 3\9fè\9e\95n$©G\13\83ʨe¿1J\9b  Þ^ñ\1c¹\85}\9c\95C\99»¹Ø~!e¹"7åÉA´4¬à­}`¼-\86£cZ×7\84       p4\98\88\14(¾×DG\8fhØí^æ8uøe"´Ó\0\9b¬Ha\12½í\1aæG'¨\8eX\1cÝ\91UÚÔ\9c!Ø4xÇ\ eE\8d,tÛè\9b\ 5\9e°4P¹ÉØ\89\8f\1e\9aÛݹ\98\ 4Ó)G\ 5Ô2ü0^±\93*\r\98£Z:ÿù\ 1\86\916§rp©ðÛ\97Ý>piõ£±\97D{ËÆ\95G\95H¯D"\97V\13AçLâM´r²I¾\ 3\94A\8f½}M\ 6NËÜ\98?Q¤±£uºD*Ó12i\ 5´×L\8fk\8c\94\86d;Ó\86";\80I<¢S\ 3®Ýµ ¡)ÄS\ 2À\ 6\91ùo_­¾xûMÕ%%]À\17ô\82c½ðz=\96¯¼UÕ´ù°\96pDeB\82r\eêÀ(\95  Xç]\99¾\82Á\røã\90Ã!N\85ue\93\17_R¯\82\17ñÅRløã
\8f\12íô\1cíí\14Æ{ï/\7f>\97É1\8bñß\ 3°°w\11i6M=YºÛt'Ð\18B9\92v\ f\909\16\9b\\8aÿ +\93P\80\80ÓÁÿ\83Tj.ª\9a\97³DXÒ$0¤\8cI     Ç(d'#\0½v:Åy\1ewtß.ãAÈ´\ 1\86"!{öóÓt\7fÎê\14\9a\ e s;®'D²\92\9a\ f»^\15?`ØÜ¾\18Å\15ÐXƪxý\95\11Ý Æc\1e"\9b\93µÞÉ\9eµô¬5\e
-%\9e\93\90Å)$\16>\8b\9b\93Ë[n2z¹""l!A*\aüT\9e\ra.\ 4\0z¨X\8ctîWó}Îû°U}ô\88lyÕí\13¶ý\88ÿ}¤¸³Ó\8c\8a\92\14vR\15äí§\1fì\ 2É\96x\172ÒÝTô\18á­a\87 @µ\1aR\1cl\ 4¥u&çð\8dÉÈ¿\8aʾÊ`\89õØ7{\7fv\12c\12\ fvTY\11J=\82Ú¤\1a¸\89\9b\88\11o\14~»ØT¢\18ñ\ 2ª'G¼nX\87\fLh¨\8b¤­TÙ\10p±o\97ÍH\92ý\84\11)\87\11\bæåáL&¨7Õ\85Ï[ÒûΦ\80¨\1a\1f\10h\1d\1c\9a\89Ù8\9c\9fåN«ù\86Ur8Öøû\f\17\9e\16Ê®\16pË+á\98\1a\10÷x\9e\8c:\178   ô\ e\17¶¶¶©\ 1͹Tü×ÙOÆÆ\ 3\13Ø\ 3!\ 3v¼Ñï\eèïX\84ºÉ\1fjz\vL/.¤üÄ\1c¾¡Tfª.?Ý\9e\8f OÎd¨;«SÈ
-\1f½\92\9dÑ2VZú2\95\86i¯:,\ f{Yy\88`Õв'\8dÍX\93R´½\9f±\8a'i¼\8a#krÎ!4¥,?Ö2ólóg_\e#¬#Þ-\®\ 1,ʦº\18S\ 4ã\92bª~\1f§Þ\13Þ \93íÎÿ\85¥Fv³x\1c4\85æì%*\88\7f¹­ÞèQ\8c\9b=°º\14²\11Æ Gn_R>ÆAÁ\83\9f§|\96
-V\ f\8e\9cµÌ&Rßuit\1fuëw¯oðíàÃÙÅoÎ\19£\13\1d\83\ 6lt?\94V+x\83\96컽\97ÑüýñV<\8e\ f\17í\998D\98v-§d$^¦4·{ý\95Å\v\9bc\92þ"\15\98¨óK\9cÈ4§\19\10Î~æå¶Käyc\19I`˹}îDõð·¥µm1\17íã¤TÀ\96AȨϭӸ\87ó\12ëü\99®eNÙ¸$\\8fÇî\1adØj\97?é÷i\92Þ\18æy7n\82_«w´êó®Ô±ß\ 4·t\85´Î\88NÙ{èR¾á)8bsá³¥\1f"\12ujú\11a\95ùSÂ\0BÕÙãLð«¨É\15k\v\9d\fJ×J¿6°$t~Þ\81u\1fGç/¿\9eÚ\1a·&;Û£÷ùF¶¯yyÏ(Ü\98\³|¦qÿùSô²nÉK        ¼¯\9c!ÂU2É\13\9fÕ}ì\7fèóÝç,¼\90©uϵå6\14;$\87u[ñ\að\86³­\væôh<\1c'¤ö \8c÷ð´à¨´(þõ>ñu°Ö\87Î,S'`\99µßKz'\93\9d\90\80µ1\16D
-7wã\89`u¿£hÄb{[\89\91\923\1eHr\93þþ³ëÄ\1e|ÎwL\ 1\ 4\14×C\1f§äw1)Ö³\13Ó½;cD/Î\95\83\ 1ôÉCÒ\13\føb\81'\8fq9°\95ßÔ\1dÄî(\9cîö\16\83\95l¹¨\9b¶NñB/\8cÄ\89«ÀÊS#C\0¼3\95@\aþ§\aù\98»H.·ã±çI\ 2Þg¤=1¿½È\f\9e\12
-1µ\fÜ=qè\b\94H\9eTK_}¦)¬\9aÚ'dü¶=U\97\ 6wM¹.úc=¤\\8e\10|Böª}i©gm+¯nòJk6Ƕ\95\9dGð§[\18SÙföG%Î\17Ó\11\1ed*\15Ó\19\1e\99·Õ\ 4ûßÞK\8cê\12ü±\87´í`\r\14Ã\9aä
\1e
-\rX;{\98\1a}\14Ð\88U\12ÿÝió\e|íéÀ\9e¼ðÀK_A.[Ò÷­Äk\8d\ f\1cLªA²\99ß\7fv($J¬V¶û\9eo:³\86AÛVd¸ÌP¨FþJÞ;ʽ\\94?ÂC¤?\ efÇú{ì\97\1dµOøC1\9fßpF\9c/RÄ\v9L \17Ï\11°¡èÝÎ\19Ý\1cq©/`\ 3\0\rÍ£õ]¼¡¼\8e\84\1a\9cXG\91/î)Wå\awÀS\f\91É÷y\9b\87\959ýp;°Áº\ 1Cw\8e\17\8a"Z\14ÛK\aÁ8\91\85äc¯\96*ËÛhhÊ\8c\9bêº\92ªea&FÍ\8a\83\97\18uxuM/[]Ó\84\ 4\ 39\ 6\86¶P^åÚ\15QQt)¨¬D\rbt à@\8dã4]{Ïè´{8\99ÿ=\9f®[!çÍA¶\ 1M¬:o\9a­¹P\81¥U`¦\8c\15(±`ü!\17\94µ\13þ&»\8b\95íà\98\9b\9cN«@\ 4̯\83½+\17HâgEÿË\18ÍU4Ó?¹ð|¨¨\18\9b\92$¤ý%\91¦\11\1fÀêÂA\9dÍ:x"ü3¥\b³\82íÔ³\8e7Ú%'¹z¤m\92Ûwp,¼ú^?ɼ栠     'ÉÊs    \93\14\15\97Á\1côà½GYtÏøÔ\8f"ß't\1f2kÛÞµ\89¡$\aý//Òÿ\ fø?\11\0u\83CÐÞ(w\bÚ\95\94ôß\0¼tþn
+xÚí\96WXSë\97ÆiÒ;\82H(A¤·@@zï½I/\12\92\0¡$\10z\17\f\1dé\88Ò«\80\80(½7E¤\84Þ\ 4©"\ 2JG\90"\fç\9c9ÿyæÌÜÌ3wóÌÞ7{½ëÝï÷Ûk\7f\17\1f'»¡\89 \12\få\0WG!½\ 5E\84\81*z*&*"  \88\10\88\94\93S\ 5\r\87x#PHU\887\\1a("%%\ 2Tòq\ 2\8aH\ 2E$¤Å\1eH\8bI\91\92r\ 2UP\1e\ 1h\84\93³7\90G\85÷\ f\97\ 4\1d\8eF@!H \1eÄÛ\19î~\13\ 2\85¸\ 1MPP\ 4Ü;@\b\bTrs\ 3\1aÿñ\8a\17Ð\18î\ 5GûÂaB¤¤""@\18\ 2ê\rt\80;!\90¤Â\7fPi!\1dQ@\89¿d\98\8fÇß-_8Úë\86\vÈsÃÉ\v¼¡\84¡\90n\ 1@\18Ü\91TX\1f\1aü\86å\7f\8cõßPý3\ÝÇÍM\1fâþGü_\93ú/\ 6\88;Â-àß-(w\ f\1fo8\1a¨\87\82ÁÑÈ\7fZÍá\7fÑéÁa\b\1f÷\7fvµ¼!n\b¨\12ÒÉ\r\ e\ 4ý%!¼Ô\11þp\98\eê\ft\84¸yÁÿÔáHØ?!n&÷'\82°¦ÑCS+5þ¿\7fë_mC\b\ 2éý0Àã_Á\7føÿ¬Eþ£¾\19\11\1aá\ f´\ 6        \81@"7Æ\9bûï'Û\7f\86\84¢`\b¤\13ÐÄ\e\82\84Aа\7f   ÿ\15KY\19å\1f$"\ 6\14\14\15¿Ùe                 \848(ä?ûL\91\bO\1f¸\96*P\1c\ 4ºq\88þ©B}Ðh8ÒûÏ\9dpóÅ\7f×\8e\88\9bùÀáþp(iv\ e=\ 2÷\91\0\vÿOûãîé{æ­#_\9f\94\ eHIÉãr\13Õ\87\92³\95\84ðh³~ÎÅ-É\9c\97÷©H&ºw\8f¯½O×PÔ $¹}bwA$ñ&\12À_FWQ@ö`,äe{\ 3/°¥!ïÊÂO\f/PÖ\ eîøjRô
+Õ>2®ä\8f\17Á'\13>ÃèïÃ%çÚQ Ó~²\1eMµ[m\7f@Ð&kåëH½Hóú¥¶+u\10\19\81J~QL|»TѶ'§\b«Öð}.òéûñy°\9c9\9cö:Nõ\84\80ëª\16,H¢\90\96\10\1f;\13vmþ0\19Ö\129\13º$üF\14M,Áñ\90ÚèûÖ\83½}&í:,ÆÖÌö÷¡mî"wêÂ\9d\9f±:Û\9aª\8f÷Ý\9e°+þ\9eyWCyµo¡ëêß°ÖÖRf|p+ü7³æ\90V\\ 4ß\ 5#v©­X=£¥\9e\11\17ßù÷EЩÅ4\95ô>ؾ\99Ù\ fÊùN6'\9c\8e\8c\15°©8êÜÏö\9b\84e¸{9È0l3CîÝ\13\97ýyâëü£­Qţïñ5×U\ f]¨>E¿N$\e\ròÉW%^\15¿\7fì¿dñl\8ea\88t"YÙsèGDé á¾e$^½Ø\8fOj"õ/\8dÂ\eêj\86à$\ 4o\8d̽\ 2K$QLa´Æ\83\87Õ\1d\ e]2\84\83\1a,Æä1úm«µù\19Ztú<¶Û«\16=VÄeªØy\9c67\aú\b\875\r¼Çry,=\93ÅtO\88ÍDèu\88Âz        bv¥\v\144v¸\1da* \16%ðá\99\8bæg\93\1e!Ìֵܿe:\8e^^\9bóï{¨\83\ 3\99\89¨KûG\eÑ\11\92ÔT\85\92M6¦rÁ\9d\a¡÷R\8b\81\93s.\ eÔ\e_
+¿&¿¥¨BÞñH\9f^d\90\98­SÕ\886>9\9a\9d®;OÝhG\7fF½S\998SO1ù2®kåîÊ\92SÊ«Ñ\14;¤{r×\ 5/Sú\9a\8cÄ\vük\86¾»\10íÒô\85Y"±Ò\8f\9eê\15ÏðWñ\9a/¯Í\9f+
+\942w0.}\16P1\ e\1fó§3Z\ 6\1d\8fß\81\98?óUÍZ/    ¤>ñÃN2WÐRõÚ»$sN\ e\93\98U´]ÜqÌ÷@ýêßû\12øÀl \96\90dxÈ¢\8eäVÆ \99ã\13\ 5þ®\18í*æ\19ÑË\8dl}Ê¢\95\1c=\r6JQ!\12ݽyQ:ËËýÅ£ûÊ\ 5¢¬\ eOYä«\17q\9f»LV8Qw{\ ex}àj ~®\0\ 1¥[*1¬l\9fu&ßî0\8c<6¡×\1cqà8m];½ý½ÿ\18Crá\1c$\9e)&jÀ&¥_õ£\b`\1e*\16ò]dÜ\7fJ\98f®ìÌ\ 4­3¢©\87£ù19Ü\94@·7?«\81\9cÞ¨îá§
\9aj(SV\9eö¢ÌÙ\ 1pfëé%ù¡Ö\19åd\ 2\96Ñj·õ-Ï\9eB­Å½\81#Ä-°\ 6f5h\v\8aèxã´/\a£,Ù\95}kùI­Ã¾~\10§Í\92\1a¬\Ü1µÑ­'yѪ\9eg¬ÿÙ\ 5\f\97Q>r\ 6;:\f\8cì\13îÖÉ·\80#\rÔcÓ½p-Òî\1eßÚyv\ 2°8Í\89¢
+\ 2#%\83Ö¹\eaWrG8nùcQg¦¼\95®¼Ðå\ 4\93Ñ¡¦àã\9d\8cÂÛÙw1Y©÷]ÈPCQ^\8en9ò\1d»»¦ÃÌ\14§oã¨\92, R\8f\1aÚ!fì=|L\86a\1e3\ 2Ê\16
+\86Zx\ 5\8a¡õþÔ¸zÜ¥I%{ß>÷~_\1aå\96³i\0¿Ù\11\8f\8a\93x¡5\1f7\18øÎu\8em\1e}\ f\96FC\18vÎ×\ 1íÊ
+c\ fèÂ¥²ÕáÂÜæ%\8fhlOÔg]\80û»ï\95W¥³{®³¤,×[)\9b\ 5\ 26viÐXof\86è¶+\ 1\90\1e\9c\94ý\81\84÷Ï»?\97Øk¸\9e$ÞF\7ff\8a¶>rÅDªÉ\ 6F+]\97=­ß\8bçsæ\1cõ\rÆ\16\15GªêÒ)®¶2l2K`ïÅRóó\8d5A©ó\85²ÊºÞª\11\bØ\7f\8dÂe»ÒÑ;Ï[Ý\8byw1<¿\90¥§!î¼\97\8c¯\9e;ÿ$ýØ\92ý.ù\96\87µÒ\r\ 2&\85ù\93\85½ÙÞ\1c\ 3\92âç`\1a&\rQý÷K\vã[Ó
+\82oXI^\8bíq,¾     2¸$[@fpi¶Óí{z%ömâ-'c\9cý@\1f<b
+ÅìÌC\1eZ\91[Ê%Ùq\9a\b0ÉV%á'\\#ÚÉU­\v\88\fscÕú%\88\86¸ÎÔ´S¤\b\80LNâ\fß\9e\18m~ñ\93åéÞ\ 3sT\9a®ê1ð%\ 3V8ÓÔº¨\99Ó»ÀÊkRtì\84\1eÕÕH\0\ 5\95\94fûö×ðz¡X­\ 1ñ-Á¶\86ß5s\9cz\ 5\r\ f\99?\84½ÔV#%©\8b?mQçïiù\85.ù^]¯\b¿\ùµß\82\1c\8c4DZÙ|:ØÇh%2v\12äì\ 57'Ñ\ 6k¨yzPÔ¤PÄÑ&6öÒ\82W\86^\r£<·\7f\11ñ»nû±´}"¤d&Lka\83\a`\ 2u×Îu\ em\11\8f¡\ 44\886^\0K\8c\8dÏèöûf»%_\98\9f«nd\9fÎí9\10R5_*áY\17\96û}\97ÎK\91\17\0\99NViÊ£icù [ìeèQ\9b\96wÁÊ\9d<ÉW\ eÏG´·¢Lç­i5¾Meb¥Þ\19\1e\84²dOî±\97éi\10\93\9e\aÄ^\ 4|ß;/å&  Õæ¬\17\ 2|%bÍê%O\8fë\93\1f\9b\8d`\vXÄg8        £\12\9e\8dÛÊÁ\7f\14Z"íÔ\1e§\96\96v\98\95\ 2A\86\14û\9aÙý\88ãÑ\v\e\9d\ 6/nqBcHÑ;ùÑ\98^i8\9c\19þªÄ5\98?\aVb¥-\ö¦Ú\810­v©ÕÓ5!«æ®òþèÂ\ f{\19\8d\1f·½\1c;¥GÕ\17w6Éïl\90æ010\ 4\vÎÁc¤Ïö³\8e<ÀBÔs\81ßw~^t\19\936F8åe\1cÎ-DÚê\98ô%²\8b?\97Á»2\r¿Gr,+7{Õ\_ÊmEEà5Ý\9c´u¤`Ï¥4Ë]\1a\9a3<d:_«gôá f\1fÐ\ eÁgàéüa9H³kX2\90;e`ï^h\95»ýºÙ7:À£{Ãú81ÀJi¼\9cÔN©YqÜU&\ 2Æòí\81_¤óW\9d§¿(úÑÉr{ý+,x2:W\94\f¿-\96\13\1exj\16=|¶¨=\95\9e:Mq \17\85ö«È»[k)\96ôÊ\875Î%9ð`?¡:¼gáj¢IÏú;\rkèk\Ã\92\8f_)\r\;³ûϺֲ¹\88\92la\ 5Þ÷ä\161Z¦T£{G¶\99³\ 4u\9d¬\r¡Ý\13&\1dÔôB\112ôÙ½!oÉ;Avû\15I\8c±,\94EÖR3\89uÀK\17é\ eAhq¬-o\ 2\7fÌuµ \9cÀµªk},¶\89\8d\83ý£ä\86orÿÆ\8c\9e£\1e´lX'àõÔcàn\ 5Y\81ECY%dmüå\82\8dȶ&ª\85î>\90T¶s\\97\7f\97\0%+\92\84×xër
+\83}ºU!¯\8d\11#\11@\93Dc^\8cóvG\83\89s\8e§s\rÜÇ"¿\99\8e\92\12É\13hIXY{?ÃèB«c\93!\95½½ÄB\ 2mÛt\98\1f\18¼\92^2\8beWaAø?\15Q\94ç§\ 4Ë\9dXcØkæG\98\ 5èLX´Â\82¦=w÷ÀÕ»\9a\1c\90{Vª¿\9f\97±j\195\95ç\91S\9d4§ÿÖíù \1c\büJ©òk>2þ´~\8d\ 6µ9+\9f\11õ@uû\93ª@º=UÚrídª&Ñ]:~L\83¹\8fBt\9f\r\9eõ\9c|\ 4|÷rì,L÷\83ð
+u-Nb¡®\10\96²>\9fõN ø\8d\87¿Ör\12\ f]x]ÕëGÕbñ¿¶­ñ
+W\ e\ 1y\1eJl»\11\13©¹¥«¡b\0@$4CÁü\94³ÌªOÖ5©j¨ÅÂ`G¨ò\90\0\9b~B½J\e·èö\ 6ºF?Ñ=+ÝHR\8f&\ 6\95QË~c\946\13¼½â9r\vû8_\9c+\872ws±ýBÊrEnÊ\93\83hiXÁ[ûÀx[\fGÇ´®o\b\13àh0\11)P|¯\89\8e\1eѰ۽ÌqêðËDh§\ 16Y\91Â$zÛ5Ì\8fNP\1d±8º#«´©9C°ið\8e\1d\8a\1aYè¶Ñ7\v<ai r\93±\13ÛÈ\1f=4·»s1  ¦S\8e
+¨eøa¼b'U\1a0Gµtþó\ 3\f#mNåàRá·/»}àÒêGc/\89ö\96\8d+\8f*\91^\89D.­&\82Î\99Ä\9bhåd\93|\a(\83\1e\9a\f\9c\96¹1\7f¢HcGët\89T¦cdÒ
+h¯\99\1e×\18)\rÉv¦\rEv\0\93xD§\ 6\»kACS\88§\ 4\80\r"óß¾Z}ñö\9bªKJº\80\ 5Çzáõz,_y«ªióa-á\88Ê\84\ 4å6Ô\81Q*\13°Î»2}\ 5\83\eðÇ!\87C\9c
+ëÊ&/¾¤^\ 5Íp/â\8b¥ØðÇ\15\\1f%Úé9ÚÛ)\8c÷Þ_þ|.\93c\16ã¿\a`aï"Òl\9az²t·éN 1\84r$í\1e s,6¹\14ÿAW&¡\0\ 1§\83ÿ\a©Ô\T5/g\89°¤I`H\19\93\12\8eQÈNF\0zít\8aó<îè¾]Æ\83\90\85i\ 3\fEBöìç§éþ\9cÕ)4©è\1d@çv\O\88d%5\1fv½*~À°¹}1\8a+ ±\8cUñú+#º\85A\8cÇ<D6'k½\93=kéYk6\14J<'!\8bSH,|\167'\97·ÜdôrEDØB\82T\ eø©<\eÂ\\b\ 1ôP±\18éܯæû\9c÷a«úè\11ÙòªÛ'lû\11ÿûHqg§\19\15%)ì¤*ÈÛO?Ø\ 5\92-ñ.d¤»©è1Â[Ã\ eA\80j5¤8Ø\bJëLÎá\e\93\91\7f\15\95}\95Á\12ë±oöþì$Æ$\1e쨲"\94z\ 4µI5p\137\11#Þ(üv±©D1â\ 5TO\8exݰ\ e\19\98ÐP\17I[©²!àbß.\9b\91$û     #R\ e#\10ÌËÃ\99LPoª\v\9f·¤÷\9dM\ 1Q5> Ð:84\13³q8?Ë\9d\r«äp¬ñ÷\19.<-\94]-à\96WÂ15¸Ì!îñ<\19u.p\12è\1d.lmmS\ 3\9as©ø¯³\9f\8c\8d\a\aB\ 6ìx£ß7Ðß±\bu\93?Ôô\16\98^\Hù\899|C©ÌT]~º=\1fA\9e\9cÉPwV§\90\15>z%;£e¬´ôe*\rÓ^uX\1eö²ò\10Áª¡eO\1a\9b±&¥h{?c\15OÒx\15GÖä\9cChJY~¬eæÙæÏ¾6FXG¼[¸\\ 3X\94Mu1¦\bÆ%ÅTý>N½'¼A&Û\9dÿ\vK\8dìfñ8h
+ÍÙKT\10ÿr[½Ñ£\187{`u)ÜU]e#\8cA\8eܾ¤|\8c\83\82\aßh?Où,\15¬\1e\1c9k\99M¤¾ëÒè>êÖï^ßàÛÁ\87³\8bß\9c3F':HN\a\rØè~(­Vð\ 6-Ùw{/£ùûã­x\1c\1f.Ú3q\880íZNÉH¼Lin÷ú+\8b\176Ç$ýE*B\981Qç\978\91iN3 \9cýÌËm\97ÈóÆ2\92À\96sûÜ\89êáoKkÛb.ÚÇI©\80-\83\90Q\9f[§q\ fç%Öù3]Ë\9c²qI¸\1e\8fÝ5ȰÕ.\7fÒïÓ$½1ÌónÜ\ 4¿VïhÕç]©c¿ né
+i\9d\11\9d²÷Ð¥|ÃSpÄæÂgK?D$êÔô#Â*ó§\84\ 1\84ª³Ç\99àWQ\93\16:\19\94®\95~m`Ièü¼\ 3ë>\8eÎ_~=µ5nMv¶Gïó\8dl_óò\9eQ¸1¹fùLãþó§èeÝ\92\97\12x_9C\84«d\92'>«ûØÿÐç»ÏYx!Së\9ekËm(vH\ eë¶â\ fà\rg[\17ÌéÑx8NHíA\19ïáiÁQiQüë}âë`­\ f\9dY¦NÀ2k¿\97ôN&;¿h!\ 1kc,\88\14nîÆ\13Áê~GÑ\88Åö¶\12¥f#%g<\90ä&ýýg×\89\9cï\98\ 2\b\87>NÉïbR¬g'¦{wÆ\88^\9c+\a\ 3è\93\87¤'\18ðÅ\ 2O\1eãr`+¿©;\88ÝQ8Ýí-\ 6qô+ÙrQ7m\9dâ\85^\18\89\13W\81\95§F\86\0xg*\81\ eüO\ fò1w\91\nÇcÏ\93\ 4¼ÏH{b~{\91\19<%\14bj\19¸{âÐ\11(\91\96¾úLSX5µOÈøm{ª.\rî\9ar]ôÇzH¹\1c\84ìUûÒRÏÚV^Ýä\95Öl\8em+;\8fàO·0¦²Íì\8fJ\9c/¦#<ÈT*¦3<2o«      ö¿½\97\18Õ%øc\ fiÛÁ\1a(\86\15\9e=\14¸ä°vö05ú( \11«$þ»Óæ7øÚÓ\81=yá\81\97¾\82\¶¤ï[\89×\1a\1f8\98T\83d3¿ÿìPH\94X­l÷=ßtf\r\83¶­Èp\99¡P\8dü\95¼w\94{¹(\7f\84\87H\7f\1cÌ\8eõ÷Ø/;\84k\9fð\87b>¿á\8c8_¤\88\17r\98@.\9e#`CÑ»\9d3º9âR_À\ 6\0\1a\9aGë»xCy\1d     58±\8e"_ÜS®Ê\ fî\80§\18"\93ïó6\ f+súáv`\83u\ 3\86î\1c/\14E´(¶\97\ e\82q"\vÉÇ^-U\96·ÑÐ\94\197Õu%UËÂL\8c\9a\15\9dn\aûî/1êðê\9a^¶º¦              \ 6r\f\fm¡¼Êµ+¢¢èRPY\89\1aÄè\12À\81\1aÇiºö\9eÑi÷p2ÿ{>]·BÎ\9b\83l\ 3\9aXuÞ4[s¡\ 2K«ÀL\19+PbÁøC.(k'üMv\17+ÛÁ1K¦79\9dV\81\b\98_\a{W.\90ÄÏ\8aþ\971\9a«h¦\7fráùPQ16%IHûK"M#>\80Õ\85\83:\9buðDøgJ\11f\ 5Û©g\1do´KNrõHÛ$·ïàXxõ½~\92\13N\92\95ç\12&)*.\839èÁ{\8f²è\9eñ©\1fE¾Oè>dÖ¶½k\13CI\ eú_^¤ÿ\1fð\7f"\0ê\ 6\87 ½Qî\10´+)é¿\ 1\8b\ 5þ\91
 endstream
 endobj
 83 0 obj
@@ -6002,7 +6006,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-20 -233 617 696]
-/FontName/LMJXGX+CMSLTT10
+/FontName/ALOWJJ+CMSLTT10
 /ItalicAngle -9.46
 /StemV 69
 /FontFile 82 0 R
@@ -6019,7 +6023,7 @@ endobj
 >>
 stream
 xÚí\93UT\9cÁÖ¦\81 \r\84\ 4w\1awww\rî\ 4\87n\9cÆÝÝÝÝÝ       î\ 4w     î\10\a\82NÎ9¿¬937³ænÖÔwS{ï·ÞzjW}\94¤Êj\8c¢ ;\13°\94\1dÄ\99\91\95\89\95\ f(® &¯®ÎÊ\ 2deb\ 1PR\8a;\82\8d\9d-í \12ÆÎ`> +//+PÔÅ\1cÈö·ÎÅÇÁÊÇÁ\ e\0P\ 2Åíì=\1c-Í-\9c\814â´ÿPq\ 3EmÁ\8e\96¦Æ\10 \82±³\ 5Øö¯\89©±\rPÍÎÔ\12ììÁ\ 4\ 4\8aÚØ\0Uÿ±Ä      ¨
-v\ 2\82AL\0\0++\10diê\f4\ 1\9b[B\0ÌÿÀ\92\85\98Ù\ 1¹ÿ\95\ 6¹ØÿgÉ\15ìèô\97\v\97\93\16ø\97\12d\a±ñ\0\82Àf\0fE»¿»\81ÿ²ü\1fcýo¨þÝ\ÊÅÆFÑØö\1föÿѪÿEalkiãñ\1f\1a;[{\17g°#PÁ\ e\ 4v\84ü»T\vü/<\ 50ÈÒÅöß«²ÎÆ6\96¦¢\10s\e0\90\91\97\89\83ë_iK')Kw0HÙÒÙÔ\ 2èìè\ 2þg\1a\f\ 1ý;Çßîý\93\82Y^AN[Z\9bþ¿îö_uecK\88³º\87=\18Èòß\vþ\19³þwü·O\8e\96î@]\16&\16\16ֿ¿ß\7fÎôÿm?I\88©\1dÈ\12b\ eTs6\86\80\8c\1dAÿ\95ø_¹ÄÄìܽ\18ÿ>#F6vv \17+7\90\8b\97Ëç\7fÖi@,\1d\À²\12@N\16\16\16\1e\96\7fA\9aº8:\82!Îÿ|\ e\7f\8fü\9f±\99åß\1e\81Áî`S@V6\96%´!\ 3\11ý½Ñ]ß"\99VÇÌ7õ$ô>\9c\18\8ep§Rª`ZûùrÉ\8c1F\82\8fáÂ\1a+J\Çå\1fÇ\ 2\17G¤h\88ÅðæúKb¾¼¥}³m\99Ý`\1c
+v\ 2\82AL\0\0++\10diê\f4\ 1\9b[B\0ÌÿÀ\92\85\98Ù\ 1¹ÿ\95\ 6¹ØÿgÉ\15ìèô\97\v\97\93\16ø\97\12d\a±ñ\0\82Àf\0fE»¿»\81ÿ²ü\1fcýo¨þÝ\ÊÅÆFÑØö\1föÿѪÿEalkiãñ\1f\1a;[{\17g°#PÁ\ e\ 4v\84ü»T\vü/<\ 50ÈÒÅöß«²ÎÆ6\96¦¢\10s\e0\90\91\97\89\83ë_iK')Kw0HÙÒÙÔ\ 2èìè\ 2þg\1a\f\ 1ý;Çßîý\93\82YT^IKN\8eþ¿îö_uecK\88³º\87=\18Èòß\vþ\19³þwü·O\8e\96î@]\16&\16\16ֿ¿ß\7fÎôÿm?I\88©\1dÈ\12b\ eTs6\86\80\8c\1dAÿ\95ø_¹ÄÄìܽ\18ÿ>#F6vv \17+7\90\8b\97Ëç\7fÖi@,\1d\À²\12@N\16\16\16\1e\96\7fA\9aº8:\82!Îÿ|\ e\7f\8fü\9f±\99åß\1e\81Áî`S@V6\96%´!\ 3\11ý½Ñ]ß"\99VÇÌ7õ$ô>\9c\18\8ep§Rª`ZûùrÉ\8c1F\82\8fáÂ\1a+J\Çå\1fÇ\ 2\17G¤h\88ÅðæúKb¾¼¥}³m\99Ý`\1c
 ZHÕ¡~\17ºè=L+#qJm\11EÜû¡k\80\10\94\f%1§\1f\\98F0Ýë.QCⱤW ËôJÝÒ\9f®\ 4e#,\rH+A¦l\1e\ 4\84ÿÉÈÜÚiߺñ    @6t§IÕÑ&£\ 1\8fÙ<KF\95RcðÏÍR,\98{þæ\ e°°J\8b\e\82¦lãã_\82\rúdJ\8cU¬q\ 4(\8eå\e¯Zò\r\1f\95CW¢¸±à(LBb\a\86³o\9fgd\9cý1\88G\11¯¿¹\1c\97"°FíFî\98\81Çî#ñX_        cÔ±\83í\80\8fx\8dÁ\8fúB\10\bQ\87\f\13\9cE:¶]o¯b>µ¢<¡Ô\9bab¬¡uÃ{\96'\ 4\8amw\96a\1cQÝp\12ê\98J\16\1fâO¼LÔ\9e¾T`\9a_\95m\89$¶þÞ   ´H8ð\95ØÎ Fy      \93ÏgÑaQ?}\10kÐÂ\89î¹·&ÿØv¹ûe\13RõýÃw6j`ß\83ô\19\ f;ø¦à»&c¡ÿÊüùÕI\90ÛV\ 5\9eyò²­,\19þF\16\8a3~æ¦/e¤\80B¥£\8a\ e
 %m?\18é\89ÜK\8d4`MÆ\8aDé­\ 1^o\15ÉÙþ\96\80÷U¿þ-i \13Y#\8a\8b±\834\18ÄíâÓ7\9a»\1fé{\8d\8eUT¬ï@ÎB4ô¡N»²[Z©\8f\99÷»ëêEk9ê`XÉQæÜ\8e\91Kb\rȸ\8f\9bO\8d æ\8a\19Oj)\88\91ÉÝϾo:¦H\8cL`Ë«#2üe\ef\88\97Ì\80\98Á\924=?þ\96ë:ìcA\8d-\9e§°a\8e`\95¼\0\ 4       0\16^5\92³^ZÖ^\84,${þ\ 23V
 ±­D[[PÙZzç\aN\90ÑÚÑ\ePÜW\ f;Wpà1ïý¦Ãë\8a\12*ps\17\11Q\16/-Á\9dóÑA±·Cí×\ 6\8b\19æ\88T\91Ømk,"s\9eÃ\vÅ)Âçåé\eÑë\11Â6\13g×+J\8c9Aýãô\13\95¦/«\93\98]ÎÅ\81¡\15¾Ã¿;p\1ax^ÄÇí¼>g\ 6\84û6\81ü\8dø¤§¿²ÔJÞsvÂÑÙ|\9fß\1660\b¼æ.r36ì/\94¼
@@ -6048,7 +6052,7 @@ G\1aH
 Å+ߺâ7M\83'\8d\19Æ=gè\1a\89[ë&=\90ß/ïÜ\1e\91\9eáÄðDª\8bBB8_hB±\1au[\1c\98Ôï[S±\9c¦ë_]q\fû ö~"Ú8e        \ 2\10¨[Å\f_\ 4°ÀÍ÷cýº4Q7·m Ú·Ç<\19xõGÔNQ¡rË$ÚÓ´¢u\98\rxÆl\94ã\86\ e
 \1ct¡ÊobÞ\f8l\ 3\1am\9d¼°¡$\8b\12÷6qû"³qíz.\[.Ò-Á\11ðn\97QÁïb¦\19Ý\92\15\14s/sBU+<?Ð{\ 6_è#Ú\ 5êPî¶\88
 ®\bé;÷Ä\1dÄ«\ 6\9bª{Á´Ù\ 3^?ë\ 3\96\8f¢YI-\84æ£\9b7Ñ2\18ºkò¹03\ 6\1f\ 6\ 1ݼB·ß\7f\94nfÿaw\iJp½'4x§]5 çc¢ÿ0Kß\88\91á\8d8Ó;¬°\82\15WæÍçG{þ\93MÃd¿¶\a\91»\80     \15\91Ìï¤bòP\18AÊ>\0\9aøGQWa­\85\95fÞysã\ 1Ã\8a¾¡?\13MED\9eâ$\86áÍÓî2;\8b\11']fØoQ¸¯²¡Ø¬a½\96\89%\11í\19½ù}\f\91jÝ?\7fåG\9eÅw\eK8f'îc¯\1e¾g\16\13ê 'ÿéÚÀÏ׺\ 3d\7fÚ\1cMt\8c\86µN\9eóúbú4¾\10\14~"\9a\11\86·my\80\ 1\81\bÆV\9b\92qb\80\9c\b½5½ß ðç%q®¯ÔçM-f<\18£5C\8a[Z\8d\9aÆCOI\9c-±beÖ\9cJ?=ÇÙ\10\ 2ì\87È=}=\8f¯ùa\14\14ß¾ò%ä\89>xP\7f?Jܵ§U\93\17 ¾\9aÈðë¸9}K®Ý\9ayq\19e\ 6\83\80\ e\16÷ê\0s\95:Ëx´p\10kc\ 3ék\7fJ åî¢\14aá¼n7R\1e=\1a\16ó{íç­éDý­bFg*\8b\87
-¤f\ 2ªõ  ji\1f®NáÛAöï± \r%õØ\81ej\18²\80ÛÔÝ\9e2ZÖ\16'\10úÌò:0x.ã\82&E\8eì\8e\v]¥i\1f_\Âôºsÿµ÷ùÛ'5Èý=õ\8a¥\ 6òx×^±Äæ`¬­Oä·  §\11\888Id0\9f°3\82mì}Â\ f\91º\ e9\a\9fÇH\95z\ 5¨V!¬ä\f­\ 2\9f÷Æwh\ e\17\95\813\93³\18bèêu(9\8dHp1Ø\10ÞØNÄóbcý­Ô\8c¤Û{(î·h¤+ñÆó Ï®ñu¹\1dü\8d4V\85«w\9cªU\84úù¸mèFÕ9=tF$RãB \9e\8f$¿\82 \9e¸\81×,«Ç/i\rY\83\18Üö(æ¯Ï\12|èÄ\1f°F\9fü%¼?\8b´2|³õ\90>\17VùþÌò\7f9\0ÿßàÿ   \ 3S\e°±£³\9d­±£5\0ð?\0\17\94 í
+¤f\ 2ªõ  ji\1f®NáÛAöï± \r%õØ\81ej\18²\80ÛÔÝ\9e2ZÖ\16'\10úÌò:0x.ã\82&E\8eì\8e\v]¥i\1f_\Âôºsÿµ÷ùÛ'5Èý=õ\8a¥\ 6òx×^±Äæ`¬­Oä·  §\11\888Id0\9f°3\82mì}Â\ f\91º\ e9\a\9fÇH\95z\ 5¨V!¬ä\f­\ 2\9f÷Æwh\ e\17\95\813\93³\18bèêu(9\8dHp1Ø\10ÞØNÄóbcý­Ô\8c¤Û{(î·h¤+ñÆó Ï®ñu¹\1dü\8d4V\85«w\9cªU\84úù¸mèFÕ9=tF$RãB \9e\8f$¿\82 \9e¸\81×,«Ç/i\rY\83\18Üö(æ¯Ï\12|èÄ\1f°F\9fü%¼?\8b´2|³õ\90>\17VùþÌò\7f9\0ÿßàÿ   \ 3S\e°±£³\9d­±£5\0ð?\0lË Ú
 endstream
 endobj
 346 0 obj
@@ -6058,7 +6062,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-1 -234 524 695]
-/FontName/XTTDRJ+CMTT12
+/FontName/MSHGRM+CMTT12
 /ItalicAngle 0
 /StemV 65
 /FontFile 345 0 R
@@ -6074,15 +6078,20 @@ endobj
 /Length 3046
 >>
 stream
-xÚí\92y<\94û\1eÇQ¶\89\9c²\84È\83\8ah\98\11Ù³\e!"\9a1ó`\98Í\18\8c\848a²Ëv²D¶ì[©d\92dMq\90}\89\88\92d-\91ºªsÎ}ÝÎýç¾î\7f÷u\9fß?Ï÷óýü>¿÷ïû<G$Q6P]\1cÙ\154"\93hP¸\ 2\1c    è[ØÚÂ\95\0¸\ 2\f\88>\15ÄÐðd\92\ 1\86\ 6"\ 1¸\86\ 6\1cÐõu\a\94`\0\\15©¬\82TV\85@\8e\0údJ\0\15ïîA\ 3\8f}s©\ 1ºD\90\8aÇbH\80\ 5\86æ\ 1\12wB°\18\ 2`CÆâAZ\80\ 2\0è\12\bÀéo[|\80Ó \ f\ 3q
-\10\b\1c\ eàðX\1aà
-ºãI\10ÅoP&$72 öCÆùRþlù\81T\9f\1d.@v\87ó\18°C\89#\93\b\ 1\0\ et\83(Z\92wN\ 3wXþc¬\7fCõs¸\91/\81`\89!~\8bÿ>¨¿õ1D<!à\ f\a\99Hñ¥\81\82\8c\ 3©¤\9f­öà\ f8\v\10\87÷%þÜ5¡a\bx¬.É\9d\0\ 2°\1f\12ÞÇ\bO\aq(<\rë\ 1Ш¾àw\19$á~fØ\99Ûw\ 2E\a[[\83Ó¦ò\7f\1f]\14\ 6O¢Ù\ 6\8aýfÿ^ÃÿYïÌ\87\8a§\ 3N0\ 5\18\f¾cÜY\7f¾9ÿt\9a!      KÆáIî\80\r\rCÂa¨¸¿\84¿Séé\91é\81P8\0UB(\ 3*JÊ\80ª\86JпÚìHxo_ÐÄ\0P\81Á`ê\bÄw\15ëK¥\82$Ú÷¿`ç¾\7fÖnø\9dá\80 \1dÄB22\ 5ñ¬ç\8f\8b˯£×\1aû¥ìï?\e@A\1e\14¼ûMåC\8ePwûÒ\1e\ 2»Â gd¸\17jm\88wó-*&mCVâ$£:ØB3¡ñ\83Ëã\80\0Ѳ1!9·N¦ÓËudyì\1c´\87¿Ö\91Mñá"\18SwÞé\96|\8e\v;ßø
-.\87FiXn\91\14¹³Õß\16Ü0\8c+s\94\18º5\13õª\9e\ 5\89í7ô7»*\9fuþC\15\a©K\1fçÈ/\1cP¥Ä\1fD\fC\84\7f±[Õ\81Ú\85ôÝ6ö\9aKØ×³~Ç}qè|ù4¤fÁRLÑj\ eÕ\9d\8e\1c8Å__qÅ4²V7%$\85äËI\14\ 5Íp¼Ùð4ÏäÛõ!û¾w¢ÀF\85õn\88ù®\82h²Ö¤Ì\a*Y\89¦Õå\93"ÐÔºÚ4!únl3î]P\ 1\969\81hÊþX\98ì\97`2£äÒ\81©y!TÞ[n´\1c\19º5 ½àÚD\16¿}ÈÓÍ\93\9b\81\r\e{[,\1eÿ±k\1c\9e»|~ZÇ/\a×L~Û³6¦ÆY1ÁóºRè`g\9cé\b\0å¶½ÿÄiNL¶4zUq\108V¹\12\ 4Fy¬Ùæ?T'c\ 5¤,\84Ú\96\8a\­¼"àé\96\8a=ôõÔÕ\1aÞ*¥yÙGö\85QøÍ^&\83!äÐ+Kàµ\Â09yà\86+yÁ\r\8d'­'.\8e(?K\v^|\10\97æp+?uM<\9d&s}µU      Úbbø    åÚ²zá\90uwp¥áÊ-¬\194\88uAóXüª\93\9bÐ3\180\99ú¡µD~ÉÜ4  ó(û\84{nl\12ùs(°<\83¿T\93±®sªeyÓxÖoßM«|eÄå\r¶|Î\fÙ:£Ð)\91R\1e¡«\13N\ fõp:å¿H£\b÷8\95&Z-\120\11\99·,Þ\1cîm"é\98\ 5=Èxå\94Éã8Í}N°\97^^o²ÿ\85ÀåwP\9fýqÎ\99\12¢\9aé\8f®\1f\7f¥JHÅY9iiÏ;dV\8c:\90\87ï­½PZHÜ\9bASî¯\7f\15¼ë\8aB\95\99 õ{û*sF\®f\19z®¢ÑWg³\ 6·ùúÙo(\9f\10Ð\8a\19²i\ e\7fÌ®Öl\Qh\ 5ß\88\949\93\9a'£À²\11±\17]Y]¬t8\90òüüB\86ï¯\167Èoîô¤\ 5\11V¬ÏĵNÕ(I@\84â'ÅJ«FÃ\1dO$\8dº²        ¸?ÎF4(ç\19\16)7®SÞ7Ï\86ò\95gl«\9c<|p#u\96e\9f\98beî\\17s#\89®\e\1fR«+Ã\1ev Ç\87\1e¯6-Xk\eس\85¦¡+Å\1cÙ\9cü¥\14|¯-\8f\17î\ es1à«*xÙ¾\82¸à©-}Vô°l­0\9d\95îÕ"Óõ\96sòT¶¢\11;\87Ã|^\89ÆÍ/y«S\ôÆW\997\eW\re\98÷\9aâ:ä`¦ô\8e\I3Ó\9at}q]×\83üb¡\r£_\µë2\8b\13hÞChÌ,L\0\8d\11í̬Ok|ª\99\1e\9e\8bz¦u½¢,s¯®L\93xB»\8fi\1e/\ÎÙØñ⻣\v\90tè!U\8c\81\\95Z\81ä5^i\85%.\87;ØÕ×È]\96gd8÷\90uÄh\82Oj\86å;£X\96\96\8eìî\r5*²çöHË=^تj\9c¾µ»ÜÝ:MPI\9fS^þ\10GÆþFÕðíÜýË·\K óã.æ\ 1ó+÷Ö/\ 4N%\8còU:\aDèLZ·%\9f\13ðåÍåm\8aî±à°\95ª\90r\94\14\8eùELº°Ç^(n].$\8cÁ\9c\84Fi\89\17\bm?±ÎVÏ\a\90N\9c\18oËí\81ºo1b8'ùÈT#ÇÍð¨=\89\19\ e\1d¥ç\92&2úñò¶Ñ\ 5qKÆÑZª\ 3î\rn6'\9e
-\9fê×\10\8aÚ«¾\8aܵà\1f \81ý¨ÓËôpy\17\8cRæcÍ*,)xþÜî©\\8aC\b \1f§Â¼Øä©\804Õë>ÃÓ3\9d\82\8f\9b\83Ê_$íÒÌwz)×ÑÞ'¥A\99Vc,\98ª?zB7\8drÕñ©2oa\9aȨ[Y\aµ\9bÕ\ f\147\b    2º¦\90\85aHIúã\98ý\85mÌR\rËn51\80lu\99E\9bëy¶jú\81\9b%ao\14\11\83\1eê6ªñöÖÚcó\1dº4D\8d¦\9b8wY\84x\8fÞqpòòLúi\17¦ÝÙ I¿\13Ö\ 1U|\88Ø}ºq¹ýÒö\v\aîÜKÊ ö\ 6¦½Î¹\83ý*òth\8a\97F,\81\17Ú\9cû=B\9díÍÂ6´\84ºañ\eÇoì\94"\8esæ~ůNÂW8õº\b}ãïjéÂg\1f\a\88Íq\9f\rÍ\89ËIðúX\13\\93 Xw¥w\7f6_Ì`\19ÙÌÙ\81*h2\83¯ô/¬\Çv\9b,\9bëQ\1eGó×"\ 2G^x'¾>|qß3ÎN«\ 3è\94\98é³<}\8c\87Õ­+&£\8e\8cÊÞZÕ,¹síµ\8e©\ 5̼\94
-\9eó¯?8{\8fvTõ÷õBE96!Ø\ 3å\81\8d·=>?5(½Aí\91jòÏQAOZ\947\ f0ou9Zé±:\11C+\86\ac\87\8b\83\11\ 6è\eãØ
\0};mû#³UhÆ\91áù§\89Æ\8d9[ç«Ðñ(\16¿õÔvG
-+2i@øãîÒÜÄ\8cñ\r1Îâ \14-AÌÌZa?\98èd®¹h$\93Æï´àU6À¶\v?¾¦/òÜÃh¥\9bQ©ó~Úð£\89+7\92¥+ÓÜêî\ 3Q\7föK\835K\81ª\ 5¤Ù6\ f\8dYIH\19ü\8b\93³a¹\7fò£Òå\10\96Ó!rÎ^7lá§BÈ\10+/\ ex\9du19A%=Ä-ç+Ñrnø\ 5ö\90@JZäzr²-\83?CD·¤'¿Áþ¾¸T\8dyüEáÏ¿ë\8fêUn¿çδ\80\ 2\81þ'\98Ì\v\1f¯pl\9c\eáä\1aÆ\ f¢\¥\ 5\87´7Ç·îú\1a\85¸nz$5`çVæëãm\94\8fV¡ãdÃ\ 6µ\1a\197÷pÐ\8föÖÀq¶\85\82r×Íá¹q\ e\8aÛCl&\9e¼\aÌ\16áO\rʧJ\9ex\8cZpù´\17µxºd%C\vÛÌü±â£\rP\87k\83ªÃv_\12C?áüZì"/\8al\11U÷¥6Z¹\8c\1e\13ÂD«¬ÙKXï\8b¿\ fñ°\1f±?ö5|eÝ·{Q\92·\ e2ÓT\15\1d¹ØrX5·\9eôðµB+ü¡_DkQF\9dñ\1e W}iç7\12\94<âÚÌäû£Õ«¢\97ØÌ×Ü´E\8b\92\87\9a_
-4,\8cï\89\8c\94¾ãÅ\17\1cÃ\9dÜÄõd[|\ 2"l¨/ý^Ä,Ì=[v"¸zÑSdºs\13âûvÙô\97f\88¸z \97ð<\82«·¾\93X°!2      Û\9b\15\99ß<q=®[;>Åù!«Q­gvmi\16£­NQ\1f*ª´×_%ÖE=zJ\93Ñ\96¢øå\8a\rî\1a>¥ýù\85ýÑ_\1f#\82Î)ó¨Â\8fÌ£c1ö[È/¬\v\ f\8a:\b\13£7yN9Õ{÷}­)»\1fã]1|Éì×1\91ûëo>ÊÏ\7f2óA\ 5ùò\8e\1d³Øsì=N\8dÃÞÖ\8b\8d\83ÿ9r,Hf\96í`\1evÑþ36)¸vYÞ\81Û9\1c\99»í\9eÓS½\95Ô\96È\94\90#\86@)ECtJK&{R\19ΫÅî ÅË®Snµ\87\12¾zí\9d\8b´\v>Z´õ\ 5\7f¦ïQø§¡,WÈzÄÍ-t§J\7fI´x{q\92\941Uôñmý¹¯N#'OªCSÚXs\84ú´Q&\1fn(Ô©\\85\8d\10b\a\92¥*§÷\9a\8c,ÙJÌÜ\13qIéþ\9dw\8a8*\16\96¢\ 5\83¼Ñ\1d¯Öô\18k\7f*\eíy½\8c»ùív)\ 3VP\89Pÿ\8arò¸KH (»Ý\r\17á\8a+P^qÉéBmw+±íþ\9c\91(\v)ql\9aà"\94\ 4D\aÂþË\aòÿ\80ÿ\89\0,\ 1ÄPid"\86ê\ 5\81ü\ 3\7f!.¢
+xÚí\92y<\94û\1eÇ£l\93åÈ\12"OTDÃ\8cÝX"\91m2Bd\9d13\18\98a$Ä       Söl'Kd˾\95J&É.â û\12\11%ÉN\84«:çÜ×íÜ\7fîëþw_÷ùýó|?ßÏïó{ÿ¾Ïsâ\18Â\ 2¬\8b!9c\rHD
+\18*\a\85\ 1zpKK¨\ 2\0\95\83\80N\9cÐ#cQ\14\1c\89x\ eEÁÂ\0¨º:\14Ð¥º\ 2
+\10\0ª\ 2SR\86\80@'\0=\92§/\19çêF\ 1¤õN}s©\ 2º\ 4,\19\87F\11\ 18\8aâ\86\85 QxÀ\82\84Æa)¾r\0 \8bÇ\ 3\17¿mñ\ 2.b½°do,F\ e\ 4\82B\ 1\f\ eM\ 1\9c±®8"Hþ\e\94\11Ñ\85\ 4¨þ\901TÏ?[ÞX²×\1e\17 ½Çy
+Ø£Ä\90\88x_\0\83u\ 1É_ í\9d\86Ýcù\8f±þ\rÕÏá\ 6T<þ\ 2\8að-þû þÖG\11pxß?\1c$\82'\95\82%\ 3p\12\ 6K&þlµÆþ\80\83c18*áç®\11\ 5\85Ç¡u\89®x,\0ù!á¼\fp4,\ 6\81£ Ý\0
+\99\8aý.c\89\98\9f\19öæö\9d@\1enaxþ"\ö\8foú£\8b\88\14K_Ï¿b¿Ù¿×Ð\7fÖ{ó!ãh\80\1dD\ e\ 2\81î\19÷Ö\9fo\ e?\9d¦OD\9308¢+`AA\111(2æ/áïTgÏ\92h~`(\0VPT\ 2\94\15\94\0\15ueÿ\7fµY\11qW¨X£s\802\ 4\ 2QSTü®¢©d2\96Hùþ\17ìÝ÷ÏÚ\ 5·7\1c,\96\86E\83RR\ 5pLN§ÅdW\91+µ½\12ÖO_õ!@Ïr>ý¦¼\96!ØÙ²p\10Ï"×ï\1e\16â\81X\19àÚü\88\88\90\16?C/\ f\80kÄÔ®9Öûú\8a\14\8d\bʸ´1ìÞ®Â\8a#gÀ]|\95¶ÌòÏç±\11UNv\ fd3\94ý\1cYxF\970\19\14Ï\9aÅÆcÂ\8f¶z\9b\ 3j\ 61E¶²5­\ 3\ f¦n½«Þ\aC÷êû\98Ü\96MsZ+c%vèalù\84\14øü       Á\8a!;VË:`«À\9e\87\86\1e31¼]«\8f\a\9c\8a'A\15s\17DåÍf\10\9dÉ8\ 4Æ\86MìýMgT-Sy]L\`¶\8cx\9eÿ\14ë\87\rwÓT\9eýkéO¯Äòo\94\98\1f\0\99îÏ      'i\8d\91I
+\14­\ e¯\ 4þº¦åº1\91O#\9bQ\9füs\b}\91\8c1źôõÜxï\18£)\ 5ÇVTÅ\eÁâîb\83Ű ­>í9ç:\92ØÃ£î.î\1cttðÈÇ|±èõ\8eQÌhKæ¢Ó¤\8ew\ 6¦\81ô±keD\95­d\8có}©à\91¶(ã!\0Ìaùô¥Ý\8c¨taø²|?pª\80\1f{ËmÅ2û¹\1a   Í/\ 1\17l^Ès6ó\b\85&_\90&.Wp\95)ÌJ¿°Î½\85ÛìfÐé\826ÝÒx®\v\v(\ 6\e'T\7f)+ ¦ö\8cùص!¥WI\ 1óÏBËx\92l\1ed'®\88%S¤î.7)\80\e\8dô¿ \9c\e\97¯\1e\f(Õ_z\806\ 1û3Íi\9c\8a^¶s\11|\ 5\ 1Æ\13×\9a
+d\17L\8dãP/Ò5]3#ãH_\83\80Å)Üõ\8a\94U\9dó\8d\8b\9b\86ÓÞ¼÷Ͳ\95\14ol0g³¥HW\19\ 4M\b\17r
\1e³{~\16£Sü\8b$\ 2ÿ\84Ma¬      \1e\83
+M}\0ÿp¼»\8e¨câÿ,å\9d]*§í$\87½@7­¸ÚèÐ\eþ\e\9fÀ^\87¢\1cRÅE4\92_Ü=ýN\ 5\9f\881³ÓÒ\9eµI-\19¶!\r>Yy£0\17Ë\9dBQê­~\17°ÿ¦\\99ZÌ%ÿÕ'¼¥\19C\8e·ÓôÝ\97\91ÈÛÓiýÛ<½,÷\944ùµ"\ 6,\1aBêYT\e\fKrÍ \eaR\97\12³¤äöm\84r#KËó\15\8eûy¾v\9aK¡þ
+¿Gúð¨+É\1f¿d~)ªi¢BA\1c$\18=.ZX6\1c\197ìÌÌïZ\9f®X£\94¥\9f§T»êù¹a:\88§8e[ùÌñ#\e\89ÓûxEåK3g:\18\eq4ÝèÀJ])\96àÃ\19^´hÕI\81JK¿®-$\ 5Y*jËlç#!G½³8ÚÙ\9b{ Øñ\1cOYÎÛ\96%Å«îÚ\92\97E\8eKW
\98h\1e\8dR\1d\1fÙÆÏ§Ë\e°°ÚÌf\15¨ßßÉZ\9e`§Õ¾K½_»¬/ÅxR\17Õ*\ 31¦µf\1e31®HÖ\13Óu>Â'\1aT3¼ã¬]\95\9a\1fC¹2\80DMCøa#WP"m©ÕIµí\1aq\9eÚ\833·^iÝ-)JåÖ\95ª\13\8biñ2Îâ\82Ê8\18Ú^ûtr\ e\94\f\82:'S¦\9a\ e\97¤Ü\ 2»Í#ôò{Øþ\v\97¤Ø\ e\92tD)\ 2/+\ 6eÛní[X8q ;È Ï\9aÃ-)ótn\93\8aaòÖ\81bWó$\ 1\ 5=6YÙ£¬)\87jUB¶3\ f->p.\0Í\8e:\9aúÎ.=Y½ê7\113ÌSêà\eª3nÞ\1coÏOåÊäª\vï\82³ZJ\94\1e\13\8aøET2·ËZ0jU&0\98Î\98\8eDh\89å\bn¿4OWËÆ^]"jj\8e6gv\81]·è\11lã<$²\81ífÈ­\83±)ª\ 1\85öqc)½8YËð\9c¨\ 5Ãp-\95\1a\17\vÍv¡ó½ê\82·¸Õ\96aûç||ÕÑë:Ý\f7ÇO\ 1\b%\1e¦´Ü\82\9cׯ­Úe\12l\ 2\ 1½(eƵ:w9\98ñÙÎK\9c]\93   ¸¨\19°ì5â~\8dl»·2­-=\12ê\9e\93ªô9cµ\17/iÆ·\9cu¼ÊL\e\19FRjfæþ-&Õ}ù5\82\ 2ô\8e   Xn0ì\18­>âPn3£PýB§ª(@2»±O\9býuºJòáû\ 5Á\1fä\15«ZúÝÔ,T¢­ÍµGf[u)\8a\15\1a.b\1cE¡b]gOcÇoL%_tdX]ö\1f÷Ö4÷-ãQ\8cäÕ\8dÊì\95´\9e;üèI\
+¡Û/é}Æ#ô®pûÀ\ 4\17\85P\0͵°ÿ=T\8dùÃÜ6¸\80¼\ 1ÿ\8dõ7\16Ï<V{Sïüwg Klg;ð=£\9f*iB\97ë}Eg8.-u\aeDeÄx¬W\ 4TÄÈWÝì>\94Î\13Ñ_D2q°!\v\18MáJ}rKWÑ\9dF\8b¦g=ëÃù*\15ý\86Þ\\89}\7fü\1aï+¶6³ÃÈ\84\88ÉË\9c=ôçåMKFö\11|ôÒîJ\954\19û\96JÛÄ\1cFVÂ;\   §Óû5\87+íe½=Ý`\11ÖM\10úp±_íC·¯íç
\91»$ê|2\94\91ãðâ\86\83\ e[3](Z't`Éu\99ª\7f$r0?@ñ\1còÞ(ºDÃWÏJÛúÄt\19\92~bp¶=Ö°6cË©\f\19\8dØç½\9aØbëÉ\ 4\8bë\13Z?P\98\19\9b2º!Ê\96ï\9f %\80\9aZÉíÅÆÚ\99\eH%ñÙÍy\14õ1ïÇ\8d®è        ¿v3Xê¤\97ê|\9eÔ_7ræ\80íëH55{üLÄ\87åz\7fÅ\82\9fJ\ eqºÙM}ú\18¨\bºcç _ì\13ÿ¢p1pßÅ@\19\a\8f{\96Ðó\81$\90\99\a+´Ê<\9f\14£\9c\1cè\92±K¸03ø\ 6}\94?!)l5>Þ\92Î\97"¬[Ð\95]cýTL¢Â4ú\9aÐ×ßõ\86Ï\96n\7fæH\85\83\ 1?\1fM\ 6ãêúMÖ\rû!6öA\?ÂYR`@{stë1Õ ÐyÓ-®\ 6=³4[\1dm¡t²\f\19%\1dܯUÓ&I¿\7f\90\95v²»\ 2\8a±Ì\15\90¹k
\8c²ér\90ß\1e`6rç:l2\ fm?W<QðÒm\18ÎîÕ\92×èî\98\16\ fÎm6ñA\8b\r×\80mîô«\fZíÄ\ 6}Áx7Z\85]\13Þ"¨ð&Ö\9a9\ e\e\11È@*¯X\8b\9bóF?\ 5¹Y\ fY\9fÚ\rYZ¥vÎ\1fãª\ 2\95\85\87Í7\1eWɬ&>\7f\ 4\1dÚ\94\97RexPÜYOÒá\83¸g\16aejüóÉòe\91ë̦+.Ú"yñ\ 3\roùkæF\ f\86\85I>òà      \88à\88¯c\7f¹-6\ 6\12Ò×\93ü,l\12ì\9a.=\16P>ï.<Ù¶  ¢~\4þ¥\ 1$¦æÇ.4«ÈÞ]ÝFÈÙ\10\1e\87\85e7\8cÝ\8dêÔ\8eNpxÎdPé\9e^Y\98Fo®\92×\ 3\8b(pû(G:ª\85OhÐ\9b\13äwnZ`îà\12Z^_=\14¾[¯èo¯Ä©\ 2=1\8b\8cDYoÁv\98æ\9eåµâÇ\86ïs\9e·«¾Ò³[Qô4âJÉàu\93_G\84\9f®~X\97\9dýbâ\85ð§r\8d\9c\82\1f\19£ÊjméÁÌÊ÷\1a6â/5Í|$\v=oý\15\1d\17P¹(kÃá\10\ 2ËÜvÍè*ß\8ak\8ee\88Ë\10\ 2Á\9ey\ 34ÏÆT\96¸"\8cG£Õ\11øÛ\8eó.\95Gcv=¸g¬\ 2Næmí \8a}.õ¼\bù2\90æ\fZ\r½¿\85lSî-\b\17\8fs\8f\9e0$\8bÔ?Ô\9bÙµ\e:sF\r\9cÐÌ\94!Ø£\8d0Z»'W¥|\e2\84\8fì\8b\97(\9dä6\1a\14\9fz"ì\98Ðù;×\ 4aX4X¸9A\v\ 2ú ;Z®á6ÒÒ.\1dî~·\88£áãv!\1d\92Sª¨¶\8b°s{\8c\8fñTry\1c\1e\95£´ä\98Ñ\81ØîT`>ð5%V\1aT`[7Æ\8e\r÷\83ü\97\ fèÿ\ 1ÿ\13\ 1h<\16\90\b\a\bô\ f\98©.\90
 endstream
 endobj
 429 0 obj
@@ -6092,7 +6101,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-30 -958 1146 777]
-/FontName/GOKYXE+CMSY9
+/FontName/SWZQGN+CMSY9
 /ItalicAngle -14.035
 /StemV 87
 /FontFile 428 0 R
@@ -6109,7 +6118,7 @@ endobj
 >>
 stream
 xÚSU\f\bÖuLÉOJuËÏ+Ñ5Ô3´Rpö\r\8e´T0Ô3àRUu.JM,ÉÌÏsI,IµR0´´4Tp,MW04U00·22²22çâRUpÎ/¨,ÊLÏ(QÐpÖ\ 4©2WpÌM-ÊLNÌSðM,ÉHÍ\ 5\1a\92\9c\98£\10\9c\9f\9c\99ZR©§ à\98\93£\10\ 4ÒR¬\10\94Z\9cZT\96\9a¢ÇÅeh¨\90\92\99\90\94\9a\9e\99Ç¥\ fr\93g^Z¾\829D8¥´\0&U\96ZT\ft\97\82\ 6Ð\9d\9a
-@W¦äçåT*¤¤¦qéûå\ 3mK\ 5º\85dgaq\15ºán¥99~\89¹ ãAá\84!\9d\98\9b\99S U\90\9f[PZ\92Z¤à\9b\9f\92Z\94\87®4<\15â6ßÔ\94ÌÒ\tYÏ\92Ä\9cÌdǼô\9cT\ 5]C\13=\ 3cS\88Df±[fEjJ@fIr\86BZbNq*X<5/\ 5Ý)ÀÐ\ 3;DßÝß;2ÂU\e\12±\10É\80Ä̼\92\90Ê\82T\ 5\ 3\84j0ß\10Á\a\ 6RQf\85\81\9e\81\81!P!\10ÂX±h\96¹æ%ç§dæ¥+\ 4\97$æ¥$\16¥À\ 50\1dåä\94_Q­kl  kij¡`hhb¦`nn^\8bª04/³°4ÕÓEÁÔÀÀÀÂÐ\12,\9a\ZT\94\9aW\ 2N\f@\ fÃøi\99À@JM­HMæ\9a=G4\931^GVûkÂ\97\ 3W\95Âw\9d8wsÃ,õ¨M\86\92\9b&\a±6åûM\8f=wÎç\85\1d3ÏÜ\93¿izan£5gα\1d6÷ý\95w.ãÝ"?³l\8d±QòI\8e;ïÏîõiaz˰8¯¤=Ù\97\95¨/\8b»Â\968êXs¯ÿõº°úýù¿«Z\12ö»G¥Kl8n\13.èzAmjQY0«Á¢ßï\8f\9døV\10\97μ;îÉTãvîSò\82V7Ì\ 3®Nßátãf\8e\93õBuÛ;ɯ\9d?û¯ä[n¥ìõ9þæ&¿íþ\92Iy\13UîW\9d\9e\944çDµÎ\ f\19¯ÎM%î\r¹\9b\9d'ßýà \19ñèÖ;nïÏ¢?Wq©\ 5\z(÷¨óÿº\93\ e\17Ö\8bñ?ÿ4Eðà\91\88Ì\8bk¬Ï?Zç»\E)dÂÔ\8f\7fæ¿IHê4Ì\17È+\9cåõè¯ë»¶þ»\1fª\1a^.SÛí|ö調g\15º;þÎ\¯°©~nvÌ­,û\15½QçÏuǽÞÜ\11bÞóæðþ[GÕ\ 2ý¥_þÖX\97Ô)±k\8a\96\1dëö\1e«ÿ\r=_Ä\96¾eܧÁd¸=ªê\1d\86\90éÂû¾m>}°ã\99ê®\86\89\e\96þ=8ùfæ¦\8cè½fZç¿Ú©       oõ«}¿ö÷dí\80Xéyõ«¾}\v\93ªð?atV$öÂ\89ë\a$½×*«Ýÿ'ª\9fÁ½6\9fùB~Cþ\7fû´\96|e7io\95Gü"IÛ¶»<ÙñÕdÝÙéËíK%\7f\8b\9dêØÆøwÊqW\1f\véÓª\9e\v{gnúTÄ-,qÿì\9dÏ!ÍÕ>\97\9d6\9dnXÄ7ïØ!ù¹\94¦\93öÆ\8b\86A\1d\8d\vom>ÿñã\19«\15>\e¬·ð\1e\9fÉ$uuz\81¶Ø\9d Ñ \897\8bOĥȽ;8W{fÒ©¯\9eGïÝz*ôxγu·NÞ¹\9f§\97Þ·õ\1fïÑÓ\8eË\16ÝØ.¶uÝÆ æ\9e\1a×\99ÆÏÿrë+Û\û£_8÷\85Í»\1d.5+M\f\v2ØÄ\e\ 34\8dMf¯¾\1cÆ\1f~ØùÎá\1f\ 6¡\1aj÷VêÛ)G\1aLqü\95ijv²íÿ¤\93óý2´N\14s¿^sÿÅí*þ\93ê'7ÝÏ\14\94[x-ÄWË8ìÂÄ\98kßÒ\9cÍeY6^ä\93¹ûÎó¯¾`F&\8bÐÏý\8fôfµ    ý.øe1ËäÈÑÄ\95Q5f\vEÎLRoÏÊ\8bxì`©-|c\rë\9bk9\8c;»f­/3 \10p\8d\1a0,\fHÎIM,*ÉÏM,Êæâ\ 2\0+ùØ¿
+@W¦äçåT*¤¤¦qéûå\ 3mK\ 5º\85dgaq\15ºán¥99~\89¹ ãAá\84!\9d\98\9b\99S U\90\9f[PZ\92Z¤à\9b\9f\92Z\94\87®4<\15â6ßÔ\94ÌÒ\tYÏ\92Ä\9cÌdǼô\9cT\ 5]C\13=\ 3cS\88Df±[fEjJ@fIr\86BZbNq*X<5/\ 5Ý)ÀÐ\ 3;D?8<*ÐÝO\e\12±\10É\80Ä̼\92\90Ê\82T\ 5\ 3\84j0ß\10Á\a\ 6RQf\85\81\9e\81\81!P!\10ÂX±h\96¹æ%ç§dæ¥+\ 4\97$æ¥$\16¥À\ 50\1dåä\94_Q­kl  kij¡`hhb¦`nn^\8bª04/³°4ÕÓEÁÔÀÀÀÂÐ\12,\9a\ZT\94\9aW\ 2N\f@\ fÃøi\99À@JM­HMæ\9a=G4\931^GVûkÂ\97\ 3W\95Âw\9d8wsÃ,õ¨M\86\92\9b&\a±6åûM\8f=wÎç\85\1d3ÏÜ\93¿izan£5gα\1d6÷ý\95w.ãÝ"?³l\8d±QòI\8e;ïÏîõiaz˰8¯¤=Ù\97\95¨/\8b»Â\968êXs¯ÿõº°úýù¿«Z\12ö»G¥Kl8n\13.èzAmjQY0«Á¢ßï\8f\9døV\10\97μ;îÉTãvîSò\82V7Ì\ 3®Nßátãf\8e\93õBuÛ;ɯ\9d?û¯ä[n¥ìõ9þæ&¿íþ\92Iy\13UîW\9d\9e\944çDµÎ\ f\19¯ÎM%î\r¹\9b\9d'ßýà \19ñèÖ;nïÏ¢?Wq©\ 5\z(÷¨óÿº\93\ e\17Ö\8bñ?ÿ4Eðà\91\88Ì\8bk¬Ï?Zç»\E)dÂÔ\8f\7fæ¿IHê4Ì\17È+\9cåõè¯ë»¶þ»\1fª\1a^.SÛí|ö調g\15º;þÎ\¯°©~nvÌ­,û\15½QçÏuǽÞÜ\11bÞóæðþ[GÕ\ 2ý¥_þÖX\97Ô)±k\8a\96\1dëö\1e«ÿ\r=_Ä\96¾eܧÁd¸=ªê\1d\86\90éÂû¾m>}°ã\99ê®\86\89\e\96þ=8ùfæ¦\8cè½fZç¿Ú©       oõ«}¿ö÷dí\80Xéyõ«¾}\v\93ªð?atV$öÂ\89ë\a$½×*«Ýÿ'ª\9fÁ½6\9fùB~Cþ\7fû´\96|e7io\95Gü"IÛ¶»<ÙñÕdÝÙéËíK%\7f\8b\9dêØÆøwÊqW\1f\véÓª\9e\v{gnúTÄ-,qÿì\9dÏ!ÍÕ>\97\9d6\9dnXÄ7ïØ!ù¹\94¦\93öÆ\8b\86A\1d\8d\vom>ÿñã\19«\15>\e¬·ð\1e\9fÉ$uuz\81¶Ø\9d Ñ \897\8bOĥȽ;8W{fÒ©¯\9eGïÝz*ôxγu·NÞ¹\9f§\97Þ·õ\1fïÑÓ\8eË\16ÝØ.¶uÝÆ æ\9e\1a×\99ÆÏÿrë+Û\û£_8÷\85Í»\1d.5+M\f\v2ØÄ\e\ 34\8dMf¯¾\1cÆ\1f~ØùÎá\1f\ 6¡\1aj÷VêÛ)G\1aLqü\95ijv²íÿ¤\93óý2´N\14s¿^sÿÅí*þ\93ê'7ÝÏ\14\94[x-ÄWË8ìÂÄ\98kßÒ\9cÍeY6^ä\93¹ûÎó¯¾`F&\8bÐÏý\8fôfµ    ý.øe1ËäÈÑÄ\95Q5f\vEÎLRoÏÊ\8bxì`©-|c\rë\9bk9\8c;»f­/3 \10p\8d\1a0,\fHÎIM,*ÉÏM,Êæâ\ 2\0\9f2ØÒ
 endstream
 endobj
 432 0 obj
@@ -6119,7 +6128,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-36 -250 1070 750]
-/FontName/BRJHXW+CMR8
+/FontName/NTUIRZ+CMR8
 /ItalicAngle 0
 /StemV 76
 /FontFile 431 0 R
@@ -6135,29 +6144,32 @@ endobj
 /Length 5364
 >>
 stream
-xÚí\92gX\93Û\9a\86EDº\80\b\84j\90\80´@(R¥\84P¥÷\8e\ 4\12 tBh"½7éE\9a\80t\bÒ»H\95Þ¥\83 (HUªt\8e{ï9g®ÙgþÌ5ÿæ\9aïûó½ïó|Ϻ׻\16\866\18\8ap²@Ê;9bÀ|<|b@\98ª\96\b\90\8f\aBÄÊ
-C#á\18\94\93£,\1c\83\14\ 3ò\89\8aò\ 1¡nÖ@~\b\90OHL@TL\10BDÄ
-\8499{¡QÖ6\18 ;\8cã\ f\970\10ê\80D£,á\8e@U8Æ\ 6éð;Ä\12n\ fÔv²D!1^<@ ÔÞ\1e¨õÇ/®@-¤+\12í\8e\10\11ññ\ 1\11(K\fÐ\ 2i\8dr$âý\ 3IÉÑÊ  (üW\eáæüOÉ\1d\89výÍ\ 5dÿÍÉ\ 1üM\89pr´÷\ 2"\90VD¼jN¿WCþfù\1fcý7T\7f\ f\97w³·W\83\11ÿ{Lÿ¦Â\1dPö^ÿ¡;98»a\90h ª\13\ 2\89vü»U\1fù\17\9a*\12\81rsø»ª\84\81Û£,¡\8eÖöH ä¯\16ÊU\1eå\89Dh 0\966@+¸½+òÏ>Ò\11ñw\88ßcû\13\81WFë\99¢\81\9f\aú\97¦\ 1G9bt¼\9cÿ\95ú\87ùÏ\9aï?ëßÃA£<\81Æ\10\1e\b\84ï·ñ÷ûÏ/Ó¿­%çhé\84@9Z\ 3µ1pG\ 4\1c\8døWãß\99dd\9c<½Á\ 2B@0ÿ\93ß\17\b"\f\ 1
-?\81øüW£®#ÊÅ\r©$\v|\ 2\81@\84Eÿ¢²tC£\91\8e\98?/Áïýþ³¶Bý\9e\ e\12é\89´$ÊȤBá<çfä:6?j\9fz¤ß<<­Aô¾`7íÉI\ eõhßOb{<\9e\19Û°\10;\8d£YÒóm\8dèÔSö\87RáU¾ªâqí'f]^^tå\8bÔ\9cV\83­Æ«ÇbØ\98\rð8e\9dÑmÞ\ f{Èè¦çÆ5\9O¼ÍðÈ\96\ e\109\18ç¶ý\1efÚú\8b©^ß¶9D¹\11W[ÿlÍ×Èo-·Ä,§ä<\94\13¸²\9e\9fTÞu\1c\81!\8c(\ 1^\95ü\94>\ e\81\ 2!׺\87Ò`]¿ÉZE\e\83êüº\9c!\1eú£Õü\9c\rEŧ⣦__ö°\11\89¥¼,w.zk\1c^\a£¢e¼ÃR{×ä\ 5\8c#,1Ún\17+\8eÆZvÆG9\1a\ 1iä|IÕZ\81Ê\84rÐC¹\1d¡\17ßMJÞ\83ô"q&\9b\9fc\80ëÝ,Ý\ fj\16G\1còcÆûÒõÆ<WÆV\ f,r\85¤s\1ch¾ª­\85Ú\vº\\18\/\e\89{pÈÑ \19¨ßϰù\88\16¨¹¸¸\81߯\8budÔÖÜfØ4«»¶\16%&¬PÍþ4s§\10\ 3;6\1d¡)\9fKé8^aéÿ\96\eݶÓEèÇâ.6\18:<3L)B·¡¦¨dÖ{®\85':ë\17\193ø4ÐÂM>ÃæV\98­\9c¯\ f\93ñwëÞª!,
\19\9dA4\aSä:ÈÇ\12íJ7o£rXıBµ\ 3`p\11?\87^/®Û¸\16òÉ­ê\ 30gýk\12ìgp®²\12Í/M3D«DÊ\a\ f-\83K\9f
-5\99üþúùWK;ÏüI"±}3f\8a\ 3ß\98\85WLp­ýLm\ 3Ïåç\ e.ýô¦yLÌ\8dè=Ó\1aÇ¥\19¸Ëép\1eåõ\15\95®¤à\1fô\1c$$æd¼6\14M\bj\8bÀ{ \15\11(Òà±\90\ 6¹\81\ 1òÒª\99»\8b\81½·\ 6RÔû³í\18³+\9b/EÛÒK\96Ïyß²Uç[1Y³Ñ×,ô\19Èn8%R\96iK~±\eT\b°ú¬{»þ\95\16\9cü\98ÿî(Ãu>­>ým\18H\99\7f\91=\87É¢R|TÁ\96¿S\90a§1ç\9cSJJ \91jê°Ôã\8e\15Í\18È"ÇÀ C}«§%ÕÞNl\8dF\98-´ª57f\8d\14\f`Õ._5\81+\ 4=ØÔ©\175\ e»6õ4Ý\81\8enRÙ»\12Gñl²l2W\97Ìnù\91bAAø~ü\ 4]\91¦gËS
-~\17¯Å-h\8b«\97d\94.¦)ï?Ä/zÞ\14\17úL\12r˪\1aLª2\11\17\ 5ί\8dwµOE$;D\15GJí2Ò$²^°÷L\16g\9b?*\89\ 5~f`\ 1¯Í\93\rù\15Å)%5öϧñÚ¬\15\19ϱ\9b\87dùk½³ö\8b>\13\96!V.m\7f9\8aÓ£\88Ïú1åêû-­\8ew­¤µê\r=¹÷dyV,!ø]N~»\e<\83R]\84éÝ¿¨\12î\v>    \84\ 5¿h#ÞTm\8bÃ{\9aQÃ~¹¼Éð\92\80x\98ã\16öx¬\96ª}"CȺ\97¨önQ\9aÈ\13D\81Ñ\89"?è\86n¿³\ eÐmÖ³\95\1aÛ¥ÔBØr)«1lGÓ©Ï)²¬Aîç"¹\92\1dè=øðÐT\88\14¿\14*\19\87\93bB¼ãÚ\92h].Ï.[ÛÔɨó\83Úæå4ÒªÈy\86\82\99\ 3u¶ÎÃǰs\116\10L0Ø,Ä5=V7óJÒµï=Sudå'\ f«\80 \89Ü ~µË\15Æ\16ª\86ãöy\5¶\15­÷mýX«\89o2¸¶yè\ 6Ü"b}¡opî(@r¯Dì\1a-$Ý\7fü¡ÞÂø3ìÁÞ·%uñf\e1\9cå·ÃK\96mÄd\8e\ 1ä"ʳ\1cd\94Â%\85ª ¦ÛC\93Þ`"\ fßÂkBS\8bX]úðò
-¼³UÎ]>¨Æ\e\10½ÊØWgÒþO\1ds¦Ì\90Ì8<1J¯Ý\96+ñ+ÔÞ7*ÑÏZ\rè\13\95\15\9bR÷À¦Ø=ÊnS\14£\88Î¥`Éu\9fÖRF¤!s±ª§Oi£Xª\83]\96ÂOƱ\9e}عr\99oHJÂJâÇ\80\1d!b\ fÑä\ e\99\9d°\1c¾/Ò?_Ù3©\1aÐ\1a\9e\r\1f\9d\9bP0Ü\89ÆFn×ß\ e\¹2\9e\89\88\9e\1a¦$ªP\9er?¯ô¹°Åg\9f\98Ä\ 6\8b\12«eìáéíy*¦s!\1e\ 4\ah\ 1î\92\92KîµrÐ\1d\ 5Sø,íà\a©¨Ä±\ 5Ä]\9e½\1e*(\ f\ 1.YÓö   ¬ë¢X\ 2ö\ 1J\1e\ 1g!Ûô\9d\ 3¿¶n5\18<\12\1fªBì`ÇN3\1c\94r¬ÐÚ\v\ 2\e¹±µ\ 6\8eQÌX\14D­Ó¿åî,\19\89=J\90\ 4·\7f_4«9Ô\80x¸Õ6\19S\90ô\8d\84\f\97®©EÓKö\9dàÏ0\84ªÒHZ\89ì)Ö(ÿ­\87xD\16Bc$\13ê\ eº¸w\9dHÖ¦û\16\96\8f-Z\19à \ 6/\ eë\7f<çÃ\97²''ϹõYf¾\7f°\8e´&ã\8a\80\83°7/AÆ\13evÐ\ 1öf\13\950\84Åî¥-fÏ\ 3ìu\9b\vcu\1c^æ!ÛZ§"÷´\bݲ\ f\0aT+qtgÓ\95\e\97ñ1W\9d´·\14FI\1fcÖÅMÒü\1e\1a\8b\8f4<ññÕ\b{o§{NFÆ`¿\8e2ñõjß\1c³\9cÛ\15ªhJ\95\81u=wYn\7f\8cv)Ô«z\19\f"¡|\e\9bx¯U%á´ä|F\15ñ\88É]íÇä qË0\06\93²_pH~ >Å\9adûý,Ù©1ý\mÃ!²A_iñ9\w¾^Ù5kÖ\95B\99\94¼æÉ\81k:\ 6Æ-²±\97§J Èa Ö¶e?¥÷BG\e[í«±2éñ\ 1láÀ\ 5\vÀõb?Ý\96¥'.Y¿³wu\ 4I\82Íd¶\86\aV0\97sº¬\1cP\ 2æfd\9cÆ\ 6uØb»Ò\9dí&J\8f"\8e\v+\\1fÖ\9a¼\86ù£\95\12¤8\9fö7âÖæ8
-\e\93\82Æ1Ó\15»\ eÖ\82¯Ph»MxƱî]CÉ«0ü\88\16\93\80»ÑuË8p<\9fï\8dÌGÁo÷oÚ\15'aMl.®\80g\1aT6ºÂ\97\9dú\8d]ÉCþù\14Côl\ fÈ'\ 3\ fùbÄ\87#\19\aÍi\9c\ fRñßÀùèÓá\9cF¿Fs\14 ©ÆÉ\9eè+\9f°\9f\95&~Û·å³\89\b]^\e\99\12ðªÖVjCtqù ´\99«7¢\87ÅY\19!\1dç\ 4÷Ò\ 6\ 3ÓîÅ\92ÎûWÉ\ e\92yS¨[Úq½\14Öd\8a(Ïä¯J«\90ò\10ñ\16
->*\11\1dÓ+TÓZ\9f\1d\11Ì[C\87.TÎl6ù\vj¦$\17c\91h(PWMÁæ(ùì0\96\9a\82\97#Æ-\96"Ôa\9b\83\ 5øarmÓwI\80\92²\18ÀÌ!­Î\97%xÞqw\1c\9c\ 2ôP¼­w¸\ epYßû)/\8c§\95\a\1a\9bb¥8A\95\a¢\19í\r¥î¹l\84\8e÷_
->\vO(-\9e\82¿\b\fOÙÓ xCíÄ\96þ}\1e%TÐ\11²²
-÷á\19ª\1f©\86&UE\eUJ»Fè\1d&ãà\91o^¯JÀ\9c-Kà7¬ôël\96\vñ\89ÝѺÛ,Ö¤5tÜ\ fR_\88á7\81ÂwÞ¥Ú\12©Ï´ì\93|åFN<¯ÑMî\96*\ 6_çú\88æèT²\1cá¶\9c\87eÃÅYIèÎ0zÎßgNL¸\84mÒ~\ eô(\14¼è\83\vïp\13ÑéÂ\8d\85¨\e\1eô³\ f¨Cßú<ªúõ\91×%W\\8b4¨yðg±+ñ\84Î|ôYæã\1a\ 1Ô\90ÑÅ\96\8a¼Ox\9dJ=¶¶V\82þ\ 1ýÐmÛª½\11\r\16\82-m¡¦\13Æ\82«\ 50{Û\r19'A_öÍ\8eo\96òX*\8a¦ôâÄ;\18º\98\1cÂø1\8b-èn½|Xû\18\9bè¥Þ
-ýb$\f\91paÄ{SÑ\18>`æ\9d¬±ÏÕÝ\ f\13Vì;éLdìX+\89\bã¬*<Ѭ£\17)&k¡,²C\83æ\9e?Qâ\â      \ 3àÛ\15-Ü^¨T/\r\9e\1fV\85æ\9a%yì1Ûµ\vSB`$2e\15`|Ãí\\91¦Ó­UÀ\96<\8e\19£®×\8e\fÇì\18ö\88ȹò\â½u\8d¼\ 3£Äw\81{\f\99b:¬Ò\91úµû)\85¶½,\9aé´ôÖxºÎ±\12\vbx<¬Üçàh3í\9d`\8a³ÅþÏsÚÙå*F\ e\18t\ 4æ6«ûª\8a\86\94¤¤fÙô\9b8\97On
-®ië|á\82#?©¢»¥Ü(æ%
-%®¤i'\8f\1a\8f½NÒ\9bý\ä ¹Ø\11¤$`Åò\9bã¡\­\92d\93\96\99ùñ\97Ñ\81\9eR\99&\8f*¯`©TõT\8fV\1eþ\9cF{bV\11DÃ/PI\ 4°ã      æ\9d\aâñ\83\²!6£S¸úvh­^tw¼a\1au\ 29a2¡\a\8d\11¿Û×ð\93®=\96\97#)\Ðõ;ÅÙÚ{ùÙ\88w7\ 2\97Ñy[¾´\97bè´¹ðz\1cùýÔ\99~g\98\18®ô\9b©=\13å\8f×c%5\89¦#¤¶\89Cô¨æÛ± t\84\80¼W
-©Ú0´\9d&\10\8aE\8d 9n}×A\8b¬\8f9K\1d\7fx\18yw\89â2n©\90c\141·F\bíãj϶â¿a¹Ô\7fa\18u\11ßÑ8xI½U.ªLü]ð\1d¢òÕ%\88¸¢\82µ~7s\8f\1cÈYÉ\18\17MVØ\Ý\92ú\ 5Û2¸\99n\84«_ÿ\90\99ÌÍ2\84\91À\8d\86Ù¢¢Ì*ÿ±R\8eínà\97µÞ{\83å\1eûÖÃÖ®\83î2\8f\9e®\9b;5\85Uæ®ìËÖ°Ñ       ÷\ fþ\9c\1dà\90¯ø\ e*\15\e¦?¢.á/ª\ f¢\fçÒ\84²\9fFá²a¼yüÄÄ?¥\15{§ïÈh­³\85~­M®Æï©)q\9c/_îZüU²\ 2õ\8c\ 4\94ì¥ý
-Vk\15âÕâ\1e9\1c%åÇ\86\86øLV\v\ 2ªÙ\83FåÊê
-\ 6sM!xññY\18\ fé{è{U\90# {\91´òDG\fÛ\87\ 5zÂ#Ç>\ryìäÜ\93ÑÝbr*wý9§ë\98¨\8awEÝ#µj8ð©=\9bVp5\84\90IJø´\9dW¸3"¿{ä)\1f\88ù\8a\95«O_ú\93¹ig\89Äëûð^=:v\1dN\7f\99\17¥\ 2a\ 3/qL\Ë:ª:Æ\9f\9dê;¥¯í\99ûÏk;²¡;
-\ 1ô\82kZT\aÙdV2Uµyz­úúUttÏzîÓÛ\a\87-´¥ÜÐ\9c\17È­×DXÜï^x\83\1aº¸ö%\1f\13Õ¡\e6\91\ fJºë±.. \v¥\98åN3\rk\1f\1e)\92u`J÷wW¾3\91(ÔÚ,Ê\ 3¬{iÎywÞ{\8b&òÛÇØ1\80çÊú\83TbÊÖÅ8â\99\ 59"u\ 6ÉL¹®[\91$\92>Ë*0¹kP\12^\ 2×ë@è+\18\8et¢ôOð¾\1c¹m(õ2/ó&((¢Ùê\1e\95\82\a\ 5 }ZæÞ§¤\9cÈÏÕ\vú\9a1\8aúûýÔfÓ=\9ab'Oñ¾\1aÛLÐP\9d\1a\99\83\839a^ds\18B²P1I2}Ì¥\893\13    ,eÌî\90.ñó¤\9c)\9e\9cP\e\11Kn»1\8f¼\1dS.ã¢\94\bN\10E\9b\ f±ôÆ`\13ǹþ˶R \80\90Ó{u\84\89\8dûÓ
-u\fgA-.KZ\7f|<©D<\1eò®úO6Mï\14\95¢:\8a1\e¬\96ûÈ£·\91a\19ÒOiõ\ 6Q+\84÷¹*\1a';Ð*\1e¹ü6ä|o­¤ðU\8e73\8a¿Rte\8eÞ!¾yì]\99@\r\10\05}¶¢\ f=¬qÛÐèÿ\92ÆJ}YHó\ eQ2»LÄk@OÃ\9c    8®Aó\ 5q\8fWª=~è\fy#ÂÀÂeú&\8aÅ\8dqÚ\ 1:\93çlî\98Þñá¤\93Zn´Å!±\ 4«ª\17óùr=ã°rõ\8dÝðE `KÍ\14è-«.ì\88\e\vÈ\19ó\8cÊöáþhå)ÇÚ\19ynX¿\ eãÿ#@qb-E\9b1k\1c\ 2OÝzǯ$m\b¹°ëÎ\95°uÛ´e\89\8b¾\ f\ 2=×^\93ÚU\8cÑ\1f\82¦D¶Dn¡ÒnhmÚ\1f\93\86¬\19w[ÑHÍÏ~\1a\94ö&R
-PÕ     \8e\94mö&ð\7f%[R®ØÔê3\14gqþ\12Ï©Êk­â\87z\87af@¶\87:Â8\ 29èG\11\ 5\8cq§dÄ\v+[d¼Sa¥Z[@çWKJ\87¸G7Á£   Lÿ<Ä#õa\86|\88|\13nÓ?!<Kê'\9bù\9a|\9aÝý\99\1aW¯÷\82­23×\9cÓ\ fáf\8bb\r7¿F!\92à{\82$\82dÑåæÃV¥e:É¢ÉÞÖ\ 5ǪúK¡
-qfÕq}\19\95¬\84\9b²-§xÍ\99Æ\8c³Ý\f_;\\95\994¶o\ eË{Hbã    º\97.\96X©©H]KΦ"}jã\9d,\9a\e\14¢\8eA\r\8a{ÃÏS>ðÊ\8fɾ\10oÏJÒkøÊö\83\98¤ËÌ$\ 30p¶\14\9b%ÿS}\8e\0\89ÇD/v#ï5P¸ÝÖ!.ºU·%µ\1f\14\9b¡F\9fg\9ds\91²/u*\ 4àø¼\ 3\1ds¸âBnM\8eEðHÎÈ\9dZX\97\1dT\añ¤ÿXf4S{Àýtxq³\1c;^ßû`û 5LùsÙ4d\ e+íÛí\10§´ªo\8a\9f@\1e\15ïùÃõi\17ɼß\ 4lK\12'ËâÝ\9dú«r\r\19f»`ÛMî\9ev\15íG\96&_^Á\ eGâÑ¢ó1<>Ö^³Ðç¥ò\86\1a\99F ÐjNCÛýZ\81¾u\1fçSñ\15í\81¼l        7\ 3\99Ñ\90\91ªÒs:~\9dÕ\88çrÓ!ú\9b$£!Áãú­]r\axò{\8f\8cóî~M½Å\92KnòºuË¢)\1d½rÃë\9b»Ü\ 1\8fø*Ñy¥á\8cw£?¨Üøt  \15\16e\18\86kû2\80¿\80å\v\82ý\87Òu\8e£\ 3\93÷\15G£ïzJ<ÔÅåCK\ 2Ö;veC\89Nµ!²_u#«ÊÃXüÊ«\8bAqc\82­\93TkE O%\ 2\14µ¦\11ã\92âýie\ 3£·É|\7f\9e<黿ʭCºÇ5Ú\19ìÓ­K>ù\8fq÷  r\85ÍC$\13n\98\v¯õÆÅ\8c4\16õù{\r(¥4\9a_\15\86\97À\92¸\82\9aBttÓ\183éK\14\eªìb@Q\99¯Êcm\15\ 6$·éÐGÂî¦Ì\1e
-,æë¡å*\81\90\18é\9f\83$Ï\ÏØG^á\ 1ÃÏ,;YAû\ 5öøºô\87G¡á\9ak\93W\ f\1fOZÈ3\fÐK\10Ó;¿Ã\1f\b»\0¼!\ 2Üÿ\ÿvY\87\ 2Ý&*ö\83¡àNußâkº\12fo/\ 6D:Í\1c\9d\fc%Å\v\89b^\80Kó}ãv\93ÂÎ\8fÁ\10\11qRÂQ\97Ù  ^\80õ\91}Pt\14²O(§\80ô뺰á\93\1f®\1f8­Ô\92÷²ñû\ewÍý\¶\85\89¹ìl¹Û\164±§ñy ë;z}ö\86\10\90u\94O%\ 1àõä]y\91¥·iowÔ\89ýÝí\17[\ 3\92\93±\8b\8c\8dåó#e£\94Ú]fáL\84= ßÖ7{s¢í\ 4e«u¦gZi\9f§iSÒ\8f\83òtý\1c¤ ÿË\87èÿ\ 3þO\ 4XÚ#áh\8c\93\ 3\1cmGDô\ f,\93\8c\1c
+xÚí\92g8\9c\86\13D0jF\fÑ\86Q¢F\19£FïQc\98ÁèÆh\11½·è%Z\10\9d\11½GÔè=:!$DMÔ辬µö÷íc¯oÿÙÇþ·\8fý¾\7fÞû¾®÷zÎç~\1e6\16M\1d0\14ád\81TprÄ\80ùyùÅ\8105mQ ?/\84\98\8d\r\86FÂ1('G98\ 6)\ eä\17\13ã\aBݬ\81\ 2\10 ¿°¸ \98¸\10\84\98\98\r\bsröB£¬m0@\ e\18ç\1f.\11 Ô\ 1\89FYÂ\1d\81jp\8c\rÒáw\88\1e¨ãd\89Bb¼x\81@¨½=Pû\8f_\\81ÚHW$Ú\1d\89à%&æç\a"P\96\18 \ 5Ò\1aåHÌ÷\a\92²£\95\13Pä¯6ÂÍù\9f\92;\12íú\9b\vÈñ\9b\93\13ø\9b\12áähï\ 5D ­\88ùÔ\9d\86üÍò?Æúo¨þ\1e®àfo¯\ ewø#þ÷\98þM\85; ì½þCwrpvàÑ@5'\ 4\12íøw«\ 1ò/45$\ 2åæðwU\19\ 3·GYB\1d­í\91@È_-\94«\ 2Ê\13\89ÐDa,m\80Vp{Wä\9f}¤#âï\10¿Çö'\ 2\9fº®\9e²¶\11÷\9f\aú\97¦    G9bt½\9cÿ\95ú\87ùÏ\9aÿ?ëßÃA£<\81Æ\10^\b\84ÿ·ñ÷ûÏ/Ó¿­%ïhé\84@9Z\ 3u0pG\ 4\1c\8døWãß\99de\9d<½Á\82Â@°Àãß\17\b"\ 2\ 1\8a<\86øüW£\9e#ÊÅ\r©,\a|\f\81@DÄþ¢²tC£\91\8e\98?/Áïýþ³¶Bý\9e\ e\12é\89´$ÎȤFá<çaâ>6?j\9fzhÐ<<­Iü¾`7íñI\ eÍhßO\12{<Þ\19Û°\10;Í£Y²ómÍèÔS\8e\aÒáU¾j\12qí'f]^^ôå\8b4\V\83­Æ«ÇâØ\98\rð8U\9dÑm¾\ f{Èè¦çÆ5Ü9\8f½ÍðÈ\97\ e\109\18ç¶ý\1e\16ºú\8b©^ß¶9D¹\11w[ÿlÍ×Èo-·Ä-§ä=T\12¸³\9e\9fTâ;\8eÀ\10FT\0¯J\ 1*\1f\87\90k½C\19°\9eßd­\92ͳêüº\9c!^\86£Õü\9c\r%¥'\12£¦__ö°\13\8b§¼,w.zk\1c^\a£¦cºÃZ\8b\ 2Æ\19\96\18\8b\95@c-;ã£\1c\8d\80´ò¾dê­@\15"yè¡ü\8eð\8bï&%ïAú\918\93M§DÏ1ÀõnÖîû5\8b#\ eù1ã}éúc\9e+c«\a\16¹Â29\ e´_Õ×Bí\85\.\9e]/\eIxpÊÓ"\19iÞϰû\88\15¨»¸¸\81߯\8bwdÔÖÜfÜ4«»¶\16#!ªPËþ4s§\10\ 3;6\1d¡-\9fKé8^aíÿ\96\eݶÓEäÇê.>\18:<3L%J¿¡®¤lÖ{®\8d'6ë\17\193ø$ÐÂM!ÃæV\98­¼¯\ f³ñwëÞª!,
\15\9dA<\aSâ>ÈÇ\12ïÊ4o£rX%°Âµ\ 3`p\91\0§~/®Û¸6òñ­ê\ 30WýkRìgp®\8a2í/-3D«dÊ\a\ fíg\97>\15ê²ùýõó¯\96v\9eú\93FbûfÌ\94\ 6¾±\88¬\98àZû\99Ú\ 6\9e\1d\úéOó\9a\98\e1x¦5\8eË0ò\94Óã<Ìë+*]I!8è9HHÌÉxm(\96\10Ô\16\81w_;"P´Ác!\rr\ 3\ 3ä¥U³t\17\ 3{o\r¤hôgÛ1eW6_\8aµ¥\97,\9fó½e¯Î·b¶fg¨Yè{&·á\94HU¦#õÅnP1Àê³ÞíúW\8e\1d[p\8ac\ 1üQÆë|:\ 3\86Û0\90\8aÀ\96h#G\ e³E¥Ä¨¢­@§\10ãNcÎ9\97´´`"õÔa©Ç\1d\99X+Ú1\90Eγg\19\1a[=-©övâk´"ì¡U­¹1kd`\0\9bNùª \1èþ¦n½\98qص©§é\ ett\93ÚÞ\95$\8aw\93u\93¥ºdvË\8f\f\v
+"ð\13 ì\8a4=[\9eRô»x-aAW\½$«|\116Muï\ 1AÑó¦¸Ð§R\90[VÕ`2Õ\89¸(p~m¼«}*"iö%ª8Rz\97\896\91í\82£g²8ÛüaI,ð3#+xm\9e|ȯ(N9©±\7f>\8dÏf­Èx\8eÃ<$Ë_û\9dµ_ô\99\88,\89JiûËQ\9c\1e%\ 2\8f)Wßoiw¼k%«Õhèɽ+Ç»b      \19ÆíròÛÝà\1d\94î"JïþE\9dpOèq ¤#-øE\eɦZ[\1cÞ\93\8c\1a\8eËåMÆ\97TZ\ 5\9c·°ÇcµÔí\13\19ÂֽĵøEi¢\8f\11\ 5F'J\ 2 \eúýÎ:@·YÏVjl\97r\vQË¥\9cæ°\1d\ 1\97è²&\85\9f\8bÔJv ÷à\83CSa2\82R¨T\1cN\8a   É\8ekK¢u¹\ 2\87\mS'\93î\ f\1a\9b\97ÓH«"ç\19J\16NÔÙ:/?ãÎEØ@0á`³0÷ôXÝÌ+)×¾÷ÌÕ\91\95\9f\ 2\82&r\83\ 4Ô/W\98\e\8eÛçqÕÙW´ß·õc­&¾ÉâÚæ¡\ep\8bH\f\84¿Áy¢\0ɽ\92±kt\90tÿñ\aú\vãO±\a\964$\9amÄq\96ß\ e/Y¶\91\90;\ 6P\88ªÌr\92S\89\94\14ª\81\9an\ fMz\83\89=|\v¯\89L-bõ\18ÂË+ðÎV¹vù¡\9ao@\fªc_\9dÉú?uÌ\99²@2ãðÄ©¼v[®$®P{ߨÅ>k7 OTWlJÝ\ 3\9bb÷¨ºMQL¢º\97B%×}ÚK\19\91\86,Åj\9e\8dâ©\ evY\8a?\99Æzöaç*e¾!)     +\89\1f\ 3jÉw\84I<Ä\92;dwÂrø¿Èü|eϬö\8cÎðløà1ÝÜ\84¢áN46r»þvàÊ\95ñLDôÔ0\15q\85Ê\94ûy¥Ï\85-\ 1ÇÄ$6X\8cD=c\ fO\7fÏS)\9d\eñÈ»%8@\e\80OF!µ×ÊI\7f\14Lé³´C\10¤ª\1aÇ\1e\10wyöz¨ <\ 4¸dM×'¸®\87b\rØ\a({\ 4\9c\85l3t\ eüÚºÕðì¡ÄP\15b\a;v\9aá \9cc\85ÖY\0³\14ØÈ\8f­5p\8ebÆ¢ ê\9dþ-ø³ä¤ö(!RÜþ}±¬æÐg$í¶É\98\82¤o¤ä¸ôM-Z^rï\84~\86\94GÒJäN±Fùo=$"²\10\9a#\99PwÐÅÝëDò6½·°d\93~lÑÊ\0'     xqØàã9?\81´=\ 5Eέϲóý\83ud5\19W\84\9cD½y   ²\9e\83\ e°7»\98¤!,v/m1{\1e`¯×\\18«ëð2\ fÙÖ:\15¹§Mä\96}\0\b£^\89£?\9b®Ü¸\8c\8f¹ê¤»¥8Jö\b³.a\92æ÷à\19f¾øHÓ\93\80@\9d¨÷vºçdd\föë(3\7f¯ÎÍ1ë¹]¡ª\96t\19XÏs\97õöÇh\97Býª\97Á Rª·±\89w[U\13NKÎgÔ\10\ f\99ÝÕ\7fL\ e\92´\f\ 3`3)û\ 5\87\14\a\12SlI¶ßÏ\92\9d\1aÓÏÕ7\1c"\e\f\94\17\9fÃõæëU\³f])Ux#N)j\1e\1f¸¦c`<¢\e{yj\84B\9cÏÔÛ¶ì§ô_èê`«}5W&=>\80-\1c¸a\ 1¸^\1c§Ûr\f$%ëwö®\8e I°\99ÌÖðÀ
+\96r.\97\95\ 3*ÀÜ\8c¬ÓØ .{lWº³ÝDéQÄQÏza\85ë\83Z\93×0\7f´r\82\93þFÜÚ\1cG\11c2Ð8fºb×ÁZè\15
+m·     Ï8ÖÃ7\94º
+#\88h1   À\8f®[Æ\81ãù|od9
+~»\7fÓ®4 kbwq\ 5<Õ¤¶Ñ\13¹ì4hìJ\1eòϧ\1cb`¿O1\19\1f#1\1cÉ4hNë¬\97\7f\90\ 6ÎÏ\90\ eç2ú5\9a£\bM5NöD_ù\84ý¬4ñÛ¾­\90MLäòÚÈ\94\90O­¶R\a¢\87Ë\ f¥Ë\½\11;,ÎÊ\bé8'¼\9b6\18\98v7\96lÞ¿Jn\90Ü\9bRÃÒ\8eû¥\88\16sDy¦@UZ\85´\87¨·`\99vðQ\89Ø\98~¡ºöúì\88\1a:t¡rf³É_H+%¹\18\8bDC\81\8a6GÉg\87±4\944*½\9c1n±\94¡\ eÛ\9c¬À\ f\93k\9b¾K\82¤S\95\0\16N\19\rþ,¡ó\ eüqp
+ÐCé¶þá:Àe}ï§\82\b\9ev\1ehl\8a\8dò\ 4U\1e\88f²7\94¾ë²\11\7f)ô4<¡´xòá\v\81"0<eO\93ð\r\8d\13{ú÷y\94pAGÈÊ*Ü\87w¨~¤\1a\9aT\15mT)ã\1a¡\7f\98\8c\83G±y½* s¶,\81ß°1¬³[.Ä'vGëm³Z\93ÕÐóÜO}!NÐ\ 4
+ßy\97jK¬1Ó²Oú\95\a9ñ¼F/¹[º\18|\9dë#\96£[Éz\84Ûr\1e\96\r\97`#¥?Ãè;\7f\9f91á\16±Iû9УXð¢\ f.²ÃCL¯\a7\16¦i¸ßÏ1 \ 1}ëó°ê×G>\97\       m² æÁ\9fÅ®$\13ºóÑg\99\8fj\ 4QCF\17
+>áuªõØÚZI\86û\fC·m«öF4õÈ[\b·t\84\9bN\98
\16À\1cm7$\14\\84}Ù7;¾Y*c©(ÚÒ\8b\13ï`èbr\bÓÇ,ö üz\85°ö1v±Ký\15\86ÅH\18"áÂ\88廉1|ÀÌ;Ys\9f»»\1f&¢ÔwÒ\99ÈÔ±V\12\11ÆUUx¢UÇ ZLÞBUd\87\ 6Í=\7f¬ÌµÄ\e\ 6 °+Z¸½P©Q\1a<?¬\ 6Í5KòØc±k\17¡\82ÀHeË*À\ 4\86Û¹¢M§[«\80-\ 5\1cÏd3&=¯\1dYÎÙ1ì\11±så¹ä{ë\1a\ 5\a&Éï\82w\193ÅuÙd"\rj÷S
+m{YµÒé\18¬ñô\9cc%\17ÄñxÙxÎÁÑf:;Á\94g\8bý\9fçt²ËU\8d\1c\bÌm6÷UUMi))­²é7q.\9fÜ\14]ÓÖùÃ\85F~RGwK»QÎK\16J^ÉÐM\1eÏð7\1e{\9d¤7û¹ÈCs±#H)À\8aå7ÇCùZe©&\7f¢-3óã/£\ 3=¥²M\1eU^ÁÒ©\1a©\1e­¼\ 29\8dö$l¢\88\86\92\b`ÇcÌ;\ fÄ£û¹äCìF§p\8díÐZýèîxÃ4\9a\ 4
+¢d"\ f\e\13A·¯á'={,\1fgR¸\90ëwʳµ÷
\11ïn\ 4K\b.£ó¶|é.ÅÑisáõ8
+û©3ýÎ0q\\997S{&*\1f¯ÇJj\12MGÈl\13\87\18PÍ·cAé\bA\ 5¯\142õah;m \14\8b\1aAsÞú®\8b\16]\1fs\96>ºêÿð \12\7f\89ò2n©\90s\141·F\ 4íãn϶\12¸a½4xa\18u\11ßÑ8xI³U.¦Bò]è\1d¢òÕ%\88¤¢\82­~7s\8f\1cÈUÉ\14\17M^Ø\Ý\92ú\ 5Û2¸\99n\84kPÿ\80\85ÜÍ2\84\89Ð\8d\96Å¢¢Ì*ÿ\91r\8eínà\97µÞ»\83å\1eûÖÃÖ®\83î²\ f\9f¬\9b;5\85Uæ®ìËÕ°Ó\8bô\ fþ\9c\1dàT¨ø\ e*\15\1ff8¢)\11\ f¢
+çÖ\82r\9cFá²c¼yýÄ%>¥\15{§ïÈj¯³\87~­M®&è©)q\9c/_îZüU²\ 2õ\8c\ 4\94ì¥ý
+Vo\15æÓæ\199\1c%\13À\86É \86øMV\v\ 2ª9\82FåËê
+\ 6sM!xññY\18\ f\99»è»U\90# {\91\8cÊDG\fû\87\ 5\ 6¢#Ç>M\ 5ìäÜãÑÝb
+jw\839§ë\98¨\8awEÝ#µê8ð©=\9bVp5\84\88YZä´\9dO¤3"¿{ä  ?\88å\8a\8d»Ï@æ\93¹ig\89äë{ð^}z\ e].\7fÙ\17¥\82a\ 3/qL\Ë:ª:Æ\9f\9e\1a8¥¯í\99ûÏë8²£;
+\ 1\fBkÚÔ\aÙäV²Uµyú­\ 6\ 6UôôO{î1Ø\a\87-´¥ÜÐ\9e\17ȯ×DXÜë^x\83\1aº¸ö¥\18\13Ó¥\1f6Q\bJÂwá\\97\10Ô\83RÎò¤\99\86µ\ f\8f\14É90§û»«Ü\99H\14nm\16ã\ 5Ö½4çÂ\9f÷Þ¢\8düö1v\f๲~?\95\84ªu1\8edfA\9eX\83Q*S¾ëV$©\94ϲ*Lþ\1a\94\84\97Àý:\10ú
+\86#\93\13¼/Oa\eJ³ÌDz       
+\8ah¶ºK­Ù¶àA     H\9f\96½û))'òsõ\82\81V\8c\92Á~?\8dÙt\8f\96øÉ\13¼¯Æ6\13´Ô§Fæà`.\98\17ù\1c\86\88<T\\8aÜ\0siâÌL
+K\19³;¤Oü<)o\8a'/ÜFÌ\9aÛnÌ«`Ç\9cË´(-\8a\13DÙæC"³1ØÄynð²­\14\b âò^\1dafçù´B\13ÃUP\8bË\9aÖ\1f\1fO&\19\8f\87Ä×øÉ®å\9d¢ZTG9f\83Õv\1fyø62,Cæ       \9dþ j\85è\1ewEãd\aZÕ#WÀ\86\82ÿ­\954\81êñfFñWÊ®ÌÑ;$7\8f¼+\13h\0\82 ¦ÏV\f¡\875n\e\9aý_ÒØh.\viß!Jf\97\89ù\9e1вd\ 2\8ekÐüA<ã\95ê\8f\1e8CÞ\882²r\9b¾\89bu£ÿ.f\9cv\80Îä=\9b;fp|0é¤\9e\emqH"ɦæÅr¾\Ï4¬R}c7|\11(ÔR3\ 5z˦\a;âÁ\ 2rÆ<£²}x>ZyʳuF\9e\eÖ¯Ãø    î\bR\9eXKÓeÌ\1a\87ÀS·Þ (Ë\18B.ìºs%mÝ6mYã¢ï\81@ÏuÖ¤w\95b\f\86 )\91-\91[¨´\e:\9bö\87<\ 6d!kÆÝV´Òó³\9f\ 6\89\95\ 3Ôt\83\9a½     ý_É\95\94+5µú\fÅY\9c¿ÄsªòZ«ø¡Ña\98\19\90í¡\810\8e@\ eúQF\ 1cÜ©\98ðÂÊ\16\99îTX©Õ\16ÐûÕ\92Ñ#îÒOðj\ 1Ó?\ fñJ\7f\98¡\18¢Ø\84ÛôO\88Ì\92ùÉe¾¦\98æp\7fªÎÝë½`«ÂÂ=çôC¤Ù¢XÓͯQ\984ø®\10©\10yt¹ù°Ui\99n²X²·uÁ±\9aÁR¨b\9cYu\_F%\eѦ\Ë)^s¦1Ól7ã×\ eW\15fÍí\9bÃò\1eÒØxÂî¥\8b%6\1aj2×\92³©H\9fÚx'\8bæ\ 6ŨcP\83ÒÞðó\94\ f|
+cr/$Ú³\92ô\e¾²ÿ !í23É\0\f\9c-\85\95õf)üÔ\98#Dâ13\88ß(x\r\14n·uH\88mÕmIï\aÅf¨3äYç\¤ìK\9f
+\ 38?ï@Ç\1c®¸\91[\93c\11¼R3ò§\16Öe\aÕA¼é?\96\99ÌÔïó<\19^Ü,Ç\8e×÷Þß>H\rSù\6\r\99ÃÊøv;Ä)¯\1a\98\12$PDÅ{þp}ÒE:ï7\ 1Û\92Âɲxw§þª\S\96Å.Øv\93§§]Uç¡¥É\97W°Ã\91x´Ø|\f¯\8fµ×,ôy©\82a\15\8b\11\9aËÐv¿V°oÝÇùTbEg /[Òí\99ìhÈHUé9½\80îjÄsùé\10\83MÒÑ\90àq\83Ö.ù\ 3<\85½\87\9fnÆùv¿¦ÞbÍ¥0yݺeÑ\94\8e^¹áóÍ]î\80¶çG|\95ì¼ÒtÆ»1\18Ti|²\84
+\8b2\fõ}\19 PÀú\ 5ÁñCù:ÇÑ\81Ùû\8a³Ñw=%\1eêâò¡%\ 1ë\1d»²¡L¯Ö\10Ù¯¶\91Uåa,qåÕŨ´1ÁÞI¦½"\98§\1a\ 1\8a\8cqIñþ´²\81Ñßd¹74kO\91ôÝ_õÖ!ý£\1a\9d\f\8eéÖ%\9füG¸û\84¹"æ!R    7,\85×úãâF\9a\8b\ 6\ 2½Ï¨¤5\9b_\15\86\97À\92¸\83\9aBtõÒ\982\19J\94\1aªìb@Q\99¯Êcm\15\a¤¶éÑG"î¦,\1e\8a¬æë¡åª\81\900\85\18\99\9f\83$Ï\ÏØ\87\ 1ÃO-;Ù@û\ 5ö\ 4z\f\87G¡áZk\93W\ f\1eMZ(0\ e0H\9208¿#\18\b»\0¼!\ 6Üû\ÿvY\97\12Ý&&þ\83±àNußâkú\12\16o/FD:í\1c½,S%å\vÉb>\80Kó=ãv\93ÂÎ\8fÁ\10ö\11     2¢Q\97Ù   >\80õ\91}Pt\14²O8§\80ìëº\88áã\1f®\1f¸¬Ô\93÷²    ú\ewÍý\¶EH¸ílyÚ\16´°§ñy ë;ú}ö\86\10\90u\94O%!àõ$¾\82èÒÛ´·;\1a$þîö\8b­\ 1ÉÉØE¦Æòù\91²Q*\9d.³pf¢\1e\90\9b½9±v²Õ:Ó3í´ÏÓt)éÇAyz~\ eÒ\90ÿåCüÿ\ 1ÿ'\ 2\91p4ÆÉ\ 1\8e¶#&þ\a"f\8c3
 endstream
 endobj
 659 0 obj
@@ -6167,7 +6179,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-6 -233 542 698]
-/FontName/PTTIWW+CMTT9
+/FontName/XWDNZO+CMTT9
 /ItalicAngle 0
 /StemV 74
 /FontFile 658 0 R
@@ -6184,7 +6196,7 @@ endobj
 >>
 stream
 xÚí²S\94.̶¦\99¶íü\92+mÛ¶mÛXi®´­\95¶mÛ¶m\9bõï³ûT\8fÞÕ75ê®GGÜÄ\9có\8d7\9e\98\11dD
-Ê´\82&öF¦böv.´\8ct\8c\\0aY\15\15N\0#\1d\ 3\f\19\99°\93©¡\8b¥½\9d\88¡\8b)\17\80\91\93\93\11 èj\ e`b\00²q±°q1±ÀÀ\90\ 1\84í\1d<\9d,Í-\\0\14Â\94ÿR±\ 3\ 4mM\9d,\8d\rí\0²\86.\16¦¶ÿ\98\18\eÚ\0\94í\8d-M]<é\0\0A\e\e\80Ò¿¶8\ 3\94L\9dM\9dÜLMè``\18\19\ 1&\96Æ.\0#SsK;\18ú\7f1IÚ\99Ù\ 3Øÿ\9d6quøï\92\9b©\93ó?\\0\8a\7f8)\ 1ÿP\9aØÛÙx\ 2LLÍ`èåìÿ9Íô\1f\96ÿm¬ÿ\17ªÿ4\17sµ±\913´ý\97ý¿úô¿\94\rm-m<ÿ/\81½­\83«\8b©\13@ÖÞÄÔÉî?¥ê¦ÿf\9355±tµýϪ¤\8b¡\8d¥± \9d¹\8d)\80áß)Kg1K\ fS\13\ 5K\17c\v\80\8b\93«é\7f¥MíLþ\93á\9f¶ý\17\ 1½\82\8a\8a¤º:õ¿_ôßE\ 5CK;\17\15O\87ÿéú/õ\7fÅ\8cÿwüOw\9c,=\0Ú\ft\f\f\8cÿ\bÿ\99ÿ½Òý\8fÃDí\8cíM,íÌ\ 1Ê.\86v&\86N&ÿ3ñ¿B            Ù{xѲ\ 1h\99\98\99\ 1¬,L\06N\ e\9fÿ§LÕÎÒÑÕTR\ 4ÀÊÀÀÀÁüo&cW''S;\97ÿú\ 3ÿ\÷¿c3Ë\7fzcjêaj\f\93\99\85n    ¬O\83OýdðØ»D¬Þ>µ¬\0ÓUt\95Æú\9c\8b13z\vk\ 3N·bõ'ÄZáq\15þýB!*õ\95\82\90?¬ÎW\96;®÷YoÀÓ\13§r\13\83Êl¢S{ÿ\89«*ú\84v\ eµI\v\84¾çÚ4ªM_»\81:\97ÕK\ f\1cqëÞ$×Å¡ûn\88\b»ùciÄ·{ͤR\8bº{lµá0â¨\ 3\88ËxIÔ]:\81:[ÿ¹\16ÂnZØD\v\15˳\96        ÕÇ6\909ä[õA\80VÕo¡QÂúÐ49\139ìÅö%P\ 6U˯!pp\ f\17~çT­ùATi\¢_Z}+Xâ½_}p\8d¿\8ex\8f(vÁ:½~%»ªµØ\fõ\ 6\194óÄ\ 3£$\7fÙ\83pw9ërÀ\88©úO\9eSÍn²2U\94ß#ì\96\94þLóäW¬ó\90\13   &Ë®A\96¹ð520¢©g ,\9b·$DFߢºAïttß±/õ\85S·-\85'\92\8a/®t\13©i\8b¦ø<iz É/-\1a\16\18<´^a\8aIJÖ!¾}'~ücÖß\94\ 4h¡ü6hÈâ^|¹.àÔ\f\85}7 \15L²æA\90{\13 #å?e°Î©Ê\1e\9d\vÏåÍä\ 5\86Ýþ\16Ã\b[°Ô\87%\1d\8f7ùxýl\90=¾dj}^\9a$+µ\9f ¶úç.<ª÷\1d/t\11\86éÚ˼\8e`¹!­[ZAk\90În\85Õ±p`¡\10\1d9ÁÃ\ 2C´0É\rº\1235Ë\17\aË\17\b«Q((\ 1Qe|\ 2\86â\ 2%Þ"Ö\9e´ IjBÀRºªí©\bo>SK­\9cÏD¹JsPZ\ 4f\ 1\86\v\95 ¿FB\9dI¯N\83429\8fæ\94<\19 '´ .̱\vegq\rÅ\ f\84­7ê\ 3ѧy)\vêvF¨×\84^'\98Ý\1a÷h~\94K\12×XYl.¨>Y(¦\12Q\87\1d\91Éh°·YÐÕÒ3j\0Ë\15\vôNP\95¿úGVùú·×+êZ3Ó\ f'\94\ 2ѳz\1aµ(죭\1f*¶7'6/j,\93êüpw}\90náÚÅï?\9em\10\rb)Èa\9b:y:ºZ:;®²\98HØòï\ fßTru%<\17ÖÜö\81\83#6CZ\8c\aTN\81}\vqÒÓ\86\0+\0wbÕá\9c£øN6\85#âÐã\17¨\8ce¦mÎ\9fL\81\17²×ã]j\97pÊ-ÏÖO\:/7lèòÛ¿\84ü0CIaµó\ 1\8be:dÓA0J$ËXÅ,\8f\8e\1dD\ 4Ò`ËuÑ¡Þ3s\96rè¡\9a\vC+7\9f\8bî¼]­B2\ 1.h·°äÊ\9a!\8e\ 3Ok\8eä\8e¹§Mª\9f£o5CþY#×\86\8cÇF\a\v\10vX¼°æÈya\10\8däB\99"J8\v÷\aüE,\8c(hÀúþ\14u\15\7f®\89Å&C}>\1d\99«\97\94#\ 6\9a\9c;\ 2ñP\ 3 \7f\1em-\1c÷\93\ 3µ\1fí\95\9e&G¶ô\1c%\85ZÂ<SCÂRÎ\849÷ôÿ¨³jà.$õoá\aðÖ$àS$§\82EçøçNEyë\a\8bQ¬E$!\15:¯t4:\8d_\0
+Ê´\82&öF¦böv.´\8ct\8c\\0aY\15\15N\0#\1d\ 3\f\19\99°\93©¡\8b¥½\9d\88¡\8b)\17\80\91\93\93\11 èj\ e`b\00²q±°q1±ÀÀ\90\ 1\84í\1d<\9d,Í-\\0\14Â\94ÿR±\ 3\ 4mM\9d,\8d\rí\0²\86.\16¦¶ÿ\98\18\eÚ\0\94í\8d-M]<é\0\0A\e\e\80Ò¿¶8\ 3\94L\9dM\9dÜLMè``\18\19\ 1&\96Æ.\0#SsK;\18ú\7f1IÚ\99Ù\ 3Øÿ\9d6quøï\92\9b©\93ó?\\0\8a\7f8)\ 1ÿP\9aØÛÙx\ 2LLÍ`èåìÿ9Íô\1f\96ÿm¬ÿ\17ªÿ4\17sµ±\913´ý\97ý¿úô¿\94\rm-m<ÿ/\81½­\83«\8b©\13@ÖÞÄÔÉî?¥ê¦ÿf\9355±tµýϪ¤\8b¡\8d¥± \9d¹\8d)\80áß)Kg1K\ fS\13\ 5K\17c\v\80\8b\93«é\7f¥MíLþ\93á\9f¶ý\17\ 1½\86º\88\9c\96<õ¿_ôßE\ 5CK;\17\15O\87ÿéú/õ\7fÅ\8cÿwüOw\9c,=\0Ú\ft\f\f\8cÿ\bÿ\99ÿ½Òý\8fÃDí\8cíM,íÌ\ 1Ê.\86v&\86N&ÿ3ñ¿B            Ù{xѲ\ 1h\99\98\99\ 1¬,L\06N\ e\9fÿ§LÕÎÒÑÕTR\ 4ÀÊÀÀÀÁüo&cW''S;\97ÿú\ 3ÿ\÷¿c3Ë\7fzcjêaj\f\93\99\85n    ¬O\83OýdðØ»D¬Þ>µ¬\0ÓUt\95Æú\9c\8b13z\vk\ 3N·bõ'ÄZáq\15þýB!*õ\95\82\90?¬ÎW\96;®÷YoÀÓ\13§r\13\83Êl¢S{ÿ\89«*ú\84v\ eµI\v\84¾çÚ4ªM_»\81:\97ÕK\ f\1cqëÞ$×Å¡ûn\88\b»ùciÄ·{ͤR\8bº{lµá0â¨\ 3\88ËxIÔ]:\81:[ÿ¹\16ÂnZØD\v\15˳\96        ÕÇ6\909ä[õA\80VÕo¡QÂúÐ49\139ìÅö%P\ 6U˯!pp\ f\17~çT­ùATi\¢_Z}+Xâ½_}p\8d¿\8ex\8f(vÁ:½~%»ªµØ\fõ\ 6\194óÄ\ 3£$\7fÙ\83pw9ërÀ\88©úO\9eSÍn²2U\94ß#ì\96\94þLóäW¬ó\90\13   &Ë®A\96¹ð520¢©g ,\9b·$DFߢºAïttß±/õ\85S·-\85'\92\8a/®t\13©i\8b¦ø<iz É/-\1a\16\18<´^a\8aIJÖ!¾}'~ücÖß\94\ 4h¡ü6hÈâ^|¹.àÔ\f\85}7 \15L²æA\90{\13 #å?e°Î©Ê\1e\9d\vÏåÍä\ 5\86Ýþ\16Ã\b[°Ô\87%\1d\8f7ùxýl\90=¾dj}^\9a$+µ\9f ¶úç.<ª÷\1d/t\11\86éÚ˼\8e`¹!­[ZAk\90În\85Õ±p`¡\10\1d9ÁÃ\ 2C´0É\rº\1235Ë\17\aË\17\b«Q((\ 1Qe|\ 2\86â\ 2%Þ"Ö\9e´ IjBÀRºªí©\bo>SK­\9cÏD¹JsPZ\ 4f\ 1\86\v\95 ¿FB\9dI¯N\83429\8fæ\94<\19 '´ .̱\vegq\rÅ\ f\84­7ê\ 3ѧy)\vêvF¨×\84^'\98Ý\1a÷h~\94K\12×XYl.¨>Y(¦\12Q\87\1d\91Éh°·YÐÕÒ3j\0Ë\15\vôNP\95¿úGVùú·×+êZ3Ó\ f'\94\ 2ѳz\1aµ(죭\1f*¶7'6/j,\93êüpw}\90náÚÅï?\9em\10\rb)Èa\9b:y:ºZ:;®²\98HØòï\ fßTru%<\17ÖÜö\81\83#6CZ\8c\aTN\81}\vqÒÓ\86\0+\0wbÕá\9c£øN6\85#âÐã\17¨\8ce¦mÎ\9fL\81\17²×ã]j\97pÊ-ÏÖO\:/7lèòÛ¿\84ü0CIaµó\ 1\8be:dÓA0J$ËXÅ,\8f\8e\1dD\ 4Ò`ËuÑ¡Þ3s\96rè¡\9a\vC+7\9f\8bî¼]­B2\ 1.h·°äÊ\9a!\8e\ 3Ok\8eä\8e¹§Mª\9f£o5CþY#×\86\8cÇF\a\v\10vX¼°æÈya\10\8däB\99"J8\v÷\aüE,\8c(hÀúþ\14u\15\7f®\89Å&C}>\1d\99«\97\94#\ 6\9a\9c;\ 2ñP\ 3 \7f\1em-\1c÷\93\ 3µ\1fí\95\9e&G¶ô\1c%\85ZÂ<SCÂRÎ\849÷ôÿ¨³jà.$õoá\aðÖ$àS$§\82EçøçNEyë\a\8bQ¬E$!\15:¯t4:\8d_\0
 iY·~\14Ü\10 î\97#ò;Wö*\9cØ\93¶rÚqüØQ\89\1cä¯Ý4Ôð­\9e
 ß¬tl1x\9dq,\8axl\1em=!Û\12XåÖÿµ 
 ö8vØa\vçáP>g\ 1¼\93\12\85ËØ%ÍHÚ©!Ü_\9fÿª\93=×ç\19¢wU\98ºÜwÏÁ\8bÿö\97æÊ\92ù\$dXÎ×(ùBÕÑ«äh×,\8eÆÛ\e\1c#b¥\ 2\95K)ìZóèÎØßsÈk\1a¬#+2© \96ifþ\ 2rÄÓÿ,\93+   Ô\89Ihy: \99\ 6\8e2¢ÏË
@@ -6239,7 +6251,7 @@ G
 Á(è\80;\81IÂßî\18\1dF×l{»\12cêâ\91é\13V\8a\9c\16Ĺu¤\ fTvâCb¬\18½Û\93Ã\bÄ\96Ð@`\86S9L¥ U`uÜ\15ÝoszF\15Z\93\12j\90Ô,÷>Ì\fsÖ}ö*\14\9b\a\97A\bl§¦N\9a,\90¹\10\13\f
 Ê/\15\ 6¼\12\88%å¯Ì\ f\1a\16X\ 6F¡`ððîie½\ fæª\bÓãú\ eQC\98ÊDÓñiæ\91$Ñ3Ô¸åEôÎ\1e\85'\8e\85#àÈq`hÜ©µþMLÅ\13Ý[Ê5    ¨2?û8i\14è\7fHq\12q\9e\8e91ÂlѺÅ\ 2Òî´û6k\1a2Ë.¿{ä\82Í+\9c!\810\95Ü\99\80üý#Ú\10\f\9fg+üø?u§m\9e\8f\88\9fn!\ 2Å\10â|-ä{!£\1ft      \90\0líèà^Â\ 4\16¨tk­z
  \9a¨#Y·{¦\e \1fê?\97Q\1du\f\1f26Ããë*OK\10æ\ f\9fú³&°,ãµÂ«X¶Á³ÛAWà\rûÈ\ 1Ê´\ 4gÄP\ e\v"\91\9bOÖ¢X\13\v\Q\9fíÅõvÒJEåg°5P\ 1¬Äø\e°Æ\92\b\88
-8öææ¬Q¨\94\ 4\88f\1c£)²Å¹A1\89#\19D¢¢\95ûaÙ\18\94\84®L¶°       wtÄÎ])\ed\8d7óúæô&\19ÏÀI\\ 4WxkdåfqàEÝ\90¡l½m\84ßB\80ãÎõè+\ 6ö&¨ë\0©Zês\86ÿÃ\ 1óÿ\eü\7fÂÀØÆÔÐÉÅÞÖÐÉ\1a\ 6æ\7f\0\9dʾL
+8öææ¬Q¨\94\ 4\88f\1c£)²Å¹A1\89#\19D¢¢\95ûaÙ\18\94\84®L¶°       wtÄÎ])\ed\8d7óúæô&\19ÏÀI\\ 4WxkdåfqàEÝ\90¡l½m\84ßB\80ãÎõè+\ 6ö&¨ë\0©Zês\86ÿÃ\ 1óÿ\eü\7fÂÀØÆÔÐÉÅÞÖÐÉ\1a\ 6æ\7f\0\99\95¾G
 endstream
 endobj
 670 0 obj
@@ -6249,7 +6261,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-35 -250 1148 750]
-/FontName/YOOZZS+CMTI9
+/FontName/PKXZUV+CMTI9
 /ItalicAngle -14.04
 /StemV 70
 /FontFile 669 0 R
@@ -6265,18 +6277,8 @@ endobj
 /Length 1582
 >>
 stream
-xÚí\92{8Ti\1cÇQQC(\94t\99WaIÆ\19\19s\91e\f£Qn\91\98sp\989SÇÌ\98Q²ÒÅméÞJ¢²t[\92x\92IE÷2i[\92\v\8bM×'Ä\96È\ e¶íYí?ûì\7fûìyÿ9¿ïïû~ßÏû;ÇÔØÛ×\8a \v#\10\10\13Y\91Id\ 6`yøqè\80L\82\b¦¦,\1cá\8aP!æÂ\15!\f@¦ÓÉ\80)\8e\ 2d\1a°!3 \1a\ 3¢\12\b¦\80%\'ÃѨh\110gY\8cº¨\80)@p\94ÇÅ\80\aW\14\8d\b\94!<.\1fø
-y("\92\91\0`òù`Õè\96
-\89Cp    \ 2\93\b\ 42\19À(O\ 4"\90(\14#X\8f2q°H! \8e˰xݧ\96\ 4Áã\94\À\Éi\ 1\94\94°\10ãË\0\8cD\12¬=\85ÊÓ\10%Ë?Æú\eª\89ál1\9fïÉ\15\8cÆ\8fÎé\8b6W\80òe\7f\18\84\82ub\11\82\ 3\ f!\8càØDk\02Îæ\81À¨X0±Ë\11qù(\8f\89\11`E¶%A¶ã:\1aÇF¥\bì\8d\8axÑ \92Ë\8fCÆt\ 4\83'\92(\877Æa\1däå\15\1cìk9þ]Ç\9bÞ\\14\13ùÉÖ!\0úì\1e«É\9f\8cpT
-Ö@$\b"+\8dÊõé-tÂa®\18O\b£X\14ð\15q1\98\8bÃ\7f
-_B9;\v¥\e¬\96R\80\95\r\ 5\ 2d²-\rP)Pâ_\8d«1t½\18á¸\0
-\ 4A4\eê\98Ê\13ã8\82\89Æþ\ 5å\85\91¨rF\b"Ex\84Ü\83\ 6¨jØ\92ù\96ýáo/5.\f8¯èJùþ&\9dþµêW\1ag7i\11\v\13ÍÝ\17´æ©\16î\7f\80Ë\8f]eѲ\ 4\97î=¾²ÇÍÉM{\9aþÀÚ\ f\1aÔÓ[çZ\16ë\1d/дkH,\92WX\80ª\8aC\1f\ 3ãmÕ\12\96­E"OÜ·ù(\94+î1¥j\9b\17Û'7\19JÅf\ e±\17
-VÈ\a:·ë¼þ!¼grõ²`I¤nÛ\8c\92"÷XÝ\r\9a\93YùGR32ëvÙT§ü\86\ 6\9fO~c¦Õh\92q\b>ج"/7egÊFNUÕCv½¯6T\86ÞIe\8c|Ëónê.5:8ß*©¾uåê\95\9b(:& PÈz<\93=cùÆG³\ 5®4¿\8ayçÞëjö2ÓrkÞ%\ 6ôè­\rüN/'Äc\9bbç#KjÀ\9el;\9f\85}V[Â\90\ 3Y{Õ²\ fªFo\9d³_/$J!ñëm÷Zد7ã\84ô­S×Ð\92À\81\8e\1dÄ\86õg\1aíÍö_TÈY\1f]§nÎpó\7fQCüzëL\1ffDyµ\v\87\81ô\18U\b\9e÷¬\1aV\95gÀ¤pãRÕ\9c¬VIåá]ùÕù\85ÃF,Ía\17¸ÂQ¬\11\16yÝlhRRí²7\afg\ f\85ïÈ\8eo~\9e÷\vù1ñvpL\8egpVȵ&\vÃ\9d\1d\92½\8f\ 2\8ftܵ¿yX\9aZ»7H\91Mm£\*¡´÷u·\1457\8aÞ\ 6\9c¦­\1d\9e5ãÒò*\85\84îx±@}xÑ\ 3ç»OUÃ)aÏ|ÕÊ,\8e\99\\97¹çunb3\92Z\9d\87ñª\16Ç\93u¿\86î0M¿yùå\ 5;¿²I\85©ëÃ\ eiù\ 1ú±Ò\98£9×Fè}\11É<õÃ?\9fJ)¼a«;iºHÛ`\96\7fJ7k`¯ì¥¡I\1dJyå6e\9f5g¥\93¾
-d\1f¤®ßÕr¬Õw¸eªã\r¿.ÊP£¸<½ÐÁ!Ä\9dÖ\18[zÜìᤦÜ_J-½Í9Þê»[ÚÂTÊ\r\833\f\v*½Ìó\97ö÷¼|¡ß´'xaC{o\90\ 6¿ªl~ÚníÀ÷a¦\9d\82 ùÄíUé\ 2Ïø\8d\90½û\94\ 5\ eÅ%>N\8a¼AÕômèé
-\1f\14\9bãѸ² â9ñ­ú­íñ;:îµ\1a\9e\8a\1cyÇùé°óíyFW\a\vJ¦¼¡?©\7f\89µ¯Î>:øâôý×UÉ]Üáî´¼PÏ\91f.Á¸ìuÎôi)\ 2ñ­¤ô\ e\7f\ 5M­Úuð\80ö\1eÎ\87ý¯æ,í\8bF\17%
-s3\8a\9e¶=<3·¶\8bÑ\8f\99×¶¦w\12ih1qQdÂÙíDã%гìîcv-\ fúã+U\ 6t¦ÐäXî\95æ§ëãÃO2\12$>³\8f³ã\12fIÖÔ×/V\fâ\9e\8f\9a\87\1aÎÕU¥%Ʀ\19\b\ 2òc$
-3+\ 3-\E«ì}ñ7\9a)óÄ\r\15²¸\15y¤¢YË\93\r\fr
-c\1cUÈò&¿ío2hî   ×oLý\10£YR£\15mÄÞÖéÐñ\9aç²Ì\86Õ;9§\92Ä\17¼¯ ÿ±â\8e£Å\16vÃemóUöq\r5ê/Úb4¦Ñ§\99\ 4*¼&WÞ!\86¤ø¤/¶¼ónE§SVû\95Ô¥Ô§süoÏe\ e\99õ\85\17\9d×\13£\11\8f¯y_Öi-\ eÚ½Ïû\88#ô/\1fÂÿ\ 1ÿ\89\0\1e\1fáâ"¡\80\8bÇ\12\b¿\ 3OuQw
+xÚí\92{8Ti\1cÇ\91¨!*\94t\99·Â\92LgdÌE\961\1a\8d¢\91»\14cÎÁaæL\1d3cFÉJÉ¥¥{+     eé¶$ñ$\93\8b\92\wŦë\13bKd\aÛö¬ö\9f}ö¿}ö¼ÿ\9cß÷÷}¿ïçý\9dc6\9fëeÍ\84\b[\84\89­É$2\ 3°Ü½9t@&A\ 433\16\8eðĨ\b\89\11\ 6 ÓédÀ\94\84\ 32\rØ\90\19\10\8d\ 1Q  \ 4\12m\90ãhx\84\18X°,G\TÀ\14"8ÊçaÀ\9d'\8e@\84ª\10>O\0¼D|\14\11ËI\00\ 5\ 2°fdK4X\83D#¸\14\81I\ 4\ 2\99\f`\94/\ 6¡H8\8a\11\96\8c0q°0\11 \8eɰdç\96\14Á£U\ÀBÅi        T\94°\b\13È\ 1\8c\84\11\96x\88T§!*\96\7f\8cõ7TãÃÙ\12\81À\83'\1c\89\1f\99Ó\17m\9e\10\15Èÿ0\88\84\e$b\ 4\aî"\18Á±ñV?d\8cÍ\1d\81Q\89p|\97#æ P>\13\v\17 À\9alK\82lÇt4\9a\8dÊ\10\98\8b\8aù\11 \8c'\88FFu\ 4\83Ç\93¨\867ʱ\84»Ò?ÐÇ×jì»\8e5¹<\14\13{Ë7 \0úì\1e­É\9f\8cpT\ 6ÖB$\b\8cªõémݸÃ\96c|\11\8cbáÀKÌÃ`\1e\ eÿ)|        åì,\92m²^J\ 1Ö6\14\b\90ɶ4@¥@q\7f5ú`èF     Âq\ 1\14\b\82h6ÔQ\95/Áq\ 4\13\8fþ\vª\v\7fªÃPÕ\8c\10D\86ð Y\87\8dPõàÅs­úBÞ^®[àwAÙ\99øým:ýkõ¯´ÏmÑ%æÇY¸ÍkÎVÏ?ø\bW\1c¿Î¢¥\v/?h¿¶ÏÕÉUo²aÿú\ fÚÔ3Ûg[\15\1a\9cÈÕ±«\8d+P\94Y\82\8a²#\1fýcl5b\97­GÂN>´ù(R(\1f0e\1a[\17Ù'Ô\eË$æ\ eQ\17sW*ú;vè¿þ!¤[³rY 4ljË´¢\ 2·¨©\9bt4Y9G\93Óv^ÝcS\99ø\e\1ax!á\8d¹n\9d\11øp\83\9a¢Ô\8c½S>|º¢\ 6²ëyµ©|ݽdÆð·|n}W±Éá¹Öñ5Í«|Vm¡è\9b\ 2\7f\11«}:{Ú\8aÍM3\85ËiÞesο\9fªÓÃLɪz\17ç×m°Þÿ;\83Ì ÷$åî&+ªß¾\f;Ϥêü^ëmÁÈ¡ôý\1a\19\87Õ#¶Ï:h\10\14®\94z÷´®^Ðg0í¤ì­Sçàbÿþ¶]ÄÚ\8dgëìÍ\ f^R*X\1f\97\9aæêû¢\8aøõöé\9eÌÐÒJ\17\ e\ 3é6)\13>ï^3¤®H\83I!ó\8bÕ3Ó\9b¥åy{r*sò\87LX:C.p\99£D;8ì¦ùà\84øêeo\ eÍÌ\18\fÙ\95\11Óð<û¹üJ;ñn`d¦G`zÐ\8dzKãÝmÒýMþGÛîÛßÎ\93%Wï\ fPfP[(\97\8b(­½]\8d\ 5\ruâ·~ghë\87fL»¼¢B)¥;^ÊÕ\1aZøÈùþSõ\10Jð3/\8d\12Ëã¦7ånÙ\1d\8cøfç!¼¢ÑñÔÕ_×í2K½}ååE;ï\92 ùÉ\e\83\8fèÁY~\86Q²Èc\997\86齡    |­¼\9fO'æß²\9d:a\8aXÏh\86ob\17«\7f¿ü¥±éU\94òÊuâ\81%\9cUN\86j\90}\80\96agãñf¯¡ÆI\8e·¼;)\83u\92ÒÔ|\a\87 7Z]Tñ        ó\ fGâë³~)¶âZp¸Z{\e[\82ÕJ\8d\ 3Ó\8csËW[ä,íë~ù°~_à\82ÚÖ\9e\0mAEÉÜ\94½ÆÛ\81×ã\9dvJ\82Î\13×WÅó<b6Cön\13ç9\14\16y:)³\aÔS\93Ð3e\9e(6˽nUnèsâ[­;;bvµ=h6>\1dj±sø\1dç§<ç»sL®\ fä\16M|C\7f\12kõÉ86ðâÌÃ×\15       \9d¼¡®\94ìu\1eÃ\r<Âü\92×\99S&'
+%wâSÛ|\954\8dÊå\ 3\87ôöq>\1c|5kio\ 4º0N\94\95Vð´åñÙÙÕ\9d\8c>Ì¢º9µ\83HC\v\89\vÃbÏí Î_\f=Ëè:n×ø¨/¦\­_\7f"M\81e]kxº1&ä\14#Vê9ó\ 4;:v\86tmMÍ"å\0îÑÔ0X{þjEJ\T\8aqC¤Ð/'Rª4·6ÒÅÕtKÞ\17\938GR[&\8f^\99M*\98±"ÁÈ(3?ÒQ\8d¬¨÷Þñ&\8dæ\16{óÖ¤\ f\91:EUº\11&ì¤\ e\87¶×|\97e6¬\1eÍÌr\92@ø¾*äDz{\8e\96ÛØµWô,ÖØG×Vi½h\89Ô\9eL\9flê¯\­Y~\8f\18\94è\99ºÈêÞ»\95\1dNé­×\92\97R\9fÎò½;\9b9hÞ\eRpÁ@\82\86¶ßà^Ño.\fØ{\80\11ú\97\ fáÿ\80ÿD\0_\80ðp±HÈã\b\84ß\ 1$ÊQq
 endstream
 endobj
 673 0 obj
@@ -6286,7 +6288,7 @@ endobj
 /Ascent 850
 /Descent -200
 /FontBBox[-39 -250 1036 750]
-/FontName/VPLCCO+CMR9
+/FontName/JBWKPP+CMR9
 /ItalicAngle 0
 /StemV 74
 /FontFile 672 0 R
@@ -6302,7 +6304,7 @@ endobj
 /Length 9865
 >>
 stream
-xÚí\92UT]Ѷe\81à.  .\a\82»\ 4www×\ 3\1c\\ eî.ÁÝÝ      îîNp\ fîî\1e\ 2/÷Þz¯ZÝW?Õê¯Zíý³ç\18s\8fÕ×\\8b\82TI\95AØÌÞ\ 4(ao\af`adá\ 1\88Ê«p\ 3X\18\99\11)(D\9d\80Æ`\90½\9d\981\18È\ 3`áæf\ 1\b»X\0X\99\ 1,\1c<lÜ<ìÜ\88\88\14\0Q{\a\ f'\90\85%\18@-Jó\8f.N\80°-Р       djl\a\907\ 6[\ 2mÿ\86\98\1aÛ\0TíMA@°\a#\0 lc\ 3PùÇ/Î\0\15 3ÐÉ\15\88\88ÈÂ\ 20\ 3\99\82\ 1&@\v\90\1d"Ó?\90¤íÌí\ 1\9cÿ\92Í\\1cþÓr\ 5:9ÿå\ 2Pÿå¤\ 1ü¥4³·³ñ\0\98\ 1Í\11\99\14ìÿ®\ 6üËò\7f\8cõ¿¡ú÷p    \17\e\e\ 5\7fÄÿ\1dÓ\7fs\8dmA6\1eÿ÷·up\ 1\ 3\9d\0òöf@'»\7f\ 4þ\vM\1eh\ 6r±ýwW\1all\ 32\15¶³°\ 1\ 2\98ÿ%\81\9c%@î@3%\10ØÔ\12`nlã\fü§\ e´3ûw\88¿cû'\ 2\93\86\92\9c¨¨"Ý?\ fô_\9e\92\ e¬æáð_©ÿhþgÍò?ë¿Ãq\ 2¹\ 3t\99\19\99\99Yþ6þ}ÿóKÿßÖ\12·3µ7\ 3ÙY\0TÁÆvfÆNfÿ%üw&\11\11{w/\ 66n\0\ 3+ûß\vÄÌÆ\ 1àdgöù_\eÕí@\8e.@i1\0;333'7ë?US\17'' \1dø\9f\97àï~ÿ³6\aý\9d\ e\10è\ e4EÌÌú\ 2\824¤'¢{0ºï]$Ólÿ¹¤\84ØU|\91Æþ\98\87==z\8dd\ 3øl\15\16b­t¿\82òz¦\14\95úLM"\18^ç+Ï\e×ûh0àá\81ÿc\1d\9bÖ|¢Sw÷\81§*ú\88a\16«I\a\8a©ç\12\18Õf¨Û@\97Çîe\0\83¶qk\96\avè¾\19"Åkþ½8âÛ½jöC\87®{l¥a?ò \ 3\82ÇtQÜM6\81.Ûð±\16ÖnJÔL\a\v×£\96\15ËÇ6\90-ä]ýN\88AÝo¾QÊRw\ 3p\ 6³xÔ\8fi̺ǣ]\8a\ 3\8b°~\1f\86¯\ fÅ\97óàÃf²z»\$Ô\ 1ê\ 1²\99¡\ebßÏ\³\a¾ü¸à\87\99t\95ÊÄÞ{\8d\143J\9a\87વ\9b¼(\0Ý\9e¶Íf¤\8f¼p¿¨Å\ 2ltÄ=ñ¨\90è\ 2\ay\11\88ÞÔ\9d%b*\ 4<eX\9f¡©ãW\fdqÑ&&\98ãçüQÕF}\82§²ª,AM\15\1dÝ\92÷È\96\1ei\89st®*É;\879l\15Ðß}W¿\17ùO\8dÇß\9d=_\85¼gp»Æ¥P¶é\f%¡¨¾Ô\92}Y\91\11\vò*0\98Õ\9bBQR$bS\ 2j+ò\8e\92«Á\b¹ÄON`L/\98é\97 ¤ #%Þ\84ÕN{¡«\8bö¶ EÔèSÊÚ@Ùñ\1cJü¸\11O\86\82:w¦&ÅØ;\84\9c¦û¹K¿wñøë«²Y\80\b\1a¥:Ó½$\ 38\rãÖÍò\v´ÒÌÌÙÞHnzNzSï-cu\aæª[`]W|}þ#­«0\85T\95\860\91\f|ïµc\7f?®éjU\8b\8e\ 4©¿ÀDp\7fÇW]\13$`DpýÊö ©/5Fg,
+xÚí\92UT]Ѷe\81à.  .\a\82»\ 4www×\ 3\1c\\ eî.ÁÝÝ      îîNp\ fîî\1e\ 2/÷Þz¯ZÝW?Õê¯Zíý³ç\18s\8fÕ×\\8b\82TI\95AØÌÞ\ 4(ao\af`adá\ 1\88Ê«p\ 3X\18\99\11)(D\9d\80Æ`\90½\9d\981\18È\ 3`áæf\ 1\b»X\0X\99\ 1,\1c<lÜ<ìÜ\88\88\14\0Q{\a\ f'\90\85%\18@-Jó\8f.N\80°-Р       djl\a\907\ 6[\ 2mÿ\86\98\1aÛ\0TíMA@°\a#\0 lc\ 3PùÇ/Î\0\15 3ÐÉ\15\88\88ÈÂ\ 20\ 3\99\82\ 1&@\v\90\1d"Ó?\90¤íÌí\ 1\9cÿ\92Í\\1cþÓr\ 5:9ÿå\ 2Pÿå¤\ 1ü¥4³·³ñ\0\98\ 1Í\11\99\14ìÿ®\ 6üËò\7f\8cõ¿¡ú÷p    \17\e\e\ 5\7fÄÿ\1dÓ\7fs\8dmA6\1eÿ÷·up\ 1\ 3\9d\0òöf@'»\7f\ 4þ\vM\1eh\ 6r±ýwW\1all\ 32\15¶³°\ 1\ 2\98ÿ%\81\9c%@î@3%\10ØÔ\12`nlã\fü§\ e´3ûw\88¿cû'\ 2\93\8c\88¦¬\92\12Ý?\ fô_\9e\92\ e¬æáð_©ÿhþgÍò?ë¿Ãq\ 2¹\ 3t\99\19\99\99Yþ6þ}ÿóKÿßÖ\12·3µ7\ 3ÙY\0TÁÆvfÆNfÿ%üw&\11\11{w/\ 66n\0\ 3+ûß\vÄÌÆ\ 1àdgöù_\eÕí@\8e.@i1\0;333'7ë?US\17'' \1dø\9f\97àï~ÿ³6\aý\9d\ e\10è\ e4EÌÌú\ 2\824¤'¢{0ºï]$Ólÿ¹¤\84ØU|\91Æþ\98\87==z\8dd\ 3øl\15\16b­t¿\82òz¦\14\95úLM"\18^ç+Ï\e×ûh0àá\81ÿc\1d\9bÖ|¢Sw÷\81§*ú\88a\16«I\a\8a©ç\12\18Õf¨Û@\97Çîe\0\83¶qk\96\avè¾\19"Åkþ½8âÛ½jöC\87®{l¥a?ò \ 3\82ÇtQÜM6\81.Ûð±\16ÖnJÔL\a\v×£\96\15ËÇ6\90-ä]ýN\88AÝo¾QÊRw\ 3p\ 6³xÔ\8fi̺ǣ]\8a\ 3\8b°~\1f\86¯\ fÅ\97óàÃf²z»\$Ô\ 1ê\ 1²\99¡\ebßÏ\³\a¾ü¸à\87\99t\95ÊÄÞ{\8d\143J\9a\87વ\9b¼(\0Ý\9e¶Íf¤\8f¼p¿¨Å\ 2ltÄ=ñ¨\90è\ 2\ay\11\88ÞÔ\9d%b*\ 4<eX\9f¡©ãW\fdqÑ&&\98ãçüQÕF}\82§²ª,AM\15\1dÝ\92÷È\96\1ei\89st®*É;\879l\15Ðß}W¿\17ùO\8dÇß\9d=_\85¼gp»Æ¥P¶é\f%¡¨¾Ô\92}Y\91\11\vò*0\98Õ\9bBQR$bS\ 2j+ò\8e\92«Á\b¹ÄON`L/\98é\97 ¤ #%Þ\84ÕN{¡«\8bö¶ EÔèSÊÚ@Ùñ\1cJü¸\11O\86\82:w¦&ÅØ;\84\9c¦û¹K¿wñøë«²Y\80\b\1a¥:Ó½$\ 38\rãÖÍò\v´ÒÌÌÙÞHnzNzSï-cu\aæª[`]W|}þ#­«0\85T\95\860\91\f|ïµc\7f?®éjU\8b\8e\ 4©¿ÀDp\7fÇW]\13$`DpýÊö ©/5Fg,
 ´M\ 4\b¤ðNýj?ï/
 "fY6÷×ç\84ï3)¡\15\9f\84~#×­K\8d¥\Å«¢]»\9bÛW\91y²G< \19©X\90\0Ïú 3bÎ3à¸ó <$ñ!w\94ôp\80\9fЪYoÁ\7fFGÝdQÔ`\a\82óg\1d,×kû5õ4\98ÖuH]\8d2«2è)\fD¬D)\8aÞ\98UG\1a\98Ø\9f:Æ*\94°\f\99ÉØ\8c^\99\13\92êæ²\fh\8b"ÞCÑvÊ<\fÊo\11"\13FÅ;\95È \1d+\1d      Jv¢dv1n\10\8dX\90Ñß³_N      ßÇ\8bß·ß0a\ 5c¥nAê\ fþ¹1×Ù=._F.9\b\8f¤¨µpTf°³ºxBà\12Ã4\92\86\94\ 3­Týb\9d\91\11ЭD\8a\93\13~\90­\ 4y©c;\9cØ»·|\ e\15qÿöÀ2 ~ËV¹ÿ\85gZ\15îçp×ï\aÍðÎë@KÌS~2Ä\1d\ 6!^Ç\90\81õ¾9\8c\9b÷£NÌ\92Z\98ý³è\8f\9c¢»ð½l«1Ëqøæ?]¬¤½è¤\vê\19ܶ"r\9fÛ±\93\85Î\18¦*ÅÉ2]n:V?\8b\8bÇ¿O\83w¢ÒúåFZ5õ×Òª\8aD]\8c\13¡X¸u\8e\1a\91:2$\ f5\87-4ê\v5xÖ\99z\85ä\16\1cä¸Õ@C÷.½é\94Þ,òähY§\93Ô¡Ã\92\99hÎ:M.åÃVV\8c\87öRÆo=Vã0g#D×{Î\11É\eìYá\92Ìõ\85:îCÍ\88gr\9f\89G1\13³l|;7gIè÷\a\*\9c\93\86RýH\99)DÐq\1cû\1e\13£·dpÑ\1dë¤\96Ç\ 5/   ¶\fú²«4"Ö\9b¦\99â"Íw"ìi\8dÝ@ô\12\86ýUa±\ fÄ´§3P_D£="¬V\9c½\86\93×\ 5Bc¾Q:¯Þ¦4´\15    AgA\ 3\ 1´¢)òX\8bé\99ø¡\88`õÏé9ä3s\at\8b]jAgR¢\8d¨ú·yù\9a\ 5s\ f¦7RdMp´\ 4!Ï}ÕKÅê8\89þG+þâþ\9c|\f¶Þûs+0\92\96\ 6ð\8fÔ\96·%YQ\1aò\1eäÃA'\17Ò\18x<Ç\8cá\1f\10¯IVÀê&d\82È\96òj\12%\8fF\92/P\85dæ5òYDQ¿}µ\86'®Z\89ù;w\9b\92\16óéÛ'\15\r\10é\8eÞ®Þ\94\94°ÜP»#<\86WÍm"üm^-9C¤\8e       Ôy\18·¶.Ú\9f±6\93¶¸u³Y(òD©r²wQ«8vÞ\88Ý\82BP#L76y0¶ÐTØ;'Sj\96×\1fÃþ$i"»"k/\9d\84ñÞ\88\90°C±WÞÒfÃIèV¼\12ì\12à×\16¯bë\90çÕâ`Â#\89bÚìÈ\e\98V¹æ÷\rÅÀ,¾\bZU.\9f\8cö\ 2\98\1a\8b\85©\9d\ 3/Û¾\15[\1e$Úqà[\97¨Óâ8K\88{d\ e¢té\13f\1c£\18}ö   \94ú|Ò\e\10\96="\ 5qD_\9eÿ³"eWk0ã\93Ì\9a       w-g\9d\r×  ÄV\10,W\1cÅÛ\11Æ*}þì\eq\911*ªöÆ­XNìd\9boßG7w\90]$·tNö\9aàÔË6rº\14&f\97®¢SðkáÍ÷ÎÆx\15\9fW\12\86÷\ e\fR\f\94ýhyãÓz¦)À\87ÿ\12ªÚ}O\10YT\b\14m\90x¢    \86v\95¯O\95µDÅøÃ$?!\1a\97)\19>\ 3\ 4\e\1aÜ]ÆË\14<»FÂ×¶§.Ó\84jeÓ\fMB t\0\9c\83¢\11\9bÙ"¨¾=yç\982\0º÷(\1c\ 4å-=\82\av|vßÙF(t\9e\84Ôº\r\ f\em&vÃ\18»3\83M\82\1c¹omqY>°n'ÄãsÛÆN0ÓÅëÖ6\97µçLØè3ýáñÀ×\86_»§ìÀDÚ},13]¨x-rá\12\9e:SÁà\8b×\95R<Z|\vá¶Ä\12ÒZÌ\b»ë`Þ©©îäB$(\92<x;!üåó/_³3ã\9eÞË\94"\15»\11\13º\8a#+d'O_2òJ1<Ï\9fÖ>\10íÔÝ\9a¥Y¹)        \7fÖ\ 6§\f\82_\15ûÑYýôª\ e½öaÇn&\1a\b\19Ü!ÅEG\8b²·í\1f=\98³M"º6\1döã8\10ÑeriY²1\9eÀºPéþ\13.ß8\1fXoK\1eÈÑ ØÍ`Èx²%cûqZX\8d\9d\99\1e»i\8aËλ\89·
 ¿\16µÝ~ÙÆ&nHC\9d`õ¾IË\86H½@[ôâ\84 ­c\ù³o=P´2´zB
 YPT?\93Ò\8f¿ë¼ö·\ 3z\82(uh½\9d\ 4Ñî%³Y\b\8dó\19bk\ 6\87\1c°N\ 2è7\9d«t\90ÐJ\ e\12°°4(\15\86DBðo«]­\9c\1d{})¯T`KA\98ô^\87¶¸/\1d\8e\16Ð\82\ e9\97\90\8dÈ _\83)\19T¿Vµ+3d>Û\18ªºe\9dF¶);¢¼Å¶\1f¼s \ f\99Â\f\8aÀ\14FOIÄÊÐ<\8ax\98\91Y\95úq\8eÞ\aÜÌ\ræ\86Ãà\ f+ÛB\91\89D\90~\ 5÷\97Ì\ e¨V\13ûÑzVCÛE=V´$;æ\956\b_þ´é\95¸ä\10c\87<ø>g\\99;õÓ É\ 5Ã=u\84³c\12âM\1cÚÿ\98\93¾Øð3\9c^~l\8b\16î´\9f6µà\98íì=+»>\97ö\91\97«ºßòÑÄR\ 1\92ØÓ~_MÝ\f»l\86}V\ 6÷ç\1c\vÕWk"\96´\96µ\9eñaÑ\19N\ eSìÜ"=Ñ?9Ùä\15»GubÍ¥åó\85©m`\v¨\b\92\11ùÊ_*_MH¨Ö)ß)\»çYjK\97úc^\15ñ\9b¾¥\87åWX¤%t]Ùãß3N\84µ?\ f?ù¦mGÙ\v\ 3B\9f%^\867~Ìä\85¥ê\93Æ?9\v3¥=ÄzÞ \ 5v\rç+\87\f°ûãØSÓnMk3Îúõ\16\ 4Ýy¿¯Ç¤2¸ò¢!\87\86\84\9eX"~W§Là»Ø=HÐÔT¢«\14[¬O¿±mÍõ\7fhÂÄØL\99½\8eR´s¨yâ\94éÚ\15à=ûî\7f¾U\81\15´3Gú­õ\8f\80Jv\ 1­N\r~\98ð¹þÍ\81ÉzañKaãT\8b\8b\10dÍGXn\8549ÓªûyEË\87Ù\92\1e+\10@(      C´$DÛäÄF© \84ÎÉ/»\9a¡\88d8Êc¿Î¤§)\86\12Â\0Ñx~L\v^9\83P\92é      U\1c´X\92½#fj\8f\81Üû]iÅu\1ex\17ì_\8b\v\97R*q\19\80Õ g\7fQÃy@¢\8e\ e\ 3\01\85\97ß\19k\14)6Å7\rX\95\11$9míè\rÔ\e\896O²8ð\14Ê5Nþ\9c\8c\9cÎMh\99j;oì\81\vICÆà&À\ 5\86älÄ\10f
 >Efr\8a\7f$×ÃV\aÐç\964/R\86\18T\88\ 1Ìk\97\e\98\97\aJ)êOe{:n`TokEfd\ 1BIò\88IÁSʾï)\9e2µ[eH\1f7\18Î\84ï<½5NíÙYG\97µ\ e¬\fue/ð\88+\9f\f&W\87$k8lnqo"C]ß\82\ f\8f§\15¹acqÀ\fÅou!¹\8b\8d\9f\13Ý#S¶\r\92;˵ì\89\12\9eç>C\18ìRuÐRu£§ûà\1cÜ4\90´.íC\80Ê\ 4\ 6 ÙW9\95ª3Ù"¤\e¡\b½6\97²\ 3aH¢3Ýà½\ 2\92\ 5DM¡Ä%\95\f\87\85\ 3\154;\ 1Qu<ôQeþhP\81£\86Çáq|\10\1cÔ£]aÃê(Õ,8\84§â\\1e?¢L6\85 \1aEo\93Úor"à4ÅN¢\10ü£\92Р\r¼|e\7fM¿\1a´$'àËcз\95ô¯+C\7fiyZd%$/#\84ù¨AõÛzîY68\97¥\ 6+\ fnhf\14\87\ 5\8aùy±r\ 6g]\1fÂß2;I;(l£|C¤¬\97\9bÿ2ÏÅéüÓ\96Ùç£FV­#\e\ 4\94Ým3B®\98ÊÉ\v;a#FÈ1\825\ 6:\94áå'Ä\13tpÏá!]Ð
 \1c\9dÏ-z\86Û\166Ù±çPӢǥ\ fKõu\9fêÈB\8bÊ\1f40Ý\ 4uúCdlP\86º~\0¿|çd\1f¼ö\ fþ(Ü\1f`ÅKÌâH   \90£
\9bzbþ¿|\10ÿ\7fÀÿ\13\ 1¦6@c'°½­±\935"â\7f\0C<{\83
\9bzbþ¿|\10ÿ\7fÀÿ\13\ 1¦6@c'°½­±\935"â\7f\0V\99{\8a
 endstream
 endobj
 1 0 obj
 <<
-/Creator( TeX output 2008.07.24:0912)
+/Creator( TeX output 2008.08.05:1031)
 /Producer(dvipdfm 0.13.2c, Copyright \251 1998, by Mark A. Wicks)
-/CreationDate(D:20080724091252-05'00')
+/CreationDate(D:20080805103136-05'00')
 >>
 endobj
 5 0 obj
@@ -8374,797 +8376,797 @@ endobj
 xref
 0 792
 0000000000 65535 f 
-0000514005 00000 n 
-0000539529 00000 n 
-0000539176 00000 n 
-0000539382 00000 n 
-0000514169 00000 n 
+0000514031 00000 n 
+0000539555 00000 n 
+0000539202 00000 n 
+0000539408 00000 n 
+0000514195 00000 n 
 0000004978 00000 n 
 0000000009 00000 n 
-0000394298 00000 n 
-0000394111 00000 n 
+0000394324 00000 n 
+0000394137 00000 n 
 0000000913 00000 n 
-0000407843 00000 n 
-0000407655 00000 n 
+0000407869 00000 n 
+0000407681 00000 n 
 0000001858 00000 n 
 0000002775 00000 n 
-0000425061 00000 n 
-0000424875 00000 n 
+0000425087 00000 n 
+0000424901 00000 n 
 0000003752 00000 n 
-0000539282 00000 n 
+0000539308 00000 n 
 0000004496 00000 n 
-0000539332 00000 n 
+0000539358 00000 n 
 0000004923 00000 n 
-0000514272 00000 n 
+0000514298 00000 n 
 0000009841 00000 n 
-0000441285 00000 n 
-0000441092 00000 n 
+0000441311 00000 n 
+0000441118 00000 n 
 0000005039 00000 n 
 0000005959 00000 n 
-0000453873 00000 n 
-0000453678 00000 n 
+0000453899 00000 n 
+0000453704 00000 n 
 0000007575 00000 n 
 0000008526 00000 n 
 0000009775 00000 n 
-0000514457 00000 n 
+0000514483 00000 n 
 0000014397 00000 n 
 0000009903 00000 n 
-0000455714 00000 n 
-0000455517 00000 n 
+0000455740 00000 n 
+0000455543 00000 n 
 0000010810 00000 n 
-0000457606 00000 n 
-0000457411 00000 n 
+0000457631 00000 n 
+0000457436 00000 n 
 0000011801 00000 n 
 0000012782 00000 n 
 0000014331 00000 n 
-0000514562 00000 n 
+0000514588 00000 n 
 0000016155 00000 n 
 0000014459 00000 n 
 0000016089 00000 n 
-0000514667 00000 n 
+0000514693 00000 n 
 0000017850 00000 n 
 0000016217 00000 n 
 0000017784 00000 n 
-0000514860 00000 n 
+0000514886 00000 n 
 0000019076 00000 n 
 0000017912 00000 n 
 0000019010 00000 n 
-0000514965 00000 n 
+0000514991 00000 n 
 0000024116 00000 n 
 0000019138 00000 n 
-0000463449 00000 n 
-0000463261 00000 n 
+0000463475 00000 n 
+0000463287 00000 n 
 0000020106 00000 n 
 0000021104 00000 n 
 0000024028 00000 n 
-0000515151 00000 n 
+0000515177 00000 n 
 0000024867 00000 n 
 0000024178 00000 n 
 0000024834 00000 n 
-0000515256 00000 n 
+0000515282 00000 n 
 0000027131 00000 n 
 0000024929 00000 n 
 0000027065 00000 n 
-0000515361 00000 n 
+0000515387 00000 n 
 0000027861 00000 n 
 0000027193 00000 n 
 0000027806 00000 n 
-0000515654 00000 n 
+0000515680 00000 n 
 0000030446 00000 n 
 0000027923 00000 n 
 0000030369 00000 n 
-0000515759 00000 n 
+0000515785 00000 n 
 0000033909 00000 n 
-0000468798 00000 n 
-0000468604 00000 n 
+0000468824 00000 n 
+0000468630 00000 n 
 0000030508 00000 n 
 0000031254 00000 n 
 0000033832 00000 n 
-0000515945 00000 n 
+0000515971 00000 n 
 0000036037 00000 n 
 0000033971 00000 n 
 0000035960 00000 n 
-0000516050 00000 n 
+0000516076 00000 n 
 0000038937 00000 n 
 0000036099 00000 n 
 0000038849 00000 n 
-0000516155 00000 n 
+0000516181 00000 n 
 0000041446 00000 n 
 0000038999 00000 n 
 0000041358 00000 n 
-0000516348 00000 n 
+0000516374 00000 n 
 0000043865 00000 n 
 0000041508 00000 n 
 0000043787 00000 n 
-0000516455 00000 n 
+0000516481 00000 n 
 0000046609 00000 n 
 0000043929 00000 n 
 0000046542 00000 n 
-0000516645 00000 n 
+0000516671 00000 n 
 0000049365 00000 n 
 0000046673 00000 n 
 0000049298 00000 n 
-0000516753 00000 n 
+0000516779 00000 n 
 0000052042 00000 n 
 0000049429 00000 n 
 0000051953 00000 n 
-0000516861 00000 n 
+0000516887 00000 n 
 0000054779 00000 n 
 0000052106 00000 n 
 0000054701 00000 n 
-0000517160 00000 n 
+0000517186 00000 n 
 0000058335 00000 n 
 0000054843 00000 n 
 0000058268 00000 n 
-0000517268 00000 n 
+0000517294 00000 n 
 0000061686 00000 n 
 0000058399 00000 n 
 0000061608 00000 n 
-0000517459 00000 n 
+0000517485 00000 n 
 0000064445 00000 n 
 0000061750 00000 n 
 0000064356 00000 n 
-0000517567 00000 n 
+0000517593 00000 n 
 0000067253 00000 n 
 0000064509 00000 n 
 0000067164 00000 n 
-0000517675 00000 n 
+0000517701 00000 n 
 0000070112 00000 n 
 0000067317 00000 n 
 0000070045 00000 n 
-0000517874 00000 n 
+0000517900 00000 n 
 0000072909 00000 n 
 0000070176 00000 n 
 0000072820 00000 n 
-0000517982 00000 n 
+0000518008 00000 n 
 0000075761 00000 n 
 0000072973 00000 n 
 0000075694 00000 n 
-0000518173 00000 n 
+0000518199 00000 n 
 0000078655 00000 n 
 0000075825 00000 n 
 0000078588 00000 n 
-0000518281 00000 n 
+0000518307 00000 n 
 0000081159 00000 n 
 0000078719 00000 n 
 0000081070 00000 n 
-0000518389 00000 n 
+0000518415 00000 n 
 0000084468 00000 n 
 0000081223 00000 n 
 0000084401 00000 n 
-0000518688 00000 n 
+0000518714 00000 n 
 0000087817 00000 n 
 0000084532 00000 n 
 0000087728 00000 n 
-0000518796 00000 n 
+0000518822 00000 n 
 0000090037 00000 n 
 0000087881 00000 n 
 0000089959 00000 n 
-0000518987 00000 n 
+0000519013 00000 n 
 0000092019 00000 n 
 0000090101 00000 n 
 0000091941 00000 n 
-0000519095 00000 n 
+0000519121 00000 n 
 0000093984 00000 n 
 0000092083 00000 n 
 0000093895 00000 n 
-0000519203 00000 n 
+0000519229 00000 n 
 0000095887 00000 n 
 0000094048 00000 n 
 0000095809 00000 n 
-0000519402 00000 n 
+0000519428 00000 n 
 0000098253 00000 n 
 0000095951 00000 n 
 0000098175 00000 n 
-0000519510 00000 n 
+0000519536 00000 n 
 0000101041 00000 n 
 0000098317 00000 n 
 0000100952 00000 n 
-0000519701 00000 n 
+0000519727 00000 n 
 0000103745 00000 n 
 0000101105 00000 n 
 0000103667 00000 n 
-0000519809 00000 n 
+0000519835 00000 n 
 0000106949 00000 n 
 0000103809 00000 n 
 0000106882 00000 n 
-0000519917 00000 n 
+0000519943 00000 n 
 0000109646 00000 n 
 0000107013 00000 n 
 0000109579 00000 n 
-0000520314 00000 n 
+0000520340 00000 n 
 0000112370 00000 n 
 0000109710 00000 n 
 0000112281 00000 n 
-0000520422 00000 n 
+0000520448 00000 n 
 0000115096 00000 n 
 0000112434 00000 n 
 0000115029 00000 n 
-0000520613 00000 n 
+0000520639 00000 n 
 0000118320 00000 n 
 0000115160 00000 n 
 0000118253 00000 n 
-0000520721 00000 n 
+0000520747 00000 n 
 0000121457 00000 n 
 0000118384 00000 n 
 0000121390 00000 n 
-0000520829 00000 n 
+0000520855 00000 n 
 0000123765 00000 n 
 0000121521 00000 n 
 0000123698 00000 n 
-0000521028 00000 n 
+0000521054 00000 n 
 0000126796 00000 n 
 0000123829 00000 n 
 0000126729 00000 n 
-0000521136 00000 n 
+0000521162 00000 n 
 0000129411 00000 n 
 0000126860 00000 n 
 0000129322 00000 n 
-0000521327 00000 n 
+0000521353 00000 n 
 0000131444 00000 n 
 0000129475 00000 n 
 0000131377 00000 n 
-0000521435 00000 n 
+0000521461 00000 n 
 0000134271 00000 n 
 0000131508 00000 n 
 0000134204 00000 n 
-0000521543 00000 n 
+0000521569 00000 n 
 0000137016 00000 n 
 0000134335 00000 n 
 0000136949 00000 n 
-0000521842 00000 n 
+0000521868 00000 n 
 0000139509 00000 n 
 0000137080 00000 n 
 0000139431 00000 n 
-0000521950 00000 n 
+0000521976 00000 n 
 0000141898 00000 n 
 0000139573 00000 n 
 0000141831 00000 n 
-0000522141 00000 n 
+0000522167 00000 n 
 0000145043 00000 n 
 0000141962 00000 n 
 0000144976 00000 n 
-0000522249 00000 n 
+0000522275 00000 n 
 0000147481 00000 n 
 0000145107 00000 n 
 0000147414 00000 n 
-0000522357 00000 n 
+0000522383 00000 n 
 0000149596 00000 n 
 0000147545 00000 n 
 0000149529 00000 n 
-0000522556 00000 n 
+0000522582 00000 n 
 0000152034 00000 n 
 0000149660 00000 n 
 0000151945 00000 n 
-0000522664 00000 n 
+0000522690 00000 n 
 0000153980 00000 n 
 0000152098 00000 n 
 0000153913 00000 n 
-0000522855 00000 n 
+0000522881 00000 n 
 0000155781 00000 n 
 0000154044 00000 n 
 0000155725 00000 n 
-0000522963 00000 n 
+0000522989 00000 n 
 0000157800 00000 n 
 0000155845 00000 n 
 0000157755 00000 n 
-0000523071 00000 n 
+0000523097 00000 n 
 0000160424 00000 n 
 0000157864 00000 n 
 0000160346 00000 n 
-0000523370 00000 n 
+0000523396 00000 n 
 0000162735 00000 n 
 0000160488 00000 n 
 0000162690 00000 n 
-0000523478 00000 n 
+0000523504 00000 n 
 0000165062 00000 n 
 0000162799 00000 n 
 0000164995 00000 n 
-0000523669 00000 n 
+0000523695 00000 n 
 0000167164 00000 n 
 0000165126 00000 n 
 0000167108 00000 n 
-0000523777 00000 n 
+0000523803 00000 n 
 0000169320 00000 n 
 0000167228 00000 n 
 0000169231 00000 n 
-0000523885 00000 n 
+0000523911 00000 n 
 0000171632 00000 n 
 0000169384 00000 n 
 0000171576 00000 n 
-0000524084 00000 n 
+0000524110 00000 n 
 0000174193 00000 n 
 0000171696 00000 n 
 0000174137 00000 n 
-0000524192 00000 n 
+0000524218 00000 n 
 0000176102 00000 n 
 0000174257 00000 n 
 0000176046 00000 n 
-0000524383 00000 n 
+0000524409 00000 n 
 0000178565 00000 n 
 0000176166 00000 n 
 0000178509 00000 n 
-0000524491 00000 n 
+0000524517 00000 n 
 0000181619 00000 n 
 0000178629 00000 n 
 0000181563 00000 n 
-0000524599 00000 n 
+0000524625 00000 n 
 0000184419 00000 n 
 0000181683 00000 n 
 0000184363 00000 n 
-0000524898 00000 n 
+0000524924 00000 n 
 0000186993 00000 n 
 0000184483 00000 n 
 0000186926 00000 n 
-0000525006 00000 n 
+0000525032 00000 n 
 0000189590 00000 n 
 0000187057 00000 n 
 0000189534 00000 n 
-0000525197 00000 n 
+0000525223 00000 n 
 0000191977 00000 n 
 0000189654 00000 n 
 0000191910 00000 n 
-0000525305 00000 n 
+0000525331 00000 n 
 0000192247 00000 n 
 0000192041 00000 n 
 0000192213 00000 n 
-0000525413 00000 n 
+0000525439 00000 n 
 0000194417 00000 n 
 0000192311 00000 n 
 0000194328 00000 n 
-0000525612 00000 n 
+0000525638 00000 n 
 0000197145 00000 n 
 0000194481 00000 n 
 0000197067 00000 n 
-0000525720 00000 n 
+0000525746 00000 n 
 0000200923 00000 n 
-0000478087 00000 n 
-0000477899 00000 n 
+0000478113 00000 n 
+0000477925 00000 n 
 0000197209 00000 n 
 0000198214 00000 n 
 0000200821 00000 n 
-0000525828 00000 n 
+0000525854 00000 n 
 0000203657 00000 n 
 0000200987 00000 n 
 0000203577 00000 n 
-0000526027 00000 n 
+0000526053 00000 n 
 0000205835 00000 n 
 0000203721 00000 n 
 0000205768 00000 n 
-0000526135 00000 n 
+0000526161 00000 n 
 0000208653 00000 n 
 0000205899 00000 n 
 0000208575 00000 n 
-0000526243 00000 n 
+0000526269 00000 n 
 0000210452 00000 n 
 0000208717 00000 n 
 0000210374 00000 n 
-0000526640 00000 n 
+0000526666 00000 n 
 0000212559 00000 n 
 0000210516 00000 n 
 0000212470 00000 n 
-0000526748 00000 n 
+0000526774 00000 n 
 0000214759 00000 n 
 0000212623 00000 n 
 0000214692 00000 n 
-0000526939 00000 n 
+0000526965 00000 n 
 0000217740 00000 n 
 0000214823 00000 n 
 0000217662 00000 n 
-0000527047 00000 n 
+0000527073 00000 n 
 0000221077 00000 n 
 0000217804 00000 n 
 0000220999 00000 n 
-0000527155 00000 n 
+0000527181 00000 n 
 0000223209 00000 n 
 0000221141 00000 n 
 0000223131 00000 n 
-0000527354 00000 n 
+0000527380 00000 n 
 0000225138 00000 n 
 0000223273 00000 n 
 0000225060 00000 n 
-0000527462 00000 n 
+0000527488 00000 n 
 0000227695 00000 n 
 0000225202 00000 n 
 0000227606 00000 n 
-0000527653 00000 n 
+0000527679 00000 n 
 0000230800 00000 n 
 0000227759 00000 n 
 0000230711 00000 n 
-0000527761 00000 n 
+0000527787 00000 n 
 0000233834 00000 n 
 0000230864 00000 n 
 0000233767 00000 n 
-0000527869 00000 n 
+0000527895 00000 n 
 0000235795 00000 n 
 0000233898 00000 n 
 0000235739 00000 n 
-0000528168 00000 n 
+0000528194 00000 n 
 0000236065 00000 n 
 0000235859 00000 n 
 0000236031 00000 n 
-0000528276 00000 n 
-0000239320 00000 n 
+0000528302 00000 n 
+0000239346 00000 n 
 0000236129 00000 n 
-0000239242 00000 n 
-0000528467 00000 n 
-0000242164 00000 n 
-0000239384 00000 n 
-0000242075 00000 n 
-0000528575 00000 n 
-0000245017 00000 n 
-0000242228 00000 n 
-0000244939 00000 n 
-0000528683 00000 n 
-0000246483 00000 n 
-0000245081 00000 n 
-0000246405 00000 n 
-0000528882 00000 n 
-0000252424 00000 n 
-0000481444 00000 n 
-0000481248 00000 n 
-0000246547 00000 n 
-0000483053 00000 n 
-0000482865 00000 n 
-0000247549 00000 n 
-0000248552 00000 n 
-0000252309 00000 n 
-0000528990 00000 n 
-0000254769 00000 n 
-0000252488 00000 n 
-0000254687 00000 n 
-0000529181 00000 n 
-0000257583 00000 n 
-0000254833 00000 n 
-0000257468 00000 n 
-0000529289 00000 n 
-0000260738 00000 n 
-0000257647 00000 n 
-0000260634 00000 n 
-0000529397 00000 n 
-0000263065 00000 n 
-0000260802 00000 n 
-0000262998 00000 n 
-0000529696 00000 n 
-0000265547 00000 n 
-0000263129 00000 n 
-0000265465 00000 n 
-0000529804 00000 n 
-0000268044 00000 n 
-0000265611 00000 n 
-0000267962 00000 n 
-0000529995 00000 n 
-0000270517 00000 n 
-0000268108 00000 n 
-0000270450 00000 n 
-0000530103 00000 n 
-0000272897 00000 n 
-0000270581 00000 n 
-0000272793 00000 n 
-0000530211 00000 n 
-0000275660 00000 n 
-0000272961 00000 n 
-0000275582 00000 n 
-0000530410 00000 n 
-0000276202 00000 n 
-0000275724 00000 n 
-0000276135 00000 n 
-0000530518 00000 n 
-0000277048 00000 n 
-0000276266 00000 n 
-0000277003 00000 n 
-0000530709 00000 n 
-0000278163 00000 n 
-0000277112 00000 n 
-0000278118 00000 n 
-0000530817 00000 n 
-0000279920 00000 n 
-0000278227 00000 n 
-0000279853 00000 n 
-0000530925 00000 n 
-0000281715 00000 n 
-0000279984 00000 n 
-0000281648 00000 n 
-0000531224 00000 n 
-0000283683 00000 n 
-0000281779 00000 n 
-0000283605 00000 n 
-0000531332 00000 n 
-0000285584 00000 n 
-0000283747 00000 n 
-0000285502 00000 n 
-0000531523 00000 n 
-0000288222 00000 n 
-0000285648 00000 n 
-0000288118 00000 n 
-0000531631 00000 n 
-0000289902 00000 n 
-0000288286 00000 n 
-0000289831 00000 n 
-0000531739 00000 n 
-0000291936 00000 n 
-0000289966 00000 n 
-0000291832 00000 n 
-0000531938 00000 n 
-0000294231 00000 n 
-0000292000 00000 n 
-0000294175 00000 n 
-0000532046 00000 n 
-0000296765 00000 n 
-0000294295 00000 n 
-0000296661 00000 n 
-0000532237 00000 n 
-0000300111 00000 n 
-0000296829 00000 n 
-0000300066 00000 n 
-0000532345 00000 n 
-0000302769 00000 n 
-0000300175 00000 n 
-0000302691 00000 n 
-0000532453 00000 n 
-0000304881 00000 n 
-0000302833 00000 n 
-0000304814 00000 n 
-0000532850 00000 n 
-0000306412 00000 n 
-0000304945 00000 n 
-0000306345 00000 n 
-0000532958 00000 n 
-0000308583 00000 n 
-0000306476 00000 n 
-0000308516 00000 n 
-0000533149 00000 n 
-0000308855 00000 n 
-0000308647 00000 n 
-0000308821 00000 n 
-0000533257 00000 n 
-0000312020 00000 n 
-0000308919 00000 n 
-0000311942 00000 n 
-0000533365 00000 n 
-0000314823 00000 n 
-0000312084 00000 n 
-0000314745 00000 n 
-0000533564 00000 n 
-0000317806 00000 n 
-0000314887 00000 n 
-0000317739 00000 n 
-0000533672 00000 n 
-0000319934 00000 n 
-0000317870 00000 n 
-0000319856 00000 n 
-0000533863 00000 n 
-0000322005 00000 n 
-0000319998 00000 n 
-0000321927 00000 n 
-0000533971 00000 n 
-0000322277 00000 n 
-0000322069 00000 n 
-0000322243 00000 n 
-0000534079 00000 n 
-0000325360 00000 n 
-0000322341 00000 n 
-0000325293 00000 n 
-0000534378 00000 n 
-0000328176 00000 n 
-0000325424 00000 n 
-0000328098 00000 n 
-0000534486 00000 n 
-0000330875 00000 n 
-0000328240 00000 n 
-0000330797 00000 n 
-0000534677 00000 n 
-0000333473 00000 n 
-0000330939 00000 n 
-0000333395 00000 n 
-0000534785 00000 n 
-0000335781 00000 n 
-0000333537 00000 n 
-0000335703 00000 n 
-0000534893 00000 n 
-0000337810 00000 n 
-0000335845 00000 n 
-0000337754 00000 n 
-0000535092 00000 n 
-0000339821 00000 n 
-0000337874 00000 n 
-0000339754 00000 n 
-0000535200 00000 n 
-0000340093 00000 n 
-0000339885 00000 n 
-0000340059 00000 n 
-0000535391 00000 n 
-0000341421 00000 n 
-0000340157 00000 n 
-0000341354 00000 n 
-0000535499 00000 n 
-0000341693 00000 n 
-0000341485 00000 n 
-0000341659 00000 n 
-0000535607 00000 n 
-0000344802 00000 n 
-0000341757 00000 n 
-0000344713 00000 n 
-0000535906 00000 n 
-0000347810 00000 n 
-0000344866 00000 n 
-0000347721 00000 n 
-0000536014 00000 n 
-0000350644 00000 n 
-0000347874 00000 n 
-0000350555 00000 n 
-0000536205 00000 n 
-0000354101 00000 n 
-0000350708 00000 n 
-0000354034 00000 n 
-0000536313 00000 n 
-0000357285 00000 n 
-0000354165 00000 n 
-0000357218 00000 n 
-0000536421 00000 n 
-0000358729 00000 n 
-0000357349 00000 n 
-0000358662 00000 n 
-0000536620 00000 n 
-0000361649 00000 n 
-0000358793 00000 n 
-0000361582 00000 n 
-0000536728 00000 n 
-0000364935 00000 n 
-0000361713 00000 n 
-0000364890 00000 n 
-0000536919 00000 n 
-0000367835 00000 n 
-0000364999 00000 n 
-0000367801 00000 n 
-0000537027 00000 n 
-0000370426 00000 n 
-0000367899 00000 n 
-0000370392 00000 n 
-0000537135 00000 n 
-0000373193 00000 n 
-0000370490 00000 n 
-0000373159 00000 n 
-0000537434 00000 n 
-0000375963 00000 n 
-0000373257 00000 n 
-0000375918 00000 n 
-0000537542 00000 n 
-0000378193 00000 n 
-0000488719 00000 n 
-0000488532 00000 n 
-0000376027 00000 n 
-0000376773 00000 n 
-0000378124 00000 n 
-0000537733 00000 n 
-0000378465 00000 n 
-0000378257 00000 n 
-0000378431 00000 n 
-0000537841 00000 n 
-0000381665 00000 n 
-0000502140 00000 n 
-0000501945 00000 n 
-0000378529 00000 n 
-0000504025 00000 n 
-0000503837 00000 n 
-0000379498 00000 n 
-0000380469 00000 n 
-0000381581 00000 n 
-0000537949 00000 n 
-0000382927 00000 n 
-0000381729 00000 n 
-0000382830 00000 n 
-0000538148 00000 n 
-0000384571 00000 n 
-0000382991 00000 n 
-0000384487 00000 n 
-0000538256 00000 n 
-0000386648 00000 n 
-0000384635 00000 n 
-0000386538 00000 n 
-0000538364 00000 n 
-0000389025 00000 n 
-0000386712 00000 n 
-0000388904 00000 n 
-0000538563 00000 n 
-0000391530 00000 n 
-0000389089 00000 n 
-0000391446 00000 n 
-0000538671 00000 n 
-0000393775 00000 n 
-0000391594 00000 n 
-0000393704 00000 n 
-0000538779 00000 n 
-0000394047 00000 n 
-0000393839 00000 n 
-0000394013 00000 n 
-0000520216 00000 n 
-0000515554 00000 n 
-0000514377 00000 n 
-0000514772 00000 n 
-0000515070 00000 n 
-0000515466 00000 n 
-0000517060 00000 n 
-0000515864 00000 n 
-0000516260 00000 n 
-0000516563 00000 n 
-0000516969 00000 n 
-0000518588 00000 n 
-0000517376 00000 n 
-0000517783 00000 n 
-0000518090 00000 n 
-0000518497 00000 n 
-0000520116 00000 n 
-0000518904 00000 n 
-0000519311 00000 n 
-0000519618 00000 n 
-0000520025 00000 n 
-0000526542 00000 n 
-0000521742 00000 n 
-0000520530 00000 n 
-0000520937 00000 n 
-0000521244 00000 n 
-0000521651 00000 n 
-0000523270 00000 n 
-0000522058 00000 n 
-0000522465 00000 n 
-0000522772 00000 n 
-0000523179 00000 n 
-0000524798 00000 n 
-0000523586 00000 n 
-0000523993 00000 n 
-0000524300 00000 n 
-0000524707 00000 n 
-0000526442 00000 n 
-0000525114 00000 n 
-0000525521 00000 n 
-0000525936 00000 n 
-0000526351 00000 n 
-0000532752 00000 n 
-0000528068 00000 n 
-0000526856 00000 n 
-0000527263 00000 n 
-0000527570 00000 n 
-0000527977 00000 n 
-0000529596 00000 n 
-0000528384 00000 n 
-0000528791 00000 n 
-0000529098 00000 n 
-0000529505 00000 n 
-0000531124 00000 n 
-0000529912 00000 n 
-0000530319 00000 n 
-0000530626 00000 n 
-0000531033 00000 n 
-0000532652 00000 n 
-0000531440 00000 n 
-0000531847 00000 n 
-0000532154 00000 n 
-0000532561 00000 n 
-0000539078 00000 n 
-0000534278 00000 n 
-0000533066 00000 n 
-0000533473 00000 n 
-0000533780 00000 n 
-0000534187 00000 n 
-0000535806 00000 n 
-0000534594 00000 n 
-0000535001 00000 n 
-0000535308 00000 n 
-0000535715 00000 n 
-0000537334 00000 n 
-0000536122 00000 n 
-0000536529 00000 n 
-0000536836 00000 n 
-0000537243 00000 n 
-0000538978 00000 n 
-0000537650 00000 n 
-0000538057 00000 n 
-0000538472 00000 n 
-0000538887 00000 n 
-0000539461 00000 n 
-0000539484 00000 n 
-0000539506 00000 n 
+0000239268 00000 n 
+0000528493 00000 n 
+0000242190 00000 n 
+0000239410 00000 n 
+0000242101 00000 n 
+0000528601 00000 n 
+0000245043 00000 n 
+0000242254 00000 n 
+0000244965 00000 n 
+0000528709 00000 n 
+0000246509 00000 n 
+0000245107 00000 n 
+0000246431 00000 n 
+0000528908 00000 n 
+0000252450 00000 n 
+0000481470 00000 n 
+0000481274 00000 n 
+0000246573 00000 n 
+0000483079 00000 n 
+0000482891 00000 n 
+0000247575 00000 n 
+0000248578 00000 n 
+0000252335 00000 n 
+0000529016 00000 n 
+0000254795 00000 n 
+0000252514 00000 n 
+0000254713 00000 n 
+0000529207 00000 n 
+0000257609 00000 n 
+0000254859 00000 n 
+0000257494 00000 n 
+0000529315 00000 n 
+0000260764 00000 n 
+0000257673 00000 n 
+0000260660 00000 n 
+0000529423 00000 n 
+0000263091 00000 n 
+0000260828 00000 n 
+0000263024 00000 n 
+0000529722 00000 n 
+0000265573 00000 n 
+0000263155 00000 n 
+0000265491 00000 n 
+0000529830 00000 n 
+0000268070 00000 n 
+0000265637 00000 n 
+0000267988 00000 n 
+0000530021 00000 n 
+0000270543 00000 n 
+0000268134 00000 n 
+0000270476 00000 n 
+0000530129 00000 n 
+0000272923 00000 n 
+0000270607 00000 n 
+0000272819 00000 n 
+0000530237 00000 n 
+0000275686 00000 n 
+0000272987 00000 n 
+0000275608 00000 n 
+0000530436 00000 n 
+0000276228 00000 n 
+0000275750 00000 n 
+0000276161 00000 n 
+0000530544 00000 n 
+0000277074 00000 n 
+0000276292 00000 n 
+0000277029 00000 n 
+0000530735 00000 n 
+0000278189 00000 n 
+0000277138 00000 n 
+0000278144 00000 n 
+0000530843 00000 n 
+0000279946 00000 n 
+0000278253 00000 n 
+0000279879 00000 n 
+0000530951 00000 n 
+0000281741 00000 n 
+0000280010 00000 n 
+0000281674 00000 n 
+0000531250 00000 n 
+0000283709 00000 n 
+0000281805 00000 n 
+0000283631 00000 n 
+0000531358 00000 n 
+0000285610 00000 n 
+0000283773 00000 n 
+0000285528 00000 n 
+0000531549 00000 n 
+0000288248 00000 n 
+0000285674 00000 n 
+0000288144 00000 n 
+0000531657 00000 n 
+0000289928 00000 n 
+0000288312 00000 n 
+0000289857 00000 n 
+0000531765 00000 n 
+0000291962 00000 n 
+0000289992 00000 n 
+0000291858 00000 n 
+0000531964 00000 n 
+0000294257 00000 n 
+0000292026 00000 n 
+0000294201 00000 n 
+0000532072 00000 n 
+0000296791 00000 n 
+0000294321 00000 n 
+0000296687 00000 n 
+0000532263 00000 n 
+0000300137 00000 n 
+0000296855 00000 n 
+0000300092 00000 n 
+0000532371 00000 n 
+0000302795 00000 n 
+0000300201 00000 n 
+0000302717 00000 n 
+0000532479 00000 n 
+0000304907 00000 n 
+0000302859 00000 n 
+0000304840 00000 n 
+0000532876 00000 n 
+0000306438 00000 n 
+0000304971 00000 n 
+0000306371 00000 n 
+0000532984 00000 n 
+0000308609 00000 n 
+0000306502 00000 n 
+0000308542 00000 n 
+0000533175 00000 n 
+0000308881 00000 n 
+0000308673 00000 n 
+0000308847 00000 n 
+0000533283 00000 n 
+0000312046 00000 n 
+0000308945 00000 n 
+0000311968 00000 n 
+0000533391 00000 n 
+0000314849 00000 n 
+0000312110 00000 n 
+0000314771 00000 n 
+0000533590 00000 n 
+0000317832 00000 n 
+0000314913 00000 n 
+0000317765 00000 n 
+0000533698 00000 n 
+0000319960 00000 n 
+0000317896 00000 n 
+0000319882 00000 n 
+0000533889 00000 n 
+0000322031 00000 n 
+0000320024 00000 n 
+0000321953 00000 n 
+0000533997 00000 n 
+0000322303 00000 n 
+0000322095 00000 n 
+0000322269 00000 n 
+0000534105 00000 n 
+0000325386 00000 n 
+0000322367 00000 n 
+0000325319 00000 n 
+0000534404 00000 n 
+0000328202 00000 n 
+0000325450 00000 n 
+0000328124 00000 n 
+0000534512 00000 n 
+0000330901 00000 n 
+0000328266 00000 n 
+0000330823 00000 n 
+0000534703 00000 n 
+0000333499 00000 n 
+0000330965 00000 n 
+0000333421 00000 n 
+0000534811 00000 n 
+0000335807 00000 n 
+0000333563 00000 n 
+0000335729 00000 n 
+0000534919 00000 n 
+0000337836 00000 n 
+0000335871 00000 n 
+0000337780 00000 n 
+0000535118 00000 n 
+0000339847 00000 n 
+0000337900 00000 n 
+0000339780 00000 n 
+0000535226 00000 n 
+0000340119 00000 n 
+0000339911 00000 n 
+0000340085 00000 n 
+0000535417 00000 n 
+0000341447 00000 n 
+0000340183 00000 n 
+0000341380 00000 n 
+0000535525 00000 n 
+0000341719 00000 n 
+0000341511 00000 n 
+0000341685 00000 n 
+0000535633 00000 n 
+0000344828 00000 n 
+0000341783 00000 n 
+0000344739 00000 n 
+0000535932 00000 n 
+0000347836 00000 n 
+0000344892 00000 n 
+0000347747 00000 n 
+0000536040 00000 n 
+0000350670 00000 n 
+0000347900 00000 n 
+0000350581 00000 n 
+0000536231 00000 n 
+0000354127 00000 n 
+0000350734 00000 n 
+0000354060 00000 n 
+0000536339 00000 n 
+0000357311 00000 n 
+0000354191 00000 n 
+0000357244 00000 n 
+0000536447 00000 n 
+0000358755 00000 n 
+0000357375 00000 n 
+0000358688 00000 n 
+0000536646 00000 n 
+0000361675 00000 n 
+0000358819 00000 n 
+0000361608 00000 n 
+0000536754 00000 n 
+0000364961 00000 n 
+0000361739 00000 n 
+0000364916 00000 n 
+0000536945 00000 n 
+0000367861 00000 n 
+0000365025 00000 n 
+0000367827 00000 n 
+0000537053 00000 n 
+0000370452 00000 n 
+0000367925 00000 n 
+0000370418 00000 n 
+0000537161 00000 n 
+0000373219 00000 n 
+0000370516 00000 n 
+0000373185 00000 n 
+0000537460 00000 n 
+0000375989 00000 n 
+0000373283 00000 n 
+0000375944 00000 n 
+0000537568 00000 n 
+0000378219 00000 n 
+0000488745 00000 n 
+0000488558 00000 n 
+0000376053 00000 n 
+0000376799 00000 n 
+0000378150 00000 n 
+0000537759 00000 n 
+0000378491 00000 n 
+0000378283 00000 n 
+0000378457 00000 n 
+0000537867 00000 n 
+0000381691 00000 n 
+0000502166 00000 n 
+0000501971 00000 n 
+0000378555 00000 n 
+0000504051 00000 n 
+0000503863 00000 n 
+0000379524 00000 n 
+0000380495 00000 n 
+0000381607 00000 n 
+0000537975 00000 n 
+0000382953 00000 n 
+0000381755 00000 n 
+0000382856 00000 n 
+0000538174 00000 n 
+0000384597 00000 n 
+0000383017 00000 n 
+0000384513 00000 n 
+0000538282 00000 n 
+0000386674 00000 n 
+0000384661 00000 n 
+0000386564 00000 n 
+0000538390 00000 n 
+0000389051 00000 n 
+0000386738 00000 n 
+0000388930 00000 n 
+0000538589 00000 n 
+0000391556 00000 n 
+0000389115 00000 n 
+0000391472 00000 n 
+0000538697 00000 n 
+0000393801 00000 n 
+0000391620 00000 n 
+0000393730 00000 n 
+0000538805 00000 n 
+0000394073 00000 n 
+0000393865 00000 n 
+0000394039 00000 n 
+0000520242 00000 n 
+0000515580 00000 n 
+0000514403 00000 n 
+0000514798 00000 n 
+0000515096 00000 n 
+0000515492 00000 n 
+0000517086 00000 n 
+0000515890 00000 n 
+0000516286 00000 n 
+0000516589 00000 n 
+0000516995 00000 n 
+0000518614 00000 n 
+0000517402 00000 n 
+0000517809 00000 n 
+0000518116 00000 n 
+0000518523 00000 n 
+0000520142 00000 n 
+0000518930 00000 n 
+0000519337 00000 n 
+0000519644 00000 n 
+0000520051 00000 n 
+0000526568 00000 n 
+0000521768 00000 n 
+0000520556 00000 n 
+0000520963 00000 n 
+0000521270 00000 n 
+0000521677 00000 n 
+0000523296 00000 n 
+0000522084 00000 n 
+0000522491 00000 n 
+0000522798 00000 n 
+0000523205 00000 n 
+0000524824 00000 n 
+0000523612 00000 n 
+0000524019 00000 n 
+0000524326 00000 n 
+0000524733 00000 n 
+0000526468 00000 n 
+0000525140 00000 n 
+0000525547 00000 n 
+0000525962 00000 n 
+0000526377 00000 n 
+0000532778 00000 n 
+0000528094 00000 n 
+0000526882 00000 n 
+0000527289 00000 n 
+0000527596 00000 n 
+0000528003 00000 n 
+0000529622 00000 n 
+0000528410 00000 n 
+0000528817 00000 n 
+0000529124 00000 n 
+0000529531 00000 n 
+0000531150 00000 n 
+0000529938 00000 n 
+0000530345 00000 n 
+0000530652 00000 n 
+0000531059 00000 n 
+0000532678 00000 n 
+0000531466 00000 n 
+0000531873 00000 n 
+0000532180 00000 n 
+0000532587 00000 n 
+0000539104 00000 n 
+0000534304 00000 n 
+0000533092 00000 n 
+0000533499 00000 n 
+0000533806 00000 n 
+0000534213 00000 n 
+0000535832 00000 n 
+0000534620 00000 n 
+0000535027 00000 n 
+0000535334 00000 n 
+0000535741 00000 n 
+0000537360 00000 n 
+0000536148 00000 n 
+0000536555 00000 n 
+0000536862 00000 n 
+0000537269 00000 n 
+0000539004 00000 n 
+0000537676 00000 n 
+0000538083 00000 n 
+0000538498 00000 n 
+0000538913 00000 n 
+0000539487 00000 n 
+0000539510 00000 n 
+0000539532 00000 n 
 trailer
 <<
 /Size 792
@@ -9172,5 +9174,5 @@ trailer
 /Info 1 0 R
 >>
 startxref
-539627
+539653
 %%EOF
index b7eee8c3bedcb66d7386b29b0334c271e041c0d6..b431a2f21e227467e1a21a7ce3d136768717055b 100644 (file)
@@ -41,6 +41,8 @@ gettextsrcdir = $(datadir)/gettext/intl
 aliaspath = $(localedir)
 subdir = intl
 
+@SET_MAKE@
+
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 MKINSTALLDIRS = @MKINSTALLDIRS@
index 27aa9495b572af504dc04d1755ace7a0e9708cfa..519c4c2b49b25c283d1ca4f70900c808787bdda7 100644 (file)
@@ -40,9 +40,9 @@ extern "C" {
 #endif
 
 /* Hex-encoded Readline version number. */
-#define RL_READLINE_VERSION    0x0502          /* Readline 5.2 */
-#define RL_VERSION_MAJOR       5
-#define RL_VERSION_MINOR       2
+#define RL_READLINE_VERSION    0x0600          /* Readline 6.0 */
+#define RL_VERSION_MAJOR       6
+#define RL_VERSION_MINOR       0
 
 /* Readline data structures. */
 
index b626240568c02640acb79d3625d895bcff19437c..4d6aa74f1e766385e77a60de4d06639e72050bfd 100644 (file)
@@ -1,2 +1,2 @@
 # Set of available languages.
-en@quot en@boldquot af bg ca de eo es et fr hu ja lt nl pl pt_BR ro ru sk sv tr vi
+en@quot en@boldquot af bg ca cs de eo es et fr hu ja lt nl pl pt_BR ro ru sk sv tr vi
diff --git a/po/cs.gmo b/po/cs.gmo
new file mode 100644 (file)
index 0000000..c135f40
Binary files /dev/null and b/po/cs.gmo differ
diff --git a/po/cs.po b/po/cs.po
new file mode 100644 (file)
index 0000000..713f405
--- /dev/null
+++ b/po/cs.po
@@ -0,0 +1,3279 @@
+# Czech tranlation for bash.
+# Copyright (C) 2008 Free Software Foundation, Inc.
+# This file is distributed under the same license as the bash package.
+# Petr Pisar <petr.pisar@atlas.cz>, 2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: bash 3.2\n"
+"POT-Creation-Date: 2006-10-23 17:20-0400\n"
+"PO-Revision-Date: 2008-08-05 15:11+0200\n"
+"Last-Translator: Petr Pisar <petr.pisar@atlas.cz>\n"
+"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: arrayfunc.c:48
+msgid "bad array subscript"
+msgstr "chybný podskript pole"
+
+#: arrayfunc.c:362
+#, c-format
+msgid "%s: cannot assign to non-numeric index"
+msgstr "%s: přes nečíselný indexu nelze dosadit"
+
+#: bashhist.c:331
+#, c-format
+msgid "%s: cannot create: %s"
+msgstr "%s: nelze vytvořit: %s"
+
+#: bashline.c:3030
+msgid "bash_execute_unix_command: cannot find keymap for command"
+msgstr "bash_execute_unix_command: pro příkaz nelze nalézt klávesovou mapu "
+
+#: bashline.c:3079
+#, c-format
+msgid "%s: first non-whitespace character is not `\"'"
+msgstr "%s: první nebílý znak není „\"“"
+
+#: bashline.c:3108
+#, c-format
+msgid "no closing `%c' in %s"
+msgstr "ne zavírající „%c“ v %s"
+
+#: bashline.c:3142
+#, c-format
+msgid "%s: missing colon separator"
+msgstr "%s: chybí dvojtečkový oddělovač"
+
+#: builtins/bind.def:194
+#, c-format
+msgid "`%s': invalid keymap name"
+msgstr "„%s“: chybný název klávesové mapy"
+
+#: builtins/bind.def:233
+#, c-format
+msgid "%s: cannot read: %s"
+msgstr "%s: nelze číst: %s"
+
+#: builtins/bind.def:248
+#, c-format
+msgid "`%s': cannot unbind"
+msgstr "„%s“: nelze zrušit vazbu"
+
+#: builtins/bind.def:283
+#, c-format
+msgid "`%s': unknown function name"
+msgstr "„%s“: neznámé jméno funkce"
+
+#: builtins/bind.def:291
+#, c-format
+msgid "%s is not bound to any keys.\n"
+msgstr "%s není svázán s žádnou klávesou.\n"
+
+#: builtins/bind.def:295
+#, c-format
+msgid "%s can be invoked via "
+msgstr "%s lze vyvolat přes "
+
+#: builtins/break.def:128
+msgid "only meaningful in a `for', `while', or `until' loop"
+msgstr "má smysl jen ve smyčkách „for“, „while“ nebo „until“"
+
+#: builtins/caller.def:131
+msgid "Returns the context of the current subroutine call."
+msgstr "Vrací kontext aktuálního volání podrutiny."
+
+#: builtins/caller.def:132 builtins/caller.def:136 builtins/pushd.def:666
+#: builtins/pushd.def:674 builtins/pushd.def:677 builtins/pushd.def:687
+#: builtins/pushd.def:691 builtins/pushd.def:695 builtins/pushd.def:698
+#: builtins/pushd.def:701 builtins/pushd.def:710 builtins/pushd.def:714
+#: builtins/pushd.def:718 builtins/pushd.def:721
+msgid " "
+msgstr " "
+
+#: builtins/caller.def:133
+msgid "Without EXPR, returns returns \"$line $filename\".  With EXPR,"
+msgstr "Bez VÝRAZU vrací „$line $filename“. S VÝRAZEM "
+
+#: builtins/caller.def:134
+msgid "returns \"$line $subroutine $filename\"; this extra information"
+msgstr "vrací „$line $subroutine $filename“. Tyto údaje"
+
+#: builtins/caller.def:135
+msgid "can be used used to provide a stack trace."
+msgstr "lze využít při výpisu zásobníku volání."
+
+#: builtins/caller.def:137
+msgid "The value of EXPR indicates how many call frames to go back before the"
+msgstr "Hodnota VÝRAZ značí, kolik rámců volání se má jít zpět před"
+
+#: builtins/caller.def:138
+msgid "current one; the top frame is frame 0."
+msgstr "současný rámec, vrcholový rámec má číslo 0."
+
+#: builtins/cd.def:204
+msgid "HOME not set"
+msgstr "není nestavena HOME"
+
+#: builtins/cd.def:216
+msgid "OLDPWD not set"
+msgstr "není nastaveno OLDPWD"
+
+#: builtins/common.c:133 test.c:822
+msgid "too many arguments"
+msgstr "příliš mnoho argumentů"
+
+#: builtins/common.c:157 shell.c:474 shell.c:748
+#, c-format
+msgid "%s: option requires an argument"
+msgstr "%s: přepínač vyžaduje argument"
+
+#: builtins/common.c:164
+#, c-format
+msgid "%s: numeric argument required"
+msgstr "%s: vyžadován číselný argument"
+
+#: builtins/common.c:171
+#, c-format
+msgid "%s: not found"
+msgstr "%s: nenalezeno"
+
+#: builtins/common.c:180 shell.c:761
+#, c-format
+msgid "%s: invalid option"
+msgstr "%s: chybný přepínač"
+
+#: builtins/common.c:187
+#, c-format
+msgid "%s: invalid option name"
+msgstr "%s: chybný název přepínače"
+
+#: builtins/common.c:194 general.c:230 general.c:235
+#, c-format
+msgid "`%s': not a valid identifier"
+msgstr "„%s“: není platným identifikátorem"
+
+#: builtins/common.c:201
+#, c-format
+msgid "%s: invalid number"
+msgstr "%s: chybné číslo"
+
+#: builtins/common.c:208
+#, c-format
+msgid "%s: invalid signal specification"
+msgstr "%s: chybné určení signálu"
+
+#: builtins/common.c:215
+#, c-format
+msgid "`%s': not a pid or valid job spec"
+msgstr "„%s“: není PID ani platným označením úlohy"
+
+#: builtins/common.c:222 error.c:451
+#, c-format
+msgid "%s: readonly variable"
+msgstr "%s: proměnná pouze pro čtení"
+
+#: builtins/common.c:230
+#, c-format
+msgid "%s: %s out of range"
+msgstr "%s: %s mimo rozsah"
+
+#: builtins/common.c:230 builtins/common.c:232
+msgid "argument"
+msgstr "argument"
+
+#: builtins/common.c:232
+#, c-format
+msgid "%s out of range"
+msgstr "%s mimo rozsah"
+
+#: builtins/common.c:240
+#, c-format
+msgid "%s: no such job"
+msgstr "%s: žádná taková úloha"
+
+#: builtins/common.c:248
+#, c-format
+msgid "%s: no job control"
+msgstr "%s: žádné řízení úloh"
+
+#: builtins/common.c:250
+msgid "no job control"
+msgstr "žádné řízení úloh"
+
+#: builtins/common.c:260
+#, c-format
+msgid "%s: restricted"
+msgstr "%s: omezeno"
+
+#: builtins/common.c:262
+msgid "restricted"
+msgstr "omezeno"
+
+#: builtins/common.c:270
+#, c-format
+msgid "%s: not a shell builtin"
+msgstr "%s: není vestavěným příkazem shellu"
+
+#: builtins/common.c:276
+#, c-format
+msgid "write error: %s"
+msgstr "chyba zápisu: %s"
+
+#: builtins/common.c:481
+#, c-format
+msgid "%s: error retrieving current directory: %s: %s\n"
+msgstr "%s: chyba při zjišťování současného adresáře: %s: %s\n"
+
+#: builtins/common.c:547 builtins/common.c:549
+#, c-format
+msgid "%s: ambiguous job spec"
+msgstr "%s: nejednoznačné určení úlohy"
+
+#: builtins/complete.def:251
+#, c-format
+msgid "%s: invalid action name"
+msgstr "%s: neplatný název akce"
+
+#: builtins/complete.def:381 builtins/complete.def:524
+#, c-format
+msgid "%s: no completion specification"
+msgstr "%s: žádné doplňování neurčeno"
+
+#: builtins/complete.def:571
+msgid "warning: -F option may not work as you expect"
+msgstr "varování: přepínač -F možná nebude dělat, co jste čekali"
+
+#: builtins/complete.def:573
+msgid "warning: -C option may not work as you expect"
+msgstr "varování: přepínač -C možná nebude dělat, co jste čekali"
+
+#: builtins/declare.def:106
+msgid "can only be used in a function"
+msgstr "může být použito jen ve funkci"
+
+#: builtins/declare.def:306
+msgid "cannot use `-f' to make functions"
+msgstr "„-f“ nezle použít na výrobu funkce"
+
+#: builtins/declare.def:318 execute_cmd.c:4073
+#, c-format
+msgid "%s: readonly function"
+msgstr "%s: funkce jen pro čtení"
+
+#: builtins/declare.def:406
+#, c-format
+msgid "%s: cannot destroy array variables in this way"
+msgstr "%s: takto nelze likvidovat pole"
+
+#: builtins/enable.def:128 builtins/enable.def:136
+msgid "dynamic loading not available"
+msgstr "dynamické nahrávání není dostupné"
+
+#: builtins/enable.def:303
+#, c-format
+msgid "cannot open shared object %s: %s"
+msgstr "sdílený objekt %s nelze otevřít: %s"
+
+#: builtins/enable.def:326
+#, c-format
+msgid "cannot find %s in shared object %s: %s"
+msgstr "ve sdílením objektu %2$s nelze nalézt %1$s: %3$s"
+
+#: builtins/enable.def:450
+#, c-format
+msgid "%s: not dynamically loaded"
+msgstr "%s: není dynamicky nahráno"
+
+#: builtins/enable.def:465
+#, c-format
+msgid "%s: cannot delete: %s"
+msgstr "%s: nelze smazat: %s"
+
+#: builtins/evalfile.c:129 execute_cmd.c:3930 shell.c:1409
+#, c-format
+msgid "%s: is a directory"
+msgstr "%s: je adresářem"
+
+#: builtins/evalfile.c:134
+#, c-format
+msgid "%s: not a regular file"
+msgstr "%s: není obyčejný soubor"
+
+#: builtins/evalfile.c:142
+#, c-format
+msgid "%s: file is too large"
+msgstr "%s: soubor je příliš velký"
+
+#: builtins/exec.def:205
+#, c-format
+msgid "%s: cannot execute: %s"
+msgstr "%s: nelze provézt: %s"
+
+#: builtins/exit.def:83
+msgid "not login shell: use `exit'"
+msgstr "toto není login shell: použijte „exit“"
+
+#: builtins/exit.def:111
+msgid "There are stopped jobs.\n"
+msgstr "Jsou zde pozastavení úlohy.\n"
+
+#: builtins/fc.def:258
+msgid "no command found"
+msgstr "žádný příkaz nenalezen"
+
+#: builtins/fc.def:328
+msgid "history specification"
+msgstr "určení historie"
+
+#: builtins/fc.def:349
+#, c-format
+msgid "%s: cannot open temp file: %s"
+msgstr "%s: dočasný soubor nelze otevřít: %s"
+
+#: builtins/fg_bg.def:149
+#, c-format
+msgid "job %d started without job control"
+msgstr "úloha %d spuštěna bez správy úloh"
+
+#: builtins/getopt.c:109
+#, c-format
+msgid "%s: illegal option -- %c\n"
+msgstr "%s: chybný přepínač – %c\n"
+
+#: builtins/getopt.c:110
+#, c-format
+msgid "%s: option requires an argument -- %c\n"
+msgstr "%s: přepínač vyžaduje argument – %c\n"
+
+#: builtins/hash.def:84
+msgid "hashing disabled"
+msgstr "hashování zakázáno"
+
+#: builtins/hash.def:130
+#, c-format
+msgid "%s: hash table empty\n"
+msgstr "%s: tabulka hashů je prázdná\n"
+
+#: builtins/help.def:108
+msgid "Shell commands matching keywords `"
+msgstr "Příkazy shellu shodující se s klíčovými slovy „"
+
+#: builtins/help.def:110
+msgid "Shell commands matching keyword `"
+msgstr "Příkazy shellu shodující ce s klíčovým slovem „"
+
+#: builtins/help.def:138
+#, c-format
+msgid "no help topics match `%s'.  Try `help help' or `man -k %s' or `info %s'."
+msgstr "žádné téma nápovědy se nehodí pro „%s“. Zkuste „help help“ nebo „man -k %s“ nebo „info %s“."
+
+#: builtins/help.def:164
+#, c-format
+msgid "%s: cannot open: %s"
+msgstr "%s: nelze otevřít: %s"
+
+#: builtins/help.def:182
+msgid ""
+"These shell commands are defined internally.  Type `help' to see this list.\n"
+"Type `help name' to find out more about the function `name'.\n"
+"Use `info bash' to find out more about the shell in general.\n"
+"Use `man -k' or `info' to find out more about commands not in this list.\n"
+"\n"
+"A star (*) next to a name means that the command is disabled.\n"
+"\n"
+msgstr ""
+"Tyto příkazy shellu jsou vnitřně definovány. Napište „help“, aby ste získali\n"
+"tento seznam. Podrobnosti o funkci „název“ získáte příkazem „help název“.\n"
+"Příkazem „info bash“ získáte obecné informace o tomto shellu.\n"
+"Použijte „man -k“ nebo „info“, chcete-li zjistit více o příkazech, které\n"
+"na tomto seznamu nejsou.\n"
+"\n"
+"Hvězdička (*) vedle jména znamená, že příkaz je zakázán.\n"
+"\n"
+
+#: builtins/history.def:150
+msgid "cannot use more than one of -anrw"
+msgstr "nelze použít více jak jeden z -anrw"
+
+#: builtins/history.def:182
+msgid "history position"
+msgstr "místo v historii"
+
+#: builtins/history.def:400
+#, c-format
+msgid "%s: history expansion failed"
+msgstr "%s: expanze historie selhala"
+
+#: builtins/jobs.def:99
+msgid "no other options allowed with `-x'"
+msgstr "s „-x“ nejsou dovoleny další přepínače"
+
+#: builtins/kill.def:187
+#, c-format
+msgid "%s: arguments must be process or job IDs"
+msgstr "%s: argumenty musí být proces nebo identifikátor úlohy"
+
+#: builtins/kill.def:250
+msgid "Unknown error"
+msgstr "Neznámá chyba"
+
+#: builtins/let.def:94 builtins/let.def:119 expr.c:498 expr.c:513
+msgid "expression expected"
+msgstr "očekáván výraz"
+
+#: builtins/printf.def:339
+#, c-format
+msgid "`%s': missing format character"
+msgstr "„%s“: postrádám formátovací znak"
+
+#: builtins/printf.def:516
+#, c-format
+msgid "`%c': invalid format character"
+msgstr "„%c“: neplatný formátovací znak"
+
+#: builtins/printf.def:722
+msgid "missing hex digit for \\x"
+msgstr "u \\x chybí šestnáctková číslovka"
+
+#: builtins/pushd.def:175
+msgid "no other directory"
+msgstr "žádný další adresář"
+
+#: builtins/pushd.def:442
+msgid "<no current directory>"
+msgstr "<žádný aktuální adresář>"
+
+#: builtins/pushd.def:663
+msgid "Display the list of currently remembered directories.  Directories"
+msgstr "Zobrazí seznam právě zapamatovaných adresářů. Adresáře"
+
+#: builtins/pushd.def:664
+msgid "find their way onto the list with the `pushd' command; you can get"
+msgstr "se na seznam umisťují příkazem „pushd“, předchozí stav seznamu lze"
+
+#: builtins/pushd.def:665
+msgid "back up through the list with the `popd' command."
+msgstr "vrátit příkazem „popd“."
+
+#: builtins/pushd.def:667
+msgid "The -l flag specifies that `dirs' should not print shorthand versions"
+msgstr "Příznak -l značí, že „dirs“ nemá vypisovat zkrácené verze adresářů,"
+
+#: builtins/pushd.def:668
+msgid "of directories which are relative to your home directory.  This means"
+msgstr "které leží pod vaším domovským adresářem. To znamená, že „~/bin“"
+
+#: builtins/pushd.def:669
+msgid "that `~/bin' might be displayed as `/homes/bfox/bin'.  The -v flag"
+msgstr "smí být zobrazen jako „/homes/bfox/bin“. Příznak -v způsobí, že"
+
+#: builtins/pushd.def:670
+msgid "causes `dirs' to print the directory stack with one entry per line,"
+msgstr "„dirs“ vypíše zásobník adresářů záznam po záznamu na samostatné řádky"
+
+#: builtins/pushd.def:671
+msgid "prepending the directory name with its position in the stack.  The -p"
+msgstr "a před název adresáře uvede jeho pořadí v zásobníku. Příznak -p"
+
+#: builtins/pushd.def:672
+msgid "flag does the same thing, but the stack position is not prepended."
+msgstr "dělá to samé, ale bez informace o umístění na zásobníku."
+
+#: builtins/pushd.def:673
+msgid "The -c flag clears the directory stack by deleting all of the elements."
+msgstr "Příznak -c vyprázdní zásobník smazáním všem prvků."
+
+#: builtins/pushd.def:675
+msgid "+N   displays the Nth entry counting from the left of the list shown by"
+msgstr "+N   zobrazí N. položku počítáno zleva na seznamu, který by vytiskl"
+
+#: builtins/pushd.def:676 builtins/pushd.def:679
+msgid "     dirs when invoked without options, starting with zero."
+msgstr "     příkaz dirs bez jakýchkoliv přepínačů, počítáno od nuly."
+
+#: builtins/pushd.def:678
+msgid "-N   displays the Nth entry counting from the right of the list shown by"
+msgstr "-N   zobrazí N. položku počítáno zprava na seznamu, který by vytiskl"
+
+#: builtins/pushd.def:684
+msgid "Adds a directory to the top of the directory stack, or rotates"
+msgstr "Přidá adresář na vrchol zásobníku adresářů, nebo rotuje zásobník tak,"
+
+#: builtins/pushd.def:685
+msgid "the stack, making the new top of the stack the current working"
+msgstr "že nový vrchol zásobníku se stane pracovním adresářem."
+
+#: builtins/pushd.def:686
+msgid "directory.  With no arguments, exchanges the top two directories."
+msgstr "Bez argumentů prohodí horní dva adresáře."
+
+#: builtins/pushd.def:688
+msgid "+N   Rotates the stack so that the Nth directory (counting"
+msgstr "+N   Zrotuje zásobník tak, že N. adresář (počítáno"
+
+#: builtins/pushd.def:689
+msgid "     from the left of the list shown by `dirs', starting with"
+msgstr "     zleva seznamu, který by ukázal „dirs“, počínaje od"
+
+#: builtins/pushd.def:690 builtins/pushd.def:694
+msgid "     zero) is at the top."
+msgstr "     nuly) se dostane na vrchol."
+
+#: builtins/pushd.def:692
+msgid "-N   Rotates the stack so that the Nth directory (counting"
+msgstr "-N   Zrotuje zásobník tak, že N. adresář (počítáno"
+
+#: builtins/pushd.def:693
+msgid "     from the right of the list shown by `dirs', starting with"
+msgstr "     zprava seznamu, který by ukázal „dirs“, počínaje od"
+
+#: builtins/pushd.def:696
+msgid "-n   suppress the normal change of directory when adding directories"
+msgstr "-n   potlačí obvyklou změnu pracovního adresáře při přidávání adresářů"
+
+#: builtins/pushd.def:697
+msgid "     to the stack, so only the stack is manipulated."
+msgstr "     na zásobník, takže se změní jen obsah zásobníku."
+
+#: builtins/pushd.def:699
+msgid "dir  adds DIR to the directory stack at the top, making it the"
+msgstr "adr  přidá ADR na vrchol zásobníku adresářů a učiní jej"
+
+#: builtins/pushd.def:700
+msgid "     new current working directory."
+msgstr "     novým pracovním adresářem."
+
+#: builtins/pushd.def:702 builtins/pushd.def:722
+msgid "You can see the directory stack with the `dirs' command."
+msgstr "Zásobník adresářů si lze prohlédnout příkazem „dirs“."
+
+#: builtins/pushd.def:707
+msgid "Removes entries from the directory stack.  With no arguments,"
+msgstr "Odstraní položky ze zásobníku adresářů. Bez argumentů"
+
+#: builtins/pushd.def:708
+msgid "removes the top directory from the stack, and cd's to the new"
+msgstr "odstraní adresář z vrcholu zásobníku a přepne se do nového"
+
+#: builtins/pushd.def:709
+msgid "top directory."
+msgstr "vrcholového adresáře."
+
+#: builtins/pushd.def:711
+msgid "+N   removes the Nth entry counting from the left of the list"
+msgstr "+N   odstraní N. položku počítáno zleva na seznamu,"
+
+#: builtins/pushd.def:712
+msgid "     shown by `dirs', starting with zero.  For example: `popd +0'"
+msgstr "     který by ukázal „dirs“, počínaje nulou. Například „popd +0“"
+
+#: builtins/pushd.def:713
+msgid "     removes the first directory, `popd +1' the second."
+msgstr "     odstraní první adresář, „popd +1“ druhý."
+
+#: builtins/pushd.def:715
+msgid "-N   removes the Nth entry counting from the right of the list"
+msgstr "-N   odstraní N. položku počítáno zprava na seznamu,"
+
+#: builtins/pushd.def:716
+msgid "     shown by `dirs', starting with zero.  For example: `popd -0'"
+msgstr "     který by ukázal „dirs“, počínaje nulou. Například: „popd -0“"
+
+#: builtins/pushd.def:717
+msgid "     removes the last directory, `popd -1' the next to last."
+msgstr "     odstraní poslední adresář, “popd -1“ předposlední."
+
+#: builtins/pushd.def:719
+msgid "-n   suppress the normal change of directory when removing directories"
+msgstr "-n   potlačí obvyklou změnu pracovního adresáře při odebírání adresářů"
+
+#: builtins/pushd.def:720
+msgid "     from the stack, so only the stack is manipulated."
+msgstr "     ze zásobníku, takže pouze zásobník dozná změny."
+
+#: builtins/read.def:210
+#, c-format
+msgid "%s: invalid timeout specification"
+msgstr "%s: chybné určení časového limitu"
+
+#: builtins/read.def:233
+#, c-format
+msgid "%s: invalid file descriptor specification"
+msgstr "%s: chybné určení deskriptoru souboru"
+
+#: builtins/read.def:240
+#, c-format
+msgid "%d: invalid file descriptor: %s"
+msgstr "%d: neplatný deskriptor souboru: %s"
+
+#: builtins/read.def:478
+#, c-format
+msgid "read error: %d: %s"
+msgstr "chyba čtení: %d: %s"
+
+#: builtins/return.def:63
+msgid "can only `return' from a function or sourced script"
+msgstr "„return“ lze provést jen z funkce nebo skriptu načteného přes „source“"
+
+#: builtins/set.def:744
+msgid "cannot simultaneously unset a function and a variable"
+msgstr "funkci i proměnnou nelze rušit současně"
+
+#: builtins/set.def:781
+#, c-format
+msgid "%s: cannot unset"
+msgstr "%s: nelze zrušit"
+
+#: builtins/set.def:788
+#, c-format
+msgid "%s: cannot unset: readonly %s"
+msgstr "%s: nelze zrušit: %s jen pro čtení"
+
+#: builtins/set.def:799
+#, c-format
+msgid "%s: not an array variable"
+msgstr "%s: není (proměnnou typu) pole"
+
+#: builtins/setattr.def:166
+#, c-format
+msgid "%s: not a function"
+msgstr "%s: není funkcí"
+
+#: builtins/shift.def:66 builtins/shift.def:72
+msgid "shift count"
+msgstr "počet shiftů"
+
+#: builtins/shopt.def:227
+msgid "cannot set and unset shell options simultaneously"
+msgstr "přepínač shellu nelze zároveň nastavit a zrušit"
+
+#: builtins/shopt.def:292
+#, c-format
+msgid "%s: invalid shell option name"
+msgstr "%s: chybný název přepínače shellu"
+
+#: builtins/source.def:115
+msgid "filename argument required"
+msgstr "vyžadován argument s názvem souboru"
+
+#: builtins/source.def:135
+#, c-format
+msgid "%s: file not found"
+msgstr "%s: soubor nenalezen"
+
+#: builtins/suspend.def:95
+msgid "cannot suspend"
+msgstr "nelze pozastavit"
+
+#: builtins/suspend.def:105
+msgid "cannot suspend a login shell"
+msgstr "login shell nelze pozastavit"
+
+#: builtins/type.def:232
+#, c-format
+msgid "%s is aliased to `%s'\n"
+msgstr "%s je alias na „%s“\n"
+
+#: builtins/type.def:253
+#, c-format
+msgid "%s is a shell keyword\n"
+msgstr "%s je klíčové slovo shellu\n"
+
+#: builtins/type.def:273
+#, c-format
+msgid "%s is a function\n"
+msgstr "%s je funkce\n"
+
+#: builtins/type.def:298
+#, c-format
+msgid "%s is a shell builtin\n"
+msgstr "%s je součást shellu\n"
+
+#: builtins/type.def:319
+#, c-format
+msgid "%s is %s\n"
+msgstr "%s je %s\n"
+
+#: builtins/type.def:339
+#, c-format
+msgid "%s is hashed (%s)\n"
+msgstr "%s je zahashován (%s)\n"
+
+#: builtins/ulimit.def:352
+#, c-format
+msgid "%s: invalid limit argument"
+msgstr "%s: chybný argument s limitou"
+
+#: builtins/ulimit.def:378
+#, c-format
+msgid "`%c': bad command"
+msgstr "„%c“: chybný příkaz"
+
+#: builtins/ulimit.def:407
+#, c-format
+msgid "%s: cannot get limit: %s"
+msgstr "%s: limit nelze zjistit: %s"
+
+#: builtins/ulimit.def:445
+#, c-format
+msgid "%s: cannot modify limit: %s"
+msgstr "%s: limit nelze změnit: %s"
+
+#: builtins/umask.def:112
+msgid "octal number"
+msgstr "osmičkové číslo"
+
+#: builtins/umask.def:226
+#, c-format
+msgid "`%c': invalid symbolic mode operator"
+msgstr "„%c“: chybný operátor symbolických práv"
+
+#: builtins/umask.def:281
+#, c-format
+msgid "`%c': invalid symbolic mode character"
+msgstr "„%c“: chybný znak symbolický práv "
+
+#: error.c:163
+#, c-format
+msgid "last command: %s\n"
+msgstr "poslední příkaz: %s\n"
+
+#: error.c:171
+msgid "Aborting..."
+msgstr "Ukončuji…"
+
+#: error.c:258
+#, c-format
+msgid "%s: warning: "
+msgstr "%s: varování: "
+
+#: error.c:403
+msgid "unknown command error"
+msgstr "chyba neznámého příkazu"
+
+#: error.c:404
+msgid "bad command type"
+msgstr "chybný druh příkazu"
+
+#: error.c:405
+msgid "bad connector"
+msgstr "chybný konektor"
+
+#: error.c:406
+msgid "bad jump"
+msgstr "chybný skok"
+
+#: error.c:444
+#, c-format
+msgid "%s: unbound variable"
+msgstr "%s: nevázaná proměnná"
+
+#: eval.c:176
+msgid "\atimed out waiting for input: auto-logout\n"
+msgstr "\ačasový limit pro čekání na vstup vypršel: automatické odhlášení\n"
+
+#: execute_cmd.c:474
+#, c-format
+msgid "cannot redirect standard input from /dev/null: %s"
+msgstr "standardní vstup nelze přesměrovat z /dev/null: %s"
+
+#: execute_cmd.c:1058
+#, c-format
+msgid "TIMEFORMAT: `%c': invalid format character"
+msgstr "TIMEFORMAT: „%c“: chybný formátovací znak"
+
+#: execute_cmd.c:3629
+#, c-format
+msgid "%s: restricted: cannot specify `/' in command names"
+msgstr "%s: omezeno: v názvu příkazu nesmí být „/“"
+
+#: execute_cmd.c:3717
+#, c-format
+msgid "%s: command not found"
+msgstr "%s: příkaz nenalezen"
+
+#: execute_cmd.c:3963
+#, c-format
+msgid "%s: %s: bad interpreter"
+msgstr "%s: %s: chybný interpretr"
+
+#: execute_cmd.c:4000
+#, c-format
+msgid "%s: cannot execute binary file"
+msgstr "%s: binární soubor nelze spustit"
+
+#: execute_cmd.c:4112
+#, c-format
+msgid "cannot duplicate fd %d to fd %d"
+msgstr "deskriptor souboru %d nelze duplikovat na deskriptor %d"
+
+#: expr.c:241
+msgid "expression recursion level exceeded"
+msgstr "úroveň rekurze výrazu byla překročena"
+
+#: expr.c:265
+msgid "recursion stack underflow"
+msgstr "zásobník rekurze podtekl"
+
+#: expr.c:376
+msgid "syntax error in expression"
+msgstr "syntaktická chyba ve výrazu"
+
+#: expr.c:416
+msgid "attempted assignment to non-variable"
+msgstr "pokus o přiřazení do ne-proměnné"
+
+#: expr.c:437 expr.c:442 expr.c:752
+msgid "division by 0"
+msgstr "dělení nulou"
+
+#: expr.c:468
+msgid "bug: bad expassign token"
+msgstr "chyba: chybný expassing token"
+
+#: expr.c:510
+msgid "`:' expected for conditional expression"
+msgstr "v podmíněném výrazu očekávána „:“"
+
+#: expr.c:777
+msgid "exponent less than 0"
+msgstr "mocnitel menší než 0"
+
+#: expr.c:822
+msgid "identifier expected after pre-increment or pre-decrement"
+msgstr "po přednostním zvýšení nebo snížení očekáván identifikátor"
+
+#: expr.c:850
+msgid "missing `)'"
+msgstr "postrádám „)“"
+
+#: expr.c:893 expr.c:1171
+msgid "syntax error: operand expected"
+msgstr "syntaktická chyba: očekáván operand"
+
+#: expr.c:1173
+msgid "syntax error: invalid arithmetic operator"
+msgstr "syntaktická chyba: chybný aritmetický operátor"
+
+#: expr.c:1251
+msgid "invalid number"
+msgstr "chybné číslo"
+
+#: expr.c:1255
+msgid "invalid arithmetic base"
+msgstr "chybný aritmetický základ"
+
+#: expr.c:1275
+msgid "value too great for base"
+msgstr "hodnot je pro základ příliš velká"
+
+#: general.c:61
+msgid "getcwd: cannot access parent directories"
+msgstr "getcwd: rodičovské adresáře nejsou přístupné"
+
+#: input.c:237
+#, c-format
+msgid "cannot allocate new file descriptor for bash input from fd %d"
+msgstr "nový deskriptor souboru pro vstup bashe z deskr. %d nelze alokovat"
+
+#: input.c:245
+#, c-format
+msgid "save_bash_input: buffer already exists for new fd %d"
+msgstr "save_bash_input: buffer již pro nový deskriptor %d existuje"
+
+#: jobs.c:876
+#, c-format
+msgid "forked pid %d appears in running job %d"
+msgstr "forknutý PID %d se objevil v běžící úloze %d"
+
+#: jobs.c:983
+#, c-format
+msgid "deleting stopped job %d with process group %ld"
+msgstr "mažu pozastavenou úlohu %d se skupinou procesů %ld"
+
+#: jobs.c:1378
+#, c-format
+msgid "describe_pid: %ld: no such pid"
+msgstr "describe_pid: %ld: žádný takový PID"
+
+#: jobs.c:2061 nojobs.c:575
+#, c-format
+msgid "wait: pid %ld is not a child of this shell"
+msgstr "wait: PID %ld není potomkem tohoto shellu"
+
+#: jobs.c:2265
+#, c-format
+msgid "wait_for: No record of process %ld"
+msgstr "wait_for: Žádný záznam o procesu %ld"
+
+#: jobs.c:2524
+#, c-format
+msgid "wait_for_job: job %d is stopped"
+msgstr "wait_for_job: úloha %d je pozastavena"
+
+#: jobs.c:2746
+#, c-format
+msgid "%s: job has terminated"
+msgstr "%s: úloha skončila"
+
+#: jobs.c:2755
+#, c-format
+msgid "%s: job %d already in background"
+msgstr "%s: úloha %d je již na pozadí"
+
+#: jobs.c:3546
+msgid "no job control in this shell"
+msgstr "žádná správa úloh v tomto shellu"
+
+#: lib/malloc/malloc.c:298
+#, c-format
+msgid "malloc: failed assertion: %s\n"
+msgstr "malloc: předpoklad nesplněn: %s\n"
+
+#: lib/malloc/malloc.c:314
+#, c-format
+msgid ""
+"\r\n"
+"malloc: %s:%d: assertion botched\r\n"
+msgstr ""
+"\r\n"
+"malloc: %s:%d: zbabraný předpoklad\r\n"
+
+#: lib/malloc/malloc.c:799
+msgid "malloc: block on free list clobbered"
+msgstr "malloc: blok v seznamu uvolněných zbit"
+
+#: lib/malloc/malloc.c:876
+msgid "free: called with already freed block argument"
+msgstr "free: zavoláno s argumentem již uvolněného bloku"
+
+#: lib/malloc/malloc.c:879
+msgid "free: called with unallocated block argument"
+msgstr "free: zavoláno s argumentem nenaalokovaného bloku"
+
+#: lib/malloc/malloc.c:898
+msgid "free: underflow detected; mh_nbytes out of range"
+msgstr "free: zjištěno podtečení, mh_nbytes mimo rozsah"
+
+#: lib/malloc/malloc.c:904
+msgid "free: start and end chunk sizes differ"
+msgstr "free: velikosti počátečního a koncového kusu se liší"
+
+#: lib/malloc/malloc.c:1003
+msgid "realloc: called with unallocated block argument"
+msgstr "realloc: zavoláno s argumentem nenaalokovaného bloku"
+
+#: lib/malloc/malloc.c:1018
+msgid "realloc: underflow detected; mh_nbytes out of range"
+msgstr "realloc: zjištěno podtečení, mh_nbytes mimo rozsah"
+
+#: lib/malloc/malloc.c:1024
+msgid "realloc: start and end chunk sizes differ"
+msgstr "realloc: velikosti počátečního a koncového kusu se liší"
+
+#: lib/malloc/table.c:176
+msgid "register_alloc: alloc table is full with FIND_ALLOC?\n"
+msgstr "register_alloc: tabulka alokací je plná FIND_ALLOC?\n"
+
+#: lib/malloc/table.c:183
+#, c-format
+msgid "register_alloc: %p already in table as allocated?\n"
+msgstr "register_alloc: %p již obsažen v tabulce jako alokovaný?\n"
+
+#: lib/malloc/table.c:219
+#, c-format
+msgid "register_free: %p already in table as free?\n"
+msgstr "register_free: %p již obsažen v tabulce jako volný?\n"
+
+#: lib/malloc/watch.c:46
+msgid "allocated"
+msgstr "alokováno"
+
+#: lib/malloc/watch.c:48
+msgid "freed"
+msgstr "uvolněno"
+
+#: lib/malloc/watch.c:50
+msgid "requesting resize"
+msgstr "požadující velikost"
+
+#: lib/malloc/watch.c:52
+msgid "just resized"
+msgstr "právě změněna velikost"
+
+#: lib/malloc/watch.c:54
+msgid "bug: unknown operation"
+msgstr "chyba: neznámá operace"
+
+#: lib/malloc/watch.c:56
+#, c-format
+msgid "malloc: watch alert: %p %s "
+msgstr "malloc: výstraha sledování: %p %s"
+
+#: lib/sh/fmtulong.c:101
+msgid "invalid base"
+msgstr "chybný základ"
+
+#: lib/sh/netopen.c:168
+#, c-format
+msgid "%s: host unknown"
+msgstr "%s: stroj není znám"
+
+#: lib/sh/netopen.c:175
+#, c-format
+msgid "%s: invalid service"
+msgstr "%s: chybná služba"
+
+#: lib/sh/netopen.c:306
+#, c-format
+msgid "%s: bad network path specification"
+msgstr "%s: chybné určení síťové cesty"
+
+#: lib/sh/netopen.c:346
+msgid "network operations not supported"
+msgstr "síťové operace nejsou podporovány"
+
+#: mailcheck.c:386
+msgid "You have mail in $_"
+msgstr "V $_ máte poštu"
+
+#: mailcheck.c:411
+msgid "You have new mail in $_"
+msgstr "V $_ máte novou poštu"
+
+#: mailcheck.c:427
+#, c-format
+msgid "The mail in %s has been read\n"
+msgstr "Pošta v %s je přečtená\n"
+
+#: make_cmd.c:322
+msgid "syntax error: arithmetic expression required"
+msgstr "chyba syntaxe: vyžadován aritmetický výraz"
+
+#: make_cmd.c:324
+msgid "syntax error: `;' unexpected"
+msgstr "chyba syntaxe: neočekávaný „;“"
+
+#: make_cmd.c:325
+#, c-format
+msgid "syntax error: `((%s))'"
+msgstr "chyba syntaxe: „((%s))“"
+
+#: make_cmd.c:566
+#, c-format
+msgid "make_here_document: bad instruction type %d"
+msgstr "make_here_document: chybný druh instrukce %d"
+
+#: make_cmd.c:741
+#, c-format
+msgid "make_redirection: redirection instruction `%d' out of range"
+msgstr "make_redirection: instrukce přesměrování „%d“ mimo rozsah"
+
+#: parse.y:2759
+#, c-format
+msgid "unexpected EOF while looking for matching `%c'"
+msgstr "neočekávaný konec souboru při hledání znaku odpovídajícímu „%c“"
+
+#: parse.y:3071
+msgid "unexpected EOF while looking for `]]'"
+msgstr "neočekávaný konec souboru při hledání „]]“"
+
+# XXX: Condional means condition (adj.) probably. Can English distinguish
+# between the condition (podmínkový) and the code branch (podmíněný)? Check
+# for all "conditional" string occurences.
+#: parse.y:3076
+#, c-format
+msgid "syntax error in conditional expression: unexpected token `%s'"
+msgstr "chyba syntaxe ve výrazu podmínky: neočekávaný token „%s“"
+
+#: parse.y:3080
+msgid "syntax error in conditional expression"
+msgstr "chyba syntaxe ve výrazu podmínky"
+
+#: parse.y:3158
+#, c-format
+msgid "unexpected token `%s', expected `)'"
+msgstr "neočekávaný token „%s“, očekávána „)“"
+
+#: parse.y:3162
+msgid "expected `)'"
+msgstr "očekávána „)“"
+
+#: parse.y:3190
+#, c-format
+msgid "unexpected argument `%s' to conditional unary operator"
+msgstr "neočekávaný argument „%s“ u podmínkového unárního operátoru"
+
+#: parse.y:3194
+msgid "unexpected argument to conditional unary operator"
+msgstr "neočekávaný argument u podmínkového unárního operátoru"
+
+#: parse.y:3234
+#, c-format
+msgid "unexpected token `%s', conditional binary operator expected"
+msgstr "neočekávaný token „%s“, očekáván podmínkový binární operátor"
+
+#: parse.y:3238
+msgid "conditional binary operator expected"
+msgstr "očekáván podmínkový binární operátor"
+
+#: parse.y:3255
+#, c-format
+msgid "unexpected argument `%s' to conditional binary operator"
+msgstr "neočekávaný argument „%s„ u podmínkového binárního operátoru"
+
+#: parse.y:3259
+msgid "unexpected argument to conditional binary operator"
+msgstr "neočekávaný argument u podmínkového binárního operátoru"
+
+#: parse.y:3270
+#, c-format
+msgid "unexpected token `%c' in conditional command"
+msgstr "neočekávaný token „%c“ v podmínkovém příkazu"
+
+#: parse.y:3273
+#, c-format
+msgid "unexpected token `%s' in conditional command"
+msgstr "neočekávaný token „%s“ v podmínkovém příkazu"
+
+#: parse.y:3277
+#, c-format
+msgid "unexpected token %d in conditional command"
+msgstr "neočekávaný token %d v podmínkovém příkazu"
+
+#: parse.y:4523
+#, c-format
+msgid "syntax error near unexpected token `%s'"
+msgstr "chyba syntaxe poblíž neočekávaného tokenu „%s“"
+
+#: parse.y:4541
+#, c-format
+msgid "syntax error near `%s'"
+msgstr "chyba syntaxe poblíž „%s“"
+
+#: parse.y:4551
+msgid "syntax error: unexpected end of file"
+msgstr "chyba syntaxe: nenadálý konec souboru"
+
+#: parse.y:4551
+msgid "syntax error"
+msgstr "chyba syntaxe"
+
+#: parse.y:4613
+#, c-format
+msgid "Use \"%s\" to leave the shell.\n"
+msgstr "Shell lze ukončit příkazem „%s“.\n"
+
+#: parse.y:4775
+msgid "unexpected EOF while looking for matching `)'"
+msgstr "nenadálý konec souboru při hledání odpovídající „)“"
+
+#: pcomplete.c:1002
+#, c-format
+msgid "completion: function `%s' not found"
+msgstr "doplňování: funkce „%s“ nenalezena"
+
+#: pcomplib.c:179
+#, c-format
+msgid "progcomp_insert: %s: NULL COMPSPEC"
+msgstr "progcomp_insert: %s: NULLOVÝ COMPSPEC"
+
+#: print_cmd.c:264
+#, c-format
+msgid "print_command: bad connector `%d'"
+msgstr "print_command: chybná propojka „%d“"
+
+#: print_cmd.c:1236
+#, c-format
+msgid "cprintf: `%c': invalid format character"
+msgstr "cprintf: „%c“: chybný formátovací znak"
+
+#: redir.c:99
+msgid "file descriptor out of range"
+msgstr "deskriptor souboru mimo rozsah"
+
+#: redir.c:141
+#, c-format
+msgid "%s: ambiguous redirect"
+msgstr "%s: nejednoznačné přesměrování"
+
+#: redir.c:145
+#, c-format
+msgid "%s: cannot overwrite existing file"
+msgstr "%s: existující soubor nelze přepsat"
+
+#: redir.c:150
+#, c-format
+msgid "%s: restricted: cannot redirect output"
+msgstr "%s: omezeno: výstup nelze přesměrovat"
+
+#: redir.c:155
+#, c-format
+msgid "cannot create temp file for here document: %s"
+msgstr "pro „here“ dokument nelze vytvořit dočasný soubor: %s"
+
+#: redir.c:509
+msgid "/dev/(tcp|udp)/host/port not supported without networking"
+msgstr "/dev/(tcp|udp)/host/port není bez síťování podporováno"
+
+#: redir.c:965
+msgid "redirection error: cannot duplicate fd"
+msgstr "chyba přesměrování: deskriptor souboru nelze duplikovat"
+
+#: shell.c:309
+msgid "could not find /tmp, please create!"
+msgstr "nelze nalézt /tmp, vytvořte jej, prosím!"
+
+#: shell.c:313
+msgid "/tmp must be a valid directory name"
+msgstr "/tmp musí být platným názvem pro adresář"
+
+#: shell.c:850
+#, c-format
+msgid "%c%c: invalid option"
+msgstr "%c%c: chybný přepínač"
+
+#: shell.c:1600
+msgid "I have no name!"
+msgstr "Nemám žádné jméno!"
+
+#: shell.c:1735
+#, c-format
+msgid ""
+"Usage:\t%s [GNU long option] [option] ...\n"
+"\t%s [GNU long option] [option] script-file ...\n"
+msgstr ""
+"Použití:\t%s [Dlouhý GNU přepínač] [přepínač]…\n"
+"\t%s [Dlouhý GNU přepínač] [přepínač] skriptový_soubor…\n"
+
+#: shell.c:1737
+msgid "GNU long options:\n"
+msgstr "Dlouhé GNU přepínače:\n"
+
+#: shell.c:1741
+msgid "Shell options:\n"
+msgstr "Přepínače shellu:\n"
+
+#: shell.c:1742
+msgid "\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n"
+msgstr "\t-irsD nebo -c příkaz nebo -O shopt_přepínač\t(pouze při vyvolání)\n"
+
+#: shell.c:1757
+#, c-format
+msgid "\t-%s or -o option\n"
+msgstr "\t-%s nebo -o přepínač\n"
+
+#: shell.c:1763
+#, c-format
+msgid "Type `%s -c \"help set\"' for more information about shell options.\n"
+msgstr "Podrobnosti o přepínačích shellu získáte tím, že napíšete „%s -c \"help set\"“.\n"
+
+#: shell.c:1764
+#, c-format
+msgid "Type `%s -c help' for more information about shell builtin commands.\n"
+msgstr ""
+"Podrobnosti o příkazech vestavěných do shellu získáte tím, že\n"
+"napište „%s -c help“.\n"
+
+#: shell.c:1765
+msgid "Use the `bashbug' command to report bugs.\n"
+msgstr "Chyby nahlásíte příkazem „bashbug“.\n"
+
+#: sig.c:557
+#, c-format
+msgid "sigprocmask: %d: invalid operation"
+msgstr "sigprocmask: %d: neplatná operace"
+
+#: subst.c:1160
+#, c-format
+msgid "bad substitution: no closing `%s' in %s"
+msgstr "chybná substituce: v %2$s chybí uzavírací „%1$s“"
+
+#: subst.c:2328
+#, c-format
+msgid "%s: cannot assign list to array member"
+msgstr "%s: seznam nelze přiřadit do prvku pole"
+
+#: subst.c:4265 subst.c:4281
+msgid "cannot make pipe for process substitution"
+msgstr "nelze vyrobit rouru za účelem substituce procesu"
+
+#: subst.c:4312
+msgid "cannot make child for process substitution"
+msgstr "nelze vytvořit potomka za účelem substituce procesu"
+
+#: subst.c:4357
+#, c-format
+msgid "cannot open named pipe %s for reading"
+msgstr "pojmenovanou rouru %s nelze otevřít pro čtení"
+
+#: subst.c:4359
+#, c-format
+msgid "cannot open named pipe %s for writing"
+msgstr "pojmenovanou rouru %s nelze otevřít pro zápis"
+
+#: subst.c:4367
+#, c-format
+msgid "cannout reset nodelay mode for fd %d"
+msgstr "na deskriptoru %d nelze resetovat režim nodelay"
+
+#: subst.c:4377
+#, c-format
+msgid "cannot duplicate named pipe %s as fd %d"
+msgstr "pojmenovanou rouru %s nelze zdvojit jako deskriptor %d"
+
+#: subst.c:4552
+msgid "cannot make pipe for command substitution"
+msgstr "nelze vytvořit rouru pro substituci příkazu"
+
+#: subst.c:4588
+msgid "cannot make child for command substitution"
+msgstr "nelze vytvořit potomka pro substituci příkazu"
+
+#: subst.c:4605
+msgid "command_substitute: cannot duplicate pipe as fd 1"
+msgstr "command_substitute: rouru nelze zdvojit jako deskriptor 1"
+
+#: subst.c:5068
+#, c-format
+msgid "%s: parameter null or not set"
+msgstr "%s: parametr null nebo nenastaven"
+
+#: subst.c:5342
+#, c-format
+msgid "%s: substring expression < 0"
+msgstr "%s: výraz podřetězce < 0"
+
+#: subst.c:6179
+#, c-format
+msgid "%s: bad substitution"
+msgstr "%s: chybná substituce"
+
+#: subst.c:6255
+#, c-format
+msgid "$%s: cannot assign in this way"
+msgstr "$%s: takto nelze přiřazovat"
+
+#: subst.c:7826
+#, c-format
+msgid "no match: %s"
+msgstr "žádná shoda: %s"
+
+#: test.c:145
+msgid "argument expected"
+msgstr "očekáván argument"
+
+#: test.c:154
+#, c-format
+msgid "%s: integer expression expected"
+msgstr "%s: očekáván celočíselný výraz"
+
+#: test.c:262
+msgid "`)' expected"
+msgstr "očekávána „)“"
+
+#: test.c:264
+#, c-format
+msgid "`)' expected, found %s"
+msgstr "očekávána „)“, nalezeno %s"
+
+#: test.c:279 test.c:688 test.c:691
+#, c-format
+msgid "%s: unary operator expected"
+msgstr "%s: očekáván unární operátor"
+
+#: test.c:444 test.c:731
+#, c-format
+msgid "%s: binary operator expected"
+msgstr "%s: očekáván binární operátor"
+
+#: test.c:806
+msgid "missing `]'"
+msgstr "postrádám „]“"
+
+#: trap.c:200
+msgid "invalid signal number"
+msgstr "neplatné číslo signálu"
+
+#: trap.c:315
+#, c-format
+msgid "run_pending_traps: bad value in trap_list[%d]: %p"
+msgstr "run_pending_traps: chybná hodnota v trap_list[%d]: %p"
+
+#: trap.c:319
+#, c-format
+msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself"
+msgstr "run_pending_traps: obsluha signálu je SIG_DFL, přeposílám %d (%s) sobě"
+
+#: trap.c:355
+#, c-format
+msgid "trap_handler: bad signal %d"
+msgstr "trap_handler: chybný signál %d"
+
+#: variables.c:334
+#, c-format
+msgid "error importing function definition for `%s'"
+msgstr "chyba při importu definice „%s“"
+
+#: variables.c:711
+#, c-format
+msgid "shell level (%d) too high, resetting to 1"
+msgstr "úroveň shellu (%d) příliš vysoká, resetuji na 1"
+
+#: variables.c:1670
+msgid "make_local_variable: no function context at current scope"
+msgstr "make_local_variable: žádný kontext funkce v aktuálním rozsahu"
+
+#: variables.c:2813
+msgid "all_local_variables: no function context at current scope"
+msgstr "all_local_variables: žádný kontext funkce v aktuálním rozsahu"
+
+#: variables.c:3030 variables.c:3039
+#, c-format
+msgid "invalid character %d in exportstr for %s"
+msgstr "neplatný znak %d v exportstr pro %s"
+
+#: variables.c:3045
+#, c-format
+msgid "no `=' in exportstr for %s"
+msgstr "v exportstr pro %s chybí „=“"
+
+#: variables.c:3472
+msgid "pop_var_context: head of shell_variables not a function context"
+msgstr "pop_var_context: hlava shell_variables není kontextem funkce"
+
+#: variables.c:3485
+msgid "pop_var_context: no global_variables context"
+msgstr "pop_var_context: chybí kontext global_variables"
+
+#: variables.c:3557
+msgid "pop_scope: head of shell_variables not a temporary environment scope"
+msgstr "pop_scope: hlava shell_variables není dočasným rozsahem prostředí"
+
+#: version.c:82
+msgid "Copyright (C) 2006 Free Software Foundation, Inc.\n"
+msgstr "Copyright © 2006 Free Software Foundation, Inc.\n"
+
+#: xmalloc.c:93
+#, c-format
+msgid "xmalloc: cannot allocate %lu bytes (%lu bytes allocated)"
+msgstr "xmalloc: nelze alokovat %'lu bajtů (%'lu bajtů alokováno)"
+
+#: xmalloc.c:95
+#, c-format
+msgid "xmalloc: cannot allocate %lu bytes"
+msgstr "xmalloc: nezle alokovat %'lu bajtů"
+
+#: xmalloc.c:115
+#, c-format
+msgid "xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)"
+msgstr "xrealloc: nelze přealokovat %'lu bajtů (%'lu bajtů alokováno)"
+
+#: xmalloc.c:117
+#, c-format
+msgid "xrealloc: cannot allocate %lu bytes"
+msgstr "xrealloc: nelze alokovat %'lu bajtů"
+
+#: xmalloc.c:151
+#, c-format
+msgid "xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)"
+msgstr "xmalloc: %s:%d: nelze alokovat %'lu bajtů (%'lu bajtů alokováno)"
+
+#: xmalloc.c:153
+#, c-format
+msgid "xmalloc: %s:%d: cannot allocate %lu bytes"
+msgstr "xmalloc: %s:%d: nelze alokovat %'lu bajtů"
+
+#: xmalloc.c:175
+#, c-format
+msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)"
+msgstr "xrealloc: %s:%d: nelze přealokovat %'lu bajtů (%'lu bajtů alokováno)"
+
+#: xmalloc.c:177
+#, c-format
+msgid "xrealloc: %s:%d: cannot allocate %lu bytes"
+msgstr "xrealloc: %s:%d: nelze alokovat %'lu bajtů"
+
+#: builtins.c:244
+msgid ""
+"`alias' with no arguments or with the -p option prints the list\n"
+"    of aliases in the form alias NAME=VALUE on standard output.\n"
+"    Otherwise, an alias is defined for each NAME whose VALUE is given.\n"
+"    A trailing space in VALUE causes the next word to be checked for\n"
+"    alias substitution when the alias is expanded.  Alias returns\n"
+"    true unless a NAME is given for which no alias has been defined."
+msgstr ""
+"„alias“ bez argumentů nebo s přepínačem -p vytiskne na standardní výstup\n"
+"    seznam aliasů ve formátu NÁZEV=HODNOTA. Jinak bude definován alias pro\n"
+"    všechny NÁZVY, které mají zadanou HODNOTU. Závěrečná mezera v HODNOTĚ\n"
+"    způsobí, že při expanzi bude následující slovo zkontrolováno na substituci\n"
+"    aliasů. Alias vrátí pravdu, pokud nebyl zadán NÁZEV, pro který není\n"
+"    žádný alias definován."
+
+#: builtins.c:257
+msgid ""
+"Remove NAMEs from the list of defined aliases.  If the -a option is given,\n"
+"    then remove all alias definitions."
+msgstr ""
+"Odstraní NÁZEV ze seznamů definovaných aliasů. Je-li zadán přepínač -a,\n"
+"    odstraní všechny definice aliasů."
+
+#: builtins.c:266
+msgid ""
+"Bind a key sequence to a Readline function or a macro, or set\n"
+"    a Readline variable.  The non-option argument syntax is equivalent\n"
+"    to that found in ~/.inputrc, but must be passed as a single argument:\n"
+"    bind '\"\\C-x\\C-r\": re-read-init-file'.\n"
+"    bind accepts the following options:\n"
+"      -m  keymap         Use `keymap' as the keymap for the duration of this\n"
+"                         command.  Acceptable keymap names are emacs,\n"
+"                         emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n"
+"                         vi-command, and vi-insert.\n"
+"      -l                 List names of functions.\n"
+"      -P                 List function names and bindings.\n"
+"      -p                 List functions and bindings in a form that can be\n"
+"                         reused as input.\n"
+"      -r  keyseq         Remove the binding for KEYSEQ.\n"
+"      -x  keyseq:shell-command\tCause SHELL-COMMAND to be executed when\n"
+"    \t\t\t\tKEYSEQ is entered.\n"
+"      -f  filename       Read key bindings from FILENAME.\n"
+"      -q  function-name  Query about which keys invoke the named function.\n"
+"      -u  function-name  Unbind all keys which are bound to the named function.\n"
+"      -V                 List variable names and values\n"
+"      -v                 List variable names and values in a form that can\n"
+"                         be reused as input.\n"
+"      -S                 List key sequences that invoke macros and their values\n"
+"      -s                 List key sequences that invoke macros and their values\n"
+"                         in a form that can be reused as input."
+msgstr ""
+"Naváže posloupnost kláves na Readline funkci nebo makro nebo nastaví\n"
+"    Readline proměnnou. Syntaxe nepřepínačových argumentů je shodná se\n"
+"    syntaxí ~/.inputrc, ale musí být zadána jako jediný argument:\n"
+"    bind '\"\\C-x\\C-r\": re-read-init-file'.\n"
+"    bind přijímá následujíc přepínače:\n"
+"      -m  klávmapa       Použije „klávmapu“ jako klávesovou mapu pro trvání\n"
+"                         tohoto příkazu. Možné klávesové mapy jsou emacs,\n"
+"                         emacs-standard, emacs-meta, emacs-ctlx, vi, vi-move,\n"
+"                         vi-command a vi-insert.\n"
+"      -l                 Vypíše seznam názvů funkcí.\n"
+"      -P                 Vypíše seznam názvů funkcí klávesových vazeb.\n"
+"      -p                 Vypíše seznam funkcí a klávesových vazeb ve formátu,\n"
+"                         který lze použít jako vstup.\n"
+"      -r  klávposl       Odstraní vazbu na KLÁVPOSL.\n"
+"      -x  klávposl:příkaz-shellu\n"
+"                         Způsobí, že bude vykonán PŘÍKAZ-SHELLU, když bude\n"
+"                         zadána KLÁVPOSL.\n"
+"      -f  soubor         Načte vazby kláves ze SOUBORU.\n"
+"      -q  název-funkce   Dotáže se, které klávesy vyvolají zadanou funkci.\n"
+"      -u  název-funkce   Zruší všechny vazby na klávesy, které jsou napojeny\n"
+"                         na zadanou funkci.\n"
+"      -V                 Vypíše seznam názvů proměnných a hodnot.\n"
+"      -v                 Vypíše seznam názvů funkcí a hodnot ve formát,\n"
+"                         který lze použít jako vstup.\n"
+"      -S                 Vypíše seznam posloupností kláves,\n"
+"                         které vyvolávají makra, a jejich hodnoty.\n"
+"      -s                 Vypíše seznam posloupností kláves,\n"
+"                         která vyvolávají makra, a jejich hodnoty ve formátu,\n"
+"                         který lze použít jako vstup."
+
+#: builtins.c:297
+msgid ""
+"Exit from within a FOR, WHILE or UNTIL loop.  If N is specified,\n"
+"    break N levels."
+msgstr "Ukončí smyčku FOR, WHILE nebo UNTIL. Je-li zadáno N, ukončí N úrovní."
+
+#: builtins.c:304
+msgid ""
+"Resume the next iteration of the enclosing FOR, WHILE or UNTIL loop.\n"
+"    If N is specified, resume at the N-th enclosing loop."
+msgstr ""
+"Přejde k další iteraci obklopující smyčky FOR, WHILE nebo UNTIL.\n"
+"    Je-li zadáno N, bude tak učiněno v N. obklopující smyčce."
+
+#: builtins.c:311
+msgid ""
+"Run a shell builtin.  This is useful when you wish to rename a\n"
+"    shell builtin to be a function, but need the functionality of the\n"
+"    builtin within the function itself."
+msgstr ""
+"Spustí vestavěný příkaz shellu. Toto se hodí, přejete-li si přejmenovat\n"
+"    vestavěný příkaz na funkci, avšak funkcionalitu vestavěného příkazu\n"
+"    potřebujete v téže funkci."
+
+#: builtins.c:320
+msgid ""
+"Returns the context of the current subroutine call.\n"
+"    \n"
+"    Without EXPR, returns \"$line $filename\".  With EXPR,\n"
+"    returns \"$line $subroutine $filename\"; this extra information\n"
+"    can be used to provide a stack trace.\n"
+"    \n"
+"    The value of EXPR indicates how many call frames to go back before the\n"
+"    current one; the top frame is frame 0."
+msgstr ""
+"Vrátí kontext aktuálního podprogramu.\n"
+"    \n"
+"    Bez VÝRAZU vrátí „$řádek $název_souboru“. S VÝRAZEM vrátí\n"
+"    „$řádek $podprogram $název_souboru“; tuto zvláštní informaci lze\n"
+"    využít pro výpis zásobníku volání,\n"
+"    \n"
+"    Hodnota VÝRAZU určuje, kolik rámců volání se má projít od toho\n"
+"    současného; vrcholový rámec má číslo 0."
+
+#: builtins.c:334
+msgid ""
+"Change the current directory to DIR.  The variable $HOME is the\n"
+"    default DIR.  The variable CDPATH defines the search path for\n"
+"    the directory containing DIR.  Alternative directory names in CDPATH\n"
+"    are separated by a colon (:).  A null directory name is the same as\n"
+"    the current directory, i.e. `.'.  If DIR begins with a slash (/),\n"
+"    then CDPATH is not used.  If the directory is not found, and the\n"
+"    shell option `cdable_vars' is set, then try the word as a variable\n"
+"    name.  If that variable has a value, then cd to the value of that\n"
+"    variable.  The -P option says to use the physical directory structure\n"
+"    instead of following symbolic links; the -L option forces symbolic links\n"
+"    to be followed."
+msgstr ""
+"Změní aktuální adresář na ADR. Implicitní ADR je proměnná $HOME.\n"
+"    Proměnná CDPATH definuje vyhledávací cestu pro adresář obsahující ADR.\n"
+"    Názvy náhradních adresářů v CDPATH se oddělují dvojtečkou (:). Prázdný\n"
+"    název adresáře je stejný jako aktuální adresář, tj. „.“. Začíná-li ADR\n"
+"    na lomítko (/), nebude CDPATH použita. Nebude-li adresář nalezen a\n"
+"    přepínač shellu „cdable_vars“ bude je nastaven, pak se dané slovo zkusí\n"
+"    jakožto název proměnné. Má-li taková proměnná hodnotu, pak se provede cd\n"
+"    do hodnoty této proměnné. Přepínač -P nařizuje použít fyzickou\n"
+"    adresářovou strukturu namísto následováni symbolických odkazů;\n"
+"    přepínač -L vynutí následování symbolických odkazů."
+
+#: builtins.c:350
+msgid ""
+"Print the current working directory.  With the -P option, pwd prints\n"
+"    the physical directory, without any symbolic links; the -L option\n"
+"    makes pwd follow symbolic links."
+msgstr ""
+"Vypíše současný pracovní adresář. S přepínačem -P vytiskne pwd fyzický\n"
+"    adresář prostý všech symbolický odkazů; přepínač -L přinutí pwd\n"
+"    následovat symbolické odkazy."
+
+#: builtins.c:358
+msgid "No effect; the command does nothing.  A zero exit code is returned."
+msgstr "Žádný účinek, tento příkaz nic nedělá. Skončí s návratovým kódem nula."
+
+#: builtins.c:364
+msgid "Return a successful result."
+msgstr "Vrací výsledek úspěchu."
+
+#: builtins.c:370
+msgid "Return an unsuccessful result."
+msgstr "Vrací výsledek neúspěchu."
+
+#: builtins.c:376
+msgid ""
+"Runs COMMAND with ARGS ignoring shell functions.  If you have a shell\n"
+"    function called `ls', and you wish to call the command `ls', you can\n"
+"    say \"command ls\".  If the -p option is given, a default value is used\n"
+"    for PATH that is guaranteed to find all of the standard utilities.  If\n"
+"    the -V or -v option is given, a string is printed describing COMMAND.\n"
+"    The -V option produces a more verbose description."
+msgstr ""
+"Spustí PŘÍKAZ s ARGUMENTY ignoruje funkce shellu. Máte-li shellovou\n"
+"    funkci pojmenovanou „ls“, a chcete-li zavolat příkaz „ls“, použijte\n"
+"    „command ls“. Je-li zadán přepínač -p, bude pro PATH použita implicitní\n"
+"    hodnota, která zaručuje, že budou nalezeny všechny standardní nástroje.\n"
+"    Je-li zadán přepínač -V nebo -v, bude vytištěn řetězec popisující PŘÍKAZ.\n"
+"    Přepínač -V produkuje podrobnější popis."
+
+#: builtins.c:387
+msgid ""
+"Declare variables and/or give them attributes.  If no NAMEs are\n"
+"    given, then display the values of variables instead.  The -p option\n"
+"    will display the attributes and values of each NAME.\n"
+"    \n"
+"    The flags are:\n"
+"    \n"
+"      -a\tto make NAMEs arrays (if supported)\n"
+"      -f\tto select from among function names only\n"
+"      -F\tto display function names (and line number and source file name if\n"
+"    \tdebugging) without definitions\n"
+"      -i\tto make NAMEs have the `integer' attribute\n"
+"      -r\tto make NAMEs readonly\n"
+"      -t\tto make NAMEs have the `trace' attribute\n"
+"      -x\tto make NAMEs export\n"
+"    \n"
+"    Variables with the integer attribute have arithmetic evaluation (see\n"
+"    `let') done when the variable is assigned to.\n"
+"    \n"
+"    When displaying values of variables, -f displays a function's name\n"
+"    and definition.  The -F option restricts the display to function\n"
+"    name only.\n"
+"    \n"
+"    Using `+' instead of `-' turns off the given attribute instead.  When\n"
+"    used in a function, makes NAMEs local, as with the `local' command."
+msgstr ""
+"Deklaruje proměnné a/nebo jim nastaví atributy. Nejsou-li zadány NÁZVY,\n"
+"    tak místo toho zobrazí hodnoty proměnných. Přepínač -p zobrazí atributy\n"
+"    a hodnoty pro každý NÁZEV.\n"
+"    \n"
+"    Příznaky jsou:\n"
+"    \n"
+"      -a\tučiní NÁZVY poli (je-li podporováno)\n"
+"      -f\tvybírá pouze mezi názvy funkcí\n"
+"      -F\tzobrazí názvy funkcí (a číslo řádku a název zdrojového souboru,\n"
+"        \tje-li zapnuto ladění) bez definic\n"
+"      -i\tpřiřadí NÁZVŮM atribut „integer“ (číslo)\n"
+"      -r\tučiní NÁZVY jen pro čtení\n"
+"      -t\tpřiřadí NÁZVŮM atribut „trace“ (sledování)\n"
+"      -x\tvyexportuje NÁZVY\n"
+"    \n"
+"    Proměnné s atributem integer jsou aritmeticky vyhodnoceny (vizte „let“),\n"
+"    když je do proměnné přiřazováno.\n"
+"    \n"
+"    Při zobrazování hodnot proměnných -f zobrazí názvy a definice funkcí.\n"
+"    Přepínač -F omezí výpis jen na názvy funkcí.\n"
+"    \n"
+"    Pomocí „+“ namísto „-“ daný atribut odeberete. Je-li použito uvnitř\n"
+"    funkce, učiní NÁZVY lokální stejně jako příkaz „local“."
+
+#: builtins.c:416
+msgid "Obsolete.  See `declare'."
+msgstr "Zastaralé. Vizte „declare“."
+
+#: builtins.c:422
+msgid ""
+"Create a local variable called NAME, and give it VALUE.  LOCAL\n"
+"    can only be used within a function; it makes the variable NAME\n"
+"    have a visible scope restricted to that function and its children."
+msgstr ""
+"Vytvoří lokální proměnnou pojmenovanou NÁZEV a přiřadí jí HODNOTU.\n"
+"    LOCAL smí být použito jen uvnitř funkcí. Učiní proměnnou NÁZEV viditelnou\n"
+"    jen v dané funkci a jejích potomcích."
+
+#: builtins.c:431
+msgid ""
+"Output the ARGs.  If -n is specified, the trailing newline is\n"
+"    suppressed.  If the -e option is given, interpretation of the\n"
+"    following backslash-escaped characters is turned on:\n"
+"    \t\\a\talert (bell)\n"
+"    \t\\b\tbackspace\n"
+"    \t\\c\tsuppress trailing newline\n"
+"    \t\\E\tescape character\n"
+"    \t\\f\tform feed\n"
+"    \t\\n\tnew line\n"
+"    \t\\r\tcarriage return\n"
+"    \t\\t\thorizontal tab\n"
+"    \t\\v\tvertical tab\n"
+"    \t\\\\\tbackslash\n"
+"    \t\\0nnn\tthe character whose ASCII code is NNN (octal).  NNN can be\n"
+"    \t\t0 to 3 octal digits\n"
+"    \n"
+"    You can explicitly turn off the interpretation of the above characters\n"
+"    with the -E option."
+msgstr ""
+"Vypíše své ARGUMENTY. Je-li zadáno -n, potlačí závěrečný konec řádku.\n"
+"    Je-li zadán přepínač -e, interpretování následujících znaků uvozených\n"
+"    zpětným lomítkem bude zapnuto:\n"
+"    \t\\a\tpoplach (zvonek)\n"
+"    \t\\b\tbackspace\n"
+"    \t\\c\tpotlačí závěrečný konec řádku\n"
+"    \t\\E\tznak escapu\n"
+"    \t\\f\tposun formuláře (form feed)\n"
+"    \t\\n\tnový řádek\n"
+"    \t\\r\tnávrat vozíku\n"
+"    \t\\t\tvodorovný tabulátor\n"
+"    \t\\v\tsvislý tabulátor\n"
+"    \t\\\\\tzpětné lomítko\n"
+"    \t\\0nnn\tznak, jehož  ASCII kód je NNN (osmičkově). NNN smí být\n"
+"    \t\t0 až 3 osmičkové číslice\n"
+"    \n"
+"    Interpretování výše uvedených znaků můžete explicitně vypnout\n"
+"    přepínačem -E."
+
+#: builtins.c:456
+msgid "Output the ARGs.  If -n is specified, the trailing newline is suppressed."
+msgstr "Vypíše ARGUMENTY. Je-li zadáni -n, závěrečný konec řádku bude potlačen."
+
+#: builtins.c:463
+msgid ""
+"Enable and disable builtin shell commands.  This allows\n"
+"    you to use a disk command which has the same name as a shell\n"
+"    builtin without specifying a full pathname.  If -n is used, the\n"
+"    NAMEs become disabled; otherwise NAMEs are enabled.  For example,\n"
+"    to use the `test' found in $PATH instead of the shell builtin\n"
+"    version, type `enable -n test'.  On systems supporting dynamic\n"
+"    loading, the -f option may be used to load new builtins from the\n"
+"    shared object FILENAME.  The -d option will delete a builtin\n"
+"    previously loaded with -f.  If no non-option names are given, or\n"
+"    the -p option is supplied, a list of builtins is printed.  The\n"
+"    -a option means to print every builtin with an indication of whether\n"
+"    or not it is enabled.  The -s option restricts the output to the POSIX.2\n"
+"    `special' builtins.  The -n option displays a list of all disabled builtins."
+msgstr ""
+"Povolí nebo zakáže vestavěný příkaz shellu. To vám umožňuje použít\n"
+"    příkaz z disku, který má stejné jméno jako vestavěný příkaz shellu, aniž\n"
+"    byste museli zadávat celou cestu. Je-li použito -n, NÁZVY se stanou\n"
+"    zakázanými, jinak budou povoleny. Například „test“ z PATH namísto verze\n"
+"    vestavěné do shellu lze používat tak, že napíšete „enable -n test“. Na\n"
+"    systémech podporujících dynamické zavádění přepínač -f může být použit\n"
+"    pro zavedení nových vestavěných příkazů ze sdíleného objektu NÁZEV_SOUBORU.\n"
+"    Přepínač -d odstraní vestavěný příkaz zavedený přes -f. Není-li zadán\n"
+"    žádný přepínač nebo je-li zadán přepínač -p, bude vypsán seznam vestavěných\n"
+"    příkazů. Přepínač -a znamená, že budou vypsány všechny vestavěné příkazy a\n"
+"    u každého bude vyznačeno, zda je povolen nebo zakázán. Přepínač -s omezí\n"
+"    výpis na příkazy uvedené v POSIX.2. Přepínač -n zobrazí seznam všech\n"
+"    zakázaných vestavěných příkazů."
+
+#: builtins.c:481
+msgid "Read ARGs as input to the shell and execute the resulting command(s)."
+msgstr "Načte ARGUMENTY jako vstup shellu a výsledný příkaz(y) provede."
+
+#: builtins.c:487
+msgid ""
+"Getopts is used by shell procedures to parse positional parameters.\n"
+"    \n"
+"    OPTSTRING contains the option letters to be recognized; if a letter\n"
+"    is followed by a colon, the option is expected to have an argument,\n"
+"    which should be separated from it by white space.\n"
+"    \n"
+"    Each time it is invoked, getopts will place the next option in the\n"
+"    shell variable $name, initializing name if it does not exist, and\n"
+"    the index of the next argument to be processed into the shell\n"
+"    variable OPTIND.  OPTIND is initialized to 1 each time the shell or\n"
+"    a shell script is invoked.  When an option requires an argument,\n"
+"    getopts places that argument into the shell variable OPTARG.\n"
+"    \n"
+"    getopts reports errors in one of two ways.  If the first character\n"
+"    of OPTSTRING is a colon, getopts uses silent error reporting.  In\n"
+"    this mode, no error messages are printed.  If an invalid option is\n"
+"    seen, getopts places the option character found into OPTARG.  If a\n"
+"    required argument is not found, getopts places a ':' into NAME and\n"
+"    sets OPTARG to the option character found.  If getopts is not in\n"
+"    silent mode, and an invalid option is seen, getopts places '?' into\n"
+"    NAME and unsets OPTARG.  If a required argument is not found, a '?'\n"
+"    is placed in NAME, OPTARG is unset, and a diagnostic message is\n"
+"    printed.\n"
+"    \n"
+"    If the shell variable OPTERR has the value 0, getopts disables the\n"
+"    printing of error messages, even if the first character of\n"
+"    OPTSTRING is not a colon.  OPTERR has the value 1 by default.\n"
+"    \n"
+"    Getopts normally parses the positional parameters ($0 - $9), but if\n"
+"    more arguments are given, they are parsed instead."
+msgstr ""
+"Getopts se používá v shellových procedurách na rozebrání pozičních\n"
+"    parametrů.\n"
+"    \n"
+"    OPTSTRING obsahuje písmena přepínačů, které mají být rozeznány, Je-li\n"
+"    písmeno následováno dvojtečkou, po přepínači se očekává argument, který\n"
+"    by měl být od přepínače oddělen bílým místem.\n"
+"    \n"
+"    Pokaždé když je getopts zavolán, je následující přepínač umístěn do\n"
+"    proměnné $name (proměnná je inicializována, neexistuje-li) a pořadí\n"
+"    dalšího argumentu, který čeká na zpracování, do proměnné shellu OPTIND.\n"
+"    OPTIND je inicializována na 1 vždy, když je zavolán shell nebo shellový\n"
+"    skript. Pokud přepínač vyžaduje argument, getopts umístí tento argument\n"
+"    do proměnné shellu OPTARG.\n"
+"    \n"
+"    getopts hlásí chyby jedním ze dvou způsobů. Pokud prvním znakem OPTSTRING\n"
+"    je dvojtečka, getopts hlásí chyby tichým způsobem. V tomto režimu, žádné\n"
+"    chybové zprávy nejsou vypisovány. Když se narazí na neplatný přepínač,\n"
+"    getopts umístí tento znak do OPTARG. Pokud není nalezen povinný argument,\n"
+"    getopts umístí „:“ do NAME a OPTARG nastaví na znak nalezeného přepínače.\n"
+"    Pokud getopts nepracuje v tomto tichém režimu a je nalezen neplatný\n"
+"    přepínač, getopts umístí „?“ do NAME a zruší OPTARG. Když nenajde povinný\n"
+"    argument, je do NAME zapsán „?“, OPTARG zrušen a vytištěna diagnostická\n"
+"    zpráva.\n"
+"    \n"
+"    Pokud proměnná shellu OPTERR má hodnotu 0, getopts vypne vypisování\n"
+"    chybových zpráv dokonce, i když první znak OPTSTRING není dvojtečka.\n"
+"    Implicitní hodnota OPTERR je 1.    \n"
+"    Normálně getopts zpracovává poziční parametry ($0–$9), avšak následuje-li\n"
+"    getopts více argumentů, budou rozebrány tyto namísto pozičních."
+
+#: builtins.c:522
+msgid ""
+"Exec FILE, replacing this shell with the specified program.\n"
+"    If FILE is not specified, the redirections take effect in this\n"
+"    shell.  If the first argument is `-l', then place a dash in the\n"
+"    zeroth arg passed to FILE, as login does.  If the `-c' option\n"
+"    is supplied, FILE is executed with a null environment.  The `-a'\n"
+"    option means to make set argv[0] of the executed process to NAME.\n"
+"    If the file cannot be executed and the shell is not interactive,\n"
+"    then the shell exits, unless the shell option `execfail' is set."
+msgstr ""
+"Provede SOUBOR, přičemž nahradí tento shell zadaným programem.\n"
+"    Není-li SOUBOR zadán, přesměrování zapůsobí v tomto shellu. Je-li prvním\n"
+"    argumentem „-l“, bude do nultého argumentu SOUBORU umístěna pomlčka tak,\n"
+"    jak to dělá login. Je-li zadán přepínač „-c“, bude SOUBOR spuštěn\n"
+"    s prázdným prostředím. Přepínač „-a“ znamená, že argv[0] prováděného\n"
+"    procesu bude nastaven na NÁZEV. Pokud soubor nemůže být proveden a shell\n"
+"    není interaktivní, pak shell bude ukončen, pokud přepínač shellu\n"
+"    „execfail“ není nastaven."
+
+#: builtins.c:535
+msgid ""
+"Exit the shell with a status of N.  If N is omitted, the exit status\n"
+"    is that of the last command executed."
+msgstr ""
+"Ukončí shell se stavem N. Bez N bude návratový kód roven kódu\n"
+"    posledně prováděného příkazu"
+
+#: builtins.c:542
+msgid "Logout of a login shell."
+msgstr "Odhlásí z přihlašovacího (login) shellu."
+
+#: builtins.c:549
+msgid ""
+"fc is used to list or edit and re-execute commands from the history list.\n"
+"    FIRST and LAST can be numbers specifying the range, or FIRST can be a\n"
+"    string, which means the most recent command beginning with that\n"
+"    string.\n"
+"    \n"
+"       -e ENAME selects which editor to use.  Default is FCEDIT, then EDITOR,\n"
+"          then vi.\n"
+"    \n"
+"       -l means list lines instead of editing.\n"
+"       -n means no line numbers listed.\n"
+"       -r means reverse the order of the lines (making it newest listed first).\n"
+"    \n"
+"    With the `fc -s [pat=rep ...] [command]' format, the command is\n"
+"    re-executed after the substitution OLD=NEW is performed.\n"
+"    \n"
+"    A useful alias to use with this is r='fc -s', so that typing `r cc'\n"
+"    runs the last command beginning with `cc' and typing `r' re-executes\n"
+"    the last command."
+msgstr ""
+"fc se používá na vypsání, úpravu a znovu provedení příkazů ze seznamu\n"
+"    historie.\n"
+"    PRVNÍ a POSLEDNÍ mohou být čísla určující rozsah nebo PRVNÍ může být\n"
+"    řetězec, což určuje nejnovější příkaz začínající na zadaný řetězec.\n"
+"    \n"
+"       -e ENAME vybere editor. Implicitní je FCEDIT, pak EDITOR, pak vi.\n"
+"    \n"
+"       -l požaduje vypsaní namísto upravování.\n"
+"       -n vypne číslování řádků.\n"
+"       -r obrátí pořadí řádků (nejnovější budou první).\n"
+"    \n"
+"    Forma příkazu „fc -s [VZOR=NÁHRADA… [PŘÍKAZ]“ znamená, že příkaz bude\n"
+"    po nahrazení STARÝ=NOVÝ znovu vykonán.\n"
+"    \n"
+"    Užitečný alias je r='fc -s', takže napsání „r cc“ spustí poslední příkaz\n"
+"    začínající na „cc“ a zadání „r“ znovu spustí poslední příkaz."
+
+#: builtins.c:574
+msgid ""
+"Place JOB_SPEC in the foreground, and make it the current job.  If\n"
+"    JOB_SPEC is not present, the shell's notion of the current job is\n"
+"    used."
+msgstr ""
+"Přepne ÚLOHU na popředí a učiní ji aktuální úlohou. Není-li ÚLOHA\n"
+"    zadána, použije se úloha, o které si shell myslí, že aktuální."
+
+#: builtins.c:584
+msgid ""
+"Place each JOB_SPEC in the background, as if it had been started with\n"
+"    `&'.  If JOB_SPEC is not present, the shell's notion of the current\n"
+"    job is used."
+msgstr ""
+"Přepne každou ÚLOHU na pozadí, jako by byla spuštěna s „&“. Ne-li\n"
+"    ÚLOHA uvedena, použije se úloha, o které si shell myslí, že je aktuální."
+
+#: builtins.c:593
+msgid ""
+"For each NAME, the full pathname of the command is determined and\n"
+"    remembered.  If the -p option is supplied, PATHNAME is used as the\n"
+"    full pathname of NAME, and no path search is performed.  The -r\n"
+"    option causes the shell to forget all remembered locations.  The -d\n"
+"    option causes the shell to forget the remembered location of each NAME.\n"
+"    If the -t option is supplied the full pathname to which each NAME\n"
+"    corresponds is printed.  If multiple NAME arguments are supplied with\n"
+"    -t, the NAME is printed before the hashed full pathname.  The -l option\n"
+"    causes output to be displayed in a format that may be reused as input.\n"
+"    If no arguments are given, information about remembered commands is displayed."
+msgstr ""
+"Pro každý NÁZEV je určena plná cesta k příkazu a je zapamatována.\n"
+"    Za použití přepínače -p se vezme NÁZEV_CESTY za plnou cestu k NÁZVU a\n"
+"    žádné vyhledávání cesty se nekoná. Přepínač -r způsobí, že shell zapomene\n"
+"    všechny zapamatovaná umístění. Přepínač -d způsobí, že shell zapomene\n"
+"    zapamatovaná umístění každého NÁZVU. Je-li zadán přepínač -t, bude vypsána\n"
+"    plná cesta ke každému NÁZVU. Je-li s -t zadáno více NÁZVŮ, NÁZEV bude\n"
+"    vypsán před uloženou celou cestou. Přepínač -l vytvoří takový výstup,\n"
+"    který lze opět použít jako vstup. Nejsou-li zadány žádné argumenty,\n"
+"    budou vypsány informace o zapamatovaných příkazech."
+
+#: builtins.c:609
+msgid ""
+"Display helpful information about builtin commands.  If PATTERN is\n"
+"    specified, gives detailed help on all commands matching PATTERN,\n"
+"    otherwise a list of the builtins is printed.  The -s option\n"
+"    restricts the output for each builtin command matching PATTERN to\n"
+"    a short usage synopsis."
+msgstr ""
+"Zobrazí užitečné informace o vestavěných příkazech. Je-li zadán VZOREK,\n"
+"    vrátí podrobnou nápovědu ke všem příkazům odpovídajícím VZORKU, jinak je\n"
+"    vytištěn seznam vestavěných příkazů. Přepínač -s omezí výstup o každém\n"
+"    vestavěném příkazu odpovídajícího VZORKU na stručný popis použití."
+
+#: builtins.c:621
+msgid ""
+"Display the history list with line numbers.  Lines listed with\n"
+"    with a `*' have been modified.  Argument of N says to list only\n"
+"    the last N lines.  The `-c' option causes the history list to be\n"
+"    cleared by deleting all of the entries.  The `-d' option deletes\n"
+"    the history entry at offset OFFSET.  The `-w' option writes out the\n"
+"    current history to the history file;  `-r' means to read the file and\n"
+"    append the contents to the history list instead.  `-a' means\n"
+"    to append history lines from this session to the history file.\n"
+"    Argument `-n' means to read all history lines not already read\n"
+"    from the history file and append them to the history list.\n"
+"    \n"
+"    If FILENAME is given, then that is used as the history file else\n"
+"    if $HISTFILE has a value, that is used, else ~/.bash_history.\n"
+"    If the -s option is supplied, the non-option ARGs are appended to\n"
+"    the history list as a single entry.  The -p option means to perform\n"
+"    history expansion on each ARG and display the result, without storing\n"
+"    anything in the history list.\n"
+"    \n"
+"    If the $HISTTIMEFORMAT variable is set and not null, its value is used\n"
+"    as a format string for strftime(3) to print the time stamp associated\n"
+"    with each displayed history entry.  No time stamps are printed otherwise."
+msgstr ""
+"Zobrazí seznam historie s očíslovanými řádky. Řádky vypsané s „*“ byly\n"
+"    změněny. Argument N říká, že se vypíše pouze posledních N řádek.\n"
+"    Přepínač „-c“ způsobí, že seznam historie bude vyčištěn smazáním všech\n"
+"    položek. Přepínač „-d“ smaže ze seznamu historie položku na pozici POZICE.\n"
+"    Přepínač „-w“ zapíše současnou historii do souboru historie, „-r“ znamená,\n"
+"    že se soubor načte a obsah se připojí do seznamu historie. „-a“ znamená,\n"
+"    že řádky historie z této relace se připojí do souboru historie. Argument\n"
+"    „-n“ znamená, že všechny řádky historie, které ještě nebyly načteny,\n"
+"    načtou ze souboru historie a připojí se do seznamu historie.\n"
+"    \n"
+"    Je-li zadán JMÉNO_SOUBORU, tak ten je použit jako soubor historie. Jinak\n"
+"    pokud $HISTFILE má hodnotu, tato je použita, jinak ~/.bash_history. Je-li\n"
+"    zadán přepínač „-s“, nepřepínačové ARGUMENTY budou připojeny do seznamu\n"
+"    historie jako jedna položka. Přepínač „-p“ značí, že se expanduje historie\n"
+"    na každém ARGUMENTU a výsledek se zobrazí, aniž by cokoliv uložilo do\n"
+"    seznamu historie.\n"
+"    \n"
+"    Je-li proměnná $HISTTIMEFORMAT nastavena a není-li prázdná, její hodnota\n"
+"    se použije jako formátovací řetězec pro strftime(3) při výpisu časových\n"
+"    razítek spojených s každou položkou historie. Jinak žádná časová razítka\n"
+"    nebudou vypisována."
+
+#: builtins.c:649
+msgid ""
+"Lists the active jobs.  The -l option lists process id's in addition\n"
+"    to the normal information; the -p option lists process id's only.\n"
+"    If -n is given, only processes that have changed status since the last\n"
+"    notification are printed.  JOBSPEC restricts output to that job.  The\n"
+"    -r and -s options restrict output to running and stopped jobs only,\n"
+"    respectively.  Without options, the status of all active jobs is\n"
+"    printed.  If -x is given, COMMAND is run after all job specifications\n"
+"    that appear in ARGS have been replaced with the process ID of that job's\n"
+"    process group leader."
+msgstr ""
+"Vypíše aktivní úlohy. Přepínač -l vypíše navíc ID procesů, přepínač -p\n"
+"    vypíše pouze ID procesů. Je-li zadáno -n, pouze procesy, které od minulého\n"
+"    oznámení změnily stav, budou vypsány. ÚLOHA omezuje výstup na danou úlohu.\n"
+"    Přepínače -r a -s zužují výstup jen na běžící, respektive pozastavené\n"
+"    úlohy. Bez uvedení přepínačů bude vypsán stav všech aktivních úloh. Je-li\n"
+"    použito -x, poté, co všechny úlohy uvedené mezi ARGUMENTY budou nahrazeny\n"
+"    ID procesu, který je vedoucím skupiny dané úlohy, bude spuštěn PŘÍKAZ."
+
+#: builtins.c:665
+msgid ""
+"By default, removes each JOBSPEC argument from the table of active jobs.\n"
+"    If the -h option is given, the job is not removed from the table, but is\n"
+"    marked so that SIGHUP is not sent to the job if the shell receives a\n"
+"    SIGHUP.  The -a option, when JOBSPEC is not supplied, means to remove all\n"
+"    jobs from the job table; the -r option means to remove only running jobs."
+msgstr ""
+"Implicitně odstraní každý argument ÚLOHA z tabulky aktivních úloh. Je-li\n"
+"    zadán přepínač -h, úloha není odstraněna z tabulky, ale je označena tak.\n"
+"    že úloze nebude zaslán SIGHUP, když shell obdrží SIGHUP. Přepínač -a,\n"
+"    pokud není uvedena ÚLOHA, znamená, že všechny úlohy budou odstraněny\n"
+"    z tabulky úloh. Přepínač -r znamená, že pouze běžící úlohy budou\n"
+"    odstraněny."
+
+#: builtins.c:676
+msgid ""
+"Send the processes named by PID (or JOBSPEC) the signal SIGSPEC.  If\n"
+"    SIGSPEC is not present, then SIGTERM is assumed.  An argument of `-l'\n"
+"    lists the signal names; if arguments follow `-l' they are assumed to\n"
+"    be signal numbers for which names should be listed.  Kill is a shell\n"
+"    builtin for two reasons: it allows job IDs to be used instead of\n"
+"    process IDs, and, if you have reached the limit on processes that\n"
+"    you can create, you don't have to start a process to kill another one."
+msgstr ""
+"Zašle procesu určeném PID (nebo ÚLOHOU) uvedený signál SIGSPEC.\n"
+"    Není-li SIGSPEC zadán, pak se předpokládá SIGTERM. Argumentem „-l“ lze\n"
+"    vypsat názvy signálů. Pokud „-l“ následují argumenty, má se za to, že se\n"
+"    jedná o čísla signálů, pro které se mají vyspat jejich názvy. Kill je\n"
+"    vestavěný příkaz shellu ze dvou důvodů: umožňuje použít identifikátory\n"
+"    úloh namísto ID procesů a pokud jste dosáhli limitu počtu procesů, které\n"
+"    smíte vytvořit, neměli byste jak nastartovat další proces, abyste mohli\n"
+"    jiný proces zabít."
+
+#: builtins.c:688
+msgid ""
+"Each ARG is an arithmetic expression to be evaluated.  Evaluation\n"
+"    is done in fixed-width integers with no check for overflow, though\n"
+"    division by 0 is trapped and flagged as an error.  The following\n"
+"    list of operators is grouped into levels of equal-precedence operators.\n"
+"    The levels are listed in order of decreasing precedence.\n"
+"    \n"
+"    \tid++, id--\tvariable post-increment, post-decrement\n"
+"    \t++id, --id\tvariable pre-increment, pre-decrement\n"
+"    \t-, +\t\tunary minus, plus\n"
+"    \t!, ~\t\tlogical and bitwise negation\n"
+"    \t**\t\texponentiation\n"
+"    \t*, /, %\t\tmultiplication, division, remainder\n"
+"    \t+, -\t\taddition, subtraction\n"
+"    \t<<, >>\t\tleft and right bitwise shifts\n"
+"    \t<=, >=, <, >\tcomparison\n"
+"    \t==, !=\t\tequality, inequality\n"
+"    \t&\t\tbitwise AND\n"
+"    \t^\t\tbitwise XOR\n"
+"    \t|\t\tbitwise OR\n"
+"    \t&&\t\tlogical AND\n"
+"    \t||\t\tlogical OR\n"
+"    \texpr ? expr : expr\n"
+"    \t\t\tconditional operator\n"
+"    \t=, *=, /=, %=,\n"
+"    \t+=, -=, <<=, >>=,\n"
+"    \t&=, ^=, |=\tassignment\n"
+"    \n"
+"    Shell variables are allowed as operands.  The name of the variable\n"
+"    is replaced by its value (coerced to a fixed-width integer) within\n"
+"    an expression.  The variable need not have its integer attribute\n"
+"    turned on to be used in an expression.\n"
+"    \n"
+"    Operators are evaluated in order of precedence.  Sub-expressions in\n"
+"    parentheses are evaluated first and may override the precedence\n"
+"    rules above.\n"
+"    \n"
+"    If the last ARG evaluates to 0, let returns 1; 0 is returned\n"
+"    otherwise."
+msgstr ""
+"Každý ARGUMENT je aritmetický výraz na vyhodnocení. Vyhodnocení je\n"
+"    prováděno v celých číslech o pevné šířce bez kontrol přetečení, avšak\n"
+"    dělení 0 je zachyceno a označeno za chybu. Následující seznam operátorů\n"
+"    je rozdělen do skupin podle úrovní přednosti.\n"
+"    \n"
+"    \tid++, id--\tnásledné zvýšení, snížení proměnné\n"
+"    \t++id, --id\tpřednostní zvýšení, snížení proměnné\n"
+"    \t-, +\t\tunární mínus, plus\n"
+"    \t!, ~\t\tlogický a bitová negace\n"
+"    \t**\t\tumocnění\n"
+"    \t*, /, %\t\tnásobení, dělení, zbytková třída\n"
+"    \t+, -\t\tsčítání, odečítání\n"
+"    \t<<, >>\t\tlevý a pravý bitový posun\n"
+"    \t<=, >=, <, >\tporovnání\n"
+"    \t==, !=\t\trovnost, nerovnost\n"
+"    \t&\t\tbitové a zároveň (AND)\n"
+"    \t^\t\tbitové vylučující nebo (XOR)\n"
+"    \t|\t\tbitové nebo (OR)\n"
+"    \t&&\t\tlogické a zároveň (AND)\n"
+"    \t||\t\tlogické nebo (OR)\n"
+"    \tVÝRAZ ? VÝRAZ : VÝRAZ\n"
+"    \t\t\tpodmíněný operátor\n"
+"    \t=, *=, /=, %=,\n"
+"    \t+=, -=, <<=, >>=,\n"
+"    \t&=, ^=, |=\tpřiřazení\n"
+"    \n"
+"    Proměnné shellu jsou povolené operandy. Název proměnné je nahrazen její\n"
+"    hodnotou (s automatickým převodem na celé číslo pevné šířky) uvnitř\n"
+"    výrazu. Proměnná nemusí mít atribut integer (číslo) zapnutý, aby byla\n"
+"    použitelná ve výrazu.\n"
+"    \n"
+"    Operátory se vyhodnocují v pořadí přednosti. Podvýrazy v závorkách jsou\n"
+"    vyhodnoceny přednostně a smí přebít pravidla přednosti uvedená výše.\n"
+"    \n"
+"    Pokud poslední ARGUMENT je vyhodnocen na 0, let vrátí 1. Jinak je\n"
+"    navrácena 0."
+
+#: builtins.c:731
+msgid ""
+"One line is read from the standard input, or from file descriptor FD if the\n"
+"    -u option is supplied, and the first word is assigned to the first NAME,\n"
+"    the second word to the second NAME, and so on, with leftover words assigned\n"
+"    to the last NAME.  Only the characters found in $IFS are recognized as word\n"
+"    delimiters.  If no NAMEs are supplied, the line read is stored in the REPLY\n"
+"    variable.  If the -r option is given, this signifies `raw' input, and\n"
+"    backslash escaping is disabled.  The -d option causes read to continue\n"
+"    until the first character of DELIM is read, rather than newline.  If the -p\n"
+"    option is supplied, the string PROMPT is output without a trailing newline\n"
+"    before attempting to read.  If -a is supplied, the words read are assigned\n"
+"    to sequential indices of ARRAY, starting at zero.  If -e is supplied and\n"
+"    the shell is interactive, readline is used to obtain the line.  If -n is\n"
+"    supplied with a non-zero NCHARS argument, read returns after NCHARS\n"
+"    characters have been read.  The -s option causes input coming from a\n"
+"    terminal to not be echoed.\n"
+"    \n"
+"    The -t option causes read to time out and return failure if a complete line\n"
+"    of input is not read within TIMEOUT seconds.  If the TMOUT variable is set,\n"
+"    its value is the default timeout.  The return code is zero, unless end-of-file\n"
+"    is encountered, read times out, or an invalid file descriptor is supplied as\n"
+"    the argument to -u."
+msgstr ""
+"Ze standardního vstupu, nebo deskriptoru souboru FD, je-li zadán\n"
+"    přepínač -u,je načten jeden řádek a první slovo je přiřazeno do prvního\n"
+"    JMÉNA, druhé slovo do druhého JMÉNA a tak dále, přičemž přebývající slova\n"
+"    se přiřadí do posledního JMÉNA. Pouze znaky uvedené v $IFS jsou považovány\n"
+"    za oddělovače slov. Nejsou-li uvedeny žádná JMÉNA, načtený řádek bude\n"
+"    uložen do proměnné REPLY. Je-li zadán přepínač -r, značí to „syrový“ vstup\n"
+"    a escapování zpětným lomítkem je vypnuto. Přepínač -d způsobí, že čteno\n"
+"    bude dokud se nenarazí na první znak ODDĚLOVAČE namísto nového řádku.\n"
+"    Je-li zadán přepínač -p, řetězec VÝZVA bude vypsán bez závěrečného nového\n"
+"    řádku, dříve než se zahájí načítání.  Je-li zadáno -a, načtená slova budou\n"
+"    přiřazena do postupných prvků POLE, počínaje nulou. Je-li zadáno -e a\n"
+"    shell je interaktivní, bude k načtení řádku použita readline. Je-li\n"
+"    zadán -n s nenulovým argumentem P_ZNAKŮ, read vrátí řízení po načtení\n"
+"    P_ZNAKŮ znaků. Přepínač -s způsobí, že vstup pocházející z terminálu\n"
+"    nebude zobrazován.\n"
+"    \n"
+"    Přepínač -t umožní vypršení časového limitu a vrácení chyby, pokud nebude\n"
+"    načten celý řádek do LIMIT sekund. Návratový kód je nula, pokud se\n"
+"    nenarazí na konec souboru, časový limit pro čtení nevyprší nebo není\n"
+"    poskytnut neplatný deskriptor souboru jako argument -u."
+
+#: builtins.c:757
+msgid ""
+"Causes a function to exit with the return value specified by N.  If N\n"
+"    is omitted, the return status is that of the last command."
+msgstr ""
+"Způsobí ukončení funkce s návratovou hodnotou uvedenou v N. Je-li\n"
+"    N vynecháno, návratový kód je roven poslednímu příkazu."
+
+#: builtins.c:764
+msgid ""
+"    -a  Mark variables which are modified or created for export.\n"
+"        -b  Notify of job termination immediately.\n"
+"        -e  Exit immediately if a command exits with a non-zero status.\n"
+"        -f  Disable file name generation (globbing).\n"
+"        -h  Remember the location of commands as they are looked up.\n"
+"        -k  All assignment arguments are placed in the environment for a\n"
+"            command, not just those that precede the command name.\n"
+"        -m  Job control is enabled.\n"
+"        -n  Read commands but do not execute them.\n"
+"        -o option-name\n"
+"            Set the variable corresponding to option-name:\n"
+"                allexport    same as -a\n"
+"                braceexpand  same as -B\n"
+"                emacs        use an emacs-style line editing interface\n"
+"                errexit      same as -e\n"
+"                errtrace     same as -E\n"
+"                functrace    same as -T\n"
+"                hashall      same as -h\n"
+"                histexpand   same as -H\n"
+"                history      enable command history\n"
+"                ignoreeof    the shell will not exit upon reading EOF\n"
+"                interactive-comments\n"
+"                             allow comments to appear in interactive commands\n"
+"                keyword      same as -k\n"
+"                monitor      same as -m\n"
+"                noclobber    same as -C\n"
+"                noexec       same as -n\n"
+"                noglob       same as -f\n"
+"                nolog        currently accepted but ignored\n"
+"                notify       same as -b\n"
+"                nounset      same as -u\n"
+"                onecmd       same as -t\n"
+"                physical     same as -P\n"
+"                pipefail     the return value of a pipeline is the status of\n"
+"                             the last command to exit with a non-zero status,\n"
+"                             or zero if no command exited with a non-zero status\n"
+"                posix        change the behavior of bash where the default\n"
+"                             operation differs from the 1003.2 standard to\n"
+"                             match the standard\n"
+"                privileged   same as -p\n"
+"                verbose      same as -v\n"
+"                vi           use a vi-style line editing interface\n"
+"                xtrace       same as -x\n"
+"        -p  Turned on whenever the real and effective user ids do not match.\n"
+"            Disables processing of the $ENV file and importing of shell\n"
+"            functions.  Turning this option off causes the effective uid and\n"
+"            gid to be set to the real uid and gid.\n"
+"        -t  Exit after reading and executing one command.\n"
+"        -u  Treat unset variables as an error when substituting.\n"
+"        -v  Print shell input lines as they are read.\n"
+"        -x  Print commands and their arguments as they are executed.\n"
+"        -B  the shell will perform brace expansion\n"
+"        -C  If set, disallow existing regular files to be overwritten\n"
+"            by redirection of output.\n"
+"        -E  If set, the ERR trap is inherited by shell functions.\n"
+"        -H  Enable ! style history substitution.  This flag is on\n"
+"            by default when the shell is interactive.\n"
+"        -P  If set, do not follow symbolic links when executing commands\n"
+"            such as cd which change the current directory.\n"
+"        -T  If set, the DEBUG trap is inherited by shell functions.\n"
+"        -   Assign any remaining arguments to the positional parameters.\n"
+"            The -x and -v options are turned off.\n"
+"    \n"
+"    Using + rather than - causes these flags to be turned off.  The\n"
+"    flags can also be used upon invocation of the shell.  The current\n"
+"    set of flags may be found in $-.  The remaining n ARGs are positional\n"
+"    parameters and are assigned, in order, to $1, $2, .. $n.  If no\n"
+"    ARGs are given, all shell variables are printed."
+msgstr ""
+"    -a  Označí měněné nebo vytvářené proměnné pro export.\n"
+"        -b  Neprodleně oznámí ukončení úlohy.\n"
+"        -e  Neprodleně skončí, pokud nějaký příkaz skončí s nenulovým kódem.\n"
+"        -f  Zakáže vytváření jmen souborů (globbing).\n"
+"        -h  Zapamatuje si umístění příkazů tehdy, když jsou vyhledány.\n"
+"        -k  Všechny přiřazovací argumenty budou umístěny do prostředí\n"
+"            příkazu. Nejenom ty, co předchází název příkazu.\n"
+"        -m  Správa úloh je zapnuta.\n"
+"        -n  Příkazy načte, ale neprovede je.\n"
+"        -o NÁZEV_PŘEPÍNAČE\n"
+"            Nastaví proměnnou odpovídající NÁZVU_PŘEPÍNAČE:\n"
+"                allexport    stejné jako -a\n"
+"                braceexpand  stejné jako -B\n"
+"                emacs        použije emacsový způsob editace na řádku\n"
+"                errexit      stejné jako -e\n"
+"                errtrace     stejné jako -E\n"
+"                functrace    stejné jako -T\n"
+"                hashall      stejné jako -h\n"
+"                histexpand   stejné jako -H\n"
+"                history      zapne historii příkazů\n"
+"                ignoreeof    shell neskončí, když načte EOF (konec souboru)\n"
+"                interactive-comments\n"
+"                             povolí, aby se v interaktivních příkazech\n"
+"                             objevovaly komentáře\n"
+"                keyword      stejné jako -k\n"
+"                monitor      stejné jako -m\n"
+"                noclobber    stejné jako -C\n"
+"                noexec       stejné jako -n\n"
+"                noglob       stejné jako -f\n"
+"                nolog        v současnosti přijímáno, ale ignorováno\n"
+"                notify       stejné jako -b\n"
+"                nounset      stejné jako -u\n"
+"                onecmd       stejné jako -t\n"
+"                physical     stejné jako -P\n"
+"                pipefail     návratová hodnota kolony je status posledního\n"
+"                             příkazu, který skončil s nenulovým kódem.\n"
+"                             Návratová hodnota je nula, pokud žádný z příkazů\n"
+"                             neskončil s nenulovým kódem.\n"
+"                posix        změní chování bashe tam, kde implicitní chování\n"
+"                             se liší od standardu 1003.2, tak, aby bylo\n"
+"                             v souladu se standardem\n"
+"                privileged   stejné jako -p\n"
+"                verbose      stejné jako -v\n"
+"                vi           použije vi způsob editace na řádku\n"
+"                xtrace       stejné jako -x\n"
+"        -p  Zapnuto, kdykoliv reálné a efektivní ID uživatele se neshodují.\n"
+"            Vypne zpracování souboru $ENV a importování shellových funkcí.\n"
+"            Vypnutí tohoto přepínače způsobí, že efektivní UID a GID budou\n"
+"            nastaveny na reálná UID a GID.\n"
+"        -t  Skončí po načtení a provedení jednoho příkazu.\n"
+"        -u  Při substituci považuje nenastavené proměnné za chybu.\n"
+"        -v  Vstupní řádky shellu se budou tisknout tak, jak budou načítány.\n"
+"        -x  Tiskne příkazy a jejich argumenty tak, jak jsou spouštěny.\n"
+"        -B  Shell bude provádět závorkovou (brace) expanzi.\n"
+"        -C  Je-li nastaveno, zakáže přepsání již existujících běžných souborů\n"
+"            při přesměrování výstupu.\n"
+"        -E  Je-li nastaveno, trap ERR (zachytávání chyb) bude děděn do\n"
+"            funkcí shellu.\n"
+"        -H  Zapne ! způsob nahrazování histore. Tento příznak je automaticky\n"
+"            zapnut při interaktivním shellu.\n"
+"        -P  Je-li nastaveno, nebudou následovány symbolické odkazy při\n"
+"            provádění příkazů jako změna pracovního adresáře pomocí „cd“.\n"
+"        -T  Je-li nastaveno, trap DEBUG (obsluha ladění) bude děděna do\n"
+"            funkcí shellu.\n"
+"        -   Přiřadí jakékoliv zbývající argumenty do pozičních parametrů.\n"
+"            Přepínače -x a -v budou vypnuty.\n"
+"    \n"
+"    Použití + místo - způsobí, že tyto příznaky budou vypnuty. Příznaky lze\n"
+"    použít při volání shellu. Aktuální množinu příznaků je možno nalézt v $-.\n"
+"    Přebývající ARGUMENTY jsou poziční parametry a budou přiřazeny, v pořadí,\n"
+"    do $1, $2, … $n. Nejsou-li zadány žádné ARGUMENTY, budou vytištěny všechny\n"
+"    proměnné shellu."
+
+#: builtins.c:837
+msgid ""
+"For each NAME, remove the corresponding variable or function.  Given\n"
+"    the `-v', unset will only act on variables.  Given the `-f' flag,\n"
+"    unset will only act on functions.  With neither flag, unset first\n"
+"    tries to unset a variable, and if that fails, then tries to unset a\n"
+"    function.  Some variables cannot be unset; also see readonly."
+msgstr ""
+"Pro každé JMÉNO odstraní odpovídající proměnnou nebo funkci.\n"
+"    Spolu s „-v“ bude unset fungovat jen na proměnné. S příznakem „-f“ bude\n"
+"    unset fungovat jen na funkce. Bez těchto dvou příznaků unset nejprve zkusí\n"
+"    zrušit proměnnou a pokud toto selže, tak zkusí zrušit funkci. Některé\n"
+"    proměnné nelze odstranit. Taktéž vizte příkaz „readonly“."
+
+#: builtins.c:847
+msgid ""
+"NAMEs are marked for automatic export to the environment of\n"
+"    subsequently executed commands.  If the -f option is given,\n"
+"    the NAMEs refer to functions.  If no NAMEs are given, or if `-p'\n"
+"    is given, a list of all names that are exported in this shell is\n"
+"    printed.  An argument of `-n' says to remove the export property\n"
+"    from subsequent NAMEs.  An argument of `--' disables further option\n"
+"    processing."
+msgstr ""
+"NÁZVY jsou označeny pro automatické exportování do prostředí následně\n"
+"    prováděných příkazů. Je-li zadán přepínač -f, NÁZVY se vztahují k funkcím.\n"
+"    Nejsou-li zadány žádné NÁZVY nebo je-li zadáno „-p“, bude vytištěn seznam\n"
+"    všech názvů, které jsou v tomto shellu exportovány. Argument „-n“ nařizuje\n"
+"    odstranit vlastnost exportovat z následujících NÁZVŮ. Argument „--“\n"
+"    zakazuje zpracování dalších přepínačů."
+
+#: builtins.c:859
+msgid ""
+"The given NAMEs are marked readonly and the values of these NAMEs may\n"
+"    not be changed by subsequent assignment.  If the -f option is given,\n"
+"    then functions corresponding to the NAMEs are so marked.  If no\n"
+"    arguments are given, or if `-p' is given, a list of all readonly names\n"
+"    is printed.  The `-a' option means to treat each NAME as\n"
+"    an array variable.  An argument of `--' disables further option\n"
+"    processing."
+msgstr ""
+"Zadané NÁZVY budou označeny jako jen pro čtení a hodnoty těchto NÁZVŮ\n"
+"    nebude možné změnit následným přiřazením. Je-li zadán přepínač -f, pak\n"
+"    funkce těchto NÁZVŮ budou takto označeny. Nejsou-li zadány žádné argumenty\n"
+"    nebo je-li zadáno „-p“, bude vytištěn seznam všech jmen jen pro čtení.\n"
+"    Přepínač „-a“ znamená, že s každým NÁZVEM bude zacházeno jako s proměnnou\n"
+"    typu pole. Argument „--“ zakáže zpracování dalších přepínačů."
+
+#: builtins.c:871
+msgid ""
+"The positional parameters from $N+1 ... are renamed to $1 ...  If N is\n"
+"    not given, it is assumed to be 1."
+msgstr ""
+"Poziční parametry budou přejmenovány z $N+1 na $1 atd. Není-li N zadáno,\n"
+"    předpokládá se 1."
+
+#: builtins.c:878 builtins.c:887
+msgid ""
+"Read and execute commands from FILENAME and return.  The pathnames\n"
+"    in $PATH are used to find the directory containing FILENAME.  If any\n"
+"    ARGUMENTS are supplied, they become the positional parameters when\n"
+"    FILENAME is executed."
+msgstr ""
+"Načte a provede příkazy z NÁZEV_SOUBORU a vrátí řízení. Názvy cest\n"
+"    v $PATH jsou použity pro vyhledání adresáře obsahujícího NÁZEV_SOUBORU.\n"
+"    Jsou-li zadány nějaké ARGUMENTY, stanou se pozičními parametry při běhu\n"
+"    NÁZVU_SOUBORU."
+
+#: builtins.c:897
+msgid ""
+"Suspend the execution of this shell until it receives a SIGCONT\n"
+"    signal.  The `-f' if specified says not to complain about this\n"
+"    being a login shell if it is; just suspend anyway."
+msgstr ""
+"Pozastaví provádění tohoto shellu do doby, něž bude obdržen signál\n"
+"    SIGCONT. „-f“, je-li zadán, potlačí stížnost na to, že se jedná\n"
+"    o přihlašovací shell (pokud tomu tak je), a prostě pozastaví činnost."
+
+#: builtins.c:906
+msgid ""
+"Exits with a status of 0 (true) or 1 (false) depending on\n"
+"    the evaluation of EXPR.  Expressions may be unary or binary.  Unary\n"
+"    expressions are often used to examine the status of a file.  There\n"
+"    are string operators as well, and numeric comparison operators.\n"
+"    \n"
+"    File operators:\n"
+"    \n"
+"        -a FILE        True if file exists.\n"
+"        -b FILE        True if file is block special.\n"
+"        -c FILE        True if file is character special.\n"
+"        -d FILE        True if file is a directory.\n"
+"        -e FILE        True if file exists.\n"
+"        -f FILE        True if file exists and is a regular file.\n"
+"        -g FILE        True if file is set-group-id.\n"
+"        -h FILE        True if file is a symbolic link.\n"
+"        -L FILE        True if file is a symbolic link.\n"
+"        -k FILE        True if file has its `sticky' bit set.\n"
+"        -p FILE        True if file is a named pipe.\n"
+"        -r FILE        True if file is readable by you.\n"
+"        -s FILE        True if file exists and is not empty.\n"
+"        -S FILE        True if file is a socket.\n"
+"        -t FD          True if FD is opened on a terminal.\n"
+"        -u FILE        True if the file is set-user-id.\n"
+"        -w FILE        True if the file is writable by you.\n"
+"        -x FILE        True if the file is executable by you.\n"
+"        -O FILE        True if the file is effectively owned by you.\n"
+"        -G FILE        True if the file is effectively owned by your group.\n"
+"        -N FILE        True if the file has been modified since it was last read.\n"
+"    \n"
+"      FILE1 -nt FILE2  True if file1 is newer than file2 (according to\n"
+"                       modification date).\n"
+"    \n"
+"      FILE1 -ot FILE2  True if file1 is older than file2.\n"
+"    \n"
+"      FILE1 -ef FILE2  True if file1 is a hard link to file2.\n"
+"    \n"
+"    String operators:\n"
+"    \n"
+"        -z STRING      True if string is empty.\n"
+"    \n"
+"        -n STRING\n"
+"        STRING         True if string is not empty.\n"
+"    \n"
+"        STRING1 = STRING2\n"
+"                       True if the strings are equal.\n"
+"        STRING1 != STRING2\n"
+"                       True if the strings are not equal.\n"
+"        STRING1 < STRING2\n"
+"                       True if STRING1 sorts before STRING2 lexicographically.\n"
+"        STRING1 > STRING2\n"
+"                       True if STRING1 sorts after STRING2 lexicographically.\n"
+"    \n"
+"    Other operators:\n"
+"    \n"
+"        -o OPTION      True if the shell option OPTION is enabled.\n"
+"        ! EXPR         True if expr is false.\n"
+"        EXPR1 -a EXPR2 True if both expr1 AND expr2 are true.\n"
+"        EXPR1 -o EXPR2 True if either expr1 OR expr2 is true.\n"
+"    \n"
+"        arg1 OP arg2   Arithmetic tests.  OP is one of -eq, -ne,\n"
+"                       -lt, -le, -gt, or -ge.\n"
+"    \n"
+"    Arithmetic binary operators return true if ARG1 is equal, not-equal,\n"
+"    less-than, less-than-or-equal, greater-than, or greater-than-or-equal\n"
+"    than ARG2."
+msgstr ""
+"Skončí s kódem 0 (pravda) nebo 1 (nepravda) podle vyhodnocení VÝRAZU.\n"
+"    Výraz smí být unární nebo binární. Unární výrazy se často používají pro\n"
+"    zjištění stavu souboru. Rovněž jsou k dispozici řetězcové operátory a\n"
+"    operátory číselného porovnávání.\n"
+"    \n"
+"    Souborové operátory:\n"
+"    \n"
+"        -a SOUBOR      Pravda, pokud soubor existuje.\n"
+"        -b SOUBOR      Pravda, pokud soubor je blokovým zařízením.\n"
+"        -c SOUBOR      Pravda, pokud soubor je znakovým zařízením.\n"
+"        -d SOUBOR      Pravda, pokud soubor je adresářem.\n"
+"        -e SOUBOR      Pravda, pokud soubor existuje.\n"
+"        -f SOUBOR      Pravda, pokud soubor existuje a to běžný soubor.\n"
+"        -g SOUBOR      Pravda, pokud soubor je SGID.\n"
+"        -h SOUBOR      Pravda, pokud soubor je symbolickým odkazem.\n"
+"        -L SOUBOR      Pravda, pokud soubor je symbolickým odkazem.\n"
+"        -k SOUBOR      Pravda, pokud soubor má nastavený „sticky“ bit.\n"
+"        -p SOUBOR      Pravda, pokud soubor je pojmenovanou rourou.\n"
+"        -r SOUBOR      Pravda, pokud soubor je vámi čitelný.\n"
+"        -s SOUBOR      Pravda, pokud soubor existuje a je neprázdný.\n"
+"        -S SOUBOR      Pravda, pokud soubor je socketem.\n"
+"        -t FD          Pravda, pokud FD (deskriptor souboru) je otevřený na\n"
+"                       terminálu.\n"
+"        -u SOUBOR      Pravda, pokud soubor je SUID.\n"
+"        -w SOUBOR      Pravda, pokud soubor je vámi zapisovatelný.\n"
+"        -x SOUBOR      Pravda, pokud soubor je vámi spustitelný.\n"
+"        -O SOUBOR      Pravda, pokud soubor je vámi efektivně vlastněn.\n"
+"        -G SOUBOR      Pravda, pokud soubor je efektivně vlastněn vaší\n"
+"                       skupinou.\n"
+"        -N SOUBOR      Pravda, pokud soubor byl změněn po posledním čtení.\n"
+"    \n"
+"      SOUBOR1 -nt SOUBOR2\n"
+"                       Pravda, pokud je SOUBOR1 novější než SOUBOR2 (podle času\n"
+"                       změny obsahu).\n"
+"    \n"
+"      SOUBOR1 -ot SOUBOR2\n"
+"                       Pravda, pokud SOUBOR1 je starší než SOUBOR2.\n"
+"    \n"
+"      SOUBOR1 -ef SOUBOR2\n"
+"                       Pravda, pokud SOUBOR1 je pevným odkazem na SOUBOR2.\n"
+"    \n"
+"    Řetězcové operátory:\n"
+"    \n"
+"        -z ŘETĚZEC     Pravda, pokud ŘETĚZEC je prázdný.\n"
+"    \n"
+"        -n ŘETĚZEC\n"
+"        ŘETĚZEC        Pravda, pokud ŘETĚZEC není prázdný.\n"
+"    \n"
+"        ŘETĚZEC1 = ŘETĚZEC2\n"
+"                       Pravda, pokud jsou řetězce shodné.\n"
+"        ŘETĚZEC1 != ŘETĚZEC2\n"
+"                       Pravda, pokud se řetězce neshodují.\n"
+"        ŘETĚZEC1 < ŘETĚZEC2\n"
+"                       Pravda, pokud se ŘETĚZEC1 řadí lexikograficky před\n"
+"                       ŘETĚZEC2.\n"
+"        ŘETĚZEC1 > ŘETĚZEC2\n"
+"                       Pravda, pokud se ŘETĚZEC1 řadí lexikograficky za\n"
+"                       ŘETĚZEC2.\n"
+"    \n"
+"    Další operátory:\n"
+"    \n"
+"        -o PŘEPÍNAČ    Pravda, pokud je přepínač shellu PŘEPÍNAČ zapnut.\n"
+"        ! VÝRAZ        Pravda, pokud VÝRAZ je nepravdivý.\n"
+"        VÝRAZ1 -a VÝRAZ2\n"
+"                       Pravda, pokud oba VÝRAZ1 I VÝRAZ2 jsou pravdivé.\n"
+"        VÝRAZ1 -o VÝRAZ2\n"
+"                       Pravda, pokud VÝRAZ1 NEBO VÝRAZ2 je pravdivý.\n"
+"    \n"
+"        ARGUMENT1 OP ARGUMENT2\n"
+"                       Aritmetické testy.  OP je jeden z -eq, -ne, -lt,\n"
+"                       -le, -gt nebo -ge.\n"
+"    \n"
+"    Aritmetické binární operátory vracejí pravdu pokud ARGUMENT1 je roven,\n"
+"    neroven, menší než, menší než nebo roven, větší než, větší než nebo\n"
+"    roven ARGUMENTU2."
+
+#: builtins.c:976
+msgid ""
+"This is a synonym for the \"test\" builtin, but the last\n"
+"    argument must be a literal `]', to match the opening `['."
+msgstr ""
+"Toto je synonymum pro vestavěný příkaz „test“, až na to, že\n"
+"    poslední argument musí být doslovně „]“, aby se shodoval s otevírající „[“."
+
+#: builtins.c:983
+msgid ""
+"Print the accumulated user and system times for processes run from\n"
+"    the shell."
+msgstr ""
+"Vytiskne celkovou dobu procesu spuštěného z shellu, kterou strávil\n"
+"    v uživatelském a jaderném (system) prostoru."
+
+#: builtins.c:990
+msgid ""
+"The command ARG is to be read and executed when the shell receives\n"
+"    signal(s) SIGNAL_SPEC.  If ARG is absent (and a single SIGNAL_SPEC\n"
+"    is supplied) or `-', each specified signal is reset to its original\n"
+"    value.  If ARG is the null string each SIGNAL_SPEC is ignored by the\n"
+"    shell and by the commands it invokes.  If a SIGNAL_SPEC is EXIT (0)\n"
+"    the command ARG is executed on exit from the shell.  If a SIGNAL_SPEC\n"
+"    is DEBUG, ARG is executed after every simple command.  If the`-p' option\n"
+"    is supplied then the trap commands associated with each SIGNAL_SPEC are\n"
+"    displayed.  If no arguments are supplied or if only `-p' is given, trap\n"
+"    prints the list of commands associated with each signal.  Each SIGNAL_SPEC\n"
+"    is either a signal name in <signal.h> or a signal number.  Signal names\n"
+"    are case insensitive and the SIG prefix is optional.  `trap -l' prints\n"
+"    a list of signal names and their corresponding numbers.  Note that a\n"
+"    signal can be sent to the shell with \"kill -signal $$\"."
+msgstr ""
+"Příkaz ARGUMENT bude načten a proveden, až shell obdrží signál(y)\n"
+"    SIGNAL_SPEC. Pokud ARGUMENT chybí (a je zadán jeden SIGNAL_SPEC) nebo je\n"
+"    „-“, každý určený signál bude přenastaven zpět na svoji původní hodnotu.\n"
+"    Je-li ARGUMENT prázdný řetězec, každý SIGNAL_SPEC bude shellem a příkazy\n"
+"    z něj spuštěnými ignorován. Je-li SIGNAL_SPEC „EXIT (0)“, bude příkaz\n"
+"    ARGUMENT proveden při ukončování tohoto shellu. Je-li SIGNAL_SPEC „DEBUG“,\n"
+"    bude ARGUMENT proveden za každým jednoduchým příkazem. Je-li zadán přepínač\n"
+"    „-p“, pak budou zobrazen příkazy navázané na každý SIGNAL_SPEC. Nejsou-li\n"
+"    poskytnuty žádné argumenty nebo je-li zadán jen „-p“, vytiskne trap seznam\n"
+"    příkazů navázaných na všechny signály. Každý SIGNAL_SPEC je buďto jméno\n"
+"    signálu z <signal.h>, nebo číslo signálu. U jmen signálů nezáleží na\n"
+"    velikosti písmen a předpona SIG je nepovinná. „trap -l“ vytiskne seznam\n"
+"    jmen signálů a jim odpovídajících čísel. Vezměte na vědomí, že aktuálnímu\n"
+"    shellu lze zaslat signál pomocí „kill -signal $$“."
+
+#: builtins.c:1009
+msgid ""
+"For each NAME, indicate how it would be interpreted if used as a\n"
+"    command name.\n"
+"    \n"
+"    If the -t option is used, `type' outputs a single word which is one of\n"
+"    `alias', `keyword', `function', `builtin', `file' or `', if NAME is an\n"
+"    alias, shell reserved word, shell function, shell builtin, disk file,\n"
+"    or unfound, respectively.\n"
+"    \n"
+"    If the -p flag is used, `type' either returns the name of the disk\n"
+"    file that would be executed, or nothing if `type -t NAME' would not\n"
+"    return `file'.\n"
+"    \n"
+"    If the -a flag is used, `type' displays all of the places that contain\n"
+"    an executable named `file'.  This includes aliases, builtins, and\n"
+"    functions, if and only if the -p flag is not also used.\n"
+"    \n"
+"    The -f flag suppresses shell function lookup.\n"
+"    \n"
+"    The -P flag forces a PATH search for each NAME, even if it is an alias,\n"
+"    builtin, or function, and returns the name of the disk file that would\n"
+"    be executed."
+msgstr ""
+"O každém NÁZVU řekne, jak by byl interpretován, kdyby byl použit jako\n"
+"    název příkazu.\n"
+"    \n"
+"    Je-li použit přepínač -t, „type“ vypíše jedno slovo z těchto: „alias“,\n"
+"    „keyword“, „function“, „builtin“, „file“ nebo „“, je-li NÁZEV alias,\n"
+"    klíčové slovo shellu, shellová funkce, vestavěný příkaz shellu, soubor\n"
+"    na disku nebo nenalezený soubor.\n"
+"    \n"
+"    Je-li použit přepínač -p, „type“ buď vrátí jméno souboru na disku, který\n"
+"    by byl spuštěn, nebo nic, pokud „type -t NÁZEV“ by nevrátil „file“.\n"
+"    \n"
+"    Je-li použit přepínač -a, „type“ zobrazí všechna místa, kde se nalézá\n"
+"    spustitelný program pojmenovaný „soubor“. To zahrnuje aliasy, vestavěné\n"
+"    příkazy a funkce jen a pouze tehdy, když není rovněž použit přepínač -p.\n"
+"    \n"
+"    Přepínač -f potlačí hledání mezi funkcemi shellu.\n"
+"    \n"
+"    Přepínač -P vynutí prohledání PATH na každý NÁZEV, dokonce i když se\n"
+"    jedná o alias, vestavěný příkaz nebo funkci, a vrátí název souboru na\n"
+"    disku, který by byl spuštěn."
+
+#: builtins.c:1036
+msgid ""
+"Ulimit provides control over the resources available to processes\n"
+"    started by the shell, on systems that allow such control.  If an\n"
+"    option is given, it is interpreted as follows:\n"
+"    \n"
+"        -S\tuse the `soft' resource limit\n"
+"        -H\tuse the `hard' resource limit\n"
+"        -a\tall current limits are reported\n"
+"        -c\tthe maximum size of core files created\n"
+"        -d\tthe maximum size of a process's data segment\n"
+"        -e\tthe maximum scheduling priority (`nice')\n"
+"        -f\tthe maximum size of files written by the shell and its children\n"
+"        -i\tthe maximum number of pending signals\n"
+"        -l\tthe maximum size a process may lock into memory\n"
+"        -m\tthe maximum resident set size\n"
+"        -n\tthe maximum number of open file descriptors\n"
+"        -p\tthe pipe buffer size\n"
+"        -q\tthe maximum number of bytes in POSIX message queues\n"
+"        -r\tthe maximum real-time scheduling priority\n"
+"        -s\tthe maximum stack size\n"
+"        -t\tthe maximum amount of cpu time in seconds\n"
+"        -u\tthe maximum number of user processes\n"
+"        -v\tthe size of virtual memory\n"
+"        -x\tthe maximum number of file locks\n"
+"    \n"
+"    If LIMIT is given, it is the new value of the specified resource;\n"
+"    the special LIMIT values `soft', `hard', and `unlimited' stand for\n"
+"    the current soft limit, the current hard limit, and no limit, respectively.\n"
+"    Otherwise, the current value of the specified resource is printed.\n"
+"    If no option is given, then -f is assumed.  Values are in 1024-byte\n"
+"    increments, except for -t, which is in seconds, -p, which is in\n"
+"    increments of 512 bytes, and -u, which is an unscaled number of\n"
+"    processes."
+msgstr ""
+"Ulimit poskytuje kontrolu nad zdroji dostupnými procesu spuštěného\n"
+"    shellem (na systémech, které takovou kontrolu umožňují). Je-li nějaký\n"
+"    zadán přepínač, bude interpretován následovně:\n"
+"    \n"
+"        -S\tpoužije se „měkké“ (soft) omezení zdroje\n"
+"        -H\tpoužije se „tvrdé“ (hard) omezení zdroje\n"
+"        -a\tnahlásí všechna současná omezení (limity)\n"
+"        -c\tmaximální velikost vytvářených core souborů (výpis paměti programu)\n"
+"        -d\tmaximální velikost datového segmentu procesu\n"
+"        -e\tmaximální plánovací priorita  („nice“)\n"
+"        -f\tmaximální velikost souborů zapsaných shellem a jeho potomky\n"
+"        -i\tmaximální počet čekajících signálů\n"
+"        -l\tmaximální velikost paměti, kterou může proces zamknout\n"
+"        -m\tmaximální velikost rezidentní paměti (resident set size)\n"
+"        -n\tmaximální počet otevřených deskriptorů souboru\n"
+"        -p\tvelikost vyrovnávací paměti rour\n"
+"        -q\tmaximální počet bajtů ve frontě posixových zpráv\n"
+"        -r\tmaximální priorita plánování v reálném čase\n"
+"        -s\tmaximální velikost zásobníku\n"
+"        -t\tmaximální množství procesorového času v sekundách\n"
+"        -u\tmaximální počet procesů uživatele\n"
+"        -v\tvelikost virtuální paměti\n"
+"        -x\tmaximální počet zámků na souborech\n"
+"    \n"
+"    Je-li zadán LIMIT, jedná se o novou hodnotu daného zdroje. Zvláštní\n"
+"    hodnoty LIMITU „soft“, „hard“ a „unlimited“ znamenají současný měkký\n"
+"    limit, současný tvrdý limit a žádný limit. V opačném případě bude\n"
+"    vytištěna současná hodnota limitu daného zdroje. Není-li zadán žádný\n"
+"    přepínač, pak se předpokládá -f. Hodnoty jsou v násobcích 1024 bajtů,\n"
+"    kromě -t, která je v sekundách, -p, která je v násobcích 512 bajtů,\n"
+"    a -u, což je absolutní počet procesů."
+
+#: builtins.c:1074
+msgid ""
+"The user file-creation mask is set to MODE.  If MODE is omitted, or if\n"
+"    `-S' is supplied, the current value of the mask is printed.  The `-S'\n"
+"    option makes the output symbolic; otherwise an octal number is output.\n"
+"    If `-p' is supplied, and MODE is omitted, the output is in a form\n"
+"    that may be used as input.  If MODE begins with a digit, it is\n"
+"    interpreted as an octal number, otherwise it is a symbolic mode string\n"
+"    like that accepted by chmod(1)."
+msgstr ""
+"Uživatelská maska práv vytvářených souborů je nastavena na MÓD. Je-li\n"
+"    MÓD vynechán nebo je-li uvedeno „-S“, bude vytištěna současná hodnota\n"
+"    masky. Přepínač „-S“ učiní výstup symbolický, jinak bude výstupem\n"
+"    osmičkové číslo. Je-li zadáno „-p“ a MÓD je vynechán, bude výstup ve\n"
+"    formátu, který lze použít jako vstup. Začíná-li MÓD číslicí, bude\n"
+"    interpretován jako osmičkové číslo, jinak jako řetězec symbolického zápisu\n"
+"    práv tak, jak jej chápe chmod(1)."
+
+#: builtins.c:1087
+msgid ""
+"Wait for the specified process and report its termination status.  If\n"
+"    N is not given, all currently active child processes are waited for,\n"
+"    and the return code is zero.  N may be a process ID or a job\n"
+"    specification; if a job spec is given, all processes in the job's\n"
+"    pipeline are waited for."
+msgstr ""
+"Počká na zadaný proces a nahlásí jeho návratový kód. Není-li N zadáno,\n"
+"    bude se čekat na všechny právě aktivní procesy potomků a návratová hodnota\n"
+"    bude nula. N může být ID procesu nebo identifikace úlohy. Je-li odkazováno\n"
+"    na úlohu, bude se čekat na všechny procesy v koloně úlohy."
+
+#: builtins.c:1099
+msgid ""
+"Wait for the specified process and report its termination status.  If\n"
+"    N is not given, all currently active child processes are waited for,\n"
+"    and the return code is zero.  N is a process ID; if it is not given,\n"
+"    all child processes of the shell are waited for."
+msgstr ""
+"Počká na zadaný proces a nahlásí jeho návratový kód. Není-li N zadáno,\n"
+"    bude se čekat na všechny právě aktivní procesy potomků a návratová hodnota\n"
+"    bude nula. N je ID procesu. Není-li zadáno, bude se čekat na všechny\n"
+"    procesy potomků tohoto shellu."
+
+#: builtins.c:1109
+msgid ""
+"The `for' loop executes a sequence of commands for each member in a\n"
+"    list of items.  If `in WORDS ...;' is not present, then `in \"$@\"' is\n"
+"    assumed.  For each element in WORDS, NAME is set to that element, and\n"
+"    the COMMANDS are executed."
+msgstr ""
+"Smyčka „for“ provede posloupnost příkazů pro každý prvek v seznamu položek.\n"
+"    Pokud „in SLOVECH…;“ není přítomno, pak se předpokládá „in \"$@\"“. NÁZEV\n"
+"    bude postupně nastaven na každý prvek ve SLOVECH a PŘÍKAZY provedeny."
+
+#: builtins.c:1118
+msgid ""
+"Equivalent to\n"
+"    \t(( EXP1 ))\n"
+"    \twhile (( EXP2 )); do\n"
+"    \t\tCOMMANDS\n"
+"    \t\t(( EXP3 ))\n"
+"    \tdone\n"
+"    EXP1, EXP2, and EXP3 are arithmetic expressions.  If any expression is\n"
+"    omitted, it behaves as if it evaluates to 1."
+msgstr ""
+"Ekvivalentní k\n"
+"    \t(( VÝR1 ))\n"
+"    \twhile (( VÝR2 )); do\n"
+"    \t\tPŘÍKAZY\n"
+"    \t\t(( VÝR3 ))\n"
+"    \tdone\n"
+"    VÝR1, VÝR2 a VÝR3 jsou aritmetické výrazy.  Chybí-li některý výraz,\n"
+"    chová se, jako by byl vyhodnocen na 1."
+
+#: builtins.c:1131
+msgid ""
+"The WORDS are expanded, generating a list of words.  The\n"
+"    set of expanded words is printed on the standard error, each\n"
+"    preceded by a number.  If `in WORDS' is not present, `in \"$@\"'\n"
+"    is assumed.  The PS3 prompt is then displayed and a line read\n"
+"    from the standard input.  If the line consists of the number\n"
+"    corresponding to one of the displayed words, then NAME is set\n"
+"    to that word.  If the line is empty, WORDS and the prompt are\n"
+"    redisplayed.  If EOF is read, the command completes.  Any other\n"
+"    value read causes NAME to be set to null.  The line read is saved\n"
+"    in the variable REPLY.  COMMANDS are executed after each selection\n"
+"    until a break command is executed."
+msgstr ""
+"SLOVA jsou expandována a vytvoří seznam slov. Množina expandovaných slov\n"
+"    je vytištěna na standardní chybový výstup, každé předchází číslo.  Není-li\n"
+"    „in SLOVA“ přítomno, předpokládá se „in \"$@\"“. Pak je zobrazena výzva PS3\n"
+"    a jeden řádek načten ze standardního vstupu. Pokud je řádek tvořen číslem\n"
+"    odpovídajícím jednomu ze zobrazených slov, pak NÁZEV bude nastaven na toto\n"
+"    slovo. Pokud je řádek prázdný, SLOVA a výzva budou znovu zobrazeny. Je-li\n"
+"    načten EOF (konec souboru), příkaz končí. Načtení jakékoliv jiné hodnoty\n"
+"    nastaví NÁZEV na prázdný řetězec. Načtený řádek bude uložen do proměnné\n"
+"    REPLY, Po každém výběru budou provedeny PŘÍKAZY, dokud nebude vykonán\n"
+"    příkaz „break“."
+
+#: builtins.c:1147
+msgid ""
+"Execute PIPELINE and print a summary of the real time, user CPU time,\n"
+"    and system CPU time spent executing PIPELINE when it terminates.\n"
+"    The return status is the return status of PIPELINE.  The `-p' option\n"
+"    prints the timing summary in a slightly different format.  This uses\n"
+"    the value of the TIMEFORMAT variable as the output format."
+msgstr ""
+"Vykoná KOLONU a vytiskne přehled reálného času, uživatelského\n"
+"    procesorového času a systémového procesorového času stráveného prováděním\n"
+"    KOLONY poté, co skončí. Návratová hodnota je návratová hodnota KOLONY.\n"
+"    Přepínač „-p“ vytiskne přehled časů v mírně odlišném formátu. Zde se\n"
+"    použije hodnota proměnné TIMEFORMAT jakožto specifikace výstupního formátu."
+
+#: builtins.c:1157
+msgid ""
+"Selectively execute COMMANDS based upon WORD matching PATTERN.  The\n"
+"    `|' is used to separate multiple patterns."
+msgstr ""
+"Provede PŘÍKAZY vybrané podle shody SLOVA se VZOREM. Znak „|“ se používá\n"
+"     na oddělení násobných VZORŮ."
+
+#: builtins.c:1164
+msgid ""
+"The `if COMMANDS' list is executed.  If its exit status is zero, then the\n"
+"    `then COMMANDS' list is executed.  Otherwise, each `elif COMMANDS' list is\n"
+"    executed in turn, and if its exit status is zero, the corresponding\n"
+"    `then COMMANDS' list is executed and the if command completes.  Otherwise,\n"
+"    the `else COMMANDS' list is executed, if present.  The exit status of the\n"
+"    entire construct is the exit status of the last command executed, or zero\n"
+"    if no condition tested true."
+msgstr ""
+"Provede seznam „if PŘÍKAZŮ“. Bude-li jeho návratový kód nula, pak bude\n"
+"    proveden seznam „then PŘÍKAZŮ“. Jinak bude proveden popořadě každý seznam\n"
+"    „elif PŘÍKAZŮ“ a bude-li jeho návratový kód nula, odpovídající seznam\n"
+"    „then PŘÍKAZŮ“ bude proveden a příkaz if skončí. V opačném případě bude\n"
+"    proveden seznam „else PŘÍKAZŮ“, pokud existuje. Návratová hodnota celé\n"
+"    konstrukce je návratovou hodnotou posledního provedeného příkazu nebo nula,\n"
+"    pokud žádná z testovaných podmínek není pravdivá."
+
+#: builtins.c:1176
+msgid ""
+"Expand and execute COMMANDS as long as the final command in the\n"
+"    `while' COMMANDS has an exit status of zero."
+msgstr ""
+"Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve „while“\n"
+"     PŘÍKAZECH má nulový návratový kód."
+
+#: builtins.c:1183
+msgid ""
+"Expand and execute COMMANDS as long as the final command in the\n"
+"    `until' COMMANDS has an exit status which is not zero."
+msgstr ""
+"Expanduje a provádí PŘÍKAZY tak dlouho, dokud poslední příkaz ve „until“\n"
+"     PŘÍKAZECH má nenulový návratový kód."
+
+#: builtins.c:1190
+msgid ""
+"Create a simple command invoked by NAME which runs COMMANDS.\n"
+"    Arguments on the command line along with NAME are passed to the\n"
+"    function as $0 .. $n."
+msgstr ""
+"Vytvoří jednoduchý příkaz volaný JMÉNEM, který spustí PŘÍKAZY. Argumenty\n"
+"    z příkazové řádky spolu se JMÉNEM budou předány do funkce jako $0…$n."
+
+#: builtins.c:1198
+msgid ""
+"Run a set of commands in a group.  This is one way to redirect an\n"
+"    entire set of commands."
+msgstr ""
+"Spustí množinu příkazů v jedné skupině. Toto je jeden ze způsobů,\n"
+"    jak přesměrovat celou množinu příkazů."
+
+#: builtins.c:1205
+msgid ""
+"Equivalent to the JOB_SPEC argument to the `fg' command.  Resume a\n"
+"    stopped or background job.  JOB_SPEC can specify either a job name\n"
+"    or a job number.  Following JOB_SPEC with a `&' places the job in\n"
+"    the background, as if the job specification had been supplied as an\n"
+"    argument to `bg'."
+msgstr ""
+"Ekvivalent k argumentu ÚLOHA příkazu „fg“. Obnoví pozastavenou úlohu\n"
+"    nebo úlohu na pozadí. ÚLOHA může určovat buď název úlohy, nebo číslo úlohy.\n"
+"    Přidání „&“ za ÚLOHU přesune úlohu na pozadí, jako by identifikátor úlohy\n"
+"    byl argumentem příkazu „bg“."
+
+#: builtins.c:1215
+msgid ""
+"The EXPRESSION is evaluated according to the rules for arithmetic\n"
+"    evaluation.  Equivalent to \"let EXPRESSION\"."
+msgstr ""
+"VÝRAZ bude vyhodnocen podle pravidel aritmetického vyhodnocování.\n"
+"    Ekvivalentní k „let VÝRAZ“."
+
+#: builtins.c:1222
+msgid ""
+"Returns a status of 0 or 1 depending on the evaluation of the conditional\n"
+"    expression EXPRESSION.  Expressions are composed of the same primaries used\n"
+"    by the `test' builtin, and may be combined using the following operators\n"
+"    \n"
+"    \t( EXPRESSION )\tReturns the value of EXPRESSION\n"
+"    \t! EXPRESSION\tTrue if EXPRESSION is false; else false\n"
+"    \tEXPR1 && EXPR2\tTrue if both EXPR1 and EXPR2 are true; else false\n"
+"    \tEXPR1 || EXPR2\tTrue if either EXPR1 or EXPR2 is true; else false\n"
+"    \n"
+"    When the `==' and `!=' operators are used, the string to the right of the\n"
+"    operator is used as a pattern and pattern matching is performed.  The\n"
+"    && and || operators do not evaluate EXPR2 if EXPR1 is sufficient to\n"
+"    determine the expression's value."
+msgstr ""
+"Vrátí status 0 nebo 1 podle vyhodnocení podmíněného výrazu VÝRAZ. Výrazy\n"
+"    se skládají ze stejných primitiv jako u vestavěného příkazu „test“ a\n"
+"    mohou být kombinovány za pomoci následujících operátorů:\n"
+"    \n"
+"    \t( VÝRAZ )\tVrátí hodnotu VÝRAZU\n"
+"    \t! VÝRAZ\t\tPravda, pokud VÝRAZ je nepravdivý; jinak nepravda\n"
+"    \tVÝR1 && VÝR2\tPravda, pokud oba VÝR1 i VÝR2 jsou pravdivé;\n"
+"    \t\t\tjinak nepravda\n"
+"    \tVÝR1 || VÝR2\tPravda, pokud VÝR1 nebo VÝR2 je pravdivý; jinak nepravda\n"
+"    \n"
+"    Jsou-li použity operátory „==“ a „!=“, řetězec napravo od operátora je\n"
+"    použit jako vzor a bude uplatněno porovnávání proti vzoru. Operátory\n"
+"    && a || nevyhodnocují VÝR2, pokud VÝR1 je dostatečný na určení hodnoty\n"
+"    výrazu."
+
+#: builtins.c:1240
+msgid ""
+"BASH_VERSION\tVersion information for this Bash.\n"
+"    CDPATH\tA colon-separated list of directories to search\n"
+"    \t\tfor directries given as arguments to `cd'.\n"
+"    GLOBIGNORE\tA colon-separated list of patterns describing filenames to\n"
+"    \t\tbe ignored by pathname expansion.\n"
+"    HISTFILE\tThe name of the file where your command history is stored.\n"
+"    HISTFILESIZE\tThe maximum number of lines this file can contain.\n"
+"    HISTSIZE\tThe maximum number of history lines that a running\n"
+"    \t\tshell can access.\n"
+"    HOME\tThe complete pathname to your login directory.\n"
+"    HOSTNAME\tThe name of the current host.\n"
+"    HOSTTYPE\tThe type of CPU this version of Bash is running under.\n"
+"    IGNOREEOF\tControls the action of the shell on receipt of an EOF\n"
+"    \t\tcharacter as the sole input.  If set, then the value\n"
+"    \t\tof it is the number of EOF characters that can be seen\n"
+"    \t\tin a row on an empty line before the shell will exit\n"
+"    \t\t(default 10).  When unset, EOF signifies the end of input.\n"
+"    MACHTYPE\tA string describing the current system Bash is running on.\n"
+"    MAILCHECK\tHow often, in seconds, Bash checks for new mail.\n"
+"    MAILPATH\tA colon-separated list of filenames which Bash checks\n"
+"    \t\tfor new mail.\n"
+"    OSTYPE\tThe version of Unix this version of Bash is running on.\n"
+"    PATH\tA colon-separated list of directories to search when\n"
+"    \t\tlooking for commands.\n"
+"    PROMPT_COMMAND\tA command to be executed before the printing of each\n"
+"    \t\tprimary prompt.\n"
+"    PS1\t\tThe primary prompt string.\n"
+"    PS2\t\tThe secondary prompt string.\n"
+"    PWD\t\tThe full pathname of the current directory.\n"
+"    SHELLOPTS\tA colon-separated list of enabled shell options.\n"
+"    TERM\tThe name of the current terminal type.\n"
+"    TIMEFORMAT\tThe output format for timing statistics displayed by the\n"
+"    \t\t`time' reserved word.\n"
+"    auto_resume\tNon-null means a command word appearing on a line by\n"
+"    \t\titself is first looked for in the list of currently\n"
+"    \t\tstopped jobs.  If found there, that job is foregrounded.\n"
+"    \t\tA value of `exact' means that the command word must\n"
+"    \t\texactly match a command in the list of stopped jobs.  A\n"
+"    \t\tvalue of `substring' means that the command word must\n"
+"    \t\tmatch a substring of the job.  Any other value means that\n"
+"    \t\tthe command must be a prefix of a stopped job.\n"
+"    histchars\tCharacters controlling history expansion and quick\n"
+"    \t\tsubstitution.  The first character is the history\n"
+"    \t\tsubstitution character, usually `!'.  The second is\n"
+"    \t\tthe `quick substitution' character, usually `^'.  The\n"
+"    \t\tthird is the `history comment' character, usually `#'.\n"
+"    HISTIGNORE\tA colon-separated list of patterns used to decide which\n"
+"    \t\tcommands should be saved on the history list.\n"
+msgstr ""
+"BASH_VERSION\tInformace o verzi v tomto Bashi.\n"
+"    CDPATH\tDvojtečkou oddělený seznam adresářů, který se prohledává\n"
+"    \t\tna adresáře zadané jako argumenty u „cd“.\n"
+"    GLOBIGNORE\tDvojtečkou oddělený seznam vzorů popisujících jména souborů,\n"
+"    \t\tkterá budou ignorována při expanzi cest.\n"
+"    HISTFILE\tJméno souboru, kde je uložena historie vašich příkazů.\n"
+"    HISTFILESIZE\tMaximální počet řádků, které tento soubor smí obsahovat.\n"
+"    HISTSIZE\tMaximální počet řádků historie, které jsou dostupné uvnitř\n"
+"    \t\tběžícího shellu.\n"
+"    HOME\tCelá cesta do vašeho domovského adresáře.\n"
+"    HOSTNAME\tJméno současného stroje.\n"
+"    HOSTTYPE\tDruh CPU, na kterém tento Bash běží.\n"
+"    IGNOREEOF\tŘídí reakci shellu na přijetí znaku EOF (konec souboru)\n"
+"    \t\tpři samotném vstupu. Je-li nastaveno, pak její hodnota udává\n"
+"    \t\tpočet znaků EOF, které mohou bezprostředně následovat na prázdném\n"
+"    \t\třádku, dříve než shell skončí (implicitní hodnota je 10). Není-li\n"
+"    \t\tnastaveno, EOF značí konec vstupu.\n"
+"    MACHTYPE\tŘetězec popisující systém, na kterém tento Bash běží.\n"
+"    MAILCHECK\tJak často, v sekundách, kontroluje Bash novou poštu.\n"
+"    MAILPATH\tDvojtečkou oddělený seznam názvů souborů, které Bash\n"
+"    \t\tkontroluje na novou poštu.\n"
+"    OSTYPE\tVerze Unixu, na kterém tento Bash běží.\n"
+"    PATH\tDvojtečkou oddělený seznam adresářů, které jsou prohledávány\n"
+"    \t\tna příkazy.\n"
+"    PROMPT_COMMAND\tPříkaz, který je proveden před vytištěním každé\n"
+"    \t\tprimární výzvy shellu.\n"
+"    PS1\t\tŘetězec prvotní výzvy shellu.\n"
+"    PS2\t\tŘetězec druhotné výzvy shellu.\n"
+"    PWD\t\tCelé jméno cesty do aktuálního adresáře.\n"
+"    SHELLOPTS\tDvojtečkou oddělený seznam zapnutých přepínačů shellu.\n"
+"    TERM\tNázev druhu současného terminálu.\n"
+"    TIMEFORMAT\tVýstupní formát časové statistiky zobrazované vyhrazeným\n"
+"    \t\tslovem „time“.\n"
+"    auto_resume\tNeprázdná hodnota znamená slovo příkazu objevující se\n"
+"    \t\tna řádce automaticky, které je nejprve vyhledáno v seznamu\n"
+"    \t\tprávě pozastavených úloh. Je-li tam nalezeno, daná úloha bude\n"
+"    \t\tpřepnuta na popředí. Hodnota „exact“ znamená, že slovo příkazu\n"
+"    \t\tse musí přesně shodovat s příkazem v seznamu pozastavených úloh.\n"
+"    \t\tHodnota „substring“ znamená, že slovo příkazu se musí shodovat\n"
+"    \t\ts podřetězcem úlohy. Jakákoliv jiná hodnota znamená, že příkaz\n"
+"    \t\tmusí být předponou pozastavené úlohy.\n"
+"    histchars\tZnaky řídící expanzi historie a rychlého nahrazování.\n"
+"    \t\tPrvní znak je znak nahrazení historie, obvykle „!“. Druhý je\n"
+"    \t\tznak „rychlého nahrazování“, obvykle „^“. Třetí je znak\n"
+"    \t\t„komentáře historie“, obvykle „#“.\n"
+"    HISTIGNORE\tDvojtečkou oddělený seznam vzorů používaný na\n"
+"    \t\trozlišení, které příkazy by měly být uloženy do seznamu\n"
+"    \t\thistorie.\n"
+
+#: builtins.c:1295
+msgid ""
+"Adds a directory to the top of the directory stack, or rotates\n"
+"    the stack, making the new top of the stack the current working\n"
+"    directory.  With no arguments, exchanges the top two directories.\n"
+"    \n"
+"    +N\tRotates the stack so that the Nth directory (counting\n"
+"    \tfrom the left of the list shown by `dirs', starting with\n"
+"    \tzero) is at the top.\n"
+"    \n"
+"    -N\tRotates the stack so that the Nth directory (counting\n"
+"    \tfrom the right of the list shown by `dirs', starting with\n"
+"    \tzero) is at the top.\n"
+"    \n"
+"    -n\tsuppress the normal change of directory when adding directories\n"
+"    \tto the stack, so only the stack is manipulated.\n"
+"    \n"
+"    dir\tadds DIR to the directory stack at the top, making it the\n"
+"    \tnew current working directory.\n"
+"    \n"
+"    You can see the directory stack with the `dirs' command."
+msgstr ""
+"Přidá adresář na vrchol zásobníku adresářů nebo zásobník zrotuje tak,\n"
+"    že nový vrchol zásobníku se stane současným pracovním adresářem. Bez\n"
+"    argumentů prohodí dva vrchní adresáře.\n"
+"    \n"
+"    +N\tZrotuje zásobník tak, že N. adresář (počítáno zleva na seznamu\n"
+"    \tzobrazovaném pomocí „dirs“, počínaje nulou) se dostane na vrchol.\n"
+"    \n"
+"    -N\tZrotuje zásobník tak, že N. adresář (počítáno zprava na seznamu\n"
+"    \tzobrazovaném pomocí „dirs“, počínaje nulou) se dostane na vrchol.\n"
+"    \n"
+"    -n\tpotlačí obvyklou změnu adresáře, když se na zásobník přidávají\n"
+"    \tadresáře, takže změněn bude pouze zásobník.\n"
+"    \n"
+"    adresář\n"
+"    \tpřidá ADRESÁŘ na vrchol zásobníku adresářů a učiní jej novým\n"
+"    \tsoučasným pracovním adresářem.\n"
+"    \n"
+"    Zásobník adresářů si můžete prohlédnout příkazem „dirs“."
+
+#: builtins.c:1321
+msgid ""
+"Removes entries from the directory stack.  With no arguments,\n"
+"    removes the top directory from the stack, and cd's to the new\n"
+"    top directory.\n"
+"    \n"
+"    +N\tremoves the Nth entry counting from the left of the list\n"
+"    \tshown by `dirs', starting with zero.  For example: `popd +0'\n"
+"    \tremoves the first directory, `popd +1' the second.\n"
+"    \n"
+"    -N\tremoves the Nth entry counting from the right of the list\n"
+"    \tshown by `dirs', starting with zero.  For example: `popd -0'\n"
+"    \tremoves the last directory, `popd -1' the next to last.\n"
+"    \n"
+"    -n\tsuppress the normal change of directory when removing directories\n"
+"    \tfrom the stack, so only the stack is manipulated.\n"
+"    \n"
+"    You can see the directory stack with the `dirs' command."
+msgstr ""
+"Odstraní položku ze zásobníku adresářů. Bez argumentů odstraní adresář\n"
+"    z vrcholu zásobníku a provede „cd“ do nového adresáře z vrchu zásobníku.\n"
+"    \n"
+"    +N\todstraní N. položku počítáno zleva na seznamu zobrazovaném pomocí\n"
+"    \t„dirs“, počínaje nulou. Na příklad: „popd +0“ odstraní poslední\n"
+"    adresář, „popd -1“ další vedle posledního.\n"
+"    \n"
+"    -N\todstraní N. položku počítáno zprava na seznamu zobrazovaném pomocí\n"
+"    \t„dirs“, počínaje nulou. Na příklad: „popd -0“ odstraní poslední\n"
+"    adresář, „popd -1“ další vedle posledního.\n"
+"    \n"
+"    -n\tpotlačí obvyklou změnu adresáře, když se ze zásobníku odebírají\n"
+"    \tadresáře, takže změněn bude pouze zásobník.\n"
+"    \n"
+"    Zásobník adresářů si můžete prohlédnout příkazem „dirs“."
+
+#: builtins.c:1344
+msgid ""
+"Display the list of currently remembered directories.  Directories\n"
+"    find their way onto the list with the `pushd' command; you can get\n"
+"    back up through the list with the `popd' command.\n"
+"    \n"
+"    The -l flag specifies that `dirs' should not print shorthand versions\n"
+"    of directories which are relative to your home directory.  This means\n"
+"    that `~/bin' might be displayed as `/homes/bfox/bin'.  The -v flag\n"
+"    causes `dirs' to print the directory stack with one entry per line,\n"
+"    prepending the directory name with its position in the stack.  The -p\n"
+"    flag does the same thing, but the stack position is not prepended.\n"
+"    The -c flag clears the directory stack by deleting all of the elements.\n"
+"    \n"
+"    +N\tdisplays the Nth entry counting from the left of the list shown by\n"
+"    \tdirs when invoked without options, starting with zero.\n"
+"    \n"
+"    -N\tdisplays the Nth entry counting from the right of the list shown by\n"
+"    \tdirs when invoked without options, starting with zero."
+msgstr ""
+"Zobrazí seznam právě zapamatovaných adresářů. Adresáře si najdou svoji\n"
+"    cestu na seznam příkazem „pushd“ a procházet seznamem zpět lze příkazem\n"
+"    „popd“.    \n"
+"    Příznak -l říká, aby „dirs“ nevypisoval zkrácené verze adresářů, které\n"
+"    jsou relativní vašemu domovskému adresáři. To znamená, že „~/bin“ může být\n"
+"    zobrazeno jako „/homes/bfox/bin“. Příznak -v způsobuje, že „dirs“ vytiskne\n"
+"    zásobník adresářů po jedné položce na řádek, přičemž názvu adresáře\n"
+"    předřadí jeho umístění na zásobníku. Příznak -p dělá tu samou věc, ale\n"
+"    umístění na zásobníku předřazeno nebude. Příznak -c vyprázdní zásobník\n"
+"    adresářů tím, že smaže všechny jeho prvky.\n"
+"    \n"
+"    +N\tzobrazí N. položku počítáno zleva na seznamu, který zobrazuje\n"
+"    \tdirs, když je vyvolán bez přepínačů, počínaje nulou.\n"
+"    \n"
+"    -N\tzobrazí N. položku počítáno zprava na seznamu, který zobrazuje\n"
+"    \tdirs, když je vyvolán bez přepínačů, počínaje nulou."
+
+#: builtins.c:1367
+msgid ""
+"Toggle the values of variables controlling optional behavior.\n"
+"    The -s flag means to enable (set) each OPTNAME; the -u flag\n"
+"    unsets each OPTNAME.  The -q flag suppresses output; the exit\n"
+"    status indicates whether each OPTNAME is set or unset.  The -o\n"
+"    option restricts the OPTNAMEs to those defined for use with\n"
+"    `set -o'.  With no options, or with the -p option, a list of all\n"
+"    settable options is displayed, with an indication of whether or\n"
+"    not each is set."
+msgstr ""
+"Přepne hodnoty proměnných řídící volitelné chování. Přepínač -s znamená,\n"
+"    že se každý NÁZEV_VOLBY zapne (nastaví). Přepínač -u každý NÁZEV_VOLBY\n"
+"    vypne. Přepínač -q potlačí výstup. Zda je nebo není nastaven každý\n"
+"    NÁZEV_VOLBY, indikuje návratový kód. Přepínač -o omezí NÁZVY_VOLEB na ty,\n"
+"    které jsou definovány pro použití s „set -o“. Bez přepínačů nebo\n"
+"    s přepínačem -p je zobrazen seznam všech nastavitelných voleb včetně\n"
+"    indikace, zda je každá nastavena."
+
+#: builtins.c:1380
+msgid ""
+"printf formats and prints ARGUMENTS under control of the FORMAT. FORMAT\n"
+"    is a character string which contains three types of objects: plain\n"
+"    characters, which are simply copied to standard output, character escape\n"
+"    sequences which are converted and copied to the standard output, and\n"
+"    format specifications, each of which causes printing of the next successive\n"
+"    argument.  In addition to the standard printf(1) formats, %b means to\n"
+"    expand backslash escape sequences in the corresponding argument, and %q\n"
+"    means to quote the argument in a way that can be reused as shell input.\n"
+"    If the -v option is supplied, the output is placed into the value of the\n"
+"    shell variable VAR rather than being sent to the standard output."
+msgstr ""
+"printf naformátuje a vytiskne ARGUMENTY podle definice FORMÁTU. FORMÁT\n"
+"    je řetězec znaků, který obsahuje tři druhy objektů: obyčejné znaky, které\n"
+"    jsou prostě zkopírovány na standardní výstup, posloupnosti escapových\n"
+"    znaků, které jsou zkonvertovány a zkopírovány na standardní výstup a\n"
+"    formátovací definice, z nichž každá způsobí vytištění dalšího argumentu.\n"
+"    Doplňky ke standardním formátům printf(1): %b způsobí expanzi posloupností\n"
+"    escapovaných zpětným lomítkem v odpovídajícím argumentu a %q způsobí\n"
+"    oescapování argumentu takovým způsobem, že jej bude možné použít jako vstup\n"
+"    shellu. Je-li zadán přepínač -v, bude výstup umístěn do proměnné shellu\n"
+"    PROMĚNNÁ namísto odeslání na standardní výstup."
+
+#: builtins.c:1396
+msgid ""
+"For each NAME, specify how arguments are to be completed.\n"
+"    If the -p option is supplied, or if no options are supplied, existing\n"
+"    completion specifications are printed in a way that allows them to be\n"
+"    reused as input.  The -r option removes a completion specification for\n"
+"    each NAME, or, if no NAMEs are supplied, all completion specifications."
+msgstr ""
+"U každého NÁZVU sdělí, jak budou argumenty doplněny. Je-li zadán\n"
+"    přepínač -p nebo není-li zadán přepínač žádný, budou existující definice\n"
+"    doplňování vytištěny tak. že je bude možné znovu použít jako vstup.\n"
+"    Přepínač -r odstraní definici doplnění pro každý NÁZEV nebo chybí-li NÁZVY,\n"
+"    odstraní všechny definice."
+
+#: builtins.c:1408
+msgid ""
+"Display the possible completions depending on the options.  Intended\n"
+"    to be used from within a shell function generating possible completions.\n"
+"    If the optional WORD argument is supplied, matches against WORD are\n"
+"    generated."
+msgstr ""
+"Zobrazí možná doplnění v závislosti na přepínačích. Je zamýšleno pro\n"
+"    použití uvnitř shellových funkcí generujících možná doplnění. Je-li\n"
+"    poskytnut volitelný argument SLOVO, budou vygenerovány shody proti SLOVU."
diff --git a/po/lt.gmo b/po/lt.gmo
new file mode 100644 (file)
index 0000000..002e50f
Binary files /dev/null and b/po/lt.gmo differ
index 5cdde2e1b2cc1792d4af7e20513b2becce62fed6..4a69bd6185afa161fda3a1743cc79f578584b0a5 100644 (file)
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: bash-3.2\n"
 "POT-Creation-Date: 2006-10-23 17:20-0400\n"
-"PO-Revision-Date: 2008-03-14 22:41+0200\n"
+"PO-Revision-Date: 2008-07-28 03:07-0400\n"
 "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
 "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
 "MIME-Version: 1.0\n"
@@ -18,12 +18,12 @@ msgstr ""
 
 #: arrayfunc.c:48
 msgid "bad array subscript"
-msgstr ""
+msgstr "blogas masyvo indeksas"
 
 #: arrayfunc.c:362
 #, c-format
 msgid "%s: cannot assign to non-numeric index"
-msgstr ""
+msgstr "%s: nepavyko priskirti prie neskaitinio indekso"
 
 #: bashhist.c:331
 #, c-format
@@ -32,7 +32,7 @@ msgstr "%s: nepavyko sukurti: %s"
 
 #: bashline.c:3030
 msgid "bash_execute_unix_command: cannot find keymap for command"
-msgstr ""
+msgstr "bash_execute_unix_command: nepavyko rasti keymapo komandai"
 
 #: bashline.c:3079
 #, c-format
@@ -62,7 +62,7 @@ msgstr "%s: nepavyko perskaityti: %s"
 #: builtins/bind.def:248
 #, c-format
 msgid "`%s': cannot unbind"
-msgstr ""
+msgstr "„%s“: nepavyko atjungti (unbind)"
 
 #: builtins/bind.def:283
 #, c-format
@@ -77,7 +77,7 @@ msgstr "%s nėra priskirtas jokiam klavišui.\n"
 #: builtins/bind.def:295
 #, c-format
 msgid "%s can be invoked via "
-msgstr "%s gali būti iškviestas su"
+msgstr "%s gali būti iškviestas su "
 
 #: builtins/break.def:128
 msgid "only meaningful in a `for', `while', or `until' loop"
@@ -85,7 +85,7 @@ msgstr "prasminga tik „for“, „while“ arba „until“ cikle"
 
 #: builtins/caller.def:131
 msgid "Returns the context of the current subroutine call."
-msgstr ""
+msgstr "Grąžina esamos procedūros kontekstą."
 
 #: builtins/caller.def:132 builtins/caller.def:136 builtins/pushd.def:666
 #: builtins/pushd.def:674 builtins/pushd.def:677 builtins/pushd.def:687
@@ -97,23 +97,23 @@ msgstr " "
 
 #: builtins/caller.def:133
 msgid "Without EXPR, returns returns \"$line $filename\".  With EXPR,"
-msgstr ""
+msgstr "Be EXPR, grąžina „$line $filename“.  Su EXPR,"
 
 #: builtins/caller.def:134
 msgid "returns \"$line $subroutine $filename\"; this extra information"
-msgstr ""
+msgstr "grąžina „$line $subroutine $filename“; ši papildoma informacija"
 
 #: builtins/caller.def:135
 msgid "can be used used to provide a stack trace."
-msgstr ""
+msgstr "gali būti panaudota generuojant steko išrašą (stack trace)."
 
 #: builtins/caller.def:137
 msgid "The value of EXPR indicates how many call frames to go back before the"
-msgstr ""
+msgstr "EXPR reikšmė nurodo, per kiek kvietimo freimų eiti atgal prieš"
 
 #: builtins/caller.def:138
 msgid "current one; the top frame is frame 0."
-msgstr ""
+msgstr "esamą.  Viršutinis freimas yra 0."
 
 #: builtins/cd.def:204
 msgid "HOME not set"
@@ -316,7 +316,7 @@ msgstr "%s: nepavyko paleisti: %s"
 
 #: builtins/exit.def:83
 msgid "not login shell: use `exit'"
-msgstr ""
+msgstr "ne prisijungimo aplinka: naudokite „exit“"
 
 #: builtins/exit.def:111
 msgid "There are stopped jobs.\n"
@@ -328,7 +328,7 @@ msgstr "komandų nerasta"
 
 #: builtins/fc.def:328
 msgid "history specification"
-msgstr ""
+msgstr "istorijos specifikacija"
 
 #: builtins/fc.def:349
 #, c-format
@@ -338,7 +338,7 @@ msgstr "%s: nepavyko atverti laikinojo failo: %s"
 #: builtins/fg_bg.def:149
 #, c-format
 msgid "job %d started without job control"
-msgstr ""
+msgstr "darbas %d pradėtas be darbų valdymo"
 
 #: builtins/getopt.c:109
 #, c-format
@@ -352,7 +352,7 @@ msgstr "%s: parametrui reikia argumento -- %c\n"
 
 #: builtins/hash.def:84
 msgid "hashing disabled"
-msgstr ""
+msgstr "maiša išjungta"
 
 #: builtins/hash.def:130
 #, c-format
@@ -361,11 +361,11 @@ msgstr "%s: maišos lentelė tuščia\n"
 
 #: builtins/help.def:108
 msgid "Shell commands matching keywords `"
-msgstr ""
+msgstr "Aplinkos komandos, atitinkančios raktažodžius „"
 
 #: builtins/help.def:110
 msgid "Shell commands matching keyword `"
-msgstr ""
+msgstr "Aplinkos komandos, atitinkančios raktažodį „"
 
 #: builtins/help.def:138
 #, c-format
@@ -387,28 +387,35 @@ msgid ""
 "A star (*) next to a name means that the command is disabled.\n"
 "\n"
 msgstr ""
+"Šios aplinkos komandos vidinės. Jei norite pamatyti šį sąrašą, įveskite „help“.\n"
+"Įveskite „help fn“, jei norite sužinoti daugiau apie funkciją „fn“.\n"
+"Įveskite „info bash“, jei norite daugiau sužinoti apie aplinką apskritai.\n"
+"Naudokite „man -k“ ir „info“, jei norite sužinoti daugiau apie komandas, nesančiasšiame sąraše.\n"
+"\n"
+"Žvaigždutė (*) prie vardo reiškia, kad komanda išjungta.\n"
+"\n"
 
 #: builtins/history.def:150
 msgid "cannot use more than one of -anrw"
-msgstr "negalima naudoti daugiau negu vieno iš -anrw"
+msgstr "negalima naudoti daugiau negu vieno parametro iš -anrw"
 
 #: builtins/history.def:182
 msgid "history position"
-msgstr ""
+msgstr "istorijos pozicija"
 
 #: builtins/history.def:400
 #, c-format
 msgid "%s: history expansion failed"
-msgstr ""
+msgstr "%s: istorijos išskleidimas nesėkmingas"
 
 #: builtins/jobs.def:99
 msgid "no other options allowed with `-x'"
-msgstr ""
+msgstr "su „-x“ neleidžiama naudoti kitų parametrų"
 
 #: builtins/kill.def:187
 #, c-format
 msgid "%s: arguments must be process or job IDs"
-msgstr ""
+msgstr "%s: argumentai turi būti procesų arba darbų ID"
 
 #: builtins/kill.def:250
 msgid "Unknown error"
@@ -442,156 +449,157 @@ msgstr "<nėra esamo aplanko>"
 
 #: builtins/pushd.def:663
 msgid "Display the list of currently remembered directories.  Directories"
-msgstr ""
+msgstr "Rodyti prisimenamų aplankų sąrašą. Aplankai"
 
 #: builtins/pushd.def:664
 msgid "find their way onto the list with the `pushd' command; you can get"
-msgstr ""
+msgstr "atsiduria sąraše su „pushd“ komanda; galite kilti"
 
 #: builtins/pushd.def:665
 msgid "back up through the list with the `popd' command."
-msgstr ""
+msgstr "sąrašu su „popd“ komanda."
 
 #: builtins/pushd.def:667
 msgid "The -l flag specifies that `dirs' should not print shorthand versions"
-msgstr ""
+msgstr "Parametras -l nurodo, kad „dirs“ neturėtų spausdinti sutrumpintų"
 
 #: builtins/pushd.def:668
 msgid "of directories which are relative to your home directory.  This means"
-msgstr ""
+msgstr "aplankų, santykinių namų aplinkui, pavadinimų. Tai reiškia, kad"
 
 #: builtins/pushd.def:669
+#, fuzzy
 msgid "that `~/bin' might be displayed as `/homes/bfox/bin'.  The -v flag"
-msgstr ""
+msgstr "kad „~/bin“ bus rodomas kaip „/home/bfox/bin“.  Su parametru -v"
 
 #: builtins/pushd.def:670
 msgid "causes `dirs' to print the directory stack with one entry per line,"
-msgstr ""
+msgstr "„dirs“ išveda aplankų steką po vieną pavadinimą eilutėje,"
 
 #: builtins/pushd.def:671
 msgid "prepending the directory name with its position in the stack.  The -p"
-msgstr ""
+msgstr "prieš pavadinimą prirašoma aplanko pozicija steke. Parametras -p"
 
 #: builtins/pushd.def:672
 msgid "flag does the same thing, but the stack position is not prepended."
-msgstr ""
+msgstr "turi tokį patį efektą, tačiau pozicija steke neišvedama."
 
 #: builtins/pushd.def:673
 msgid "The -c flag clears the directory stack by deleting all of the elements."
-msgstr ""
+msgstr "Parametras -c išvalo aplankų steką."
 
 #: builtins/pushd.def:675
 msgid "+N   displays the Nth entry counting from the left of the list shown by"
-msgstr ""
+msgstr "+N   rodo N-tąjį įrašą skaičiuojant iš kairės sąraše, rodomame"
 
 #: builtins/pushd.def:676 builtins/pushd.def:679
 msgid "     dirs when invoked without options, starting with zero."
-msgstr ""
+msgstr "     „dirs“, iškviesto be parametrų (skaičiuojama nuo nulio)."
 
 #: builtins/pushd.def:678
 msgid "-N   displays the Nth entry counting from the right of the list shown by"
-msgstr ""
+msgstr "-N   rodo N-tajį įrašą skaičiuojant iš dešinės sąraše, rodomame"
 
 #: builtins/pushd.def:684
 msgid "Adds a directory to the top of the directory stack, or rotates"
-msgstr ""
+msgstr "Įdeda aplanką į aplankų steko viršų, arba pasuka"
 
 #: builtins/pushd.def:685
 msgid "the stack, making the new top of the stack the current working"
-msgstr ""
+msgstr "steką, nustatydamas esamą aplanką į naująją steko viršūnės reikšmę."
 
 #: builtins/pushd.def:686
 msgid "directory.  With no arguments, exchanges the top two directories."
-msgstr ""
+msgstr "Be argumentų, sukeičia viršutinius du aplankus."
 
 #: builtins/pushd.def:688
 msgid "+N   Rotates the stack so that the Nth directory (counting"
-msgstr ""
+msgstr "+N   Pasuka steką, kad N-tasis aplankas (skaičiuojant"
 
 #: builtins/pushd.def:689
 msgid "     from the left of the list shown by `dirs', starting with"
-msgstr ""
+msgstr "     iš kairės sąraše, rodomame „dirs“, pradedant nuo nulio)"
 
 #: builtins/pushd.def:690 builtins/pushd.def:694
 msgid "     zero) is at the top."
-msgstr ""
+msgstr "     būtų viršuje."
 
 #: builtins/pushd.def:692
 msgid "-N   Rotates the stack so that the Nth directory (counting"
-msgstr ""
+msgstr "-N   Pasuka steką, kad N-tasis aplankas (skaičiuojant"
 
 #: builtins/pushd.def:693
 msgid "     from the right of the list shown by `dirs', starting with"
-msgstr ""
+msgstr "     iš dešinės sąraše, rodomame „dirs“, pradedant nuo nulio)"
 
 #: builtins/pushd.def:696
 msgid "-n   suppress the normal change of directory when adding directories"
-msgstr ""
+msgstr "-n   išjungti įprastą aplanko pakeitimą pridedant aplankus"
 
 #: builtins/pushd.def:697
 msgid "     to the stack, so only the stack is manipulated."
-msgstr ""
+msgstr "     į steką, taigi, pakeičiamas tik stekas."
 
 #: builtins/pushd.def:699
 msgid "dir  adds DIR to the directory stack at the top, making it the"
-msgstr ""
+msgstr "dir  prideda DIR į aplankų steko viršų; DIR nustatomas"
 
 #: builtins/pushd.def:700
 msgid "     new current working directory."
-msgstr ""
+msgstr "     naujuoju darbiniu aplanku."
 
 #: builtins/pushd.def:702 builtins/pushd.def:722
 msgid "You can see the directory stack with the `dirs' command."
-msgstr ""
+msgstr "Galite pamatyti aplankų steką komanda „dirs“."
 
 #: builtins/pushd.def:707
 msgid "Removes entries from the directory stack.  With no arguments,"
-msgstr ""
+msgstr "Šalina įrašus iš aplankų steko. Jei nenurodyta argumentų,"
 
 #: builtins/pushd.def:708
 msgid "removes the top directory from the stack, and cd's to the new"
-msgstr ""
+msgstr "pašalina viršutinį aplanką iš steko ir pakeičia darbinį aplanką"
 
 #: builtins/pushd.def:709
 msgid "top directory."
-msgstr ""
+msgstr "steko viršūnėje esančiu."
 
 #: builtins/pushd.def:711
 msgid "+N   removes the Nth entry counting from the left of the list"
-msgstr ""
+msgstr "+N   pašalina N-tąjį įrašą skaičiuojant iš kairės sąraše, išvedamame „dir“"
 
 #: builtins/pushd.def:712
 msgid "     shown by `dirs', starting with zero.  For example: `popd +0'"
-msgstr ""
+msgstr "     (skaičiuojama nuo nulio).  Pavyzdžiui: „popd +0“"
 
 #: builtins/pushd.def:713
 msgid "     removes the first directory, `popd +1' the second."
-msgstr ""
+msgstr "     pašalina pirmąjį aplanką, „popd +1“ – antrąjį."
 
 #: builtins/pushd.def:715
 msgid "-N   removes the Nth entry counting from the right of the list"
-msgstr ""
+msgstr "+N   pašalina N-tąjį įrašą skaičiuojant iš dešinės sąraše, išvedamame „dir“"
 
 #: builtins/pushd.def:716
 msgid "     shown by `dirs', starting with zero.  For example: `popd -0'"
-msgstr ""
+msgstr "     (skaičiuojama nuo nulio).  Pavyzdžiui: „popd -0“"
 
 #: builtins/pushd.def:717
 msgid "     removes the last directory, `popd -1' the next to last."
-msgstr ""
+msgstr "     pašalina paskutinį aplanką, „popd -1“ – priešpaskutinį."
 
 #: builtins/pushd.def:719
 msgid "-n   suppress the normal change of directory when removing directories"
-msgstr ""
+msgstr "     išjungti įprastą darbinio aplanko keitimą šalinant aplankus"
 
 #: builtins/pushd.def:720
 msgid "     from the stack, so only the stack is manipulated."
-msgstr ""
+msgstr "     iš steko, taigi, pakeičiamas tik stekas."
 
 #: builtins/read.def:210
 #, c-format
 msgid "%s: invalid timeout specification"
-msgstr ""
+msgstr "%s: klaidinga laiko ribos (timeout) specifikacija"
 
 #: builtins/read.def:233
 #, c-format
@@ -614,17 +622,17 @@ msgstr "galima grįžti (return) tik iš funkcijos ar scenarijaus"
 
 #: builtins/set.def:744
 msgid "cannot simultaneously unset a function and a variable"
-msgstr ""
+msgstr "negalima kartu ištrinti funkcijos ir kintamojo"
 
 #: builtins/set.def:781
 #, c-format
 msgid "%s: cannot unset"
-msgstr ""
+msgstr "%s: nepavyko ištrinti"
 
 #: builtins/set.def:788
 #, c-format
 msgid "%s: cannot unset: readonly %s"
-msgstr ""
+msgstr "%s: nepavyko ištrinti: %s tik skaitymui"
 
 #: builtins/set.def:799
 #, c-format
@@ -642,12 +650,12 @@ msgstr "postūmių skaičius"
 
 #: builtins/shopt.def:227
 msgid "cannot set and unset shell options simultaneously"
-msgstr ""
+msgstr "negalima aplinkos nuostatos vienu metu įjungti ir išjungti"
 
 #: builtins/shopt.def:292
 #, c-format
 msgid "%s: invalid shell option name"
-msgstr ""
+msgstr "%s: netaisyklingas aplinkos nuostatos pavadinimas"
 
 #: builtins/source.def:115
 msgid "filename argument required"
@@ -664,7 +672,7 @@ msgstr "nepavyko sustabdyti"
 
 #: builtins/suspend.def:105
 msgid "cannot suspend a login shell"
-msgstr ""
+msgstr "nepavyko sustabdyti prisijungimo aplinkos"
 
 #: builtins/type.def:232
 #, c-format
@@ -694,7 +702,7 @@ msgstr "%s yra %s\n"
 #: builtins/type.def:339
 #, c-format
 msgid "%s is hashed (%s)\n"
-msgstr ""
+msgstr "%s yra hešuotas (%s)\n"
 
 #: builtins/ulimit.def:352
 #, c-format
@@ -723,12 +731,12 @@ msgstr "aštuntainis skaičius"
 #: builtins/umask.def:226
 #, c-format
 msgid "`%c': invalid symbolic mode operator"
-msgstr ""
+msgstr "„%c“: netaisyklingas simbolinės veiksenos operatorius"
 
 #: builtins/umask.def:281
 #, c-format
 msgid "`%c': invalid symbolic mode character"
-msgstr ""
+msgstr "„%c“: netaisyklingas simbolinės veiksenos simbolis"
 
 #: error.c:163
 #, c-format
@@ -758,7 +766,7 @@ msgstr "blogas jungtukas"
 
 #: error.c:406
 msgid "bad jump"
-msgstr ""
+msgstr "blogas šuolis"
 
 #: error.c:444
 #, c-format
@@ -772,7 +780,7 @@ msgstr "\alaukiant įvedimo baigėsi laikas: automatiškai atsijungta\n"
 #: execute_cmd.c:474
 #, c-format
 msgid "cannot redirect standard input from /dev/null: %s"
-msgstr ""
+msgstr "nepavyko peradresuoti standartinio įvedimo iš /dev/null: %s"
 
 #: execute_cmd.c:1058
 #, c-format
@@ -802,7 +810,7 @@ msgstr "%s: negalima vykdyti dvejetainių failų"
 #: execute_cmd.c:4112
 #, c-format
 msgid "cannot duplicate fd %d to fd %d"
-msgstr ""
+msgstr "nepavyko dublikuoti fd %d į fd %d"
 
 #: expr.c:241
 msgid "expression recursion level exceeded"
@@ -838,7 +846,7 @@ msgstr "eksponentas mažesnis už 0"
 
 #: expr.c:822
 msgid "identifier expected after pre-increment or pre-decrement"
-msgstr ""
+msgstr "po prieš-didinimo ar prieš-mažinimo operatoriaus tikėtasi identifikatoriaus"
 
 #: expr.c:850
 msgid "missing `)'"
@@ -871,12 +879,12 @@ msgstr "getcwd: nepavyko pasiekti aukštesnių aplankų"
 #: input.c:237
 #, c-format
 msgid "cannot allocate new file descriptor for bash input from fd %d"
-msgstr ""
+msgstr "nepavyko išskirti naujo failo deskriptoriaus bash įvedimui iš fd %d"
 
 #: input.c:245
 #, c-format
 msgid "save_bash_input: buffer already exists for new fd %d"
-msgstr ""
+msgstr "save_bash_input: naujam fd %d buferis jau egzistuoja"
 
 #: jobs.c:876
 #, c-format
@@ -886,7 +894,7 @@ msgstr ""
 #: jobs.c:983
 #, c-format
 msgid "deleting stopped job %d with process group %ld"
-msgstr ""
+msgstr "trinamas sustabdytas darbas %d procesų grupėje %ld"
 
 #: jobs.c:1378
 #, c-format
@@ -896,7 +904,7 @@ msgstr "describe_pid: %ld: tokio pid nėra"
 #: jobs.c:2061 nojobs.c:575
 #, c-format
 msgid "wait: pid %ld is not a child of this shell"
-msgstr ""
+msgstr "wait: pid %ld nėra šios aplinkos dukterinis procesas"
 
 #: jobs.c:2265
 #, c-format
@@ -911,7 +919,7 @@ msgstr "wait_for_job: darbas %d yra sustabdytas"
 #: jobs.c:2746
 #, c-format
 msgid "%s: job has terminated"
-msgstr "%s: darbas baigtas"
+msgstr "%s: darbas užsibaigė"
 
 #: jobs.c:2755
 #, c-format
@@ -938,49 +946,49 @@ msgstr ""
 
 #: lib/malloc/malloc.c:799
 msgid "malloc: block on free list clobbered"
-msgstr ""
+msgstr "malloc: blokas iš laisvų blokų sąrašo sugadintas"
 
 #: lib/malloc/malloc.c:876
 msgid "free: called with already freed block argument"
-msgstr ""
+msgstr "free: iškviestas su jau atlaisvintu bloku"
 
 #: lib/malloc/malloc.c:879
 msgid "free: called with unallocated block argument"
-msgstr ""
+msgstr "free: iškviestas su nerezervuotu bloku"
 
 #: lib/malloc/malloc.c:898
 msgid "free: underflow detected; mh_nbytes out of range"
-msgstr ""
+msgstr "free: atvirkštinis perpildymas (underflow); mh_nbytes už ribos"
 
 #: lib/malloc/malloc.c:904
 msgid "free: start and end chunk sizes differ"
-msgstr ""
+msgstr "free: pradžios ir pabaigos blokų (chunk) dydžiai skiriasi"
 
 #: lib/malloc/malloc.c:1003
 msgid "realloc: called with unallocated block argument"
-msgstr ""
+msgstr "realloc: iškviestas su nerezervuotu bloku"
 
 #: lib/malloc/malloc.c:1018
 msgid "realloc: underflow detected; mh_nbytes out of range"
-msgstr ""
+msgstr "realloc: atvirkštinis perpildymas (underflow); mh_nbytes už ribos"
 
 #: lib/malloc/malloc.c:1024
 msgid "realloc: start and end chunk sizes differ"
-msgstr ""
+msgstr "realloc: pradžios ir pabaigos blokų (chunk) dydžiai skiriasi"
 
 #: lib/malloc/table.c:176
 msgid "register_alloc: alloc table is full with FIND_ALLOC?\n"
-msgstr ""
+msgstr "register_alloc: alloc lentelė pilna su FIND_ALLOC?\n"
 
 #: lib/malloc/table.c:183
 #, c-format
 msgid "register_alloc: %p already in table as allocated?\n"
-msgstr ""
+msgstr "register_alloc: %p jau lentelėje kaip rezervuotas?\n"
 
 #: lib/malloc/table.c:219
 #, c-format
 msgid "register_free: %p already in table as free?\n"
-msgstr ""
+msgstr "register_free: %p jau lentelėje kaip laisvas?\n"
 
 #: lib/malloc/watch.c:46
 msgid "allocated"
@@ -1005,11 +1013,11 @@ msgstr "klaida: nežinoma operacija"
 #: lib/malloc/watch.c:56
 #, c-format
 msgid "malloc: watch alert: %p %s "
-msgstr ""
+msgstr "malloc: stebinio įspėjimas: %p %s "
 
 #: lib/sh/fmtulong.c:101
 msgid "invalid base"
-msgstr ""
+msgstr "netaisyklingas pagrindas"
 
 #: lib/sh/netopen.c:168
 #, c-format
@@ -1237,37 +1245,39 @@ msgid ""
 "Usage:\t%s [GNU long option] [option] ...\n"
 "\t%s [GNU long option] [option] script-file ...\n"
 msgstr ""
+"Naudojimas:\t%s [GNU ilgas parametras] [parametras] ...\n"
+"\t%s [GNU ilgas parametras] [parametras] scenarijaus-failas ...\n"
 
 #: shell.c:1737
 msgid "GNU long options:\n"
-msgstr ""
+msgstr "GNU ilgi parametrai:\n"
 
 #: shell.c:1741
 msgid "Shell options:\n"
-msgstr ""
+msgstr "Aplinkos parametrai:\n"
 
 #: shell.c:1742
 msgid "\t-irsD or -c command or -O shopt_option\t\t(invocation only)\n"
-msgstr ""
+msgstr "\t-irsD arba -c komanda arba -O shopt_nustatymas\t\t(tik iškvietimui)\n"
 
 #: shell.c:1757
 #, c-format
 msgid "\t-%s or -o option\n"
-msgstr ""
+msgstr "\t-%s arba -o nustatymas\n"
 
 #: shell.c:1763
-#, c-format
+#, fuzzy, c-format
 msgid "Type `%s -c \"help set\"' for more information about shell options.\n"
-msgstr ""
+msgstr "Bandykite „%s --help“ arba „%s --usage“, jei norite gauti daugiau informacijos.\n"
 
 #: shell.c:1764
-#, c-format
+#, fuzzy, c-format
 msgid "Type `%s -c help' for more information about shell builtin commands.\n"
-msgstr ""
+msgstr "Bandykite „ldd --help“, jei norite daugiau informacijos."
 
 #: shell.c:1765
 msgid "Use the `bashbug' command to report bugs.\n"
-msgstr ""
+msgstr "Naudokite komandą „bashbug“ klaidoms pranešti.\n"
 
 #: sig.c:557
 #, c-format
@@ -1277,12 +1287,12 @@ msgstr "sigprocmask: %d: netaisyklinga operacija"
 #: subst.c:1160
 #, c-format
 msgid "bad substitution: no closing `%s' in %s"
-msgstr ""
+msgstr "blogas keitinys: trūksta „%s“ %s"
 
 #: subst.c:2328
 #, c-format
 msgid "%s: cannot assign list to array member"
-msgstr ""
+msgstr "%s: negalima priskirti sąrašo masyvo elementui"
 
 #: subst.c:4265 subst.c:4281
 msgid "cannot make pipe for process substitution"
@@ -1332,12 +1342,12 @@ msgstr "%s: parametras tuščias arba nenustatytas"
 #: subst.c:5342
 #, c-format
 msgid "%s: substring expression < 0"
-msgstr ""
+msgstr "%s: posekio išraiška < 0"
 
 #: subst.c:6179
 #, c-format
 msgid "%s: bad substitution"
-msgstr ""
+msgstr "%s: blogas keitinys"
 
 #: subst.c:6255
 #, c-format
@@ -1393,7 +1403,7 @@ msgstr "run_pending_traps: bloga trap_list[%d] reikšmė: %p"
 #: trap.c:319
 #, c-format
 msgid "run_pending_traps: signal handler is SIG_DFL, resending %d (%s) to myself"
-msgstr ""
+msgstr "run_pending_traps: signalo doroklė yra SIG_DFL, siunčiamas %d (%s) sau"
 
 #: trap.c:355
 #, c-format
@@ -1408,12 +1418,11 @@ msgstr "klaida importuojant funkcijos apibrėžimą „%s“"
 #: variables.c:711
 #, c-format
 msgid "shell level (%d) too high, resetting to 1"
-msgstr ""
+msgstr "aplinkos lygmuo (%d) per aukštas, nustatoma į 1"
 
 #: variables.c:1670
-#, fuzzy
 msgid "make_local_variable: no function context at current scope"
-msgstr "make_local_variable: "
+msgstr ""
 
 #: variables.c:2813
 msgid "all_local_variables: no function context at current scope"
@@ -1422,12 +1431,12 @@ msgstr ""
 #: variables.c:3030 variables.c:3039
 #, c-format
 msgid "invalid character %d in exportstr for %s"
-msgstr ""
+msgstr "netaisyklingas simbolis %d %s exportstr'e"
 
 #: variables.c:3045
 #, c-format
 msgid "no `=' in exportstr for %s"
-msgstr ""
+msgstr "%s exportstr'e trūksta „=“"
 
 #: variables.c:3472
 msgid "pop_var_context: head of shell_variables not a function context"
@@ -1435,7 +1444,7 @@ msgstr ""
 
 #: variables.c:3485
 msgid "pop_var_context: no global_variables context"
-msgstr ""
+msgstr "pop_var_context: nėra global_variables konteksto"
 
 #: variables.c:3557
 msgid "pop_scope: head of shell_variables not a temporary environment scope"
@@ -1458,7 +1467,7 @@ msgstr "xmalloc: nepavyko išskirti %lu baitų"
 #: xmalloc.c:115
 #, c-format
 msgid "xrealloc: cannot reallocate %lu bytes (%lu bytes allocated)"
-msgstr ""
+msgstr "xrealloc: nepavyko išskirti %lu baitų (išskirta %lu baitų)"
 
 #: xmalloc.c:117
 #, c-format
@@ -1468,7 +1477,7 @@ msgstr "xrealloc: nepavyko išskirti %lu baitų"
 #: xmalloc.c:151
 #, c-format
 msgid "xmalloc: %s:%d: cannot allocate %lu bytes (%lu bytes allocated)"
-msgstr ""
+msgstr "xmalloc: %s:%d: nepavyko išskirti %lu baitų (išskirta %lu baitų)"
 
 #: xmalloc.c:153
 #, c-format
@@ -1478,7 +1487,7 @@ msgstr "xmalloc: %s:%d: nepavyko išskirti %lu baitų"
 #: xmalloc.c:175
 #, c-format
 msgid "xrealloc: %s:%d: cannot reallocate %lu bytes (%lu bytes allocated)"
-msgstr ""
+msgstr "xrealloc: %s:%d: nepavyko išskirti %lu baitų (išskirta %lu baitų)"
 
 #: xmalloc.c:177
 #, c-format
@@ -1494,12 +1503,22 @@ msgid ""
 "    alias substitution when the alias is expanded.  Alias returns\n"
 "    true unless a NAME is given for which no alias has been defined."
 msgstr ""
+"„alias“ be argumentų arba su -p nuostata išspausdina alternatyviųjų\n"
+"    vardų sąrašą formatu VARDAS=REIKŠMĖ į standartinį išvedimą.\n"
+"    Kitu atveju aprašomas alternatyvusis vardas kiekvienam VARDUI,\n"
+"    kurio REIKŠMĖ nurodyta.\n"
+"Jei REIKŠMĖ baigiasi tarpo simboliu, kitame\n"
+"    žodyje ieškoma alternatyviųjų vardų keitinių, kai alternatyvusis vardas\n"
+"    išskleidžiamas.  „alias“ grąžina „true“, nebent duotas VARDAS, kuriam\n"
+"    neaprašytas joks alternatyvusis vardas."
 
 #: builtins.c:257
 msgid ""
 "Remove NAMEs from the list of defined aliases.  If the -a option is given,\n"
 "    then remove all alias definitions."
 msgstr ""
+"Pašalinti VARDUS iš aprašytų alternatyviųjų vardų sąrašo.  Jei nurodyta\n"
+"    nuostata -a, pašalinti visus alternatyviuosius vardus."
 
 #: builtins.c:266
 msgid ""
@@ -1535,12 +1554,16 @@ msgid ""
 "Exit from within a FOR, WHILE or UNTIL loop.  If N is specified,\n"
 "    break N levels."
 msgstr ""
+"Išeiti iš FOR, WHILE arba UNTIL ciklo.  Jei nurodytas N,\n"
+"    išeiti aukštyn per N lygmenų."
 
 #: builtins.c:304
 msgid ""
 "Resume the next iteration of the enclosing FOR, WHILE or UNTIL loop.\n"
 "    If N is specified, resume at the N-th enclosing loop."
 msgstr ""
+"Tęsti kitą FOR, WHILE arba UNTIL ciklo iteraciją.\n"
+"    Jei N nurodytas, tęsti ciklą, esantį N lygmenų virš esamo."
 
 #: builtins.c:311
 msgid ""
@@ -1548,6 +1571,9 @@ msgid ""
 "    shell builtin to be a function, but need the functionality of the\n"
 "    builtin within the function itself."
 msgstr ""
+"Vykdyti aplinkos įtaisytą funkciją.  Ši komanda naudinga, kai norite\n"
+"    vietoje įtaisytos funkcijos naudoti savąją, tačiau reikia\n"
+"    pasinaudoti įtaisytąja šios funkcijos viduje."
 
 #: builtins.c:320
 msgid ""
@@ -1560,6 +1586,14 @@ msgid ""
 "    The value of EXPR indicates how many call frames to go back before the\n"
 "    current one; the top frame is frame 0."
 msgstr ""
+"Grąžina esamos procedūros kontekstą.\n"
+"    \n"
+"    Be IŠRAIŠKOS, grąžina „$eilutė $failo_vardas“.  Su IŠRAIŠKA,\n"
+"    grąžina „$eilutė $procedūra $failo_vardas“; ši papildoma informacija\n"
+"    gali būti panaudota kuriant steko išrašą (stack trace).\n"
+"    \n"
+"    IŠRAIŠKOS reikšmė nurodo, per kiek kvietimo freimų grįžti nuo\n"
+"    esamo; viršutinis freimas yra 0."
 
 #: builtins.c:334
 msgid ""
@@ -1575,6 +1609,17 @@ msgid ""
 "    instead of following symbolic links; the -L option forces symbolic links\n"
 "    to be followed."
 msgstr ""
+"Pakeisti esamą aplanką į DIR.  Kintamasis $HOME yra\n"
+"    numatytasis DIR.  Kintamasis CDPATH nurodo aplankus, kuriuose bus\n"
+"    ieškoma DIR.  Aplankų pavadinimai CDPATH skiriami dvitaškiu (:).\n"
+"    Tuščias aplanko vardas tapatus esamam aplankui, t.y. „.“.\n"
+"    Jei DIR prasideda pasviruoju brūkšniu (/), į CDPATH neatsižvelgiama.\n"
+"    Jei aplankas nerastas ir aplinkos nuostata „cdable_vars“ įjungta,\n"
+"    tada žodis bandomas kaip kintamojo pavadinimas.  Jei kintamasis\n"
+"    turi reikšmę, tada esamas aplankas pakeičiamas į kintamojo reikšmę.\n"
+"    Parametras -P nurodo, kad turi būti naudojama fizinė aplankų struktūra,\n"
+"    užuot sekus simbolines nuorodas; parametras -L nurodo, kad turi būti\n"
+"    sekama simbolinėmis nuorodomis."
 
 #: builtins.c:350
 msgid ""
@@ -1582,18 +1627,21 @@ msgid ""
 "    the physical directory, without any symbolic links; the -L option\n"
 "    makes pwd follow symbolic links."
 msgstr ""
+"Išspausdinti esamą aplanką.  Su parametru -P „pwd“ spausdina\n"
+"    fizinį aplanką, be jokių simbolinių nuorodų; su parametru -L\n"
+"    „pwd“ seka simbolinėmis nuorodomis."
 
 #: builtins.c:358
 msgid "No effect; the command does nothing.  A zero exit code is returned."
-msgstr ""
+msgstr "Jokio efekto; komanda nieko nedaro.  Grąžinamas klaidos kodas 0."
 
 #: builtins.c:364
 msgid "Return a successful result."
-msgstr ""
+msgstr "Grąžinti sėkmingą rezultatą."
 
 #: builtins.c:370
 msgid "Return an unsuccessful result."
-msgstr ""
+msgstr "Grąžinti nesėkmingą rezultatą."
 
 #: builtins.c:376
 msgid ""
@@ -1635,7 +1683,7 @@ msgstr ""
 
 #: builtins.c:416
 msgid "Obsolete.  See `declare'."
-msgstr ""
+msgstr "Pasenusi komanda.  Žr. „declare“."
 
 #: builtins.c:422
 msgid ""
@@ -1643,6 +1691,9 @@ msgid ""
 "    can only be used within a function; it makes the variable NAME\n"
 "    have a visible scope restricted to that function and its children."
 msgstr ""
+"Sukurti vietinį kintamąjį nurodytu PAVADINIMU ir suteikti jam REIKŠMĘ.\n"
+"    „local“ gali būti naudojamas tik funkcijose; jis sukuria kintamąjį,\n"
+"    matomą tik pačioje funkcijoje ir jos dukterinėse funkcijose."
 
 #: builtins.c:431
 msgid ""
@@ -1669,6 +1720,8 @@ msgstr ""
 #: builtins.c:456
 msgid "Output the ARGs.  If -n is specified, the trailing newline is suppressed."
 msgstr ""
+"Išspausdinti ARGUMENTUS.  Jei nurodytas -n, nespausdinamas naujos eilutės\n"
+"    simbolis pabaigoje."
 
 #: builtins.c:463
 msgid ""
@@ -1689,7 +1742,7 @@ msgstr ""
 
 #: builtins.c:481
 msgid "Read ARGs as input to the shell and execute the resulting command(s)."
-msgstr ""
+msgstr "Skaityti ARGUMENTUS kaip aplinkos komandas ir jas vykdyti."
 
 #: builtins.c:487
 msgid ""
@@ -1742,10 +1795,12 @@ msgid ""
 "Exit the shell with a status of N.  If N is omitted, the exit status\n"
 "    is that of the last command executed."
 msgstr ""
+"Išeiti iš aplinkos su klaidos kodu N.  Jei N nenurodytas, išeinant nustatomas\n"
+"    paskutinės vykdytos komandos klaidos kodas."
 
 #: builtins.c:542
 msgid "Logout of a login shell."
-msgstr ""
+msgstr "Atsijungti nuo prisijungimo aplinkos (login shell)."
 
 #: builtins.c:549
 msgid ""
@@ -1936,6 +1991,8 @@ msgid ""
 "Causes a function to exit with the return value specified by N.  If N\n"
 "    is omitted, the return status is that of the last command."
 msgstr ""
+"Išeina iš funkcijos, grąžinama reikšmė N.  Jei N nenurodyta,\n"
+"    grąžinama paskutinės vykdytos komandos reikšmė."
 
 #: builtins.c:764
 msgid ""
@@ -2017,6 +2074,12 @@ msgid ""
 "    tries to unset a variable, and if that fails, then tries to unset a\n"
 "    function.  Some variables cannot be unset; also see readonly."
 msgstr ""
+"Kiekvienam PAVADINIMUi, pašalinti atitinkamą kintamąjį ar funkciją.\n"
+"    Jei nurodytas „-v“, unset veiks tik su kintamaisiais.  Jei nurodytas\n"
+"    „-f“, unset veiks tik su funkcijomis.  Jei nenurodytas nei vienas iš\n"
+"    šių parametrų, unset pirmiausiai bandys pašalinti kintamąjį, ir jei\n"
+"    tai nepasiseks, bandys pašalinti funkciją.  Kai kurie kintamieji negali\n"
+"    būti pašalinti; žr. „readonly“."
 
 #: builtins.c:847
 msgid ""
@@ -2053,6 +2116,10 @@ msgid ""
 "    ARGUMENTS are supplied, they become the positional parameters when\n"
 "    FILENAME is executed."
 msgstr ""
+"Skaityti ir vykdyti komandas iš FAILO ir grįžti.  Keliai\n"
+"    kintamajame $PATH naudojami aplankui, kuriame yra FAILAS, rasti.\n"
+"    Jei nurodyta ARGUMENTŲ, jie tampa poziciniais parametrais iškvietus\n"
+"    FAILĄ."
 
 #: builtins.c:897
 msgid ""
@@ -2060,6 +2127,9 @@ msgid ""
 "    signal.  The `-f' if specified says not to complain about this\n"
 "    being a login shell if it is; just suspend anyway."
 msgstr ""
+"Sustabdyti šios aplinkos darbą, kol bus gautas SIGCONT\n"
+"    signalas.  Jei nurodyta „-f“, nesiskųsti, jei ši aplinka yra prisijungimo\n"
+"    aplinka (login shell) ir sustabdyti ją bet kuriuo atveju."
 
 #: builtins.c:906
 msgid ""
@@ -2315,12 +2385,16 @@ msgid ""
 "Expand and execute COMMANDS as long as the final command in the\n"
 "    `while' COMMANDS has an exit status of zero."
 msgstr ""
+"Išskleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iš\n"
+"    „while“ komandų grąžina klaidos kodą 0."
 
 #: builtins.c:1183
 msgid ""
 "Expand and execute COMMANDS as long as the final command in the\n"
 "    `until' COMMANDS has an exit status which is not zero."
 msgstr ""
+"Išskleisti ir vykdyti KOMANDAS tol, kol galutinė komanda iš\n"
+"    „until“ komandų grąžina klaidos kodą, nelygų 0."
 
 #: builtins.c:1190
 msgid ""
@@ -2328,12 +2402,17 @@ msgid ""
 "    Arguments on the command line along with NAME are passed to the\n"
 "    function as $0 .. $n."
 msgstr ""
+"Sukurti paprastą komandą, iškviečiamą PAVADINIMU, vykdančią KOMANDAS.\n"
+"    Argumentai komandų eilutėje kartu su PAVADINIMU perduodami funkcijai\n"
+"    kaip $0 .. $n."
 
 #: builtins.c:1198
 msgid ""
 "Run a set of commands in a group.  This is one way to redirect an\n"
 "    entire set of commands."
 msgstr ""
+"Vykdyti eilę komandų grupėje.  Tai yra vienas iš būdų nukreipti\n"
+"    visos eilės komandų įvedimą/išvedimą."
 
 #: builtins.c:1205
 msgid ""
@@ -2508,6 +2587,17 @@ msgid ""
 "    If the -v option is supplied, the output is placed into the value of the\n"
 "    shell variable VAR rather than being sent to the standard output."
 msgstr ""
+"printf formatuoja ir spausdina ARGUMENTUS nurodytu FORMATU. FORMATAS\n"
+"    yra simbolių seka, sudaryta iš trijų tipų objektų: paprastų\n"
+"    simbolių, tiesiog nukopijuojamų į standartinį išvedimą,\n"
+"    kaitos sekų, konvertuojamų ir kopijuojamų į standartinį išvedimą,\n"
+"    ir formato specifikacijų, kurių kiekviena išspausdina kitą argumentą.\n"
+"    Be įprastų printf(1) formatų, %b reiškia išplėsti kairinio brūkšnio\n"
+"    („\\“) kaitos sekas atitinkamame argumente, o %q reiškia išvesti\n"
+"    argumentą kabutėse tokia forma, kad rezultatą būtų galima\n"
+"    panaudoti įvedimui.\n"
+"    Jei pateiktas parametras -v, išvedimas įrašomas į aplinkos kintamąjį\n"
+"    KINT, užuot spausdinus į standartinį išvedimą."
 
 #: builtins.c:1396
 msgid ""
@@ -2517,6 +2607,12 @@ msgid ""
 "    reused as input.  The -r option removes a completion specification for\n"
 "    each NAME, or, if no NAMEs are supplied, all completion specifications."
 msgstr ""
+"Kiekvienam VARDUI nurodyti, kaip argumentai turėtų būti užbaigti.\n"
+"    Jei pateiktas -p nustatymas arba nepateikta jokių nustatymų,\n"
+"    spausdinamos esamos užbaigimo specifikacijos tokiu formatu, kad\n"
+"    jas būtų galima panaudoti kaip įvestį.  Nustatymas -r pašalina\n"
+"    užbaigimo specifikaciją kiekvienam VARDUI, arba, jei nenurodyta\n"
+"    VARDO, visas užbaigimo specifikacijas."
 
 #: builtins.c:1408
 msgid ""
@@ -2525,3 +2621,7 @@ msgid ""
 "    If the optional WORD argument is supplied, matches against WORD are\n"
 "    generated."
 msgstr ""
+"Rodyti galimus užbaigimus priklausomai nuo nustatymų.  Naudotina\n"
+"    iš aplinkos funkcijos, generuojančios galimus užbaigimus.\n"
+"    Jei pateiktas nebūtinasis ŽODŽIO argumentas, išvedami įrašai,\n"
+"    atitinkantys ŽODĮ."
index 72ec06a2c1fd8dde92acea5e8ac773e35f1d061b..3efcf32d68e9722024b6ca9d67f9e81b2aa5ac04 100755 (executable)
@@ -1,4 +1,4 @@
-BUILD_DIR=/usr/local/build/bash/bash-current
+BUILD_DIR=/usr/local/build/chet/bash/bash-current
 THIS_SH=$BUILD_DIR/bash
 PATH=$PATH:$BUILD_DIR
 
diff --git a/tests/core b/tests/core
new file mode 100644 (file)
index 0000000..0f50e9d
Binary files /dev/null and b/tests/core differ