From 8bc00d40830dcfe6b7367816e591df04bed3e481 Mon Sep 17 00:00:00 2001 From: Salvatore Filippone Date: Tue, 30 Jan 2007 16:16:13 +0000 Subject: [PATCH] Updated PENV with min/max. Updated docs on utilities. --- base/modules/Makefile | 2 +- base/modules/psb_penv_mod.f90 | 377 +- base/modules/psb_realloc_mod.F90 | 19 +- base/modules/psb_string_mod.f90 | 11 +- docs/pdf/methods.tex | 15 +- docs/pdf/penv.tex | 94 +- docs/pdf/userguide.tex | 5 +- docs/pdf/util.tex | 142 + docs/userguide.pdf | 11526 +++++++++++++++++------------ util/psb_hbio_mod.f90 | 24 +- util/psb_mmio_mod.f90 | 24 +- 11 files changed, 7340 insertions(+), 4899 deletions(-) diff --git a/base/modules/Makefile b/base/modules/Makefile index 40f8934d..fb3135b3 100644 --- a/base/modules/Makefile +++ b/base/modules/Makefile @@ -20,7 +20,7 @@ INCDIRS = -I . psb_realloc_mod.o : psb_error_mod.o psb_spmat_type.o : psb_realloc_mod.o psb_error_mod.o psb_const_mod.o psb_string_mod.o psb_error_mod.o: psb_const_mod.o -psb_penv_mod.o: psb_const_mod.o psb_error_mod.o +psb_penv_mod.o: psb_const_mod.o psb_error_mod.o psb_realloc_mod.o psi_mod.o: psb_penv_mod.o psb_error_mod.o psb_desc_type.o psb_desc_type.o: psb_const_mod.o psb_error_mod.o psb_penv_mod.o psb_check_mod.o: psb_desc_type.o diff --git a/base/modules/psb_penv_mod.f90 b/base/modules/psb_penv_mod.f90 index 02ff49c8..b8e57c58 100644 --- a/base/modules/psb_penv_mod.f90 +++ b/base/modules/psb_penv_mod.f90 @@ -77,6 +77,17 @@ module psb_penv_mod & psb_hrcvs, psb_lrcvs end interface + interface psb_max + module procedure psb_imaxs, psb_imaxv, psb_imaxm,& + & psb_dmaxs, psb_dmaxv, psb_dmaxm + end interface + + + interface psb_min + module procedure psb_imins, psb_iminv, psb_iminm,& + & psb_dmins, psb_dminv, psb_dminm + end interface + interface psb_amx module procedure psb_iamxs, psb_iamxv, psb_iamxm,& @@ -96,7 +107,6 @@ module psb_penv_mod & psb_zsums, psb_zsumv, psb_zsumm end interface - interface gebs2d module procedure igebs2ds, igebs2dv, igebs2dm,& @@ -482,6 +492,371 @@ contains end subroutine psb_lbcasts + + subroutine psb_imaxs(ictxt,dat,root) + use mpi + integer, intent(in) :: ictxt + integer, intent(inout) :: dat + integer, intent(in), optional :: root + integer :: root_, dat_ + integer :: iam, np, icomm + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call mpi_allreduce(dat,dat_,1,mpi_integer,mpi_max,icomm) + dat = dat_ + else + call mpi_reduce(dat,dat_,1,mpi_integer,mpi_max,root_,icomm) + dat = dat_ + endif + end subroutine psb_imaxs + subroutine psb_imaxv(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + integer, intent(inout) :: dat(:) + integer, intent(in), optional :: root + integer :: root_ + integer, allocatable :: dat_(:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat),dat_,info) + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_integer,mpi_max,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat),dat_,info) + call mpi_reduce(dat_,dat,size(dat),mpi_integer,mpi_max,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_integer,mpi_max,root_,icomm) + end if + endif + end subroutine psb_imaxv + subroutine psb_imaxm(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + integer, intent(inout) :: dat(:,:) + integer, intent(in), optional :: root + integer :: root_ + integer, allocatable :: dat_(:,:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_integer,mpi_max,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + call mpi_reduce(dat_,dat,size(dat),mpi_integer,mpi_max,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_integer,mpi_max,root_,icomm) + end if + endif + end subroutine psb_imaxm + + subroutine psb_dmaxs(ictxt,dat,root) + use mpi + integer, intent(in) :: ictxt + real(kind(1.d0)), intent(inout) :: dat + integer, intent(in), optional :: root + integer :: root_ + real(kind(1.d0)) :: dat_ + integer :: iam, np, icomm + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call mpi_allreduce(dat,dat_,1,mpi_double_precision,mpi_max,icomm) + dat = dat_ + else + call mpi_reduce(dat,dat_,1,mpi_double_precision,mpi_max,root_,icomm) + dat = dat_ + endif + end subroutine psb_dmaxs + subroutine psb_dmaxv(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + real(kind(1.d0)), intent(inout) :: dat(:) + integer, intent(in), optional :: root + integer :: root_ + real(kind(1.d0)), allocatable :: dat_(:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat),dat_,info) + dat_ = dat + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_double_precision,mpi_max,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat),dat_,info) + dat_ = dat + call mpi_reduce(dat_,dat,size(dat),mpi_double_precision,mpi_max,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_double_precision,mpi_max,root_,icomm) + end if + endif + end subroutine psb_dmaxv + subroutine psb_dmaxm(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + real(kind(1.d0)), intent(inout) :: dat(:,:) + integer, intent(in), optional :: root + integer :: root_ + real(kind(1.d0)), allocatable :: dat_(:,:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + dat_ = dat + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_double_precision,mpi_max,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + dat_ = dat + call mpi_reduce(dat_,dat,size(dat),mpi_double_precision,mpi_max,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_double_precision,mpi_max,root_,icomm) + end if + endif + end subroutine psb_dmaxm + + + subroutine psb_imins(ictxt,dat,root) + use mpi + integer, intent(in) :: ictxt + integer, intent(inout) :: dat + integer, intent(in), optional :: root + integer :: root_, dat_ + integer :: iam, np, icomm + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call mpi_allreduce(dat,dat_,1,mpi_integer,mpi_min,icomm) + dat = dat_ + else + call mpi_reduce(dat,dat_,1,mpi_integer,mpi_min,root_,icomm) + dat = dat_ + endif + end subroutine psb_imins + subroutine psb_iminv(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + integer, intent(inout) :: dat(:) + integer, intent(in), optional :: root + integer :: root_ + integer, allocatable :: dat_(:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat),dat_,info) + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_integer,mpi_min,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat),dat_,info) + call mpi_reduce(dat_,dat,size(dat),mpi_integer,mpi_min,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_integer,mpi_min,root_,icomm) + end if + endif + end subroutine psb_iminv + subroutine psb_iminm(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + integer, intent(inout) :: dat(:,:) + integer, intent(in), optional :: root + integer :: root_ + integer, allocatable :: dat_(:,:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_integer,mpi_min,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + call mpi_reduce(dat_,dat,size(dat),mpi_integer,mpi_min,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_integer,mpi_min,root_,icomm) + end if + endif + end subroutine psb_iminm + + subroutine psb_dmins(ictxt,dat,root) + use mpi + integer, intent(in) :: ictxt + real(kind(1.d0)), intent(inout) :: dat + integer, intent(in), optional :: root + integer :: root_ + real(kind(1.d0)) :: dat_ + integer :: iam, np, icomm + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call mpi_allreduce(dat,dat_,1,mpi_double_precision,mpi_min,icomm) + dat = dat_ + else + call mpi_reduce(dat,dat_,1,mpi_double_precision,mpi_min,root_,icomm) + dat = dat_ + endif + end subroutine psb_dmins + subroutine psb_dminv(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + real(kind(1.d0)), intent(inout) :: dat(:) + integer, intent(in), optional :: root + integer :: root_ + real(kind(1.d0)), allocatable :: dat_(:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat),dat_,info) + dat_ = dat + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_double_precision,mpi_min,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat),dat_,info) + dat_ = dat + call mpi_reduce(dat_,dat,size(dat),mpi_double_precision,mpi_min,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_double_precision,mpi_min,root_,icomm) + end if + endif + end subroutine psb_dminv + subroutine psb_dminm(ictxt,dat,root) + use mpi + use psb_realloc_mod + integer, intent(in) :: ictxt + real(kind(1.d0)), intent(inout) :: dat(:,:) + integer, intent(in), optional :: root + integer :: root_ + real(kind(1.d0)), allocatable :: dat_(:,:) + integer :: iam, np, icomm, info + + + call psb_info(ictxt,iam,np) + call psb_get_mpicomm(ictxt,icomm) + + if (present(root)) then + root_ = root + else + root_ = -1 + endif + if (root_ == -1) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + dat_ = dat + if (info ==0) call mpi_allreduce(dat_,dat,size(dat),mpi_double_precision,mpi_min,icomm) + else + if (iam==root_) then + call psb_realloc(size(dat,1),size(dat,2),dat_,info) + dat_ = dat + call mpi_reduce(dat_,dat,size(dat),mpi_double_precision,mpi_min,root_,icomm) + else + call mpi_reduce(dat,dat_,size(dat),mpi_double_precision,mpi_min,root_,icomm) + end if + endif + end subroutine psb_dminm + + subroutine psb_iamxs(ictxt,dat,root,ia) integer, intent(in) :: ictxt integer, intent(inout) :: dat diff --git a/base/modules/psb_realloc_mod.F90 b/base/modules/psb_realloc_mod.F90 index e159d9cb..fec8559d 100644 --- a/base/modules/psb_realloc_mod.F90 +++ b/base/modules/psb_realloc_mod.F90 @@ -75,8 +75,8 @@ Contains use psb_error_mod ! ...Subroutine Arguments - Integer,allocatable,intent(in) :: vin(:) - Integer,allocatable,intent(out) :: vout(:) + Integer,allocatable, intent(in) :: vin(:) + Integer,allocatable, intent(out) :: vout(:) integer :: info ! ...Local Variables @@ -122,7 +122,8 @@ Contains use psb_error_mod ! ...Subroutine Arguments - Integer,allocatable :: vin(:,:),vout(:,:) + Integer, allocatable, intent(in) :: vin(:,:) + Integer, allocatable, intent(out) :: vout(:,:) integer :: info ! ...Local Variables @@ -170,7 +171,8 @@ Contains use psb_error_mod ! ...Subroutine Arguments - real(kind(1.d0)),allocatable :: vin(:),vout(:) + real(kind(1.d0)), allocatable, intent(in) :: vin(:) + real(kind(1.d0)), allocatable, intent(out) :: vout(:) integer :: info ! ...Local Variables @@ -216,7 +218,8 @@ Contains use psb_error_mod ! ...Subroutine Arguments - real(kind(1.d0)),allocatable :: vin(:,:),vout(:,:) + real(kind(1.d0)), allocatable, intent(in) :: vin(:,:) + real(kind(1.d0)), allocatable, intent(out) :: vout(:,:) integer :: info ! ...Local Variables @@ -264,7 +267,8 @@ Contains use psb_error_mod ! ...Subroutine Arguments - complex(kind(1.d0)),allocatable :: vin(:),vout(:) + complex(kind(1.d0)), allocatable, intent(in) :: vin(:) + complex(kind(1.d0)), allocatable, intent(out) :: vout(:) integer :: info ! ...Local Variables @@ -310,7 +314,8 @@ Contains use psb_error_mod ! ...Subroutine Arguments - complex(kind(1.d0)),allocatable :: vin(:,:),vout(:,:) + complex(kind(1.d0)), allocatable, intent(in) :: vin(:,:) + complex(kind(1.d0)), allocatable, intent(out) :: vout(:,:) integer :: info ! ...Local Variables diff --git a/base/modules/psb_string_mod.f90 b/base/modules/psb_string_mod.f90 index c55e28bf..7a02a6e3 100644 --- a/base/modules/psb_string_mod.f90 +++ b/base/modules/psb_string_mod.f90 @@ -30,6 +30,7 @@ !!$ module psb_string_mod + public tolower, toupper, touppers interface tolower module procedure tolowerc end interface @@ -42,13 +43,15 @@ module psb_string_mod module procedure sub_toupperc end interface + private + character(len=*), parameter :: lcase='abcdefghijklmnopqrstuvwxyz' + character(len=*), parameter :: ucase='ABCDEFGHIJKLMNOPQRSTUVWXYZ' + contains function tolowerc(string) character(len=*), intent(in) :: string character(len=len(string)) :: tolowerc - character(len=*), parameter :: lcase='abcdefghijklmnopqrstuvwxyz' - character(len=*), parameter :: ucase='ABCDEFGHIJKLMNOPQRSTUVWXYZ' integer :: i,k do i=1,len(string) @@ -64,8 +67,6 @@ contains function toupperc(string) character(len=*), intent(in) :: string character(len=len(string)) :: toupperc - character(len=*), parameter :: lcase='abcdefghijklmnopqrstuvwxyz' - character(len=*), parameter :: ucase='ABCDEFGHIJKLMNOPQRSTUVWXYZ' integer :: i,k do i=1,len(string) @@ -81,8 +82,6 @@ contains subroutine sub_toupperc(string,strout) character(len=*), intent(in) :: string character(len=*), intent(out) :: strout - character(len=*), parameter :: lcase='abcdefghijklmnopqrstuvwxyz' - character(len=*), parameter :: ucase='ABCDEFGHIJKLMNOPQRSTUVWXYZ' integer :: i,k do i=1,len(string) diff --git a/docs/pdf/methods.tex b/docs/pdf/methods.tex index 1280eb96..bb7db557 100644 --- a/docs/pdf/methods.tex +++ b/docs/pdf/methods.tex @@ -17,10 +17,12 @@ the Krylov-Subspace family methods implemented in PSBLAS-2.0. The stopping criterion is the normwise backward error, in the infinity norm, i.e. the iteration is stopped when -\[ \frac{\|r\|}{(\|A\|\|x\|+\|b\|)} < eps \] -or -\[ \frac{\|r_i\|}{\|b\|_2} < eps \] -according to the value passed through the istop argument (see later). +\[ err = \frac{\|r_i\|}{(\|A\|\|x_i\|+\|b\|)} < eps \] +or the 2-norm residual reduction +\[ err = \frac{\|r_i\|}{\|b\|_2} < eps \] +according to the value passed through the istop argument (see +later). In the above formulae, $x_i$ is the tentative solution and +$r_i=b-Ax_i$ the corresponding residual at the $i$-th iteration. \syntax{call psb\_krylov}{method,a,prec,b,x,eps,desc\_a,info,itmax,iter,err,itrace,istop} @@ -74,8 +76,9 @@ Scope: {\bf global} \\ Type: {\bf optional}\\ \item[istop] An integer specifying the stopping criterion.\\ Scope: {\bf global} \\ -Type: {\bf optional}\\ - +Type: {\bf optional}.\\ +Values: 1: use the normwise backward error, 2: use the scaled 2-norm +of the residual. Default: 1. \item[\bf On Return] \item[x] The computed solution. \\ Scope: {\bf local} \\ diff --git a/docs/pdf/penv.tex b/docs/pdf/penv.tex index da5237d7..bcd20eb0 100644 --- a/docs/pdf/penv.tex +++ b/docs/pdf/penv.tex @@ -292,6 +292,96 @@ Type, rank and size must agree on all processes. +\subroutine{psb\_max}{Global maximum} + +\syntax{call psb\_max}{icontxt, dat, root} + +This subroutine implements a maximum valuereduction +operation based on the underlying communication library. +\begin{description} +\item[\bf On Entry ] +\item[icontxt] the communication context identifying the virtual + parallel machine.\\ +Scope:{\bf global}.\\ +Type:{\bf required}.\\ +Specified as: an integer variable. +\item[dat] The local contribution to the global maximum.\\ +Scope:{\bf local}.\\ +Type:{\bf required}.\\ +Specified as: an integer or real variable, which may be a +scalar, or a rank 1 or 2 array. \ +Type, rank and size must agree on all processes. +\item[root] Process to hold the final maximum, or $-1$ to make it available + on all processes.\\ +Scope:{\bf global}.\\ +Type:{\bf optional}.\\ +Specified as: an integer value $-1<= root <= np-1$, default -1. \\ +\end{description} + + +\begin{description} +\item[\bf On Return] +\item[dat] On destination process(es), the result of the maximum operation.\\ +Scope:{\bf global}.\\ +Type:{\bf required}.\\ +Specified as: an integer or real variable, which may be a +scalar, or a rank 1 or 2 array. \ +Type, rank and size must agree on all processes. +\end{description} + + +\section*{Notes} +\begin{enumerate} +\item The \verb|dat| argument is both input and output, and its + value may be changed even on processes different from the final + result destination. +\end{enumerate} + +\subroutine{psb\_min}{Global minimum} + +\syntax{call psb\_min}{icontxt, dat, root} + +This subroutine implements a minimum value reduction +operation based on the underlying communication library. +\begin{description} +\item[\bf On Entry ] +\item[icontxt] the communication context identifying the virtual + parallel machine.\\ +Scope:{\bf global}.\\ +Type:{\bf required}.\\ +Specified as: an integer variable. +\item[dat] The local contribution to the global minimum.\\ +Scope:{\bf local}.\\ +Type:{\bf required}.\\ +Specified as: an integer or real variable, which may be a +scalar, or a rank 1 or 2 array. \ +Type, rank and size must agree on all processes. +\item[root] Process to hold the final value, or $-1$ to make it available + on all processes.\\ +Scope:{\bf global}.\\ +Type:{\bf optional}.\\ +Specified as: an integer value $-1<= root <= np-1$, default -1. \\ +\end{description} + + +\begin{description} +\item[\bf On Return] +\item[dat] On destination process(es), the result of the minimum operation.\\ +Scope:{\bf global}.\\ +Type:{\bf required}.\\ +Specified as: an integer or real variable, which may be a +scalar, or a rank 1 or 2 array. \\ +Type, rank and size must agree on all processes. +\end{description} + + +\section*{Notes} +\begin{enumerate} +\item The \verb|dat| argument is both input and output, and its + value may be changed even on processes different from the final + result destination. +\end{enumerate} + \subroutine{psb\_amx}{Global maximum absolute value} \syntax{call psb\_amx}{icontxt, dat, root} @@ -311,7 +401,7 @@ Type:{\bf required}.\\ Specified as: an integer, real or complex variable, which may be a scalar, or a rank 1 or 2 array. \ Type, rank and size must agree on all processes. -\item[root] Process to hold the final sum, or $-1$ to make it available +\item[root] Process to hold the final value, or $-1$ to make it available on all processes.\\ Scope:{\bf global}.\\ Type:{\bf optional}.\\ @@ -356,7 +446,7 @@ Type:{\bf required}.\\ Specified as: an integer, real or complex variable, which may be a scalar, or a rank 1 or 2 array. \ Type, rank and size must agree on all processes. -\item[root] Process to hold the final sum, or $-1$ to make it available +\item[root] Process to hold the final value, or $-1$ to make it available on all processes.\\ Scope:{\bf global}.\\ Type:{\bf optional}.\\ diff --git a/docs/pdf/userguide.tex b/docs/pdf/userguide.tex index 753b3b18..fd083f35 100644 --- a/docs/pdf/userguide.tex +++ b/docs/pdf/userguide.tex @@ -35,7 +35,9 @@ \newcounter{subroutine}[subsection] \newcounter{example}[subroutine] -\newcommand{\subroutine}[2]{\clearpage% +\makeatletter +\def\subroutine{\@ifstar{\@subroutine}{\clearpage\@subroutine}}% +\def\@subroutine#1#2{% \stepcounter{subroutine}% \section*{\flushleft #1---#2 \endflushleft}% \addcontentsline{toc}{subsection}{#1}% @@ -47,7 +49,6 @@ \markright{#1}}% \newcommand{\examplename}{Example} \newcommand{\syntaxname}{Syntax} -\makeatletter \def\syntax{\@ifstar{\@ssyntax}{\@syntax}}% \def\@syntax{\section*{\syntaxname}% \@ssyntax}% diff --git a/docs/pdf/util.tex b/docs/pdf/util.tex index c3b50c0c..0de9006b 100644 --- a/docs/pdf/util.tex +++ b/docs/pdf/util.tex @@ -2,6 +2,148 @@ \label{sec:util} +\subroutine{PSB\_HBIO\_MOD}{Input/Output in Harwell-Boeing format} + +\subroutine*{hb\_read}{Read a sparse matrix from a file} +\syntax{call hb\_read}{a, iret, iunit, filename, b, mtitle} + +\begin{description} +\item[\bf On Entry ] +\item[filename] The name of the file to be read.\\ +Type:{\bf optional}.\\ +Specified as: a character variable containing a valid file name, or +\verb|-|, in which case the default input unit 5 (i.e. standard input +in Unix jargon) is used. Default: \verb|-|. +\item[iunit] The Fortran file unit number.\\ +Type:{\bf optional}.\\ +Specified as: an integer value. Only meaningful if filename is not \verb|-|. +\end{description} + +\begin{description} +\item[\bf On Return] +\item[a] the sparse matrix read from file.\\ +Type:{\bf required}.\\ +Specified as: a structured data of type \spdata. +\item[b] Rigth hand side.\\ +Type: {\bf Optional} \\ +An array of type real or complex, rank 1 and having the ALLOCATABLE +attribute; will be allocated and filled in if the input file contains +a right hand side. +\item[mtitle] Matrix title.\\ +Type: {\bf Optional} \\ +A charachter variable of length 72 holding a copy of the +matrix title as specified by the Harwell-Boeing format and contained +in the input file. +\item[iret] Error code.\\ +Type: {\bf required} \\ +An integer value; 0 means no error has been detected. +\end{description} + + + +\subroutine*{hb\_write}{Write a sparse matrix to a file} +\syntax{call hb\_write}{a, iret, iunit, filename, key, rhs, mtitle} + + + +\begin{description} +\item[\bf On Entry ] +\item[a] the sparse matrix to be written.\\ +Type:{\bf required}.\\ +Specified as: a structured data of type \spdata. +\item[b] Rigth hand side.\\ +Type: {\bf Optional} \\ +An array of type real or complex, rank 1 and having the ALLOCATABLE +attribute; will be allocated and filled in if the input file contains +a right hand side. +\item[filename] The name of the file to be written to.\\ +Type:{\bf optional}.\\ +Specified as: a character variable containing a valid file name, or +\verb|-|, in which case the default output unit 6 (i.e. standard output +in Unix jargon) is used. Default: \verb|-|. +\item[iunit] The Fortran file unit number.\\ +Type:{\bf optional}.\\ +Specified as: an integer value. Only meaningful if filename is not \verb|-|. +\item[key] Matrix key.\\ +Type: {\bf Optional} \\ +A charachter variable of length 8 holding the +matrix key as specified by the Harwell-Boeing format and to be +written to file. +\item[mtitle] Matrix title.\\ +Type: {\bf Optional} \\ +A charachter variable of length 72 holding the +matrix title as specified by the Harwell-Boeing format and to be +written to file. +\end{description} + +\begin{description} +\item[\bf On Return] +\item[iret] Error code.\\ +Type: {\bf required} \\ +An integer value; 0 means no error has been detected. +\end{description} + + + + +\subroutine{PSB\_MMIO\_MOD}{Input/Output in MatrixMarket format} + +\subroutine*{mm\_mat\_read}{Read a sparse matrix from a file} +\syntax{call mm\_mat\_read}{a, iret, iunit, filename} + +\begin{description} +\item[\bf On Entry ] +\item[filename] The name of the file to be read.\\ +Type:{\bf optional}.\\ +Specified as: a character variable containing a valid file name, or +\verb|-|, in which case the default input unit 5 (i.e. standard input +in Unix jargon) is used. Default: \verb|-|. +\item[iunit] The Fortran file unit number.\\ +Type:{\bf optional}.\\ +Specified as: an integer value. Only meaningful if filename is not \verb|-|. +\end{description} + +\begin{description} +\item[\bf On Return] +\item[a] the sparse matrix read from file.\\ +Type:{\bf required}.\\ +Specified as: a structured data of type \spdata. +\item[iret] Error code.\\ +Type: {\bf required} \\ +An integer value; 0 means no error has been detected. +\end{description} + + + +\subroutine*{mm\_mat\_write}{Write a sparse matrix to a file} +\syntax{call mm\_mat\_write}{a, mtitle, iret, iunit, filename} +\begin{description} +\item[\bf On Entry ] +\item[a] the sparse matrix to be written.\\ +Type:{\bf required}.\\ +Specified as: a structured data of type \spdata. +\item[mtitle] Matrix title.\\ +Type: {\bf required} \\ +A charachter variable holding a descriptive title for the matrix to be + written to file. +\item[filename] The name of the file to be written to.\\ +Type:{\bf optional}.\\ +Specified as: a character variable containing a valid file name, or +\verb|-|, in which case the default output unit 6 (i.e. standard output +in Unix jargon) is used. Default: \verb|-|. +\item[iunit] The Fortran file unit number.\\ +Type:{\bf optional}.\\ +Specified as: an integer value. Only meaningful if filename is not \verb|-|. +\end{description} + +\begin{description} +\item[\bf On Return] +\item[iret] Error code.\\ +Type: {\bf required} \\ +An integer value; 0 means no error has been detected. +\end{description} + + %%% Local Variables: %%% mode: latex diff --git a/docs/userguide.pdf b/docs/userguide.pdf index 20c75558..2e6811e2 100644 --- a/docs/userguide.pdf +++ b/docs/userguide.pdf @@ -429,114 +429,162 @@ endobj << /S /GoTo /D (section*.129) >> endobj 292 0 obj -(psb\137amx) +(psb\137max) endobj 293 0 obj << /S /GoTo /D (section*.132) >> endobj 296 0 obj -(psb\137amn) +(psb\137min) endobj 297 0 obj << /S /GoTo /D (section*.135) >> endobj 300 0 obj -(psb\137snd) +(psb\137amx) endobj 301 0 obj -<< /S /GoTo /D (section*.137) >> +<< /S /GoTo /D (section*.138) >> endobj 304 0 obj -(psb\137rcv) +(psb\137amn) endobj 305 0 obj -<< /S /GoTo /D (section.8) >> +<< /S /GoTo /D (section*.141) >> endobj 308 0 obj -(8 Error handling) +(psb\137snd) endobj 309 0 obj -<< /S /GoTo /D (section*.139) >> +<< /S /GoTo /D (section*.143) >> endobj 312 0 obj -(psb\137errpush) +(psb\137rcv) endobj 313 0 obj -<< /S /GoTo /D (section*.141) >> +<< /S /GoTo /D (section.8) >> endobj 316 0 obj -(psb\137error) +(8 Error handling) endobj 317 0 obj -<< /S /GoTo /D (section*.143) >> +<< /S /GoTo /D (section*.145) >> endobj 320 0 obj -(psb\137set\137errverbosity) +(psb\137errpush) endobj 321 0 obj -<< /S /GoTo /D (section*.145) >> +<< /S /GoTo /D (section*.147) >> endobj 324 0 obj -(psb\137set\137erraction) +(psb\137error) endobj 325 0 obj -<< /S /GoTo /D (section*.147) >> +<< /S /GoTo /D (section*.149) >> endobj 328 0 obj -(psb\137errcomm) +(psb\137set\137errverbosity) endobj 329 0 obj -<< /S /GoTo /D (section.9) >> +<< /S /GoTo /D (section*.151) >> endobj 332 0 obj -(9 Utilities) +(psb\137set\137erraction) endobj 333 0 obj -<< /S /GoTo /D (section.10) >> +<< /S /GoTo /D (section*.153) >> endobj 336 0 obj -(10 Preconditioner routines) +(psb\137errcomm) endobj 337 0 obj -<< /S /GoTo /D (section*.149) >> +<< /S /GoTo /D (section.9) >> endobj 340 0 obj -(psb\137precset) +(9 Utilities) endobj 341 0 obj -<< /S /GoTo /D (section*.152) >> +<< /S /GoTo /D (section*.155) >> endobj 344 0 obj -(psb\137precbld) +(PSB\137HBIO\137MOD) endobj 345 0 obj -<< /S /GoTo /D (section*.154) >> +<< /S /GoTo /D (section*.156) >> endobj 348 0 obj -(psb\137precaply) +(hb\137read) endobj 349 0 obj -<< /S /GoTo /D (section*.156) >> +<< /S /GoTo /D (section*.158) >> endobj 352 0 obj -(psb\137prec\137descr) +(hb\137write) endobj 353 0 obj -<< /S /GoTo /D (section.11) >> +<< /S /GoTo /D (section*.160) >> endobj 356 0 obj -(11 Iterative Methods) +(PSB\137MMIO\137MOD) endobj 357 0 obj -<< /S /GoTo /D (section*.158) >> +<< /S /GoTo /D (section*.161) >> endobj 360 0 obj -(psb\137krylov ) +(mm\137mat\137read) endobj 361 0 obj -<< /S /GoTo /D [362 0 R /Fit ] >> +<< /S /GoTo /D (section*.163) >> +endobj +364 0 obj +(mm\137mat\137write) +endobj +365 0 obj +<< /S /GoTo /D (section.10) >> +endobj +368 0 obj +(10 Preconditioner routines) +endobj +369 0 obj +<< /S /GoTo /D (section*.165) >> +endobj +372 0 obj +(psb\137precset) +endobj +373 0 obj +<< /S /GoTo /D (section*.168) >> +endobj +376 0 obj +(psb\137precbld) +endobj +377 0 obj +<< /S /GoTo /D (section*.170) >> +endobj +380 0 obj +(psb\137precaply) +endobj +381 0 obj +<< /S /GoTo /D (section*.172) >> endobj -364 0 obj << +384 0 obj +(psb\137prec\137descr) +endobj +385 0 obj +<< /S /GoTo /D (section.11) >> +endobj +388 0 obj +(11 Iterative Methods) +endobj +389 0 obj +<< /S /GoTo /D (section*.174) >> +endobj +392 0 obj +(psb\137krylov ) +endobj +393 0 obj +<< /S /GoTo /D [394 0 R /Fit ] >> +endobj +396 0 obj << /Length 1178 >> stream @@ -582,7 +630,7 @@ ET 0 g 0 G 1 0 0 1 -350.8992 -402.6932 cm BT -/F29 9.9626 Tf 355.8805 402.6932 Td[(b)32(y)-383(Sal)-1(v)64(ator)1(e)-384(Fili)-1(pp)-32(on)1(e)]TJ 12.8891 -18.5969 Td[(and)-383(A)-1(lfredo)-383(Butt)-1(ar)1(i)]TJ/F8 9.9626 Tf -131.2795 -25.2387 Td[(\134T)83(or)-333(V)83(ergata")-333(Un)1(iv)28(e)-1(r)1(s)-1(it)28(y)-333(of)-333(Rome)-1(.)-444(Jan)28(u)1(ary)-333(26,)-333(2007)]TJ +/F29 9.9626 Tf 355.8805 402.6932 Td[(b)32(y)-383(Sal)-1(v)64(ator)1(e)-384(Fili)-1(pp)-32(on)1(e)]TJ 12.8891 -18.5969 Td[(and)-383(A)-1(lfredo)-383(Butt)-1(ar)1(i)]TJ/F8 9.9626 Tf -131.2795 -25.2387 Td[(\134T)83(or)-333(V)83(ergata")-333(Un)1(iv)28(e)-1(r)1(s)-1(it)28(y)-333(of)-333(Rome)-1(.)-444(Jan)28(u)1(ary)-333(30,)-333(2007)]TJ ET 1 0 0 1 99.8954 90.4377 cm 0 g 0 G @@ -590,27 +638,27 @@ ET 0 g 0 G endstream endobj -362 0 obj << +394 0 obj << /Type /Page -/Contents 364 0 R -/Resources 363 0 R +/Contents 396 0 R +/Resources 395 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 379 0 R +/Parent 411 0 R >> endobj -365 0 obj << -/D [362 0 R /XYZ 99.8954 740.9981 null] +397 0 obj << +/D [394 0 R /XYZ 99.8954 740.9981 null] >> endobj -366 0 obj << -/D [362 0 R /XYZ 99.8954 716.0915 null] +398 0 obj << +/D [394 0 R /XYZ 99.8954 716.0915 null] >> endobj 6 0 obj << -/D [362 0 R /XYZ 99.8954 716.0915 null] +/D [394 0 R /XYZ 99.8954 716.0915 null] >> endobj -363 0 obj << -/Font << /F18 369 0 R /F20 372 0 R /F29 375 0 R /F8 378 0 R >> +395 0 obj << +/Font << /F18 401 0 R /F20 404 0 R /F29 407 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -382 0 obj << +414 0 obj << /Length 31887 >> stream @@ -2016,327 +2064,327 @@ ET 0 g 0 G endstream endobj -381 0 obj << +413 0 obj << /Type /Page -/Contents 382 0 R -/Resources 380 0 R +/Contents 414 0 R +/Resources 412 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 379 0 R -/Annots [ 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R ] +/Parent 411 0 R +/Annots [ 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R ] >> endobj -385 0 obj << +417 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [98.8991 682.7908 179.0012 691.7018] /Subtype /Link /A << /S /GoTo /D (section.1) >> >> endobj -386 0 obj << +418 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [98.8991 660.4491 202.863 669.3601] /Subtype /Link /A << /S /GoTo /D (section.2) >> >> endobj -387 0 obj << +419 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 648.2395 225.8677 657.1506] /Subtype /Link /A << /S /GoTo /D (subsection.2.1) >> >> endobj -388 0 obj << +420 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 634.0928 210.6746 644.941] /Subtype /Link /A << /S /GoTo /D (subsection.2.2) >> >> endobj -389 0 obj << +421 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 621.8833 232.122 632.7315] /Subtype /Link /A << /S /GoTo /D (subsection.2.3) >> >> endobj -390 0 obj << +422 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 609.6738 227.7773 620.522] /Subtype /Link /A << /S /GoTo /D (subsection.2.4) >> >> endobj -391 0 obj << +423 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [98.8991 589.2692 196.3402 598.0972] /Subtype /Link /A << /S /GoTo /D (section.3) >> >> endobj -392 0 obj << +424 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 575.1225 249.529 585.9707] /Subtype /Link /A << /S /GoTo /D (subsection.3.1) >> >> endobj -393 0 obj << +425 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 564.8501 248.2283 573.7611] /Subtype /Link /A << /S /GoTo /D (subsubsection.3.1.1) >> >> endobj -394 0 obj << +426 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 550.7034 265.7183 561.5516] /Subtype /Link /A << /S /GoTo /D (subsection.3.2) >> >> endobj -395 0 obj << +427 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 540.4311 248.2283 549.3421] /Subtype /Link /A << /S /GoTo /D (subsubsection.3.2.1) >> >> endobj -396 0 obj << +428 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 528.2215 268.0153 537.1325] /Subtype /Link /A << /S /GoTo /D (subsection.3.3) >> >> endobj -397 0 obj << +429 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 514.0748 268.9008 524.8123] /Subtype /Link /A << /S /GoTo /D (subsection.3.4) >> >> endobj -398 0 obj << +430 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 501.8653 231.2752 512.7135] /Subtype /Link /A << /S /GoTo /D (section*.2) >> >> endobj -399 0 obj << +431 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 489.6557 227.6499 500.504] /Subtype /Link /A << /S /GoTo /D (section*.4) >> >> endobj -400 0 obj << +432 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 477.4462 237.0868 488.2944] /Subtype /Link /A << /S /GoTo /D (section*.6) >> >> endobj -401 0 obj << +433 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 465.2367 215.9825 476.0849] /Subtype /Link /A << /S /GoTo /D (section*.8) >> >> endobj -402 0 obj << +434 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 453.0272 212.5232 463.8754] /Subtype /Link /A << /S /GoTo /D (section*.10) >> >> endobj -403 0 obj << +435 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 440.8176 208.898 451.6658] /Subtype /Link /A << /S /GoTo /D (section*.12) >> >> endobj -404 0 obj << +436 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [136.7572 428.6081 219.9952 439.4563] /Subtype /Link /A << /S /GoTo /D (section*.14) >> >> endobj -405 0 obj << +437 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [98.8991 406.2663 235.0283 417.1145] /Subtype /Link /A << /S /GoTo /D (section.4) >> >> endobj -406 0 obj << +438 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 394.0568 170.1211 404.905] /Subtype /Link /A << /S /GoTo /D (section*.17) >> >> endobj -407 0 obj << +439 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 381.8473 158.2212 392.6955] /Subtype /Link /A << /S /GoTo /D (section*.19) >> >> endobj -408 0 obj << +440 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 369.6377 162.1509 380.4859] /Subtype /Link /A << /S /GoTo /D (section*.21) >> >> endobj -409 0 obj << +441 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 357.4282 167.3537 368.2764] /Subtype /Link /A << /S /GoTo /D (section*.23) >> >> endobj -410 0 obj << +442 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 345.2187 171.2834 356.0669] /Subtype /Link /A << /S /GoTo /D (section*.25) >> >> endobj -411 0 obj << +443 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 333.0091 166.5788 343.8573] /Subtype /Link /A << /S /GoTo /D (section*.27) >> >> endobj -412 0 obj << +444 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 320.7996 170.5085 331.6478] /Subtype /Link /A << /S /GoTo /D (section*.29) >> >> endobj -413 0 obj << +445 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 308.5901 166.5511 319.4383] /Subtype /Link /A << /S /GoTo /D (section*.31) >> >> endobj -414 0 obj << +446 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 296.3805 170.4808 307.2288] /Subtype /Link /A << /S /GoTo /D (section*.33) >> >> endobj -415 0 obj << +447 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 284.171 164.3925 295.0192] /Subtype /Link /A << /S /GoTo /D (section*.35) >> >> endobj -416 0 obj << +448 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 271.9615 160.4905 282.8097] /Subtype /Link /A << /S /GoTo /D (section*.37) >> >> endobj -417 0 obj << +449 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 259.752 156.118 270.6002] /Subtype /Link /A << /S /GoTo /D (section*.39) >> >> endobj -418 0 obj << +450 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [98.8991 239.3474 239.3247 248.2584] /Subtype /Link /A << /S /GoTo /D (section.5) >> >> endobj -419 0 obj << +451 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 225.2007 152.6864 236.0489] /Subtype /Link /A << /S /GoTo /D (section*.41) >> >> endobj -420 0 obj << +452 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 212.9911 151.0537 223.8393] /Subtype /Link /A << /S /GoTo /D (section*.44) >> >> endobj -421 0 obj << +453 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 200.7816 162.1233 211.6298] /Subtype /Link /A << /S /GoTo /D (section*.48) >> >> endobj -422 0 obj << +454 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 188.5721 163.839 199.4203] /Subtype /Link /A << /S /GoTo /D (section*.51) >> >> endobj -423 0 obj << +455 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [98.8991 166.2303 251.7709 177.0785] /Subtype /Link /A << /S /GoTo /D (section.6) >> >> endobj -424 0 obj << +456 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 154.0208 154.9003 164.869] /Subtype /Link /A << /S /GoTo /D (section*.54) >> >> endobj -425 0 obj << +457 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 141.8112 156.6161 152.6594] /Subtype /Link /A << /S /GoTo /D (section*.57) >> >> endobj -426 0 obj << +458 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 129.6017 158.83 140.4499] /Subtype /Link /A << /S /GoTo /D (section*.60) >> >> endobj -427 0 obj << +459 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [113.8431 117.3922 159.3282 128.2404] /Subtype /Link /A << /S /GoTo /D (section*.63) >> >> endobj -383 0 obj << -/D [381 0 R /XYZ 99.8954 740.9981 null] +415 0 obj << +/D [413 0 R /XYZ 99.8954 740.9981 null] >> endobj -384 0 obj << -/D [381 0 R /XYZ 99.8954 696.0806 null] +416 0 obj << +/D [413 0 R /XYZ 99.8954 696.0806 null] >> endobj -380 0 obj << -/Font << /F18 369 0 R /F29 375 0 R /F8 378 0 R >> +412 0 obj << +/Font << /F18 401 0 R /F29 407 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -430 0 obj << -/Length 35098 +462 0 obj << +/Length 37326 >> stream 1 0 0 1 150.7049 740.9981 cm @@ -2376,13 +2424,13 @@ BT ET 1 0 0 1 494.4159 706.1289 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -694.1737 cm +1 0 0 1 -165.6488 -693.7922 cm BT -/F8 9.9626 Tf 165.6488 694.1737 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 693.7921 Td[(psb)]TJ ET -1 0 0 1 181.2459 694.1737 cm +1 0 0 1 181.2459 693.7921 cm q []0 d 0 J @@ -2391,31 +2439,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -694.1737 cm +1 0 0 1 -181.2459 -693.7921 cm BT -/F8 9.9626 Tf 184.2347 694.1737 Td[(cdbl)1(dext)]TJ +/F8 9.9626 Tf 184.2347 693.7921 Td[(cdbl)1(dext)]TJ ET -1 0 0 1 221.5947 694.1737 cm +1 0 0 1 221.5947 693.7921 cm 0 g 0 G -1 0 0 1 -221.5947 -694.1737 cm +1 0 0 1 -221.5947 -693.7921 cm BT -/F8 9.9626 Tf 230.6815 694.1737 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 230.6815 693.7921 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 484.4533 694.1737 cm +1 0 0 1 484.4533 693.7921 cm 0 g 0 G -1 0 0 1 -484.4533 -694.1737 cm +1 0 0 1 -484.4533 -693.7921 cm BT -/F8 9.9626 Tf 484.4533 694.1737 Td[(56)]TJ +/F8 9.9626 Tf 484.4533 693.7921 Td[(56)]TJ ET -1 0 0 1 494.4159 694.1737 cm +1 0 0 1 494.4159 693.7921 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -682.2185 cm +1 0 0 1 -165.6488 -681.4554 cm BT -/F8 9.9626 Tf 165.6488 682.2185 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 681.4554 Td[(psb)]TJ ET -1 0 0 1 181.2459 682.2185 cm +1 0 0 1 181.2459 681.4554 cm q []0 d 0 J @@ -2424,31 +2472,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -682.2185 cm +1 0 0 1 -181.2459 -681.4554 cm BT -/F8 9.9626 Tf 184.2347 682.2185 Td[(spall)]TJ +/F8 9.9626 Tf 184.2347 681.4554 Td[(spall)]TJ ET -1 0 0 1 204.2154 682.2185 cm +1 0 0 1 204.2154 681.4554 cm 0 g 0 G -1 0 0 1 -204.2154 -682.2185 cm +1 0 0 1 -204.2154 -681.4554 cm BT -/F8 9.9626 Tf 207.4357 682.2185 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 681.4554 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 682.2185 cm +1 0 0 1 484.4533 681.4554 cm 0 g 0 G -1 0 0 1 -484.4533 -682.2185 cm +1 0 0 1 -484.4533 -681.4554 cm BT -/F8 9.9626 Tf 484.4533 682.2185 Td[(57)]TJ +/F8 9.9626 Tf 484.4533 681.4554 Td[(57)]TJ ET -1 0 0 1 494.4159 682.2185 cm +1 0 0 1 494.4159 681.4554 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -670.2633 cm +1 0 0 1 -165.6488 -669.1187 cm BT -/F8 9.9626 Tf 165.6488 670.2634 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 669.1187 Td[(psb)]TJ ET -1 0 0 1 181.2459 670.2634 cm +1 0 0 1 181.2459 669.1187 cm q []0 d 0 J @@ -2457,31 +2505,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -670.2634 cm +1 0 0 1 -181.2459 -669.1187 cm BT -/F8 9.9626 Tf 184.2347 670.2634 Td[(spin)1(s)]TJ +/F8 9.9626 Tf 184.2347 669.1187 Td[(spin)1(s)]TJ ET -1 0 0 1 205.9312 670.2634 cm +1 0 0 1 205.9312 669.1187 cm 0 g 0 G -1 0 0 1 -205.9312 -670.2634 cm +1 0 0 1 -205.9312 -669.1187 cm BT -/F8 9.9626 Tf 215.1843 670.2634 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 669.1187 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 670.2634 cm +1 0 0 1 484.4533 669.1187 cm 0 g 0 G -1 0 0 1 -484.4533 -670.2634 cm +1 0 0 1 -484.4533 -669.1187 cm BT -/F8 9.9626 Tf 484.4533 670.2634 Td[(58)]TJ +/F8 9.9626 Tf 484.4533 669.1187 Td[(58)]TJ ET -1 0 0 1 494.4159 670.2634 cm +1 0 0 1 494.4159 669.1187 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -658.3082 cm +1 0 0 1 -165.6488 -656.782 cm BT -/F8 9.9626 Tf 165.6488 658.3082 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 656.782 Td[(psb)]TJ ET -1 0 0 1 181.2459 658.3082 cm +1 0 0 1 181.2459 656.782 cm q []0 d 0 J @@ -2490,31 +2538,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -658.3082 cm +1 0 0 1 -181.2459 -656.782 cm BT -/F8 9.9626 Tf 184.2347 658.3082 Td[(spasb)]TJ +/F8 9.9626 Tf 184.2347 656.782 Td[(spasb)]TJ ET -1 0 0 1 208.1451 658.3082 cm +1 0 0 1 208.1451 656.782 cm 0 g 0 G -1 0 0 1 -208.1451 -658.3082 cm +1 0 0 1 -208.1451 -656.782 cm BT -/F8 9.9626 Tf 215.1843 658.3082 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 656.782 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 658.3082 cm +1 0 0 1 484.4533 656.782 cm 0 g 0 G -1 0 0 1 -484.4533 -658.3082 cm +1 0 0 1 -484.4533 -656.782 cm BT -/F8 9.9626 Tf 484.4533 658.3082 Td[(60)]TJ +/F8 9.9626 Tf 484.4533 656.782 Td[(60)]TJ ET -1 0 0 1 494.4159 658.3082 cm +1 0 0 1 494.4159 656.782 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -646.353 cm +1 0 0 1 -165.6488 -644.4453 cm BT -/F8 9.9626 Tf 165.6488 646.353 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 644.4453 Td[(psb)]TJ ET -1 0 0 1 181.2459 646.353 cm +1 0 0 1 181.2459 644.4453 cm q []0 d 0 J @@ -2523,31 +2571,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -646.353 cm +1 0 0 1 -181.2459 -644.4453 cm BT -/F8 9.9626 Tf 184.2347 646.353 Td[(spfr)1(e)-1(e)]TJ +/F8 9.9626 Tf 184.2347 644.4453 Td[(spfr)1(e)-1(e)]TJ ET -1 0 0 1 209.5011 646.353 cm +1 0 0 1 209.5011 644.4453 cm 0 g 0 G -1 0 0 1 -209.5011 -646.353 cm +1 0 0 1 -209.5011 -644.4453 cm BT -/F8 9.9626 Tf 215.1843 646.353 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 644.4453 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 646.353 cm +1 0 0 1 484.4533 644.4453 cm 0 g 0 G -1 0 0 1 -484.4533 -646.353 cm +1 0 0 1 -484.4533 -644.4453 cm BT -/F8 9.9626 Tf 484.4533 646.353 Td[(62)]TJ +/F8 9.9626 Tf 484.4533 644.4453 Td[(62)]TJ ET -1 0 0 1 494.4159 646.353 cm +1 0 0 1 494.4159 644.4453 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -634.3978 cm +1 0 0 1 -165.6488 -632.1086 cm BT -/F8 9.9626 Tf 165.6488 634.3978 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 632.1086 Td[(psb)]TJ ET -1 0 0 1 181.2459 634.3978 cm +1 0 0 1 181.2459 632.1086 cm q []0 d 0 J @@ -2556,31 +2604,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -634.3978 cm +1 0 0 1 -181.2459 -632.1086 cm BT -/F8 9.9626 Tf 184.2347 634.3978 Td[(sprn)]TJ +/F8 9.9626 Tf 184.2347 632.1086 Td[(sprn)]TJ ET -1 0 0 1 203.1361 634.3978 cm +1 0 0 1 203.1361 632.1086 cm 0 g 0 G -1 0 0 1 -203.1361 -634.3978 cm +1 0 0 1 -203.1361 -632.1086 cm BT -/F8 9.9626 Tf 207.4357 634.3978 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 632.1086 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 634.3978 cm +1 0 0 1 484.4533 632.1086 cm 0 g 0 G -1 0 0 1 -484.4533 -634.3978 cm +1 0 0 1 -484.4533 -632.1086 cm BT -/F8 9.9626 Tf 484.4533 634.3978 Td[(63)]TJ +/F8 9.9626 Tf 484.4533 632.1086 Td[(63)]TJ ET -1 0 0 1 494.4159 634.3978 cm +1 0 0 1 494.4159 632.1086 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -622.4427 cm +1 0 0 1 -165.6488 -619.7719 cm BT -/F8 9.9626 Tf 165.6488 622.4427 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 619.7718 Td[(psb)]TJ ET -1 0 0 1 181.2459 622.4427 cm +1 0 0 1 181.2459 619.7718 cm q []0 d 0 J @@ -2589,31 +2637,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -622.4427 cm +1 0 0 1 -181.2459 -619.7718 cm BT -/F8 9.9626 Tf 184.2347 622.4427 Td[(geall)]TJ +/F8 9.9626 Tf 184.2347 619.7718 Td[(geall)]TJ ET -1 0 0 1 204.1601 622.4427 cm +1 0 0 1 204.1601 619.7718 cm 0 g 0 G -1 0 0 1 -204.1601 -622.4427 cm +1 0 0 1 -204.1601 -619.7718 cm BT -/F8 9.9626 Tf 207.4357 622.4427 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 619.7718 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 622.4427 cm +1 0 0 1 484.4533 619.7718 cm 0 g 0 G -1 0 0 1 -484.4533 -622.4427 cm +1 0 0 1 -484.4533 -619.7718 cm BT -/F8 9.9626 Tf 484.4533 622.4427 Td[(64)]TJ +/F8 9.9626 Tf 484.4533 619.7718 Td[(64)]TJ ET -1 0 0 1 494.4159 622.4427 cm +1 0 0 1 494.4159 619.7718 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -610.4875 cm +1 0 0 1 -165.6488 -607.4351 cm BT -/F8 9.9626 Tf 165.6488 610.4875 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 607.4351 Td[(psb)]TJ ET -1 0 0 1 181.2459 610.4875 cm +1 0 0 1 181.2459 607.4351 cm q []0 d 0 J @@ -2622,31 +2670,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -610.4875 cm +1 0 0 1 -181.2459 -607.4351 cm BT -/F8 9.9626 Tf 184.2347 610.4875 Td[(geins)]TJ +/F8 9.9626 Tf 184.2347 607.4351 Td[(geins)]TJ ET -1 0 0 1 205.8758 610.4875 cm +1 0 0 1 205.8758 607.4351 cm 0 g 0 G -1 0 0 1 -205.8758 -610.4875 cm +1 0 0 1 -205.8758 -607.4351 cm BT -/F8 9.9626 Tf 215.1843 610.4875 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 607.4351 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 610.4875 cm +1 0 0 1 484.4533 607.4351 cm 0 g 0 G -1 0 0 1 -484.4533 -610.4875 cm +1 0 0 1 -484.4533 -607.4351 cm BT -/F8 9.9626 Tf 484.4533 610.4875 Td[(65)]TJ +/F8 9.9626 Tf 484.4533 607.4351 Td[(65)]TJ ET -1 0 0 1 494.4159 610.4875 cm +1 0 0 1 494.4159 607.4351 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -598.5323 cm +1 0 0 1 -165.6488 -595.0984 cm BT -/F8 9.9626 Tf 165.6488 598.5323 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 595.0984 Td[(psb)]TJ ET -1 0 0 1 181.2459 598.5323 cm +1 0 0 1 181.2459 595.0984 cm q []0 d 0 J @@ -2655,31 +2703,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -598.5323 cm +1 0 0 1 -181.2459 -595.0984 cm BT -/F8 9.9626 Tf 184.2347 598.5323 Td[(geas)-1(b)]TJ +/F8 9.9626 Tf 184.2347 595.0984 Td[(geas)-1(b)]TJ ET -1 0 0 1 208.0898 598.5323 cm +1 0 0 1 208.0898 595.0984 cm 0 g 0 G -1 0 0 1 -208.0898 -598.5323 cm +1 0 0 1 -208.0898 -595.0984 cm BT -/F8 9.9626 Tf 215.1843 598.5323 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 595.0984 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 598.5323 cm +1 0 0 1 484.4533 595.0984 cm 0 g 0 G -1 0 0 1 -484.4533 -598.5323 cm +1 0 0 1 -484.4533 -595.0984 cm BT -/F8 9.9626 Tf 484.4533 598.5323 Td[(67)]TJ +/F8 9.9626 Tf 484.4533 595.0984 Td[(67)]TJ ET -1 0 0 1 494.4159 598.5323 cm +1 0 0 1 494.4159 595.0984 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -586.5772 cm +1 0 0 1 -165.6488 -582.7617 cm BT -/F8 9.9626 Tf 165.6488 586.5772 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 582.7617 Td[(psb)]TJ ET -1 0 0 1 181.2459 586.5772 cm +1 0 0 1 181.2459 582.7617 cm q []0 d 0 J @@ -2688,31 +2736,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -586.5772 cm +1 0 0 1 -181.2459 -582.7617 cm BT -/F8 9.9626 Tf 184.2347 586.5772 Td[(gefree)]TJ +/F8 9.9626 Tf 184.2347 582.7617 Td[(gefree)]TJ ET -1 0 0 1 209.4458 586.5772 cm +1 0 0 1 209.4458 582.7617 cm 0 g 0 G -1 0 0 1 -209.4458 -586.5772 cm +1 0 0 1 -209.4458 -582.7617 cm BT -/F8 9.9626 Tf 215.1843 586.5772 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 582.7617 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 586.5772 cm +1 0 0 1 484.4533 582.7617 cm 0 g 0 G -1 0 0 1 -484.4533 -586.5772 cm +1 0 0 1 -484.4533 -582.7617 cm BT -/F8 9.9626 Tf 484.4533 586.5772 Td[(68)]TJ +/F8 9.9626 Tf 484.4533 582.7617 Td[(68)]TJ ET -1 0 0 1 494.4159 586.5772 cm +1 0 0 1 494.4159 582.7617 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -574.622 cm +1 0 0 1 -165.6488 -570.425 cm BT -/F8 9.9626 Tf 165.6488 574.622 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 570.425 Td[(psb)]TJ ET -1 0 0 1 181.2459 574.622 cm +1 0 0 1 181.2459 570.425 cm q []0 d 0 J @@ -2721,31 +2769,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -574.622 cm +1 0 0 1 -181.2459 -570.425 cm BT -/F8 9.9626 Tf 184.2347 574.622 Td[(gelp)]TJ +/F8 9.9626 Tf 184.2347 570.425 Td[(gelp)]TJ ET -1 0 0 1 201.9461 574.622 cm +1 0 0 1 201.9461 570.425 cm 0 g 0 G -1 0 0 1 -201.9461 -574.622 cm +1 0 0 1 -201.9461 -570.425 cm BT -/F8 9.9626 Tf 207.4357 574.622 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 570.425 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 574.622 cm +1 0 0 1 484.4533 570.425 cm 0 g 0 G -1 0 0 1 -484.4533 -574.622 cm +1 0 0 1 -484.4533 -570.425 cm BT -/F8 9.9626 Tf 484.4533 574.622 Td[(69)]TJ +/F8 9.9626 Tf 484.4533 570.425 Td[(69)]TJ ET -1 0 0 1 494.4159 574.622 cm +1 0 0 1 494.4159 570.425 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -562.6668 cm +1 0 0 1 -165.6488 -558.0883 cm BT -/F8 9.9626 Tf 165.6488 562.6668 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 558.0883 Td[(psb)]TJ ET -1 0 0 1 181.2459 562.6668 cm +1 0 0 1 181.2459 558.0883 cm q []0 d 0 J @@ -2754,11 +2802,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -562.6668 cm +1 0 0 1 -181.2459 -558.0883 cm BT -/F8 9.9626 Tf 184.2347 562.6668 Td[(glob)]TJ +/F8 9.9626 Tf 184.2347 558.0883 Td[(glob)]TJ ET -1 0 0 1 203.0974 562.6668 cm +1 0 0 1 203.0974 558.0883 cm q []0 d 0 J @@ -2767,11 +2815,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -203.0974 -562.6668 cm +1 0 0 1 -203.0974 -558.0883 cm BT -/F8 9.9626 Tf 206.0862 562.6668 Td[(to)]TJ +/F8 9.9626 Tf 206.0862 558.0883 Td[(to)]TJ ET -1 0 0 1 215.5396 562.6668 cm +1 0 0 1 215.5396 558.0883 cm q []0 d 0 J @@ -2780,31 +2828,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -215.5396 -562.6668 cm +1 0 0 1 -215.5396 -558.0883 cm BT -/F8 9.9626 Tf 218.5284 562.6668 Td[(lo)-28(c)]TJ +/F8 9.9626 Tf 218.5284 558.0883 Td[(lo)-28(c)]TJ ET -1 0 0 1 230.9818 562.6668 cm +1 0 0 1 230.9818 558.0883 cm 0 g 0 G -1 0 0 1 -230.9818 -562.6668 cm +1 0 0 1 -230.9818 -558.0883 cm BT -/F8 9.9626 Tf 238.4301 562.6668 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 238.4301 558.0883 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 562.6668 cm +1 0 0 1 484.4533 558.0883 cm 0 g 0 G -1 0 0 1 -484.4533 -562.6668 cm +1 0 0 1 -484.4533 -558.0883 cm BT -/F8 9.9626 Tf 484.4533 562.6668 Td[(70)]TJ +/F8 9.9626 Tf 484.4533 558.0883 Td[(70)]TJ ET -1 0 0 1 494.4159 562.6668 cm +1 0 0 1 494.4159 558.0883 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -550.7117 cm +1 0 0 1 -165.6488 -545.7516 cm BT -/F8 9.9626 Tf 165.6488 550.7117 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 545.7516 Td[(psb)]TJ ET -1 0 0 1 181.2459 550.7117 cm +1 0 0 1 181.2459 545.7516 cm q []0 d 0 J @@ -2813,11 +2861,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -550.7117 cm +1 0 0 1 -181.2459 -545.7516 cm BT -/F8 9.9626 Tf 184.2347 550.7117 Td[(lo)-28(c)]TJ +/F8 9.9626 Tf 184.2347 545.7516 Td[(lo)-28(c)]TJ ET -1 0 0 1 197.2858 550.7117 cm +1 0 0 1 197.2858 545.7516 cm q []0 d 0 J @@ -2826,11 +2874,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -197.2858 -550.7117 cm +1 0 0 1 -197.2858 -545.7516 cm BT -/F8 9.9626 Tf 200.2746 550.7117 Td[(to)]TJ +/F8 9.9626 Tf 200.2746 545.7516 Td[(to)]TJ ET -1 0 0 1 209.7281 550.7117 cm +1 0 0 1 209.7281 545.7516 cm q []0 d 0 J @@ -2839,31 +2887,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -209.7281 -550.7117 cm +1 0 0 1 -209.7281 -545.7516 cm BT -/F8 9.9626 Tf 212.7169 550.7117 Td[(glob)]TJ +/F8 9.9626 Tf 212.7169 545.7516 Td[(glob)]TJ ET -1 0 0 1 230.9818 550.7117 cm +1 0 0 1 230.9818 545.7516 cm 0 g 0 G -1 0 0 1 -230.9818 -550.7117 cm +1 0 0 1 -230.9818 -545.7516 cm BT -/F8 9.9626 Tf 238.4301 550.7117 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 238.4301 545.7516 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 550.7117 cm +1 0 0 1 484.4533 545.7516 cm 0 g 0 G -1 0 0 1 -484.4533 -550.7117 cm +1 0 0 1 -484.4533 -545.7516 cm BT -/F8 9.9626 Tf 484.4533 550.7117 Td[(72)]TJ +/F8 9.9626 Tf 484.4533 545.7516 Td[(72)]TJ ET -1 0 0 1 494.4159 550.7117 cm +1 0 0 1 494.4159 545.7516 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -538.7565 cm +1 0 0 1 -165.6488 -533.4149 cm BT -/F8 9.9626 Tf 165.6488 538.7565 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 533.4148 Td[(psb)]TJ ET -1 0 0 1 181.2459 538.7565 cm +1 0 0 1 181.2459 533.4148 cm q []0 d 0 J @@ -2872,11 +2920,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -538.7565 cm +1 0 0 1 -181.2459 -533.4148 cm BT -/F8 9.9626 Tf 184.2347 538.7565 Td[(get)]TJ +/F8 9.9626 Tf 184.2347 533.4148 Td[(get)]TJ ET -1 0 0 1 198.116 538.7565 cm +1 0 0 1 198.116 533.4148 cm q []0 d 0 J @@ -2885,31 +2933,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -198.116 -538.7565 cm +1 0 0 1 -198.116 -533.4148 cm BT -/F8 9.9626 Tf 201.1048 538.7565 Td[(b)-27(oun)1(dary)]TJ +/F8 9.9626 Tf 201.1048 533.4148 Td[(b)-27(oun)1(dary)]TJ ET -1 0 0 1 242.6436 538.7565 cm +1 0 0 1 242.6436 533.4148 cm 0 g 0 G -1 0 0 1 -242.6436 -538.7565 cm +1 0 0 1 -242.6436 -533.4148 cm BT -/F8 9.9626 Tf 246.1787 538.7565 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 246.1787 533.4148 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 538.7565 cm +1 0 0 1 484.4533 533.4148 cm 0 g 0 G -1 0 0 1 -484.4533 -538.7565 cm +1 0 0 1 -484.4533 -533.4148 cm BT -/F8 9.9626 Tf 484.4533 538.7565 Td[(73)]TJ +/F8 9.9626 Tf 484.4533 533.4148 Td[(73)]TJ ET -1 0 0 1 494.4159 538.7565 cm +1 0 0 1 494.4159 533.4148 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -526.8013 cm +1 0 0 1 -165.6488 -521.0781 cm BT -/F8 9.9626 Tf 165.6488 526.8013 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 521.0781 Td[(psb)]TJ ET -1 0 0 1 181.2459 526.8013 cm +1 0 0 1 181.2459 521.0781 cm q []0 d 0 J @@ -2918,11 +2966,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -526.8013 cm +1 0 0 1 -181.2459 -521.0781 cm BT -/F8 9.9626 Tf 184.2347 526.8013 Td[(get)]TJ +/F8 9.9626 Tf 184.2347 521.0781 Td[(get)]TJ ET -1 0 0 1 198.116 526.8013 cm +1 0 0 1 198.116 521.0781 cm q []0 d 0 J @@ -2931,43 +2979,43 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -198.116 -526.8013 cm +1 0 0 1 -198.116 -521.0781 cm BT -/F8 9.9626 Tf 201.1048 526.8013 Td[(o)28(v)28(e)-1(r)1(lap)]TJ +/F8 9.9626 Tf 201.1048 521.0781 Td[(o)28(v)28(e)-1(r)1(lap)]TJ ET -1 0 0 1 232.4042 526.8013 cm +1 0 0 1 232.4042 521.0781 cm 0 g 0 G -1 0 0 1 -232.4042 -526.8013 cm +1 0 0 1 -232.4042 -521.0781 cm BT -/F8 9.9626 Tf 238.4301 526.8013 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 238.4301 521.0781 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 526.8013 cm +1 0 0 1 484.4533 521.0781 cm 0 g 0 G -1 0 0 1 -484.4533 -526.8013 cm +1 0 0 1 -484.4533 -521.0781 cm BT -/F8 9.9626 Tf 484.4533 526.8013 Td[(74)]TJ +/F8 9.9626 Tf 484.4533 521.0781 Td[(74)]TJ ET -1 0 0 1 494.4159 526.8013 cm +1 0 0 1 494.4159 521.0781 cm 0 g 0 G -1 0 0 1 -343.7111 -21.9178 cm +1 0 0 1 -343.7111 -22.5537 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -150.7048 -504.8835 cm +1 0 0 1 -150.7048 -498.5244 cm BT -/F29 9.9626 Tf 150.7048 504.8835 Td[(7)-925(P)32(arall)-1(el)-384(en)32(viron)1(m)-1(en)32(t)-383(routi)-1(n)1(e)-1(s)]TJ +/F29 9.9626 Tf 150.7048 498.5244 Td[(7)-925(P)32(arall)-1(el)-384(en)32(viron)1(m)-1(en)32(t)-383(routi)-1(n)1(e)-1(s)]TJ ET -1 0 0 1 314.6808 504.8835 cm +1 0 0 1 314.6808 498.5244 cm 0 g 0 G -1 0 0 1 -314.6808 -504.8835 cm +1 0 0 1 -314.6808 -498.5244 cm BT -/F29 9.9626 Tf 482.959 504.8835 Td[(75)]TJ +/F29 9.9626 Tf 482.959 498.5244 Td[(75)]TJ ET -1 0 0 1 165.6488 492.9283 cm +1 0 0 1 165.6488 486.1877 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -492.9283 cm +1 0 0 1 -165.6488 -486.1877 cm BT -/F8 9.9626 Tf 165.6488 492.9283 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 486.1877 Td[(psb)]TJ ET -1 0 0 1 181.2459 492.9283 cm +1 0 0 1 181.2459 486.1877 cm q []0 d 0 J @@ -2976,31 +3024,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -492.9283 cm +1 0 0 1 -181.2459 -486.1877 cm BT -/F8 9.9626 Tf 184.2347 492.9283 Td[(in)1(it)]TJ +/F8 9.9626 Tf 184.2347 486.1877 Td[(in)1(it)]TJ ET -1 0 0 1 199.1787 492.9283 cm +1 0 0 1 199.1787 486.1877 cm 0 g 0 G -1 0 0 1 -199.1787 -492.9283 cm +1 0 0 1 -199.1787 -486.1877 cm BT -/F8 9.9626 Tf 207.4357 492.9283 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 486.1877 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 492.9283 cm +1 0 0 1 484.4533 486.1877 cm 0 g 0 G -1 0 0 1 -484.4533 -492.9283 cm +1 0 0 1 -484.4533 -486.1877 cm BT -/F8 9.9626 Tf 484.4533 492.9283 Td[(76)]TJ +/F8 9.9626 Tf 484.4533 486.1877 Td[(76)]TJ ET -1 0 0 1 494.4159 492.9283 cm +1 0 0 1 494.4159 486.1877 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -480.9732 cm +1 0 0 1 -165.6488 -473.851 cm BT -/F8 9.9626 Tf 165.6488 480.9732 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 473.851 Td[(psb)]TJ ET -1 0 0 1 181.2459 480.9732 cm +1 0 0 1 181.2459 473.851 cm q []0 d 0 J @@ -3009,31 +3057,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -480.9732 cm +1 0 0 1 -181.2459 -473.851 cm BT -/F8 9.9626 Tf 184.2347 480.9732 Td[(in)1(fo)]TJ +/F8 9.9626 Tf 184.2347 473.851 Td[(in)1(fo)]TJ ET -1 0 0 1 200.5625 480.9732 cm +1 0 0 1 200.5625 473.851 cm 0 g 0 G -1 0 0 1 -200.5625 -480.9732 cm +1 0 0 1 -200.5625 -473.851 cm BT -/F8 9.9626 Tf 207.4357 480.9732 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 473.851 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 480.9732 cm +1 0 0 1 484.4533 473.851 cm 0 g 0 G -1 0 0 1 -484.4533 -480.9732 cm +1 0 0 1 -484.4533 -473.851 cm BT -/F8 9.9626 Tf 484.4533 480.9732 Td[(77)]TJ +/F8 9.9626 Tf 484.4533 473.851 Td[(77)]TJ ET -1 0 0 1 494.4159 480.9732 cm +1 0 0 1 494.4159 473.851 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -469.018 cm +1 0 0 1 -165.6488 -461.5143 cm BT -/F8 9.9626 Tf 165.6488 469.018 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 461.5143 Td[(psb)]TJ ET -1 0 0 1 181.2459 469.018 cm +1 0 0 1 181.2459 461.5143 cm q []0 d 0 J @@ -3042,31 +3090,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -469.018 cm +1 0 0 1 -181.2459 -461.5143 cm BT -/F8 9.9626 Tf 184.2347 469.018 Td[(exit)]TJ +/F8 9.9626 Tf 184.2347 461.5143 Td[(exit)]TJ ET -1 0 0 1 200.5624 469.018 cm +1 0 0 1 200.5624 461.5143 cm 0 g 0 G -1 0 0 1 -200.5624 -469.018 cm +1 0 0 1 -200.5624 -461.5143 cm BT -/F8 9.9626 Tf 207.4357 469.018 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 461.5143 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 469.018 cm +1 0 0 1 484.4533 461.5143 cm 0 g 0 G -1 0 0 1 -484.4533 -469.018 cm +1 0 0 1 -484.4533 -461.5143 cm BT -/F8 9.9626 Tf 484.4533 469.018 Td[(78)]TJ +/F8 9.9626 Tf 484.4533 461.5143 Td[(78)]TJ ET -1 0 0 1 494.4159 469.018 cm +1 0 0 1 494.4159 461.5143 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -457.0628 cm +1 0 0 1 -165.6488 -449.1776 cm BT -/F8 9.9626 Tf 165.6488 457.0628 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 449.1776 Td[(psb)]TJ ET -1 0 0 1 181.2459 457.0628 cm +1 0 0 1 181.2459 449.1776 cm q []0 d 0 J @@ -3075,11 +3123,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -457.0628 cm +1 0 0 1 -181.2459 -449.1776 cm BT -/F8 9.9626 Tf 184.2347 457.0628 Td[(get)]TJ +/F8 9.9626 Tf 184.2347 449.1776 Td[(get)]TJ ET -1 0 0 1 198.116 457.0628 cm +1 0 0 1 198.116 449.1776 cm q []0 d 0 J @@ -3088,31 +3136,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -198.116 -457.0628 cm +1 0 0 1 -198.116 -449.1776 cm BT -/F8 9.9626 Tf 201.1048 457.0628 Td[(mpicomm)]TJ +/F8 9.9626 Tf 201.1048 449.1776 Td[(mpicomm)]TJ ET -1 0 0 1 243.7229 457.0628 cm +1 0 0 1 243.7229 449.1776 cm 0 g 0 G -1 0 0 1 -243.7229 -457.0628 cm +1 0 0 1 -243.7229 -449.1776 cm BT -/F8 9.9626 Tf 253.9274 457.0628 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 253.9274 449.1776 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)]TJ ET -1 0 0 1 484.4533 457.0628 cm +1 0 0 1 484.4533 449.1776 cm 0 g 0 G -1 0 0 1 -484.4533 -457.0628 cm +1 0 0 1 -484.4533 -449.1776 cm BT -/F8 9.9626 Tf 484.4533 457.0628 Td[(79)]TJ +/F8 9.9626 Tf 484.4533 449.1776 Td[(79)]TJ ET -1 0 0 1 494.4159 457.0628 cm +1 0 0 1 494.4159 449.1776 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3368 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -445.1077 cm +1 0 0 1 -165.6488 -436.8408 cm BT -/F8 9.9626 Tf 165.6488 445.1077 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 436.8408 Td[(psb)]TJ ET -1 0 0 1 181.2459 445.1077 cm +1 0 0 1 181.2459 436.8408 cm q []0 d 0 J @@ -3121,11 +3169,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -445.1077 cm +1 0 0 1 -181.2459 -436.8408 cm BT -/F8 9.9626 Tf 184.2347 445.1077 Td[(get)]TJ +/F8 9.9626 Tf 184.2347 436.8408 Td[(get)]TJ ET -1 0 0 1 198.116 445.1077 cm +1 0 0 1 198.116 436.8408 cm q []0 d 0 J @@ -3134,31 +3182,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -198.116 -445.1077 cm +1 0 0 1 -198.116 -436.8408 cm BT -/F8 9.9626 Tf 201.1048 445.1077 Td[(ran)1(k)]TJ +/F8 9.9626 Tf 201.1048 436.8408 Td[(ran)1(k)]TJ ET -1 0 0 1 220.7811 445.1077 cm +1 0 0 1 220.7811 436.8408 cm 0 g 0 G -1 0 0 1 -220.7811 -445.1077 cm +1 0 0 1 -220.7811 -436.8408 cm BT -/F8 9.9626 Tf 230.6815 445.1077 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 230.6815 436.8408 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 484.4533 445.1077 cm +1 0 0 1 484.4533 436.8408 cm 0 g 0 G -1 0 0 1 -484.4533 -445.1077 cm +1 0 0 1 -484.4533 -436.8408 cm BT -/F8 9.9626 Tf 484.4533 445.1077 Td[(80)]TJ +/F8 9.9626 Tf 484.4533 436.8408 Td[(80)]TJ ET -1 0 0 1 494.4159 445.1077 cm +1 0 0 1 494.4159 436.8408 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -433.1525 cm +1 0 0 1 -165.6488 -424.5041 cm BT -/F8 9.9626 Tf 165.6488 433.1525 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 424.5041 Td[(psb)]TJ ET -1 0 0 1 181.2459 433.1525 cm +1 0 0 1 181.2459 424.5041 cm q []0 d 0 J @@ -3167,31 +3215,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -433.1525 cm +1 0 0 1 -181.2459 -424.5041 cm BT -/F8 9.9626 Tf 184.2347 433.1525 Td[(wtime)]TJ +/F8 9.9626 Tf 184.2347 424.5041 Td[(wtime)]TJ ET -1 0 0 1 210.8018 433.1525 cm +1 0 0 1 210.8018 424.5041 cm 0 g 0 G -1 0 0 1 -210.8018 -433.1525 cm +1 0 0 1 -210.8018 -424.5041 cm BT -/F8 9.9626 Tf 215.1843 433.1525 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 424.5041 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 433.1525 cm +1 0 0 1 484.4533 424.5041 cm 0 g 0 G -1 0 0 1 -484.4533 -433.1525 cm +1 0 0 1 -484.4533 -424.5041 cm BT -/F8 9.9626 Tf 484.4533 433.1525 Td[(81)]TJ +/F8 9.9626 Tf 484.4533 424.5041 Td[(81)]TJ ET -1 0 0 1 494.4159 433.1525 cm +1 0 0 1 494.4159 424.5041 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -421.1973 cm +1 0 0 1 -165.6488 -412.1674 cm BT -/F8 9.9626 Tf 165.6488 421.1973 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 412.1674 Td[(psb)]TJ ET -1 0 0 1 181.2459 421.1973 cm +1 0 0 1 181.2459 412.1674 cm q []0 d 0 J @@ -3200,31 +3248,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -421.1973 cm +1 0 0 1 -181.2459 -412.1674 cm BT -/F8 9.9626 Tf 184.2347 421.1973 Td[(bar)1(rier)]TJ +/F8 9.9626 Tf 184.2347 412.1674 Td[(bar)1(rier)]TJ ET -1 0 0 1 213.6522 421.1973 cm +1 0 0 1 213.6522 412.1674 cm 0 g 0 G -1 0 0 1 -213.6522 -421.1973 cm +1 0 0 1 -213.6522 -412.1674 cm BT -/F8 9.9626 Tf 222.9329 421.1973 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 222.9329 412.1674 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ ET -1 0 0 1 484.4533 421.1973 cm +1 0 0 1 484.4533 412.1674 cm 0 g 0 G -1 0 0 1 -484.4533 -421.1973 cm +1 0 0 1 -484.4533 -412.1674 cm BT -/F8 9.9626 Tf 484.4533 421.1973 Td[(82)]TJ +/F8 9.9626 Tf 484.4533 412.1674 Td[(82)]TJ ET -1 0 0 1 494.4159 421.1973 cm +1 0 0 1 494.4159 412.1674 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -409.2422 cm +1 0 0 1 -165.6488 -399.8307 cm BT -/F8 9.9626 Tf 165.6488 409.2422 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 399.8307 Td[(psb)]TJ ET -1 0 0 1 181.2459 409.2422 cm +1 0 0 1 181.2459 399.8307 cm q []0 d 0 J @@ -3233,31 +3281,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -409.2422 cm +1 0 0 1 -181.2459 -399.8307 cm BT -/F8 9.9626 Tf 184.2347 409.2422 Td[(ab)-27(ort)]TJ +/F8 9.9626 Tf 184.2347 399.8307 Td[(ab)-27(ort)]TJ ET -1 0 0 1 207.7854 409.2422 cm +1 0 0 1 207.7854 399.8307 cm 0 g 0 G -1 0 0 1 -207.7854 -409.2422 cm +1 0 0 1 -207.7854 -399.8307 cm BT -/F8 9.9626 Tf 215.1843 409.2422 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 399.8307 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 409.2422 cm +1 0 0 1 484.4533 399.8307 cm 0 g 0 G -1 0 0 1 -484.4533 -409.2422 cm +1 0 0 1 -484.4533 -399.8307 cm BT -/F8 9.9626 Tf 484.4533 409.2422 Td[(83)]TJ +/F8 9.9626 Tf 484.4533 399.8307 Td[(83)]TJ ET -1 0 0 1 494.4159 409.2422 cm +1 0 0 1 494.4159 399.8307 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -397.287 cm +1 0 0 1 -165.6488 -387.494 cm BT -/F8 9.9626 Tf 165.6488 397.287 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 387.494 Td[(psb)]TJ ET -1 0 0 1 181.2459 397.287 cm +1 0 0 1 181.2459 387.494 cm q []0 d 0 J @@ -3266,31 +3314,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -397.287 cm +1 0 0 1 -181.2459 -387.494 cm BT -/F8 9.9626 Tf 184.2347 397.287 Td[(b)-27(c)-1(ast)]TJ +/F8 9.9626 Tf 184.2347 387.494 Td[(b)-27(c)-1(ast)]TJ ET -1 0 0 1 207.2596 397.287 cm +1 0 0 1 207.2596 387.494 cm 0 g 0 G -1 0 0 1 -207.2596 -397.287 cm +1 0 0 1 -207.2596 -387.494 cm BT -/F8 9.9626 Tf 215.1843 397.287 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 215.1843 387.494 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 397.287 cm +1 0 0 1 484.4533 387.494 cm 0 g 0 G -1 0 0 1 -484.4533 -397.287 cm +1 0 0 1 -484.4533 -387.494 cm BT -/F8 9.9626 Tf 484.4533 397.287 Td[(84)]TJ +/F8 9.9626 Tf 484.4533 387.494 Td[(84)]TJ ET -1 0 0 1 494.4159 397.287 cm +1 0 0 1 494.4159 387.494 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -385.3318 cm +1 0 0 1 -165.6488 -375.1573 cm BT -/F8 9.9626 Tf 165.6488 385.3318 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 375.1573 Td[(psb)]TJ ET -1 0 0 1 181.2459 385.3318 cm +1 0 0 1 181.2459 375.1573 cm q []0 d 0 J @@ -3299,31 +3347,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -385.3318 cm +1 0 0 1 -181.2459 -375.1573 cm BT -/F8 9.9626 Tf 184.2347 385.3318 Td[(sum)]TJ +/F8 9.9626 Tf 184.2347 375.1573 Td[(sum)]TJ ET -1 0 0 1 202.0015 385.3318 cm +1 0 0 1 202.0015 375.1573 cm 0 g 0 G -1 0 0 1 -202.0015 -385.3318 cm +1 0 0 1 -202.0015 -375.1573 cm BT -/F8 9.9626 Tf 207.4357 385.3318 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 375.1573 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 385.3318 cm +1 0 0 1 484.4533 375.1573 cm 0 g 0 G -1 0 0 1 -484.4533 -385.3318 cm +1 0 0 1 -484.4533 -375.1573 cm BT -/F8 9.9626 Tf 484.4533 385.3318 Td[(85)]TJ +/F8 9.9626 Tf 484.4533 375.1573 Td[(85)]TJ ET -1 0 0 1 494.4159 385.3318 cm +1 0 0 1 494.4159 375.1573 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -373.3767 cm +1 0 0 1 -165.6488 -362.8206 cm BT -/F8 9.9626 Tf 165.6488 373.3767 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 362.8205 Td[(psb)]TJ ET -1 0 0 1 181.2459 373.3767 cm +1 0 0 1 181.2459 362.8205 cm q []0 d 0 J @@ -3332,31 +3380,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -373.3767 cm +1 0 0 1 -181.2459 -362.8205 cm BT -/F8 9.9626 Tf 184.2347 373.3767 Td[(amx)]TJ +/F8 9.9626 Tf 184.2347 362.8205 Td[(max)]TJ ET -1 0 0 1 202.7764 373.3767 cm +1 0 0 1 202.7764 362.8205 cm 0 g 0 G -1 0 0 1 -202.7764 -373.3767 cm +1 0 0 1 -202.7764 -362.8205 cm BT -/F8 9.9626 Tf 207.4357 373.3767 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 362.8205 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 373.3767 cm +1 0 0 1 484.4533 362.8205 cm 0 g 0 G -1 0 0 1 -484.4533 -373.3767 cm +1 0 0 1 -484.4533 -362.8205 cm BT -/F8 9.9626 Tf 484.4533 373.3767 Td[(86)]TJ +/F8 9.9626 Tf 484.4533 362.8205 Td[(86)]TJ ET -1 0 0 1 494.4159 373.3767 cm +1 0 0 1 494.4159 362.8205 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -361.4215 cm +1 0 0 1 -165.6488 -350.4838 cm BT -/F8 9.9626 Tf 165.6488 361.4215 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 350.4838 Td[(psb)]TJ ET -1 0 0 1 181.2459 361.4215 cm +1 0 0 1 181.2459 350.4838 cm q []0 d 0 J @@ -3365,31 +3413,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -361.4215 cm +1 0 0 1 -181.2459 -350.4838 cm BT -/F8 9.9626 Tf 184.2347 361.4215 Td[(amn)]TJ +/F8 9.9626 Tf 184.2347 350.4838 Td[(min)]TJ ET -1 0 0 1 203.0531 361.4215 cm +1 0 0 1 200.8392 350.4838 cm 0 g 0 G -1 0 0 1 -203.0531 -361.4215 cm +1 0 0 1 -200.8392 -350.4838 cm BT -/F8 9.9626 Tf 207.4357 361.4215 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 350.4838 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 361.4215 cm +1 0 0 1 484.4533 350.4838 cm 0 g 0 G -1 0 0 1 -484.4533 -361.4215 cm +1 0 0 1 -484.4533 -350.4838 cm BT -/F8 9.9626 Tf 484.4533 361.4215 Td[(87)]TJ +/F8 9.9626 Tf 484.4533 350.4838 Td[(87)]TJ ET -1 0 0 1 494.4159 361.4215 cm +1 0 0 1 494.4159 350.4838 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -349.4663 cm +1 0 0 1 -165.6488 -338.1471 cm BT -/F8 9.9626 Tf 165.6488 349.4663 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 338.1471 Td[(psb)]TJ ET -1 0 0 1 181.2459 349.4663 cm +1 0 0 1 181.2459 338.1471 cm q []0 d 0 J @@ -3398,31 +3446,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -349.4663 cm +1 0 0 1 -181.2459 -338.1471 cm BT -/F8 9.9626 Tf 184.2347 349.4663 Td[(snd)]TJ +/F8 9.9626 Tf 184.2347 338.1471 Td[(amx)]TJ ET -1 0 0 1 199.2341 349.4663 cm +1 0 0 1 202.7764 338.1471 cm 0 g 0 G -1 0 0 1 -199.2341 -349.4663 cm +1 0 0 1 -202.7764 -338.1471 cm BT -/F8 9.9626 Tf 207.4357 349.4663 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 338.1471 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 349.4663 cm +1 0 0 1 484.4533 338.1471 cm 0 g 0 G -1 0 0 1 -484.4533 -349.4663 cm +1 0 0 1 -484.4533 -338.1471 cm BT -/F8 9.9626 Tf 484.4533 349.4663 Td[(88)]TJ +/F8 9.9626 Tf 484.4533 338.1471 Td[(88)]TJ ET -1 0 0 1 494.4159 349.4663 cm +1 0 0 1 494.4159 338.1471 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -337.5111 cm +1 0 0 1 -165.6488 -325.8104 cm BT -/F8 9.9626 Tf 165.6488 337.5112 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 325.8104 Td[(psb)]TJ ET -1 0 0 1 181.2459 337.5112 cm +1 0 0 1 181.2459 325.8104 cm q []0 d 0 J @@ -3431,43 +3479,64 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -337.5112 cm +1 0 0 1 -181.2459 -325.8104 cm BT -/F8 9.9626 Tf 184.2347 337.5112 Td[(rcv)]TJ +/F8 9.9626 Tf 184.2347 325.8104 Td[(amn)]TJ ET -1 0 0 1 197.8227 337.5112 cm +1 0 0 1 203.0531 325.8104 cm 0 g 0 G -1 0 0 1 -197.8227 -337.5112 cm +1 0 0 1 -203.0531 -325.8104 cm BT -/F8 9.9626 Tf 207.4357 337.5112 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 325.8104 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 337.5112 cm +1 0 0 1 484.4533 325.8104 cm 0 g 0 G -1 0 0 1 -484.4533 -337.5112 cm +1 0 0 1 -484.4533 -325.8104 cm BT -/F8 9.9626 Tf 484.4533 337.5112 Td[(89)]TJ +/F8 9.9626 Tf 484.4533 325.8104 Td[(89)]TJ ET -1 0 0 1 494.4159 337.5112 cm +1 0 0 1 494.4159 325.8104 cm 0 g 0 G -1 0 0 1 -343.7111 -21.9179 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -150.7048 -315.5933 cm +1 0 0 1 -165.6488 -313.4737 cm +BT +/F8 9.9626 Tf 165.6488 313.4737 Td[(psb)]TJ +ET +1 0 0 1 181.2459 313.4737 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -181.2459 -313.4737 cm BT -/F29 9.9626 Tf 150.7048 315.5933 Td[(8)-925(Er)1(ror)-383(hand)1(l)-1(ing)]TJ +/F8 9.9626 Tf 184.2347 313.4737 Td[(snd)]TJ ET -1 0 0 1 240.0016 315.5933 cm +1 0 0 1 199.2341 313.4737 cm 0 g 0 G -1 0 0 1 -240.0016 -315.5933 cm +1 0 0 1 -199.2341 -313.4737 cm BT -/F29 9.9626 Tf 482.959 315.5933 Td[(90)]TJ +/F8 9.9626 Tf 207.4357 313.4737 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 165.6488 303.6382 cm +1 0 0 1 484.4533 313.4737 cm +0 g 0 G +1 0 0 1 -484.4533 -313.4737 cm +BT +/F8 9.9626 Tf 484.4533 313.4737 Td[(90)]TJ +ET +1 0 0 1 494.4159 313.4737 cm +0 g 0 G +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -303.6382 cm +1 0 0 1 -165.6488 -301.137 cm BT -/F8 9.9626 Tf 165.6488 303.6382 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 301.137 Td[(psb)]TJ ET -1 0 0 1 181.2459 303.6382 cm +1 0 0 1 181.2459 301.137 cm q []0 d 0 J @@ -3476,31 +3545,43 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -303.6382 cm +1 0 0 1 -181.2459 -301.137 cm BT -/F8 9.9626 Tf 184.2347 303.6382 Td[(errp)1(ush)]TJ +/F8 9.9626 Tf 184.2347 301.137 Td[(rcv)]TJ ET -1 0 0 1 217.0008 303.6382 cm +1 0 0 1 197.8227 301.137 cm 0 g 0 G -1 0 0 1 -217.0008 -303.6382 cm +1 0 0 1 -197.8227 -301.137 cm BT -/F8 9.9626 Tf 222.9329 303.6382 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 301.137 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 484.4533 303.6382 cm +1 0 0 1 484.4533 301.137 cm 0 g 0 G -1 0 0 1 -484.4533 -303.6382 cm +1 0 0 1 -484.4533 -301.137 cm BT -/F8 9.9626 Tf 484.4533 303.6382 Td[(92)]TJ +/F8 9.9626 Tf 484.4533 301.137 Td[(91)]TJ ET -1 0 0 1 494.4159 303.6382 cm +1 0 0 1 494.4159 301.137 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -343.7111 -22.5538 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -150.7048 -278.5832 cm +BT +/F29 9.9626 Tf 150.7048 278.5832 Td[(8)-925(Er)1(ror)-383(hand)1(l)-1(ing)]TJ +ET +1 0 0 1 240.0016 278.5832 cm +0 g 0 G +1 0 0 1 -240.0016 -278.5832 cm +BT +/F29 9.9626 Tf 482.959 278.5832 Td[(92)]TJ +ET +1 0 0 1 165.6488 266.2465 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -291.683 cm +1 0 0 1 -165.6488 -266.2465 cm BT -/F8 9.9626 Tf 165.6488 291.683 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 266.2465 Td[(psb)]TJ ET -1 0 0 1 181.2459 291.683 cm +1 0 0 1 181.2459 266.2465 cm q []0 d 0 J @@ -3509,31 +3590,64 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -291.683 cm +1 0 0 1 -181.2459 -266.2465 cm BT -/F8 9.9626 Tf 184.2347 291.683 Td[(error)]TJ +/F8 9.9626 Tf 184.2347 266.2465 Td[(errp)1(ush)]TJ ET -1 0 0 1 205.35 291.683 cm +1 0 0 1 217.0008 266.2465 cm 0 g 0 G -1 0 0 1 -205.35 -291.683 cm +1 0 0 1 -217.0008 -266.2465 cm BT -/F8 9.9626 Tf 215.1843 291.683 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 222.9329 266.2465 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ ET -1 0 0 1 484.4533 291.683 cm +1 0 0 1 484.4533 266.2465 cm 0 g 0 G -1 0 0 1 -484.4533 -291.683 cm +1 0 0 1 -484.4533 -266.2465 cm BT -/F8 9.9626 Tf 484.4533 291.683 Td[(93)]TJ +/F8 9.9626 Tf 484.4533 266.2465 Td[(94)]TJ ET -1 0 0 1 494.4159 291.683 cm +1 0 0 1 494.4159 266.2465 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -165.6488 -253.9098 cm +BT +/F8 9.9626 Tf 165.6488 253.9098 Td[(psb)]TJ +ET +1 0 0 1 181.2459 253.9098 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -181.2459 -253.9098 cm +BT +/F8 9.9626 Tf 184.2347 253.9098 Td[(error)]TJ +ET +1 0 0 1 205.35 253.9098 cm +0 g 0 G +1 0 0 1 -205.35 -253.9098 cm +BT +/F8 9.9626 Tf 215.1843 253.9098 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)]TJ +ET +1 0 0 1 484.4533 253.9098 cm +0 g 0 G +1 0 0 1 -484.4533 -253.9098 cm +BT +/F8 9.9626 Tf 484.4533 253.9098 Td[(95)]TJ +ET +1 0 0 1 494.4159 253.9098 cm +0 g 0 G +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -279.7278 cm +1 0 0 1 -165.6488 -241.5731 cm BT -/F8 9.9626 Tf 165.6488 279.7278 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 241.5731 Td[(psb)]TJ ET -1 0 0 1 181.2459 279.7278 cm +1 0 0 1 181.2459 241.5731 cm q []0 d 0 J @@ -3542,11 +3656,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -279.7278 cm +1 0 0 1 -181.2459 -241.5731 cm BT -/F8 9.9626 Tf 184.2347 279.7278 Td[(se)-1(t)]TJ +/F8 9.9626 Tf 184.2347 241.5731 Td[(se)-1(t)]TJ ET -1 0 0 1 197.0644 279.7278 cm +1 0 0 1 197.0644 241.5731 cm q []0 d 0 J @@ -3555,31 +3669,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -197.0644 -279.7278 cm +1 0 0 1 -197.0644 -241.5731 cm BT -/F8 9.9626 Tf 200.0532 279.7278 Td[(errv)28(erb)-27(os)-1(i)1(t)27(y)]TJ +/F8 9.9626 Tf 200.0532 241.5731 Td[(errv)28(erb)-27(os)-1(i)1(t)27(y)]TJ ET -1 0 0 1 251.9421 279.7278 cm +1 0 0 1 251.9421 241.5731 cm 0 g 0 G -1 0 0 1 -251.9421 -279.7278 cm +1 0 0 1 -251.9421 -241.5731 cm BT -/F8 9.9626 Tf 261.676 279.7278 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 261.676 241.5731 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ ET -1 0 0 1 484.4533 279.7278 cm +1 0 0 1 484.4533 241.5731 cm 0 g 0 G -1 0 0 1 -484.4533 -279.7278 cm +1 0 0 1 -484.4533 -241.5731 cm BT -/F8 9.9626 Tf 484.4533 279.7278 Td[(94)]TJ +/F8 9.9626 Tf 484.4533 241.5731 Td[(96)]TJ ET -1 0 0 1 494.4159 279.7278 cm +1 0 0 1 494.4159 241.5731 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -267.7726 cm +1 0 0 1 -165.6488 -229.2364 cm BT -/F8 9.9626 Tf 165.6488 267.7726 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 229.2364 Td[(psb)]TJ ET -1 0 0 1 181.2459 267.7726 cm +1 0 0 1 181.2459 229.2364 cm q []0 d 0 J @@ -3588,11 +3702,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -267.7726 cm +1 0 0 1 -181.2459 -229.2364 cm BT -/F8 9.9626 Tf 184.2347 267.7726 Td[(se)-1(t)]TJ +/F8 9.9626 Tf 184.2347 229.2364 Td[(se)-1(t)]TJ ET -1 0 0 1 197.0644 267.7726 cm +1 0 0 1 197.0644 229.2364 cm q []0 d 0 J @@ -3601,31 +3715,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -197.0644 -267.7726 cm +1 0 0 1 -197.0644 -229.2364 cm BT -/F8 9.9626 Tf 200.0532 267.7726 Td[(erraction)]TJ +/F8 9.9626 Tf 200.0532 229.2364 Td[(erraction)]TJ ET -1 0 0 1 238.8522 267.7726 cm +1 0 0 1 238.8522 229.2364 cm 0 g 0 G -1 0 0 1 -238.8522 -267.7726 cm +1 0 0 1 -238.8522 -229.2364 cm BT -/F8 9.9626 Tf 246.1787 267.7726 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)]TJ +/F8 9.9626 Tf 246.1787 229.2364 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 267.7726 cm +1 0 0 1 484.4533 229.2364 cm 0 g 0 G -1 0 0 1 -484.4533 -267.7726 cm +1 0 0 1 -484.4533 -229.2364 cm BT -/F8 9.9626 Tf 484.4533 267.7726 Td[(95)]TJ +/F8 9.9626 Tf 484.4533 229.2364 Td[(97)]TJ ET -1 0 0 1 494.4159 267.7726 cm +1 0 0 1 494.4159 229.2364 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -255.8175 cm +1 0 0 1 -165.6488 -216.8997 cm BT -/F8 9.9626 Tf 165.6488 255.8175 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 216.8997 Td[(psb)]TJ ET -1 0 0 1 181.2459 255.8175 cm +1 0 0 1 181.2459 216.8997 cm q []0 d 0 J @@ -3634,55 +3748,56 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -255.8175 cm +1 0 0 1 -181.2459 -216.8997 cm BT -/F8 9.9626 Tf 184.2347 255.8175 Td[(errcom)-1(m)]TJ +/F8 9.9626 Tf 184.2347 216.8997 Td[(errcom)-1(m)]TJ ET -1 0 0 1 222.4803 255.8175 cm +1 0 0 1 222.4803 216.8997 cm 0 g 0 G -1 0 0 1 -222.4803 -255.8175 cm +1 0 0 1 -222.4803 -216.8997 cm BT -/F8 9.9626 Tf 230.6815 255.8175 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 230.6815 216.8997 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 484.4533 255.8175 cm +1 0 0 1 484.4533 216.8997 cm 0 g 0 G -1 0 0 1 -484.4533 -255.8175 cm +1 0 0 1 -484.4533 -216.8997 cm BT -/F8 9.9626 Tf 484.4533 255.8175 Td[(96)]TJ +/F8 9.9626 Tf 484.4533 216.8997 Td[(98)]TJ ET -1 0 0 1 494.4159 255.8175 cm +1 0 0 1 494.4159 216.8997 cm 0 g 0 G -1 0 0 1 -343.7111 -21.9178 cm +1 0 0 1 -343.7111 -22.5538 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -150.7048 -233.8997 cm +1 0 0 1 -150.7048 -194.3459 cm BT -/F29 9.9626 Tf 150.7048 233.8997 Td[(9)-925(Util)-1(iti)-1(es)]TJ +/F29 9.9626 Tf 150.7048 194.3459 Td[(9)-925(Util)-1(iti)-1(es)]TJ ET -1 0 0 1 205.8741 233.8997 cm +1 0 0 1 205.8741 194.3459 cm 0 g 0 G -1 0 0 1 -205.8741 -233.8997 cm +1 0 0 1 -205.8741 -194.3459 cm BT -/F29 9.9626 Tf 482.959 233.8997 Td[(97)]TJ +/F29 9.9626 Tf 482.959 194.3459 Td[(99)]TJ ET -1 0 0 1 150.7048 211.9818 cm +1 0 0 1 165.6488 182.0092 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -150.7048 -211.9818 cm -BT -/F29 9.9626 Tf 150.7048 211.9818 Td[(10)-350(Preconditi)-1(oner)-383(r)1(outi)-1(nes)]TJ -ET -1 0 0 1 284.2881 211.9818 cm -0 g 0 G -1 0 0 1 -284.2881 -211.9818 cm +1 0 0 1 -165.6488 -182.0092 cm BT -/F29 9.9626 Tf 482.959 211.9818 Td[(98)]TJ +/F8 9.9626 Tf 165.6488 182.0092 Td[(PS)1(B)]TJ ET -1 0 0 1 165.6488 200.0267 cm -0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -200.0267 cm +1 0 0 1 185.6184 182.0092 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -185.6184 -182.0092 cm BT -/F8 9.9626 Tf 165.6488 200.0267 Td[(psb)]TJ +/F8 9.9626 Tf 188.6072 182.0092 Td[(HBIO)]TJ ET -1 0 0 1 181.2459 200.0267 cm +1 0 0 1 215.0802 182.0092 cm q []0 d 0 J @@ -3691,31 +3806,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -200.0267 cm +1 0 0 1 -215.0802 -182.0092 cm BT -/F8 9.9626 Tf 184.2347 200.0267 Td[(pr)1(e)-1(cs)-1(et)]TJ +/F8 9.9626 Tf 218.0691 182.0092 Td[(MO)1(D)]TJ ET -1 0 0 1 214.7592 200.0267 cm +1 0 0 1 242.5606 182.0092 cm 0 g 0 G -1 0 0 1 -214.7592 -200.0267 cm +1 0 0 1 -242.5606 -182.0092 cm BT -/F8 9.9626 Tf 222.9329 200.0267 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 246.1787 182.0092 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)]TJ ET -1 0 0 1 484.4533 200.0267 cm +1 0 0 1 479.4719 182.0092 cm 0 g 0 G -1 0 0 1 -484.4533 -200.0267 cm +1 0 0 1 -479.4719 -182.0092 cm BT -/F8 9.9626 Tf 484.4533 200.0267 Td[(99)]TJ +/F8 9.9626 Tf 479.4719 182.0092 Td[(100)]TJ ET -1 0 0 1 494.4159 200.0267 cm +1 0 0 1 494.4159 182.0092 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -188.0715 cm +1 0 0 1 -165.6488 -169.6725 cm BT -/F8 9.9626 Tf 165.6488 188.0715 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 169.6725 Td[(h)28(b)]TJ ET -1 0 0 1 181.2459 188.0715 cm +1 0 0 1 177.0394 169.6725 cm q []0 d 0 J @@ -3724,31 +3839,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -188.0715 cm +1 0 0 1 -177.0394 -169.6725 cm BT -/F8 9.9626 Tf 184.2347 188.0715 Td[(pr)1(e)-1(cbl)1(d)]TJ +/F8 9.9626 Tf 180.0283 169.6725 Td[(read)]TJ ET -1 0 0 1 216.3643 188.0715 cm +1 0 0 1 198.8743 169.6725 cm 0 g 0 G -1 0 0 1 -216.3643 -188.0715 cm +1 0 0 1 -198.8743 -169.6725 cm BT -/F8 9.9626 Tf 222.9329 188.0715 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 169.6725 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 479.4719 188.0715 cm +1 0 0 1 479.4719 169.6725 cm 0 g 0 G -1 0 0 1 -479.4719 -188.0715 cm +1 0 0 1 -479.4719 -169.6725 cm BT -/F8 9.9626 Tf 479.4719 188.0715 Td[(100)]TJ +/F8 9.9626 Tf 479.4719 169.6725 Td[(100)]TJ ET -1 0 0 1 494.4159 188.0715 cm +1 0 0 1 494.4159 169.6725 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -176.1163 cm +1 0 0 1 -165.6488 -157.3358 cm BT -/F8 9.9626 Tf 165.6488 176.1163 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 157.3358 Td[(h)28(b)]TJ ET -1 0 0 1 181.2459 176.1163 cm +1 0 0 1 177.0394 157.3358 cm q []0 d 0 J @@ -3757,31 +3872,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -176.1163 cm +1 0 0 1 -177.0394 -157.3358 cm BT -/F8 9.9626 Tf 184.2347 176.1163 Td[(pr)1(e)-1(capl)1(y)]TJ +/F8 9.9626 Tf 180.0283 157.3358 Td[(write)]TJ ET -1 0 0 1 221.0689 176.1163 cm +1 0 0 1 202.1952 157.3358 cm 0 g 0 G -1 0 0 1 -221.0689 -176.1163 cm +1 0 0 1 -202.1952 -157.3358 cm BT -/F8 9.9626 Tf 230.6815 176.1163 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 207.4357 157.3358 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 479.4719 176.1163 cm +1 0 0 1 479.4719 157.3358 cm 0 g 0 G -1 0 0 1 -479.4719 -176.1163 cm +1 0 0 1 -479.4719 -157.3358 cm BT -/F8 9.9626 Tf 479.4719 176.1163 Td[(101)]TJ +/F8 9.9626 Tf 479.4719 157.3358 Td[(101)]TJ ET -1 0 0 1 494.4159 176.1163 cm +1 0 0 1 494.4159 157.3358 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -164.1612 cm +1 0 0 1 -165.6488 -144.9991 cm BT -/F8 9.9626 Tf 165.6488 164.1612 Td[(psb)]TJ +/F8 9.9626 Tf 165.6488 144.9991 Td[(PS)1(B)]TJ ET -1 0 0 1 181.2459 164.1612 cm +1 0 0 1 185.6184 144.9991 cm q []0 d 0 J @@ -3790,11 +3905,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -164.1612 cm +1 0 0 1 -185.6184 -144.9991 cm BT -/F8 9.9626 Tf 184.2347 164.1612 Td[(pr)1(e)-1(c)]TJ +/F8 9.9626 Tf 188.6072 144.9991 Td[(MM)1(IO)]TJ ET -1 0 0 1 203.125 164.1612 cm +1 0 0 1 218.8162 144.9991 cm q []0 d 0 J @@ -3803,43 +3918,90 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -203.125 -164.1612 cm +1 0 0 1 -218.8162 -144.9991 cm BT -/F8 9.9626 Tf 206.1138 164.1612 Td[(desc)-1(r)]TJ +/F8 9.9626 Tf 221.805 144.9991 Td[(MO)1(D)]TJ ET -1 0 0 1 228.3361 164.1612 cm +1 0 0 1 246.2966 144.9991 cm 0 g 0 G -1 0 0 1 -228.3361 -164.1612 cm +1 0 0 1 -246.2966 -144.9991 cm BT -/F8 9.9626 Tf 238.4301 164.1612 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 253.9274 144.9991 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)]TJ ET -1 0 0 1 479.4719 164.1612 cm +1 0 0 1 479.4719 144.9991 cm 0 g 0 G -1 0 0 1 -479.4719 -164.1612 cm +1 0 0 1 -479.4719 -144.9991 cm BT -/F8 9.9626 Tf 479.4719 164.1612 Td[(102)]TJ +/F8 9.9626 Tf 479.4719 144.9991 Td[(102)]TJ ET -1 0 0 1 494.4159 164.1612 cm +1 0 0 1 494.4159 144.9991 cm 0 g 0 G -1 0 0 1 -343.7111 -21.9178 cm +1 0 0 1 -328.7671 -12.3367 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -150.7048 -142.2434 cm -BT -/F29 9.9626 Tf 150.7048 142.2434 Td[(11)-350(Iterati)-1(v)32(e)-383(Metho)-32(ds)]TJ -ET -1 0 0 1 256.3028 142.2434 cm -0 g 0 G -1 0 0 1 -256.3028 -142.2434 cm +1 0 0 1 -165.6488 -132.6624 cm BT -/F29 9.9626 Tf 477.2305 142.2434 Td[(103)]TJ +/F8 9.9626 Tf 165.6488 132.6624 Td[(mm)]TJ ET -1 0 0 1 165.6488 130.2882 cm +1 0 0 1 182.851 132.6624 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -182.851 -132.6624 cm +BT +/F8 9.9626 Tf 185.8398 132.6624 Td[(mat)]TJ +ET +1 0 0 1 203.5955 132.6624 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -203.5955 -132.6624 cm +BT +/F8 9.9626 Tf 206.5843 132.6624 Td[(read)]TJ +ET +1 0 0 1 225.4304 132.6624 cm +0 g 0 G +1 0 0 1 -225.4304 -132.6624 cm +BT +/F8 9.9626 Tf 230.6815 132.6624 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +ET +1 0 0 1 479.4719 132.6624 cm +0 g 0 G +1 0 0 1 -479.4719 -132.6624 cm +BT +/F8 9.9626 Tf 479.4719 132.6624 Td[(102)]TJ +ET +1 0 0 1 494.4159 132.6624 cm +0 g 0 G +1 0 0 1 -328.7671 -12.3368 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -165.6488 -130.2882 cm +1 0 0 1 -165.6488 -120.3256 cm +BT +/F8 9.9626 Tf 165.6488 120.3256 Td[(mm)]TJ +ET +1 0 0 1 182.851 120.3256 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -182.851 -120.3256 cm BT -/F8 9.9626 Tf 165.6488 130.2882 Td[(psb)]TJ +/F8 9.9626 Tf 185.8398 120.3256 Td[(mat)]TJ ET -1 0 0 1 181.2459 130.2882 cm +1 0 0 1 203.5955 120.3256 cm q []0 d 0 J @@ -3848,25 +4010,25 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -181.2459 -130.2882 cm +1 0 0 1 -203.5955 -120.3256 cm BT -/F8 9.9626 Tf 184.2347 130.2882 Td[(kr)1(ylo)28(v)]TJ +/F8 9.9626 Tf 206.5843 120.3256 Td[(write)]TJ ET -1 0 0 1 214.7039 130.2882 cm +1 0 0 1 228.7512 120.3256 cm 0 g 0 G -1 0 0 1 -214.7039 -130.2882 cm +1 0 0 1 -228.7512 -120.3256 cm BT -/F8 9.9626 Tf 222.9329 130.2882 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 238.4301 120.3256 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 479.4719 130.2882 cm +1 0 0 1 479.4719 120.3256 cm 0 g 0 G -1 0 0 1 -479.4719 -130.2882 cm +1 0 0 1 -479.4719 -120.3256 cm BT -/F8 9.9626 Tf 479.4719 130.2882 Td[(104)]TJ +/F8 9.9626 Tf 479.4719 120.3256 Td[(102)]TJ ET -1 0 0 1 494.4159 130.2882 cm +1 0 0 1 494.4159 120.3256 cm 0 g 0 G -1 0 0 1 -343.7111 -39.8505 cm +1 0 0 1 -343.7111 -29.8879 cm 0 g 0 G 1 0 0 1 -150.7048 -90.4377 cm BT @@ -3876,493 +4038,784 @@ ET 0 g 0 G endstream endobj -429 0 obj << +461 0 obj << /Type /Page -/Contents 430 0 R -/Resources 428 0 R +/Contents 462 0 R +/Resources 460 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 379 0 R -/Annots [ 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R ] +/Parent 411 0 R +/Annots [ 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R ] >> endobj -432 0 obj << +464 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [164.6526 703.1954 210.9955 714.0436] /Subtype /Link /A << /S /GoTo /D (section*.65) >> >> endobj -433 0 obj << +465 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 691.2402 222.591 702.0885] +/Rect [164.6526 690.8587 222.591 701.7069] /Subtype /Link /A << /S /GoTo /D (section*.67) >> >> endobj -434 0 obj << +466 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 679.2851 205.2117 690.1333] +/Rect [164.6526 678.522 205.2117 689.3702] /Subtype /Link /A << /S /GoTo /D (section*.69) >> >> endobj -435 0 obj << +467 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 667.3299 206.9275 678.1781] +/Rect [164.6526 666.1853 206.9275 677.0335] /Subtype /Link /A << /S /GoTo /D (section*.72) >> >> endobj -436 0 obj << +468 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 655.3747 209.1414 666.2229] +/Rect [164.6526 653.8486 209.1414 664.6968] /Subtype /Link /A << /S /GoTo /D (section*.75) >> >> endobj -437 0 obj << +469 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 643.4196 210.4974 654.2678] +/Rect [164.6526 641.5118 210.4974 652.36] /Subtype /Link /A << /S /GoTo /D (section*.78) >> >> endobj -438 0 obj << +470 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 631.4644 204.1324 642.3126] +/Rect [164.6526 629.1751 204.1324 640.0233] /Subtype /Link /A << /S /GoTo /D (section*.80) >> >> endobj -439 0 obj << +471 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 619.5092 205.1563 630.3574] +/Rect [164.6526 616.8384 205.1563 627.6866] /Subtype /Link /A << /S /GoTo /D (section*.83) >> >> endobj -440 0 obj << +472 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 607.5541 206.8721 618.4023] +/Rect [164.6526 604.5017 206.8721 615.3499] /Subtype /Link /A << /S /GoTo /D (section*.85) >> >> endobj -441 0 obj << +473 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 595.5989 209.086 606.4471] +/Rect [164.6526 592.165 209.086 603.0132] /Subtype /Link /A << /S /GoTo /D (section*.88) >> >> endobj -442 0 obj << +474 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 583.6437 210.442 594.4919] +/Rect [164.6526 579.8283 210.442 590.6765] /Subtype /Link /A << /S /GoTo /D (section*.90) >> >> endobj -443 0 obj << +475 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 571.6886 202.9424 582.5368] +/Rect [164.6526 567.4916 202.9424 578.3398] /Subtype /Link /A << /S /GoTo /D (section*.92) >> >> endobj -444 0 obj << +476 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 559.7334 231.978 570.5816] +/Rect [164.6526 555.1548 231.978 566.003] /Subtype /Link /A << /S /GoTo /D (section*.94) >> >> endobj -445 0 obj << +477 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 547.7782 231.978 558.6264] +/Rect [164.6526 542.8181 231.978 553.6663] /Subtype /Link /A << /S /GoTo /D (section*.97) >> >> endobj -446 0 obj << +478 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 535.8231 243.6399 546.6713] +/Rect [164.6526 530.4814 243.6399 541.3296] /Subtype /Link /A << /S /GoTo /D (section*.99) >> >> endobj -447 0 obj << +479 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 523.8679 233.4005 534.7161] +/Rect [164.6526 518.1447 233.4005 528.9929] /Subtype /Link /A << /S /GoTo /D (section*.102) >> >> endobj -448 0 obj << +480 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [149.7086 503.8872 315.6771 512.7983] +/Rect [149.7086 497.5281 315.6771 506.4392] /Subtype /Link /A << /S /GoTo /D (section.7) >> >> endobj -449 0 obj << +481 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 489.9949 200.175 500.8431] +/Rect [164.6526 483.2542 200.175 494.1024] /Subtype /Link /A << /S /GoTo /D (section*.105) >> >> endobj -450 0 obj << +482 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 478.0397 201.5587 488.8879] +/Rect [164.6526 470.9175 201.5587 481.7657] /Subtype /Link /A << /S /GoTo /D (section*.108) >> >> endobj -451 0 obj << +483 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 466.0846 201.5587 476.9328] +/Rect [164.6526 458.5808 201.5587 469.429] /Subtype /Link /A << /S /GoTo /D (section*.111) >> >> endobj -452 0 obj << +484 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 454.1294 244.7192 464.9776] +/Rect [164.6526 446.2441 244.7192 457.0923] /Subtype /Link /A << /S /GoTo /D (section*.114) >> >> endobj -453 0 obj << +485 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 442.1742 221.7774 453.0224] +/Rect [164.6526 433.9074 221.7774 444.7556] /Subtype /Link /A << /S /GoTo /D (section*.116) >> >> endobj -454 0 obj << +486 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 430.2191 211.7981 441.0673] +/Rect [164.6526 421.5707 211.7981 432.4189] /Subtype /Link /A << /S /GoTo /D (section*.118) >> >> endobj -455 0 obj << +487 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 418.2639 214.6485 429.1121] +/Rect [164.6526 409.2339 214.6485 420.0821] /Subtype /Link /A << /S /GoTo /D (section*.120) >> >> endobj -456 0 obj << +488 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 406.3087 208.7816 417.1569] +/Rect [164.6526 396.8972 208.7816 407.7454] /Subtype /Link /A << /S /GoTo /D (section*.122) >> >> endobj -457 0 obj << +489 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 394.3536 208.2558 405.2018] +/Rect [164.6526 384.5605 208.2558 395.4087] /Subtype /Link /A << /S /GoTo /D (section*.124) >> >> endobj -458 0 obj << +490 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 382.3984 202.9977 393.2466] +/Rect [164.6526 372.2238 202.9977 383.072] /Subtype /Link /A << /S /GoTo /D (section*.126) >> >> endobj -459 0 obj << +491 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 370.4432 203.7726 381.2914] +/Rect [164.6526 359.8871 203.7726 370.7353] /Subtype /Link /A << /S /GoTo /D (section*.129) >> >> endobj -460 0 obj << +492 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 358.4881 204.0494 369.3363] +/Rect [164.6526 347.5504 201.8354 358.3986] /Subtype /Link /A << /S /GoTo /D (section*.132) >> >> endobj -461 0 obj << +493 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 346.5329 200.2303 357.3811] +/Rect [164.6526 335.2137 203.7726 346.0619] /Subtype /Link /A << /S /GoTo /D (section*.135) >> >> endobj -462 0 obj << +494 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 334.5777 198.819 345.4259] +/Rect [164.6526 322.8769 204.0494 333.7252] /Subtype /Link -/A << /S /GoTo /D (section*.137) >> +/A << /S /GoTo /D (section*.138) >> >> endobj -463 0 obj << +495 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [149.7086 312.6599 240.9978 323.5081] +/Rect [164.6526 310.5402 200.2303 321.3884] /Subtype /Link -/A << /S /GoTo /D (section.8) >> +/A << /S /GoTo /D (section*.141) >> >> endobj -464 0 obj << +496 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 300.7047 217.9971 311.5529] +/Rect [164.6526 298.2035 198.819 309.0517] /Subtype /Link -/A << /S /GoTo /D (section*.139) >> +/A << /S /GoTo /D (section*.143) >> >> endobj -465 0 obj << +497 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 288.7496 206.3463 299.5978] +/Rect [149.7086 275.6498 240.9978 286.498] /Subtype /Link -/A << /S /GoTo /D (section*.141) >> +/A << /S /GoTo /D (section.8) >> >> endobj -466 0 obj << +498 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 276.7944 252.9383 287.6426] +/Rect [164.6526 263.3131 217.9971 274.1613] /Subtype /Link -/A << /S /GoTo /D (section*.143) >> +/A << /S /GoTo /D (section*.145) >> >> endobj -467 0 obj << +499 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 264.8392 239.8485 275.6874] +/Rect [164.6526 250.9763 206.3463 261.8246] /Subtype /Link -/A << /S /GoTo /D (section*.145) >> +/A << /S /GoTo /D (section*.147) >> >> endobj -468 0 obj << +500 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 252.8841 223.4765 263.7323] +/Rect [164.6526 238.6396 252.9383 249.4878] /Subtype /Link -/A << /S /GoTo /D (section*.147) >> +/A << /S /GoTo /D (section*.149) >> >> endobj -469 0 obj << +501 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [149.7086 232.9034 206.8704 241.8144] +/Rect [164.6526 226.3029 239.8485 237.1511] /Subtype /Link -/A << /S /GoTo /D (section.9) >> +/A << /S /GoTo /D (section*.151) >> >> endobj -470 0 obj << +502 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [149.7086 210.9856 285.2843 219.8966] +/Rect [164.6526 213.9662 223.4765 224.8144] /Subtype /Link -/A << /S /GoTo /D (section.10) >> +/A << /S /GoTo /D (section*.153) >> >> endobj -471 0 obj << +503 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 197.0932 215.7554 207.9414] +/Rect [149.7086 193.3496 206.8704 202.2607] /Subtype /Link -/A << /S /GoTo /D (section*.149) >> +/A << /S /GoTo /D (section.9) >> >> endobj -472 0 obj << +504 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 185.1381 217.3606 195.9863] +/Rect [164.6526 181.0129 243.5569 189.8132] /Subtype /Link -/A << /S /GoTo /D (section*.152) >> +/A << /S /GoTo /D (section*.155) >> >> endobj -473 0 obj << +505 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 173.1829 222.0652 184.0311] +/Rect [164.6526 168.6762 199.8706 177.5872] /Subtype /Link -/A << /S /GoTo /D (section*.154) >> +/A << /S /GoTo /D (section*.156) >> >> endobj -474 0 obj << +506 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 161.2277 229.3323 172.0759] +/Rect [164.6526 156.3395 203.1914 165.2505] /Subtype /Link -/A << /S /GoTo /D (section*.156) >> +/A << /S /GoTo /D (section*.158) >> >> endobj -475 0 obj << +507 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [149.7086 141.2471 257.2991 150.1581] +/Rect [164.6526 144.0028 247.2929 152.8031] /Subtype /Link -/A << /S /GoTo /D (section.11) >> +/A << /S /GoTo /D (section*.160) >> >> endobj -476 0 obj << +508 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [164.6526 127.3547 215.7002 138.2029] +/Rect [164.6526 131.6661 226.4266 140.5771] /Subtype /Link -/A << /S /GoTo /D (section*.158) >> +/A << /S /GoTo /D (section*.161) >> >> endobj -431 0 obj << -/D [429 0 R /XYZ 150.7049 740.9981 null] +509 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [164.6526 119.3294 229.7475 127.9755] +/Subtype /Link +/A << /S /GoTo /D (section*.163) >> >> endobj -428 0 obj << -/Font << /F8 378 0 R /F29 375 0 R >> +463 0 obj << +/D [461 0 R /XYZ 150.7049 740.9981 null] +>> endobj +460 0 obj << +/Font << /F8 410 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -479 0 obj << -/Length 11215 +512 0 obj << +/Length 4932 >> stream 1 0 0 1 99.8954 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -443.6065 -740.9981 cm +1 0 0 1 -343.7111 -34.8692 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -99.8954 -706.1289 cm BT -/F18 14.3462 Tf 99.8954 706.1289 Td[(1)-1125(In)31(t)-1(ro)-32(ducti)-1(on)]TJ/F8 9.9626 Tf 0 -36.3521 Td[(The)-316(PS)1(B)-1(LAS)-315(li)1(brar)1(y)83(,)-319(d)1(e)-1(v)28(elop)-28(ed)-315(w)-1(i)1(th)-316(th)1(e)-316(aim)-316(to)-316(facili)1(tate)-316(the)-316(par)1(allelization)-316(of)]TJ 0 -11.9552 Td[(com)-1(p)1(utati)1(onally)-323(in)28(tensiv)28(e)-325(sc)-1(i)1(e)-1(n)28(t)1(i\014c)-324(app)1(lications,)-326(is)-324(des)-1(i)1(gned)-324(to)-324(ad)1(dres)-1(s)-324(par)1(allel)]TJ 0 -11.9552 Td[(impl)1(e)-1(me)-1(n)29(tation)-427(of)-427(i)1(te)-1(r)1(ativ)28(e)-428(solv)28(ers)-428(f)1(or)-427(s)-1(p)1(arse)-428(lin)1(e)-1(ar)-426(s)-1(ystem)-1(s)-427(throu)1(gh)-427(th)1(e)-428(di)1(s)-1(-)]TJ 0 -11.9551 Td[(tri)1(bu)1(te)-1(d)-284(mem)-1(or)1(y)-285(p)1(arad)1(igm.)-428(It)-285(i)1(nclud)1(e)-1(s)-285(r)1(outin)1(e)-1(s)-284(for)-284(m)28(ulti)1(plyi)1(ng)-284(s)-1(p)1(arse)-285(matrice)-1(s)]TJ 0 -11.9552 Td[(b)28(y)-342(dense)-344(matri)1(c)-1(es)-1(,)-345(solvi)1(ng)-343(b)1(lo)-28(c)27(k)-342(diagon)1(al)-343(syste)-1(ms)-343(with)-343(t)1(rian)1(gular)-342(diagon)1(al)-343(en-)]TJ 0 -11.9552 Td[(tri)1(e)-1(s,)-350(p)1(repro)-27(c)-1(es)-1(sing)-346(s)-1(p)1(arse)-347(matrice)-1(s,)-350(an)1(d)-346(c)-1(on)28(t)1(ains)-347(ad)1(dit)1(ional)-346(rou)1(tines)-347(f)1(or)-347(d)1(e)-1(n)1(s)-1(e)]TJ 0 -11.9551 Td[(matrix)-439(op)-27(e)-1(r)1(ations.)-762(T)-1(h)1(e)-440(curr)1(e)-1(n)28(t)-439(impl)1(e)-1(me)-1(n)29(tation)-439(of)-439(P)1(SBLAS)-439(add)1(res)-1(se)-1(s)-440(a)-439(di)1(s)-1(-)]TJ 0 -11.9552 Td[(tri)1(bu)1(te)-1(d)-333(mem)-1(or)1(y)-334(exec)-1(u)1(tion)-333(mo)-28(del)-333(op)-27(e)-1(rat)1(ing)-333(with)-333(me)-1(ss)-1(age)-333(pass)-1(in)1(g.)]TJ 14.944 -19.7631 Td[(The)-382(PS)1(BL)-1(AS)-381(li)1(brar)1(y)-382(is)-382(in)29(te)-1(rn)1(ally)-381(impleme)-1(n)28(ted)-381(in)-382(a)-381(m)-1(i)1(xtur)1(e)-383(of)-381(F)84(ortran)-381(77)]TJ -14.944 -11.9552 Td[(and)-271(F)83(ort)1(ran)-272(95)-272([)]TJ +/F29 9.9626 Tf 99.8954 706.1289 Td[(10)-350(Preconditi)-1(oner)-383(r)1(outi)-1(nes)]TJ ET -1 0 0 1 169.6643 554.3723 cm -0 1 0 rg 0 1 0 RG -1 0 0 1 -169.6643 -554.3723 cm +1 0 0 1 233.4786 706.1289 cm +0 g 0 G +1 0 0 1 -233.4786 -706.1289 cm BT -/F8 9.9626 Tf 169.6643 554.3723 Td[(21)]TJ +/F29 9.9626 Tf 426.421 706.1289 Td[(104)]TJ ET -1 0 0 1 179.627 554.3723 cm -0 g 0 G -1 0 0 1 -179.627 -554.3723 cm +1 0 0 1 114.8394 694.1737 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -114.8394 -694.1737 cm BT -/F8 9.9626 Tf 179.627 554.3723 Td[(])-272(pr)1(ogramm)-1(i)1(ng)-272(langu)1(age)-1(s.)-424(A)-272(s)-1(i)1(m)-1(il)1(ar)-272(app)1(roac)27(h)-272(h)1(as)-273(b)-27(e)-1(en)-272(adv)28(o-)]TJ -79.7316 -11.9552 Td[(cate)-1(d)-355(b)28(y)-355(a)-356(n)29(um)28(b)-28(er)-355(of)-356(au)1(thor)1(s)-1(,)-361(e.g.)-355([)]TJ +/F8 9.9626 Tf 114.8394 694.1737 Td[(psb)]TJ ET -1 0 0 1 257.6925 542.4172 cm -0 1 0 rg 0 1 0 RG -1 0 0 1 -257.6925 -542.4172 cm +1 0 0 1 130.4364 694.1737 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -130.4364 -694.1737 cm BT -/F8 9.9626 Tf 257.6925 542.4172 Td[(20)]TJ +/F8 9.9626 Tf 133.4253 694.1737 Td[(pr)1(e)-1(cs)-1(et)]TJ ET -1 0 0 1 267.6552 542.4172 cm +1 0 0 1 163.9497 694.1737 cm 0 g 0 G -1 0 0 1 -267.6552 -542.4172 cm +1 0 0 1 -163.9497 -694.1737 cm BT -/F8 9.9626 Tf 267.6552 542.4172 Td[(].)-511(M)1(oreo)27(v)28(er,)-361(th)1(e)-356(F)83(or)1(tran)-355(95)-355(facilities)-356(for)]TJ -167.7598 -11.9552 Td[(dy)1(namic)-440(me)-1(mory)-439(m)-1(an)1(age)-1(men)28(t)-440(an)1(d)-439(in)28(terf)1(ac)-1(e)-440(o)28(v)28(e)-1(r)1(loadi)1(ng)-439(gre)-1(at)1(ly)-440(enh)1(ance)-440(the)]TJ 0 -11.9552 Td[(usabi)1(lit)28(y)-435(of)-435(th)1(e)-436(PS)1(B)-1(LAS)-434(s)-1(u)1(brou)1(tin)1(e)-1(s.)-750(In)-435(this)-435(w)27(a)28(y)84(,)-461(th)1(e)-436(lib)1(rary)-435(can)-435(tak)28(e)-436(care)]TJ 0 -11.9551 Td[(of)-378(ru)1(n)28(time)-379(mem)-1(or)1(y)-378(re)-1(q)1(uir)1(e)-1(me)-1(n)29(ts)-379(th)1(at)-379(ar)1(e)-379(qu)1(ite)-379(d)1(i\016c)-1(u)1(lt)-378(or)-378(e)-1(v)28(en)-378(imp)-27(os)-1(sibl)1(e)-379(to)]TJ 0 -11.9552 Td[(pr)1(e)-1(d)1(ict)-381(at)-381(imp)1(le)-1(men)28(tation)-380(or)-381(compil)1(ation)-380(time)-1(.)-586(I)-1(n)-380(th)1(e)-382(cur)1(ren)28(t)-381(r)1(e)-1(leas)-1(e)-381(w)28(e)-381(re)-1(l)1(y)]TJ 0 -11.9552 Td[(on)-283(the)-284(a)28(v)56(ailab)1(ilit)28(y)-283(of)-284(t)1(he)-284(s)-1(o-called)-284(al)1(lo)-28(catable)-284(extensions,)-294(sp)-27(e)-1(ci\014ed)-283(in)-283(T)-1(R)-283(15581.)]TJ 0 -11.9551 Td[(St)1(rictly)-353(s)-1(p)-27(eaking)-353(th)1(e)-1(y)-353(are)-353(outside)-354(t)1(he)-354(F)84(ortr)1(an)-353(95)-354(stand)1(ard)1(;)-364(h)1(o)28(w)27(ev)28(e)-1(r)-353(th)1(e)-1(y)-353(h)1(a)27(v)28(e)]TJ 0 -11.9552 Td[(b)-27(e)-1(en)-337(inclu)1(ded)-337(in)-337(th)1(e)-338(F)83(or)1(tran)-337(2003)-337(langu)1(age)-338(s)-1(tan)1(dar)1(d,)-338(and)-337(ar)1(e)-338(a)28(v)55(ai)1(labl)1(e)-338(in)-337(pr)1(c)-1(-)]TJ 0 -11.9552 Td[(tically)-470(all)-470(F)84(ortran)-470(95)-470(c)-1(ompi)1(le)-1(r)1(s)-471(on)-470(the)-471(mark)28(et,)-505(i)1(nclud)1(ing)-470(the)-471(G)1(C)-1(C)-470(c)-1(omp)1(iler)]TJ 0 -11.9551 Td[(fr)1(om)-336(th)1(e)-336(F)84(ree)-336(S)1(oft)28(w)28(are)-336(F)84(oun)1(dation)-334(\050as)-336(of)-334(v)28(e)-1(r)1(s)-1(ion)-334(4.2\051.)-450(Th)1(e)-336(pr)1(e)-1(se)-1(n)29(tation)-335(of)-334(the)]TJ 0 -11.9552 Td[(PS)1(BLAS)-370(lib)1(rary)-370(f)1(ollo)28(ws)-371(th)1(e)-371(general)-370(structur)1(e)-371(of)-370(t)1(he)-371(p)1(rop)-27(os)-1(al)-370(f)1(or)-370(s)-1(eri)1(al)-370(Spar)1(s)-1(e)]TJ 0 -11.9552 Td[(BLAS)-391([)]TJ +/F8 9.9626 Tf 172.1235 694.1737 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ ET -1 0 0 1 132.8493 410.9103 cm -0 1 0 rg 0 1 0 RG -1 0 0 1 -132.8493 -410.9103 cm +1 0 0 1 428.6625 694.1737 cm +0 g 0 G +1 0 0 1 -428.6625 -694.1737 cm BT -/F8 9.9626 Tf 132.8493 410.9103 Td[(15)]TJ +/F8 9.9626 Tf 428.6625 694.1737 Td[(105)]TJ ET -1 0 0 1 142.812 410.9103 cm +1 0 0 1 443.6065 694.1737 cm 0 g 0 G -1 0 0 1 -142.812 -410.9103 cm +1 0 0 1 -328.7671 -11.9552 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -114.8394 -682.2185 cm BT -/F8 9.9626 Tf 142.812 410.9103 Td[(,)]TJ +/F8 9.9626 Tf 114.8394 682.2185 Td[(psb)]TJ ET -1 0 0 1 149.4755 410.9103 cm -0 1 0 rg 0 1 0 RG -1 0 0 1 -149.4755 -410.9103 cm +1 0 0 1 130.4364 682.2185 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -130.4364 -682.2185 cm BT -/F8 9.9626 Tf 149.4755 410.9103 Td[(16)]TJ +/F8 9.9626 Tf 133.4253 682.2185 Td[(pr)1(e)-1(cbl)1(d)]TJ ET -1 0 0 1 159.4382 410.9103 cm +1 0 0 1 165.5548 682.2185 cm 0 g 0 G -1 0 0 1 -159.4382 -410.9103 cm +1 0 0 1 -165.5548 -682.2185 cm BT -/F8 9.9626 Tf 159.4382 410.9103 Td[(],)-405(whic)28(h)-391(in)-390(its)-392(t)1(urn)-390(is)-392(b)1(as)-1(ed)-391(on)-390(the)-391(prop)-27(osal)-391(for)-390(B)-1(LAS)-390(on)-391(dense)]TJ -59.5428 -11.9552 Td[(matrice)-1(s)-333([)]TJ +/F8 9.9626 Tf 172.1235 682.2185 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ ET -1 0 0 1 142.5964 398.9551 cm -0 1 0 rg 0 1 0 RG -1 0 0 1 -142.5964 -398.9551 cm +1 0 0 1 428.6625 682.2185 cm +0 g 0 G +1 0 0 1 -428.6625 -682.2185 cm BT -/F8 9.9626 Tf 142.5964 398.9551 Td[(1)]TJ +/F8 9.9626 Tf 428.6625 682.2185 Td[(106)]TJ ET -1 0 0 1 147.5778 398.9551 cm +1 0 0 1 443.6065 682.2185 cm 0 g 0 G -1 0 0 1 -147.5778 -398.9551 cm +1 0 0 1 -328.7671 -11.9552 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -114.8394 -670.2633 cm BT -/F8 9.9626 Tf 147.5778 398.9551 Td[(,)]TJ +/F8 9.9626 Tf 114.8394 670.2634 Td[(psb)]TJ ET -1 0 0 1 153.6661 398.9551 cm -0 1 0 rg 0 1 0 RG -1 0 0 1 -153.6661 -398.9551 cm +1 0 0 1 130.4364 670.2634 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -130.4364 -670.2634 cm BT -/F8 9.9626 Tf 153.6661 398.9551 Td[(2)]TJ +/F8 9.9626 Tf 133.4253 670.2634 Td[(pr)1(e)-1(capl)1(y)]TJ ET -1 0 0 1 158.6474 398.9551 cm +1 0 0 1 170.2594 670.2634 cm 0 g 0 G -1 0 0 1 -158.6474 -398.9551 cm -BT -/F8 9.9626 Tf 158.6474 398.9551 Td[(,)]TJ -ET -1 0 0 1 164.7357 398.9551 cm -0 1 0 rg 0 1 0 RG -1 0 0 1 -164.7357 -398.9551 cm +1 0 0 1 -170.2594 -670.2634 cm BT -/F8 9.9626 Tf 164.7357 398.9551 Td[(3)]TJ +/F8 9.9626 Tf 179.8721 670.2634 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 169.717 398.9551 cm +1 0 0 1 428.6625 670.2634 cm 0 g 0 G -1 0 0 1 -169.717 -398.9551 cm +1 0 0 1 -428.6625 -670.2634 cm BT -/F8 9.9626 Tf 169.717 398.9551 Td[(].)]TJ -54.8776 -19.763 Td[(The)-403(app)1(licabili)1(t)28(y)-403(of)-403(sparse)-403(ite)-1(r)1(ativ)28(e)-403(s)-1(olv)28(ers)-403(to)-403(m)-1(an)29(y)-403(di\013eren)28(t)-403(areas)-404(cause)-1(s)]TJ -14.944 -11.9552 Td[(som)-1(e)-317(termin)1(ology)-316(pr)1(oblem)-1(s)-316(b)-28(ec)-1(au)1(s)-1(e)-316(the)-317(sam)-1(e)-316(c)-1(on)1(c)-1(ept)-316(ma)27(y)-316(b)-27(e)-317(denot)1(e)-1(d)-316(th)1(rough)]TJ 0 -11.9552 Td[(di)1(\013)-1(eren)28(t)-342(n)1(am)-1(es)-342(dep)-28(end)1(ing)-342(on)-341(the)-342(ap)1(plication)-341(area.)-470(The)-342(PS)1(B)-1(LAS)-341(featur)1(e)-1(s)-342(pr)1(e)-1(-)]TJ 0 -11.9551 Td[(se)-1(n)28(ted)-450(i)1(n)-450(th)1(is)-451(d)1(o)-28(cume)-1(n)29(t)-450(w)-1(i)1(ll)-450(b)-27(e)-451(d)1(isc)-1(u)1(s)-1(se)-1(d)-449(re)-1(f)1(e)-1(r)1(rin)1(g)-450(to)-450(a)-450(\014n)1(ite)-450(di\013ere)-1(n)1(c)-1(e)-450(di)1(s)-1(-)]TJ 0 -11.9552 Td[(cre)-1(t)1(iz)-1(ati)1(on)-329(of)-329(a)-329(P)28(art)1(ial)-329(Di\013e)-1(r)1(e)-1(n)28(t)1(ial)-329(Equ)1(ation)-329(\050P)1(DE\051)1(.)-329(Ho)27(w)28(e)-1(v)28(er,)-329(the)-330(scop)-28(e)-329(of)-329(the)]TJ 0 -11.9552 Td[(lib)1(rar)1(y)-345(is)-345(wid)1(e)-1(r)-344(th)1(an)-345(th)1(at:)-467(f)1(or)-345(example,)-347(it)-345(can)-344(b)-27(e)-346(ap)1(pl)1(ie)-1(d)-344(to)-344(\014ni)1(te)-345(e)-1(l)1(e)-1(me)-1(n)29(t)-345(di)1(s)-1(-)]TJ 0 -11.9551 Td[(cre)-1(t)1(iz)-1(ati)1(ons)-278(of)-278(P)1(DEs,)-289(and)-277(e)-1(v)28(en)-278(to)-278(d)1(i\013e)-1(ren)28(t)-278(class)-1(es)-279(of)-277(pr)1(oblem)-1(s)-278(s)-1(u)1(c)27(h)-277(as)-279(n)1(onli)1(near)]TJ 0 -11.9552 Td[(opt)1(im)-1(i)1(z)-1(ati)1(on,)-333(for)-333(example)-333(in)-333(opti)1(m)-1(al)-333(con)28(trol)-333(p)1(rob)1(le)-1(ms.)]TJ 14.944 -19.7631 Td[(The)-489(des)-1(ign)-488(of)-489(a)-489(solv)28(e)-1(r)-488(for)-489(spar)1(s)-1(e)-489(linear)-489(syste)-1(ms)-490(i)1(s)-490(dr)1(iv)28(en)-489(b)28(y)-489(man)28(y)-489(con-)]TJ -14.944 -11.9552 Td[(\015i)1(c)-1(ti)1(ng)-385(ob)-55(j)1(e)-1(ctiv)28(es)-1(,)-397(suc)28(h)-384(as)-385(limitin)1(g)-385(o)-28(ccupat)1(ion)-384(of)-384(s)-1(tor)1(age)-385(res)-1(ou)1(rc)-1(es,)-398(exp)1(loitin)1(g)]TJ 0 -11.9551 Td[(regul)1(arities)-433(in)-432(the)-433(in)1(put)-432(data,)-457(e)-1(x)1(ploi)1(ting)-432(hard)1(w)27(ar)1(e)-434(c)28(har)1(ac)-1(teristics)-434(of)-432(th)1(e)-434(p)1(ar-)]TJ 0 -11.9552 Td[(allel)-370(p)1(latf)1(orm.)-554(T)83(o)-370(ac)27(h)1(ie)-1(v)28(e)-370(an)-369(optimal)-370(com)-1(m)28(un)1(ication)-370(t)1(o)-370(c)-1(ompu)1(tation)-369(ratio)-370(on)]TJ 0 -11.9552 Td[(di)1(s)-1(tr)1(ibu)1(te)-1(d)-338(m)-1(em)-1(or)1(y)-339(m)-1(ac)28(hin)1(e)-1(s)-340(i)1(t)-340(i)1(s)-340(e)-1(ss)-1(en)28(ti)1(al)-340(t)1(o)-340(k)28(ee)-1(p)-339(t)1(he)]TJ/F19 9.9626 Tf 244.6801 0 Td[(data)-364(l)1(o)51(c)51(ality)]TJ/F8 9.9626 Tf 55.6288 0 Td[(as)-340(h)1(igh)-339(as)]TJ -300.3089 -11.9551 Td[(p)-27(os)-1(sibl)1(e)-1(;)-307(t)1(his)-294(c)-1(an)-293(b)-27(e)-295(d)1(one)-294(thr)1(ough)-293(an)-294(ap)1(prop)1(riat)1(e)-295(d)1(ata)-294(allo)-27(c)-1(ation)-293(strategy)83(.)-431(The)]TJ 0 -11.9552 Td[(c)27(h)1(oice)-400(of)-398(the)-399(precondi)1(tioner)-399(i)1(s)-400(an)1(other)-399(v)28(ery)-399(imp)-27(ortan)28(t)-399(f)1(ac)-1(t)1(or)-399(that)-398(a\013)-1(ec)-1(ts)-399(e\016)-1(-)]TJ 0 -11.9552 Td[(cie)-1(n)1(c)-1(y)-311(of)-311(the)-312(impleme)-1(n)28(t)1(e)-1(d)-311(app)1(lication.)-437(O)1(ptimal)-311(data)-312(d)1(istrib)1(ution)-311(requ)1(irem)-1(en)28(ts)]TJ 0 -11.9551 Td[(for)-248(a)-250(gi)1(v)28(e)-1(n)-249(p)1(rec)-1(on)1(diti)1(oner)-249(m)-1(a)28(y)-249(con\015)1(ic)-1(t)-249(with)-249(d)1(istrib)1(uti)1(on)-249(requi)1(re)-1(men)28(ts)-250(of)-249(t)1(he)-250(r)1(e)-1(st)]TJ 0 -11.9552 Td[(of)-367(the)-368(solv)28(e)-1(r)1(.)-548(Fi)1(ndi)1(ng)-368(th)1(e)-368(optimal)-367(trade-o\013)-369(ma)28(y)-368(b)-27(e)-368(v)28(e)-1(r)1(y)-368(d)1(i\016)-1(cul)1(t)-368(b)-27(e)-1(cause)-368(it)-368(is)]TJ 0 -11.9552 Td[(app)1(lication)-270(dep)-27(e)-1(n)1(den)28(t.)-423(P)28(os)-1(sib)1(le)-271(s)-1(ol)1(ution)-270(to)-271(t)1(hes)-1(e)-271(pr)1(oblems)-271(and)-270(other)-270(im)-1(p)-27(ort)1(an)28(t)]TJ 0 -11.9551 Td[(in)1(pu)1(ts)-352(to)-351(th)1(e)-352(dev)28(elopme)-1(n)29(t)-351(of)-351(the)-351(PS)1(B)-1(LAS)-350(s)-1(of)1(t)28(w)27(are)-351(pac)28(k)55(age)-351(has)-351(c)-1(ome)-352(f)1(rom)-352(an)]TJ 0 -11.9552 Td[(es)-1(tab)1(lished)-366(exp)-27(e)-1(r)1(ie)-1(n)1(c)-1(e)-366(in)-365(ap)1(ply)1(ing)-366(t)1(he)-366(PS)1(B)-1(LAS)-365(solv)28(e)-1(r)1(s)-366(to)-366(c)-1(omp)1(utation)1(al)-366(\015)1(uid)]TJ 0 -11.9552 Td[(dy)1(namics)-334(app)1(lications.)]TJ +/F8 9.9626 Tf 428.6625 670.2634 Td[(107)]TJ ET -1 0 0 1 99.8954 90.4377 cm +1 0 0 1 443.6065 670.2634 cm 0 g 0 G -1 0 0 1 -99.8954 -90.4377 cm +1 0 0 1 -328.7671 -11.9552 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -114.8394 -658.3082 cm BT -/F8 9.9626 Tf 269.2603 90.4377 Td[(1)]TJ +/F8 9.9626 Tf 114.8394 658.3082 Td[(psb)]TJ +ET +1 0 0 1 130.4364 658.3082 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -130.4364 -658.3082 cm +BT +/F8 9.9626 Tf 133.4253 658.3082 Td[(pr)1(e)-1(c)]TJ +ET +1 0 0 1 152.3155 658.3082 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -152.3155 -658.3082 cm +BT +/F8 9.9626 Tf 155.3044 658.3082 Td[(desc)-1(r)]TJ +ET +1 0 0 1 177.5266 658.3082 cm +0 g 0 G +1 0 0 1 -177.5266 -658.3082 cm +BT +/F8 9.9626 Tf 187.6207 658.3082 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +ET +1 0 0 1 428.6625 658.3082 cm +0 g 0 G +1 0 0 1 -428.6625 -658.3082 cm +BT +/F8 9.9626 Tf 428.6625 658.3082 Td[(108)]TJ +ET +1 0 0 1 443.6065 658.3082 cm +0 g 0 G +1 0 0 1 -343.7111 -21.9178 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -99.8954 -636.3904 cm +BT +/F29 9.9626 Tf 99.8954 636.3904 Td[(11)-350(Iterati)-1(v)32(e)-383(Metho)-32(ds)]TJ +ET +1 0 0 1 205.4934 636.3904 cm +0 g 0 G +1 0 0 1 -205.4934 -636.3904 cm +BT +/F29 9.9626 Tf 426.421 636.3904 Td[(109)]TJ +ET +1 0 0 1 114.8394 624.4352 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -114.8394 -624.4352 cm +BT +/F8 9.9626 Tf 114.8394 624.4352 Td[(psb)]TJ +ET +1 0 0 1 130.4364 624.4352 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -130.4364 -624.4352 cm +BT +/F8 9.9626 Tf 133.4253 624.4352 Td[(kr)1(ylo)28(v)]TJ +ET +1 0 0 1 163.8944 624.4352 cm +0 g 0 G +1 0 0 1 -163.8944 -624.4352 cm +BT +/F8 9.9626 Tf 172.1235 624.4352 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)]TJ +ET +1 0 0 1 428.6625 624.4352 cm +0 g 0 G +1 0 0 1 -428.6625 -624.4352 cm +BT +/F8 9.9626 Tf 428.6625 624.4352 Td[(110)]TJ +ET +1 0 0 1 443.6065 624.4352 cm +0 g 0 G +1 0 0 1 -343.7111 -533.9975 cm +0 g 0 G +1 0 0 1 -99.8954 -90.4377 cm +BT +/F8 9.9626 Tf 267.5998 90.4377 Td[(iii)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -478 0 obj << +511 0 obj << /Type /Page -/Contents 479 0 R -/Resources 477 0 R +/Contents 512 0 R +/Resources 510 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 379 0 R -/Annots [ 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R ] +/Parent 411 0 R +/Annots [ 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R ] >> endobj -480 0 obj << +514 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.8991 705.1326 234.4749 714.0436] +/Subtype /Link +/A << /S /GoTo /D (section.10) >> +>> endobj +515 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.8431 691.2402 164.946 702.0885] +/Subtype /Link +/A << /S /GoTo /D (section*.165) >> +>> endobj +516 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.8431 679.2851 166.5511 690.1333] +/Subtype /Link +/A << /S /GoTo /D (section*.168) >> +>> endobj +517 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.8431 667.3299 171.2557 678.1781] +/Subtype /Link +/A << /S /GoTo /D (section*.170) >> +>> endobj +518 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.8431 655.3747 178.5229 666.2229] +/Subtype /Link +/A << /S /GoTo /D (section*.172) >> +>> endobj +519 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [98.8991 635.3941 206.4896 644.3051] +/Subtype /Link +/A << /S /GoTo /D (section.11) >> +>> endobj +520 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [113.8431 621.5018 164.8907 632.35] +/Subtype /Link +/A << /S /GoTo /D (section*.174) >> +>> endobj +513 0 obj << +/D [511 0 R /XYZ 99.8954 740.9981 null] +>> endobj +510 0 obj << +/Font << /F29 407 0 R /F8 410 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +523 0 obj << +/Length 11215 +>> +stream +1 0 0 1 99.8954 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -443.6065 -740.9981 cm +BT +/F18 14.3462 Tf 99.8954 706.1289 Td[(1)-1125(In)31(t)-1(ro)-32(ducti)-1(on)]TJ/F8 9.9626 Tf 0 -36.3521 Td[(The)-316(PS)1(B)-1(LAS)-315(li)1(brar)1(y)83(,)-319(d)1(e)-1(v)28(elop)-28(ed)-315(w)-1(i)1(th)-316(th)1(e)-316(aim)-316(to)-316(facili)1(tate)-316(the)-316(par)1(allelization)-316(of)]TJ 0 -11.9552 Td[(com)-1(p)1(utati)1(onally)-323(in)28(tensiv)28(e)-325(sc)-1(i)1(e)-1(n)28(t)1(i\014c)-324(app)1(lications,)-326(is)-324(des)-1(i)1(gned)-324(to)-324(ad)1(dres)-1(s)-324(par)1(allel)]TJ 0 -11.9552 Td[(impl)1(e)-1(me)-1(n)29(tation)-427(of)-427(i)1(te)-1(r)1(ativ)28(e)-428(solv)28(ers)-428(f)1(or)-427(s)-1(p)1(arse)-428(lin)1(e)-1(ar)-426(s)-1(ystem)-1(s)-427(throu)1(gh)-427(th)1(e)-428(di)1(s)-1(-)]TJ 0 -11.9551 Td[(tri)1(bu)1(te)-1(d)-284(mem)-1(or)1(y)-285(p)1(arad)1(igm.)-428(It)-285(i)1(nclud)1(e)-1(s)-285(r)1(outin)1(e)-1(s)-284(for)-284(m)28(ulti)1(plyi)1(ng)-284(s)-1(p)1(arse)-285(matrice)-1(s)]TJ 0 -11.9552 Td[(b)28(y)-342(dense)-344(matri)1(c)-1(es)-1(,)-345(solvi)1(ng)-343(b)1(lo)-28(c)27(k)-342(diagon)1(al)-343(syste)-1(ms)-343(with)-343(t)1(rian)1(gular)-342(diagon)1(al)-343(en-)]TJ 0 -11.9552 Td[(tri)1(e)-1(s,)-350(p)1(repro)-27(c)-1(es)-1(sing)-346(s)-1(p)1(arse)-347(matrice)-1(s,)-350(an)1(d)-346(c)-1(on)28(t)1(ains)-347(ad)1(dit)1(ional)-346(rou)1(tines)-347(f)1(or)-347(d)1(e)-1(n)1(s)-1(e)]TJ 0 -11.9551 Td[(matrix)-439(op)-27(e)-1(r)1(ations.)-762(T)-1(h)1(e)-440(curr)1(e)-1(n)28(t)-439(impl)1(e)-1(me)-1(n)29(tation)-439(of)-439(P)1(SBLAS)-439(add)1(res)-1(se)-1(s)-440(a)-439(di)1(s)-1(-)]TJ 0 -11.9552 Td[(tri)1(bu)1(te)-1(d)-333(mem)-1(or)1(y)-334(exec)-1(u)1(tion)-333(mo)-28(del)-333(op)-27(e)-1(rat)1(ing)-333(with)-333(me)-1(ss)-1(age)-333(pass)-1(in)1(g.)]TJ 14.944 -19.7631 Td[(The)-382(PS)1(BL)-1(AS)-381(li)1(brar)1(y)-382(is)-382(in)29(te)-1(rn)1(ally)-381(impleme)-1(n)28(ted)-381(in)-382(a)-381(m)-1(i)1(xtur)1(e)-383(of)-381(F)84(ortran)-381(77)]TJ -14.944 -11.9552 Td[(and)-271(F)83(ort)1(ran)-272(95)-272([)]TJ +ET +1 0 0 1 169.6643 554.3723 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -169.6643 -554.3723 cm +BT +/F8 9.9626 Tf 169.6643 554.3723 Td[(21)]TJ +ET +1 0 0 1 179.627 554.3723 cm +0 g 0 G +1 0 0 1 -179.627 -554.3723 cm +BT +/F8 9.9626 Tf 179.627 554.3723 Td[(])-272(pr)1(ogramm)-1(i)1(ng)-272(langu)1(age)-1(s.)-424(A)-272(s)-1(i)1(m)-1(il)1(ar)-272(app)1(roac)27(h)-272(h)1(as)-273(b)-27(e)-1(en)-272(adv)28(o-)]TJ -79.7316 -11.9552 Td[(cate)-1(d)-355(b)28(y)-355(a)-356(n)29(um)28(b)-28(er)-355(of)-356(au)1(thor)1(s)-1(,)-361(e.g.)-355([)]TJ +ET +1 0 0 1 257.6925 542.4172 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -257.6925 -542.4172 cm +BT +/F8 9.9626 Tf 257.6925 542.4172 Td[(20)]TJ +ET +1 0 0 1 267.6552 542.4172 cm +0 g 0 G +1 0 0 1 -267.6552 -542.4172 cm +BT +/F8 9.9626 Tf 267.6552 542.4172 Td[(].)-511(M)1(oreo)27(v)28(er,)-361(th)1(e)-356(F)83(or)1(tran)-355(95)-355(facilities)-356(for)]TJ -167.7598 -11.9552 Td[(dy)1(namic)-440(me)-1(mory)-439(m)-1(an)1(age)-1(men)28(t)-440(an)1(d)-439(in)28(terf)1(ac)-1(e)-440(o)28(v)28(e)-1(r)1(loadi)1(ng)-439(gre)-1(at)1(ly)-440(enh)1(ance)-440(the)]TJ 0 -11.9552 Td[(usabi)1(lit)28(y)-435(of)-435(th)1(e)-436(PS)1(B)-1(LAS)-434(s)-1(u)1(brou)1(tin)1(e)-1(s.)-750(In)-435(this)-435(w)27(a)28(y)84(,)-461(th)1(e)-436(lib)1(rary)-435(can)-435(tak)28(e)-436(care)]TJ 0 -11.9551 Td[(of)-378(ru)1(n)28(time)-379(mem)-1(or)1(y)-378(re)-1(q)1(uir)1(e)-1(me)-1(n)29(ts)-379(th)1(at)-379(ar)1(e)-379(qu)1(ite)-379(d)1(i\016c)-1(u)1(lt)-378(or)-378(e)-1(v)28(en)-378(imp)-27(os)-1(sibl)1(e)-379(to)]TJ 0 -11.9552 Td[(pr)1(e)-1(d)1(ict)-381(at)-381(imp)1(le)-1(men)28(tation)-380(or)-381(compil)1(ation)-380(time)-1(.)-586(I)-1(n)-380(th)1(e)-382(cur)1(ren)28(t)-381(r)1(e)-1(leas)-1(e)-381(w)28(e)-381(re)-1(l)1(y)]TJ 0 -11.9552 Td[(on)-283(the)-284(a)28(v)56(ailab)1(ilit)28(y)-283(of)-284(t)1(he)-284(s)-1(o-called)-284(al)1(lo)-28(catable)-284(extensions,)-294(sp)-27(e)-1(ci\014ed)-283(in)-283(T)-1(R)-283(15581.)]TJ 0 -11.9551 Td[(St)1(rictly)-353(s)-1(p)-27(eaking)-353(th)1(e)-1(y)-353(are)-353(outside)-354(t)1(he)-354(F)84(ortr)1(an)-353(95)-354(stand)1(ard)1(;)-364(h)1(o)28(w)27(ev)28(e)-1(r)-353(th)1(e)-1(y)-353(h)1(a)27(v)28(e)]TJ 0 -11.9552 Td[(b)-27(e)-1(en)-337(inclu)1(ded)-337(in)-337(th)1(e)-338(F)83(or)1(tran)-337(2003)-337(langu)1(age)-338(s)-1(tan)1(dar)1(d,)-338(and)-337(ar)1(e)-338(a)28(v)55(ai)1(labl)1(e)-338(in)-337(pr)1(c)-1(-)]TJ 0 -11.9552 Td[(tically)-470(all)-470(F)84(ortran)-470(95)-470(c)-1(ompi)1(le)-1(r)1(s)-471(on)-470(the)-471(mark)28(et,)-505(i)1(nclud)1(ing)-470(the)-471(G)1(C)-1(C)-470(c)-1(omp)1(iler)]TJ 0 -11.9551 Td[(fr)1(om)-336(th)1(e)-336(F)84(ree)-336(S)1(oft)28(w)28(are)-336(F)84(oun)1(dation)-334(\050as)-336(of)-334(v)28(e)-1(r)1(s)-1(ion)-334(4.2\051.)-450(Th)1(e)-336(pr)1(e)-1(se)-1(n)29(tation)-335(of)-334(the)]TJ 0 -11.9552 Td[(PS)1(BLAS)-370(lib)1(rary)-370(f)1(ollo)28(ws)-371(th)1(e)-371(general)-370(structur)1(e)-371(of)-370(t)1(he)-371(p)1(rop)-27(os)-1(al)-370(f)1(or)-370(s)-1(eri)1(al)-370(Spar)1(s)-1(e)]TJ 0 -11.9552 Td[(BLAS)-391([)]TJ +ET +1 0 0 1 132.8493 410.9103 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -132.8493 -410.9103 cm +BT +/F8 9.9626 Tf 132.8493 410.9103 Td[(15)]TJ +ET +1 0 0 1 142.812 410.9103 cm +0 g 0 G +1 0 0 1 -142.812 -410.9103 cm +BT +/F8 9.9626 Tf 142.812 410.9103 Td[(,)]TJ +ET +1 0 0 1 149.4755 410.9103 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -149.4755 -410.9103 cm +BT +/F8 9.9626 Tf 149.4755 410.9103 Td[(16)]TJ +ET +1 0 0 1 159.4382 410.9103 cm +0 g 0 G +1 0 0 1 -159.4382 -410.9103 cm +BT +/F8 9.9626 Tf 159.4382 410.9103 Td[(],)-405(whic)28(h)-391(in)-390(its)-392(t)1(urn)-390(is)-392(b)1(as)-1(ed)-391(on)-390(the)-391(prop)-27(osal)-391(for)-390(B)-1(LAS)-390(on)-391(dense)]TJ -59.5428 -11.9552 Td[(matrice)-1(s)-333([)]TJ +ET +1 0 0 1 142.5964 398.9551 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -142.5964 -398.9551 cm +BT +/F8 9.9626 Tf 142.5964 398.9551 Td[(1)]TJ +ET +1 0 0 1 147.5778 398.9551 cm +0 g 0 G +1 0 0 1 -147.5778 -398.9551 cm +BT +/F8 9.9626 Tf 147.5778 398.9551 Td[(,)]TJ +ET +1 0 0 1 153.6661 398.9551 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -153.6661 -398.9551 cm +BT +/F8 9.9626 Tf 153.6661 398.9551 Td[(2)]TJ +ET +1 0 0 1 158.6474 398.9551 cm +0 g 0 G +1 0 0 1 -158.6474 -398.9551 cm +BT +/F8 9.9626 Tf 158.6474 398.9551 Td[(,)]TJ +ET +1 0 0 1 164.7357 398.9551 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -164.7357 -398.9551 cm +BT +/F8 9.9626 Tf 164.7357 398.9551 Td[(3)]TJ +ET +1 0 0 1 169.717 398.9551 cm +0 g 0 G +1 0 0 1 -169.717 -398.9551 cm +BT +/F8 9.9626 Tf 169.717 398.9551 Td[(].)]TJ -54.8776 -19.763 Td[(The)-403(app)1(licabili)1(t)28(y)-403(of)-403(sparse)-403(ite)-1(r)1(ativ)28(e)-403(s)-1(olv)28(ers)-403(to)-403(m)-1(an)29(y)-403(di\013eren)28(t)-403(areas)-404(cause)-1(s)]TJ -14.944 -11.9552 Td[(som)-1(e)-317(termin)1(ology)-316(pr)1(oblem)-1(s)-316(b)-28(ec)-1(au)1(s)-1(e)-316(the)-317(sam)-1(e)-316(c)-1(on)1(c)-1(ept)-316(ma)27(y)-316(b)-27(e)-317(denot)1(e)-1(d)-316(th)1(rough)]TJ 0 -11.9552 Td[(di)1(\013)-1(eren)28(t)-342(n)1(am)-1(es)-342(dep)-28(end)1(ing)-342(on)-341(the)-342(ap)1(plication)-341(area.)-470(The)-342(PS)1(B)-1(LAS)-341(featur)1(e)-1(s)-342(pr)1(e)-1(-)]TJ 0 -11.9551 Td[(se)-1(n)28(ted)-450(i)1(n)-450(th)1(is)-451(d)1(o)-28(cume)-1(n)29(t)-450(w)-1(i)1(ll)-450(b)-27(e)-451(d)1(isc)-1(u)1(s)-1(se)-1(d)-449(re)-1(f)1(e)-1(r)1(rin)1(g)-450(to)-450(a)-450(\014n)1(ite)-450(di\013ere)-1(n)1(c)-1(e)-450(di)1(s)-1(-)]TJ 0 -11.9552 Td[(cre)-1(t)1(iz)-1(ati)1(on)-329(of)-329(a)-329(P)28(art)1(ial)-329(Di\013e)-1(r)1(e)-1(n)28(t)1(ial)-329(Equ)1(ation)-329(\050P)1(DE\051)1(.)-329(Ho)27(w)28(e)-1(v)28(er,)-329(the)-330(scop)-28(e)-329(of)-329(the)]TJ 0 -11.9552 Td[(lib)1(rar)1(y)-345(is)-345(wid)1(e)-1(r)-344(th)1(an)-345(th)1(at:)-467(f)1(or)-345(example,)-347(it)-345(can)-344(b)-27(e)-346(ap)1(pl)1(ie)-1(d)-344(to)-344(\014ni)1(te)-345(e)-1(l)1(e)-1(me)-1(n)29(t)-345(di)1(s)-1(-)]TJ 0 -11.9551 Td[(cre)-1(t)1(iz)-1(ati)1(ons)-278(of)-278(P)1(DEs,)-289(and)-277(e)-1(v)28(en)-278(to)-278(d)1(i\013e)-1(ren)28(t)-278(class)-1(es)-279(of)-277(pr)1(oblem)-1(s)-278(s)-1(u)1(c)27(h)-277(as)-279(n)1(onli)1(near)]TJ 0 -11.9552 Td[(opt)1(im)-1(i)1(z)-1(ati)1(on,)-333(for)-333(example)-333(in)-333(opti)1(m)-1(al)-333(con)28(trol)-333(p)1(rob)1(le)-1(ms.)]TJ 14.944 -19.7631 Td[(The)-489(des)-1(ign)-488(of)-489(a)-489(solv)28(e)-1(r)-488(for)-489(spar)1(s)-1(e)-489(linear)-489(syste)-1(ms)-490(i)1(s)-490(dr)1(iv)28(en)-489(b)28(y)-489(man)28(y)-489(con-)]TJ -14.944 -11.9552 Td[(\015i)1(c)-1(ti)1(ng)-385(ob)-55(j)1(e)-1(ctiv)28(es)-1(,)-397(suc)28(h)-384(as)-385(limitin)1(g)-385(o)-28(ccupat)1(ion)-384(of)-384(s)-1(tor)1(age)-385(res)-1(ou)1(rc)-1(es,)-398(exp)1(loitin)1(g)]TJ 0 -11.9551 Td[(regul)1(arities)-433(in)-432(the)-433(in)1(put)-432(data,)-457(e)-1(x)1(ploi)1(ting)-432(hard)1(w)27(ar)1(e)-434(c)28(har)1(ac)-1(teristics)-434(of)-432(th)1(e)-434(p)1(ar-)]TJ 0 -11.9552 Td[(allel)-370(p)1(latf)1(orm.)-554(T)83(o)-370(ac)27(h)1(ie)-1(v)28(e)-370(an)-369(optimal)-370(com)-1(m)28(un)1(ication)-370(t)1(o)-370(c)-1(ompu)1(tation)-369(ratio)-370(on)]TJ 0 -11.9552 Td[(di)1(s)-1(tr)1(ibu)1(te)-1(d)-338(m)-1(em)-1(or)1(y)-339(m)-1(ac)28(hin)1(e)-1(s)-340(i)1(t)-340(i)1(s)-340(e)-1(ss)-1(en)28(ti)1(al)-340(t)1(o)-340(k)28(ee)-1(p)-339(t)1(he)]TJ/F19 9.9626 Tf 244.6801 0 Td[(data)-364(l)1(o)51(c)51(ality)]TJ/F8 9.9626 Tf 55.6288 0 Td[(as)-340(h)1(igh)-339(as)]TJ -300.3089 -11.9551 Td[(p)-27(os)-1(sibl)1(e)-1(;)-307(t)1(his)-294(c)-1(an)-293(b)-27(e)-295(d)1(one)-294(thr)1(ough)-293(an)-294(ap)1(prop)1(riat)1(e)-295(d)1(ata)-294(allo)-27(c)-1(ation)-293(strategy)83(.)-431(The)]TJ 0 -11.9552 Td[(c)27(h)1(oice)-400(of)-398(the)-399(precondi)1(tioner)-399(i)1(s)-400(an)1(other)-399(v)28(ery)-399(imp)-27(ortan)28(t)-399(f)1(ac)-1(t)1(or)-399(that)-398(a\013)-1(ec)-1(ts)-399(e\016)-1(-)]TJ 0 -11.9552 Td[(cie)-1(n)1(c)-1(y)-311(of)-311(the)-312(impleme)-1(n)28(t)1(e)-1(d)-311(app)1(lication.)-437(O)1(ptimal)-311(data)-312(d)1(istrib)1(ution)-311(requ)1(irem)-1(en)28(ts)]TJ 0 -11.9551 Td[(for)-248(a)-250(gi)1(v)28(e)-1(n)-249(p)1(rec)-1(on)1(diti)1(oner)-249(m)-1(a)28(y)-249(con\015)1(ic)-1(t)-249(with)-249(d)1(istrib)1(uti)1(on)-249(requi)1(re)-1(men)28(ts)-250(of)-249(t)1(he)-250(r)1(e)-1(st)]TJ 0 -11.9552 Td[(of)-367(the)-368(solv)28(e)-1(r)1(.)-548(Fi)1(ndi)1(ng)-368(th)1(e)-368(optimal)-367(trade-o\013)-369(ma)28(y)-368(b)-27(e)-368(v)28(e)-1(r)1(y)-368(d)1(i\016)-1(cul)1(t)-368(b)-27(e)-1(cause)-368(it)-368(is)]TJ 0 -11.9552 Td[(app)1(lication)-270(dep)-27(e)-1(n)1(den)28(t.)-423(P)28(os)-1(sib)1(le)-271(s)-1(ol)1(ution)-270(to)-271(t)1(hes)-1(e)-271(pr)1(oblems)-271(and)-270(other)-270(im)-1(p)-27(ort)1(an)28(t)]TJ 0 -11.9551 Td[(in)1(pu)1(ts)-352(to)-351(th)1(e)-352(dev)28(elopme)-1(n)29(t)-351(of)-351(the)-351(PS)1(B)-1(LAS)-350(s)-1(of)1(t)28(w)27(are)-351(pac)28(k)55(age)-351(has)-351(c)-1(ome)-352(f)1(rom)-352(an)]TJ 0 -11.9552 Td[(es)-1(tab)1(lished)-366(exp)-27(e)-1(r)1(ie)-1(n)1(c)-1(e)-366(in)-365(ap)1(ply)1(ing)-366(t)1(he)-366(PS)1(B)-1(LAS)-365(solv)28(e)-1(r)1(s)-366(to)-366(c)-1(omp)1(utation)1(al)-366(\015)1(uid)]TJ 0 -11.9552 Td[(dy)1(namics)-334(app)1(lications.)]TJ +ET +1 0 0 1 99.8954 90.4377 cm +0 g 0 G +1 0 0 1 -99.8954 -90.4377 cm +BT +/F8 9.9626 Tf 269.2603 90.4377 Td[(1)]TJ +ET +1 0 0 1 443.6065 90.4377 cm +0 g 0 G +endstream +endobj +522 0 obj << +/Type /Page +/Contents 523 0 R +/Resources 521 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 411 0 R +/Annots [ 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R ] +>> endobj +524 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [168.6681 553.3761 180.6233 561.789] /Subtype /Link /A << /S /GoTo /D (cite.metcalf) >> >> endobj -481 0 obj << +525 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [256.6963 541.4209 268.6515 549.8338] /Subtype /Link /A << /S /GoTo /D (cite.machiels) >> >> endobj -482 0 obj << +526 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [131.853 409.914 143.8082 418.3269] /Subtype /Link /A << /S /GoTo /D (cite.sblas97) >> >> endobj -483 0 obj << +527 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [148.4793 409.914 160.4345 418.3269] /Subtype /Link /A << /S /GoTo /D (cite.sblas02) >> >> endobj -484 0 obj << +528 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [141.6002 397.9589 148.574 406.3718] /Subtype /Link /A << /S /GoTo /D (cite.BLAS1) >> >> endobj -485 0 obj << +529 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [152.6698 397.9589 159.6437 406.3718] /Subtype /Link /A << /S /GoTo /D (cite.BLAS2) >> >> endobj -486 0 obj << +530 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [163.7394 397.9589 170.7133 406.3718] @@ -4370,13 +4823,13 @@ endobj /A << /S /GoTo /D (cite.BLAS3) >> >> endobj 10 0 obj << -/D [478 0 R /XYZ 99.8954 716.0915 null] +/D [522 0 R /XYZ 99.8954 716.0915 null] >> endobj -477 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R >> +521 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R >> /ProcSet [ /PDF /Text ] >> endobj -500 0 obj << +544 0 obj << /Length 11758 >> stream @@ -4475,63 +4928,63 @@ ET 0 g 0 G endstream endobj -499 0 obj << +543 0 obj << /Type /Page -/Contents 500 0 R -/Resources 498 0 R +/Contents 544 0 R +/Resources 542 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 379 0 R -/Annots [ 505 0 R 506 0 R 507 0 R 511 0 R 512 0 R ] +/Parent 411 0 R +/Annots [ 549 0 R 550 0 R 551 0 R 555 0 R 556 0 R ] >> endobj -505 0 obj << +549 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [308.6924 584.1419 315.6663 594.9901] /Subtype /Link /A << /S /GoTo /D (figure.1) >> >> endobj -506 0 obj << +550 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [283.1608 514.3481 295.116 522.761] /Subtype /Link /A << /S /GoTo /D (cite.BLACS) >> >> endobj -507 0 obj << +551 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [387.982 439.2714 394.9559 451.2266] /Subtype /Link /A << /S /GoTo /D (section.7) >> >> endobj -511 0 obj << +555 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [328.7403 212.9039 340.6955 221.3168] /Subtype /Link /A << /S /GoTo /D (cite.METIS) >> >> endobj -512 0 obj << +556 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [265.4353 138.3807 271.8971 150.42] /Subtype /Link /A << /S /GoTo /D (Hfootnote.1) >> >> endobj -501 0 obj << -/D [499 0 R /XYZ 150.7049 740.9981 null] +545 0 obj << +/D [543 0 R /XYZ 150.7049 740.9981 null] >> endobj 14 0 obj << -/D [499 0 R /XYZ 150.7049 716.0915 null] +/D [543 0 R /XYZ 150.7049 716.0915 null] >> endobj -519 0 obj << -/D [499 0 R /XYZ 165.9479 129.7901 null] +563 0 obj << +/D [543 0 R /XYZ 165.9479 129.7901 null] >> endobj -498 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F19 489 0 R /F32 510 0 R /F7 515 0 R /F34 518 0 R /F33 522 0 R >> +542 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F19 533 0 R /F32 554 0 R /F7 559 0 R /F34 562 0 R /F33 566 0 R >> /ProcSet [ /PDF /Text ] >> endobj -528 0 obj << +572 0 obj << /Length 3789 >> stream @@ -4587,27 +5040,27 @@ ET 0 g 0 G endstream endobj -527 0 obj << +571 0 obj << /Type /Page -/Contents 528 0 R -/Resources 526 0 R +/Contents 572 0 R +/Resources 570 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 379 0 R +/Parent 580 0 R >> endobj -497 0 obj << +541 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./figures/psblas.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 536 0 R +/PTEX.InfoDict 581 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 612.00000000 792.00000000] /Resources << /ProcSet [ /PDF /Text ] -/Font << /R7 537 0 R >> +/Font << /R7 582 0 R >> >> -/Length 538 0 R +/Length 583 0 R /Filter /FlateDecode >> stream @@ -4618,38 +5071,38 @@ Q*G ˇî=$ó•!j¦¼Á<I79€‡œIè󖂔Ц¹l¢AåyMQ‰Q" 1à¶Éòf°‹±‚¤Å‡ ­oˆ Љ5¬³ÉÕ*tT„=R|/ݬ“£g«,ß'õ¤ë©3ÒI‘ÊчˆÅp[Åà=Ô/†<­—´$uLÓùجú¢“I!l‘åÎêŒtVg¤³zÖ™šÌF;«Ï~Ñ‚ÕgÇ]cuŽ‹­²|,«ã.ãAguF:5!³89ô‚šÈd³Ë!¯?óuVïùëú@uô­Sû0íóóñXtîU½7–ƒ¬þýÍ=-…&áC™€fÊŒñŠ€n©À؇…Â!1©RŠ&wV¡ÖÒž9Àéuõ‚¤š>iŽIàC¦}~> Þ;ó}±ìMàó™{ÈéÎH‡ LåWôé¢ #'MŒÊWLµ(—ü¦ÕdJ­dRŸ‘>†6džC«FΛìc(“kÏÓ/#ÂëÚä6†2Â~uJgÏY'ÏVYž ë¸Ï,™“ ‡Æ![>¼¾¹¯6뻫Ï×ù3Á ÎcM'ÂN*–Ï,o“úólÅ[rCHùÄÚ—˜ŸV³‹£[yÌøb™ò…½NˆP+äËíÓíííúr+ÎÖ··W×—ù9 R)Lè÷>ôœž½{%Î>œ¾RÊö=#ÿþE¶Vendstream endobj -536 0 obj +581 0 obj << /Producer (ESP Ghostscript 815.03) /CreationDate (D:20070116154150) /ModDate (D:20070116154150) >> endobj -537 0 obj +582 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj -538 0 obj +583 0 obj 1319 endobj -529 0 obj << -/D [527 0 R /XYZ 99.8954 740.9981 null] +573 0 obj << +/D [571 0 R /XYZ 99.8954 740.9981 null] >> endobj -523 0 obj << -/D [527 0 R /XYZ 207.8931 339.7695 null] +567 0 obj << +/D [571 0 R /XYZ 207.8931 339.7695 null] >> endobj 18 0 obj << -/D [527 0 R /XYZ 99.8954 279.2186 null] +/D [571 0 R /XYZ 99.8954 279.2186 null] >> endobj -526 0 obj << -/Font << /F8 378 0 R /F18 369 0 R /F11 504 0 R /F19 489 0 R /F10 532 0 R /F14 535 0 R /F29 375 0 R >> -/XObject << /Im1 497 0 R >> +570 0 obj << +/Font << /F8 410 0 R /F18 401 0 R /F11 548 0 R /F19 533 0 R /F10 576 0 R /F14 579 0 R /F29 407 0 R >> +/XObject << /Im1 541 0 R >> /ProcSet [ /PDF /Text ] >> endobj -542 0 obj << +587 0 obj << /Length 8102 >> stream @@ -4759,85 +5212,85 @@ ET 0 g 0 G endstream endobj -541 0 obj << +586 0 obj << /Type /Page -/Contents 542 0 R -/Resources 540 0 R +/Contents 587 0 R +/Resources 585 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 547 0 R -/Annots [ 544 0 R 545 0 R ] +/Parent 580 0 R +/Annots [ 589 0 R 590 0 R ] >> endobj -539 0 obj << +584 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./figures/points.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 548 0 R +/PTEX.InfoDict 592 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 274.00000000 308.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 549 0 R ->>/Font << /R8 550 0 R >> +/R7 593 0 R +>>/Font << /R8 594 0 R >> >> -/Length 551 0 R +/Length 595 0 R /Filter /FlateDecode >> stream xœÝYËŽ5Ý÷Wô’ q±Ën»ï6 – 󣄠¹3ÊBü=®§«æ±bA‡HŒ}Ï©c·í²»?­é”ׄÿäïÍeùö]_?ü¾¤Ó©d êwßGüðaù´d"®òçæ²¾¾ä}ÍíëÕûe4­ß ,äýÔ×sÿ»º,_ýx÷Ç/w×·¯®~[¾»ZÞ.ø›Œ1¸ð™âuóâ¯ïÿ¼ûùúáoO*žþx/þÃõí½Î22Tø<ᜇd†&Âoî/×ïV˜âÿõèCê1V^õd¨æõãR ¬Û9ŸÎç¶^–ºµÓ¾ÍšÚýÝz¦zõ¯7‹!€S®ûj짔êJÚR¿–ðWZSöN•m˜´ ide«3çûfyÿõROÛú×|J_F¿~]~z2ò–}×òVÐÕämë¦Î€sQ<I<³¦uiüd¸r͵9.Ö¤¢ÆR’ÉÑãY~ОÐCÑÝ¥Ÿ}öçÙ^â<3LA ‰c‹YÒ¶®ôçY¯qž&mCÙØâÌû懣ç—Ñ#|H–_rƧšÇÒ³,wš0s>}yüÇ5ÒNóË p%U¤ –ðW@E’§$§•|¡pxõE`&ÆøåU ™¤ó«›%AÝIUÍ0Gš]ý‘&ûÖM’ î Jšx÷¬…T.ù)~¼C²8˜}~‚­ÛÍWÛ¢íÁvKÑö¶K,8ÛÍ—&†`[C*—ü¨ONÔÇs­ƒ ½m‚ê ò9؆Áu¶!×`{P9¦m‚êKI7oÛB*—ü¨O샹~ñ̳·Ç'­¡Á^ÝIaÏvRy!œzw'ó¤`Íx"0.Ѥb'…iÄù|ùÌs¼žP:-%X/[´^º“#Àa°há…dÞPÓY/)Z‡Ýqˆ&-VŠÖ½ON¬Çtnƒ®G±À¹ÍY–& é›Ë’וB¿Ìœ¤¡¹M…ÁnngäŽ%¤Ò#ØœÃÉÙÇ‚"d;’Àô)ùÃ(˜\X‹³Ž¥²£0}Z¡pø#`Ó†Sò‹%Hvt§Ð̧f£`ú`-Î+”ÐŽQ4ó9ƒ…Ç,x›O/,îf,z»âißn«ªÝìv«$½úæ-ÜŒå`?›“禩™|,ˆ7cïó™;Ìñº@!osõé]Š¦?ݲta0€yýÒ¥¤Zdy›«OïRÜ<%9­äƒ€[}拇ú6m8uõIPžþhǃf>m))…YÞæê“ Ò<%9­äƒ€[}ækçÿÜæ“WO’rõ= A} £ Ñ0'Ë 9‘S,irêÕ÷+\_ã­uâÝ¿›ÑÆE?æóé{¦ƒÙÇá'È‹ÎB#4_²$&†`[–’qq‘‘&/> Mõ5^_'†`[Bý˜OõºÖÁ–%©¡ ª/]07o[šqq ’&/M Íõ5^_'nÞ¶†4.ú1Ÿ6ØsýÜ¥%]Š!ƒCÞgVe@Ù–‹’…$)š5-ƒÃØ5}‡ä²?ÖLg+‡ |>{é>hO‘jøX5~,ê>–0àxÕ},1’š¬ác ”ø±ŠûX€5‹ûXb$3òø³ Ú…t¡í¡=Å>tpº8Õ‡’Ô$iÎ>´-ö¡Ç%ÀšTÔXJR#ÞgL¼í“-J/0®jãȶw.Þâªick£Z,”Ô¤š^”Ñk·ì«éUÝ ‹¯WjÇ‚µÛçƒ.ÁºUE³zÉgýãPˆ,é"›Ñe±ûÌ‹:t˜!*%~ Ö *«QÊÒ@emPMÓ1:¾Þ’àX¼÷(˜®4æ ¤Nƒ¾]þÎJ¦'endstream endobj -548 0 obj +592 0 obj << /Producer (ESP Ghostscript 815.03) /CreationDate (D:20070123225315) /ModDate (D:20070123225315) >> endobj -549 0 obj +593 0 obj << /Type /ExtGState /OPM 1 >> endobj -550 0 obj +594 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj -551 0 obj +595 0 obj 1397 endobj -544 0 obj << +589 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [342.5691 470.4801 349.5429 478.893] /Subtype /Link /A << /S /GoTo /D (cite.PARA04) >> >> endobj -545 0 obj << +590 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] /Rect [353.6387 470.4801 365.5939 478.893] /Subtype /Link /A << /S /GoTo /D (cite.APNUM06) >> >> endobj -543 0 obj << -/D [541 0 R /XYZ 150.7049 740.9981 null] +588 0 obj << +/D [586 0 R /XYZ 150.7049 740.9981 null] >> endobj -546 0 obj << -/D [541 0 R /XYZ 303.5622 179.4548 null] +591 0 obj << +/D [586 0 R /XYZ 303.5622 179.4548 null] >> endobj -540 0 obj << -/Font << /F8 378 0 R /F29 375 0 R /F19 489 0 R /F14 535 0 R /F11 504 0 R /F10 532 0 R >> -/XObject << /Im2 539 0 R >> +585 0 obj << +/Font << /F8 410 0 R /F29 407 0 R /F19 533 0 R /F14 579 0 R /F11 548 0 R /F10 576 0 R >> +/XObject << /Im2 584 0 R >> /ProcSet [ /PDF /Text ] >> endobj -556 0 obj << +600 0 obj << /Length 11099 >> stream @@ -5167,39 +5620,39 @@ ET 0 g 0 G endstream endobj -555 0 obj << +599 0 obj << /Type /Page -/Contents 556 0 R -/Resources 554 0 R +/Contents 600 0 R +/Resources 598 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 547 0 R -/Annots [ 558 0 R 559 0 R ] +/Parent 580 0 R +/Annots [ 602 0 R 603 0 R ] >> endobj -558 0 obj << +602 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [406.3576 265.3521 413.3315 277.3073] /Subtype /Link /A << /S /GoTo /D (section.3) >> >> endobj -559 0 obj << +603 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [173.8633 234.3732 180.8371 246.3284] /Subtype /Link /A << /S /GoTo /D (section.6) >> >> endobj -557 0 obj << -/D [555 0 R /XYZ 99.8954 740.9981 null] +601 0 obj << +/D [599 0 R /XYZ 99.8954 740.9981 null] >> endobj 22 0 obj << -/D [555 0 R /XYZ 99.8954 716.0915 null] +/D [599 0 R /XYZ 99.8954 716.0915 null] >> endobj -554 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F29 375 0 R /F14 535 0 R /F32 510 0 R >> +598 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F29 407 0 R /F14 579 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -562 0 obj << +606 0 obj << /Length 11521 >> stream @@ -5317,48 +5770,48 @@ ET 0 g 0 G endstream endobj -561 0 obj << +605 0 obj << /Type /Page -/Contents 562 0 R -/Resources 560 0 R +/Contents 606 0 R +/Resources 604 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 547 0 R +/Parent 580 0 R >> endobj -563 0 obj << -/D [561 0 R /XYZ 150.7049 740.9981 null] +607 0 obj << +/D [605 0 R /XYZ 150.7049 740.9981 null] >> endobj 26 0 obj << -/D [561 0 R /XYZ 150.7049 716.0915 null] +/D [605 0 R /XYZ 150.7049 716.0915 null] >> endobj -567 0 obj << -/D [561 0 R /XYZ 150.7049 285.2785 null] +611 0 obj << +/D [605 0 R /XYZ 150.7049 285.2785 null] >> endobj -568 0 obj << -/D [561 0 R /XYZ 150.7049 264.776 null] +612 0 obj << +/D [605 0 R /XYZ 150.7049 264.776 null] >> endobj -569 0 obj << -/D [561 0 R /XYZ 150.7049 243.9968 null] +613 0 obj << +/D [605 0 R /XYZ 150.7049 243.9968 null] >> endobj -570 0 obj << -/D [561 0 R /XYZ 150.7049 223.2176 null] +614 0 obj << +/D [605 0 R /XYZ 150.7049 223.2176 null] >> endobj -571 0 obj << -/D [561 0 R /XYZ 150.7049 190.4832 null] +615 0 obj << +/D [605 0 R /XYZ 150.7049 190.4832 null] >> endobj -572 0 obj << -/D [561 0 R /XYZ 150.7049 169.7118 null] +616 0 obj << +/D [605 0 R /XYZ 150.7049 169.7118 null] >> endobj -573 0 obj << -/D [561 0 R /XYZ 150.7049 150.854 null] +617 0 obj << +/D [605 0 R /XYZ 150.7049 150.854 null] >> endobj -574 0 obj << -/D [561 0 R /XYZ 150.7049 134.4868 null] +618 0 obj << +/D [605 0 R /XYZ 150.7049 134.4868 null] >> endobj -560 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F32 510 0 R /F9 566 0 R /F19 489 0 R >> +604 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F32 554 0 R /F9 610 0 R /F19 533 0 R >> /ProcSet [ /PDF /Text ] >> endobj -577 0 obj << +621 0 obj << /Length 10125 >> stream @@ -5532,60 +5985,60 @@ ET 0 g 0 G endstream endobj -576 0 obj << +620 0 obj << /Type /Page -/Contents 577 0 R -/Resources 575 0 R +/Contents 621 0 R +/Resources 619 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 547 0 R +/Parent 580 0 R >> endobj -578 0 obj << -/D [576 0 R /XYZ 99.8954 740.9981 null] +622 0 obj << +/D [620 0 R /XYZ 99.8954 740.9981 null] >> endobj -579 0 obj << -/D [576 0 R /XYZ 99.8954 716.0915 null] +623 0 obj << +/D [620 0 R /XYZ 99.8954 716.0915 null] >> endobj -580 0 obj << -/D [576 0 R /XYZ 99.8954 685.5349 null] +624 0 obj << +/D [620 0 R /XYZ 99.8954 685.5349 null] >> endobj -581 0 obj << -/D [576 0 R /XYZ 99.8954 613.5113 null] +625 0 obj << +/D [620 0 R /XYZ 99.8954 613.5113 null] >> endobj -582 0 obj << -/D [576 0 R /XYZ 99.8954 588.4296 null] +626 0 obj << +/D [620 0 R /XYZ 99.8954 588.4296 null] >> endobj -583 0 obj << -/D [576 0 R /XYZ 99.8954 563.6247 null] +627 0 obj << +/D [620 0 R /XYZ 99.8954 563.6247 null] >> endobj -584 0 obj << -/D [576 0 R /XYZ 99.8954 526.8646 null] +628 0 obj << +/D [620 0 R /XYZ 99.8954 526.8646 null] >> endobj -585 0 obj << -/D [576 0 R /XYZ 99.8954 502.0596 null] +629 0 obj << +/D [620 0 R /XYZ 99.8954 502.0596 null] >> endobj -586 0 obj << -/D [576 0 R /XYZ 99.8954 477.2547 null] +630 0 obj << +/D [620 0 R /XYZ 99.8954 477.2547 null] >> endobj -587 0 obj << -/D [576 0 R /XYZ 99.8954 449.5141 null] +631 0 obj << +/D [620 0 R /XYZ 99.8954 449.5141 null] >> endobj -588 0 obj << -/D [576 0 R /XYZ 99.8954 419.1788 null] +632 0 obj << +/D [620 0 R /XYZ 99.8954 419.1788 null] >> endobj -589 0 obj << -/D [576 0 R /XYZ 99.8954 388.5669 null] +633 0 obj << +/D [620 0 R /XYZ 99.8954 388.5669 null] >> endobj -590 0 obj << -/D [576 0 R /XYZ 99.8954 369.9101 null] +634 0 obj << +/D [620 0 R /XYZ 99.8954 369.9101 null] >> endobj -591 0 obj << -/D [576 0 R /XYZ 99.8954 351.53 null] +635 0 obj << +/D [620 0 R /XYZ 99.8954 351.53 null] >> endobj -575 0 obj << -/Font << /F8 378 0 R /F32 510 0 R >> +619 0 obj << +/Font << /F8 410 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -594 0 obj << +638 0 obj << /Length 3003 >> stream @@ -5631,24 +6084,24 @@ ET 0 g 0 G endstream endobj -593 0 obj << +637 0 obj << /Type /Page -/Contents 594 0 R -/Resources 592 0 R +/Contents 638 0 R +/Resources 636 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 547 0 R +/Parent 580 0 R >> endobj -595 0 obj << -/D [593 0 R /XYZ 150.7049 740.9981 null] +639 0 obj << +/D [637 0 R /XYZ 150.7049 740.9981 null] >> endobj 30 0 obj << -/D [593 0 R /XYZ 150.7049 716.0915 null] +/D [637 0 R /XYZ 150.7049 716.0915 null] >> endobj -592 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F14 535 0 R /F32 510 0 R >> +636 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F14 579 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -598 0 obj << +642 0 obj << /Length 10780 >> stream @@ -5915,75 +6368,75 @@ ET 0 g 0 G endstream endobj -597 0 obj << +641 0 obj << /Type /Page -/Contents 598 0 R -/Resources 596 0 R +/Contents 642 0 R +/Resources 640 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 547 0 R -/Annots [ 601 0 R 602 0 R ] +/Parent 657 0 R +/Annots [ 645 0 R 646 0 R ] >> endobj -601 0 obj << +645 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [355.7293 515.8675 362.7032 526.7157] /Subtype /Link /A << /S /GoTo /D (section.6) >> >> endobj -602 0 obj << +646 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [311.9336 503.9124 326.6562 514.7606] /Subtype /Link /A << /S /GoTo /D (subsection.3.4) >> >> endobj -599 0 obj << -/D [597 0 R /XYZ 99.8954 740.9981 null] +643 0 obj << +/D [641 0 R /XYZ 99.8954 740.9981 null] >> endobj 34 0 obj << -/D [597 0 R /XYZ 99.8954 716.0915 null] +/D [641 0 R /XYZ 99.8954 716.0915 null] >> endobj 38 0 obj << -/D [597 0 R /XYZ 99.8954 608.9767 null] +/D [641 0 R /XYZ 99.8954 608.9767 null] >> endobj -600 0 obj << -/D [597 0 R /XYZ 342.4274 566.6217 null] +644 0 obj << +/D [641 0 R /XYZ 342.4274 566.6217 null] >> endobj -603 0 obj << -/D [597 0 R /XYZ 99.8954 389.9713 null] +647 0 obj << +/D [641 0 R /XYZ 99.8954 389.9713 null] >> endobj -604 0 obj << -/D [597 0 R /XYZ 99.8954 374.7802 null] +648 0 obj << +/D [641 0 R /XYZ 99.8954 374.7802 null] >> endobj -605 0 obj << -/D [597 0 R /XYZ 99.8954 359.589 null] +649 0 obj << +/D [641 0 R /XYZ 99.8954 359.589 null] >> endobj -606 0 obj << -/D [597 0 R /XYZ 99.8954 344.3979 null] +650 0 obj << +/D [641 0 R /XYZ 99.8954 344.3979 null] >> endobj -607 0 obj << -/D [597 0 R /XYZ 99.8954 329.2067 null] +651 0 obj << +/D [641 0 R /XYZ 99.8954 329.2067 null] >> endobj -608 0 obj << -/D [597 0 R /XYZ 99.8954 235.8127 null] +652 0 obj << +/D [641 0 R /XYZ 99.8954 235.8127 null] >> endobj -609 0 obj << -/D [597 0 R /XYZ 99.8954 220.6215 null] +653 0 obj << +/D [641 0 R /XYZ 99.8954 220.6215 null] >> endobj -610 0 obj << -/D [597 0 R /XYZ 99.8954 205.4304 null] +654 0 obj << +/D [641 0 R /XYZ 99.8954 205.4304 null] >> endobj -611 0 obj << -/D [597 0 R /XYZ 99.8954 190.2393 null] +655 0 obj << +/D [641 0 R /XYZ 99.8954 190.2393 null] >> endobj -612 0 obj << -/D [597 0 R /XYZ 99.8954 175.0481 null] +656 0 obj << +/D [641 0 R /XYZ 99.8954 175.0481 null] >> endobj -596 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F32 510 0 R /F29 375 0 R >> +640 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F32 554 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -615 0 obj << +660 0 obj << /Length 10201 >> stream @@ -6391,33 +6844,33 @@ ET 0 g 0 G endstream endobj -614 0 obj << +659 0 obj << /Type /Page -/Contents 615 0 R -/Resources 613 0 R +/Contents 660 0 R +/Resources 658 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 620 0 R +/Parent 657 0 R >> endobj -616 0 obj << -/D [614 0 R /XYZ 150.7049 740.9981 null] +661 0 obj << +/D [659 0 R /XYZ 150.7049 740.9981 null] >> endobj -617 0 obj << -/D [614 0 R /XYZ 150.7049 698.1831 null] +662 0 obj << +/D [659 0 R /XYZ 150.7049 698.1831 null] >> endobj -618 0 obj << -/D [614 0 R /XYZ 150.7049 682.2222 null] +663 0 obj << +/D [659 0 R /XYZ 150.7049 682.2222 null] >> endobj -619 0 obj << -/D [614 0 R /XYZ 198.2214 393.7619 null] +664 0 obj << +/D [659 0 R /XYZ 198.2214 393.7619 null] >> endobj 42 0 obj << -/D [614 0 R /XYZ 150.7049 232.5032 null] +/D [659 0 R /XYZ 150.7049 232.5032 null] >> endobj -613 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F11 504 0 R /F32 510 0 R >> +658 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -623 0 obj << +667 0 obj << /Length 11273 >> stream @@ -6713,35 +7166,35 @@ ET 0 g 0 G endstream endobj -622 0 obj << +666 0 obj << /Type /Page -/Contents 623 0 R -/Resources 621 0 R +/Contents 667 0 R +/Resources 665 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 620 0 R -/Annots [ 626 0 R ] +/Parent 657 0 R +/Annots [ 670 0 R ] >> endobj -626 0 obj << +670 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [266.6315 160.3699 273.6053 171.2181] /Subtype /Link /A << /S /GoTo /D (figure.4) >> >> endobj -624 0 obj << -/D [622 0 R /XYZ 99.8954 740.9981 null] +668 0 obj << +/D [666 0 R /XYZ 99.8954 740.9981 null] >> endobj 46 0 obj << -/D [622 0 R /XYZ 99.8954 716.0915 null] +/D [666 0 R /XYZ 99.8954 716.0915 null] >> endobj -625 0 obj << -/D [622 0 R /XYZ 119.6419 687.7395 null] +669 0 obj << +/D [666 0 R /XYZ 119.6419 687.7395 null] >> endobj -621 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F32 510 0 R /F29 375 0 R >> +665 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F32 554 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -630 0 obj << +674 0 obj << /Length 11954 >> stream @@ -7148,39 +7601,39 @@ ET 0 g 0 G endstream endobj -629 0 obj << +673 0 obj << /Type /Page -/Contents 630 0 R -/Resources 628 0 R +/Contents 674 0 R +/Resources 672 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 620 0 R +/Parent 657 0 R >> endobj -631 0 obj << -/D [629 0 R /XYZ 150.7049 740.9981 null] +675 0 obj << +/D [673 0 R /XYZ 150.7049 740.9981 null] >> endobj -627 0 obj << -/D [629 0 R /XYZ 206.3709 569.5632 null] +671 0 obj << +/D [673 0 R /XYZ 206.3709 569.5632 null] >> endobj -632 0 obj << -/D [629 0 R /XYZ 150.7049 535.9359 null] +676 0 obj << +/D [673 0 R /XYZ 150.7049 535.9359 null] >> endobj -633 0 obj << -/D [629 0 R /XYZ 150.7049 485.6721 null] +677 0 obj << +/D [673 0 R /XYZ 150.7049 485.6721 null] >> endobj -634 0 obj << -/D [629 0 R /XYZ 150.7049 434.6101 null] +678 0 obj << +/D [673 0 R /XYZ 150.7049 434.6101 null] >> endobj -635 0 obj << -/D [629 0 R /XYZ 150.7049 418.765 null] +679 0 obj << +/D [673 0 R /XYZ 150.7049 418.765 null] >> endobj 50 0 obj << -/D [629 0 R /XYZ 150.7049 240.0087 null] +/D [673 0 R /XYZ 150.7049 240.0087 null] >> endobj -628 0 obj << -/Font << /F32 510 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F29 375 0 R >> +672 0 obj << +/Font << /F32 554 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -638 0 obj << +682 0 obj << /Length 8907 >> stream @@ -7522,54 +7975,54 @@ ET 0 g 0 G endstream endobj -637 0 obj << +681 0 obj << /Type /Page -/Contents 638 0 R -/Resources 636 0 R +/Contents 682 0 R +/Resources 680 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 620 0 R -/Annots [ 641 0 R 647 0 R ] +/Parent 657 0 R +/Annots [ 685 0 R 691 0 R ] >> endobj -641 0 obj << +685 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [126.8753 602.9013 133.8492 614.0262] /Subtype /Link /A << /S /GoTo /D (figure.5) >> >> endobj -647 0 obj << +691 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 141.2075 361.7786 152.3325] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -639 0 obj << -/D [637 0 R /XYZ 99.8954 740.9981 null] +683 0 obj << +/D [681 0 R /XYZ 99.8954 740.9981 null] >> endobj 54 0 obj << -/D [637 0 R /XYZ 99.8954 674.6218 null] +/D [681 0 R /XYZ 99.8954 674.6218 null] >> endobj -640 0 obj << -/D [637 0 R /XYZ 257.5625 618.0666 null] +684 0 obj << +/D [681 0 R /XYZ 257.5625 618.0666 null] >> endobj -645 0 obj << -/D [637 0 R /XYZ 155.4784 378.82 null] +689 0 obj << +/D [681 0 R /XYZ 155.4784 378.82 null] >> endobj 58 0 obj << -/D [637 0 R /XYZ 99.8954 334.4617 null] +/D [681 0 R /XYZ 99.8954 334.4617 null] >> endobj 62 0 obj << -/D [637 0 R /XYZ 99.8954 266.5206 null] +/D [681 0 R /XYZ 99.8954 266.5206 null] >> endobj -646 0 obj << -/D [637 0 R /XYZ 99.8954 236.9083 null] +690 0 obj << +/D [681 0 R /XYZ 99.8954 236.9083 null] >> endobj -636 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F18 369 0 R /F32 510 0 R /F48 644 0 R /F19 489 0 R >> +680 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F18 401 0 R /F32 554 0 R /F48 688 0 R /F19 533 0 R >> /ProcSet [ /PDF /Text ] >> endobj -650 0 obj << +694 0 obj << /Length 10757 >> stream @@ -8047,62 +8500,62 @@ ET 0 g 0 G endstream endobj -649 0 obj << +693 0 obj << /Type /Page -/Contents 650 0 R -/Resources 648 0 R +/Contents 694 0 R +/Resources 692 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 620 0 R -/Annots [ 652 0 R 654 0 R 655 0 R 657 0 R ] +/Parent 657 0 R +/Annots [ 696 0 R 698 0 R 699 0 R 701 0 R ] >> endobj -652 0 obj << +696 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [351.2306 690.6868 358.2044 702.6419] /Subtype /Link /A << /S /GoTo /D (section.1) >> >> endobj -654 0 obj << +698 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 487.5273 412.5881 498.6522] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -655 0 obj << +699 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [186.3401 418.6218 193.314 430.577] /Subtype /Link /A << /S /GoTo /D (section.1) >> >> endobj -657 0 obj << +701 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 215.4623 412.5881 226.5873] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -651 0 obj << -/D [649 0 R /XYZ 150.7049 740.9981 null] +695 0 obj << +/D [693 0 R /XYZ 150.7049 740.9981 null] >> endobj 66 0 obj << -/D [649 0 R /XYZ 150.7049 610.6859 null] +/D [693 0 R /XYZ 150.7049 610.6859 null] >> endobj -653 0 obj << -/D [649 0 R /XYZ 150.7049 581.658 null] +697 0 obj << +/D [693 0 R /XYZ 150.7049 581.658 null] >> endobj 70 0 obj << -/D [649 0 R /XYZ 150.7049 338.6209 null] +/D [693 0 R /XYZ 150.7049 338.6209 null] >> endobj -656 0 obj << -/D [649 0 R /XYZ 150.7049 309.5931 null] +700 0 obj << +/D [693 0 R /XYZ 150.7049 309.5931 null] >> endobj -648 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F14 535 0 R /F10 532 0 R /F18 369 0 R /F19 489 0 R /F32 510 0 R >> +692 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F14 579 0 R /F10 576 0 R /F18 401 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -660 0 obj << +704 0 obj << /Length 9580 >> stream @@ -8567,61 +9020,61 @@ ET 0 g 0 G endstream endobj -659 0 obj << +703 0 obj << /Type /Page -/Contents 660 0 R -/Resources 658 0 R +/Contents 704 0 R +/Resources 702 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 620 0 R -/Annots [ 663 0 R 665 0 R 667 0 R ] +/Parent 712 0 R +/Annots [ 707 0 R 709 0 R 711 0 R ] >> endobj -663 0 obj << +707 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 602.4906 361.7786 613.6156] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -665 0 obj << +709 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 386.7525 367.009 397.8774] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -667 0 obj << +711 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 157.0666 367.009 168.1916] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -661 0 obj << -/D [659 0 R /XYZ 99.8954 740.9981 null] +705 0 obj << +/D [703 0 R /XYZ 99.8954 740.9981 null] >> endobj 74 0 obj << -/D [659 0 R /XYZ 99.8954 716.0915 null] +/D [703 0 R /XYZ 99.8954 716.0915 null] >> endobj -662 0 obj << -/D [659 0 R /XYZ 99.8954 693.4736 null] +706 0 obj << +/D [703 0 R /XYZ 99.8954 693.4736 null] >> endobj 78 0 obj << -/D [659 0 R /XYZ 99.8954 505.9988 null] +/D [703 0 R /XYZ 99.8954 505.9988 null] >> endobj -664 0 obj << -/D [659 0 R /XYZ 99.8954 477.7354 null] +708 0 obj << +/D [703 0 R /XYZ 99.8954 477.7354 null] >> endobj 82 0 obj << -/D [659 0 R /XYZ 99.8954 278.6376 null] +/D [703 0 R /XYZ 99.8954 278.6376 null] >> endobj -666 0 obj << -/D [659 0 R /XYZ 99.8954 248.0495 null] +710 0 obj << +/D [703 0 R /XYZ 99.8954 248.0495 null] >> endobj -658 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +702 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -670 0 obj << +715 0 obj << /Length 4564 >> stream @@ -8814,41 +9267,41 @@ ET 0 g 0 G endstream endobj -669 0 obj << +714 0 obj << /Type /Page -/Contents 670 0 R -/Resources 668 0 R +/Contents 715 0 R +/Resources 713 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 676 0 R -/Annots [ 673 0 R ] +/Parent 712 0 R +/Annots [ 718 0 R ] >> endobj -673 0 obj << +718 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 533.1941 417.8184 544.319] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -671 0 obj << -/D [669 0 R /XYZ 150.7049 740.9981 null] +716 0 obj << +/D [714 0 R /XYZ 150.7049 740.9981 null] >> endobj 86 0 obj << -/D [669 0 R /XYZ 150.7049 653.5345 null] +/D [714 0 R /XYZ 150.7049 653.5345 null] >> endobj -672 0 obj << -/D [669 0 R /XYZ 150.7049 625.271 null] +717 0 obj << +/D [714 0 R /XYZ 150.7049 625.271 null] >> endobj -674 0 obj << -/D [669 0 R /XYZ 150.7049 462.2311 null] +719 0 obj << +/D [714 0 R /XYZ 150.7049 462.2311 null] >> endobj -675 0 obj << -/D [669 0 R /XYZ 150.7049 466.2161 null] +720 0 obj << +/D [714 0 R /XYZ 150.7049 466.2161 null] >> endobj -668 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +713 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -679 0 obj << +723 0 obj << /Length 356 >> stream @@ -8870,24 +9323,24 @@ ET 0 g 0 G endstream endobj -678 0 obj << +722 0 obj << /Type /Page -/Contents 679 0 R -/Resources 677 0 R +/Contents 723 0 R +/Resources 721 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 676 0 R +/Parent 712 0 R >> endobj -680 0 obj << -/D [678 0 R /XYZ 99.8954 740.9981 null] +724 0 obj << +/D [722 0 R /XYZ 99.8954 740.9981 null] >> endobj 90 0 obj << -/D [678 0 R /XYZ 99.8954 716.0915 null] +/D [722 0 R /XYZ 99.8954 716.0915 null] >> endobj -677 0 obj << -/Font << /F18 369 0 R /F8 378 0 R >> +721 0 obj << +/Font << /F18 401 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -683 0 obj << +727 0 obj << /Length 9395 >> stream @@ -9202,66 +9655,66 @@ ET 0 g 0 G endstream endobj -682 0 obj << +726 0 obj << /Type /Page -/Contents 683 0 R -/Resources 681 0 R +/Contents 727 0 R +/Resources 725 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 676 0 R -/Annots [ 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R ] +/Parent 712 0 R +/Annots [ 731 0 R 732 0 R 733 0 R 734 0 R 735 0 R ] >> endobj -687 0 obj << +731 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [432.8971 387.203 439.871 398.0513] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -688 0 obj << +732 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 319.2846 220.6095 330.1328] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -689 0 obj << +733 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [432.8971 263.3212 439.871 274.1694] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -690 0 obj << +734 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [256.8071 195.4027 263.781 206.2509] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -691 0 obj << +735 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 139.1626 412.5881 150.2876] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -684 0 obj << -/D [682 0 R /XYZ 150.7049 740.9981 null] +728 0 obj << +/D [726 0 R /XYZ 150.7049 740.9981 null] >> endobj 94 0 obj << -/D [682 0 R /XYZ 150.7049 659.3046 null] +/D [726 0 R /XYZ 150.7049 659.3046 null] >> endobj -685 0 obj << -/D [682 0 R /XYZ 150.7049 580.189 null] +729 0 obj << +/D [726 0 R /XYZ 150.7049 580.189 null] >> endobj -686 0 obj << -/D [682 0 R /XYZ 318.4508 491.5902 null] +730 0 obj << +/D [726 0 R /XYZ 318.4508 491.5902 null] >> endobj -681 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +725 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -694 0 obj << +738 0 obj << /Length 1945 >> stream @@ -9315,29 +9768,29 @@ ET 0 g 0 G endstream endobj -693 0 obj << +737 0 obj << /Type /Page -/Contents 694 0 R -/Resources 692 0 R +/Contents 738 0 R +/Resources 736 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 676 0 R -/Annots [ 696 0 R ] +/Parent 712 0 R +/Annots [ 740 0 R ] >> endobj -696 0 obj << +740 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [205.9977 657.3119 212.9715 666.2229] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -695 0 obj << -/D [693 0 R /XYZ 99.8954 740.9981 null] +739 0 obj << +/D [737 0 R /XYZ 99.8954 740.9981 null] >> endobj -692 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F11 504 0 R >> +736 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -699 0 obj << +743 0 obj << /Length 9272 >> stream @@ -9628,59 +10081,59 @@ ET 0 g 0 G endstream endobj -698 0 obj << +742 0 obj << /Type /Page -/Contents 699 0 R -/Resources 697 0 R +/Contents 743 0 R +/Resources 741 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 676 0 R -/Annots [ 703 0 R 704 0 R 705 0 R 706 0 R ] +/Parent 712 0 R +/Annots [ 747 0 R 748 0 R 749 0 R 750 0 R ] >> endobj -703 0 obj << +747 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.8183 310.0122 260.7922 320.8604] /Subtype /Link /A << /S /GoTo /D (table.2) >> >> endobj -704 0 obj << +748 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.8183 240.9356 260.7922 251.7838] /Subtype /Link /A << /S /GoTo /D (table.2) >> >> endobj -705 0 obj << +749 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 183.5375 412.5881 194.6625] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -706 0 obj << +750 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [432.8971 117.3922 439.871 128.2404] /Subtype /Link /A << /S /GoTo /D (table.2) >> >> endobj -700 0 obj << -/D [698 0 R /XYZ 150.7049 740.9981 null] +744 0 obj << +/D [742 0 R /XYZ 150.7049 740.9981 null] >> endobj 98 0 obj << -/D [698 0 R /XYZ 150.7049 657.3183 null] +/D [742 0 R /XYZ 150.7049 657.3183 null] >> endobj -701 0 obj << -/D [698 0 R /XYZ 150.7049 518.1379 null] +745 0 obj << +/D [742 0 R /XYZ 150.7049 518.1379 null] >> endobj -702 0 obj << -/D [698 0 R /XYZ 318.4508 428.9601 null] +746 0 obj << +/D [742 0 R /XYZ 318.4508 428.9601 null] >> endobj -697 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +741 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -709 0 obj << +753 0 obj << /Length 827 >> stream @@ -9710,21 +10163,21 @@ ET 0 g 0 G endstream endobj -708 0 obj << +752 0 obj << /Type /Page -/Contents 709 0 R -/Resources 707 0 R +/Contents 753 0 R +/Resources 751 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 676 0 R +/Parent 755 0 R >> endobj -710 0 obj << -/D [708 0 R /XYZ 99.8954 740.9981 null] +754 0 obj << +/D [752 0 R /XYZ 99.8954 740.9981 null] >> endobj -707 0 obj << -/Font << /F29 375 0 R /F8 378 0 R >> +751 0 obj << +/Font << /F29 407 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -713 0 obj << +758 0 obj << /Length 9687 >> stream @@ -10015,59 +10468,59 @@ ET 0 g 0 G endstream endobj -712 0 obj << +757 0 obj << /Type /Page -/Contents 713 0 R -/Resources 711 0 R +/Contents 758 0 R +/Resources 756 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 721 0 R -/Annots [ 717 0 R 718 0 R 719 0 R 720 0 R ] +/Parent 755 0 R +/Annots [ 762 0 R 763 0 R 764 0 R 765 0 R ] >> endobj -717 0 obj << +762 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.8183 322.7584 260.7922 333.6066] /Subtype /Link /A << /S /GoTo /D (table.3) >> >> endobj -718 0 obj << +763 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.8183 253.4841 260.7922 264.3323] /Subtype /Link /A << /S /GoTo /D (table.3) >> >> endobj -719 0 obj << +764 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 195.8882 412.5881 207.0132] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -720 0 obj << +765 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [202.0125 119.3294 208.9864 128.2404] /Subtype /Link /A << /S /GoTo /D (table.2) >> >> endobj -714 0 obj << -/D [712 0 R /XYZ 150.7049 740.9981 null] +759 0 obj << +/D [757 0 R /XYZ 150.7049 740.9981 null] >> endobj 102 0 obj << -/D [712 0 R /XYZ 150.7049 656.979 null] +/D [757 0 R /XYZ 150.7049 656.979 null] >> endobj -715 0 obj << -/D [712 0 R /XYZ 150.7049 531.428 null] +760 0 obj << +/D [757 0 R /XYZ 150.7049 531.428 null] >> endobj -716 0 obj << -/D [712 0 R /XYZ 318.4508 442.1513 null] +761 0 obj << +/D [757 0 R /XYZ 318.4508 442.1513 null] >> endobj -711 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +756 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -724 0 obj << +768 0 obj << /Length 827 >> stream @@ -10097,21 +10550,21 @@ ET 0 g 0 G endstream endobj -723 0 obj << +767 0 obj << /Type /Page -/Contents 724 0 R -/Resources 722 0 R +/Contents 768 0 R +/Resources 766 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 721 0 R +/Parent 755 0 R >> endobj -725 0 obj << -/D [723 0 R /XYZ 99.8954 740.9981 null] +769 0 obj << +/D [767 0 R /XYZ 99.8954 740.9981 null] >> endobj -722 0 obj << -/Font << /F29 375 0 R /F8 378 0 R >> +766 0 obj << +/Font << /F29 407 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -728 0 obj << +772 0 obj << /Length 8440 >> stream @@ -10378,45 +10831,45 @@ ET 0 g 0 G endstream endobj -727 0 obj << +771 0 obj << /Type /Page -/Contents 728 0 R -/Resources 726 0 R +/Contents 772 0 R +/Resources 770 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 721 0 R -/Annots [ 732 0 R 733 0 R ] +/Parent 755 0 R +/Annots [ 776 0 R 777 0 R ] >> endobj -732 0 obj << +776 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 321.3649 220.6095 330.2759] /Subtype /Link /A << /S /GoTo /D (table.4) >> >> endobj -733 0 obj << +777 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 263.3602 412.5881 274.4852] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -729 0 obj << -/D [727 0 R /XYZ 150.7049 740.9981 null] +773 0 obj << +/D [771 0 R /XYZ 150.7049 740.9981 null] >> endobj 106 0 obj << -/D [727 0 R /XYZ 150.7049 659.6006 null] +/D [771 0 R /XYZ 150.7049 659.6006 null] >> endobj -730 0 obj << -/D [727 0 R /XYZ 150.7049 523.8943 null] +774 0 obj << +/D [771 0 R /XYZ 150.7049 523.8943 null] >> endobj -731 0 obj << -/D [727 0 R /XYZ 318.4508 435.3818 null] +775 0 obj << +/D [771 0 R /XYZ 318.4508 435.3818 null] >> endobj -726 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +770 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -736 0 obj << +780 0 obj << /Length 7496 >> stream @@ -10683,45 +11136,45 @@ ET 0 g 0 G endstream endobj -735 0 obj << +779 0 obj << /Type /Page -/Contents 736 0 R -/Resources 734 0 R +/Contents 780 0 R +/Resources 778 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 721 0 R -/Annots [ 740 0 R 741 0 R ] +/Parent 755 0 R +/Annots [ 784 0 R 785 0 R ] >> endobj -740 0 obj << +784 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [162.8262 378.3941 169.8 387.3051] /Subtype /Link /A << /S /GoTo /D (table.5) >> >> endobj -741 0 obj << +785 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 320.3894 361.7786 331.5143] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -737 0 obj << -/D [735 0 R /XYZ 99.8954 740.9981 null] +781 0 obj << +/D [779 0 R /XYZ 99.8954 740.9981 null] >> endobj 110 0 obj << -/D [735 0 R /XYZ 99.8954 659.6006 null] +/D [779 0 R /XYZ 99.8954 659.6006 null] >> endobj -738 0 obj << -/D [735 0 R /XYZ 99.8954 580.9235 null] +782 0 obj << +/D [779 0 R /XYZ 99.8954 580.9235 null] >> endobj -739 0 obj << -/D [735 0 R /XYZ 267.6413 492.411 null] +783 0 obj << +/D [779 0 R /XYZ 267.6413 492.411 null] >> endobj -734 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +778 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -744 0 obj << +788 0 obj << /Length 8035 >> stream @@ -10988,45 +11441,45 @@ ET 0 g 0 G endstream endobj -743 0 obj << +787 0 obj << /Type /Page -/Contents 744 0 R -/Resources 742 0 R +/Contents 788 0 R +/Resources 786 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 721 0 R -/Annots [ 748 0 R 749 0 R ] +/Parent 755 0 R +/Annots [ 792 0 R 793 0 R ] >> endobj -748 0 obj << +792 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 324.5958 220.6095 333.5069] /Subtype /Link /A << /S /GoTo /D (table.6) >> >> endobj -749 0 obj << +793 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 266.5911 412.5881 277.7161] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -745 0 obj << -/D [743 0 R /XYZ 150.7049 740.9981 null] +789 0 obj << +/D [787 0 R /XYZ 150.7049 740.9981 null] >> endobj 114 0 obj << -/D [743 0 R /XYZ 150.7049 659.6006 null] +/D [787 0 R /XYZ 150.7049 659.6006 null] >> endobj -746 0 obj << -/D [743 0 R /XYZ 150.7049 527.1252 null] +790 0 obj << +/D [787 0 R /XYZ 150.7049 527.1252 null] >> endobj -747 0 obj << -/D [743 0 R /XYZ 318.4508 438.6127 null] +791 0 obj << +/D [787 0 R /XYZ 318.4508 438.6127 null] >> endobj -742 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F7 515 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +786 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F7 559 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -752 0 obj << +796 0 obj << /Length 9076 >> stream @@ -11293,45 +11746,45 @@ ET 0 g 0 G endstream endobj -751 0 obj << +795 0 obj << /Type /Page -/Contents 752 0 R -/Resources 750 0 R +/Contents 796 0 R +/Resources 794 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 721 0 R -/Annots [ 756 0 R 757 0 R ] +/Parent 802 0 R +/Annots [ 800 0 R 801 0 R ] >> endobj -756 0 obj << +800 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [162.8262 299.5994 169.8 308.5104] /Subtype /Link /A << /S /GoTo /D (table.7) >> >> endobj -757 0 obj << +801 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 242.6673 361.7786 253.7923] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -753 0 obj << -/D [751 0 R /XYZ 99.8954 740.9981 null] +797 0 obj << +/D [795 0 R /XYZ 99.8954 740.9981 null] >> endobj 118 0 obj << -/D [751 0 R /XYZ 99.8954 663.8912 null] +/D [795 0 R /XYZ 99.8954 663.8912 null] >> endobj -754 0 obj << -/D [751 0 R /XYZ 99.8954 496.2292 null] +798 0 obj << +/D [795 0 R /XYZ 99.8954 496.2292 null] >> endobj -755 0 obj << -/D [751 0 R /XYZ 267.6413 408.7894 null] +799 0 obj << +/D [795 0 R /XYZ 267.6413 408.7894 null] >> endobj -750 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F7 515 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +794 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F7 559 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -760 0 obj << +805 0 obj << /Length 8183 >> stream @@ -11628,45 +12081,45 @@ ET 0 g 0 G endstream endobj -759 0 obj << +804 0 obj << /Type /Page -/Contents 760 0 R -/Resources 758 0 R +/Contents 805 0 R +/Resources 803 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 766 0 R -/Annots [ 764 0 R 765 0 R ] +/Parent 802 0 R +/Annots [ 809 0 R 810 0 R ] >> endobj -764 0 obj << +809 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 322.3668 220.6095 331.2778] /Subtype /Link /A << /S /GoTo /D (table.8) >> >> endobj -765 0 obj << +810 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 264.3621 412.5881 275.487] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -761 0 obj << -/D [759 0 R /XYZ 150.7049 740.9981 null] +806 0 obj << +/D [804 0 R /XYZ 150.7049 740.9981 null] >> endobj 122 0 obj << -/D [759 0 R /XYZ 150.7049 659.6006 null] +/D [804 0 R /XYZ 150.7049 659.6006 null] >> endobj -762 0 obj << -/D [759 0 R /XYZ 318.4508 495.4088 null] +807 0 obj << +/D [804 0 R /XYZ 318.4508 495.4088 null] >> endobj -763 0 obj << -/D [759 0 R /XYZ 150.7049 424.185 null] +808 0 obj << +/D [804 0 R /XYZ 150.7049 424.185 null] >> endobj -758 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F29 375 0 R /F19 489 0 R /F32 510 0 R >> +803 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F29 407 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -769 0 obj << +813 0 obj << /Length 8951 >> stream @@ -11959,45 +12412,45 @@ ET 0 g 0 G endstream endobj -768 0 obj << +812 0 obj << /Type /Page -/Contents 769 0 R -/Resources 767 0 R +/Contents 813 0 R +/Resources 811 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 766 0 R -/Annots [ 773 0 R 774 0 R ] +/Parent 802 0 R +/Annots [ 817 0 R 818 0 R ] >> endobj -773 0 obj << +817 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [162.8262 299.0297 169.8 307.9407] /Subtype /Link /A << /S /GoTo /D (table.9) >> >> endobj -774 0 obj << +818 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 242.1853 361.7786 253.3102] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -770 0 obj << -/D [768 0 R /XYZ 99.8954 740.9981 null] +814 0 obj << +/D [812 0 R /XYZ 99.8954 740.9981 null] >> endobj 126 0 obj << -/D [768 0 R /XYZ 99.8954 664.2418 null] +/D [812 0 R /XYZ 99.8954 664.2418 null] >> endobj -771 0 obj << -/D [768 0 R /XYZ 99.8954 495.1774 null] +815 0 obj << +/D [812 0 R /XYZ 99.8954 495.1774 null] >> endobj -772 0 obj << -/D [768 0 R /XYZ 267.6413 407.8252 null] +816 0 obj << +/D [812 0 R /XYZ 267.6413 407.8252 null] >> endobj -767 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +811 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -777 0 obj << +821 0 obj << /Length 7502 >> stream @@ -12306,45 +12759,45 @@ ET 0 g 0 G endstream endobj -776 0 obj << +820 0 obj << /Type /Page -/Contents 777 0 R -/Resources 775 0 R +/Contents 821 0 R +/Resources 819 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 766 0 R -/Annots [ 784 0 R 785 0 R ] +/Parent 802 0 R +/Annots [ 828 0 R 829 0 R ] >> endobj -784 0 obj << +828 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 338.3221 417.8184 349.4471] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -785 0 obj << +829 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 282.5313 412.5881 293.6563] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -778 0 obj << -/D [776 0 R /XYZ 150.7049 740.9981 null] +822 0 obj << +/D [820 0 R /XYZ 150.7049 740.9981 null] >> endobj 130 0 obj << -/D [776 0 R /XYZ 150.7049 659.6006 null] +/D [820 0 R /XYZ 150.7049 659.6006 null] >> endobj -782 0 obj << -/D [776 0 R /XYZ 320.9415 499.9106 null] +826 0 obj << +/D [820 0 R /XYZ 320.9415 499.9106 null] >> endobj -783 0 obj << -/D [776 0 R /XYZ 150.7049 430.3991 null] +827 0 obj << +/D [820 0 R /XYZ 150.7049 430.3991 null] >> endobj -775 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F13 781 0 R /F29 375 0 R /F19 489 0 R /F32 510 0 R >> +819 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F13 825 0 R /F29 407 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -788 0 obj << +832 0 obj << /Length 10678 >> stream @@ -12704,61 +13157,61 @@ ET 0 g 0 G endstream endobj -787 0 obj << +831 0 obj << /Type /Page -/Contents 788 0 R -/Resources 786 0 R +/Contents 832 0 R +/Resources 830 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 766 0 R -/Annots [ 795 0 R 796 0 R 797 0 R ] +/Parent 802 0 R +/Annots [ 839 0 R 840 0 R 841 0 R ] >> endobj -795 0 obj << +839 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [382.0877 238.4572 394.0429 249.3054] /Subtype /Link /A << /S /GoTo /D (table.11) >> >> endobj -796 0 obj << +840 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 183.6255 367.009 194.7505] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -797 0 obj << +841 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [162.8262 117.3922 174.7814 128.2404] /Subtype /Link /A << /S /GoTo /D (table.11) >> >> endobj -789 0 obj << -/D [787 0 R /XYZ 99.8954 740.9981 null] +833 0 obj << +/D [831 0 R /XYZ 99.8954 740.9981 null] >> endobj 134 0 obj << -/D [787 0 R /XYZ 99.8954 649.4007 null] +/D [831 0 R /XYZ 99.8954 649.4007 null] >> endobj -790 0 obj << -/D [787 0 R /XYZ 229.1724 625.4904 null] +834 0 obj << +/D [831 0 R /XYZ 229.1724 625.4904 null] >> endobj -791 0 obj << -/D [787 0 R /XYZ 226.0344 609.4114 null] +835 0 obj << +/D [831 0 R /XYZ 226.0344 609.4114 null] >> endobj -792 0 obj << -/D [787 0 R /XYZ 225.3942 593.3324 null] +836 0 obj << +/D [831 0 R /XYZ 225.3942 593.3324 null] >> endobj -793 0 obj << -/D [787 0 R /XYZ 270.132 420.6755 null] +837 0 obj << +/D [831 0 R /XYZ 270.132 420.6755 null] >> endobj -794 0 obj << -/D [787 0 R /XYZ 99.8954 352.9319 null] +838 0 obj << +/D [831 0 R /XYZ 99.8954 352.9319 null] >> endobj -786 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F7 515 0 R /F29 375 0 R /F19 489 0 R /F32 510 0 R >> +830 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F7 559 0 R /F29 407 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -800 0 obj << +844 0 obj << /Length 9082 >> stream @@ -13019,71 +13472,71 @@ ET 0 g 0 G endstream endobj -799 0 obj << +843 0 obj << /Type /Page -/Contents 800 0 R -/Resources 798 0 R +/Contents 844 0 R +/Resources 842 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 766 0 R -/Annots [ 802 0 R 803 0 R 804 0 R 805 0 R 806 0 R 807 0 R 808 0 R ] +/Parent 802 0 R +/Annots [ 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R ] >> endobj -802 0 obj << +846 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [432.8971 667.3299 444.8523 678.1781] /Subtype /Link /A << /S /GoTo /D (table.11) >> >> endobj -803 0 obj << +847 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 599.584 225.5908 610.4322] /Subtype /Link /A << /S /GoTo /D (table.11) >> >> endobj -804 0 obj << +848 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 543.5164 412.5881 554.6414] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -805 0 obj << +849 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [397.1986 503.9426 404.1725 514.7908] /Subtype /Link /A << /S /GoTo /D (equation.1) >> >> endobj -806 0 obj << +850 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [396.2023 488.0024 403.1762 498.8506] /Subtype /Link /A << /S /GoTo /D (equation.2) >> >> endobj -807 0 obj << +851 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [396.5068 472.0622 403.4806 482.9104] /Subtype /Link /A << /S /GoTo /D (equation.3) >> >> endobj -808 0 obj << +852 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.8183 260.8542 265.7735 271.7024] /Subtype /Link /A << /S /GoTo /D (table.11) >> >> endobj -801 0 obj << -/D [799 0 R /XYZ 150.7049 740.9981 null] +845 0 obj << +/D [843 0 R /XYZ 150.7049 740.9981 null] >> endobj -798 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F11 504 0 R /F32 510 0 R >> +842 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -811 0 obj << +855 0 obj << /Length 10663 >> stream @@ -13341,38 +13794,38 @@ ET 0 g 0 G endstream endobj -810 0 obj << +854 0 obj << /Type /Page -/Contents 811 0 R -/Resources 809 0 R +/Contents 855 0 R +/Resources 853 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 766 0 R -/Annots [ 815 0 R ] +/Parent 860 0 R +/Annots [ 859 0 R ] >> endobj -815 0 obj << +859 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [382.0877 117.3922 394.0429 128.2404] /Subtype /Link /A << /S /GoTo /D (table.12) >> >> endobj -812 0 obj << -/D [810 0 R /XYZ 99.8954 740.9981 null] +856 0 obj << +/D [854 0 R /XYZ 99.8954 740.9981 null] >> endobj 138 0 obj << -/D [810 0 R /XYZ 99.8954 663.2112 null] +/D [854 0 R /XYZ 99.8954 663.2112 null] >> endobj -813 0 obj << -/D [810 0 R /XYZ 99.8954 328.8493 null] +857 0 obj << +/D [854 0 R /XYZ 99.8954 328.8493 null] >> endobj -814 0 obj << -/D [810 0 R /XYZ 270.132 217.3292 null] +858 0 obj << +/D [854 0 R /XYZ 270.132 217.3292 null] >> endobj -809 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F13 781 0 R /F7 515 0 R /F19 489 0 R /F29 375 0 R >> +853 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F13 825 0 R /F7 559 0 R /F19 533 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -818 0 obj << +863 0 obj << /Length 10709 >> stream @@ -13665,57 +14118,57 @@ ET 0 g 0 G endstream endobj -817 0 obj << +862 0 obj << /Type /Page -/Contents 818 0 R -/Resources 816 0 R +/Contents 863 0 R +/Resources 861 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 825 0 R -/Annots [ 820 0 R 821 0 R 822 0 R 823 0 R 824 0 R ] +/Parent 860 0 R +/Annots [ 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R ] >> endobj -820 0 obj << +865 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [393.7383 667.3299 400.7122 678.1781] /Subtype /Link /A << /S /GoTo /D (section.3) >> >> endobj -821 0 obj << +866 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 599.0147 225.5908 609.8629] /Subtype /Link /A << /S /GoTo /D (table.12) >> >> endobj -822 0 obj << +867 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [432.8971 542.6546 444.8523 553.5028] /Subtype /Link /A << /S /GoTo /D (table.12) >> >> endobj -823 0 obj << +868 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 474.3393 225.5908 485.1876] /Subtype /Link /A << /S /GoTo /D (table.12) >> >> endobj -824 0 obj << +869 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 417.7025 412.5881 428.8275] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -819 0 obj << -/D [817 0 R /XYZ 150.7049 740.9981 null] +864 0 obj << +/D [862 0 R /XYZ 150.7049 740.9981 null] >> endobj -816 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F32 510 0 R /F19 489 0 R >> +861 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F32 554 0 R /F19 533 0 R >> /ProcSet [ /PDF /Text ] >> endobj -828 0 obj << +872 0 obj << /Length 5025 >> stream @@ -13837,36 +14290,36 @@ ET 0 g 0 G endstream endobj -827 0 obj << +871 0 obj << /Type /Page -/Contents 828 0 R -/Resources 826 0 R +/Contents 872 0 R +/Resources 870 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 825 0 R -/Annots [ 830 0 R 831 0 R ] +/Parent 860 0 R +/Annots [ 874 0 R 875 0 R ] >> endobj -830 0 obj << +874 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [162.8262 537.7602 174.7814 546.6713] /Subtype /Link /A << /S /GoTo /D (table.12) >> >> endobj -831 0 obj << +875 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [203.0089 380.4059 214.9641 391.2541] /Subtype /Link /A << /S /GoTo /D (table.12) >> >> endobj -829 0 obj << -/D [827 0 R /XYZ 99.8954 740.9981 null] +873 0 obj << +/D [871 0 R /XYZ 99.8954 740.9981 null] >> endobj -826 0 obj << -/Font << /F32 510 0 R /F8 378 0 R /F29 375 0 R /F11 504 0 R >> +870 0 obj << +/Font << /F32 554 0 R /F8 410 0 R /F29 407 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -834 0 obj << +878 0 obj << /Length 1173 >> stream @@ -13900,32 +14353,32 @@ ET 0 g 0 G endstream endobj -833 0 obj << +877 0 obj << /Type /Page -/Contents 834 0 R -/Resources 832 0 R +/Contents 878 0 R +/Resources 876 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 825 0 R -/Annots [ 836 0 R ] +/Parent 860 0 R +/Annots [ 880 0 R ] >> endobj -836 0 obj << +880 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [350.3454 657.4642 357.3192 668.3124] /Subtype /Link /A << /S /GoTo /D (section.6) >> >> endobj -835 0 obj << -/D [833 0 R /XYZ 150.7049 740.9981 null] +879 0 obj << +/D [877 0 R /XYZ 150.7049 740.9981 null] >> endobj 142 0 obj << -/D [833 0 R /XYZ 150.7049 716.0915 null] +/D [877 0 R /XYZ 150.7049 716.0915 null] >> endobj -832 0 obj << -/Font << /F18 369 0 R /F8 378 0 R >> +876 0 obj << +/Font << /F18 401 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -839 0 obj << +883 0 obj << /Length 8252 >> stream @@ -14238,52 +14691,52 @@ ET 0 g 0 G endstream endobj -838 0 obj << +882 0 obj << /Type /Page -/Contents 839 0 R -/Resources 837 0 R +/Contents 883 0 R +/Resources 881 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 825 0 R -/Annots [ 843 0 R 844 0 R 845 0 R ] +/Parent 860 0 R +/Annots [ 887 0 R 888 0 R 889 0 R ] >> endobj -843 0 obj << +887 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [310.744 307.7575 322.6992 318.6057] /Subtype /Link /A << /S /GoTo /D (table.13) >> >> endobj -844 0 obj << +888 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 251.9958 361.7786 263.1207] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -845 0 obj << +889 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [382.0877 184.8323 394.0429 195.6806] /Subtype /Link /A << /S /GoTo /D (table.13) >> >> endobj -840 0 obj << -/D [838 0 R /XYZ 99.8954 740.9981 null] +884 0 obj << +/D [882 0 R /XYZ 99.8954 740.9981 null] >> endobj 146 0 obj << -/D [838 0 R /XYZ 99.8954 660.8237 null] +/D [882 0 R /XYZ 99.8954 660.8237 null] >> endobj -841 0 obj << -/D [838 0 R /XYZ 270.132 504.1915 null] +885 0 obj << +/D [882 0 R /XYZ 270.132 504.1915 null] >> endobj -842 0 obj << -/D [838 0 R /XYZ 99.8954 435.1175 null] +886 0 obj << +/D [882 0 R /XYZ 99.8954 435.1175 null] >> endobj -837 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F29 375 0 R /F19 489 0 R /F32 510 0 R >> +881 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F29 407 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -849 0 obj << +893 0 obj << /Length 5545 >> stream @@ -14397,30 +14850,30 @@ ET 0 g 0 G endstream endobj -848 0 obj << +892 0 obj << /Type /Page -/Contents 849 0 R -/Resources 847 0 R +/Contents 893 0 R +/Resources 891 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 825 0 R -/Annots [ 851 0 R 854 0 R ] +/Parent 860 0 R +/Annots [ 895 0 R 898 0 R ] >> endobj -846 0 obj << +890 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./figures/try8x8.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 855 0 R +/PTEX.InfoDict 899 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 436.00000000 496.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 856 0 R ->>/Font << /R8 857 0 R /R9 858 0 R >> +/R7 900 0 R +>>/Font << /R8 901 0 R /R9 902 0 R >> >> -/Length 859 0 R +/Length 903 0 R /Filter /FlateDecode >> stream @@ -14435,65 +14888,65 @@ J QI*éÊ'ˆX“?ûý•X•äüèßøË=ñ­™C|ž1„WF Oo&?•¤’þn*w ‚JV¿Å~GJT’ó£ã/÷Ì—²2/*±ÿ‘ªõfÚVI*é39¢GVÆ~G2T’|èßøË=ñ­ÿ|=ö?’ÌÞL8+I%#r"Ldõ{ìw¤¡A%9?ú7þrO|kt?üÃÔã½\#,„õØ¿ð H¾þ¤¹"•$ßLÏg†ORɱDÌ”Ž% d)eI%}QÉ'?+ä°~I*écÂ\‚?XO#~Ã[!©äX‚?fJÇüÁaî‹J8ù9â÷%©¤ s‰ù`=ø Ÿ× ,ªƒ1Œ|?ª$6ŠázžAª@}¡J¢¿R©’#‡z|]ñd•9ÔãýL G„z8¯—÷¬’Ï€äcD¾P%ùàgÌcå‘#<¾®x²J2³jˆÏÕpD„ó¢¼g•mø»ãoÇßþžŸúö§Ç6Úë¸w¶W~ûùñéØ?ûçãK߯åÌÞ>Øíƒ]?Øeµûü`ŸìqÛ{éÏ/m;±ù"×~¢WëÖëj¾Z…3lï²ÛÂ?|Ïz¼Ú½m[{힦„iÿb¬m»¦øóe•Ï¿{üáÛã¯×¿ÿ-3‡àendstream endobj -855 0 obj +899 0 obj << /Producer (ESP Ghostscript 815.03) /CreationDate (D:20070118112257) /ModDate (D:20070118112257) >> endobj -856 0 obj +900 0 obj << /Type /ExtGState /OPM 1 >> endobj -857 0 obj +901 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj -858 0 obj +902 0 obj << /BaseFont /Times-Bold /Type /Font /Subtype /Type1 >> endobj -859 0 obj +903 0 obj 3571 endobj -851 0 obj << +895 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 557.6855 225.5908 566.5965] /Subtype /Link /A << /S /GoTo /D (table.13) >> >> endobj -854 0 obj << +898 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [362.6764 185.3424 369.6502 196.1906] /Subtype /Link /A << /S /GoTo /D (figure.6) >> >> endobj -850 0 obj << -/D [848 0 R /XYZ 150.7049 740.9981 null] +894 0 obj << +/D [892 0 R /XYZ 150.7049 740.9981 null] >> endobj -852 0 obj << -/D [848 0 R /XYZ 283.6922 266.953 null] +896 0 obj << +/D [892 0 R /XYZ 283.6922 266.953 null] >> endobj -853 0 obj << -/D [848 0 R /XYZ 150.7049 197.4415 null] +897 0 obj << +/D [892 0 R /XYZ 150.7049 197.4415 null] >> endobj -847 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F32 510 0 R /F11 504 0 R /F18 369 0 R >> -/XObject << /Im3 846 0 R >> +891 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F32 554 0 R /F11 548 0 R /F18 401 0 R >> +/XObject << /Im3 890 0 R >> /ProcSet [ /PDF /Text ] >> endobj -862 0 obj << +906 0 obj << /Length 3512 >> stream @@ -14522,21 +14975,21 @@ ET 0 g 0 G endstream endobj -861 0 obj << +905 0 obj << /Type /Page -/Contents 862 0 R -/Resources 860 0 R +/Contents 906 0 R +/Resources 904 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 825 0 R +/Parent 911 0 R >> endobj -863 0 obj << -/D [861 0 R /XYZ 99.8954 740.9981 null] +907 0 obj << +/D [905 0 R /XYZ 99.8954 740.9981 null] >> endobj -860 0 obj << -/Font << /F47 866 0 R /F8 378 0 R >> +904 0 obj << +/Font << /F47 910 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -869 0 obj << +914 0 obj << /Length 10182 >> stream @@ -14991,45 +15444,45 @@ ET 0 g 0 G endstream endobj -868 0 obj << +913 0 obj << /Type /Page -/Contents 869 0 R -/Resources 867 0 R +/Contents 914 0 R +/Resources 912 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 875 0 R -/Annots [ 873 0 R 874 0 R ] +/Parent 911 0 R +/Annots [ 918 0 R 919 0 R ] >> endobj -873 0 obj << +918 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [213.6356 309.5181 225.5908 318.4292] /Subtype /Link /A << /S /GoTo /D (table.14) >> >> endobj -874 0 obj << +919 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 252.3599 412.5881 263.4849] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -870 0 obj << -/D [868 0 R /XYZ 150.7049 740.9981 null] +915 0 obj << +/D [913 0 R /XYZ 150.7049 740.9981 null] >> endobj 150 0 obj << -/D [868 0 R /XYZ 150.7049 662.9866 null] +/D [913 0 R /XYZ 150.7049 662.9866 null] >> endobj -871 0 obj << -/D [868 0 R /XYZ 320.9415 502.7007 null] +916 0 obj << +/D [913 0 R /XYZ 320.9415 502.7007 null] >> endobj -872 0 obj << -/D [868 0 R /XYZ 150.7049 434.4002 null] +917 0 obj << +/D [913 0 R /XYZ 150.7049 434.4002 null] >> endobj -867 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F29 375 0 R /F19 489 0 R /F32 510 0 R >> +912 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F29 407 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -879 0 obj << +923 0 obj << /Length 8136 >> stream @@ -15163,58 +15616,58 @@ ET 0 g 0 G endstream endobj -878 0 obj << +922 0 obj << /Type /Page -/Contents 879 0 R -/Resources 877 0 R +/Contents 923 0 R +/Resources 921 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 875 0 R -/Annots [ 881 0 R 887 0 R 888 0 R ] +/Parent 911 0 R +/Annots [ 925 0 R 931 0 R 932 0 R ] >> endobj -881 0 obj << +925 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [203.0089 579.6587 214.9641 590.5069] /Subtype /Link /A << /S /GoTo /D (table.14) >> >> endobj -887 0 obj << +931 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [311.8669 304.7453 318.8408 315.5935] /Subtype /Link /A << /S /GoTo /D (figure.7) >> >> endobj -888 0 obj << +932 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [195.0531 280.835 202.0269 291.6832] /Subtype /Link /A << /S /GoTo /D (figure.6) >> >> endobj -880 0 obj << -/D [878 0 R /XYZ 99.8954 740.9981 null] +924 0 obj << +/D [922 0 R /XYZ 99.8954 740.9981 null] >> endobj -882 0 obj << -/D [878 0 R /XYZ 99.8954 481.2002 null] +926 0 obj << +/D [922 0 R /XYZ 99.8954 481.2002 null] >> endobj -883 0 obj << -/D [878 0 R /XYZ 99.8954 485.1853 null] +927 0 obj << +/D [922 0 R /XYZ 99.8954 485.1853 null] >> endobj -884 0 obj << -/D [878 0 R /XYZ 99.8954 454.1572 null] +928 0 obj << +/D [922 0 R /XYZ 99.8954 454.1572 null] >> endobj -885 0 obj << -/D [878 0 R /XYZ 99.8954 410.3215 null] +929 0 obj << +/D [922 0 R /XYZ 99.8954 410.3215 null] >> endobj -886 0 obj << -/D [878 0 R /XYZ 99.8954 316.8444 null] +930 0 obj << +/D [922 0 R /XYZ 99.8954 316.8444 null] >> endobj -877 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F11 504 0 R /F18 369 0 R /F10 532 0 R /F32 510 0 R >> +921 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F11 548 0 R /F18 401 0 R /F10 576 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -892 0 obj << +936 0 obj << /Length 4245 >> stream @@ -15243,21 +15696,21 @@ ET 0 g 0 G endstream endobj -891 0 obj << +935 0 obj << /Type /Page -/Contents 892 0 R -/Resources 890 0 R +/Contents 936 0 R +/Resources 934 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 875 0 R +/Parent 911 0 R >> endobj -893 0 obj << -/D [891 0 R /XYZ 150.7049 740.9981 null] +937 0 obj << +/D [935 0 R /XYZ 150.7049 740.9981 null] >> endobj -890 0 obj << -/Font << /F33 522 0 R /F8 378 0 R >> +934 0 obj << +/Font << /F33 566 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -896 0 obj << +940 0 obj << /Length 651 >> stream @@ -15299,29 +15752,29 @@ ET 0 g 0 G endstream endobj -895 0 obj << +939 0 obj << /Type /Page -/Contents 896 0 R -/Resources 894 0 R +/Contents 940 0 R +/Resources 938 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 875 0 R +/Parent 911 0 R >> endobj -876 0 obj << +920 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./figures/try8x8_ov.pdf) /PTEX.PageNumber 1 -/PTEX.InfoDict 898 0 R +/PTEX.InfoDict 942 0 R /Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000] /BBox [0.00000000 0.00000000 436.00000000 514.00000000] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << -/R7 899 0 R ->>/Font << /R8 900 0 R /R9 901 0 R >> +/R7 943 0 R +>>/Font << /R8 944 0 R /R9 945 0 R >> >> -/Length 902 0 R +/Length 946 0 R /Filter /FlateDecode >> stream @@ -15334,48 +15787,48 @@ V >+>O|¾ñÙðÙ¿ùéË_¥¯÷\ñûgê|~ùùñé]¿ùòÏÇç³ÞáL.äー·U>ǹ۔ëv>?¥Dñ ÷«ã4«[};Z‡»l7©øÏ_ßýa}ùÌøý€¼_Ç2㣿lñ}Îù§¿í óá!Zäÿ/L)ÇÇ8ú:ß=þ êë¼®endstream endobj -898 0 obj +942 0 obj << /Producer (ESP Ghostscript 815.03) /CreationDate (D:20070118114343) /ModDate (D:20070118114343) >> endobj -899 0 obj +943 0 obj << /Type /ExtGState /OPM 1 >> endobj -900 0 obj +944 0 obj << /BaseFont /Times-Roman /Type /Font /Subtype /Type1 >> endobj -901 0 obj +945 0 obj << /BaseFont /Times-Bold /Type /Font /Subtype /Type1 >> endobj -902 0 obj +946 0 obj 3652 endobj -897 0 obj << -/D [895 0 R /XYZ 99.8954 740.9981 null] +941 0 obj << +/D [939 0 R /XYZ 99.8954 740.9981 null] >> endobj -889 0 obj << -/D [895 0 R /XYZ 232.8827 275.514 null] +933 0 obj << +/D [939 0 R /XYZ 232.8827 275.514 null] >> endobj -894 0 obj << -/Font << /F8 378 0 R >> -/XObject << /Im4 876 0 R >> +938 0 obj << +/Font << /F8 410 0 R >> +/XObject << /Im4 920 0 R >> /ProcSet [ /PDF /Text ] >> endobj -905 0 obj << +949 0 obj << /Length 11429 >> stream @@ -15831,48 +16284,48 @@ ET 0 g 0 G endstream endobj -904 0 obj << +948 0 obj << /Type /Page -/Contents 905 0 R -/Resources 903 0 R +/Contents 949 0 R +/Resources 947 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 875 0 R -/Annots [ 910 0 R 911 0 R ] +/Parent 911 0 R +/Annots [ 954 0 R 955 0 R ] >> endobj -910 0 obj << +954 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [256.8071 242.1043 268.7623 251.0153] /Subtype /Link /A << /S /GoTo /D (table.15) >> >> endobj -911 0 obj << +955 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 184.4805 412.5881 195.6054] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -906 0 obj << -/D [904 0 R /XYZ 150.7049 740.9981 null] +950 0 obj << +/D [948 0 R /XYZ 150.7049 740.9981 null] >> endobj 154 0 obj << -/D [904 0 R /XYZ 150.7049 661.1242 null] +/D [948 0 R /XYZ 150.7049 661.1242 null] >> endobj -907 0 obj << -/D [904 0 R /XYZ 320.9415 466.1542 null] +951 0 obj << +/D [948 0 R /XYZ 320.9415 466.1542 null] >> endobj -908 0 obj << -/D [904 0 R /XYZ 150.7049 395.2505 null] +952 0 obj << +/D [948 0 R /XYZ 150.7049 395.2505 null] >> endobj -909 0 obj << -/D [904 0 R /XYZ 150.7049 343.5416 null] +953 0 obj << +/D [948 0 R /XYZ 150.7049 343.5416 null] >> endobj -903 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F14 535 0 R /F10 532 0 R /F7 515 0 R /F13 781 0 R /F29 375 0 R /F19 489 0 R /F32 510 0 R >> +947 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F7 559 0 R /F13 825 0 R /F29 407 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -914 0 obj << +958 0 obj << /Length 7264 >> stream @@ -16112,21 +16565,21 @@ ET 0 g 0 G endstream endobj -913 0 obj << +957 0 obj << /Type /Page -/Contents 914 0 R -/Resources 912 0 R +/Contents 958 0 R +/Resources 956 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 875 0 R +/Parent 960 0 R >> endobj -915 0 obj << -/D [913 0 R /XYZ 99.8954 740.9981 null] +959 0 obj << +/D [957 0 R /XYZ 99.8954 740.9981 null] >> endobj -912 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F14 535 0 R /F11 504 0 R >> +956 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F14 579 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -918 0 obj << +963 0 obj << /Length 10781 >> stream @@ -16557,41 +17010,41 @@ ET 0 g 0 G endstream endobj -917 0 obj << +962 0 obj << /Type /Page -/Contents 918 0 R -/Resources 916 0 R +/Contents 963 0 R +/Resources 961 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 924 0 R -/Annots [ 923 0 R ] +/Parent 960 0 R +/Annots [ 968 0 R ] >> endobj -923 0 obj << +968 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 185.196 412.5881 196.321] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -919 0 obj << -/D [917 0 R /XYZ 150.7049 740.9981 null] +964 0 obj << +/D [962 0 R /XYZ 150.7049 740.9981 null] >> endobj 158 0 obj << -/D [917 0 R /XYZ 150.7049 659.0266 null] +/D [962 0 R /XYZ 150.7049 659.0266 null] >> endobj -920 0 obj << -/D [917 0 R /XYZ 320.9415 457.7293 null] +965 0 obj << +/D [962 0 R /XYZ 320.9415 457.7293 null] >> endobj -921 0 obj << -/D [917 0 R /XYZ 150.7049 385.6812 null] +966 0 obj << +/D [962 0 R /XYZ 150.7049 385.6812 null] >> endobj -922 0 obj << -/D [917 0 R /XYZ 150.7049 333.8166 null] +967 0 obj << +/D [962 0 R /XYZ 150.7049 333.8166 null] >> endobj -916 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F11 504 0 R /F10 532 0 R /F14 535 0 R /F7 515 0 R /F13 781 0 R /F29 375 0 R /F19 489 0 R /F32 510 0 R >> +961 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F10 576 0 R /F14 579 0 R /F7 559 0 R /F13 825 0 R /F29 407 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -927 0 obj << +971 0 obj << /Length 7973 >> stream @@ -16856,29 +17309,29 @@ ET 0 g 0 G endstream endobj -926 0 obj << +970 0 obj << /Type /Page -/Contents 927 0 R -/Resources 925 0 R +/Contents 971 0 R +/Resources 969 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 924 0 R -/Annots [ 929 0 R ] +/Parent 960 0 R +/Annots [ 973 0 R ] >> endobj -929 0 obj << +973 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [205.9977 310.612 217.9529 319.5231] /Subtype /Link /A << /S /GoTo /D (table.16) >> >> endobj -928 0 obj << -/D [926 0 R /XYZ 99.8954 740.9981 null] +972 0 obj << +/D [970 0 R /XYZ 99.8954 740.9981 null] >> endobj -925 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F14 535 0 R /F11 504 0 R >> +969 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F14 579 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -932 0 obj << +976 0 obj << /Length 369 >> stream @@ -16900,24 +17353,24 @@ ET 0 g 0 G endstream endobj -931 0 obj << +975 0 obj << /Type /Page -/Contents 932 0 R -/Resources 930 0 R +/Contents 976 0 R +/Resources 974 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 924 0 R +/Parent 960 0 R >> endobj -933 0 obj << -/D [931 0 R /XYZ 150.7049 740.9981 null] +977 0 obj << +/D [975 0 R /XYZ 150.7049 740.9981 null] >> endobj 162 0 obj << -/D [931 0 R /XYZ 150.7049 716.0915 null] +/D [975 0 R /XYZ 150.7049 716.0915 null] >> endobj -930 0 obj << -/Font << /F18 369 0 R /F8 378 0 R >> +974 0 obj << +/Font << /F18 401 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -936 0 obj << +980 0 obj << /Length 8560 >> stream @@ -17139,27 +17592,27 @@ ET 0 g 0 G endstream endobj -935 0 obj << +979 0 obj << /Type /Page -/Contents 936 0 R -/Resources 934 0 R +/Contents 980 0 R +/Resources 978 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 924 0 R +/Parent 960 0 R >> endobj -937 0 obj << -/D [935 0 R /XYZ 99.8954 740.9981 null] +981 0 obj << +/D [979 0 R /XYZ 99.8954 740.9981 null] >> endobj 166 0 obj << -/D [935 0 R /XYZ 99.8954 637.5366 null] +/D [979 0 R /XYZ 99.8954 637.5366 null] >> endobj -938 0 obj << -/D [935 0 R /XYZ 99.8954 608.6174 null] +982 0 obj << +/D [979 0 R /XYZ 99.8954 608.6174 null] >> endobj -934 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F32 510 0 R /F29 375 0 R /F11 504 0 R /F14 535 0 R >> +978 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F32 554 0 R /F29 407 0 R /F11 548 0 R /F14 579 0 R >> /ProcSet [ /PDF /Text ] >> endobj -941 0 obj << +985 0 obj << /Length 10446 >> stream @@ -17388,35 +17841,35 @@ ET 0 g 0 G endstream endobj -940 0 obj << +984 0 obj << /Type /Page -/Contents 941 0 R -/Resources 939 0 R +/Contents 985 0 R +/Resources 983 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 924 0 R -/Annots [ 943 0 R ] +/Parent 960 0 R +/Annots [ 987 0 R ] >> endobj -943 0 obj << +987 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 587.5532 412.5881 598.6782] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -942 0 obj << -/D [940 0 R /XYZ 150.7049 740.9981 null] +986 0 obj << +/D [984 0 R /XYZ 150.7049 740.9981 null] >> endobj -944 0 obj << -/D [940 0 R /XYZ 150.7049 489.8845 null] +988 0 obj << +/D [984 0 R /XYZ 150.7049 489.8845 null] >> endobj -945 0 obj << -/D [940 0 R /XYZ 150.7049 494.0935 null] +989 0 obj << +/D [984 0 R /XYZ 150.7049 494.0935 null] >> endobj -939 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F32 510 0 R /F18 369 0 R /F14 535 0 R /F11 504 0 R >> +983 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F32 554 0 R /F18 401 0 R /F14 579 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -948 0 obj << +992 0 obj << /Length 2814 >> stream @@ -17470,24 +17923,24 @@ ET 0 g 0 G endstream endobj -947 0 obj << +991 0 obj << /Type /Page -/Contents 948 0 R -/Resources 946 0 R +/Contents 992 0 R +/Resources 990 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 924 0 R +/Parent 995 0 R >> endobj -949 0 obj << -/D [947 0 R /XYZ 99.8954 740.9981 null] +993 0 obj << +/D [991 0 R /XYZ 99.8954 740.9981 null] >> endobj -950 0 obj << -/D [947 0 R /XYZ 99.8954 614.4726 null] +994 0 obj << +/D [991 0 R /XYZ 99.8954 614.4726 null] >> endobj -946 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F11 504 0 R /F32 510 0 R /F10 532 0 R >> +990 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F11 548 0 R /F32 554 0 R /F10 576 0 R >> /ProcSet [ /PDF /Text ] >> endobj -953 0 obj << +998 0 obj << /Length 6280 >> stream @@ -17690,41 +18143,41 @@ ET 0 g 0 G endstream endobj -952 0 obj << +997 0 obj << /Type /Page -/Contents 953 0 R -/Resources 951 0 R +/Contents 998 0 R +/Resources 996 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 959 0 R -/Annots [ 956 0 R ] +/Parent 995 0 R +/Annots [ 1001 0 R ] >> endobj -956 0 obj << +1001 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 332.5022 412.5881 343.6272] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -954 0 obj << -/D [952 0 R /XYZ 150.7049 740.9981 null] +999 0 obj << +/D [997 0 R /XYZ 150.7049 740.9981 null] >> endobj 170 0 obj << -/D [952 0 R /XYZ 150.7049 644.4574 null] +/D [997 0 R /XYZ 150.7049 644.4574 null] >> endobj -955 0 obj << -/D [952 0 R /XYZ 150.7049 613.8693 null] +1000 0 obj << +/D [997 0 R /XYZ 150.7049 613.8693 null] >> endobj -957 0 obj << -/D [952 0 R /XYZ 150.7049 237.11 null] +1002 0 obj << +/D [997 0 R /XYZ 150.7049 237.11 null] >> endobj -958 0 obj << -/D [952 0 R /XYZ 150.7049 241.0951 null] +1003 0 obj << +/D [997 0 R /XYZ 150.7049 241.0951 null] >> endobj -951 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R /F32 510 0 R >> +996 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -962 0 obj << +1006 0 obj << /Length 3929 >> stream @@ -17891,41 +18344,41 @@ ET 0 g 0 G endstream endobj -961 0 obj << +1005 0 obj << /Type /Page -/Contents 962 0 R -/Resources 960 0 R +/Contents 1006 0 R +/Resources 1004 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 959 0 R -/Annots [ 965 0 R ] +/Parent 995 0 R +/Annots [ 1009 0 R ] >> endobj -965 0 obj << +1009 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 521.7924 361.7786 532.9173] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -963 0 obj << -/D [961 0 R /XYZ 99.8954 740.9981 null] +1007 0 obj << +/D [1005 0 R /XYZ 99.8954 740.9981 null] >> endobj 174 0 obj << -/D [961 0 R /XYZ 99.8954 644.4574 null] +/D [1005 0 R /XYZ 99.8954 644.4574 null] >> endobj -964 0 obj << -/D [961 0 R /XYZ 99.8954 613.8693 null] +1008 0 obj << +/D [1005 0 R /XYZ 99.8954 613.8693 null] >> endobj -966 0 obj << -/D [961 0 R /XYZ 99.8954 404.4824 null] +1010 0 obj << +/D [1005 0 R /XYZ 99.8954 404.4824 null] >> endobj -967 0 obj << -/D [961 0 R /XYZ 99.8954 408.4674 null] +1011 0 obj << +/D [1005 0 R /XYZ 99.8954 408.4674 null] >> endobj -960 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1004 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -970 0 obj << +1014 0 obj << /Length 5085 >> stream @@ -18156,42 +18609,42 @@ ET 0 g 0 G endstream endobj -969 0 obj << +1013 0 obj << /Type /Page -/Contents 970 0 R -/Resources 968 0 R +/Contents 1014 0 R +/Resources 1012 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 959 0 R -/Annots [ 973 0 R 974 0 R ] +/Parent 995 0 R +/Annots [ 1017 0 R 1018 0 R ] >> endobj -973 0 obj << +1017 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 539.7251 412.5881 550.8501] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -974 0 obj << +1018 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 462.0165 412.5881 473.1415] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -971 0 obj << -/D [969 0 R /XYZ 150.7049 740.9981 null] +1015 0 obj << +/D [1013 0 R /XYZ 150.7049 740.9981 null] >> endobj 178 0 obj << -/D [969 0 R /XYZ 150.7049 659.6006 null] +/D [1013 0 R /XYZ 150.7049 659.6006 null] >> endobj -972 0 obj << -/D [969 0 R /XYZ 150.7049 631.8021 null] +1016 0 obj << +/D [1013 0 R /XYZ 150.7049 631.8021 null] >> endobj -968 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1012 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -977 0 obj << +1021 0 obj << /Length 3505 >> stream @@ -18346,35 +18799,35 @@ ET 0 g 0 G endstream endobj -976 0 obj << +1020 0 obj << /Type /Page -/Contents 977 0 R -/Resources 975 0 R +/Contents 1021 0 R +/Resources 1019 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 959 0 R -/Annots [ 980 0 R ] +/Parent 995 0 R +/Annots [ 1024 0 R ] >> endobj -980 0 obj << +1024 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 539.7251 361.7786 550.8501] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -978 0 obj << -/D [976 0 R /XYZ 99.8954 740.9981 null] +1022 0 obj << +/D [1020 0 R /XYZ 99.8954 740.9981 null] >> endobj 182 0 obj << -/D [976 0 R /XYZ 99.8954 659.6006 null] +/D [1020 0 R /XYZ 99.8954 659.6006 null] >> endobj -979 0 obj << -/D [976 0 R /XYZ 99.8954 631.8021 null] +1023 0 obj << +/D [1020 0 R /XYZ 99.8954 631.8021 null] >> endobj -975 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1019 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -983 0 obj << +1027 0 obj << /Length 8003 >> stream @@ -18641,42 +19094,42 @@ ET 0 g 0 G endstream endobj -982 0 obj << +1026 0 obj << /Type /Page -/Contents 983 0 R -/Resources 981 0 R +/Contents 1027 0 R +/Resources 1025 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 959 0 R -/Annots [ 986 0 R 987 0 R ] +/Parent 995 0 R +/Annots [ 1030 0 R 1031 0 R ] >> endobj -986 0 obj << +1030 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 434.1211 417.8184 445.2461] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -987 0 obj << +1031 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 232.8758 412.5881 244.0008] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -984 0 obj << -/D [982 0 R /XYZ 150.7049 740.9981 null] +1028 0 obj << +/D [1026 0 R /XYZ 150.7049 740.9981 null] >> endobj 186 0 obj << -/D [982 0 R /XYZ 150.7049 641.6678 null] +/D [1026 0 R /XYZ 150.7049 641.6678 null] >> endobj -985 0 obj << -/D [982 0 R /XYZ 150.7049 613.8693 null] +1029 0 obj << +/D [1026 0 R /XYZ 150.7049 613.8693 null] >> endobj -981 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F32 510 0 R /F29 375 0 R /F11 504 0 R /F14 535 0 R >> +1025 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F32 554 0 R /F29 407 0 R /F11 548 0 R /F14 579 0 R >> /ProcSet [ /PDF /Text ] >> endobj -990 0 obj << +1034 0 obj << /Length 7271 >> stream @@ -18929,54 +19382,54 @@ ET 0 g 0 G endstream endobj -989 0 obj << +1033 0 obj << /Type /Page -/Contents 990 0 R -/Resources 988 0 R +/Contents 1034 0 R +/Resources 1032 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 959 0 R -/Annots [ 993 0 R 994 0 R ] +/Parent 1043 0 R +/Annots [ 1037 0 R 1038 0 R ] >> endobj -993 0 obj << +1037 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 539.7251 361.7786 550.8501] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -994 0 obj << +1038 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 394.2706 367.009 405.3955] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -991 0 obj << -/D [989 0 R /XYZ 99.8954 740.9981 null] +1035 0 obj << +/D [1033 0 R /XYZ 99.8954 740.9981 null] >> endobj 190 0 obj << -/D [989 0 R /XYZ 99.8954 659.6006 null] +/D [1033 0 R /XYZ 99.8954 659.6006 null] >> endobj -992 0 obj << -/D [989 0 R /XYZ 99.8954 631.8021 null] +1036 0 obj << +/D [1033 0 R /XYZ 99.8954 631.8021 null] >> endobj -995 0 obj << -/D [989 0 R /XYZ 99.8954 298.8784 null] +1039 0 obj << +/D [1033 0 R /XYZ 99.8954 298.8784 null] >> endobj -996 0 obj << -/D [989 0 R /XYZ 99.8954 302.8634 null] +1040 0 obj << +/D [1033 0 R /XYZ 99.8954 302.8634 null] >> endobj -997 0 obj << -/D [989 0 R /XYZ 99.8954 281.001 null] +1041 0 obj << +/D [1033 0 R /XYZ 99.8954 281.001 null] >> endobj -998 0 obj << -/D [989 0 R /XYZ 99.8954 261.0757 null] +1042 0 obj << +/D [1033 0 R /XYZ 99.8954 261.0757 null] >> endobj -988 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R /F11 504 0 R >> +1032 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1001 0 obj << +1046 0 obj << /Length 8675 >> stream @@ -19280,49 +19733,49 @@ ET 0 g 0 G endstream endobj -1000 0 obj << +1045 0 obj << /Type /Page -/Contents 1001 0 R -/Resources 999 0 R +/Contents 1046 0 R +/Resources 1044 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1007 0 R -/Annots [ 1004 0 R 1005 0 R 1006 0 R ] +/Parent 1043 0 R +/Annots [ 1049 0 R 1050 0 R 1051 0 R ] >> endobj -1004 0 obj << +1049 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [311.9616 281.0362 379.0195 292.1612] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1005 0 obj << +1050 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 187.229 417.8184 198.354] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -1006 0 obj << +1051 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [311.9616 129.0706 379.0195 140.1955] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1002 0 obj << -/D [1000 0 R /XYZ 150.7049 740.9981 null] +1047 0 obj << +/D [1045 0 R /XYZ 150.7049 740.9981 null] >> endobj 194 0 obj << -/D [1000 0 R /XYZ 150.7049 637.6067 null] +/D [1045 0 R /XYZ 150.7049 637.6067 null] >> endobj -1003 0 obj << -/D [1000 0 R /XYZ 150.7049 608.7065 null] +1048 0 obj << +/D [1045 0 R /XYZ 150.7049 608.7065 null] >> endobj -999 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R /F32 510 0 R >> +1044 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1010 0 obj << +1054 0 obj << /Length 3842 >> stream @@ -19412,39 +19865,39 @@ ET 0 g 0 G endstream endobj -1009 0 obj << +1053 0 obj << /Type /Page -/Contents 1010 0 R -/Resources 1008 0 R +/Contents 1054 0 R +/Resources 1052 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1007 0 R +/Parent 1043 0 R >> endobj -1011 0 obj << -/D [1009 0 R /XYZ 99.8954 740.9981 null] +1055 0 obj << +/D [1053 0 R /XYZ 99.8954 740.9981 null] >> endobj -1012 0 obj << -/D [1009 0 R /XYZ 99.8954 627.4517 null] +1056 0 obj << +/D [1053 0 R /XYZ 99.8954 627.4517 null] >> endobj -1013 0 obj << -/D [1009 0 R /XYZ 99.8954 631.4368 null] +1057 0 obj << +/D [1053 0 R /XYZ 99.8954 631.4368 null] >> endobj -1014 0 obj << -/D [1009 0 R /XYZ 99.8954 599.5564 null] +1058 0 obj << +/D [1053 0 R /XYZ 99.8954 599.5564 null] >> endobj -1015 0 obj << -/D [1009 0 R /XYZ 99.8954 565.7387 null] +1059 0 obj << +/D [1053 0 R /XYZ 99.8954 565.7387 null] >> endobj -1016 0 obj << -/D [1009 0 R /XYZ 99.8954 521.9031 null] +1060 0 obj << +/D [1053 0 R /XYZ 99.8954 521.9031 null] >> endobj -1017 0 obj << -/D [1009 0 R /XYZ 99.8954 478.0675 null] +1061 0 obj << +/D [1053 0 R /XYZ 99.8954 478.0675 null] >> endobj -1008 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F18 369 0 R /F32 510 0 R >> +1052 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F18 401 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1020 0 obj << +1064 0 obj << /Length 8292 >> stream @@ -19709,51 +20162,51 @@ ET 0 g 0 G endstream endobj -1019 0 obj << +1063 0 obj << /Type /Page -/Contents 1020 0 R -/Resources 1018 0 R +/Contents 1064 0 R +/Resources 1062 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1007 0 R -/Annots [ 1023 0 R 1024 0 R ] +/Parent 1043 0 R +/Annots [ 1067 0 R 1068 0 R ] >> endobj -1023 0 obj << +1067 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 533.0958 412.5881 544.2208] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1024 0 obj << +1068 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 266.8806 417.8184 278.0055] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -1021 0 obj << -/D [1019 0 R /XYZ 150.7049 740.9981 null] +1065 0 obj << +/D [1063 0 R /XYZ 150.7049 740.9981 null] >> endobj 198 0 obj << -/D [1019 0 R /XYZ 150.7049 656.2859 null] +/D [1063 0 R /XYZ 150.7049 656.2859 null] >> endobj -1022 0 obj << -/D [1019 0 R /XYZ 150.7049 627.5883 null] +1066 0 obj << +/D [1063 0 R /XYZ 150.7049 627.5883 null] >> endobj -1025 0 obj << -/D [1019 0 R /XYZ 150.7049 166.5768 null] +1069 0 obj << +/D [1063 0 R /XYZ 150.7049 166.5768 null] >> endobj -1026 0 obj << -/D [1019 0 R /XYZ 150.7049 171.045 null] +1070 0 obj << +/D [1063 0 R /XYZ 150.7049 171.045 null] >> endobj -1027 0 obj << -/D [1019 0 R /XYZ 150.7049 135.0181 null] +1071 0 obj << +/D [1063 0 R /XYZ 150.7049 135.0181 null] >> endobj -1018 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1062 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1030 0 obj << +1074 0 obj << /Length 2347 >> stream @@ -19807,30 +20260,30 @@ ET 0 g 0 G endstream endobj -1029 0 obj << +1073 0 obj << /Type /Page -/Contents 1030 0 R -/Resources 1028 0 R +/Contents 1074 0 R +/Resources 1072 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1007 0 R +/Parent 1043 0 R >> endobj -1031 0 obj << -/D [1029 0 R /XYZ 99.8954 740.9981 null] +1075 0 obj << +/D [1073 0 R /XYZ 99.8954 740.9981 null] >> endobj -1032 0 obj << -/D [1029 0 R /XYZ 99.8954 716.0915 null] +1076 0 obj << +/D [1073 0 R /XYZ 99.8954 716.0915 null] >> endobj -1033 0 obj << -/D [1029 0 R /XYZ 99.8954 676.2963 null] +1077 0 obj << +/D [1073 0 R /XYZ 99.8954 676.2963 null] >> endobj -1034 0 obj << -/D [1029 0 R /XYZ 99.8954 632.4607 null] +1078 0 obj << +/D [1073 0 R /XYZ 99.8954 632.4607 null] >> endobj -1028 0 obj << -/Font << /F8 378 0 R /F32 510 0 R >> +1072 0 obj << +/Font << /F8 410 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1037 0 obj << +1081 0 obj << /Length 4650 >> stream @@ -20035,42 +20488,42 @@ ET 0 g 0 G endstream endobj -1036 0 obj << +1080 0 obj << /Type /Page -/Contents 1037 0 R -/Resources 1035 0 R +/Contents 1081 0 R +/Resources 1079 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1007 0 R -/Annots [ 1040 0 R 1041 0 R ] +/Parent 1043 0 R +/Annots [ 1084 0 R 1085 0 R ] >> endobj -1040 0 obj << +1084 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 539.7251 417.8184 550.8501] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -1041 0 obj << +1085 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 483.9343 412.5881 495.0593] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1038 0 obj << -/D [1036 0 R /XYZ 150.7049 740.9981 null] +1082 0 obj << +/D [1080 0 R /XYZ 150.7049 740.9981 null] >> endobj 202 0 obj << -/D [1036 0 R /XYZ 150.7049 659.6006 null] +/D [1080 0 R /XYZ 150.7049 659.6006 null] >> endobj -1039 0 obj << -/D [1036 0 R /XYZ 150.7049 631.8021 null] +1083 0 obj << +/D [1080 0 R /XYZ 150.7049 631.8021 null] >> endobj -1035 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1079 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1044 0 obj << +1088 0 obj << /Length 5822 >> stream @@ -20299,48 +20752,48 @@ ET 0 g 0 G endstream endobj -1043 0 obj << +1087 0 obj << /Type /Page -/Contents 1044 0 R -/Resources 1042 0 R +/Contents 1088 0 R +/Resources 1086 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1007 0 R -/Annots [ 1047 0 R 1048 0 R ] +/Parent 1095 0 R +/Annots [ 1091 0 R 1092 0 R ] >> endobj -1047 0 obj << +1091 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 521.7924 367.009 532.9173] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -1048 0 obj << +1092 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 466.0016 361.7786 477.1265] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1045 0 obj << -/D [1043 0 R /XYZ 99.8954 740.9981 null] +1089 0 obj << +/D [1087 0 R /XYZ 99.8954 740.9981 null] >> endobj 206 0 obj << -/D [1043 0 R /XYZ 99.8954 641.6678 null] +/D [1087 0 R /XYZ 99.8954 641.6678 null] >> endobj -1046 0 obj << -/D [1043 0 R /XYZ 99.8954 613.8693 null] +1090 0 obj << +/D [1087 0 R /XYZ 99.8954 613.8693 null] >> endobj -1049 0 obj << -/D [1043 0 R /XYZ 99.8954 292.9008 null] +1093 0 obj << +/D [1087 0 R /XYZ 99.8954 292.9008 null] >> endobj -1050 0 obj << -/D [1043 0 R /XYZ 99.8954 296.8859 null] +1094 0 obj << +/D [1087 0 R /XYZ 99.8954 296.8859 null] >> endobj -1042 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1086 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1053 0 obj << +1098 0 obj << /Length 5152 >> stream @@ -20519,35 +20972,35 @@ ET 0 g 0 G endstream endobj -1052 0 obj << +1097 0 obj << /Type /Page -/Contents 1053 0 R -/Resources 1051 0 R +/Contents 1098 0 R +/Resources 1096 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1057 0 R -/Annots [ 1056 0 R ] +/Parent 1095 0 R +/Annots [ 1101 0 R ] >> endobj -1056 0 obj << +1101 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [311.9616 539.7251 379.0195 550.8501] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1054 0 obj << -/D [1052 0 R /XYZ 150.7049 740.9981 null] +1099 0 obj << +/D [1097 0 R /XYZ 150.7049 740.9981 null] >> endobj 210 0 obj << -/D [1052 0 R /XYZ 150.7049 659.6006 null] +/D [1097 0 R /XYZ 150.7049 659.6006 null] >> endobj -1055 0 obj << -/D [1052 0 R /XYZ 150.7049 631.8021 null] +1100 0 obj << +/D [1097 0 R /XYZ 150.7049 631.8021 null] >> endobj -1051 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R /F11 504 0 R >> +1096 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1060 0 obj << +1104 0 obj << /Length 7911 >> stream @@ -20762,35 +21215,35 @@ ET 0 g 0 G endstream endobj -1059 0 obj << +1103 0 obj << /Type /Page -/Contents 1060 0 R -/Resources 1058 0 R +/Contents 1104 0 R +/Resources 1102 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1057 0 R -/Annots [ 1063 0 R ] +/Parent 1095 0 R +/Annots [ 1107 0 R ] >> endobj -1063 0 obj << +1107 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 342.6201 361.7786 353.7451] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1061 0 obj << -/D [1059 0 R /XYZ 99.8954 740.9981 null] +1105 0 obj << +/D [1103 0 R /XYZ 99.8954 740.9981 null] >> endobj 214 0 obj << -/D [1059 0 R /XYZ 99.8954 654.8587 null] +/D [1103 0 R /XYZ 99.8954 654.8587 null] >> endobj -1062 0 obj << -/D [1059 0 R /XYZ 99.8954 625.7739 null] +1106 0 obj << +/D [1103 0 R /XYZ 99.8954 625.7739 null] >> endobj -1058 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R /F32 510 0 R >> +1102 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1066 0 obj << +1110 0 obj << /Length 1178 >> stream @@ -20836,30 +21289,30 @@ ET 0 g 0 G endstream endobj -1065 0 obj << +1109 0 obj << /Type /Page -/Contents 1066 0 R -/Resources 1064 0 R +/Contents 1110 0 R +/Resources 1108 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1057 0 R +/Parent 1095 0 R >> endobj -1067 0 obj << -/D [1065 0 R /XYZ 150.7049 740.9981 null] +1111 0 obj << +/D [1109 0 R /XYZ 150.7049 740.9981 null] >> endobj -1068 0 obj << -/D [1065 0 R /XYZ 150.7049 696.2631 null] +1112 0 obj << +/D [1109 0 R /XYZ 150.7049 696.2631 null] >> endobj -1069 0 obj << -/D [1065 0 R /XYZ 150.7049 700.2482 null] +1113 0 obj << +/D [1109 0 R /XYZ 150.7049 700.2482 null] >> endobj -1070 0 obj << -/D [1065 0 R /XYZ 150.7049 677.8322 null] +1114 0 obj << +/D [1109 0 R /XYZ 150.7049 677.8322 null] >> endobj -1064 0 obj << -/Font << /F18 369 0 R /F8 378 0 R >> +1108 0 obj << +/Font << /F18 401 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1073 0 obj << +1117 0 obj << /Length 4229 >> stream @@ -21026,35 +21479,35 @@ ET 0 g 0 G endstream endobj -1072 0 obj << +1116 0 obj << /Type /Page -/Contents 1073 0 R -/Resources 1071 0 R +/Contents 1117 0 R +/Resources 1115 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1057 0 R -/Annots [ 1076 0 R ] +/Parent 1095 0 R +/Annots [ 1120 0 R ] >> endobj -1076 0 obj << +1120 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [261.1521 539.7251 328.21 550.8501] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1074 0 obj << -/D [1072 0 R /XYZ 99.8954 740.9981 null] +1118 0 obj << +/D [1116 0 R /XYZ 99.8954 740.9981 null] >> endobj 218 0 obj << -/D [1072 0 R /XYZ 99.8954 659.6006 null] +/D [1116 0 R /XYZ 99.8954 659.6006 null] >> endobj -1075 0 obj << -/D [1072 0 R /XYZ 99.8954 631.8021 null] +1119 0 obj << +/D [1116 0 R /XYZ 99.8954 631.8021 null] >> endobj -1071 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1115 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1079 0 obj << +1123 0 obj << /Length 4235 >> stream @@ -21221,35 +21674,35 @@ ET 0 g 0 G endstream endobj -1078 0 obj << +1122 0 obj << /Type /Page -/Contents 1079 0 R -/Resources 1077 0 R +/Contents 1123 0 R +/Resources 1121 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1057 0 R -/Annots [ 1082 0 R ] +/Parent 1095 0 R +/Annots [ 1126 0 R ] >> endobj -1082 0 obj << +1126 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [311.9616 460.024 379.0195 471.149] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1080 0 obj << -/D [1078 0 R /XYZ 150.7049 740.9981 null] +1124 0 obj << +/D [1122 0 R /XYZ 150.7049 740.9981 null] >> endobj 222 0 obj << -/D [1078 0 R /XYZ 150.7049 659.6006 null] +/D [1122 0 R /XYZ 150.7049 659.6006 null] >> endobj -1081 0 obj << -/D [1078 0 R /XYZ 150.7049 631.8021 null] +1125 0 obj << +/D [1122 0 R /XYZ 150.7049 631.8021 null] >> endobj -1077 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1121 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1085 0 obj << +1129 0 obj << /Length 5969 >> stream @@ -21440,35 +21893,35 @@ ET 0 g 0 G endstream endobj -1084 0 obj << +1128 0 obj << /Type /Page -/Contents 1085 0 R -/Resources 1083 0 R +/Contents 1129 0 R +/Resources 1127 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1057 0 R -/Annots [ 1088 0 R ] +/Parent 1133 0 R +/Annots [ 1132 0 R ] >> endobj -1088 0 obj << +1132 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [261.1521 318.5545 328.21 329.6795] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1086 0 obj << -/D [1084 0 R /XYZ 99.8954 740.9981 null] +1130 0 obj << +/D [1128 0 R /XYZ 99.8954 740.9981 null] >> endobj 226 0 obj << -/D [1084 0 R /XYZ 99.8954 644.4574 null] +/D [1128 0 R /XYZ 99.8954 644.4574 null] >> endobj -1087 0 obj << -/D [1084 0 R /XYZ 99.8954 613.8693 null] +1131 0 obj << +/D [1128 0 R /XYZ 99.8954 613.8693 null] >> endobj -1083 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R /F10 532 0 R /F32 510 0 R >> +1127 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R /F10 576 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1091 0 obj << +1136 0 obj << /Length 9501 >> stream @@ -21787,35 +22240,35 @@ ET 0 g 0 G endstream endobj -1090 0 obj << +1135 0 obj << /Type /Page -/Contents 1091 0 R -/Resources 1089 0 R +/Contents 1136 0 R +/Resources 1134 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1095 0 R -/Annots [ 1094 0 R ] +/Parent 1133 0 R +/Annots [ 1139 0 R ] >> endobj -1094 0 obj << +1139 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 420.4891 412.5881 431.6141] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1092 0 obj << -/D [1090 0 R /XYZ 150.7049 740.9981 null] +1137 0 obj << +/D [1135 0 R /XYZ 150.7049 740.9981 null] >> endobj 230 0 obj << -/D [1090 0 R /XYZ 150.7049 640.7226 null] +/D [1135 0 R /XYZ 150.7049 640.7226 null] >> endobj -1093 0 obj << -/D [1090 0 R /XYZ 150.7049 609.1215 null] +1138 0 obj << +/D [1135 0 R /XYZ 150.7049 609.1215 null] >> endobj -1089 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R /F11 504 0 R >> +1134 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1098 0 obj << +1142 0 obj << /Length 1361 >> stream @@ -21861,30 +22314,30 @@ ET 0 g 0 G endstream endobj -1097 0 obj << +1141 0 obj << /Type /Page -/Contents 1098 0 R -/Resources 1096 0 R +/Contents 1142 0 R +/Resources 1140 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1095 0 R +/Parent 1133 0 R >> endobj -1099 0 obj << -/D [1097 0 R /XYZ 99.8954 740.9981 null] +1143 0 obj << +/D [1141 0 R /XYZ 99.8954 740.9981 null] >> endobj -1100 0 obj << -/D [1097 0 R /XYZ 99.8954 696.2631 null] +1144 0 obj << +/D [1141 0 R /XYZ 99.8954 696.2631 null] >> endobj -1101 0 obj << -/D [1097 0 R /XYZ 99.8954 700.2482 null] +1145 0 obj << +/D [1141 0 R /XYZ 99.8954 700.2482 null] >> endobj -1102 0 obj << -/D [1097 0 R /XYZ 99.8954 666.4305 null] +1146 0 obj << +/D [1141 0 R /XYZ 99.8954 666.4305 null] >> endobj -1096 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F32 510 0 R >> +1140 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1105 0 obj << +1149 0 obj << /Length 8410 >> stream @@ -22191,35 +22644,35 @@ ET 0 g 0 G endstream endobj -1104 0 obj << +1148 0 obj << /Type /Page -/Contents 1105 0 R -/Resources 1103 0 R +/Contents 1149 0 R +/Resources 1147 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1095 0 R -/Annots [ 1108 0 R ] +/Parent 1133 0 R +/Annots [ 1152 0 R ] >> endobj -1108 0 obj << +1152 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 430.1361 412.5881 441.261] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1106 0 obj << -/D [1104 0 R /XYZ 150.7049 740.9981 null] +1150 0 obj << +/D [1148 0 R /XYZ 150.7049 740.9981 null] >> endobj 234 0 obj << -/D [1104 0 R /XYZ 150.7049 644.4574 null] +/D [1148 0 R /XYZ 150.7049 644.4574 null] >> endobj -1107 0 obj << -/D [1104 0 R /XYZ 150.7049 613.8693 null] +1151 0 obj << +/D [1148 0 R /XYZ 150.7049 613.8693 null] >> endobj -1103 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R /F11 504 0 R >> +1147 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1111 0 obj << +1155 0 obj << /Length 5664 >> stream @@ -22410,44 +22863,44 @@ ET 0 g 0 G endstream endobj -1110 0 obj << +1154 0 obj << /Type /Page -/Contents 1111 0 R -/Resources 1109 0 R +/Contents 1155 0 R +/Resources 1153 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1095 0 R -/Annots [ 1114 0 R ] +/Parent 1133 0 R +/Annots [ 1158 0 R ] >> endobj -1114 0 obj << +1158 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [294.7207 521.7924 361.7786 532.9173] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1112 0 obj << -/D [1110 0 R /XYZ 99.8954 740.9981 null] +1156 0 obj << +/D [1154 0 R /XYZ 99.8954 740.9981 null] >> endobj 238 0 obj << -/D [1110 0 R /XYZ 99.8954 644.4574 null] +/D [1154 0 R /XYZ 99.8954 644.4574 null] >> endobj -1113 0 obj << -/D [1110 0 R /XYZ 99.8954 613.8693 null] +1157 0 obj << +/D [1154 0 R /XYZ 99.8954 613.8693 null] >> endobj -1115 0 obj << -/D [1110 0 R /XYZ 99.8954 324.7812 null] +1159 0 obj << +/D [1154 0 R /XYZ 99.8954 324.7812 null] >> endobj -1116 0 obj << -/D [1110 0 R /XYZ 99.8954 328.7663 null] +1160 0 obj << +/D [1154 0 R /XYZ 99.8954 328.7663 null] >> endobj -1117 0 obj << -/D [1110 0 R /XYZ 99.8954 284.9307 null] +1161 0 obj << +/D [1154 0 R /XYZ 99.8954 284.9307 null] >> endobj -1109 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1153 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1120 0 obj << +1164 0 obj << /Length 5489 >> stream @@ -22638,44 +23091,44 @@ ET 0 g 0 G endstream endobj -1119 0 obj << +1163 0 obj << /Type /Page -/Contents 1120 0 R -/Resources 1118 0 R +/Contents 1164 0 R +/Resources 1162 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1095 0 R -/Annots [ 1123 0 R ] +/Parent 1133 0 R +/Annots [ 1167 0 R ] >> endobj -1123 0 obj << +1167 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [345.5302 539.7251 412.5881 550.8501] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1121 0 obj << -/D [1119 0 R /XYZ 150.7049 740.9981 null] +1165 0 obj << +/D [1163 0 R /XYZ 150.7049 740.9981 null] >> endobj 242 0 obj << -/D [1119 0 R /XYZ 150.7049 659.6006 null] +/D [1163 0 R /XYZ 150.7049 659.6006 null] >> endobj -1122 0 obj << -/D [1119 0 R /XYZ 150.7049 631.8021 null] +1166 0 obj << +/D [1163 0 R /XYZ 150.7049 631.8021 null] >> endobj -1124 0 obj << -/D [1119 0 R /XYZ 150.7049 342.714 null] +1168 0 obj << +/D [1163 0 R /XYZ 150.7049 342.714 null] >> endobj -1125 0 obj << -/D [1119 0 R /XYZ 150.7049 346.6991 null] +1169 0 obj << +/D [1163 0 R /XYZ 150.7049 346.6991 null] >> endobj -1126 0 obj << -/D [1119 0 R /XYZ 150.7049 314.8186 null] +1170 0 obj << +/D [1163 0 R /XYZ 150.7049 314.8186 null] >> endobj -1118 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1162 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1129 0 obj << +1173 0 obj << /Length 372 >> stream @@ -22697,24 +23150,24 @@ ET 0 g 0 G endstream endobj -1128 0 obj << +1172 0 obj << /Type /Page -/Contents 1129 0 R -/Resources 1127 0 R +/Contents 1173 0 R +/Resources 1171 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1095 0 R +/Parent 1175 0 R >> endobj -1130 0 obj << -/D [1128 0 R /XYZ 99.8954 740.9981 null] +1174 0 obj << +/D [1172 0 R /XYZ 99.8954 740.9981 null] >> endobj 246 0 obj << -/D [1128 0 R /XYZ 99.8954 716.0915 null] +/D [1172 0 R /XYZ 99.8954 716.0915 null] >> endobj -1127 0 obj << -/Font << /F18 369 0 R /F8 378 0 R >> +1171 0 obj << +/Font << /F18 401 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1133 0 obj << +1178 0 obj << /Length 4476 >> stream @@ -22829,36 +23282,36 @@ ET 0 g 0 G endstream endobj -1132 0 obj << +1177 0 obj << /Type /Page -/Contents 1133 0 R -/Resources 1131 0 R +/Contents 1178 0 R +/Resources 1176 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1139 0 R +/Parent 1175 0 R >> endobj -1134 0 obj << -/D [1132 0 R /XYZ 150.7049 740.9981 null] +1179 0 obj << +/D [1177 0 R /XYZ 150.7049 740.9981 null] >> endobj 250 0 obj << -/D [1132 0 R /XYZ 150.7049 644.4574 null] +/D [1177 0 R /XYZ 150.7049 644.4574 null] >> endobj -1135 0 obj << -/D [1132 0 R /XYZ 150.7049 613.8693 null] +1180 0 obj << +/D [1177 0 R /XYZ 150.7049 613.8693 null] >> endobj -1136 0 obj << -/D [1132 0 R /XYZ 150.7049 360.6468 null] +1181 0 obj << +/D [1177 0 R /XYZ 150.7049 360.6468 null] >> endobj -1137 0 obj << -/D [1132 0 R /XYZ 150.7049 364.6318 null] +1182 0 obj << +/D [1177 0 R /XYZ 150.7049 364.6318 null] >> endobj -1138 0 obj << -/D [1132 0 R /XYZ 150.7049 342.7693 null] +1183 0 obj << +/D [1177 0 R /XYZ 150.7049 342.7693 null] >> endobj -1131 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R >> +1176 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1142 0 obj << +1186 0 obj << /Length 6173 >> stream @@ -22985,36 +23438,36 @@ ET 0 g 0 G endstream endobj -1141 0 obj << +1185 0 obj << /Type /Page -/Contents 1142 0 R -/Resources 1140 0 R +/Contents 1186 0 R +/Resources 1184 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1139 0 R +/Parent 1175 0 R >> endobj -1143 0 obj << -/D [1141 0 R /XYZ 99.8954 740.9981 null] +1187 0 obj << +/D [1185 0 R /XYZ 99.8954 740.9981 null] >> endobj 254 0 obj << -/D [1141 0 R /XYZ 99.8954 641.6678 null] +/D [1185 0 R /XYZ 99.8954 641.6678 null] >> endobj -1144 0 obj << -/D [1141 0 R /XYZ 99.8954 613.8693 null] +1188 0 obj << +/D [1185 0 R /XYZ 99.8954 613.8693 null] >> endobj -1145 0 obj << -/D [1141 0 R /XYZ 99.8954 316.8111 null] +1189 0 obj << +/D [1185 0 R /XYZ 99.8954 316.8111 null] >> endobj -1146 0 obj << -/D [1141 0 R /XYZ 99.8954 320.7962 null] +1190 0 obj << +/D [1185 0 R /XYZ 99.8954 320.7962 null] >> endobj -1147 0 obj << -/D [1141 0 R /XYZ 99.8954 286.9786 null] +1191 0 obj << +/D [1185 0 R /XYZ 99.8954 286.9786 null] >> endobj -1140 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F14 535 0 R /F11 504 0 R /F32 510 0 R >> +1184 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F14 579 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1150 0 obj << +1194 0 obj << /Length 5472 >> stream @@ -23134,36 +23587,36 @@ ET 0 g 0 G endstream endobj -1149 0 obj << +1193 0 obj << /Type /Page -/Contents 1150 0 R -/Resources 1148 0 R +/Contents 1194 0 R +/Resources 1192 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1139 0 R +/Parent 1175 0 R >> endobj -1151 0 obj << -/D [1149 0 R /XYZ 150.7049 740.9981 null] +1195 0 obj << +/D [1193 0 R /XYZ 150.7049 740.9981 null] >> endobj 258 0 obj << -/D [1149 0 R /XYZ 150.7049 644.4574 null] +/D [1193 0 R /XYZ 150.7049 644.4574 null] >> endobj -1152 0 obj << -/D [1149 0 R /XYZ 150.7049 613.8693 null] +1196 0 obj << +/D [1193 0 R /XYZ 150.7049 613.8693 null] >> endobj -1153 0 obj << -/D [1149 0 R /XYZ 150.7049 370.6094 null] +1197 0 obj << +/D [1193 0 R /XYZ 150.7049 370.6094 null] >> endobj -1154 0 obj << -/D [1149 0 R /XYZ 150.7049 374.5944 null] +1198 0 obj << +/D [1193 0 R /XYZ 150.7049 374.5944 null] >> endobj -1155 0 obj << -/D [1149 0 R /XYZ 150.7049 328.8217 null] +1199 0 obj << +/D [1193 0 R /XYZ 150.7049 328.8217 null] >> endobj -1148 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R /F11 504 0 R /F14 535 0 R >> +1192 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R /F11 548 0 R /F14 579 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1158 0 obj << +1202 0 obj << /Length 3252 >> stream @@ -23280,27 +23733,27 @@ ET 0 g 0 G endstream endobj -1157 0 obj << +1201 0 obj << /Type /Page -/Contents 1158 0 R -/Resources 1156 0 R +/Contents 1202 0 R +/Resources 1200 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1139 0 R +/Parent 1175 0 R >> endobj -1159 0 obj << -/D [1157 0 R /XYZ 99.8954 740.9981 null] +1203 0 obj << +/D [1201 0 R /XYZ 99.8954 740.9981 null] >> endobj 262 0 obj << -/D [1157 0 R /XYZ 99.8954 659.6006 null] +/D [1201 0 R /XYZ 99.8954 659.6006 null] >> endobj -1160 0 obj << -/D [1157 0 R /XYZ 99.8954 631.8021 null] +1204 0 obj << +/D [1201 0 R /XYZ 99.8954 631.8021 null] >> endobj -1156 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> +1200 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1163 0 obj << +1207 0 obj << /Length 4212 >> stream @@ -23429,27 +23882,27 @@ ET 0 g 0 G endstream endobj -1162 0 obj << +1206 0 obj << /Type /Page -/Contents 1163 0 R -/Resources 1161 0 R +/Contents 1207 0 R +/Resources 1205 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1139 0 R +/Parent 1175 0 R >> endobj -1164 0 obj << -/D [1162 0 R /XYZ 150.7049 740.9981 null] +1208 0 obj << +/D [1206 0 R /XYZ 150.7049 740.9981 null] >> endobj 266 0 obj << -/D [1162 0 R /XYZ 150.7049 659.6006 null] +/D [1206 0 R /XYZ 150.7049 659.6006 null] >> endobj -1165 0 obj << -/D [1162 0 R /XYZ 150.7049 631.8021 null] +1209 0 obj << +/D [1206 0 R /XYZ 150.7049 631.8021 null] >> endobj -1161 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F11 504 0 R /F29 375 0 R /F14 535 0 R >> +1205 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F11 548 0 R /F29 407 0 R /F14 579 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1168 0 obj << +1212 0 obj << /Length 1939 >> stream @@ -23520,27 +23973,27 @@ ET 0 g 0 G endstream endobj -1167 0 obj << +1211 0 obj << /Type /Page -/Contents 1168 0 R -/Resources 1166 0 R +/Contents 1212 0 R +/Resources 1210 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1139 0 R +/Parent 1215 0 R >> endobj -1169 0 obj << -/D [1167 0 R /XYZ 99.8954 740.9981 null] +1213 0 obj << +/D [1211 0 R /XYZ 99.8954 740.9981 null] >> endobj 270 0 obj << -/D [1167 0 R /XYZ 99.8954 659.6006 null] +/D [1211 0 R /XYZ 99.8954 659.6006 null] >> endobj -1170 0 obj << -/D [1167 0 R /XYZ 99.8954 631.8021 null] +1214 0 obj << +/D [1211 0 R /XYZ 99.8954 631.8021 null] >> endobj -1166 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F29 375 0 R /F32 510 0 R >> +1210 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1173 0 obj << +1218 0 obj << /Length 2375 >> stream @@ -23611,27 +24064,27 @@ ET 0 g 0 G endstream endobj -1172 0 obj << +1217 0 obj << /Type /Page -/Contents 1173 0 R -/Resources 1171 0 R +/Contents 1218 0 R +/Resources 1216 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1176 0 R +/Parent 1215 0 R >> endobj -1174 0 obj << -/D [1172 0 R /XYZ 150.7049 740.9981 null] +1219 0 obj << +/D [1217 0 R /XYZ 150.7049 740.9981 null] >> endobj 274 0 obj << -/D [1172 0 R /XYZ 150.7049 644.4574 null] +/D [1217 0 R /XYZ 150.7049 644.4574 null] >> endobj -1175 0 obj << -/D [1172 0 R /XYZ 150.7049 613.8693 null] +1220 0 obj << +/D [1217 0 R /XYZ 150.7049 613.8693 null] >> endobj -1171 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> +1216 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1179 0 obj << +1223 0 obj << /Length 2055 >> stream @@ -23702,27 +24155,27 @@ ET 0 g 0 G endstream endobj -1178 0 obj << +1222 0 obj << /Type /Page -/Contents 1179 0 R -/Resources 1177 0 R +/Contents 1223 0 R +/Resources 1221 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1176 0 R +/Parent 1215 0 R >> endobj -1180 0 obj << -/D [1178 0 R /XYZ 99.8954 740.9981 null] +1224 0 obj << +/D [1222 0 R /XYZ 99.8954 740.9981 null] >> endobj 278 0 obj << -/D [1178 0 R /XYZ 99.8954 659.6006 null] +/D [1222 0 R /XYZ 99.8954 659.6006 null] >> endobj -1181 0 obj << -/D [1178 0 R /XYZ 99.8954 631.8021 null] +1225 0 obj << +/D [1222 0 R /XYZ 99.8954 631.8021 null] >> endobj -1177 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> +1221 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1184 0 obj << +1228 0 obj << /Length 5587 >> stream @@ -23837,27 +24290,27 @@ ET 0 g 0 G endstream endobj -1183 0 obj << +1227 0 obj << /Type /Page -/Contents 1184 0 R -/Resources 1182 0 R +/Contents 1228 0 R +/Resources 1226 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1176 0 R +/Parent 1215 0 R >> endobj -1185 0 obj << -/D [1183 0 R /XYZ 150.7049 740.9981 null] +1229 0 obj << +/D [1227 0 R /XYZ 150.7049 740.9981 null] >> endobj 282 0 obj << -/D [1183 0 R /XYZ 150.7049 659.6006 null] +/D [1227 0 R /XYZ 150.7049 659.6006 null] >> endobj -1186 0 obj << -/D [1183 0 R /XYZ 150.7049 631.8021 null] +1230 0 obj << +/D [1227 0 R /XYZ 150.7049 631.8021 null] >> endobj -1182 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R /F14 535 0 R >> +1226 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R /F14 579 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1189 0 obj << +1233 0 obj << /Length 6322 >> stream @@ -23984,34 +24437,34 @@ ET 0 g 0 G endstream endobj -1188 0 obj << +1232 0 obj << /Type /Page -/Contents 1189 0 R -/Resources 1187 0 R +/Contents 1233 0 R +/Resources 1231 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1176 0 R +/Parent 1215 0 R >> endobj -1190 0 obj << -/D [1188 0 R /XYZ 99.8954 740.9981 null] +1234 0 obj << +/D [1232 0 R /XYZ 99.8954 740.9981 null] >> endobj 286 0 obj << -/D [1188 0 R /XYZ 99.8954 659.6006 null] +/D [1232 0 R /XYZ 99.8954 659.6006 null] >> endobj -1191 0 obj << -/D [1188 0 R /XYZ 99.8954 631.8021 null] +1235 0 obj << +/D [1232 0 R /XYZ 99.8954 631.8021 null] >> endobj -1192 0 obj << -/D [1188 0 R /XYZ 99.8954 243.0876 null] +1236 0 obj << +/D [1232 0 R /XYZ 99.8954 243.0876 null] >> endobj -1193 0 obj << -/D [1188 0 R /XYZ 99.8954 247.0727 null] +1237 0 obj << +/D [1232 0 R /XYZ 99.8954 247.0727 null] >> endobj -1187 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F14 535 0 R /F11 504 0 R /F32 510 0 R >> +1231 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F14 579 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1196 0 obj << -/Length 6396 +1240 0 obj << +/Length 6387 >> stream 1 0 0 1 150.7049 740.9981 cm @@ -24036,7 +24489,7 @@ S Q 1 0 0 1 -175.972 -680.226 cm BT -/F18 14.3462 Tf 180.8139 680.226 Td[(amx|Gl)-1(obal)-376(maxim)30(um)-375(absol)-1(ute)-376(v)63(alue)]TJ -30.109 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 102.3884 -21.8209 Td[(call)-333(psb)]TJ +/F18 14.3462 Tf 180.8139 680.226 Td[(m)-1(a)1(x|Gl)-1(obal)-376(maxim)30(um)]TJ -30.109 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 102.3884 -21.8209 Td[(call)-333(psb)]TJ ET 1 0 0 1 286.9553 622.6364 cm q @@ -24049,7 +24502,7 @@ S Q 1 0 0 1 -286.9553 -622.6364 cm BT -/F8 9.9626 Tf 289.9441 622.6364 Td[(amx)-333(\050)]TJ/F19 9.9626 Tf 25.7369 0 Td[(ic)51(ontxt,)-358(dat,)-358(r)52(o)51(ot)]TJ/F8 9.9626 Tf 72.4721 0 Td[(\051)]TJ -237.4482 -23.9103 Td[(This)-500(sub)1(rou)1(tine)-500(imp)1(le)-1(men)28(ts)-500(a)-500(maxim)28(um)-500(ab)1(s)-1(olu)1(te)-500(v)56(alue)-500(redu)1(c)-1(t)1(ion)-499(op)-28(eration)]TJ 0 -11.9552 Td[(based)-333(on)-333(the)-333(und)1(e)-1(r)1(lyin)1(g)-333(c)-1(omm)27(u)1(nication)-333(li)1(brar)1(y)83(.)]TJ +/F8 9.9626 Tf 289.9441 622.6364 Td[(max)-333(\050)]TJ/F19 9.9626 Tf 25.7369 0 Td[(ic)51(ontxt,)-358(dat,)-358(r)52(o)51(ot)]TJ/F8 9.9626 Tf 72.4721 0 Td[(\051)]TJ -237.4482 -23.9103 Td[(This)-302(s)-1(u)1(br)1(outin)1(e)-303(imp)1(le)-1(men)28(ts)-303(a)-302(maxim)28(um)-302(v)55(al)1(uere)-1(d)1(uction)-301(op)-28(eration)-301(base)-1(d)-301(on)-302(the)]TJ 0 -11.9552 Td[(un)1(derly)1(ing)-333(com)-1(m)28(un)1(ic)-1(ati)1(on)-333(lib)1(rary)84(.)]TJ ET 1 0 0 1 145.7235 566.8457 cm 0 g 0 G @@ -24081,7 +24534,7 @@ ET 0 g 0 G 1 0 0 1 -167.0947 -491.1296 cm BT -/F8 9.9626 Tf 172.076 491.1296 Td[(The)-334(l)1(o)-28(c)-1(al)-333(con)28(tr)1(ibu)1(tion)-333(to)-333(the)-333(global)-333(maxim)28(um.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)-778(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ +/F8 9.9626 Tf 172.076 491.1296 Td[(The)-334(l)1(o)-28(c)-1(al)-333(con)28(tr)1(ibu)1(tion)-333(to)-333(the)-333(global)-333(maxim)28(um.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-326(as:)-441(an)-327(i)1(n)28(tege)-1(r)-326(or)-327(r)1(e)-1(al)-326(v)55(ar)1(iabl)1(e)-1(,)-328(whi)1(c)27(h)-326(m)-1(a)28(y)-326(b)-28(e)-327(a)-327(sc)-1(al)1(ar,)-328(or)-326(a)-327(ran)1(k)]TJ 0 -11.9552 Td[(1)-333(or)-333(2)-334(ar)1(ra)28(y)83(.)-777(T)27(y)1(p)-28(e,)-333(rank)-333(an)1(d)-333(s)-1(i)1(z)-1(e)-334(m)28(ust)-333(agre)-1(e)-333(on)-333(all)-333(pr)1(o)-28(c)-1(ess)-1(es)-1(.)]TJ ET 1 0 0 1 145.7235 423.3836 cm 0 g 0 G @@ -24093,39 +24546,39 @@ ET 0 g 0 G 1 0 0 1 -171.654 -423.3836 cm BT -/F8 9.9626 Tf 176.6353 423.3836 Td[(Pr)1(o)-28(ce)-1(ss)-311(t)1(o)-310(hold)-309(th)1(e)-311(\014)1(nal)-309(s)-1(u)1(m)-1(,)-314(or)]TJ/F14 9.9626 Tf 144.0528 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7488 0 Td[(1)-310(to)-309(m)-1(ak)28(e)-310(it)-309(a)27(v)56(ail)1(able)-310(on)-309(all)-310(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ -152.8254 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)]TJ/F14 9.9626 Tf 130.4278 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)]TJ/F11 9.9626 Tf 7.7487 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(r)-28(oo)1(t)-278(<)]TJ/F8 9.9626 Tf 28.5434 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1,)-333(defau)1(lt)-333(-)-1(1.)]TJ +/F8 9.9626 Tf 176.6353 423.3836 Td[(Pr)1(o)-28(ce)-1(ss)-306(to)-305(hold)-305(th)1(e)-306(\014)1(nal)-305(maxim)27(u)1(m,)-311(or)]TJ/F14 9.9626 Tf 169.1576 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)-305(to)-306(mak)28(e)-306(it)-305(a)28(v)56(ailab)1(le)-306(on)-305(all)-305(p)1(ro-)]TJ -177.9301 -11.9551 Td[(ce)-1(ss)-1(es)-1(.)]TJ 0 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)]TJ/F14 9.9626 Tf 130.4278 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)]TJ/F11 9.9626 Tf 7.7487 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(r)-28(oo)1(t)-278(<)]TJ/F8 9.9626 Tf 28.5434 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1,)-333(defau)1(lt)-333(-)-1(1.)]TJ ET -1 0 0 1 145.7235 353.6452 cm +1 0 0 1 145.7235 341.69 cm 0 g 0 G -1 0 0 1 -145.7235 -353.6452 cm +1 0 0 1 -145.7235 -341.69 cm BT -/F29 9.9626 Tf 150.7049 353.6452 Td[(On)-383(R)-1(etur)1(n)]TJ +/F29 9.9626 Tf 150.7049 341.69 Td[(On)-383(R)-1(etur)1(n)]TJ ET -1 0 0 1 205.2431 353.6452 cm +1 0 0 1 205.2431 341.69 cm 0 g 0 G 1 0 0 1 -59.5196 -19.9253 cm 0 g 0 G -1 0 0 1 -145.7235 -333.7199 cm +1 0 0 1 -145.7235 -321.7647 cm BT -/F29 9.9626 Tf 150.7049 333.7199 Td[(dat)]TJ +/F29 9.9626 Tf 150.7049 321.7647 Td[(dat)]TJ ET -1 0 0 1 167.0947 333.7199 cm +1 0 0 1 167.0947 321.7647 cm 0 g 0 G -1 0 0 1 -167.0947 -333.7199 cm +1 0 0 1 -167.0947 -321.7647 cm BT -/F8 9.9626 Tf 172.076 333.7199 Td[(On)-333(d)1(e)-1(stin)1(ation)-333(p)1(ro)-28(ce)-1(ss)-1(\050es\051,)-334(t)1(he)-334(r)1(e)-1(sult)-333(of)-333(th)1(e)-334(maxim)28(um)-334(op)-27(eration)1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)-778(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ/F18 14.3462 Tf -24.9066 -32.9458 Td[(Not)-1(es)]TJ +/F8 9.9626 Tf 172.076 321.7647 Td[(On)-333(d)1(e)-1(stin)1(ation)-333(p)1(ro)-28(ce)-1(ss)-1(\050es\051,)-334(t)1(he)-334(r)1(e)-1(sult)-333(of)-333(th)1(e)-334(maxim)28(um)-334(op)-27(eration)1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-326(as:)-441(an)-327(i)1(n)28(tege)-1(r)-326(or)-327(r)1(e)-1(al)-326(v)55(ar)1(iabl)1(e)-1(,)-328(whi)1(c)27(h)-326(m)-1(a)28(y)-326(b)-28(e)-327(a)-327(sc)-1(al)1(ar,)-328(or)-326(a)-327(ran)1(k)]TJ 0 -11.9552 Td[(1)-333(or)-333(2)-334(ar)1(ra)28(y)83(.)-777(T)27(y)1(p)-28(e,)-333(rank)-333(an)1(d)-333(s)-1(i)1(z)-1(e)-334(m)28(ust)-333(agre)-1(e)-333(on)-333(all)-333(pr)1(o)-28(c)-1(ess)-1(es)-1(.)]TJ/F18 14.3462 Tf -24.9066 -32.9458 Td[(Not)-1(es)]TJ ET -1 0 0 1 150.7049 231.1324 cm +1 0 0 1 150.7049 219.1773 cm 0 g 0 G -1 0 0 1 -150.7049 -231.1324 cm +1 0 0 1 -150.7049 -219.1773 cm BT -/F8 9.9626 Tf 162.8814 231.1324 Td[(1.)]TJ +/F8 9.9626 Tf 162.8814 219.1773 Td[(1.)]TJ ET -1 0 0 1 170.6302 231.1324 cm +1 0 0 1 170.6302 219.1773 cm 0 g 0 G -1 0 0 1 -170.6302 -231.1324 cm +1 0 0 1 -170.6302 -219.1773 cm BT -/F8 9.9626 Tf 175.6115 231.1324 Td[(The)]TJ/F32 9.9626 Tf 19.7393 0 Td[(dat)]TJ/F8 9.9626 Tf 18.2725 0 Td[(argu)1(m)-1(en)28(t)-259(is)-259(b)-27(oth)-259(in)1(pu)1(t)-259(and)-259(ou)1(tpu)1(t,)-274(an)1(d)-259(its)-259(v)55(al)1(ue)-260(ma)28(y)-259(b)-27(e)-260(c)27(h)1(anged)]TJ -38.0118 -11.9552 Td[(ev)28(e)-1(n)-333(on)-333(p)1(ro)-28(ce)-1(sse)-1(s)-334(d)1(i\013e)-1(r)1(e)-1(n)28(t)-333(fr)1(om)-334(th)1(e)-334(\014n)1(al)-333(res)-1(u)1(lt)-333(des)-1(tin)1(ation)1(.)]TJ +/F8 9.9626 Tf 175.6115 219.1773 Td[(The)]TJ/F32 9.9626 Tf 19.7393 0 Td[(dat)]TJ/F8 9.9626 Tf 18.2725 0 Td[(argu)1(m)-1(en)28(t)-259(is)-259(b)-27(oth)-259(in)1(pu)1(t)-259(and)-259(ou)1(tpu)1(t,)-274(an)1(d)-259(its)-259(v)55(al)1(ue)-260(ma)28(y)-259(b)-27(e)-260(c)27(h)1(anged)]TJ -38.0118 -11.9552 Td[(ev)28(e)-1(n)-333(on)-333(p)1(ro)-28(ce)-1(sse)-1(s)-334(d)1(i\013e)-1(r)1(e)-1(n)28(t)-333(fr)1(om)-334(th)1(e)-334(\014n)1(al)-333(res)-1(u)1(lt)-333(des)-1(tin)1(ation)1(.)]TJ ET 1 0 0 1 150.7049 90.4377 cm 0 g 0 G @@ -24137,34 +24590,34 @@ ET 0 g 0 G endstream endobj -1195 0 obj << +1239 0 obj << /Type /Page -/Contents 1196 0 R -/Resources 1194 0 R +/Contents 1240 0 R +/Resources 1238 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1176 0 R +/Parent 1215 0 R >> endobj -1197 0 obj << -/D [1195 0 R /XYZ 150.7049 740.9981 null] +1241 0 obj << +/D [1239 0 R /XYZ 150.7049 740.9981 null] >> endobj 290 0 obj << -/D [1195 0 R /XYZ 150.7049 659.6006 null] +/D [1239 0 R /XYZ 150.7049 659.6006 null] >> endobj -1198 0 obj << -/D [1195 0 R /XYZ 150.7049 631.8021 null] +1242 0 obj << +/D [1239 0 R /XYZ 150.7049 631.8021 null] >> endobj -1199 0 obj << -/D [1195 0 R /XYZ 150.7049 243.0876 null] +1243 0 obj << +/D [1239 0 R /XYZ 150.7049 231.1324 null] >> endobj -1200 0 obj << -/D [1195 0 R /XYZ 150.7049 247.0727 null] +1244 0 obj << +/D [1239 0 R /XYZ 150.7049 235.1175 null] >> endobj -1194 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F14 535 0 R /F11 504 0 R /F32 510 0 R >> +1238 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F14 579 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1203 0 obj << -/Length 6418 +1247 0 obj << +/Length 6407 >> stream 1 0 0 1 99.8954 740.9981 cm @@ -24189,9 +24642,9 @@ S Q 1 0 0 1 -125.1626 -680.226 cm BT -/F18 14.3462 Tf 130.0045 680.226 Td[(amn|G)-1(lo)-1(bal)-375(m)-1(inim)30(um)-375(absol)-1(ute)-376(v)63(alue)]TJ -30.1091 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 102.2501 -21.8209 Td[(call)-333(psb)]TJ +/F18 14.3462 Tf 130.0045 680.226 Td[(mi)-1(n|Gl)-1(obal)-376(mi)-1(nim)31(um)]TJ -30.1091 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 103.3571 -21.8209 Td[(call)-333(psb)]TJ ET -1 0 0 1 236.0074 622.6364 cm +1 0 0 1 237.1144 622.6364 cm q []0 d 0 J @@ -24200,9 +24653,9 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -236.0074 -622.6364 cm +1 0 0 1 -237.1144 -622.6364 cm BT -/F8 9.9626 Tf 238.9963 622.6364 Td[(amn)-333(\050)]TJ/F19 9.9626 Tf 26.0136 0 Td[(ic)51(ontxt,)-358(dat,)-358(r)52(o)51(ot)]TJ/F8 9.9626 Tf 72.4721 0 Td[(\051)]TJ -237.5866 -23.9103 Td[(This)-524(subr)1(outi)1(ne)-524(implem)-1(en)28(ts)-524(a)-524(minim)28(um)-524(absolu)1(te)-525(v)56(alu)1(e)-525(r)1(e)-1(d)1(uction)-523(op)-28(eration)]TJ 0 -11.9552 Td[(based)-333(on)-333(the)-333(und)1(e)-1(r)1(lyin)1(g)-333(c)-1(omm)27(u)1(nication)-333(li)1(brar)1(y)83(.)]TJ +/F8 9.9626 Tf 240.1032 622.6364 Td[(min)-333(\050)]TJ/F19 9.9626 Tf 23.7997 0 Td[(ic)51(ontxt,)-358(dat,)-358(r)52(o)51(ot)]TJ/F8 9.9626 Tf 72.4721 0 Td[(\051)]TJ -236.4796 -23.9103 Td[(This)-291(s)-1(u)1(brou)1(tin)1(e)-292(impleme)-1(n)28(ts)-291(a)-292(min)1(im)27(u)1(m)-292(v)56(alue)-291(re)-1(d)1(uction)-291(op)-27(e)-1(r)1(ation)-291(b)1(as)-1(ed)-291(on)-291(the)]TJ 0 -11.9552 Td[(un)1(derly)1(ing)-333(com)-1(m)28(un)1(ic)-1(ati)1(on)-333(lib)1(rary)84(.)]TJ ET 1 0 0 1 94.9141 566.8457 cm 0 g 0 G @@ -24234,7 +24687,7 @@ ET 0 g 0 G 1 0 0 1 -116.2852 -491.1296 cm BT -/F8 9.9626 Tf 121.2665 491.1296 Td[(The)-334(l)1(o)-28(c)-1(al)-333(con)28(tr)1(ibu)1(tion)-333(to)-333(the)-333(global)-333(mini)1(m)27(u)1(m)-1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)-778(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ +/F8 9.9626 Tf 121.2665 491.1296 Td[(The)-334(l)1(o)-28(c)-1(al)-333(con)28(tr)1(ibu)1(tion)-333(to)-333(the)-333(global)-333(mini)1(m)27(u)1(m)-1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-326(as:)-441(an)-327(i)1(n)28(tege)-1(r)-326(or)-327(r)1(e)-1(al)-326(v)55(ar)1(iabl)1(e)-1(,)-328(whi)1(c)27(h)-326(m)-1(a)28(y)-326(b)-28(e)-327(a)-327(sc)-1(al)1(ar,)-328(or)-326(a)-327(ran)1(k)]TJ 0 -11.9552 Td[(1)-333(or)-333(2)-334(ar)1(ra)28(y)83(.)-777(T)27(y)1(p)-28(e,)-333(rank)-333(an)1(d)-333(s)-1(i)1(z)-1(e)-334(m)28(ust)-333(agre)-1(e)-333(on)-333(all)-333(pr)1(o)-28(c)-1(ess)-1(es)-1(.)]TJ ET 1 0 0 1 94.9141 423.3836 cm 0 g 0 G @@ -24246,7 +24699,7 @@ ET 0 g 0 G 1 0 0 1 -120.8445 -423.3836 cm BT -/F8 9.9626 Tf 125.8258 423.3836 Td[(Pr)1(o)-28(ce)-1(ss)-311(t)1(o)-310(hold)-309(th)1(e)-311(\014)1(nal)-309(s)-1(u)1(m)-1(,)-314(or)]TJ/F14 9.9626 Tf 144.0528 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7488 0 Td[(1)-310(to)-309(m)-1(ak)28(e)-310(it)-309(a)27(v)56(ail)1(able)-310(on)-309(all)-310(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ -152.8254 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)]TJ/F14 9.9626 Tf 130.4278 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)]TJ/F11 9.9626 Tf 7.7487 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(r)-28(oo)1(t)-278(<)]TJ/F8 9.9626 Tf 28.5434 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1,)-333(defau)1(lt)-333(-)-1(1.)]TJ +/F8 9.9626 Tf 125.8258 423.3836 Td[(Pr)1(o)-28(ce)-1(ss)-277(to)-276(h)1(old)-275(the)-276(\014n)1(al)-276(v)56(alue,)-287(or)]TJ/F14 9.9626 Tf 146.4112 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)-276(to)-276(mak)28(e)-277(i)1(t)-276(a)28(v)55(ai)1(lable)-276(on)-276(al)1(l)-276(pr)1(o)-28(ce)-1(ss)-1(es)-1(.)]TJ -155.1837 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)]TJ/F14 9.9626 Tf 130.4278 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)]TJ/F11 9.9626 Tf 7.7487 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(r)-28(oo)1(t)-278(<)]TJ/F8 9.9626 Tf 28.5434 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1,)-333(defau)1(lt)-333(-)-1(1.)]TJ ET 1 0 0 1 94.9141 353.6452 cm 0 g 0 G @@ -24266,7 +24719,7 @@ ET 0 g 0 G 1 0 0 1 -116.2852 -333.7199 cm BT -/F8 9.9626 Tf 121.2665 333.7199 Td[(On)-333(d)1(e)-1(stin)1(ation)-333(p)1(ro)-28(ce)-1(ss)-1(\050es)-1(\051)1(,)-334(t)1(he)-334(r)1(e)-1(sult)-333(of)-333(th)1(e)-334(mini)1(m)27(um)-333(op)-28(erati)1(on.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)]TJ 0 -11.9551 Td[(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es)-1(.)]TJ/F18 14.3462 Tf -24.9066 -32.9459 Td[(Not)-1(es)]TJ +/F8 9.9626 Tf 121.2665 333.7199 Td[(On)-333(d)1(e)-1(stin)1(ation)-333(p)1(ro)-28(ce)-1(ss)-1(\050es)-1(\051)1(,)-334(t)1(he)-334(r)1(e)-1(sult)-333(of)-333(th)1(e)-334(mini)1(m)27(um)-333(op)-28(erati)1(on.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-326(as:)-441(an)-327(i)1(n)28(tege)-1(r)-326(or)-327(r)1(e)-1(al)-326(v)55(ar)1(iabl)1(e)-1(,)-328(whi)1(c)27(h)-326(m)-1(a)28(y)-326(b)-28(e)-327(a)-327(sc)-1(al)1(ar,)-328(or)-326(a)-327(ran)1(k)]TJ 0 -11.9552 Td[(1)-333(or)-333(2)-334(ar)1(ra)28(y)83(.)]TJ 0 -11.9551 Td[(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es)-1(.)]TJ/F18 14.3462 Tf -24.9066 -32.9459 Td[(Not)-1(es)]TJ ET 1 0 0 1 99.8954 219.1773 cm 0 g 0 G @@ -24290,34 +24743,34 @@ ET 0 g 0 G endstream endobj -1202 0 obj << +1246 0 obj << /Type /Page -/Contents 1203 0 R -/Resources 1201 0 R +/Contents 1247 0 R +/Resources 1245 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1176 0 R +/Parent 1252 0 R >> endobj -1204 0 obj << -/D [1202 0 R /XYZ 99.8954 740.9981 null] +1248 0 obj << +/D [1246 0 R /XYZ 99.8954 740.9981 null] >> endobj 294 0 obj << -/D [1202 0 R /XYZ 99.8954 659.6006 null] +/D [1246 0 R /XYZ 99.8954 659.6006 null] >> endobj -1205 0 obj << -/D [1202 0 R /XYZ 99.8954 631.8021 null] +1249 0 obj << +/D [1246 0 R /XYZ 99.8954 631.8021 null] >> endobj -1206 0 obj << -/D [1202 0 R /XYZ 99.8954 231.1324 null] +1250 0 obj << +/D [1246 0 R /XYZ 99.8954 231.1324 null] >> endobj -1207 0 obj << -/D [1202 0 R /XYZ 99.8954 235.1175 null] +1251 0 obj << +/D [1246 0 R /XYZ 99.8954 235.1175 null] >> endobj -1201 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F14 535 0 R /F11 504 0 R /F32 510 0 R >> +1245 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F14 579 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1210 0 obj << -/Length 6065 +1255 0 obj << +/Length 6394 >> stream 1 0 0 1 150.7049 740.9981 cm @@ -24342,9 +24795,9 @@ S Q 1 0 0 1 -175.972 -680.226 cm BT -/F18 14.3462 Tf 180.8139 680.226 Td[(snd|Send)-375(data)]TJ -30.109 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 98.8766 -21.8209 Td[(call)-333(psb)]TJ +/F18 14.3462 Tf 180.8139 680.226 Td[(amx|Gl)-1(obal)-376(maxim)30(um)-375(absol)-1(ute)-376(v)63(alue)]TJ -30.109 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 102.3884 -21.8209 Td[(call)-333(psb)]TJ ET -1 0 0 1 283.4435 622.6364 cm +1 0 0 1 286.9553 622.6364 cm q []0 d 0 J @@ -24353,75 +24806,87 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -283.4435 -622.6364 cm +1 0 0 1 -286.9553 -622.6364 cm BT -/F8 9.9626 Tf 286.4323 622.6364 Td[(snd)-333(\050)]TJ/F19 9.9626 Tf 22.1946 0 Td[(ic)51(ontxt,)-358(dat,)-358(dst,)-357(m)]TJ/F8 9.9626 Tf 83.038 0 Td[(\051)]TJ -240.96 -23.9103 Td[(This)-333(s)-1(u)1(brou)1(tin)1(e)-334(s)-1(end)1(s)-334(a)-333(pac)28(k)28(e)-1(t)-333(of)-333(data)-333(to)-333(a)-333(des)-1(tin)1(ation)1(.)]TJ +/F8 9.9626 Tf 289.9441 622.6364 Td[(amx)-333(\050)]TJ/F19 9.9626 Tf 25.7369 0 Td[(ic)51(ontxt,)-358(dat,)-358(r)52(o)51(ot)]TJ/F8 9.9626 Tf 72.4721 0 Td[(\051)]TJ -237.4482 -23.9103 Td[(This)-500(sub)1(rou)1(tine)-500(imp)1(le)-1(men)28(ts)-500(a)-500(maxim)28(um)-500(ab)1(s)-1(olu)1(te)-500(v)56(alue)-500(redu)1(c)-1(t)1(ion)-499(op)-28(eration)]TJ 0 -11.9552 Td[(based)-333(on)-333(the)-333(und)1(e)-1(r)1(lyin)1(g)-333(c)-1(omm)27(u)1(nication)-333(li)1(brar)1(y)83(.)]TJ ET -1 0 0 1 145.7235 578.8008 cm +1 0 0 1 145.7235 566.8457 cm 0 g 0 G -1 0 0 1 -145.7235 -578.8008 cm +1 0 0 1 -145.7235 -566.8457 cm BT -/F29 9.9626 Tf 150.7049 578.8008 Td[(On)-383(En)32(tr)1(y)]TJ +/F29 9.9626 Tf 150.7049 566.8457 Td[(On)-383(En)32(tr)1(y)]TJ ET -1 0 0 1 202.109 578.8008 cm +1 0 0 1 202.109 566.8457 cm 0 g 0 G 1 0 0 1 -56.3855 -19.9253 cm 0 g 0 G -1 0 0 1 -145.7235 -558.8755 cm +1 0 0 1 -145.7235 -546.9204 cm BT -/F29 9.9626 Tf 150.7049 558.8755 Td[(ic)-1(on)33(t)-1(xt)]TJ +/F29 9.9626 Tf 150.7049 546.9204 Td[(ic)-1(on)33(t)-1(xt)]TJ ET -1 0 0 1 185.7123 558.8755 cm +1 0 0 1 185.7123 546.9204 cm 0 g 0 G -1 0 0 1 -185.7123 -558.8755 cm +1 0 0 1 -185.7123 -546.9204 cm BT -/F8 9.9626 Tf 190.6936 558.8755 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text)-333(id)1(e)-1(n)28(ti)1(fyi)1(ng)-333(the)-334(v)1(irtu)1(al)-333(paral)1(le)-1(l)-333(mac)27(h)1(ine.)]TJ -15.0821 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)-1(.)]TJ +/F8 9.9626 Tf 190.6936 546.9204 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text)-333(id)1(e)-1(n)28(ti)1(fyi)1(ng)-333(the)-334(v)1(irtu)1(al)-333(paral)1(le)-1(l)-333(mac)27(h)1(ine.)]TJ -15.0821 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)-1(.)]TJ ET -1 0 0 1 145.7235 503.0848 cm +1 0 0 1 145.7235 491.1296 cm 0 g 0 G -1 0 0 1 -145.7235 -503.0848 cm +1 0 0 1 -145.7235 -491.1296 cm BT -/F29 9.9626 Tf 150.7049 503.0848 Td[(dat)]TJ +/F29 9.9626 Tf 150.7049 491.1296 Td[(dat)]TJ ET -1 0 0 1 167.0947 503.0848 cm +1 0 0 1 167.0947 491.1296 cm 0 g 0 G -1 0 0 1 -167.0947 -503.0848 cm +1 0 0 1 -167.0947 -491.1296 cm BT -/F8 9.9626 Tf 172.076 503.0848 Td[(The)-334(d)1(ata)-333(to)-334(b)-27(e)-334(se)-1(n)29(t.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-393(a)-394(ran)1(k)-394(1)-394(or)-393(2)-394(arr)1(a)28(y)83(,)-409(or)-393(a)-394(c)28(haracter)-394(or)-393(logical)-394(sc)-1(alar)1(.)-1019(T)27(yp)-27(e)-394(and)-393(ran)1(k)]TJ 0 -11.9552 Td[(m)27(u)1(s)-1(t)-313(agre)-1(e)-314(on)-313(s)-1(end)1(e)-1(r)-313(and)-313(re)-1(ceiv)28(e)-1(r)-313(pro)-27(c)-1(es)-1(s;)-320(if)]TJ/F11 9.9626 Tf 196.7468 0 Td[(m)]TJ/F8 9.9626 Tf 11.8749 0 Td[(is)-314(not)-314(sp)-27(e)-1(ci\014ed,)-317(s)-1(i)1(z)-1(e)-314(m)27(u)1(s)-1(t)]TJ -208.6217 -11.9551 Td[(agree)-334(as)-334(w)28(e)-1(l)1(l.)]TJ +/F8 9.9626 Tf 172.076 491.1296 Td[(The)-334(l)1(o)-28(c)-1(al)-333(con)28(tr)1(ibu)1(tion)-333(to)-333(the)-333(global)-333(maxim)28(um.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)-778(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ ET -1 0 0 1 145.7235 411.4285 cm +1 0 0 1 145.7235 423.3836 cm 0 g 0 G -1 0 0 1 -145.7235 -411.4285 cm +1 0 0 1 -145.7235 -423.3836 cm BT -/F29 9.9626 Tf 150.7049 411.4285 Td[(ds)1(t)]TJ +/F29 9.9626 Tf 150.7049 423.3836 Td[(ro)-32(ot)]TJ ET -1 0 0 1 166.0445 411.4285 cm +1 0 0 1 171.654 423.3836 cm 0 g 0 G -1 0 0 1 -166.0445 -411.4285 cm +1 0 0 1 -171.654 -423.3836 cm BT -/F8 9.9626 Tf 171.0258 411.4285 Td[(Des)-1(ti)1(nation)-333(p)1(ro)-28(ces)-1(s.)]TJ 4.5857 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1765 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(dst)-278(<)]TJ/F8 9.9626 Tf 23.9691 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1.)]TJ +/F8 9.9626 Tf 176.6353 423.3836 Td[(Pr)1(o)-28(ce)-1(ss)-277(to)-276(h)1(old)-275(the)-276(\014n)1(al)-276(v)56(alue,)-287(or)]TJ/F14 9.9626 Tf 146.4111 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7488 0 Td[(1)-276(to)-276(mak)28(e)-277(i)1(t)-276(a)28(v)55(ai)1(lable)-276(on)-276(al)1(l)-276(pr)1(o)-28(ce)-1(ss)-1(es)-1(.)]TJ -155.1837 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)]TJ/F14 9.9626 Tf 130.4278 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)]TJ/F11 9.9626 Tf 7.7487 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(r)-28(oo)1(t)-278(<)]TJ/F8 9.9626 Tf 28.5434 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1,)-333(defau)1(lt)-333(-)-1(1.)]TJ ET -1 0 0 1 145.7235 343.6825 cm +1 0 0 1 145.7235 353.6452 cm 0 g 0 G -1 0 0 1 -145.7235 -343.6825 cm +1 0 0 1 -145.7235 -353.6452 cm BT -/F29 9.9626 Tf 150.7049 343.6825 Td[(m)]TJ +/F29 9.9626 Tf 150.7049 353.6452 Td[(On)-383(R)-1(etur)1(n)]TJ ET -1 0 0 1 160.2523 343.6825 cm +1 0 0 1 205.2431 353.6452 cm 0 g 0 G -1 0 0 1 -160.2523 -343.6825 cm +1 0 0 1 -59.5196 -19.9253 cm +0 g 0 G +1 0 0 1 -145.7235 -333.7199 cm BT -/F8 9.9626 Tf 165.2337 343.6825 Td[(Num)28(b)-27(e)-1(r)-333(of)-333(r)1(o)27(ws.)]TJ 10.3778 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(Optional)]TJ/F8 9.9626 Tf 43.4548 0 Td[(.)]TJ -68.6382 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1764 0 Td[(<)]TJ/F8 9.9626 Tf 7.7488 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(m)-278(<)]TJ/F8 9.9626 Tf 19.2634 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051.)]TJ -226.3845 -11.9552 Td[(Wh)1(e)-1(n)]TJ/F11 9.9626 Tf 29.071 0 Td[(dat)]TJ/F8 9.9626 Tf 17.3833 0 Td[(is)-335(a)-335(r)1(ank)-334(2)-335(arr)1(a)28(y)83(,)-335(sp)-27(e)-1(ci\014es)-335(the)-335(n)28(u)1(m)27(b)-27(e)-1(r)-334(of)-334(ro)28(ws)-335(to)-335(b)-27(e)-335(s)-1(en)28(t)-335(i)1(nd)1(e)-1(-)]TJ -46.4544 -11.9551 Td[(p)-27(e)-1(n)1(den)28(tly)-285(of)-285(th)1(e)-286(leadi)1(ng)-285(dimension)]TJ/F11 9.9626 Tf 153.7418 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051;)-301(m)27(u)1(s)-1(t)-285(h)1(a)28(v)28(e)-286(the)-285(s)-1(ame)-286(v)56(alu)1(e)]TJ -193.9055 -11.9552 Td[(on)-333(se)-1(n)1(din)1(g)-334(an)1(d)-333(rec)-1(eivi)1(ng)-333(pro)-27(c)-1(es)-1(se)-1(s.)]TJ +/F29 9.9626 Tf 150.7049 333.7199 Td[(dat)]TJ ET -1 0 0 1 145.7235 250.0337 cm +1 0 0 1 167.0947 333.7199 cm 0 g 0 G -1 0 0 1 -145.7235 -250.0337 cm +1 0 0 1 -167.0947 -333.7199 cm BT -/F29 9.9626 Tf 150.7049 250.0337 Td[(On)-383(R)-1(etur)1(n)]TJ +/F8 9.9626 Tf 172.076 333.7199 Td[(On)-333(d)1(e)-1(stin)1(ation)-333(p)1(ro)-28(ce)-1(ss)-1(\050es\051,)-334(t)1(he)-334(r)1(e)-1(sult)-333(of)-333(th)1(e)-334(maxim)28(um)-334(op)-27(eration)1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)-778(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ/F18 14.3462 Tf -24.9066 -32.9458 Td[(Not)-1(es)]TJ ET -1 0 0 1 205.2431 250.0337 cm +1 0 0 1 150.7049 231.1324 cm 0 g 0 G -1 0 0 1 -54.5382 -159.596 cm +1 0 0 1 -150.7049 -231.1324 cm +BT +/F8 9.9626 Tf 162.8814 231.1324 Td[(1.)]TJ +ET +1 0 0 1 170.6302 231.1324 cm +0 g 0 G +1 0 0 1 -170.6302 -231.1324 cm +BT +/F8 9.9626 Tf 175.6115 231.1324 Td[(The)]TJ/F32 9.9626 Tf 19.7393 0 Td[(dat)]TJ/F8 9.9626 Tf 18.2725 0 Td[(argu)1(m)-1(en)28(t)-259(is)-259(b)-27(oth)-259(in)1(pu)1(t)-259(and)-259(ou)1(tpu)1(t,)-274(an)1(d)-259(its)-259(v)55(al)1(ue)-260(ma)28(y)-259(b)-27(e)-260(c)27(h)1(anged)]TJ -38.0118 -11.9552 Td[(ev)28(e)-1(n)-333(on)-333(p)1(ro)-28(ce)-1(sse)-1(s)-334(d)1(i\013e)-1(r)1(e)-1(n)28(t)-333(fr)1(om)-334(th)1(e)-334(\014n)1(al)-333(res)-1(u)1(lt)-333(des)-1(tin)1(ation)1(.)]TJ +ET +1 0 0 1 150.7049 90.4377 cm 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT @@ -24431,28 +24896,34 @@ ET 0 g 0 G endstream endobj -1209 0 obj << +1254 0 obj << /Type /Page -/Contents 1210 0 R -/Resources 1208 0 R +/Contents 1255 0 R +/Resources 1253 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1213 0 R +/Parent 1252 0 R >> endobj -1211 0 obj << -/D [1209 0 R /XYZ 150.7049 740.9981 null] +1256 0 obj << +/D [1254 0 R /XYZ 150.7049 740.9981 null] >> endobj 298 0 obj << -/D [1209 0 R /XYZ 150.7049 659.6006 null] +/D [1254 0 R /XYZ 150.7049 659.6006 null] >> endobj -1212 0 obj << -/D [1209 0 R /XYZ 150.7049 631.8021 null] +1257 0 obj << +/D [1254 0 R /XYZ 150.7049 631.8021 null] >> endobj -1208 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R /F14 535 0 R >> +1258 0 obj << +/D [1254 0 R /XYZ 150.7049 243.0876 null] +>> endobj +1259 0 obj << +/D [1254 0 R /XYZ 150.7049 247.0727 null] +>> endobj +1253 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F14 579 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1216 0 obj << -/Length 6085 +1262 0 obj << +/Length 6416 >> stream 1 0 0 1 99.8954 740.9981 cm @@ -24477,9 +24948,9 @@ S Q 1 0 0 1 -125.1626 -680.226 cm BT -/F18 14.3462 Tf 130.0045 680.226 Td[(rcv|Re)-1(ceiv)31(e)-375(dat)-1(a)]TJ -30.1091 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 99.646 -21.8209 Td[(call)-333(psb)]TJ +/F18 14.3462 Tf 130.0045 680.226 Td[(amn|G)-1(lo)-1(bal)-375(m)-1(inim)30(um)-375(absol)-1(ute)-376(v)63(alue)]TJ -30.1091 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 102.2501 -21.8209 Td[(call)-333(psb)]TJ ET -1 0 0 1 233.4034 622.6364 cm +1 0 0 1 236.0074 622.6364 cm q []0 d 0 J @@ -24488,73 +24959,85 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -233.4034 -622.6364 cm +1 0 0 1 -236.0074 -622.6364 cm BT -/F8 9.9626 Tf 236.3922 622.6364 Td[(rcv)-333(\050)]TJ/F19 9.9626 Tf 20.7832 0 Td[(ic)51(ontxt,)-358(dat,)-358(s)1(r)51(c,)-357(m)]TJ/F8 9.9626 Tf 82.9107 0 Td[(\051)]TJ -240.1907 -23.9103 Td[(This)-333(s)-1(u)1(brou)1(tin)1(e)-334(rec)-1(eiv)28(es)-334(a)-333(pac)27(k)28(et)-333(of)-333(data)-333(to)-333(a)-334(d)1(e)-1(stin)1(ation.)]TJ +/F8 9.9626 Tf 238.9963 622.6364 Td[(amn)-333(\050)]TJ/F19 9.9626 Tf 26.0136 0 Td[(ic)51(ontxt,)-358(dat,)-358(r)52(o)51(ot)]TJ/F8 9.9626 Tf 72.4721 0 Td[(\051)]TJ -237.5866 -23.9103 Td[(This)-524(subr)1(outi)1(ne)-524(implem)-1(en)28(ts)-524(a)-524(minim)28(um)-524(absolu)1(te)-525(v)56(alu)1(e)-525(r)1(e)-1(d)1(uction)-523(op)-28(eration)]TJ 0 -11.9552 Td[(based)-333(on)-333(the)-333(und)1(e)-1(r)1(lyin)1(g)-333(c)-1(omm)27(u)1(nication)-333(li)1(brar)1(y)83(.)]TJ ET -1 0 0 1 94.9141 578.8008 cm +1 0 0 1 94.9141 566.8457 cm 0 g 0 G -1 0 0 1 -94.9141 -578.8008 cm +1 0 0 1 -94.9141 -566.8457 cm BT -/F29 9.9626 Tf 99.8954 578.8008 Td[(On)-383(En)32(tr)1(y)]TJ +/F29 9.9626 Tf 99.8954 566.8457 Td[(On)-383(En)32(tr)1(y)]TJ ET -1 0 0 1 151.2996 578.8008 cm +1 0 0 1 151.2996 566.8457 cm 0 g 0 G 1 0 0 1 -56.3855 -19.9253 cm 0 g 0 G -1 0 0 1 -94.9141 -558.8755 cm +1 0 0 1 -94.9141 -546.9204 cm BT -/F29 9.9626 Tf 99.8954 558.8755 Td[(ic)-1(on)33(t)-1(xt)]TJ +/F29 9.9626 Tf 99.8954 546.9204 Td[(ic)-1(on)33(t)-1(xt)]TJ ET -1 0 0 1 134.9028 558.8755 cm +1 0 0 1 134.9028 546.9204 cm 0 g 0 G -1 0 0 1 -134.9028 -558.8755 cm +1 0 0 1 -134.9028 -546.9204 cm BT -/F8 9.9626 Tf 139.8841 558.8755 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text)-333(id)1(e)-1(n)28(ti)1(fyi)1(ng)-333(the)-334(v)1(irtu)1(al)-333(paral)1(le)-1(l)-333(mac)27(h)1(ine.)]TJ -15.0821 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)-1(.)]TJ +/F8 9.9626 Tf 139.8841 546.9204 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text)-333(id)1(e)-1(n)28(ti)1(fyi)1(ng)-333(the)-334(v)1(irtu)1(al)-333(paral)1(le)-1(l)-333(mac)27(h)1(ine.)]TJ -15.0821 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)-1(.)]TJ ET -1 0 0 1 94.9141 503.0848 cm +1 0 0 1 94.9141 491.1296 cm 0 g 0 G -1 0 0 1 -94.9141 -503.0848 cm +1 0 0 1 -94.9141 -491.1296 cm BT -/F29 9.9626 Tf 99.8954 503.0848 Td[(sr)1(c)]TJ +/F29 9.9626 Tf 99.8954 491.1296 Td[(dat)]TJ ET -1 0 0 1 114.2249 503.0848 cm +1 0 0 1 116.2852 491.1296 cm 0 g 0 G -1 0 0 1 -114.2249 -503.0848 cm +1 0 0 1 -116.2852 -491.1296 cm BT -/F8 9.9626 Tf 119.2062 503.0848 Td[(Sou)1(rce)-334(pr)1(o)-28(ce)-1(ss)-1(.)]TJ 5.5958 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1765 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(sr)-28(c)-277(<)]TJ/F8 9.9626 Tf 24.2689 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1.)]TJ +/F8 9.9626 Tf 121.2665 491.1296 Td[(The)-334(l)1(o)-28(c)-1(al)-333(con)28(tr)1(ibu)1(tion)-333(to)-333(the)-333(global)-333(mini)1(m)27(u)1(m)-1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)-778(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es.)]TJ ET -1 0 0 1 94.9141 435.3388 cm +1 0 0 1 94.9141 423.3836 cm 0 g 0 G -1 0 0 1 -94.9141 -435.3388 cm +1 0 0 1 -94.9141 -423.3836 cm BT -/F29 9.9626 Tf 99.8954 435.3388 Td[(m)]TJ +/F29 9.9626 Tf 99.8954 423.3836 Td[(ro)-32(ot)]TJ ET -1 0 0 1 109.4429 435.3388 cm +1 0 0 1 120.8445 423.3836 cm 0 g 0 G -1 0 0 1 -109.4429 -435.3388 cm +1 0 0 1 -120.8445 -423.3836 cm BT -/F8 9.9626 Tf 114.4242 435.3388 Td[(Num)28(b)-27(e)-1(r)-333(of)-333(r)1(o)27(ws.)]TJ 10.3778 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(Optional)]TJ/F8 9.9626 Tf 43.4548 0 Td[(.)]TJ -68.6382 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1764 0 Td[(<)]TJ/F8 9.9626 Tf 7.7488 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(m)-278(<)]TJ/F8 9.9626 Tf 19.2634 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051.)]TJ -226.3845 -11.9552 Td[(Wh)1(e)-1(n)]TJ/F11 9.9626 Tf 29.071 0 Td[(dat)]TJ/F8 9.9626 Tf 17.3833 0 Td[(is)-335(a)-335(r)1(ank)-334(2)-335(arr)1(a)28(y)83(,)-335(sp)-27(e)-1(ci\014es)-335(the)-335(n)28(u)1(m)27(b)-27(e)-1(r)-334(of)-334(ro)28(ws)-335(to)-335(b)-27(e)-335(s)-1(en)28(t)-335(i)1(nd)1(e)-1(-)]TJ -46.4544 -11.9551 Td[(p)-27(e)-1(n)1(den)28(tly)-285(of)-285(th)1(e)-286(leadi)1(ng)-285(dimension)]TJ/F11 9.9626 Tf 153.7418 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051;)-301(m)27(u)1(s)-1(t)-285(h)1(a)28(v)28(e)-286(the)-285(s)-1(ame)-286(v)56(alu)1(e)]TJ -193.9055 -11.9552 Td[(on)-333(se)-1(n)1(din)1(g)-334(an)1(d)-333(rec)-1(eivi)1(ng)-333(pro)-27(c)-1(es)-1(se)-1(s.)]TJ +/F8 9.9626 Tf 125.8258 423.3836 Td[(Pr)1(o)-28(ce)-1(ss)-277(to)-276(h)1(old)-275(the)-276(\014n)1(al)-276(v)56(alue,)-287(or)]TJ/F14 9.9626 Tf 146.4112 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)-276(to)-276(mak)28(e)-277(i)1(t)-276(a)28(v)55(ai)1(lable)-276(on)-276(al)1(l)-276(pr)1(o)-28(ce)-1(ss)-1(es)-1(.)]TJ -155.1837 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)]TJ/F14 9.9626 Tf 130.4278 0 Td[(\000)]TJ/F8 9.9626 Tf 7.7487 0 Td[(1)]TJ/F11 9.9626 Tf 7.7487 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(r)-28(oo)1(t)-278(<)]TJ/F8 9.9626 Tf 28.5434 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1,)-333(defau)1(lt)-333(-)-1(1.)]TJ ET -1 0 0 1 94.9141 341.69 cm +1 0 0 1 94.9141 353.6452 cm 0 g 0 G -1 0 0 1 -94.9141 -341.69 cm +1 0 0 1 -94.9141 -353.6452 cm BT -/F29 9.9626 Tf 99.8954 341.69 Td[(On)-383(R)-1(etur)1(n)]TJ +/F29 9.9626 Tf 99.8954 353.6452 Td[(On)-383(R)-1(etur)1(n)]TJ ET -1 0 0 1 154.4337 341.69 cm +1 0 0 1 154.4337 353.6452 cm 0 g 0 G 1 0 0 1 -59.5196 -19.9253 cm 0 g 0 G -1 0 0 1 -94.9141 -321.7647 cm +1 0 0 1 -94.9141 -333.7199 cm BT -/F29 9.9626 Tf 99.8954 321.7647 Td[(dat)]TJ +/F29 9.9626 Tf 99.8954 333.7199 Td[(dat)]TJ ET -1 0 0 1 116.2852 321.7647 cm +1 0 0 1 116.2852 333.7199 cm 0 g 0 G -1 0 0 1 -116.2852 -321.7647 cm +1 0 0 1 -116.2852 -333.7199 cm BT -/F8 9.9626 Tf 121.2665 321.7647 Td[(The)-334(d)1(ata)-333(to)-334(b)-27(e)-334(r)1(e)-1(ce)-1(i)1(v)28(e)-1(d)1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-393(a)-394(ran)1(k)-394(1)-394(or)-393(2)-394(arr)1(a)28(y)83(,)-409(or)-393(a)-394(c)28(haracter)-394(or)-393(logical)-394(sc)-1(alar)1(.)-1019(T)27(yp)-27(e)-394(and)-393(ran)1(k)]TJ 0 -11.9551 Td[(m)27(u)1(s)-1(t)-313(agre)-1(e)-314(on)-313(s)-1(end)1(e)-1(r)-313(and)-313(re)-1(ceiv)28(e)-1(r)-313(pro)-27(c)-1(es)-1(s;)-320(if)]TJ/F11 9.9626 Tf 196.7468 0 Td[(m)]TJ/F8 9.9626 Tf 11.8749 0 Td[(is)-314(not)-314(sp)-27(e)-1(ci\014ed,)-317(s)-1(i)1(z)-1(e)-314(m)27(u)1(s)-1(t)]TJ -208.6217 -11.9552 Td[(agree)-334(as)-334(w)28(e)-1(l)1(l.)]TJ +/F8 9.9626 Tf 121.2665 333.7199 Td[(On)-333(d)1(e)-1(stin)1(ation)-333(p)1(ro)-28(ce)-1(ss)-1(\050es)-1(\051)1(,)-334(t)1(he)-334(r)1(e)-1(sult)-333(of)-333(th)1(e)-334(mini)1(m)27(um)-333(op)-28(erati)1(on.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-333(a)-333(rank)-333(1)-333(or)-333(2)-333(arra)28(y)84(.)]TJ 0 -11.9551 Td[(T)28(yp)-28(e,)-333(ran)1(k)-333(and)-333(siz)-1(e)-333(m)27(u)1(s)-1(t)-333(agree)-334(on)-333(all)-333(p)1(ro)-28(ce)-1(ss)-1(es)-1(.)]TJ/F18 14.3462 Tf -24.9066 -32.9459 Td[(Not)-1(es)]TJ +ET +1 0 0 1 99.8954 219.1773 cm +0 g 0 G +1 0 0 1 -99.8954 -219.1773 cm +BT +/F8 9.9626 Tf 112.072 219.1773 Td[(1.)]TJ +ET +1 0 0 1 119.8207 219.1773 cm +0 g 0 G +1 0 0 1 -119.8207 -219.1773 cm +BT +/F8 9.9626 Tf 124.802 219.1773 Td[(The)]TJ/F32 9.9626 Tf 19.7393 0 Td[(dat)]TJ/F8 9.9626 Tf 18.2725 0 Td[(argu)1(m)-1(en)28(t)-259(is)-259(b)-27(oth)-259(in)1(pu)1(t)-259(and)-259(ou)1(tpu)1(t,)-274(an)1(d)-259(its)-259(v)55(al)1(ue)-260(ma)28(y)-259(b)-27(e)-260(c)27(h)1(anged)]TJ -38.0118 -11.9552 Td[(ev)28(e)-1(n)-333(on)-333(p)1(ro)-28(ce)-1(sse)-1(s)-334(d)1(i\013e)-1(r)1(e)-1(n)28(t)-333(fr)1(om)-334(th)1(e)-334(\014n)1(al)-333(res)-1(u)1(lt)-333(des)-1(tin)1(ation)1(.)]TJ ET 1 0 0 1 99.8954 90.4377 cm 0 g 0 G @@ -24566,232 +25049,1163 @@ ET 0 g 0 G endstream endobj -1215 0 obj << +1261 0 obj << /Type /Page -/Contents 1216 0 R -/Resources 1214 0 R +/Contents 1262 0 R +/Resources 1260 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1213 0 R +/Parent 1252 0 R >> endobj -1217 0 obj << -/D [1215 0 R /XYZ 99.8954 740.9981 null] +1263 0 obj << +/D [1261 0 R /XYZ 99.8954 740.9981 null] >> endobj 302 0 obj << -/D [1215 0 R /XYZ 99.8954 659.6006 null] +/D [1261 0 R /XYZ 99.8954 659.6006 null] >> endobj -1218 0 obj << -/D [1215 0 R /XYZ 99.8954 631.8021 null] +1264 0 obj << +/D [1261 0 R /XYZ 99.8954 631.8021 null] >> endobj -1214 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F11 504 0 R /F14 535 0 R >> +1265 0 obj << +/D [1261 0 R /XYZ 99.8954 231.1324 null] +>> endobj +1266 0 obj << +/D [1261 0 R /XYZ 99.8954 235.1175 null] +>> endobj +1260 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F14 579 0 R /F11 548 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1221 0 obj << -/Length 7584 +1269 0 obj << +/Length 6065 >> stream 1 0 0 1 150.7049 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -494.416 -740.9981 cm +1 0 0 1 -348.6924 -60.7721 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7236 -680.226 cm BT -/F18 14.3462 Tf 150.7049 706.1289 Td[(8)-1125(E)-1(rr)-1(or)-376(handli)-1(ng)]TJ/F8 9.9626 Tf 0 -21.821 Td[(The)-446(PS)1(B)-1(LAS)-445(lib)1(rary)-446(error)-445(han)1(dlin)1(g)-446(p)-28(ol)1(ic)-1(y)-445(has)-447(b)-27(ee)-1(n)-445(c)-1(ompletely)-446(rewritten)-446(in)]TJ 0 -11.9551 Td[(v)28(ers)-1(i)1(on)-448(2.)1(0)-1(.)-787(The)-448(idea)-448(b)-27(e)-1(h)1(in)1(d)-448(th)1(e)-449(d)1(e)-1(sign)-447(of)-448(t)1(his)-448(new)-448(e)-1(r)1(ror)-447(han)1(dlin)1(g)-448(strategy)]TJ 0 -11.9552 Td[(is)-492(t)1(o)-492(k)28(ee)-1(p)-490(e)-1(rr)1(or)-491(m)-1(ess)-1(ages)-492(on)-491(a)-491(s)-1(tac)28(k)-491(allo)28(wing)-491(th)1(e)-492(use)-1(r)-491(t)1(o)-492(tr)1(ac)-1(e)-491(bac)27(k)-491(u)1(p)-491(to)]TJ 0 -11.9552 Td[(th)1(e)-401(p)-28(oin)29(t)-401(where)-401(th)1(e)-401(\014rst)-400(e)-1(rr)1(or)-400(m)-1(es)-1(sage)-401(has)-401(b)-27(e)-1(en)-400(ge)-1(n)1(e)-1(r)1(ate)-1(d)1(.)-646(Ev)28(ery)-400(rou)1(tine)-401(in)]TJ 0 -11.9551 Td[(th)1(e)-442(PSBLAS)1(-)-1(2.0)-441(lib)1(rary)-441(h)1(as)-1(,)-468(as)-442(last)-442(n)1(on-option)1(al)-441(argumen)28(t,)-468(an)-442(i)1(n)28(tege)-1(r)]TJ/F32 9.9626 Tf 322.7897 0 Td[(info)]TJ/F8 9.9626 Tf -322.7897 -11.9552 Td[(v)56(ariab)1(le;)-391(whenev)28(e)-1(r)1(,)-382(i)1(nside)-372(th)1(e)-372(routi)1(ne,)-381(e)-1(n)-371(e)-1(r)1(ror)-371(is)-372(detec)-1(ted,)-381(th)1(is)-372(v)56(ariab)1(le)-372(is)-372(s)-1(et)]TJ 0 -11.9552 Td[(to)-380(a)-381(v)56(alue)-381(corr)1(e)-1(sp)-28(on)1(di)1(ng)-381(t)1(o)-381(a)-381(sp)-27(e)-1(ci\014c)-381(err)1(or)-381(co)-28(d)1(e)-1(.)-586(Then)-380(thi)1(s)-381(e)-1(r)1(ror)-380(c)-1(o)-28(d)1(e)-381(is)-381(also)]TJ 0 -11.9551 Td[(pu)1(s)-1(h)1(e)-1(d)-244(on)-245(th)1(e)-246(err)1(or)-245(s)-1(tac)28(k)-245(and)-244(then)-245(eith)1(e)-1(r)-244(c)-1(on)28(tr)1(ol)-245(is)-245(return)1(e)-1(d)-244(to)-245(the)-245(caller)-245(rou)1(tine)]TJ 0 -11.9552 Td[(or)-371(the)-372(e)-1(x)1(e)-1(cuti)1(on)-372(is)-372(ab)-27(orted,)-381(d)1(e)-1(p)-27(e)-1(n)1(din)1(g)-372(on)-371(the)-372(u)1(s)-1(ers)-372(c)27(h)1(oic)-1(e.)-560(A)28(t)-371(the)-372(time)-372(w)-1(h)1(e)-1(n)]TJ 0 -11.9552 Td[(th)1(e)-365(exec)-1(u)1(tion)-363(is)-364(ab)-28(or)1(te)-1(d)1(,)-371(an)-363(e)-1(rr)1(or)-364(mes)-1(sage)-364(is)-364(pri)1(n)28(te)-1(d)-363(on)-363(s)-1(t)1(andar)1(d)-363(outp)1(ut)-364(with)]TJ 0 -11.9551 Td[(a)-448(l)1(e)-1(v)28(el)-448(of)-447(v)28(e)-1(r)1(b)-28(osit)28(y)-447(than)-447(c)-1(an)-447(b)-27(e)-448(c)27(hosen)-448(b)28(y)-447(th)1(e)-449(u)1(s)-1(er.)-787(If)-447(the)-448(e)-1(x)1(e)-1(cuti)1(on)-448(i)1(s)-449(n)1(ot)]TJ 0 -11.9552 Td[(ab)-27(orted,)-328(then,)-328(the)-328(caller)-328(r)1(outi)1(ne)-328(c)27(h)1(e)-1(c)28(ks)-328(the)-328(v)56(alu)1(e)-328(return)1(e)-1(d)-327(i)1(n)-328(t)1(he)]TJ/F32 9.9626 Tf 285.4593 0 Td[(info)]TJ/F8 9.9626 Tf 24.185 0 Td[(v)56(ariab)1(le)]TJ -309.6443 -11.9552 Td[(and)1(,)-359(if)-353(not)-353(z)-1(ero,)-359(an)-353(e)-1(r)1(ror)-354(cond)1(ition)-353(is)-354(raised.)-506(Thi)1(s)-355(p)1(ro)-28(ce)-1(ss)-354(c)-1(on)28(t)1(in)28(ues)-354(on)-354(all)-353(the)]TJ 0 -11.9551 Td[(lev)28(e)-1(l)1(s)-298(of)-296(n)1(e)-1(sted)-297(calls)-297(u)1(n)28(til)-296(the)-297(l)1(e)-1(v)28(el)-297(where)-297(th)1(e)-297(use)-1(r)-296(decides)-297(to)-297(ab)-27(ort)-296(the)-297(p)1(rogram)]TJ 0 -11.9552 Td[(exe)-1(cuti)1(on.)]TJ 14.944 -11.9552 Td[(Figu)1(re)]TJ +/F18 14.3462 Tf 150.7049 680.226 Td[(psb)]TJ ET -1 0 0 1 197.2824 504.9804 cm -0 0 1 rg 0 0 1 RG -1 0 0 1 -197.2824 -504.9804 cm -BT +1 0 0 1 175.972 680.226 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -175.972 -680.226 cm +BT +/F18 14.3462 Tf 180.8139 680.226 Td[(snd|Send)-375(data)]TJ -30.109 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 98.8766 -21.8209 Td[(call)-333(psb)]TJ +ET +1 0 0 1 283.4435 622.6364 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -283.4435 -622.6364 cm +BT +/F8 9.9626 Tf 286.4323 622.6364 Td[(snd)-333(\050)]TJ/F19 9.9626 Tf 22.1946 0 Td[(ic)51(ontxt,)-358(dat,)-358(dst,)-357(m)]TJ/F8 9.9626 Tf 83.038 0 Td[(\051)]TJ -240.96 -23.9103 Td[(This)-333(s)-1(u)1(brou)1(tin)1(e)-334(s)-1(end)1(s)-334(a)-333(pac)28(k)28(e)-1(t)-333(of)-333(data)-333(to)-333(a)-333(des)-1(tin)1(ation)1(.)]TJ +ET +1 0 0 1 145.7235 578.8008 cm +0 g 0 G +1 0 0 1 -145.7235 -578.8008 cm +BT +/F29 9.9626 Tf 150.7049 578.8008 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 202.109 578.8008 cm +0 g 0 G +1 0 0 1 -56.3855 -19.9253 cm +0 g 0 G +1 0 0 1 -145.7235 -558.8755 cm +BT +/F29 9.9626 Tf 150.7049 558.8755 Td[(ic)-1(on)33(t)-1(xt)]TJ +ET +1 0 0 1 185.7123 558.8755 cm +0 g 0 G +1 0 0 1 -185.7123 -558.8755 cm +BT +/F8 9.9626 Tf 190.6936 558.8755 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text)-333(id)1(e)-1(n)28(ti)1(fyi)1(ng)-333(the)-334(v)1(irtu)1(al)-333(paral)1(le)-1(l)-333(mac)27(h)1(ine.)]TJ -15.0821 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)-1(.)]TJ +ET +1 0 0 1 145.7235 503.0848 cm +0 g 0 G +1 0 0 1 -145.7235 -503.0848 cm +BT +/F29 9.9626 Tf 150.7049 503.0848 Td[(dat)]TJ +ET +1 0 0 1 167.0947 503.0848 cm +0 g 0 G +1 0 0 1 -167.0947 -503.0848 cm +BT +/F8 9.9626 Tf 172.076 503.0848 Td[(The)-334(d)1(ata)-333(to)-334(b)-27(e)-334(se)-1(n)29(t.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-393(a)-394(ran)1(k)-394(1)-394(or)-393(2)-394(arr)1(a)28(y)83(,)-409(or)-393(a)-394(c)28(haracter)-394(or)-393(logical)-394(sc)-1(alar)1(.)-1019(T)27(yp)-27(e)-394(and)-393(ran)1(k)]TJ 0 -11.9552 Td[(m)27(u)1(s)-1(t)-313(agre)-1(e)-314(on)-313(s)-1(end)1(e)-1(r)-313(and)-313(re)-1(ceiv)28(e)-1(r)-313(pro)-27(c)-1(es)-1(s;)-320(if)]TJ/F11 9.9626 Tf 196.7468 0 Td[(m)]TJ/F8 9.9626 Tf 11.8749 0 Td[(is)-314(not)-314(sp)-27(e)-1(ci\014ed,)-317(s)-1(i)1(z)-1(e)-314(m)27(u)1(s)-1(t)]TJ -208.6217 -11.9551 Td[(agree)-334(as)-334(w)28(e)-1(l)1(l.)]TJ +ET +1 0 0 1 145.7235 411.4285 cm +0 g 0 G +1 0 0 1 -145.7235 -411.4285 cm +BT +/F29 9.9626 Tf 150.7049 411.4285 Td[(ds)1(t)]TJ +ET +1 0 0 1 166.0445 411.4285 cm +0 g 0 G +1 0 0 1 -166.0445 -411.4285 cm +BT +/F8 9.9626 Tf 171.0258 411.4285 Td[(Des)-1(ti)1(nation)-333(p)1(ro)-28(ces)-1(s.)]TJ 4.5857 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1765 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(dst)-278(<)]TJ/F8 9.9626 Tf 23.9691 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1.)]TJ +ET +1 0 0 1 145.7235 343.6825 cm +0 g 0 G +1 0 0 1 -145.7235 -343.6825 cm +BT +/F29 9.9626 Tf 150.7049 343.6825 Td[(m)]TJ +ET +1 0 0 1 160.2523 343.6825 cm +0 g 0 G +1 0 0 1 -160.2523 -343.6825 cm +BT +/F8 9.9626 Tf 165.2337 343.6825 Td[(Num)28(b)-27(e)-1(r)-333(of)-333(r)1(o)27(ws.)]TJ 10.3778 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(Optional)]TJ/F8 9.9626 Tf 43.4548 0 Td[(.)]TJ -68.6382 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1764 0 Td[(<)]TJ/F8 9.9626 Tf 7.7488 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(m)-278(<)]TJ/F8 9.9626 Tf 19.2634 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051.)]TJ -226.3845 -11.9552 Td[(Wh)1(e)-1(n)]TJ/F11 9.9626 Tf 29.071 0 Td[(dat)]TJ/F8 9.9626 Tf 17.3833 0 Td[(is)-335(a)-335(r)1(ank)-334(2)-335(arr)1(a)28(y)83(,)-335(sp)-27(e)-1(ci\014es)-335(the)-335(n)28(u)1(m)27(b)-27(e)-1(r)-334(of)-334(ro)28(ws)-335(to)-335(b)-27(e)-335(s)-1(en)28(t)-335(i)1(nd)1(e)-1(-)]TJ -46.4544 -11.9551 Td[(p)-27(e)-1(n)1(den)28(tly)-285(of)-285(th)1(e)-286(leadi)1(ng)-285(dimension)]TJ/F11 9.9626 Tf 153.7418 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051;)-301(m)27(u)1(s)-1(t)-285(h)1(a)28(v)28(e)-286(the)-285(s)-1(ame)-286(v)56(alu)1(e)]TJ -193.9055 -11.9552 Td[(on)-333(se)-1(n)1(din)1(g)-334(an)1(d)-333(rec)-1(eivi)1(ng)-333(pro)-27(c)-1(es)-1(se)-1(s.)]TJ +ET +1 0 0 1 145.7235 250.0337 cm +0 g 0 G +1 0 0 1 -145.7235 -250.0337 cm +BT +/F29 9.9626 Tf 150.7049 250.0337 Td[(On)-383(R)-1(etur)1(n)]TJ +ET +1 0 0 1 205.2431 250.0337 cm +0 g 0 G +1 0 0 1 -54.5382 -159.596 cm +0 g 0 G +1 0 0 1 -150.7049 -90.4377 cm +BT +/F8 9.9626 Tf 317.5791 90.4377 Td[(90)]TJ +ET +1 0 0 1 494.4159 90.4377 cm +0 g 0 G +endstream +endobj +1268 0 obj << +/Type /Page +/Contents 1269 0 R +/Resources 1267 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1252 0 R +>> endobj +1270 0 obj << +/D [1268 0 R /XYZ 150.7049 740.9981 null] +>> endobj +306 0 obj << +/D [1268 0 R /XYZ 150.7049 659.6006 null] +>> endobj +1271 0 obj << +/D [1268 0 R /XYZ 150.7049 631.8021 null] +>> endobj +1267 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R /F14 579 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1274 0 obj << +/Length 6085 +>> +stream +1 0 0 1 99.8954 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -348.6924 -60.7721 cm +0 g 0 G +0 g 0 G +1 0 0 1 -94.9141 -680.226 cm +BT +/F18 14.3462 Tf 99.8954 680.226 Td[(psb)]TJ +ET +1 0 0 1 125.1626 680.226 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -125.1626 -680.226 cm +BT +/F18 14.3462 Tf 130.0045 680.226 Td[(rcv|Re)-1(ceiv)31(e)-375(dat)-1(a)]TJ -30.1091 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 99.646 -21.8209 Td[(call)-333(psb)]TJ +ET +1 0 0 1 233.4034 622.6364 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -233.4034 -622.6364 cm +BT +/F8 9.9626 Tf 236.3922 622.6364 Td[(rcv)-333(\050)]TJ/F19 9.9626 Tf 20.7832 0 Td[(ic)51(ontxt,)-358(dat,)-358(s)1(r)51(c,)-357(m)]TJ/F8 9.9626 Tf 82.9107 0 Td[(\051)]TJ -240.1907 -23.9103 Td[(This)-333(s)-1(u)1(brou)1(tin)1(e)-334(rec)-1(eiv)28(es)-334(a)-333(pac)27(k)28(et)-333(of)-333(data)-333(to)-333(a)-334(d)1(e)-1(stin)1(ation.)]TJ +ET +1 0 0 1 94.9141 578.8008 cm +0 g 0 G +1 0 0 1 -94.9141 -578.8008 cm +BT +/F29 9.9626 Tf 99.8954 578.8008 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 151.2996 578.8008 cm +0 g 0 G +1 0 0 1 -56.3855 -19.9253 cm +0 g 0 G +1 0 0 1 -94.9141 -558.8755 cm +BT +/F29 9.9626 Tf 99.8954 558.8755 Td[(ic)-1(on)33(t)-1(xt)]TJ +ET +1 0 0 1 134.9028 558.8755 cm +0 g 0 G +1 0 0 1 -134.9028 -558.8755 cm +BT +/F8 9.9626 Tf 139.8841 558.8755 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text)-333(id)1(e)-1(n)28(ti)1(fyi)1(ng)-333(the)-334(v)1(irtu)1(al)-333(paral)1(le)-1(l)-333(mac)27(h)1(ine.)]TJ -15.0821 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)-1(.)]TJ +ET +1 0 0 1 94.9141 503.0848 cm +0 g 0 G +1 0 0 1 -94.9141 -503.0848 cm +BT +/F29 9.9626 Tf 99.8954 503.0848 Td[(sr)1(c)]TJ +ET +1 0 0 1 114.2249 503.0848 cm +0 g 0 G +1 0 0 1 -114.2249 -503.0848 cm +BT +/F8 9.9626 Tf 119.2062 503.0848 Td[(Sou)1(rce)-334(pr)1(o)-28(ce)-1(ss)-1(.)]TJ 5.5958 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1765 0 Td[(<)]TJ/F8 9.9626 Tf 7.7487 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(sr)-28(c)-277(<)]TJ/F8 9.9626 Tf 24.2689 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(np)]TJ/F14 9.9626 Tf 13.2062 0 Td[(\000)]TJ/F8 9.9626 Tf 9.9626 0 Td[(1.)]TJ +ET +1 0 0 1 94.9141 435.3388 cm +0 g 0 G +1 0 0 1 -94.9141 -435.3388 cm +BT +/F29 9.9626 Tf 99.8954 435.3388 Td[(m)]TJ +ET +1 0 0 1 109.4429 435.3388 cm +0 g 0 G +1 0 0 1 -109.4429 -435.3388 cm +BT +/F8 9.9626 Tf 114.4242 435.3388 Td[(Num)28(b)-27(e)-1(r)-333(of)-333(r)1(o)27(ws.)]TJ 10.3778 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(global)]TJ/F8 9.9626 Tf 29.7563 0 Td[(.)]TJ -57.7071 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(Optional)]TJ/F8 9.9626 Tf 43.4548 0 Td[(.)]TJ -68.6382 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue)-334(0)]TJ/F11 9.9626 Tf 138.1764 0 Td[(<)]TJ/F8 9.9626 Tf 7.7488 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(m)-278(<)]TJ/F8 9.9626 Tf 19.2634 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051.)]TJ -226.3845 -11.9552 Td[(Wh)1(e)-1(n)]TJ/F11 9.9626 Tf 29.071 0 Td[(dat)]TJ/F8 9.9626 Tf 17.3833 0 Td[(is)-335(a)-335(r)1(ank)-334(2)-335(arr)1(a)28(y)83(,)-335(sp)-27(e)-1(ci\014es)-335(the)-335(n)28(u)1(m)27(b)-27(e)-1(r)-334(of)-334(ro)28(ws)-335(to)-335(b)-27(e)-335(s)-1(en)28(t)-335(i)1(nd)1(e)-1(-)]TJ -46.4544 -11.9551 Td[(p)-27(e)-1(n)1(den)28(tly)-285(of)-285(th)1(e)-286(leadi)1(ng)-285(dimension)]TJ/F11 9.9626 Tf 153.7418 0 Td[(si)1(z)-44(e)]TJ/F8 9.9626 Tf 17.8124 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(dat;)]TJ/F8 9.9626 Tf 18.477 0 Td[(1\051;)-301(m)27(u)1(s)-1(t)-285(h)1(a)28(v)28(e)-286(the)-285(s)-1(ame)-286(v)56(alu)1(e)]TJ -193.9055 -11.9552 Td[(on)-333(se)-1(n)1(din)1(g)-334(an)1(d)-333(rec)-1(eivi)1(ng)-333(pro)-27(c)-1(es)-1(se)-1(s.)]TJ +ET +1 0 0 1 94.9141 341.69 cm +0 g 0 G +1 0 0 1 -94.9141 -341.69 cm +BT +/F29 9.9626 Tf 99.8954 341.69 Td[(On)-383(R)-1(etur)1(n)]TJ +ET +1 0 0 1 154.4337 341.69 cm +0 g 0 G +1 0 0 1 -59.5196 -19.9253 cm +0 g 0 G +1 0 0 1 -94.9141 -321.7647 cm +BT +/F29 9.9626 Tf 99.8954 321.7647 Td[(dat)]TJ +ET +1 0 0 1 116.2852 321.7647 cm +0 g 0 G +1 0 0 1 -116.2852 -321.7647 cm +BT +/F8 9.9626 Tf 121.2665 321.7647 Td[(The)-334(d)1(ata)-333(to)-334(b)-27(e)-334(r)1(e)-1(ce)-1(i)1(v)28(e)-1(d)1(.)]TJ 3.5355 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 27.9508 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf 23.0731 0 Td[(.)]TJ -51.0239 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-339(as:)-457(an)-340(i)1(n)28(tege)-1(r,)-341(r)1(e)-1(al)-339(or)-340(complex)-340(v)56(ari)1(able,)-341(whic)28(h)-340(ma)28(y)-340(b)-27(e)-340(a)-340(sc)-1(alar)1(,)]TJ 0 -11.9552 Td[(or)-393(a)-394(ran)1(k)-394(1)-394(or)-393(2)-394(arr)1(a)28(y)83(,)-409(or)-393(a)-394(c)28(haracter)-394(or)-393(logical)-394(sc)-1(alar)1(.)-1019(T)27(yp)-27(e)-394(and)-393(ran)1(k)]TJ 0 -11.9551 Td[(m)27(u)1(s)-1(t)-313(agre)-1(e)-314(on)-313(s)-1(end)1(e)-1(r)-313(and)-313(re)-1(ceiv)28(e)-1(r)-313(pro)-27(c)-1(es)-1(s;)-320(if)]TJ/F11 9.9626 Tf 196.7468 0 Td[(m)]TJ/F8 9.9626 Tf 11.8749 0 Td[(is)-314(not)-314(sp)-27(e)-1(ci\014ed,)-317(s)-1(i)1(z)-1(e)-314(m)27(u)1(s)-1(t)]TJ -208.6217 -11.9552 Td[(agree)-334(as)-334(w)28(e)-1(l)1(l.)]TJ +ET +1 0 0 1 99.8954 90.4377 cm +0 g 0 G +1 0 0 1 -99.8954 -90.4377 cm +BT +/F8 9.9626 Tf 266.7696 90.4377 Td[(91)]TJ +ET +1 0 0 1 443.6065 90.4377 cm +0 g 0 G +endstream +endobj +1273 0 obj << +/Type /Page +/Contents 1274 0 R +/Resources 1272 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1252 0 R +>> endobj +1275 0 obj << +/D [1273 0 R /XYZ 99.8954 740.9981 null] +>> endobj +310 0 obj << +/D [1273 0 R /XYZ 99.8954 659.6006 null] +>> endobj +1276 0 obj << +/D [1273 0 R /XYZ 99.8954 631.8021 null] +>> endobj +1272 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F11 548 0 R /F14 579 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1279 0 obj << +/Length 7584 +>> +stream +1 0 0 1 150.7049 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -494.416 -740.9981 cm +BT +/F18 14.3462 Tf 150.7049 706.1289 Td[(8)-1125(E)-1(rr)-1(or)-376(handli)-1(ng)]TJ/F8 9.9626 Tf 0 -21.821 Td[(The)-446(PS)1(B)-1(LAS)-445(lib)1(rary)-446(error)-445(han)1(dlin)1(g)-446(p)-28(ol)1(ic)-1(y)-445(has)-447(b)-27(ee)-1(n)-445(c)-1(ompletely)-446(rewritten)-446(in)]TJ 0 -11.9551 Td[(v)28(ers)-1(i)1(on)-448(2.)1(0)-1(.)-787(The)-448(idea)-448(b)-27(e)-1(h)1(in)1(d)-448(th)1(e)-449(d)1(e)-1(sign)-447(of)-448(t)1(his)-448(new)-448(e)-1(r)1(ror)-447(han)1(dlin)1(g)-448(strategy)]TJ 0 -11.9552 Td[(is)-492(t)1(o)-492(k)28(ee)-1(p)-490(e)-1(rr)1(or)-491(m)-1(ess)-1(ages)-492(on)-491(a)-491(s)-1(tac)28(k)-491(allo)28(wing)-491(th)1(e)-492(use)-1(r)-491(t)1(o)-492(tr)1(ac)-1(e)-491(bac)27(k)-491(u)1(p)-491(to)]TJ 0 -11.9552 Td[(th)1(e)-401(p)-28(oin)29(t)-401(where)-401(th)1(e)-401(\014rst)-400(e)-1(rr)1(or)-400(m)-1(es)-1(sage)-401(has)-401(b)-27(e)-1(en)-400(ge)-1(n)1(e)-1(r)1(ate)-1(d)1(.)-646(Ev)28(ery)-400(rou)1(tine)-401(in)]TJ 0 -11.9551 Td[(th)1(e)-442(PSBLAS)1(-)-1(2.0)-441(lib)1(rary)-441(h)1(as)-1(,)-468(as)-442(last)-442(n)1(on-option)1(al)-441(argumen)28(t,)-468(an)-442(i)1(n)28(tege)-1(r)]TJ/F32 9.9626 Tf 322.7897 0 Td[(info)]TJ/F8 9.9626 Tf -322.7897 -11.9552 Td[(v)56(ariab)1(le;)-391(whenev)28(e)-1(r)1(,)-382(i)1(nside)-372(th)1(e)-372(routi)1(ne,)-381(e)-1(n)-371(e)-1(r)1(ror)-371(is)-372(detec)-1(ted,)-381(th)1(is)-372(v)56(ariab)1(le)-372(is)-372(s)-1(et)]TJ 0 -11.9552 Td[(to)-380(a)-381(v)56(alue)-381(corr)1(e)-1(sp)-28(on)1(di)1(ng)-381(t)1(o)-381(a)-381(sp)-27(e)-1(ci\014c)-381(err)1(or)-381(co)-28(d)1(e)-1(.)-586(Then)-380(thi)1(s)-381(e)-1(r)1(ror)-380(c)-1(o)-28(d)1(e)-381(is)-381(also)]TJ 0 -11.9551 Td[(pu)1(s)-1(h)1(e)-1(d)-244(on)-245(th)1(e)-246(err)1(or)-245(s)-1(tac)28(k)-245(and)-244(then)-245(eith)1(e)-1(r)-244(c)-1(on)28(tr)1(ol)-245(is)-245(return)1(e)-1(d)-244(to)-245(the)-245(caller)-245(rou)1(tine)]TJ 0 -11.9552 Td[(or)-371(the)-372(e)-1(x)1(e)-1(cuti)1(on)-372(is)-372(ab)-27(orted,)-381(d)1(e)-1(p)-27(e)-1(n)1(din)1(g)-372(on)-371(the)-372(u)1(s)-1(ers)-372(c)27(h)1(oic)-1(e.)-560(A)28(t)-371(the)-372(time)-372(w)-1(h)1(e)-1(n)]TJ 0 -11.9552 Td[(th)1(e)-365(exec)-1(u)1(tion)-363(is)-364(ab)-28(or)1(te)-1(d)1(,)-371(an)-363(e)-1(rr)1(or)-364(mes)-1(sage)-364(is)-364(pri)1(n)28(te)-1(d)-363(on)-363(s)-1(t)1(andar)1(d)-363(outp)1(ut)-364(with)]TJ 0 -11.9551 Td[(a)-448(l)1(e)-1(v)28(el)-448(of)-447(v)28(e)-1(r)1(b)-28(osit)28(y)-447(than)-447(c)-1(an)-447(b)-27(e)-448(c)27(hosen)-448(b)28(y)-447(th)1(e)-449(u)1(s)-1(er.)-787(If)-447(the)-448(e)-1(x)1(e)-1(cuti)1(on)-448(i)1(s)-449(n)1(ot)]TJ 0 -11.9552 Td[(ab)-27(orted,)-328(then,)-328(the)-328(caller)-328(r)1(outi)1(ne)-328(c)27(h)1(e)-1(c)28(ks)-328(the)-328(v)56(alu)1(e)-328(return)1(e)-1(d)-327(i)1(n)-328(t)1(he)]TJ/F32 9.9626 Tf 285.4593 0 Td[(info)]TJ/F8 9.9626 Tf 24.185 0 Td[(v)56(ariab)1(le)]TJ -309.6443 -11.9552 Td[(and)1(,)-359(if)-353(not)-353(z)-1(ero,)-359(an)-353(e)-1(r)1(ror)-354(cond)1(ition)-353(is)-354(raised.)-506(Thi)1(s)-355(p)1(ro)-28(ce)-1(ss)-354(c)-1(on)28(t)1(in)28(ues)-354(on)-354(all)-353(the)]TJ 0 -11.9551 Td[(lev)28(e)-1(l)1(s)-298(of)-296(n)1(e)-1(sted)-297(calls)-297(u)1(n)28(til)-296(the)-297(l)1(e)-1(v)28(el)-297(where)-297(th)1(e)-297(use)-1(r)-296(decides)-297(to)-297(ab)-27(ort)-296(the)-297(p)1(rogram)]TJ 0 -11.9552 Td[(exe)-1(cuti)1(on.)]TJ 14.944 -11.9552 Td[(Figu)1(re)]TJ +ET +1 0 0 1 197.2824 504.9804 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -197.2824 -504.9804 cm +BT /F8 9.9626 Tf 197.2824 504.9804 Td[(8)]TJ ET -1 0 0 1 202.2637 504.9804 cm +1 0 0 1 202.2637 504.9804 cm +0 g 0 G +1 0 0 1 -202.2637 -504.9804 cm +BT +/F8 9.9626 Tf 205.7804 504.9804 Td[(sho)28(ws)-354(th)1(e)-354(la)28(y)28(ou)1(t)-353(of)-353(a)-353(generic)]TJ/F32 9.9626 Tf 130.5512 0 Td[(psb_foo)]TJ/F8 9.9626 Tf 40.1291 0 Td[(rou)1(tin)1(e)-354(with)-352(res)-1(p)-27(e)-1(ct)-353(to)-353(th)1(e)]TJ -225.7558 -11.9552 Td[(PS)1(BLAS-2.0)-326(error)-325(han)1(dlin)1(g)-326(p)-27(olicy)83(.)-441(I)-1(t)-325(is)-326(p)-28(oss)-1(i)1(ble)-326(to)-326(se)-1(e)-326(h)1(o)27(w,)-327(whenev)28(e)-1(r)-325(an)-326(err)1(or)]TJ 0 -11.9551 Td[(condi)1(tion)-378(is)-379(dete)-1(cted,)-390(th)1(e)]TJ/F32 9.9626 Tf 115.439 0 Td[(info)]TJ/F8 9.9626 Tf 24.694 0 Td[(v)56(ariab)1(le)-379(is)-379(s)-1(et)-379(t)1(o)-379(the)-379(corr)1(e)-1(sp)-28(on)1(din)1(g)-379(error)-378(co)-28(de)]TJ -140.133 -11.9552 Td[(whic)28(h)-376(i)1(s)-1(,)-386(then,)-386(pu)1(s)-1(h)1(e)-1(d)-375(on)-376(top)-375(of)-376(t)1(he)-376(s)-1(tac)28(k)-376(b)28(y)-376(means)-376(of)-376(th)1(e)]TJ/F32 9.9626 Tf 264.7022 0 Td[(psb_errpush)]TJ/F8 9.9626 Tf 57.5338 0 Td[(.)-572(An)]TJ -322.236 -11.9552 Td[(error)-331(cond)1(ition)-330(ma)27(y)-331(b)-27(e)-331(dir)1(e)-1(ctly)-331(d)1(e)-1(tec)-1(t)1(e)-1(d)-331(i)1(nside)-331(a)-331(rou)1(tine)-331(or)-331(in)1(dir)1(e)-1(ctly)-331(c)28(hec)27(kin)1(g)]TJ 0 -11.9551 Td[(th)1(e)-462(e)-1(rr)1(or)-461(c)-1(o)-28(d)1(e)-462(retur)1(ned)-461(re)-1(t)1(urn)1(e)-1(d)-461(b)29(y)-462(a)-461(c)-1(all)1(e)-1(d)-461(r)1(outin)1(e)-1(.)-828(Whenev)28(e)-1(r)-461(an)-461(error)-461(is)]TJ 0 -11.9552 Td[(encoun)28(tered,)-459(af)1(ter)-434(it)-433(has)-434(b)-28(een)-434(p)1(ushed)-434(on)-433(s)-1(t)1(ac)27(k,)-459(t)1(he)-434(progr)1(am)-434(e)-1(xecution)-433(s)-1(k)1(ips)]TJ 0 -11.9552 Td[(to)-356(a)-355(p)-28(oin)29(t)-356(where)-356(the)-356(err)1(o)-1(r)-355(cond)1(ition)-355(is)-356(han)1(dled;)-366(the)-356(e)-1(r)1(ror)-355(c)-1(on)1(diti)1(on)-356(i)1(s)-357(h)1(and)1(le)-1(d)]TJ 0 -11.9551 Td[(either)-392(b)29(y)-392(retur)1(nin)1(g)-392(c)-1(on)29(trol)-392(to)-391(the)-392(c)-1(al)1(le)-1(r)-391(rou)1(tine)-392(or)-392(b)29(y)-392(c)-1(al)1(lin)1(g)-392(the)]TJ/F32 9.9626 Tf 291.4077 0 Td[(psb\134_error)]TJ/F8 9.9626 Tf -291.4077 -11.9552 Td[(rou)1(tin)1(e)-479(whic)28(h)-478(pr)1(in)28(ts)-479(t)1(he)-479(con)28(ten)28(t)-478(of)-478(th)1(e)-479(e)-1(r)1(ror)-478(stac)27(k)-478(an)1(d)-478(ab)-27(orts)-479(th)1(e)-479(p)1(rogram)]TJ 0 -11.9552 Td[(exe)-1(cuti)1(on.)]TJ 14.944 -11.9551 Td[(Figu)1(re)]TJ +ET +1 0 0 1 197.7532 373.4736 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -197.7532 -373.4736 cm +BT +/F8 9.9626 Tf 197.7532 373.4736 Td[(9)]TJ +ET +1 0 0 1 202.7345 373.4736 cm +0 g 0 G +1 0 0 1 -202.7345 -373.4736 cm +BT +/F8 9.9626 Tf 206.722 373.4736 Td[(rep)-27(orts)-401(a)-400(sam)-1(p)1(le)-401(error)-399(m)-1(es)-1(sage)-401(generated)-400(b)28(y)-400(th)1(e)-401(PS)1(B)-1(LAS)1(-2.0)-400(li-)]TJ -56.0171 -11.9552 Td[(br)1(ary)84(.)-555(T)-1(h)1(is)-371(error)-370(h)1(as)-371(b)-27(e)-1(en)-370(generated)-370(b)28(y)-370(the)-370(fact)-371(th)1(at)-370(the)-370(use)-1(r)-370(h)1(as)-371(c)27(h)1(os)-1(en)-370(the)]TJ 0 -11.9552 Td[(in)28(v)56(ali)1(d)-367(\134F)28(OO")-367(s)-1(tor)1(a)-1(ge)-367(format)-367(to)-368(repr)1(e)-1(se)-1(n)29(t)-368(th)1(e)-368(s)-1(p)1(arse)-368(m)-1(at)1(rix.)-546(F)83(rom)-367(this)-368(err)1(or)]TJ 0 -11.9551 Td[(me)-1(ss)-1(age)-248(it)-247(is)-248(p)-28(oss)-1(i)1(ble)-248(to)-248(se)-1(e)-248(th)1(at)-248(the)-248(error)-247(has)-248(b)-27(e)-1(en)-248(d)1(e)-1(t)1(e)-1(cte)-1(d)-247(in)1(s)-1(id)1(e)-248(the)]TJ/F32 9.9626 Tf 301.8683 0 Td[(psb_cest)]TJ/F8 9.9626 Tf -301.8683 -11.9552 Td[(subr)1(outi)1(ne)-334(called)-333(b)28(y)]TJ/F32 9.9626 Tf 91.4074 0 Td[(psb_spasb)]TJ/F8 9.9626 Tf 50.3939 0 Td[(...)-444(b)28(y)-333(p)1(ro)-28(ce)-1(ss)-334(0)-333(\050i.e.)-444(the)-333(ro)-28(ot)-333(pr)1(o)-28(c)-1(es)-1(s\051.)]TJ +ET +1 0 0 1 150.7049 90.4377 cm +0 g 0 G +1 0 0 1 -150.7049 -90.4377 cm +BT +/F8 9.9626 Tf 317.5791 90.4377 Td[(92)]TJ +ET +1 0 0 1 494.4159 90.4377 cm +0 g 0 G +endstream +endobj +1278 0 obj << +/Type /Page +/Contents 1279 0 R +/Resources 1277 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1252 0 R +/Annots [ 1281 0 R 1282 0 R ] +>> endobj +1281 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [196.2861 501.7702 203.26 512.8952] +/Subtype /Link +/A << /S /GoTo /D (figure.8) >> +>> endobj +1282 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [196.7569 370.5401 203.7308 381.3883] +/Subtype /Link +/A << /S /GoTo /D (figure.9) >> +>> endobj +1280 0 obj << +/D [1278 0 R /XYZ 150.7049 740.9981 null] +>> endobj +314 0 obj << +/D [1278 0 R /XYZ 150.7049 716.0915 null] +>> endobj +1277 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F32 554 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1287 0 obj << +/Length 4627 +>> +stream +1 0 0 1 99.8954 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -343.7111 -24.9066 cm +0 g 0 G +1 0 0 1 166.8742 -9.9626 cm +0 g 0 G +0 g 0 G +1 0 0 1 -166.8742 -1.3948 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +346.5826 0.1992 l +S +Q +1 0 0 1 0 -276.2142 cm +q +[]0 d +0 J +0.3985 w +0.1992 0 m +0.1992 276.2142 l +S +Q +1 0 0 1 3.3873 262.0174 cm +0 g 0 G +0 g 0 G +1 0 0 1 -103.2827 -690.5373 cm +BT +/F48 8.9664 Tf 108.264 690.5373 Td[(subroutine)-525(psb_foo\050some)-525(args,)-525(info\051)]TJ 14.1219 -10.9589 Td[(...)]TJ 0 -10.9589 Td[(if\050error)-525(detected\051)-525(then)]TJ 14.1219 -10.9589 Td[(info=errcode1)]TJ 0 -10.9589 Td[(call)-525(psb_errpush\050'psb_foo',)-525(errcode1\051)]TJ 0 -10.9589 Td[(goto)-525(9999)]TJ -14.1219 -10.9589 Td[(end)-525(if)]TJ 0 -10.9589 Td[(...)]TJ 0 -10.9589 Td[(call)-525(psb_bar\050some)-525(args,)-525(info\051)]TJ 0 -10.9589 Td[(if\050info)-525(.ne.)-525(zero\051)-525(then)]TJ 14.1219 -10.9589 Td[(info=errcode2)]TJ 0 -10.9589 Td[(call)-525(psb_errpush\050'psb_foo',)-525(errcode2\051)]TJ 0 -10.9589 Td[(goto)-525(9999)]TJ -14.1219 -10.9589 Td[(end)-525(if)]TJ 0 -10.9589 Td[(...)]TJ -14.1219 -10.9589 Td[(9999)-525(continue)]TJ 14.1219 -10.9589 Td[(if)-525(\050err_act)-525(.eq.)-525(act_abort\051)-525(then)]TJ 9.4146 -10.9589 Td[(call)-525(psb_error\050icontxt\051)]TJ 0 -10.9589 Td[(return)]TJ -9.4146 -10.9589 Td[(else)]TJ 9.4146 -10.9589 Td[(return)]TJ -9.4146 -10.9589 Td[(end)-525(if)]TJ -14.1219 -21.9178 Td[(end)-525(subroutine)-525(psb_foo)]TJ +ET +1 0 0 1 446.0795 428.5199 cm +q +[]0 d +0 J +0.3985 w +0.1992 0 m +0.1992 276.2142 l +S +Q +1 0 0 1 -346.1841 -0.3985 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +346.5826 0.1992 l +S +Q +1 0 0 1 -99.8954 -428.1214 cm +BT +/F8 9.9626 Tf 99.8954 400.2814 Td[(Figu)1(re)-330(8:)-442(The)-330(l)1(a)27(y)28(ou)1(t)-330(of)-329(a)-329(generic)]TJ/F32 9.9626 Tf 147.4447 0 Td[(psb)]TJ +ET +1 0 0 1 263.6588 400.2814 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.1382 0.1992 l +S +Q +1 0 0 1 -263.6588 -400.2814 cm +BT +/F32 9.9626 Tf 266.797 400.2814 Td[(foo)]TJ/F8 9.9626 Tf 18.9732 0 Td[(rou)1(tin)1(e)-330(w)-1(i)1(th)-329(res)-1(p)-27(e)-1(ct)-329(to)-330(P)1(SBLAS-2.0)]TJ -185.8748 -11.9552 Td[(error)-333(h)1(and)1(ling)-333(p)-27(olicy)83(.)]TJ +ET +1 0 0 1 99.8954 386.389 cm +0 g 0 G +1 0 0 1 0 -9.9626 cm +0 g 0 G +1 0 0 1 166.8742 -9.9627 cm +0 g 0 G +0 g 0 G +1 0 0 1 -166.8742 -1.3947 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +346.5826 0.1992 l +S +Q +1 0 0 1 0 -177.7121 cm +q +[]0 d +0 J +0.3985 w +0.1992 0 m +0.1992 177.712 l +S +Q +1 0 0 1 3.3873 165.6012 cm +0 g 0 G +0 g 0 G +1 0 0 1 -103.2827 -352.9581 cm +BT +/F32 9.9626 Tf 108.264 352.9581 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\0504010\051)-525(in)-525(subroutine:)-525(df_sample)]TJ 0 -11.9551 Td[(Error)-525(from)-525(call)-525(to)-525(subroutine)-525(mat)-525(dist)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\0504010\051)-525(in)-525(subroutine:)-525(mat_distv)]TJ 0 -11.9551 Td[(Error)-525(from)-525(call)-525(to)-525(subroutine)-525(psb_spasb)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\0504010\051)-525(in)-525(subroutine:)-525(psb_spasb)]TJ 0 -11.9551 Td[(Error)-525(from)-525(call)-525(to)-525(subroutine)-525(psb_cest)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\050136\051)-525(in)-525(subroutine:)-525(psb_cest)]TJ 0 -11.9551 Td[(Format)-525(FOO)-525(is)-525(unknown)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Aborting...)]TJ +ET +1 0 0 1 446.0795 187.3569 cm +q +[]0 d +0 J +0.3985 w +0.1992 0 m +0.1992 177.712 l +S +Q +1 0 0 1 -346.1841 -0.3985 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +346.5826 0.1992 l +S +Q +1 0 0 1 -99.8954 -186.9584 cm +BT +/F8 9.9626 Tf 99.8954 159.1184 Td[(Figu)1(re)-422(9:)-622(A)-422(sam)-1(p)1(le)-422(PSBLAS)1(-)-1(2.0)-422(err)1(or)-422(me)-1(ss)-1(age.)-710(Pro)-28(ces)-1(s)-422(0)-422(dete)-1(cted)-422(an)-422(err)1(or)]TJ 0 -11.9552 Td[(condi)1(tion)-333(in)1(s)-1(i)1(de)-334(th)1(e)-334(psb)]TJ +ET +1 0 0 1 204.6583 147.1632 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -204.6583 -147.1632 cm +BT +/F8 9.9626 Tf 207.6471 147.1632 Td[(ce)-1(st)-334(sub)1(rou)1(tine)]TJ +ET +1 0 0 1 99.8954 145.226 cm +0 g 0 G +1 0 0 1 0 -54.7883 cm +0 g 0 G +1 0 0 1 -99.8954 -90.4377 cm +BT +/F8 9.9626 Tf 266.7696 90.4377 Td[(93)]TJ +ET +1 0 0 1 443.6065 90.4377 cm +0 g 0 G +endstream +endobj +1286 0 obj << +/Type /Page +/Contents 1287 0 R +/Resources 1285 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1289 0 R +>> endobj +1288 0 obj << +/D [1286 0 R /XYZ 99.8954 740.9981 null] +>> endobj +1283 0 obj << +/D [1286 0 R /XYZ 143.4516 412.2365 null] +>> endobj +1284 0 obj << +/D [1286 0 R /XYZ 146.1606 171.0735 null] +>> endobj +1285 0 obj << +/Font << /F48 688 0 R /F8 410 0 R /F32 554 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1292 0 obj << +/Length 4937 +>> +stream +1 0 0 1 150.7049 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -348.6924 -60.7721 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7236 -680.226 cm +BT +/F18 14.3462 Tf 150.7049 680.226 Td[(psb)]TJ +ET +1 0 0 1 175.972 680.226 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -175.972 -680.226 cm +BT +/F18 14.3462 Tf 180.8139 680.226 Td[(er)-1(rpush|Pus)1(he)-1(s)-374(an)-375(e)-1(rr)-1(or)-376(co)-31(de)-376(on)31(to)-376(the)]TJ -30.109 -17.9328 Td[(er)-1(ro)-1(r)-375(st)-1(a)1(c)31(k)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 74.5967 -21.8209 Td[(call)-333(psb)]TJ +ET +1 0 0 1 259.1635 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -259.1635 -604.7037 cm +BT +/F8 9.9626 Tf 262.1524 604.7037 Td[(errp)1(ush)-333(\050)]TJ/F19 9.9626 Tf 39.9613 0 Td[(err)]TJ +ET +1 0 0 1 315.7092 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.0552 0.1992 l +S +Q +1 0 0 1 -315.7092 -604.7037 cm +BT +/F19 9.9626 Tf 318.7644 604.7037 Td[(c,)-357(r)]TJ +ET +1 0 0 1 334.7787 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.0552 0.1992 l +S +Q +1 0 0 1 -334.7787 -604.7037 cm +BT +/F19 9.9626 Tf 337.8339 604.7037 Td[(name,)-358(i)]TJ +ET +1 0 0 1 371.5428 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.0552 0.1992 l +S +Q +1 0 0 1 -371.5428 -604.7037 cm +BT +/F19 9.9626 Tf 374.598 604.7037 Td[(err)1(,)-358(a)]TJ +ET +1 0 0 1 399.9051 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.0552 0.1992 l +S +Q +1 0 0 1 -399.9051 -604.7037 cm +BT +/F19 9.9626 Tf 402.9603 604.7037 Td[(err)]TJ/F8 9.9626 Tf 12.9845 0 Td[(\051)]TJ +ET +1 0 0 1 145.7235 580.7934 cm +0 g 0 G +1 0 0 1 -145.7235 -580.7934 cm +BT +/F29 9.9626 Tf 150.7049 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 198.2901 580.7934 cm +0 g 0 G +1 0 0 1 -52.5665 -19.9253 cm +0 g 0 G +1 0 0 1 -145.7236 -560.8681 cm +BT +/F29 9.9626 Tf 150.7049 560.8681 Td[(err)]TJ +ET +1 0 0 1 166.0802 560.8681 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.4371 0.1992 l +S +Q +1 0 0 1 -166.0802 -560.8681 cm +BT +/F29 9.9626 Tf 169.5173 560.8681 Td[(c)]TJ +ET +1 0 0 1 174.6093 560.8681 cm +0 g 0 G +1 0 0 1 -174.6093 -560.8681 cm +BT +/F8 9.9626 Tf 179.5906 560.8681 Td[(th)1(e)-334(e)-1(r)1(ror)-333(co)-28(de)]TJ -3.9791 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +ET +1 0 0 1 145.7235 505.0773 cm +0 g 0 G +1 0 0 1 -145.7235 -505.0773 cm +BT +/F29 9.9626 Tf 150.7049 505.0773 Td[(r)]TJ +ET +1 0 0 1 156.1106 505.0773 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.4371 0.1992 l +S +Q +1 0 0 1 -156.1106 -505.0773 cm +BT +/F29 9.9626 Tf 159.5478 505.0773 Td[(name)]TJ +ET +1 0 0 1 186.2807 505.0773 cm +0 g 0 G +1 0 0 1 -186.2807 -505.0773 cm +BT +/F8 9.9626 Tf 191.262 505.0773 Td[(th)1(e)-334(s)-1(ou)1(tin)1(e)-334(where)-334(th)1(e)-334(e)-1(r)1(ror)-333(has)-333(b)-28(ee)-1(n)-332(c)-1(au)1(gh)28(t.)]TJ -15.6505 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(ing.)]TJ +ET +1 0 0 1 145.7235 437.3313 cm +0 g 0 G +1 0 0 1 -145.7235 -437.3313 cm +BT +/F29 9.9626 Tf 150.7049 437.3313 Td[(i)]TJ +ET +1 0 0 1 154.5747 437.3313 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.4371 0.1992 l +S +Q +1 0 0 1 -154.5747 -437.3313 cm +BT +/F29 9.9626 Tf 158.0119 437.3313 Td[(err)]TJ +ET +1 0 0 1 172.6998 437.3313 cm +0 g 0 G +1 0 0 1 -172.6998 -437.3313 cm +BT +/F8 9.9626 Tf 177.6811 437.3313 Td[(add)1(ion)1(al)-334(i)1(nf)1(o)-334(f)1(or)-333(e)-1(r)1(ror)-333(c)-1(o)-27(de)]TJ -2.0696 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(arra)28(y)]TJ +ET +1 0 0 1 145.7235 369.5854 cm +0 g 0 G +1 0 0 1 -145.7235 -369.5854 cm +BT +/F29 9.9626 Tf 150.7049 369.5854 Td[(a)]TJ +ET +1 0 0 1 156.9616 369.5854 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.4371 0.1992 l +S +Q +1 0 0 1 -156.9616 -369.5854 cm +BT +/F29 9.9626 Tf 160.3987 369.5854 Td[(err)]TJ +ET +1 0 0 1 175.0866 369.5854 cm +0 g 0 G +1 0 0 1 -175.0866 -369.5854 cm +BT +/F8 9.9626 Tf 180.068 369.5854 Td[(add)1(ion)1(al)-334(i)1(nf)1(o)-334(f)1(or)-333(e)-1(r)1(ror)-333(c)-1(o)-27(de)]TJ -4.4565 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(ing.)]TJ +ET +1 0 0 1 150.7049 90.4377 cm +0 g 0 G +1 0 0 1 -150.7049 -90.4377 cm +BT +/F8 9.9626 Tf 317.5791 90.4377 Td[(94)]TJ +ET +1 0 0 1 494.4159 90.4377 cm +0 g 0 G +endstream +endobj +1291 0 obj << +/Type /Page +/Contents 1292 0 R +/Resources 1290 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1289 0 R +>> endobj +1293 0 obj << +/D [1291 0 R /XYZ 150.7049 740.9981 null] +>> endobj +318 0 obj << +/D [1291 0 R /XYZ 150.7049 644.4574 null] +>> endobj +1294 0 obj << +/D [1291 0 R /XYZ 150.7049 613.8693 null] +>> endobj +1290 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1297 0 obj << +/Length 1793 +>> +stream +1 0 0 1 99.8954 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -348.6924 -60.7721 cm +0 g 0 G +0 g 0 G +1 0 0 1 -94.9141 -680.226 cm +BT +/F18 14.3462 Tf 99.8954 680.226 Td[(psb)]TJ +ET +1 0 0 1 125.1626 680.226 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -125.1626 -680.226 cm +BT +/F18 14.3462 Tf 130.0045 680.226 Td[(er)-1(ro)-1(r|Pri)-1(n)31(ts)-375(the)-376(err)-1(or)-376(stac)31(k)-375(con)31(te)-1(n)32(t)-376(and)]TJ -30.1091 -17.9328 Td[(ab)-31(o)-1(rt)-1(s)-374(e)-1(x)1(e)-1(cuti)-1(on)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 122.8062 -21.8209 Td[(call)-333(psb)]TJ +ET +1 0 0 1 256.5635 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -256.5635 -604.7037 cm +BT +/F8 9.9626 Tf 259.5524 604.7037 Td[(error)-333(\050)]TJ/F19 9.9626 Tf 28.3105 0 Td[(ic)51(ontxt)]TJ/F8 9.9626 Tf 29.063 0 Td[(\051)]TJ +ET +1 0 0 1 94.9141 580.7934 cm +0 g 0 G +1 0 0 1 -94.9141 -580.7934 cm +BT +/F29 9.9626 Tf 99.8954 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 147.4806 580.7934 cm +0 g 0 G +1 0 0 1 -52.5665 -19.9253 cm +0 g 0 G +1 0 0 1 -94.9141 -560.8681 cm +BT +/F29 9.9626 Tf 99.8954 560.8681 Td[(ic)-1(on)33(t)-1(xt)]TJ +ET +1 0 0 1 134.9028 560.8681 cm +0 g 0 G +1 0 0 1 -134.9028 -560.8681 cm +BT +/F8 9.9626 Tf 139.8841 560.8681 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text.)]TJ -15.0821 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +ET +1 0 0 1 99.8954 90.4377 cm +0 g 0 G +1 0 0 1 -99.8954 -90.4377 cm +BT +/F8 9.9626 Tf 266.7696 90.4377 Td[(95)]TJ +ET +1 0 0 1 443.6065 90.4377 cm +0 g 0 G +endstream +endobj +1296 0 obj << +/Type /Page +/Contents 1297 0 R +/Resources 1295 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1289 0 R +>> endobj +1298 0 obj << +/D [1296 0 R /XYZ 99.8954 740.9981 null] +>> endobj +322 0 obj << +/D [1296 0 R /XYZ 99.8954 644.4574 null] +>> endobj +1299 0 obj << +/D [1296 0 R /XYZ 99.8954 613.8693 null] +>> endobj +1295 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1302 0 obj << +/Length 2098 +>> +stream +1 0 0 1 150.7049 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -348.6924 -60.7721 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7236 -680.226 cm +BT +/F18 14.3462 Tf 150.7049 680.226 Td[(psb)]TJ +ET +1 0 0 1 175.972 680.226 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -175.972 -680.226 cm +BT +/F18 14.3462 Tf 180.8139 680.226 Td[(set)]TJ +ET +1 0 0 1 201.7889 680.226 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -201.7889 -680.226 cm +BT +/F18 14.3462 Tf 206.6308 680.226 Td[(er)-1(rv)31(er)-1(b)-31(osi)-1(t)31(y|Sets)-375(t)-1(he)-375(v)32(e)-1(rb)-32(osit)30(y)-374(o)-1(f)-375(err)-1(or)]TJ -55.9259 -17.9328 Td[(me)-1(ss)1(ag)-1(es.)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 111.7503 -21.8209 Td[(call)-333(psb)]TJ +ET +1 0 0 1 296.3171 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -296.3171 -604.7037 cm +BT +/F8 9.9626 Tf 299.3059 604.7037 Td[(se)-1(t)]TJ +ET +1 0 0 1 312.1356 604.7037 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -312.1356 -604.7037 cm +BT +/F8 9.9626 Tf 315.1244 604.7037 Td[(errv)28(erb)-27(os)-1(i)1(t)27(y)-333(\050)]TJ/F19 9.9626 Tf 59.0841 0 Td[(v)]TJ/F8 9.9626 Tf 4.5828 0 Td[(\051)]TJ +ET +1 0 0 1 145.7235 580.7934 cm 0 g 0 G -1 0 0 1 -202.2637 -504.9804 cm +1 0 0 1 -145.7235 -580.7934 cm BT -/F8 9.9626 Tf 205.7804 504.9804 Td[(sho)28(ws)-354(th)1(e)-354(la)28(y)28(ou)1(t)-353(of)-353(a)-353(generic)]TJ/F32 9.9626 Tf 130.5512 0 Td[(psb_foo)]TJ/F8 9.9626 Tf 40.1291 0 Td[(rou)1(tin)1(e)-354(with)-352(res)-1(p)-27(e)-1(ct)-353(to)-353(th)1(e)]TJ -225.7558 -11.9552 Td[(PS)1(BLAS-2.0)-326(error)-325(han)1(dlin)1(g)-326(p)-27(olicy)83(.)-441(I)-1(t)-325(is)-326(p)-28(oss)-1(i)1(ble)-326(to)-326(se)-1(e)-326(h)1(o)27(w,)-327(whenev)28(e)-1(r)-325(an)-326(err)1(or)]TJ 0 -11.9551 Td[(condi)1(tion)-378(is)-379(dete)-1(cted,)-390(th)1(e)]TJ/F32 9.9626 Tf 115.439 0 Td[(info)]TJ/F8 9.9626 Tf 24.694 0 Td[(v)56(ariab)1(le)-379(is)-379(s)-1(et)-379(t)1(o)-379(the)-379(corr)1(e)-1(sp)-28(on)1(din)1(g)-379(error)-378(co)-28(de)]TJ -140.133 -11.9552 Td[(whic)28(h)-376(i)1(s)-1(,)-386(then,)-386(pu)1(s)-1(h)1(e)-1(d)-375(on)-376(top)-375(of)-376(t)1(he)-376(s)-1(tac)28(k)-376(b)28(y)-376(means)-376(of)-376(th)1(e)]TJ/F32 9.9626 Tf 264.7022 0 Td[(psb_errpush)]TJ/F8 9.9626 Tf 57.5338 0 Td[(.)-572(An)]TJ -322.236 -11.9552 Td[(error)-331(cond)1(ition)-330(ma)27(y)-331(b)-27(e)-331(dir)1(e)-1(ctly)-331(d)1(e)-1(tec)-1(t)1(e)-1(d)-331(i)1(nside)-331(a)-331(rou)1(tine)-331(or)-331(in)1(dir)1(e)-1(ctly)-331(c)28(hec)27(kin)1(g)]TJ 0 -11.9551 Td[(th)1(e)-462(e)-1(rr)1(or)-461(c)-1(o)-28(d)1(e)-462(retur)1(ned)-461(re)-1(t)1(urn)1(e)-1(d)-461(b)29(y)-462(a)-461(c)-1(all)1(e)-1(d)-461(r)1(outin)1(e)-1(.)-828(Whenev)28(e)-1(r)-461(an)-461(error)-461(is)]TJ 0 -11.9552 Td[(encoun)28(tered,)-459(af)1(ter)-434(it)-433(has)-434(b)-28(een)-434(p)1(ushed)-434(on)-433(s)-1(t)1(ac)27(k,)-459(t)1(he)-434(progr)1(am)-434(e)-1(xecution)-433(s)-1(k)1(ips)]TJ 0 -11.9552 Td[(to)-356(a)-355(p)-28(oin)29(t)-356(where)-356(the)-356(err)1(o)-1(r)-355(cond)1(ition)-355(is)-356(han)1(dled;)-366(the)-356(e)-1(r)1(ror)-355(c)-1(on)1(diti)1(on)-356(i)1(s)-357(h)1(and)1(le)-1(d)]TJ 0 -11.9551 Td[(either)-392(b)29(y)-392(retur)1(nin)1(g)-392(c)-1(on)29(trol)-392(to)-391(the)-392(c)-1(al)1(le)-1(r)-391(rou)1(tine)-392(or)-392(b)29(y)-392(c)-1(al)1(lin)1(g)-392(the)]TJ/F32 9.9626 Tf 291.4077 0 Td[(psb\134_error)]TJ/F8 9.9626 Tf -291.4077 -11.9552 Td[(rou)1(tin)1(e)-479(whic)28(h)-478(pr)1(in)28(ts)-479(t)1(he)-479(con)28(ten)28(t)-478(of)-478(th)1(e)-479(e)-1(r)1(ror)-478(stac)27(k)-478(an)1(d)-478(ab)-27(orts)-479(th)1(e)-479(p)1(rogram)]TJ 0 -11.9552 Td[(exe)-1(cuti)1(on.)]TJ 14.944 -11.9551 Td[(Figu)1(re)]TJ +/F29 9.9626 Tf 150.7049 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ ET -1 0 0 1 197.7532 373.4736 cm -0 0 1 rg 0 0 1 RG -1 0 0 1 -197.7532 -373.4736 cm +1 0 0 1 198.2901 580.7934 cm +0 g 0 G +1 0 0 1 -52.5665 -19.9253 cm +0 g 0 G +1 0 0 1 -145.7236 -560.8681 cm BT -/F8 9.9626 Tf 197.7532 373.4736 Td[(9)]TJ +/F29 9.9626 Tf 150.7049 560.8681 Td[(v)]TJ ET -1 0 0 1 202.7345 373.4736 cm +1 0 0 1 156.7516 560.8681 cm 0 g 0 G -1 0 0 1 -202.7345 -373.4736 cm +1 0 0 1 -156.7516 -560.8681 cm BT -/F8 9.9626 Tf 206.722 373.4736 Td[(rep)-27(orts)-401(a)-400(sam)-1(p)1(le)-401(error)-399(m)-1(es)-1(sage)-401(generated)-400(b)28(y)-400(th)1(e)-401(PS)1(B)-1(LAS)1(-2.0)-400(li-)]TJ -56.0171 -11.9552 Td[(br)1(ary)84(.)-555(T)-1(h)1(is)-371(error)-370(h)1(as)-371(b)-27(e)-1(en)-370(generated)-370(b)28(y)-370(the)-370(fact)-371(th)1(at)-370(the)-370(use)-1(r)-370(h)1(as)-371(c)27(h)1(os)-1(en)-370(the)]TJ 0 -11.9552 Td[(in)28(v)56(ali)1(d)-367(\134F)28(OO")-367(s)-1(tor)1(a)-1(ge)-367(format)-367(to)-368(repr)1(e)-1(se)-1(n)29(t)-368(th)1(e)-368(s)-1(p)1(arse)-368(m)-1(at)1(rix.)-546(F)83(rom)-367(this)-368(err)1(or)]TJ 0 -11.9551 Td[(me)-1(ss)-1(age)-248(it)-247(is)-248(p)-28(oss)-1(i)1(ble)-248(to)-248(se)-1(e)-248(th)1(at)-248(the)-248(error)-247(has)-248(b)-27(e)-1(en)-248(d)1(e)-1(t)1(e)-1(cte)-1(d)-247(in)1(s)-1(id)1(e)-248(the)]TJ/F32 9.9626 Tf 301.8683 0 Td[(psb_cest)]TJ/F8 9.9626 Tf -301.8683 -11.9552 Td[(subr)1(outi)1(ne)-334(called)-333(b)28(y)]TJ/F32 9.9626 Tf 91.4074 0 Td[(psb_spasb)]TJ/F8 9.9626 Tf 50.3939 0 Td[(...)-444(b)28(y)-333(p)1(ro)-28(ce)-1(ss)-334(0)-333(\050i.e.)-444(the)-333(ro)-28(ot)-333(pr)1(o)-28(c)-1(es)-1(s\051.)]TJ +/F8 9.9626 Tf 161.7329 560.8681 Td[(th)1(e)-334(v)28(e)-1(r)1(b)-28(osit)28(y)-333(lev)28(e)-1(l)]TJ 13.8786 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(global)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ ET 1 0 0 1 150.7049 90.4377 cm 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 317.5791 90.4377 Td[(90)]TJ +/F8 9.9626 Tf 317.5791 90.4377 Td[(96)]TJ ET 1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1220 0 obj << +1301 0 obj << /Type /Page -/Contents 1221 0 R -/Resources 1219 0 R +/Contents 1302 0 R +/Resources 1300 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1213 0 R -/Annots [ 1223 0 R 1224 0 R ] ->> endobj -1223 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [196.2861 501.7702 203.26 512.8952] -/Subtype /Link -/A << /S /GoTo /D (figure.8) >> +/Parent 1289 0 R >> endobj -1224 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [196.7569 370.5401 203.7308 381.3883] -/Subtype /Link -/A << /S /GoTo /D (figure.9) >> +1303 0 obj << +/D [1301 0 R /XYZ 150.7049 740.9981 null] >> endobj -1222 0 obj << -/D [1220 0 R /XYZ 150.7049 740.9981 null] +326 0 obj << +/D [1301 0 R /XYZ 150.7049 641.6678 null] >> endobj -306 0 obj << -/D [1220 0 R /XYZ 150.7049 716.0915 null] +1304 0 obj << +/D [1301 0 R /XYZ 150.7049 613.8693 null] >> endobj -1219 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F32 510 0 R >> +1300 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1229 0 obj << -/Length 4627 +1307 0 obj << +/Length 2439 >> stream 1 0 0 1 99.8954 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -343.7111 -24.9066 cm -0 g 0 G -1 0 0 1 166.8742 -9.9626 cm +1 0 0 1 -348.6924 -60.7721 cm 0 g 0 G 0 g 0 G -1 0 0 1 -166.8742 -1.3948 cm +1 0 0 1 -94.9141 -680.226 cm +BT +/F18 14.3462 Tf 99.8954 680.226 Td[(psb)]TJ +ET +1 0 0 1 125.1626 680.226 cm q []0 d 0 J 0.3985 w 0 0.1992 m -346.5826 0.1992 l +4.8419 0.1992 l S Q -1 0 0 1 0 -276.2142 cm +1 0 0 1 -125.1626 -680.226 cm +BT +/F18 14.3462 Tf 130.0045 680.226 Td[(set)]TJ +ET +1 0 0 1 150.9794 680.226 cm q []0 d 0 J 0.3985 w -0.1992 0 m -0.1992 276.2142 l +0 0.1992 m +4.8419 0.1992 l S Q -1 0 0 1 3.3873 262.0174 cm -0 g 0 G -0 g 0 G -1 0 0 1 -103.2827 -690.5373 cm +1 0 0 1 -150.9794 -680.226 cm BT -/F48 8.9664 Tf 108.264 690.5373 Td[(subroutine)-525(psb_foo\050some)-525(args,)-525(info\051)]TJ 14.1219 -10.9589 Td[(...)]TJ 0 -10.9589 Td[(if\050error)-525(detected\051)-525(then)]TJ 14.1219 -10.9589 Td[(info=errcode1)]TJ 0 -10.9589 Td[(call)-525(psb_errpush\050'psb_foo',)-525(errcode1\051)]TJ 0 -10.9589 Td[(goto)-525(9999)]TJ -14.1219 -10.9589 Td[(end)-525(if)]TJ 0 -10.9589 Td[(...)]TJ 0 -10.9589 Td[(call)-525(psb_bar\050some)-525(args,)-525(info\051)]TJ 0 -10.9589 Td[(if\050info)-525(.ne.)-525(zero\051)-525(then)]TJ 14.1219 -10.9589 Td[(info=errcode2)]TJ 0 -10.9589 Td[(call)-525(psb_errpush\050'psb_foo',)-525(errcode2\051)]TJ 0 -10.9589 Td[(goto)-525(9999)]TJ -14.1219 -10.9589 Td[(end)-525(if)]TJ 0 -10.9589 Td[(...)]TJ -14.1219 -10.9589 Td[(9999)-525(continue)]TJ 14.1219 -10.9589 Td[(if)-525(\050err_act)-525(.eq.)-525(act_abort\051)-525(then)]TJ 9.4146 -10.9589 Td[(call)-525(psb_error\050icontxt\051)]TJ 0 -10.9589 Td[(return)]TJ -9.4146 -10.9589 Td[(else)]TJ 9.4146 -10.9589 Td[(return)]TJ -9.4146 -10.9589 Td[(end)-525(if)]TJ -14.1219 -21.9178 Td[(end)-525(subroutine)-525(psb_foo)]TJ +/F18 14.3462 Tf 155.8213 680.226 Td[(er)-1(ract)-1(io)-1(n|Set)-375(t)-1(he)-375(t)30(y)1(p)-32(e)-375(of)-375(acti)-1(on)-375(t)-1(o)-375(b)-32(e)]TJ -55.9259 -17.9328 Td[(tak)31(en)-375(up)-31(o)-1(n)-375(er)-1(ro)-1(r)-375(co)-1(ndit)-1(io)-1(n.)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 105.769 -21.8209 Td[(call)-333(psb)]TJ ET -1 0 0 1 446.0795 428.5199 cm +1 0 0 1 239.5263 604.7037 cm q []0 d 0 J 0.3985 w -0.1992 0 m -0.1992 276.2142 l +0 0.1992 m +2.9888 0.1992 l S Q -1 0 0 1 -346.1841 -0.3985 cm +1 0 0 1 -239.5263 -604.7037 cm +BT +/F8 9.9626 Tf 242.5151 604.7037 Td[(se)-1(t)]TJ +ET +1 0 0 1 255.3448 604.7037 cm q []0 d 0 J 0.3985 w 0 0.1992 m -346.5826 0.1992 l +2.9888 0.1992 l S Q -1 0 0 1 -99.8954 -428.1214 cm +1 0 0 1 -255.3448 -604.7037 cm BT -/F8 9.9626 Tf 99.8954 400.2814 Td[(Figu)1(re)-330(8:)-442(The)-330(l)1(a)27(y)28(ou)1(t)-330(of)-329(a)-329(generic)]TJ/F32 9.9626 Tf 147.4447 0 Td[(psb)]TJ +/F8 9.9626 Tf 258.3336 604.7037 Td[(erraction)-333(\050)]TJ/F19 9.9626 Tf 45.9943 0 Td[(err)]TJ ET -1 0 0 1 263.6588 400.2814 cm +1 0 0 1 317.9234 604.7037 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.1382 0.1992 l +3.0552 0.1992 l S Q -1 0 0 1 -263.6588 -400.2814 cm +1 0 0 1 -317.9234 -604.7037 cm BT -/F32 9.9626 Tf 266.797 400.2814 Td[(foo)]TJ/F8 9.9626 Tf 18.9732 0 Td[(rou)1(tin)1(e)-330(w)-1(i)1(th)-329(res)-1(p)-27(e)-1(ct)-329(to)-330(P)1(SBLAS-2.0)]TJ -185.8748 -11.9552 Td[(error)-333(h)1(and)1(ling)-333(p)-27(olicy)83(.)]TJ +/F19 9.9626 Tf 320.9786 604.7037 Td[(act)]TJ/F8 9.9626 Tf 12.9845 0 Td[(\051)]TJ ET -1 0 0 1 99.8954 386.389 cm -0 g 0 G -1 0 0 1 0 -9.9626 cm +1 0 0 1 94.9141 580.7934 cm 0 g 0 G -1 0 0 1 166.8742 -9.9627 cm +1 0 0 1 -94.9141 -580.7934 cm +BT +/F29 9.9626 Tf 99.8954 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 147.4806 580.7934 cm 0 g 0 G +1 0 0 1 -52.5665 -19.9253 cm 0 g 0 G -1 0 0 1 -166.8742 -1.3947 cm +1 0 0 1 -94.9141 -560.8681 cm +BT +/F29 9.9626 Tf 99.8954 560.8681 Td[(err)]TJ +ET +1 0 0 1 115.2707 560.8681 cm q []0 d 0 J 0.3985 w 0 0.1992 m -346.5826 0.1992 l -S -Q -1 0 0 1 0 -177.7121 cm -q -[]0 d -0 J -0.3985 w -0.1992 0 m -0.1992 177.712 l +3.4371 0.1992 l S Q -1 0 0 1 3.3873 165.6012 cm +1 0 0 1 -115.2707 -560.8681 cm +BT +/F29 9.9626 Tf 118.7078 560.8681 Td[(act)]TJ +ET +1 0 0 1 133.8246 560.8681 cm 0 g 0 G +1 0 0 1 -133.8246 -560.8681 cm +BT +/F8 9.9626 Tf 138.806 560.8681 Td[(th)1(e)-334(t)28(yp)-27(e)-334(of)-333(ac)-1(t)1(ion.)]TJ -14.004 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6113 0 Td[(required)]TJ/F8 9.9626 Tf -29.6113 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +ET +1 0 0 1 99.8954 90.4377 cm 0 g 0 G -1 0 0 1 -103.2827 -352.9581 cm +1 0 0 1 -99.8954 -90.4377 cm BT -/F32 9.9626 Tf 108.264 352.9581 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\0504010\051)-525(in)-525(subroutine:)-525(df_sample)]TJ 0 -11.9551 Td[(Error)-525(from)-525(call)-525(to)-525(subroutine)-525(mat)-525(dist)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\0504010\051)-525(in)-525(subroutine:)-525(mat_distv)]TJ 0 -11.9551 Td[(Error)-525(from)-525(call)-525(to)-525(subroutine)-525(psb_spasb)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\0504010\051)-525(in)-525(subroutine:)-525(psb_spasb)]TJ 0 -11.9551 Td[(Error)-525(from)-525(call)-525(to)-525(subroutine)-525(psb_cest)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Process:)-525(0.)-1050(PSBLAS)-525(Error)-525(\050136\051)-525(in)-525(subroutine:)-525(psb_cest)]TJ 0 -11.9551 Td[(Format)-525(FOO)-525(is)-525(unknown)]TJ 0 -11.9552 Td[(==========================================================)]TJ 0 -11.9552 Td[(Aborting...)]TJ +/F8 9.9626 Tf 266.7696 90.4377 Td[(97)]TJ ET -1 0 0 1 446.0795 187.3569 cm -q -[]0 d -0 J -0.3985 w -0.1992 0 m -0.1992 177.712 l -S -Q -1 0 0 1 -346.1841 -0.3985 cm +1 0 0 1 443.6065 90.4377 cm +0 g 0 G +endstream +endobj +1306 0 obj << +/Type /Page +/Contents 1307 0 R +/Resources 1305 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1289 0 R +>> endobj +1308 0 obj << +/D [1306 0 R /XYZ 99.8954 740.9981 null] +>> endobj +330 0 obj << +/D [1306 0 R /XYZ 99.8954 641.6678 null] +>> endobj +1309 0 obj << +/D [1306 0 R /XYZ 99.8954 613.8693 null] +>> endobj +1305 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1312 0 obj << +/Length 2336 +>> +stream +1 0 0 1 150.7049 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -348.6924 -60.7721 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7236 -680.226 cm +BT +/F18 14.3462 Tf 150.7049 680.226 Td[(psb)]TJ +ET +1 0 0 1 175.972 680.226 cm q []0 d 0 J 0.3985 w 0 0.1992 m -346.5826 0.1992 l +4.8419 0.1992 l S Q -1 0 0 1 -99.8954 -186.9584 cm +1 0 0 1 -175.972 -680.226 cm BT -/F8 9.9626 Tf 99.8954 159.1184 Td[(Figu)1(re)-422(9:)-622(A)-422(sam)-1(p)1(le)-422(PSBLAS)1(-)-1(2.0)-422(err)1(or)-422(me)-1(ss)-1(age.)-710(Pro)-28(ces)-1(s)-422(0)-422(dete)-1(cted)-422(an)-422(err)1(or)]TJ 0 -11.9552 Td[(condi)1(tion)-333(in)1(s)-1(i)1(de)-334(th)1(e)-334(psb)]TJ +/F18 14.3462 Tf 180.8139 680.226 Td[(er)-1(rco)-1(mm)-1(|Er)-1(ro)-1(r)-375(co)-1(mm)31(uni)-1(cati)-1(on)-375(r)-1(out)-1(ine)]TJ -30.109 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 104.439 -21.8209 Td[(call)-333(psb)]TJ ET -1 0 0 1 204.6583 147.1632 cm +1 0 0 1 289.0058 622.6364 cm q []0 d 0 J @@ -24800,58 +26214,127 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -204.6583 -147.1632 cm +1 0 0 1 -289.0058 -622.6364 cm BT -/F8 9.9626 Tf 207.6471 147.1632 Td[(ce)-1(st)-334(sub)1(rou)1(tine)]TJ +/F8 9.9626 Tf 291.9947 622.6364 Td[(errcom)-1(m)-333(\050)]TJ/F19 9.9626 Tf 45.4407 0 Td[(ic)51(ontxt,)-358(er)1(r)]TJ/F8 9.9626 Tf 48.6672 0 Td[(\051)]TJ ET -1 0 0 1 99.8954 145.226 cm +1 0 0 1 145.7235 598.7261 cm 0 g 0 G -1 0 0 1 0 -54.7883 cm +1 0 0 1 -145.7235 -598.7261 cm +BT +/F29 9.9626 Tf 150.7049 598.7261 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 198.2901 598.7261 cm +0 g 0 G +1 0 0 1 -52.5665 -19.9253 cm +0 g 0 G +1 0 0 1 -145.7236 -578.8008 cm +BT +/F29 9.9626 Tf 150.7049 578.8008 Td[(ic)-1(on)33(t)-1(xt)]TJ +ET +1 0 0 1 185.7123 578.8008 cm +0 g 0 G +1 0 0 1 -185.7123 -578.8008 cm +BT +/F8 9.9626 Tf 190.6936 578.8008 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text.)]TJ -15.0821 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(global)]TJ/F8 9.9626 Tf -32.3786 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +ET +1 0 0 1 145.7235 523.01 cm +0 g 0 G +1 0 0 1 -145.7235 -523.01 cm +BT +/F29 9.9626 Tf 150.7049 523.01 Td[(err)]TJ +ET +1 0 0 1 165.3928 523.01 cm +0 g 0 G +1 0 0 1 -165.3928 -523.01 cm +BT +/F8 9.9626 Tf 170.3741 523.01 Td[(th)1(e)-334(e)-1(r)1(ror)-333(co)-28(de)-334(t)1(o)-334(b)-27(e)-334(com)-1(m)28(un)1(ic)-1(ated)]TJ 5.2374 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(global)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +ET +1 0 0 1 150.7049 90.4377 cm +0 g 0 G +1 0 0 1 -150.7049 -90.4377 cm +BT +/F8 9.9626 Tf 317.5791 90.4377 Td[(98)]TJ +ET +1 0 0 1 494.4159 90.4377 cm +0 g 0 G +endstream +endobj +1311 0 obj << +/Type /Page +/Contents 1312 0 R +/Resources 1310 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 1289 0 R +>> endobj +1313 0 obj << +/D [1311 0 R /XYZ 150.7049 740.9981 null] +>> endobj +334 0 obj << +/D [1311 0 R /XYZ 150.7049 659.6006 null] +>> endobj +1314 0 obj << +/D [1311 0 R /XYZ 150.7049 631.8021 null] +>> endobj +1310 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1317 0 obj << +/Length 322 +>> +stream +1 0 0 1 99.8954 740.9981 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +1 0 0 1 -443.6065 -740.9981 cm +BT +/F18 14.3462 Tf 99.8954 706.1289 Td[(9)-1125(Ut)-1(il)-1(it)-1(ies)]TJ +ET +1 0 0 1 99.8954 90.4377 cm 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 266.7696 90.4377 Td[(91)]TJ +/F8 9.9626 Tf 266.7696 90.4377 Td[(99)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1228 0 obj << +1316 0 obj << /Type /Page -/Contents 1229 0 R -/Resources 1227 0 R +/Contents 1317 0 R +/Resources 1315 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1213 0 R ->> endobj -1230 0 obj << -/D [1228 0 R /XYZ 99.8954 740.9981 null] +/Parent 1319 0 R >> endobj -1225 0 obj << -/D [1228 0 R /XYZ 143.4516 412.2365 null] +1318 0 obj << +/D [1316 0 R /XYZ 99.8954 740.9981 null] >> endobj -1226 0 obj << -/D [1228 0 R /XYZ 146.1606 171.0735 null] +338 0 obj << +/D [1316 0 R /XYZ 99.8954 716.0915 null] >> endobj -1227 0 obj << -/Font << /F48 644 0 R /F8 378 0 R /F32 510 0 R >> +1315 0 obj << +/Font << /F18 401 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1233 0 obj << -/Length 4937 +1322 0 obj << +/Length 7371 >> stream 1 0 0 1 150.7049 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -348.6924 -60.7721 cm +1 0 0 1 -348.6924 -61.0244 cm 0 g 0 G 0 g 0 G -1 0 0 1 -145.7236 -680.226 cm +1 0 0 1 -145.7236 -679.9737 cm BT -/F18 14.3462 Tf 150.7049 680.226 Td[(psb)]TJ +/F18 14.3462 Tf 150.7049 679.9737 Td[(PSB)]TJ ET -1 0 0 1 175.972 680.226 cm +1 0 0 1 183.1385 679.9737 cm q []0 d 0 J @@ -24860,320 +26343,460 @@ q 4.8419 0.1992 l S Q -1 0 0 1 -175.972 -680.226 cm +1 0 0 1 -183.1385 -679.9737 cm BT -/F18 14.3462 Tf 180.8139 680.226 Td[(er)-1(rpush|Pus)1(he)-1(s)-374(an)-375(e)-1(rr)-1(or)-376(co)-31(de)-376(on)31(to)-376(the)]TJ -30.109 -17.9328 Td[(er)-1(ro)-1(r)-375(st)-1(a)1(c)31(k)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 74.5967 -21.8209 Td[(call)-333(psb)]TJ +/F18 14.3462 Tf 187.9804 679.9737 Td[(HB)1(IO)]TJ ET -1 0 0 1 259.1635 604.7037 cm +1 0 0 1 231.1737 679.9737 cm q []0 d 0 J 0.3985 w 0 0.1992 m -2.9888 0.1992 l +4.8419 0.1992 l S Q -1 0 0 1 -259.1635 -604.7037 cm +1 0 0 1 -231.1737 -679.9737 cm BT -/F8 9.9626 Tf 262.1524 604.7037 Td[(errp)1(ush)-333(\050)]TJ/F19 9.9626 Tf 39.9613 0 Td[(err)]TJ +/F18 14.3462 Tf 236.0155 679.9737 Td[(MOD|Input)-1(/Out)-1(put)-375(i)-1(n)]TJ -85.3106 -17.9328 Td[(Harw)31(e)-1(ll)-1(-B)1(o)-32(ei)-1(ng)-375(fo)-1(rm)-1(a)1(t)]TJ ET -1 0 0 1 315.7092 604.7037 cm -q -[]0 d -0 J -0.3985 w -0 0.1992 m -3.0552 0.1992 l -S -Q -1 0 0 1 -315.7092 -604.7037 cm +1 0 0 1 145.7235 608.0329 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7235 -608.0329 cm BT -/F19 9.9626 Tf 318.7644 604.7037 Td[(c,)-357(r)]TJ +/F18 14.3462 Tf 150.7049 608.0329 Td[(h)31(b)]TJ ET -1 0 0 1 334.7787 604.7037 cm +1 0 0 1 169.1576 608.0329 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.0552 0.1992 l +4.8419 0.1992 l S Q -1 0 0 1 -334.7787 -604.7037 cm +1 0 0 1 -169.1576 -608.0329 cm BT -/F19 9.9626 Tf 337.8339 604.7037 Td[(name,)-358(i)]TJ +/F18 14.3462 Tf 173.9994 608.0329 Td[(re)-1(ad|Read)-375(a)-375(spa)1(r)-1(se)-375(m)-1(a)1(t)-1(ri)-1(x)-375(f)1(r)-1(om)-376(a)-375(\014le)]TJ -23.2945 -36.0122 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 71.1337 -21.8753 Td[(call)-333(h)28(b)]TJ ET -1 0 0 1 371.5428 604.7037 cm +1 0 0 1 251.494 550.1454 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.0552 0.1992 l +2.9888 0.1992 l S Q -1 0 0 1 -371.5428 -604.7037 cm +1 0 0 1 -251.494 -550.1454 cm BT -/F19 9.9626 Tf 374.598 604.7037 Td[(err)1(,)-358(a)]TJ +/F8 9.9626 Tf 254.4829 550.1454 Td[(read)-333(\050)]TJ/F19 9.9626 Tf 26.0412 0 Td[(a,)-358(i)1(r)51(et,)-357(iunit,)-357(\014)-1(l)1(ename,)-358(b,)-357(mtitle)]TJ/F8 9.9626 Tf 138.8838 0 Td[(\051)]TJ ET -1 0 0 1 399.9051 604.7037 cm -q -[]0 d -0 J -0.3985 w -0 0.1992 m -3.0552 0.1992 l -S -Q -1 0 0 1 -399.9051 -604.7037 cm +1 0 0 1 145.7235 526.172 cm +0 g 0 G +1 0 0 1 -145.7235 -526.172 cm BT -/F19 9.9626 Tf 402.9603 604.7037 Td[(err)]TJ/F8 9.9626 Tf 12.9845 0 Td[(\051)]TJ +/F29 9.9626 Tf 150.7049 526.172 Td[(On)-383(En)32(tr)1(y)]TJ ET -1 0 0 1 145.7235 580.7934 cm +1 0 0 1 202.109 526.172 cm 0 g 0 G -1 0 0 1 -145.7235 -580.7934 cm +1 0 0 1 -56.3855 -20.1776 cm +0 g 0 G +1 0 0 1 -145.7235 -505.9944 cm BT -/F29 9.9626 Tf 150.7049 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ +/F29 9.9626 Tf 150.7049 505.9944 Td[(\014lenam)-1(e)]TJ ET -1 0 0 1 198.2901 580.7934 cm +1 0 0 1 192.2364 505.9944 cm 0 g 0 G -1 0 0 1 -52.5665 -19.9253 cm +1 0 0 1 -192.2364 -505.9944 cm +BT +/F8 9.9626 Tf 197.2177 505.9944 Td[(The)-334(n)1(ame)-334(of)-333(the)-333(\014le)-333(to)-334(b)-27(e)-334(r)1(e)-1(ad.)]TJ -21.6062 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5767 0 Td[(.)]TJ -65.7601 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-434(as)-1(:)-648(a)-435(c)27(h)1(aracte)-1(r)-434(v)55(ar)1(iabl)1(e)-436(co)-1(n)29(taini)1(ng)-435(a)-435(v)56(alid)-435(\014)1(le)-436(n)1(am)-1(e,)-460(or)]TJ/F32 9.9626 Tf 297.9153 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-460(in)]TJ -303.1456 -11.9552 Td[(whic)28(h)-302(cas)-1(e)-303(th)1(e)-303(d)1(e)-1(f)1(ault)-302(in)1(pu)1(t)-302(uni)1(t)-302(5)-303(\050i)1(.e)-1(.)-433(s)-1(tan)1(dard)-301(inp)1(ut)-302(in)-302(Un)1(ix)-302(j)1(a)-1(r)1(gon\051)-302(is)]TJ 0 -11.9552 Td[(used.)-444(De)-1(f)1(aul)1(t:)]TJ/F32 9.9626 Tf 66.058 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ +ET +1 0 0 1 145.7235 437.9961 cm 0 g 0 G -1 0 0 1 -145.7236 -560.8681 cm +1 0 0 1 -145.7235 -437.9961 cm BT -/F29 9.9626 Tf 150.7049 560.8681 Td[(err)]TJ +/F29 9.9626 Tf 150.7049 437.9961 Td[(iuni)-1(t)]TJ ET -1 0 0 1 166.0802 560.8681 cm -q -[]0 d -0 J -0.3985 w -0 0.1992 m -3.4371 0.1992 l -S -Q -1 0 0 1 -166.0802 -560.8681 cm +1 0 0 1 174.2553 437.9961 cm +0 g 0 G +1 0 0 1 -174.2553 -437.9961 cm BT -/F29 9.9626 Tf 169.5173 560.8681 Td[(c)]TJ +/F8 9.9626 Tf 179.2366 437.9961 Td[(The)-334(F)84(ortr)1(an)-333(\014l)1(e)-334(un)1(it)-333(n)28(um)28(b)-28(er.)]TJ -3.6251 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5767 0 Td[(.)]TJ -65.7601 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue.)-445(O)1(nly)-333(me)-1(an)1(ingf)1(ul)-333(if)-332(\014lename)-334(is)-333(not)]TJ/F32 9.9626 Tf 286.2881 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ ET -1 0 0 1 174.6093 560.8681 cm +1 0 0 1 145.7235 391.9787 cm 0 g 0 G -1 0 0 1 -174.6093 -560.8681 cm +1 0 0 1 -145.7235 -391.9787 cm BT -/F8 9.9626 Tf 179.5906 560.8681 Td[(th)1(e)-334(e)-1(r)1(ror)-333(co)-28(de)]TJ -3.9791 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +/F29 9.9626 Tf 150.7049 391.9787 Td[(On)-383(R)-1(etur)1(n)]TJ ET -1 0 0 1 145.7235 505.0773 cm +1 0 0 1 205.2431 391.9787 cm 0 g 0 G -1 0 0 1 -145.7235 -505.0773 cm +1 0 0 1 -59.5196 -20.1776 cm +0 g 0 G +1 0 0 1 -145.7235 -371.8011 cm BT -/F29 9.9626 Tf 150.7049 505.0773 Td[(r)]TJ +/F29 9.9626 Tf 150.7049 371.8011 Td[(a)]TJ ET -1 0 0 1 156.1106 505.0773 cm +1 0 0 1 156.2742 371.8011 cm +0 g 0 G +1 0 0 1 -156.2742 -371.8011 cm +BT +/F8 9.9626 Tf 161.2555 371.8011 Td[(th)1(e)-334(s)-1(p)1(arse)-334(matrix)-333(read)-333(f)1(rom)-334(\014)1(le)-1(.)]TJ 14.356 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ +ET +1 0 0 1 346.5264 347.8908 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -346.5264 -347.8908 cm +BT +/F32 9.9626 Tf 346.5264 347.8908 Td[(psb)]TJ +ET +1 0 0 1 362.8451 347.8908 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.4371 0.1992 l +3.1382 0.1992 l S Q -1 0 0 1 -156.1106 -505.0773 cm -BT -/F29 9.9626 Tf 159.5478 505.0773 Td[(name)]TJ -ET -1 0 0 1 186.2807 505.0773 cm -0 g 0 G -1 0 0 1 -186.2807 -505.0773 cm -BT -/F8 9.9626 Tf 191.262 505.0773 Td[(th)1(e)-334(s)-1(ou)1(tin)1(e)-334(where)-334(th)1(e)-334(e)-1(r)1(ror)-333(has)-333(b)-28(ee)-1(n)-332(c)-1(au)1(gh)28(t.)]TJ -15.6505 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(ing.)]TJ -ET -1 0 0 1 145.7235 437.3313 cm -0 g 0 G -1 0 0 1 -145.7235 -437.3313 cm +1 0 0 1 -362.8451 -347.8908 cm BT -/F29 9.9626 Tf 150.7049 437.3313 Td[(i)]TJ +/F32 9.9626 Tf 365.9833 347.8908 Td[(spmat)]TJ ET -1 0 0 1 154.5747 437.3313 cm +1 0 0 1 392.7626 347.8908 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.4371 0.1992 l +3.1382 0.1992 l S Q -1 0 0 1 -154.5747 -437.3313 cm +1 0 0 1 -392.7626 -347.8908 cm BT -/F29 9.9626 Tf 158.0119 437.3313 Td[(err)]TJ +/F32 9.9626 Tf 395.9008 347.8908 Td[(type)]TJ ET -1 0 0 1 172.6998 437.3313 cm +1 0 0 1 416.8222 347.8908 cm 0 g 0 G -1 0 0 1 -172.6998 -437.3313 cm +1 0 0 1 -416.8222 -347.8908 cm BT -/F8 9.9626 Tf 177.6811 437.3313 Td[(add)1(ion)1(al)-334(i)1(nf)1(o)-334(f)1(or)-333(e)-1(r)1(ror)-333(c)-1(o)-27(de)]TJ -2.0696 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(arra)28(y)]TJ +/F8 9.9626 Tf 416.8222 347.8908 Td[(.)]TJ ET -1 0 0 1 145.7235 369.5854 cm +1 0 0 1 145.7235 327.7131 cm 0 g 0 G -1 0 0 1 -145.7235 -369.5854 cm +1 0 0 1 -145.7235 -327.7131 cm BT -/F29 9.9626 Tf 150.7049 369.5854 Td[(a)]TJ +/F29 9.9626 Tf 150.7049 327.7131 Td[(b)]TJ ET -1 0 0 1 156.9616 369.5854 cm +1 0 0 1 157.0698 327.7131 cm +0 g 0 G +1 0 0 1 -157.0698 -327.7131 cm +BT +/F8 9.9626 Tf 162.0512 327.7131 Td[(Rigth)-333(h)1(and)-333(sid)1(e)-1(.)]TJ 13.5603 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(Optional)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(An)-281(arr)1(a)27(y)-281(of)-281(t)28(yp)-27(e)-282(real)-282(or)-281(com)-1(p)1(le)-1(x)1(,)-292(ran)1(k)-282(1)-281(and)-281(h)1(a)27(v)1(ing)-281(the)-282(ALLO)1(C)-1(A)84(T)83(AB)-1(LE)]TJ 0 -11.9552 Td[(attr)1(ibu)1(te)-1(;)-409(will)-383(b)-28(e)-384(allo)-27(c)-1(ated)-384(an)1(d)-384(\014)1(lled)-384(in)-383(if)-383(the)-384(in)1(put)-383(\014le)-384(c)-1(on)29(tains)-384(a)-384(ri)1(gh)28(t)]TJ 0 -11.9552 Td[(han)1(d)-333(side.)]TJ +ET +1 0 0 1 145.7235 259.7148 cm +0 g 0 G +1 0 0 1 -145.7235 -259.7148 cm +BT +/F29 9.9626 Tf 150.7049 259.7148 Td[(m)32(t)-1(itl)-1(e)]TJ +ET +1 0 0 1 180.4612 259.7148 cm +0 g 0 G +1 0 0 1 -180.4612 -259.7148 cm +BT +/F8 9.9626 Tf 185.4425 259.7148 Td[(Matr)1(ix)-333(titl)1(e)-1(.)]TJ -9.831 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(Optional)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(A)-405(c)28(harac)28(h)28(ter)-405(v)56(ari)1(able)-405(of)-404(length)-404(72)-405(h)1(oldi)1(ng)-405(a)-404(c)-1(op)28(y)-404(of)-404(the)-405(matrix)-404(title)-405(as)]TJ 0 -11.9552 Td[(sp)-28(ec)-1(i)1(\014ed)-333(b)28(y)-333(the)-333(Harw)27(ell-Bo)-28(eing)-333(for)1(m)-1(at)-333(and)-332(c)-1(on)28(tai)1(ned)-333(in)-333(th)1(e)-334(in)1(put)-333(\014)1(le)-1(.)]TJ +ET +1 0 0 1 145.7235 203.6717 cm +0 g 0 G +1 0 0 1 -145.7235 -203.6717 cm +BT +/F29 9.9626 Tf 150.7049 203.6717 Td[(iret)]TJ +ET +1 0 0 1 168.3124 203.6717 cm +0 g 0 G +1 0 0 1 -168.3124 -203.6717 cm +BT +/F8 9.9626 Tf 173.2937 203.6717 Td[(Er)1(ror)-333(co)-28(de.)]TJ 2.3178 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(An)-333(in)29(te)-1(ger)-333(v)56(alue;)-333(0)-334(means)-334(n)1(o)-334(error)-333(h)1(as)-334(b)-27(e)-1(en)-333(detec)-1(ted.)]TJ +ET +1 0 0 1 145.7235 120.3256 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7235 -120.3256 cm +BT +/F18 14.3462 Tf 150.7049 120.3256 Td[(h)31(b)]TJ +ET +1 0 0 1 169.1576 120.3256 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.4371 0.1992 l +4.8419 0.1992 l S Q -1 0 0 1 -156.9616 -369.5854 cm -BT -/F29 9.9626 Tf 160.3987 369.5854 Td[(err)]TJ -ET -1 0 0 1 175.0866 369.5854 cm -0 g 0 G -1 0 0 1 -175.0866 -369.5854 cm +1 0 0 1 -169.1576 -120.3256 cm BT -/F8 9.9626 Tf 180.068 369.5854 Td[(add)1(ion)1(al)-334(i)1(nf)1(o)-334(f)1(or)-333(e)-1(r)1(ror)-333(c)-1(o)-27(de)]TJ -4.4565 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(ing.)]TJ +/F18 14.3462 Tf 173.9994 120.3256 Td[(w)-1(rit)-1(e|W)93(ri)-1(te)-375(a)-375(sparse)-375(m)-1(atr)-1(ix)-375(t)-1(o)-375(a)-375(\014le)]TJ ET 1 0 0 1 150.7049 90.4377 cm 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 317.5791 90.4377 Td[(92)]TJ +/F8 9.9626 Tf 315.0884 90.4377 Td[(100)]TJ ET 1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1232 0 obj << +1321 0 obj << /Type /Page -/Contents 1233 0 R -/Resources 1231 0 R +/Contents 1322 0 R +/Resources 1320 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1213 0 R +/Parent 1319 0 R +/Annots [ 1325 0 R ] >> endobj -1234 0 obj << -/D [1232 0 R /XYZ 150.7049 740.9981 null] +1325 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [345.5302 344.6805 417.8184 355.8055] +/Subtype /Link +/A << /S /GoTo /D (spdata) >> >> endobj -310 0 obj << -/D [1232 0 R /XYZ 150.7049 644.4574 null] +1323 0 obj << +/D [1321 0 R /XYZ 150.7049 740.9981 null] +>> endobj +342 0 obj << +/D [1321 0 R /XYZ 150.7049 641.235 null] +>> endobj +346 0 obj << +/D [1321 0 R /XYZ 150.7049 587.227 null] >> endobj -1235 0 obj << -/D [1232 0 R /XYZ 150.7049 613.8693 null] +1324 0 obj << +/D [1321 0 R /XYZ 150.7049 559.3111 null] >> endobj -1231 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> +1320 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1238 0 obj << -/Length 1793 +1328 0 obj << +/Length 6756 >> stream 1 0 0 1 99.8954 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -348.6924 -60.7721 cm +1 0 0 1 -443.6065 -740.9981 cm +BT +/F18 14.3462 Tf 99.8954 706.1289 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 54.7702 -21.821 Td[(call)-333(h)28(b)]TJ +ET +1 0 0 1 184.321 684.3079 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l +S +Q +1 0 0 1 -184.321 -684.3079 cm +BT +/F8 9.9626 Tf 187.3099 684.3079 Td[(write)-333(\050)]TJ/F19 9.9626 Tf 29.3621 0 Td[(a,)-358(i)1(r)51(et,)-357(iunit,)-357(\014)-1(l)1(ename,)-358(key)1(,)-358(r)1(hs,)-358(mti)1(t)-1(l)1(e)]TJ/F8 9.9626 Tf 168.29 0 Td[(\051)]TJ +ET +1 0 0 1 94.9141 660.3976 cm +0 g 0 G +1 0 0 1 -94.9141 -660.3976 cm +BT +/F29 9.9626 Tf 99.8954 660.3976 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 151.2996 660.3976 cm 0 g 0 G +1 0 0 1 -56.3855 -19.9253 cm 0 g 0 G -1 0 0 1 -94.9141 -680.226 cm +1 0 0 1 -94.9141 -640.4723 cm BT -/F18 14.3462 Tf 99.8954 680.226 Td[(psb)]TJ +/F29 9.9626 Tf 99.8954 640.4723 Td[(a)]TJ ET -1 0 0 1 125.1626 680.226 cm +1 0 0 1 105.4648 640.4723 cm +0 g 0 G +1 0 0 1 -105.4648 -640.4723 cm +BT +/F8 9.9626 Tf 110.4461 640.4723 Td[(th)1(e)-334(s)-1(p)1(arse)-334(matrix)-333(to)-333(b)-27(e)-334(written.)]TJ 14.356 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8982 0 Td[(.)]TJ -67.0816 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(d)1(a)-1(t)1(a)-334(of)-333(t)28(yp)-27(e)]TJ +ET +1 0 0 1 295.717 616.562 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -295.717 -616.562 cm +BT +/F32 9.9626 Tf 295.717 616.562 Td[(psb)]TJ +ET +1 0 0 1 312.0356 616.562 cm q []0 d 0 J 0.3985 w 0 0.1992 m -4.8419 0.1992 l +3.1382 0.1992 l S Q -1 0 0 1 -125.1626 -680.226 cm +1 0 0 1 -312.0356 -616.562 cm BT -/F18 14.3462 Tf 130.0045 680.226 Td[(er)-1(ro)-1(r|Pri)-1(n)31(ts)-375(the)-376(err)-1(or)-376(stac)31(k)-375(con)31(te)-1(n)32(t)-376(and)]TJ -30.1091 -17.9328 Td[(ab)-31(o)-1(rt)-1(s)-374(e)-1(x)1(e)-1(cuti)-1(on)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 122.8062 -21.8209 Td[(call)-333(psb)]TJ +/F32 9.9626 Tf 315.1738 616.562 Td[(spmat)]TJ ET -1 0 0 1 256.5635 604.7037 cm +1 0 0 1 341.9531 616.562 cm q []0 d 0 J 0.3985 w 0 0.1992 m -2.9888 0.1992 l +3.1382 0.1992 l S Q -1 0 0 1 -256.5635 -604.7037 cm +1 0 0 1 -341.9531 -616.562 cm BT -/F8 9.9626 Tf 259.5524 604.7037 Td[(error)-333(\050)]TJ/F19 9.9626 Tf 28.3105 0 Td[(ic)51(ontxt)]TJ/F8 9.9626 Tf 29.063 0 Td[(\051)]TJ +/F32 9.9626 Tf 345.0913 616.562 Td[(type)]TJ ET -1 0 0 1 94.9141 580.7934 cm +1 0 0 1 366.0127 616.562 cm 0 g 0 G -1 0 0 1 -94.9141 -580.7934 cm +1 0 0 1 -366.0127 -616.562 cm BT -/F29 9.9626 Tf 99.8954 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ +/F8 9.9626 Tf 366.0127 616.562 Td[(.)]TJ ET -1 0 0 1 147.4806 580.7934 cm +1 0 0 1 94.9141 596.6367 cm 0 g 0 G -1 0 0 1 -52.5665 -19.9253 cm +1 0 0 1 -94.9141 -596.6367 cm +BT +/F29 9.9626 Tf 99.8954 596.6367 Td[(b)]TJ +ET +1 0 0 1 106.2604 596.6367 cm 0 g 0 G -1 0 0 1 -94.9141 -560.8681 cm +1 0 0 1 -106.2604 -596.6367 cm BT -/F29 9.9626 Tf 99.8954 560.8681 Td[(ic)-1(on)33(t)-1(xt)]TJ +/F8 9.9626 Tf 111.2417 596.6367 Td[(Rigth)-333(h)1(and)-333(sid)1(e)-1(.)]TJ 13.5603 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(Optional)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(An)-281(arr)1(a)27(y)-281(of)-281(t)28(yp)-27(e)-282(real)-282(or)-281(com)-1(p)1(le)-1(x)1(,)-292(ran)1(k)-282(1)-281(and)-281(h)1(a)27(v)1(ing)-281(the)-282(ALLO)1(C)-1(A)84(T)83(AB)-1(LE)]TJ 0 -11.9552 Td[(attr)1(ibu)1(te)-1(;)-409(will)-383(b)-28(e)-384(allo)-27(c)-1(ated)-384(an)1(d)-384(\014)1(lled)-384(in)-383(if)-383(the)-384(in)1(put)-383(\014le)-384(c)-1(on)29(tains)-384(a)-384(ri)1(gh)28(t)]TJ 0 -11.9552 Td[(han)1(d)-333(side.)]TJ ET -1 0 0 1 134.9028 560.8681 cm +1 0 0 1 94.9141 528.8907 cm 0 g 0 G -1 0 0 1 -134.9028 -560.8681 cm +1 0 0 1 -94.9141 -528.8907 cm BT -/F8 9.9626 Tf 139.8841 560.8681 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text.)]TJ -15.0821 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +/F29 9.9626 Tf 99.8954 528.8907 Td[(\014lenam)-1(e)]TJ +ET +1 0 0 1 141.4269 528.8907 cm +0 g 0 G +1 0 0 1 -141.4269 -528.8907 cm +BT +/F8 9.9626 Tf 146.4082 528.8907 Td[(The)-334(n)1(ame)-334(of)-333(the)-333(\014le)-333(to)-334(b)-27(e)-334(writ)1(te)-1(n)-333(to.)]TJ -21.6062 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-434(as)-1(:)-648(a)-435(c)27(h)1(aracte)-1(r)-434(v)55(ar)1(iabl)1(e)-436(co)-1(n)29(taini)1(ng)-435(a)-435(v)56(alid)-435(\014)1(le)-436(n)1(am)-1(e,)-460(or)]TJ/F32 9.9626 Tf 297.9153 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-460(in)]TJ -303.1456 -11.9552 Td[(whic)28(h)-280(c)-1(ase)-281(th)1(e)-281(defau)1(lt)-280(outp)1(ut)-280(un)1(it)-280(6)-281(\050i)1(.e)-1(.)-426(s)-1(tan)1(dar)1(d)-280(outp)1(ut)-280(in)-280(Un)1(ix)-280(jargon)1(\051)]TJ 0 -11.9551 Td[(is)-334(u)1(s)-1(ed.)-444(Defau)1(lt:)]TJ/F32 9.9626 Tf 76.076 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ +ET +1 0 0 1 94.9141 461.1448 cm +0 g 0 G +1 0 0 1 -94.9141 -461.1448 cm +BT +/F29 9.9626 Tf 99.8954 461.1448 Td[(iuni)-1(t)]TJ +ET +1 0 0 1 123.4458 461.1448 cm +0 g 0 G +1 0 0 1 -123.4458 -461.1448 cm +BT +/F8 9.9626 Tf 128.4272 461.1448 Td[(The)-334(F)84(ortr)1(an)-333(\014l)1(e)-334(un)1(it)-333(n)28(um)28(b)-28(er.)]TJ -3.6252 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue.)-445(O)1(nly)-333(me)-1(an)1(ingf)1(ul)-333(if)-332(\014lename)-334(is)-333(not)]TJ/F32 9.9626 Tf 286.2881 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ +ET +1 0 0 1 94.9141 417.3092 cm +0 g 0 G +1 0 0 1 -94.9141 -417.3092 cm +BT +/F29 9.9626 Tf 99.8954 417.3092 Td[(k)32(ey)]TJ +ET +1 0 0 1 116.9217 417.3092 cm +0 g 0 G +1 0 0 1 -116.9217 -417.3092 cm +BT +/F8 9.9626 Tf 121.9031 417.3092 Td[(Matr)1(ix)-333(k)28(e)-1(y)84(.)]TJ 2.8989 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6113 0 Td[(Optional)]TJ/F8 9.9626 Tf -29.6113 -11.9552 Td[(A)-385(c)28(harac)28(h)28(ter)-385(v)56(ari)1(able)-385(of)-384(length)-384(8)-385(h)1(oldin)1(g)-385(th)1(e)-385(m)-1(atr)1(ix)-385(k)28(ey)-385(as)-385(sp)-28(eci\014ed)-385(b)29(y)]TJ 0 -11.9551 Td[(th)1(e)-334(Harw)28(e)-1(ll)1(-)-1(Bo)-28(eing)-333(f)1(orm)-1(at)-333(an)1(d)-333(to)-333(b)-28(e)-334(wr)1(itten)-333(to)-334(\014)1(le.)]TJ +ET +1 0 0 1 94.9141 361.5184 cm +0 g 0 G +1 0 0 1 -94.9141 -361.5184 cm +BT +/F29 9.9626 Tf 99.8954 361.5184 Td[(m)32(t)-1(itl)-1(e)]TJ +ET +1 0 0 1 129.6517 361.5184 cm +0 g 0 G +1 0 0 1 -129.6517 -361.5184 cm +BT +/F8 9.9626 Tf 134.633 361.5184 Td[(Matr)1(ix)-333(titl)1(e)-1(.)]TJ -9.831 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(Optional)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(A)-318(c)28(har)1(ac)27(h)28(ter)-318(v)56(ar)1(iable)-318(of)-317(lengt)1(h)-318(72)-317(hol)1(din)1(g)-318(th)1(e)-318(m)-1(atr)1(ix)-318(t)1(itle)-318(as)-318(sp)-28(ec)-1(i)1(\014ed)-318(b)29(y)]TJ 0 -11.9552 Td[(th)1(e)-334(Harw)28(e)-1(ll)1(-)-1(Bo)-28(eing)-333(f)1(orma)-1(t)-333(an)1(d)-333(to)-333(b)-28(e)-334(wr)1(itten)-333(to)-334(\014)1(le.)]TJ +ET +1 0 0 1 94.9141 303.7351 cm +0 g 0 G +1 0 0 1 -94.9141 -303.7351 cm +BT +/F29 9.9626 Tf 99.8954 303.7351 Td[(On)-383(R)-1(etur)1(n)]TJ +ET +1 0 0 1 154.4337 303.7351 cm +0 g 0 G +1 0 0 1 -59.5196 -19.9253 cm +0 g 0 G +1 0 0 1 -94.9141 -283.8098 cm +BT +/F29 9.9626 Tf 99.8954 283.8098 Td[(iret)]TJ +ET +1 0 0 1 117.5029 283.8098 cm +0 g 0 G +1 0 0 1 -117.5029 -283.8098 cm +BT +/F8 9.9626 Tf 122.4842 283.8098 Td[(Er)1(ror)-333(co)-28(de.)]TJ 2.3178 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(An)-333(in)29(te)-1(ger)-333(v)56(alue;)-333(0)-334(means)-334(n)1(o)-334(error)-333(h)1(as)-334(b)-27(e)-1(en)-333(detec)-1(ted.)]TJ ET 1 0 0 1 99.8954 90.4377 cm 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 266.7696 90.4377 Td[(93)]TJ +/F8 9.9626 Tf 264.2789 90.4377 Td[(101)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1237 0 obj << +1327 0 obj << /Type /Page -/Contents 1238 0 R -/Resources 1236 0 R +/Contents 1328 0 R +/Resources 1326 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1213 0 R +/Parent 1319 0 R +/Annots [ 1331 0 R ] >> endobj -1239 0 obj << -/D [1237 0 R /XYZ 99.8954 740.9981 null] +1331 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [294.7207 613.3518 367.009 624.4767] +/Subtype /Link +/A << /S /GoTo /D (spdata) >> >> endobj -314 0 obj << -/D [1237 0 R /XYZ 99.8954 644.4574 null] +1329 0 obj << +/D [1327 0 R /XYZ 99.8954 740.9981 null] >> endobj -1240 0 obj << -/D [1237 0 R /XYZ 99.8954 613.8693 null] +350 0 obj << +/D [1327 0 R /XYZ 99.8954 716.0915 null] >> endobj -1236 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> +1330 0 obj << +/D [1327 0 R /XYZ 99.8954 693.4736 null] +>> endobj +1326 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1243 0 obj << -/Length 2098 +1334 0 obj << +/Length 8068 >> stream 1 0 0 1 150.7049 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -348.6924 -60.7721 cm +1 0 0 1 -348.6924 -60.8794 cm 0 g 0 G 0 g 0 G -1 0 0 1 -145.7236 -680.226 cm +1 0 0 1 -145.7236 -680.1187 cm BT -/F18 14.3462 Tf 150.7049 680.226 Td[(psb)]TJ +/F18 14.3462 Tf 150.7049 680.1187 Td[(PSB)]TJ ET -1 0 0 1 175.972 680.226 cm +1 0 0 1 183.1385 680.1187 cm q []0 d 0 J @@ -25182,11 +26805,11 @@ q 4.8419 0.1992 l S Q -1 0 0 1 -175.972 -680.226 cm +1 0 0 1 -183.1385 -680.1187 cm BT -/F18 14.3462 Tf 180.8139 680.226 Td[(set)]TJ +/F18 14.3462 Tf 187.9804 680.1187 Td[(MMIO)]TJ ET -1 0 0 1 201.7889 680.226 cm +1 0 0 1 237.6992 680.1187 cm q []0 d 0 J @@ -25195,11 +26818,44 @@ q 4.8419 0.1992 l S Q -1 0 0 1 -201.7889 -680.226 cm +1 0 0 1 -237.6992 -680.1187 cm BT -/F18 14.3462 Tf 206.6308 680.226 Td[(er)-1(rv)31(er)-1(b)-31(osi)-1(t)31(y|Sets)-375(t)-1(he)-375(v)32(e)-1(rb)-32(osit)30(y)-374(o)-1(f)-375(err)-1(or)]TJ -55.9259 -17.9328 Td[(me)-1(ss)1(ag)-1(es.)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 111.7503 -21.8209 Td[(call)-333(psb)]TJ +/F18 14.3462 Tf 242.5411 680.1187 Td[(MOD|Input)-1(/Out)-1(put)-375(i)-1(n)]TJ -91.8362 -17.9328 Td[(Mat)-1(rixMar)-1(k)32(e)-1(t)-375(for)-1(mat)]TJ ET -1 0 0 1 296.3171 604.7037 cm +1 0 0 1 145.7235 608.3541 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7235 -608.3541 cm +BT +/F18 14.3462 Tf 150.7049 608.3541 Td[(mm)]TJ +ET +1 0 0 1 178.5723 608.3541 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -178.5723 -608.3541 cm +BT +/F18 14.3462 Tf 183.4142 608.3541 Td[(mat)]TJ +ET +1 0 0 1 211.954 608.3541 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +4.8419 0.1992 l +S +Q +1 0 0 1 -211.954 -608.3541 cm +BT +/F18 14.3462 Tf 216.7959 608.3541 Td[(re)-1(ad|Read)-375(a)-375(spa)1(r)-1(se)-375(m)-1(a)1(t)-1(ri)-1(x)-375(f)1(r)-1(om)-376(a)-375(\014le)]TJ -66.091 -35.8722 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 79.2419 -21.844 Td[(call)-333(m)-1(m)]TJ +ET +1 0 0 1 265.4139 550.6379 cm q []0 d 0 J @@ -25208,11 +26864,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -296.3171 -604.7037 cm +1 0 0 1 -265.4139 -550.6379 cm BT -/F8 9.9626 Tf 299.3059 604.7037 Td[(se)-1(t)]TJ +/F8 9.9626 Tf 268.4027 550.6379 Td[(mat)]TJ ET -1 0 0 1 312.1356 604.7037 cm +1 0 0 1 286.1584 550.6379 cm q []0 d 0 J @@ -25221,76 +26877,120 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -312.1356 -604.7037 cm +1 0 0 1 -286.1584 -550.6379 cm BT -/F8 9.9626 Tf 315.1244 604.7037 Td[(errv)28(erb)-27(os)-1(i)1(t)27(y)-333(\050)]TJ/F19 9.9626 Tf 59.0841 0 Td[(v)]TJ/F8 9.9626 Tf 4.5828 0 Td[(\051)]TJ +/F8 9.9626 Tf 289.1472 550.6379 Td[(read)-333(\050)]TJ/F19 9.9626 Tf 26.0413 0 Td[(a,)-358(i)1(r)51(et,)-357(iunit,)-357(\014)-1(l)1(ename)]TJ/F8 9.9626 Tf 96.1111 0 Td[(\051)]TJ ET -1 0 0 1 145.7235 580.7934 cm +1 0 0 1 145.7235 526.7007 cm 0 g 0 G -1 0 0 1 -145.7235 -580.7934 cm +1 0 0 1 -145.7235 -526.7007 cm BT -/F29 9.9626 Tf 150.7049 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ +/F29 9.9626 Tf 150.7049 526.7007 Td[(On)-383(En)32(tr)1(y)]TJ ET -1 0 0 1 198.2901 580.7934 cm +1 0 0 1 202.109 526.7007 cm 0 g 0 G -1 0 0 1 -52.5665 -19.9253 cm +1 0 0 1 -56.3855 -20.0326 cm 0 g 0 G -1 0 0 1 -145.7236 -560.8681 cm +1 0 0 1 -145.7235 -506.6681 cm BT -/F29 9.9626 Tf 150.7049 560.8681 Td[(v)]TJ +/F29 9.9626 Tf 150.7049 506.6681 Td[(\014lenam)-1(e)]TJ ET -1 0 0 1 156.7516 560.8681 cm +1 0 0 1 192.2364 506.6681 cm 0 g 0 G -1 0 0 1 -156.7516 -560.8681 cm +1 0 0 1 -192.2364 -506.6681 cm BT -/F8 9.9626 Tf 161.7329 560.8681 Td[(th)1(e)-334(v)28(e)-1(r)1(b)-28(osit)28(y)-333(lev)28(e)-1(l)]TJ 13.8786 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(global)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +/F8 9.9626 Tf 197.2177 506.6681 Td[(The)-334(n)1(ame)-334(of)-333(the)-333(\014le)-333(to)-334(b)-27(e)-334(r)1(e)-1(ad.)]TJ -21.6062 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5767 0 Td[(.)]TJ -65.7601 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-434(as)-1(:)-648(a)-435(c)27(h)1(aracte)-1(r)-434(v)55(ar)1(iabl)1(e)-436(co)-1(n)29(taini)1(ng)-435(a)-435(v)56(alid)-435(\014)1(le)-436(n)1(am)-1(e,)-460(or)]TJ/F32 9.9626 Tf 297.9153 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-460(in)]TJ -303.1456 -11.9552 Td[(whic)28(h)-302(cas)-1(e)-303(th)1(e)-303(d)1(e)-1(f)1(ault)-302(in)1(pu)1(t)-302(uni)1(t)-302(5)-303(\050i)1(.e)-1(.)-433(s)-1(tan)1(dard)-301(inp)1(ut)-302(in)-302(Un)1(ix)-302(j)1(a)-1(r)1(gon\051)-302(is)]TJ 0 -11.9552 Td[(used.)-444(De)-1(f)1(aul)1(t:)]TJ/F32 9.9626 Tf 66.058 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ ET -1 0 0 1 150.7049 90.4377 cm +1 0 0 1 145.7235 438.8148 cm 0 g 0 G -1 0 0 1 -150.7049 -90.4377 cm +1 0 0 1 -145.7235 -438.8148 cm BT -/F8 9.9626 Tf 317.5791 90.4377 Td[(94)]TJ +/F29 9.9626 Tf 150.7049 438.8148 Td[(iuni)-1(t)]TJ ET -1 0 0 1 494.4159 90.4377 cm +1 0 0 1 174.2553 438.8148 cm 0 g 0 G -endstream -endobj -1242 0 obj << -/Type /Page -/Contents 1243 0 R -/Resources 1241 0 R -/MediaBox [0 0 595.2756 841.8898] -/Parent 1246 0 R ->> endobj -1244 0 obj << -/D [1242 0 R /XYZ 150.7049 740.9981 null] ->> endobj -318 0 obj << -/D [1242 0 R /XYZ 150.7049 641.6678 null] ->> endobj -1245 0 obj << -/D [1242 0 R /XYZ 150.7049 613.8693 null] ->> endobj -1241 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1249 0 obj << -/Length 2439 ->> -stream -1 0 0 1 99.8954 740.9981 cm +1 0 0 1 -174.2553 -438.8148 cm +BT +/F8 9.9626 Tf 179.2366 438.8148 Td[(The)-334(F)84(ortr)1(an)-333(\014l)1(e)-334(un)1(it)-333(n)28(um)28(b)-28(er.)]TJ -3.6251 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5767 0 Td[(.)]TJ -65.7601 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue.)-445(O)1(nly)-333(me)-1(an)1(ingf)1(ul)-333(if)-332(\014lename)-334(is)-333(not)]TJ/F32 9.9626 Tf 286.2881 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ +ET +1 0 0 1 145.7235 392.9062 cm 0 g 0 G -1 0 0 1 343.7111 0 cm +1 0 0 1 -145.7235 -392.9062 cm +BT +/F29 9.9626 Tf 150.7049 392.9062 Td[(On)-383(R)-1(etur)1(n)]TJ +ET +1 0 0 1 205.2431 392.9062 cm 0 g 0 G -1 0 0 1 -348.6924 -60.7721 cm +1 0 0 1 -59.5196 -20.0326 cm +0 g 0 G +1 0 0 1 -145.7235 -372.8736 cm +BT +/F29 9.9626 Tf 150.7049 372.8736 Td[(a)]TJ +ET +1 0 0 1 156.2742 372.8736 cm +0 g 0 G +1 0 0 1 -156.2742 -372.8736 cm +BT +/F8 9.9626 Tf 161.2555 372.8736 Td[(th)1(e)-334(s)-1(p)1(arse)-334(matrix)-333(read)-333(f)1(rom)-334(\014)1(le)-1(.)]TJ 14.356 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ +ET +1 0 0 1 346.5264 348.9633 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -346.5264 -348.9633 cm +BT +/F32 9.9626 Tf 346.5264 348.9633 Td[(psb)]TJ +ET +1 0 0 1 362.8451 348.9633 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.1382 0.1992 l +S +Q +1 0 0 1 -362.8451 -348.9633 cm +BT +/F32 9.9626 Tf 365.9833 348.9633 Td[(spmat)]TJ +ET +1 0 0 1 392.7626 348.9633 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.1382 0.1992 l +S +Q +1 0 0 1 -392.7626 -348.9633 cm +BT +/F32 9.9626 Tf 395.9008 348.9633 Td[(type)]TJ +ET +1 0 0 1 416.8222 348.9633 cm 0 g 0 G +1 0 0 1 -416.8222 -348.9633 cm +BT +/F8 9.9626 Tf 416.8222 348.9633 Td[(.)]TJ +ET +1 0 0 1 145.7235 328.9307 cm 0 g 0 G -1 0 0 1 -94.9141 -680.226 cm +1 0 0 1 -145.7235 -328.9307 cm BT -/F18 14.3462 Tf 99.8954 680.226 Td[(psb)]TJ +/F29 9.9626 Tf 150.7049 328.9307 Td[(iret)]TJ ET -1 0 0 1 125.1626 680.226 cm +1 0 0 1 168.3124 328.9307 cm +0 g 0 G +1 0 0 1 -168.3124 -328.9307 cm +BT +/F8 9.9626 Tf 173.2937 328.9307 Td[(Er)1(ror)-333(co)-28(de.)]TJ 2.3178 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(An)-333(in)29(te)-1(ger)-333(v)56(alue;)-333(0)-334(means)-334(n)1(o)-334(error)-333(h)1(as)-334(b)-27(e)-1(en)-333(detec)-1(ted.)]TJ +ET +1 0 0 1 145.7235 245.922 cm +0 g 0 G +0 g 0 G +1 0 0 1 -145.7235 -245.922 cm +BT +/F18 14.3462 Tf 150.7049 245.922 Td[(mm)]TJ +ET +1 0 0 1 178.5723 245.922 cm q []0 d 0 J @@ -25299,11 +26999,11 @@ q 4.8419 0.1992 l S Q -1 0 0 1 -125.1626 -680.226 cm +1 0 0 1 -178.5723 -245.922 cm BT -/F18 14.3462 Tf 130.0045 680.226 Td[(set)]TJ +/F18 14.3462 Tf 183.4142 245.922 Td[(mat)]TJ ET -1 0 0 1 150.9794 680.226 cm +1 0 0 1 211.954 245.922 cm q []0 d 0 J @@ -25312,11 +27012,11 @@ q 4.8419 0.1992 l S Q -1 0 0 1 -150.9794 -680.226 cm +1 0 0 1 -211.954 -245.922 cm BT -/F18 14.3462 Tf 155.8213 680.226 Td[(er)-1(ract)-1(io)-1(n|Set)-375(t)-1(he)-375(t)30(y)1(p)-32(e)-375(of)-375(acti)-1(on)-375(t)-1(o)-375(b)-32(e)]TJ -55.9259 -17.9328 Td[(tak)31(en)-375(up)-31(o)-1(n)-375(er)-1(ro)-1(r)-375(co)-1(ndit)-1(io)-1(n.)]TJ 0 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 105.769 -21.8209 Td[(call)-333(psb)]TJ +/F18 14.3462 Tf 216.7959 245.922 Td[(wr)-1(it)-1(e|W)93(ri)-1(te)-375(a)-375(sparse)-375(m)-1(atr)-1(ix)-375(t)-1(o)-375(a)-375(\014le)]TJ -66.091 -35.8722 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 61.7964 -21.8441 Td[(call)-333(m)-1(m)]TJ ET -1 0 0 1 239.5263 604.7037 cm +1 0 0 1 247.9683 188.2057 cm q []0 d 0 J @@ -25325,11 +27025,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -239.5263 -604.7037 cm +1 0 0 1 -247.9683 -188.2057 cm BT -/F8 9.9626 Tf 242.5151 604.7037 Td[(se)-1(t)]TJ +/F8 9.9626 Tf 250.9571 188.2057 Td[(mat)]TJ ET -1 0 0 1 255.3448 604.7037 cm +1 0 0 1 268.7128 188.2057 cm q []0 d 0 J @@ -25338,230 +27038,212 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -255.3448 -604.7037 cm +1 0 0 1 -268.7128 -188.2057 cm BT -/F8 9.9626 Tf 258.3336 604.7037 Td[(erraction)-333(\050)]TJ/F19 9.9626 Tf 45.9943 0 Td[(err)]TJ +/F8 9.9626 Tf 271.7016 188.2057 Td[(write)-333(\050)]TJ/F19 9.9626 Tf 29.3622 0 Td[(a,)-358(m)1(t)-1(i)1(tle,)-357(ir)51(et,)-357(iunit,)-357(\014lename)]TJ/F8 9.9626 Tf 127.6814 0 Td[(\051)]TJ +ET +1 0 0 1 145.7235 164.2686 cm +0 g 0 G +1 0 0 1 -145.7235 -164.2686 cm +BT +/F29 9.9626 Tf 150.7049 164.2686 Td[(On)-383(En)32(tr)1(y)]TJ +ET +1 0 0 1 202.109 164.2686 cm +0 g 0 G +1 0 0 1 -56.3855 -20.0326 cm +0 g 0 G +1 0 0 1 -145.7235 -144.236 cm +BT +/F29 9.9626 Tf 150.7049 144.236 Td[(a)]TJ +ET +1 0 0 1 156.2742 144.236 cm +0 g 0 G +1 0 0 1 -156.2742 -144.236 cm +BT +/F8 9.9626 Tf 161.2555 144.236 Td[(th)1(e)-334(s)-1(p)1(arse)-334(matrix)-333(to)-333(b)-27(e)-334(written.)]TJ 14.356 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(required)]TJ/F8 9.9626 Tf 41.8983 0 Td[(.)]TJ -67.0817 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ +ET +1 0 0 1 346.5264 120.3256 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -346.5264 -120.3256 cm +BT +/F32 9.9626 Tf 346.5264 120.3256 Td[(psb)]TJ ET -1 0 0 1 317.9234 604.7037 cm +1 0 0 1 362.8451 120.3256 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.0552 0.1992 l +3.1382 0.1992 l S Q -1 0 0 1 -317.9234 -604.7037 cm -BT -/F19 9.9626 Tf 320.9786 604.7037 Td[(act)]TJ/F8 9.9626 Tf 12.9845 0 Td[(\051)]TJ -ET -1 0 0 1 94.9141 580.7934 cm -0 g 0 G -1 0 0 1 -94.9141 -580.7934 cm -BT -/F29 9.9626 Tf 99.8954 580.7934 Td[(On)-383(En)32(tr)1(y)]TJ -ET -1 0 0 1 147.4806 580.7934 cm -0 g 0 G -1 0 0 1 -52.5665 -19.9253 cm -0 g 0 G -1 0 0 1 -94.9141 -560.8681 cm +1 0 0 1 -362.8451 -120.3256 cm BT -/F29 9.9626 Tf 99.8954 560.8681 Td[(err)]TJ +/F32 9.9626 Tf 365.9833 120.3256 Td[(spmat)]TJ ET -1 0 0 1 115.2707 560.8681 cm +1 0 0 1 392.7626 120.3256 cm q []0 d 0 J 0.3985 w 0 0.1992 m -3.4371 0.1992 l +3.1382 0.1992 l S Q -1 0 0 1 -115.2707 -560.8681 cm +1 0 0 1 -392.7626 -120.3256 cm BT -/F29 9.9626 Tf 118.7078 560.8681 Td[(act)]TJ +/F32 9.9626 Tf 395.9008 120.3256 Td[(type)]TJ ET -1 0 0 1 133.8246 560.8681 cm +1 0 0 1 416.8222 120.3256 cm 0 g 0 G -1 0 0 1 -133.8246 -560.8681 cm +1 0 0 1 -416.8222 -120.3256 cm BT -/F8 9.9626 Tf 138.806 560.8681 Td[(th)1(e)-334(t)28(yp)-27(e)-334(of)-333(ac)-1(t)1(ion.)]TJ -14.004 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6113 0 Td[(required)]TJ/F8 9.9626 Tf -29.6113 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +/F8 9.9626 Tf 416.8222 120.3256 Td[(.)]TJ ET -1 0 0 1 99.8954 90.4377 cm +1 0 0 1 150.7049 90.4377 cm 0 g 0 G -1 0 0 1 -99.8954 -90.4377 cm +1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 266.7696 90.4377 Td[(95)]TJ +/F8 9.9626 Tf 315.0884 90.4377 Td[(102)]TJ ET -1 0 0 1 443.6065 90.4377 cm +1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1248 0 obj << +1333 0 obj << /Type /Page -/Contents 1249 0 R -/Resources 1247 0 R +/Contents 1334 0 R +/Resources 1332 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1246 0 R +/Parent 1319 0 R +/Annots [ 1337 0 R 1339 0 R ] >> endobj -1250 0 obj << -/D [1248 0 R /XYZ 99.8954 740.9981 null] +1337 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [345.5302 345.7531 417.8184 356.878] +/Subtype /Link +/A << /S /GoTo /D (spdata) >> >> endobj -322 0 obj << -/D [1248 0 R /XYZ 99.8954 641.6678 null] +1339 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [345.5302 117.1154 417.8184 128.2404] +/Subtype /Link +/A << /S /GoTo /D (spdata) >> >> endobj -1251 0 obj << -/D [1248 0 R /XYZ 99.8954 613.8693 null] +1335 0 obj << +/D [1333 0 R /XYZ 150.7049 740.9981 null] >> endobj -1247 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> +354 0 obj << +/D [1333 0 R /XYZ 150.7049 644.2733 null] +>> endobj +358 0 obj << +/D [1333 0 R /XYZ 150.7049 587.652 null] +>> endobj +1336 0 obj << +/D [1333 0 R /XYZ 150.7049 559.8035 null] +>> endobj +362 0 obj << +/D [1333 0 R /XYZ 150.7049 225.2198 null] +>> endobj +1338 0 obj << +/D [1333 0 R /XYZ 150.7049 197.3714 null] +>> endobj +1332 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1254 0 obj << -/Length 2336 +1342 0 obj << +/Length 3297 >> stream -1 0 0 1 150.7049 740.9981 cm +1 0 0 1 99.8954 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -348.6924 -60.7721 cm -0 g 0 G +1 0 0 1 -348.6924 -34.8692 cm 0 g 0 G -1 0 0 1 -145.7236 -680.226 cm -BT -/F18 14.3462 Tf 150.7049 680.226 Td[(psb)]TJ -ET -1 0 0 1 175.972 680.226 cm -q -[]0 d -0 J -0.3985 w -0 0.1992 m -4.8419 0.1992 l -S -Q -1 0 0 1 -175.972 -680.226 cm -BT -/F18 14.3462 Tf 180.8139 680.226 Td[(er)-1(rco)-1(mm)-1(|Er)-1(ro)-1(r)-375(co)-1(mm)31(uni)-1(cati)-1(on)-375(r)-1(out)-1(ine)]TJ -30.109 -35.7686 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 104.439 -21.8209 Td[(call)-333(psb)]TJ -ET -1 0 0 1 289.0058 622.6364 cm -q -[]0 d -0 J -0.3985 w -0 0.1992 m -2.9888 0.1992 l -S -Q -1 0 0 1 -289.0058 -622.6364 cm +1 0 0 1 -94.9141 -706.1289 cm BT -/F8 9.9626 Tf 291.9947 622.6364 Td[(errcom)-1(m)-333(\050)]TJ/F19 9.9626 Tf 45.4407 0 Td[(ic)51(ontxt,)-358(er)1(r)]TJ/F8 9.9626 Tf 48.6672 0 Td[(\051)]TJ +/F29 9.9626 Tf 99.8954 706.1289 Td[(m)32(t)-1(itl)-1(e)]TJ ET -1 0 0 1 145.7235 598.7261 cm +1 0 0 1 129.6517 706.1289 cm 0 g 0 G -1 0 0 1 -145.7235 -598.7261 cm +1 0 0 1 -129.6517 -706.1289 cm BT -/F29 9.9626 Tf 150.7049 598.7261 Td[(On)-383(En)32(tr)1(y)]TJ +/F8 9.9626 Tf 134.633 706.1289 Td[(Matr)1(ix)-333(titl)1(e)-1(.)]TJ -9.831 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(A)-299(c)28(harac)28(h)28(ter)-299(v)56(ariab)1(le)-299(hold)1(ing)-298(a)-299(des)-1(crip)1(tiv)28(e)-299(titl)1(e)-300(f)1(or)-299(th)1(e)-300(matr)1(ix)-299(to)-299(b)-27(e)-299(writ-)]TJ 0 -11.9551 Td[(ten)-333(to)-333(\014le.)]TJ ET -1 0 0 1 198.2901 598.7261 cm -0 g 0 G -1 0 0 1 -52.5665 -19.9253 cm +1 0 0 1 94.9141 650.3381 cm 0 g 0 G -1 0 0 1 -145.7236 -578.8008 cm +1 0 0 1 -94.9141 -650.3381 cm BT -/F29 9.9626 Tf 150.7049 578.8008 Td[(ic)-1(on)33(t)-1(xt)]TJ +/F29 9.9626 Tf 99.8954 650.3381 Td[(\014lenam)-1(e)]TJ ET -1 0 0 1 185.7123 578.8008 cm +1 0 0 1 141.4269 650.3381 cm 0 g 0 G -1 0 0 1 -185.7123 -578.8008 cm +1 0 0 1 -141.4269 -650.3381 cm BT -/F8 9.9626 Tf 190.6936 578.8008 Td[(th)1(e)-334(c)-1(omm)27(u)1(ni)1(c)-1(ation)-332(c)-1(on)28(text.)]TJ -15.0821 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(global)]TJ/F8 9.9626 Tf -32.3786 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +/F8 9.9626 Tf 146.4082 650.3381 Td[(The)-334(n)1(ame)-334(of)-333(the)-333(\014le)-333(to)-334(b)-27(e)-334(writ)1(te)-1(n)-333(to.)]TJ -21.6062 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-434(as)-1(:)-648(a)-435(c)27(h)1(aracte)-1(r)-434(v)55(ar)1(iabl)1(e)-436(co)-1(n)29(taini)1(ng)-435(a)-435(v)56(alid)-435(\014)1(le)-436(n)1(am)-1(e,)-460(or)]TJ/F32 9.9626 Tf 297.9153 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-460(in)]TJ -303.1456 -11.9551 Td[(whic)28(h)-280(c)-1(ase)-281(th)1(e)-281(defau)1(lt)-280(outp)1(ut)-280(un)1(it)-280(6)-281(\050i)1(.e)-1(.)-426(s)-1(tan)1(dar)1(d)-280(outp)1(ut)-280(in)-280(Un)1(ix)-280(jargon)1(\051)]TJ 0 -11.9552 Td[(is)-334(u)1(s)-1(ed.)-444(Defau)1(lt:)]TJ/F32 9.9626 Tf 76.076 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ ET -1 0 0 1 145.7235 523.01 cm +1 0 0 1 94.9141 582.5921 cm 0 g 0 G -1 0 0 1 -145.7235 -523.01 cm +1 0 0 1 -94.9141 -582.5921 cm BT -/F29 9.9626 Tf 150.7049 523.01 Td[(err)]TJ +/F29 9.9626 Tf 99.8954 582.5921 Td[(iuni)-1(t)]TJ ET -1 0 0 1 165.3928 523.01 cm +1 0 0 1 123.4458 582.5921 cm 0 g 0 G -1 0 0 1 -165.3928 -523.01 cm +1 0 0 1 -123.4458 -582.5921 cm BT -/F8 9.9626 Tf 170.3741 523.01 Td[(th)1(e)-334(e)-1(r)1(ror)-333(co)-28(de)-334(t)1(o)-334(b)-27(e)-334(com)-1(m)28(un)1(ic)-1(ated)]TJ 5.2374 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(global)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger.)]TJ +/F8 9.9626 Tf 128.4272 582.5921 Td[(The)-334(F)84(ortr)1(an)-333(\014l)1(e)-334(un)1(it)-333(n)28(um)28(b)-28(er.)]TJ -3.6252 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 25.1834 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -65.7602 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(al)1(ue.)-445(O)1(nly)-333(me)-1(an)1(ingf)1(ul)-333(if)-332(\014lename)-334(is)-333(not)]TJ/F32 9.9626 Tf 286.2881 0 Td[(-)]TJ/F8 9.9626 Tf 5.2303 0 Td[(.)]TJ ET -1 0 0 1 150.7049 90.4377 cm +1 0 0 1 94.9141 536.764 cm 0 g 0 G -1 0 0 1 -150.7049 -90.4377 cm +1 0 0 1 -94.9141 -536.764 cm BT -/F8 9.9626 Tf 317.5791 90.4377 Td[(96)]TJ +/F29 9.9626 Tf 99.8954 536.764 Td[(On)-383(R)-1(etur)1(n)]TJ ET -1 0 0 1 494.4159 90.4377 cm +1 0 0 1 154.4337 536.764 cm 0 g 0 G -endstream -endobj -1253 0 obj << -/Type /Page -/Contents 1254 0 R -/Resources 1252 0 R -/MediaBox [0 0 595.2756 841.8898] -/Parent 1246 0 R ->> endobj -1255 0 obj << -/D [1253 0 R /XYZ 150.7049 740.9981 null] ->> endobj -326 0 obj << -/D [1253 0 R /XYZ 150.7049 659.6006 null] ->> endobj -1256 0 obj << -/D [1253 0 R /XYZ 150.7049 631.8021 null] ->> endobj -1252 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -1259 0 obj << -/Length 322 ->> -stream -1 0 0 1 99.8954 740.9981 cm +1 0 0 1 -59.5196 -19.9253 cm 0 g 0 G -1 0 0 1 343.7111 0 cm +1 0 0 1 -94.9141 -516.8387 cm +BT +/F29 9.9626 Tf 99.8954 516.8387 Td[(iret)]TJ +ET +1 0 0 1 117.5029 516.8387 cm 0 g 0 G -1 0 0 1 -443.6065 -740.9981 cm +1 0 0 1 -117.5029 -516.8387 cm BT -/F18 14.3462 Tf 99.8954 706.1289 Td[(9)-1125(Ut)-1(il)-1(it)-1(ies)]TJ +/F8 9.9626 Tf 122.4842 516.8387 Td[(Er)1(ror)-333(co)-28(de.)]TJ 2.3178 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(An)-333(in)29(te)-1(ger)-333(v)56(alue;)-333(0)-334(means)-334(n)1(o)-334(error)-333(h)1(as)-334(b)-27(e)-1(en)-333(detec)-1(ted.)]TJ ET 1 0 0 1 99.8954 90.4377 cm 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 266.7696 90.4377 Td[(97)]TJ +/F8 9.9626 Tf 264.2789 90.4377 Td[(103)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1258 0 obj << +1341 0 obj << /Type /Page -/Contents 1259 0 R -/Resources 1257 0 R +/Contents 1342 0 R +/Resources 1340 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1246 0 R ->> endobj -1260 0 obj << -/D [1258 0 R /XYZ 99.8954 740.9981 null] +/Parent 1319 0 R >> endobj -330 0 obj << -/D [1258 0 R /XYZ 99.8954 716.0915 null] +1343 0 obj << +/D [1341 0 R /XYZ 99.8954 740.9981 null] >> endobj -1257 0 obj << -/Font << /F18 369 0 R /F8 378 0 R >> +1340 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1263 0 obj << -/Length 1528 +1346 0 obj << +/Length 1529 >> stream 1 0 0 1 150.7049 740.9981 cm @@ -25600,31 +27282,31 @@ ET 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 317.5791 90.4377 Td[(98)]TJ +/F8 9.9626 Tf 315.0884 90.4377 Td[(104)]TJ ET 1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1262 0 obj << +1345 0 obj << /Type /Page -/Contents 1263 0 R -/Resources 1261 0 R +/Contents 1346 0 R +/Resources 1344 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1246 0 R +/Parent 1319 0 R >> endobj -1264 0 obj << -/D [1262 0 R /XYZ 150.7049 740.9981 null] +1347 0 obj << +/D [1345 0 R /XYZ 150.7049 740.9981 null] >> endobj -334 0 obj << -/D [1262 0 R /XYZ 150.7049 716.0915 null] +366 0 obj << +/D [1345 0 R /XYZ 150.7049 716.0915 null] >> endobj -1261 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F14 535 0 R /F32 510 0 R >> +1344 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F14 579 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1267 0 obj << -/Length 6689 +1350 0 obj << +/Length 6690 >> stream 1 0 0 1 99.8954 740.9981 cm @@ -25823,54 +27505,54 @@ ET 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 266.7696 90.4377 Td[(99)]TJ +/F8 9.9626 Tf 264.2789 90.4377 Td[(105)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1266 0 obj << +1349 0 obj << /Type /Page -/Contents 1267 0 R -/Resources 1265 0 R +/Contents 1350 0 R +/Resources 1348 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1246 0 R -/Annots [ 1270 0 R 1272 0 R ] +/Parent 1357 0 R +/Annots [ 1353 0 R 1355 0 R ] >> endobj -1270 0 obj << +1353 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [312.4874 551.6803 379.5454 562.8053] /Subtype /Link /A << /S /GoTo /D (precdata) >> >> endobj -1272 0 obj << +1355 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [128.289 388.0648 134.7509 398.1669] /Subtype /Link /A << /S /GoTo /D (Hfootnote.2) >> >> endobj -1268 0 obj << -/D [1266 0 R /XYZ 99.8954 740.9981 null] +1351 0 obj << +/D [1349 0 R /XYZ 99.8954 740.9981 null] >> endobj -338 0 obj << -/D [1266 0 R /XYZ 99.8954 659.6006 null] +370 0 obj << +/D [1349 0 R /XYZ 99.8954 659.6006 null] >> endobj -1269 0 obj << -/D [1266 0 R /XYZ 99.8954 631.8021 null] +1352 0 obj << +/D [1349 0 R /XYZ 99.8954 631.8021 null] >> endobj -1271 0 obj << -/D [1266 0 R /XYZ 99.8954 410.6468 null] +1354 0 obj << +/D [1349 0 R /XYZ 99.8954 410.6468 null] >> endobj -1273 0 obj << -/D [1266 0 R /XYZ 115.1385 129.7901 null] +1356 0 obj << +/D [1349 0 R /XYZ 115.1385 129.7901 null] >> endobj -1265 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R /F11 504 0 R /F7 515 0 R /F34 518 0 R /F33 522 0 R >> +1348 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R /F11 548 0 R /F7 559 0 R /F34 562 0 R /F33 566 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1276 0 obj << +1360 0 obj << /Length 6310 >> stream @@ -26127,55 +27809,55 @@ ET 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 315.0884 90.4377 Td[(100)]TJ +/F8 9.9626 Tf 315.0884 90.4377 Td[(106)]TJ ET 1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1275 0 obj << +1359 0 obj << /Type /Page -/Contents 1276 0 R -/Resources 1274 0 R +/Contents 1360 0 R +/Resources 1358 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1282 0 R -/Annots [ 1279 0 R 1280 0 R 1281 0 R ] +/Parent 1357 0 R +/Annots [ 1363 0 R 1364 0 R 1365 0 R ] >> endobj -1279 0 obj << +1363 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [368.6656 551.6803 440.9539 562.8053] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -1280 0 obj << +1364 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [422.298 507.8447 489.3559 518.9696] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1281 0 obj << +1365 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [369.3852 386.3005 436.4431 397.4254] /Subtype /Link /A << /S /GoTo /D (precdata) >> >> endobj -1277 0 obj << -/D [1275 0 R /XYZ 150.7049 740.9981 null] +1361 0 obj << +/D [1359 0 R /XYZ 150.7049 740.9981 null] >> endobj -342 0 obj << -/D [1275 0 R /XYZ 150.7049 659.6006 null] +374 0 obj << +/D [1359 0 R /XYZ 150.7049 659.6006 null] >> endobj -1278 0 obj << -/D [1275 0 R /XYZ 150.7049 631.8021 null] +1362 0 obj << +/D [1359 0 R /XYZ 150.7049 631.8021 null] >> endobj -1274 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1358 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1285 0 obj << +1368 0 obj << /Length 7395 >> stream @@ -26448,48 +28130,48 @@ ET 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 264.2789 90.4377 Td[(101)]TJ +/F8 9.9626 Tf 264.2789 90.4377 Td[(107)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1284 0 obj << +1367 0 obj << /Type /Page -/Contents 1285 0 R -/Resources 1283 0 R +/Contents 1368 0 R +/Resources 1366 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1282 0 R -/Annots [ 1288 0 R 1289 0 R ] +/Parent 1357 0 R +/Annots [ 1371 0 R 1372 0 R ] >> endobj -1288 0 obj << +1371 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [321.3431 509.8372 388.4011 520.9622] /Subtype /Link /A << /S /GoTo /D (precdata) >> >> endobj -1289 0 obj << +1372 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [324.8854 422.166 391.9434 433.2909] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1286 0 obj << -/D [1284 0 R /XYZ 99.8954 740.9981 null] +1369 0 obj << +/D [1367 0 R /XYZ 99.8954 740.9981 null] >> endobj -346 0 obj << -/D [1284 0 R /XYZ 99.8954 644.4574 null] +378 0 obj << +/D [1367 0 R /XYZ 99.8954 644.4574 null] >> endobj -1287 0 obj << -/D [1284 0 R /XYZ 99.8954 613.8693 null] +1370 0 obj << +/D [1367 0 R /XYZ 99.8954 613.8693 null] >> endobj -1283 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1366 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1292 0 obj << +1375 0 obj << /Length 2679 >> stream @@ -26618,41 +28300,41 @@ ET 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 315.0884 90.4377 Td[(102)]TJ +/F8 9.9626 Tf 315.0884 90.4377 Td[(108)]TJ ET 1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1291 0 obj << +1374 0 obj << /Type /Page -/Contents 1292 0 R -/Resources 1290 0 R +/Contents 1375 0 R +/Resources 1373 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1282 0 R -/Annots [ 1295 0 R ] +/Parent 1357 0 R +/Annots [ 1378 0 R ] >> endobj -1295 0 obj << +1378 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [372.1526 533.7475 439.2105 544.8725] /Subtype /Link /A << /S /GoTo /D (precdata) >> >> endobj -1293 0 obj << -/D [1291 0 R /XYZ 150.7049 740.9981 null] +1376 0 obj << +/D [1374 0 R /XYZ 150.7049 740.9981 null] >> endobj -350 0 obj << -/D [1291 0 R /XYZ 150.7049 641.6678 null] +382 0 obj << +/D [1374 0 R /XYZ 150.7049 641.6678 null] >> endobj -1294 0 obj << -/D [1291 0 R /XYZ 150.7049 613.8693 null] +1377 0 obj << +/D [1374 0 R /XYZ 150.7049 613.8693 null] >> endobj -1290 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1373 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1298 0 obj << +1381 0 obj << /Length 590 >> stream @@ -26668,45 +28350,45 @@ ET 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 264.2789 90.4377 Td[(103)]TJ +/F8 9.9626 Tf 264.2789 90.4377 Td[(109)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1297 0 obj << +1380 0 obj << /Type /Page -/Contents 1298 0 R -/Resources 1296 0 R +/Contents 1381 0 R +/Resources 1379 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1282 0 R +/Parent 1357 0 R >> endobj -1299 0 obj << -/D [1297 0 R /XYZ 99.8954 740.9981 null] +1382 0 obj << +/D [1380 0 R /XYZ 99.8954 740.9981 null] >> endobj -354 0 obj << -/D [1297 0 R /XYZ 99.8954 716.0915 null] +386 0 obj << +/D [1380 0 R /XYZ 99.8954 716.0915 null] >> endobj -1296 0 obj << -/Font << /F18 369 0 R /F8 378 0 R >> +1379 0 obj << +/Font << /F18 401 0 R /F8 410 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1302 0 obj << -/Length 9287 +1385 0 obj << +/Length 10344 >> stream 1 0 0 1 150.7049 740.9981 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G -1 0 0 1 -348.6924 -61.7768 cm +1 0 0 1 -348.6924 -58.6097 cm 0 g 0 G 0 g 0 G -1 0 0 1 -145.7236 -679.2213 cm +1 0 0 1 -145.7236 -682.3884 cm BT -/F18 14.3462 Tf 150.7049 679.2213 Td[(psb)]TJ +/F18 14.3462 Tf 150.7049 682.3884 Td[(psb)]TJ ET -1 0 0 1 175.972 679.2213 cm +1 0 0 1 175.972 682.3884 cm q []0 d 0 J @@ -26715,24 +28397,24 @@ q 4.8419 0.1992 l S Q -1 0 0 1 -175.972 -679.2213 cm +1 0 0 1 -175.972 -682.3884 cm BT -/F18 14.3462 Tf 180.8139 679.2213 Td[(krylo)30(v)-374(|Kr)-1(ylo)31(v)-375(Met)-1(ho)-32(ds)-374(D)-1(ri)-1(v)32(e)-1(r)-375(Ro)-1(uti)-1(ne)]TJ/F8 9.9626 Tf -30.109 -30.7609 Td[(This)-343(sub)1(rout)1(ine)-343(is)-343(a)-343(d)1(riv)28(er)-342(that)-343(p)1(ro)28(vid)1(e)-1(s)-343(a)-342(ge)-1(n)1(e)-1(ral)-342(in)28(terf)1(ac)-1(e)-343(f)1(or)-343(all)-342(the)-343(Kr)1(ylo)28(v-)]TJ 0 -11.9552 Td[(Su)1(bspace)-334(f)1(am)-1(il)1(y)-333(m)-1(etho)-27(ds)-334(impl)1(e)-1(me)-1(n)29(te)-1(d)-333(i)1(n)-333(PS)1(B)-1(LAS)1(-)-1(2.)1(0.)]TJ 14.9439 -12.2063 Td[(The)-299(s)-1(t)1(oppi)1(ng)-299(criteri)1(on)-299(is)-299(th)1(e)-300(n)1(orm)28(w)-1(ise)-299(bac)28(kw)27(ar)1(d)-299(error)1(,)-306(in)-298(th)1(e)-300(in)1(\014n)1(it)28(y)-299(n)1(orm,)]TJ -14.9439 -11.9552 Td[(i.e.)-444(the)-333(ite)-1(r)1(ation)-333(is)-333(s)-1(top)1(p)-28(ed)-333(when)]TJ/F14 9.9626 Tf 150.6861 -20.8704 Td[(k)]TJ/F11 9.9626 Tf 4.9813 0 Td[(r)]TJ/F14 9.9626 Tf 4.7715 0 Td[(k)]TJ +/F18 14.3462 Tf 180.8139 682.3884 Td[(krylo)30(v)-374(|Kr)-1(ylo)31(v)-375(Met)-1(ho)-32(ds)-374(D)-1(ri)-1(v)32(e)-1(r)-375(Ro)-1(uti)-1(ne)]TJ/F8 9.9626 Tf -30.109 -27.6287 Td[(This)-343(sub)1(rout)1(ine)-343(is)-343(a)-343(d)1(riv)28(er)-342(that)-343(p)1(ro)28(vid)1(e)-1(s)-343(a)-342(ge)-1(n)1(e)-1(ral)-342(in)28(terf)1(ac)-1(e)-343(f)1(or)-343(all)-342(the)-343(Kr)1(ylo)28(v-)]TJ 0 -11.9552 Td[(Su)1(bspace)-334(f)1(am)-1(il)1(y)-333(m)-1(etho)-27(ds)-334(impl)1(e)-1(me)-1(n)29(te)-1(d)-333(i)1(n)-333(PS)1(B)-1(LAS)1(-)-1(2.)1(0.)]TJ 14.9439 -11.9551 Td[(The)-299(s)-1(t)1(oppi)1(ng)-299(criteri)1(on)-299(is)-299(th)1(e)-300(n)1(orm)28(w)-1(ise)-299(bac)28(kw)27(ar)1(d)-299(error)1(,)-306(in)-298(th)1(e)-300(in)1(\014n)1(it)28(y)-299(n)1(orm,)]TJ -14.9439 -11.9552 Td[(i.e.)-444(the)-333(ite)-1(r)1(ation)-333(is)-333(s)-1(top)1(p)-28(ed)-333(when)]TJ/F11 9.9626 Tf 107.8392 -24.4049 Td[(er)-28(r)]TJ/F8 9.9626 Tf 16.9492 0 Td[(=)]TJ/F14 9.9626 Tf 38.1102 6.7398 Td[(k)]TJ/F11 9.9626 Tf 4.9814 0 Td[(r)]TJ/F10 6.9738 Tf 4.4947 -1.4944 Td[(i)]TJ/F14 9.9626 Tf 3.3168 1.4944 Td[(k)]TJ ET -1 0 0 1 275.1307 587.0249 cm +1 0 0 1 287.2049 596.7807 cm q []0 d 0 J 0.3985 w 0 0.1992 m -67.2548 0.1992 l +70.5716 0.1992 l S Q -1 0 0 1 -275.1307 -587.0249 cm +1 0 0 1 -287.2049 -596.7807 cm BT -/F8 9.9626 Tf 275.1307 577.8996 Td[(\050)]TJ/F14 9.9626 Tf 3.8743 0 Td[(k)]TJ/F11 9.9626 Tf 4.9814 0 Td[(A)]TJ/F14 9.9626 Tf 7.472 0 Td[(kk)]TJ/F11 9.9626 Tf 9.9626 0 Td[(x)]TJ/F14 9.9626 Tf 5.6939 0 Td[(k)]TJ/F8 9.9626 Tf 7.1952 0 Td[(+)]TJ/F14 9.9626 Tf 9.9627 0 Td[(k)]TJ/F11 9.9626 Tf 4.9813 0 Td[(b)]TJ/F14 9.9626 Tf 4.2756 0 Td[(k)]TJ/F8 9.9626 Tf 4.9814 0 Td[(\051)]TJ/F11 9.9626 Tf 7.8372 6.8339 Td[(<)-278(e)1(ps)]TJ/F8 9.9626 Tf -195.6434 -25.0753 Td[(or)]TJ/F14 9.9626 Tf 149.166 -9.2218 Td[(k)]TJ/F11 9.9626 Tf 4.9814 0 Td[(r)]TJ/F10 6.9738 Tf 4.4947 -1.4944 Td[(i)]TJ/F14 9.9626 Tf 3.3168 1.4944 Td[(k)]TJ +/F8 9.9626 Tf 287.2049 587.6554 Td[(\050)]TJ/F14 9.9626 Tf 3.8743 0 Td[(k)]TJ/F11 9.9626 Tf 4.9814 0 Td[(A)]TJ/F14 9.9626 Tf 7.472 0 Td[(kk)]TJ/F11 9.9626 Tf 9.9626 0 Td[(x)]TJ/F10 6.9738 Tf 5.6939 -1.4944 Td[(i)]TJ/F14 9.9626 Tf 3.3169 1.4944 Td[(k)]TJ/F8 9.9626 Tf 7.1952 0 Td[(+)]TJ/F14 9.9626 Tf 9.9626 0 Td[(k)]TJ/F11 9.9626 Tf 4.9813 0 Td[(b)]TJ/F14 9.9626 Tf 4.2757 0 Td[(k)]TJ/F8 9.9626 Tf 4.9813 0 Td[(\051)]TJ/F11 9.9626 Tf 7.8372 6.8339 Td[(<)-278(e)1(ps)]TJ/F8 9.9626 Tf -211.0344 -24.499 Td[(or)-333(th)1(e)-334(2-)-1(n)1(orm)-333(re)-1(sid)1(ual)-333(redu)1(c)-1(ti)1(on)]TJ/F11 9.9626 Tf 133.7712 -22.4677 Td[(er)-28(r)]TJ/F8 9.9626 Tf 16.9492 0 Td[(=)]TJ/F14 9.9626 Tf 12.1783 6.7398 Td[(k)]TJ/F11 9.9626 Tf 4.9813 0 Td[(r)]TJ/F10 6.9738 Tf 4.4947 -1.4944 Td[(i)]TJ/F14 9.9626 Tf 3.3169 1.4944 Td[(k)]TJ ET -1 0 0 1 299.4042 545.988 cm +1 0 0 1 313.1368 549.814 cm q []0 d 0 J @@ -26741,11 +28423,11 @@ q 18.7077 0.1992 l S Q -1 0 0 1 -299.4042 -545.988 cm +1 0 0 1 -313.1368 -549.814 cm BT -/F14 9.9626 Tf 299.4042 536.8627 Td[(k)]TJ/F11 9.9626 Tf 4.9813 0 Td[(b)]TJ/F14 9.9626 Tf 4.2757 0 Td[(k)]TJ/F7 6.9738 Tf 4.9813 -1.4944 Td[(2)]TJ/F11 9.9626 Tf 8.4322 8.3283 Td[(<)-278(e)1(ps)]TJ/F8 9.9626 Tf -171.3698 -24.5239 Td[(acc)-1(ord)1(in)1(g)-334(to)-333(th)1(e)-334(v)56(alue)-334(p)1(as)-1(sed)-333(throu)1(gh)-333(th)1(e)-334(istop)-333(argu)1(m)-1(en)28(t)-333(\050s)-1(ee)-334(lat)1(e)-1(r\051)1(.)]TJ/F18 14.3462 Tf 0 -34.2785 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 7.5048 -22.0372 Td[(call)-333(psb)]TJ +/F14 9.9626 Tf 313.1368 540.6887 Td[(k)]TJ/F11 9.9626 Tf 4.9814 0 Td[(b)]TJ/F14 9.9626 Tf 4.2756 0 Td[(k)]TJ/F7 6.9738 Tf 4.9813 -1.4944 Td[(2)]TJ/F11 9.9626 Tf 8.4322 8.3283 Td[(<)-278(e)1(ps)]TJ/F8 9.9626 Tf -185.1024 -25.0525 Td[(acc)-1(ord)1(in)1(g)-413(to)-412(th)1(e)-413(v)56(alue)-412(pass)-1(ed)-412(thr)1(ough)-412(th)1(e)-413(istop)-412(argu)1(me)-1(n)28(t)-412(\050se)-1(e)-412(late)-1(r)1(\051.)-681(In)-412(the)]TJ 0 -11.9552 Td[(ab)-27(o)27(v)28(e)-320(f)1(orm)27(u)1(lae,)]TJ/F11 9.9626 Tf 71.7384 0 Td[(x)]TJ/F10 6.9738 Tf 5.6939 -1.4944 Td[(i)]TJ/F8 9.9626 Tf 6.5034 1.4944 Td[(is)-320(the)-320(ten)28(tativ)28(e)-320(solut)1(ion)-320(an)1(d)]TJ/F11 9.9626 Tf 125.3559 0 Td[(r)]TJ/F10 6.9738 Tf 4.4947 -1.4944 Td[(i)]TJ/F8 9.9626 Tf 6.0842 1.4944 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(b)]TJ/F14 9.9626 Tf 6.2208 0 Td[(\000)]TJ/F11 9.9626 Tf 9.6939 0 Td[(Ax)]TJ/F10 6.9738 Tf 13.1659 -1.4944 Td[(i)]TJ/F8 9.9626 Tf 6.5034 1.4944 Td[(th)1(e)-321(corresp)-28(on)1(din)1(g)]TJ -265.9706 -11.9552 Td[(res)-1(i)1(du)1(al)-334(at)-333(th)1(e)]TJ/F11 9.9626 Tf 66.5007 0 Td[(i)]TJ/F8 9.9626 Tf 3.4323 0 Td[(-th)-333(iteration)1(.)]TJ/F18 14.3462 Tf -69.933 -32.4803 Td[(Syn)32(t)-1(ax)]TJ/F8 9.9626 Tf 7.5048 -21.8209 Td[(call)-333(psb)]TJ ET -1 0 0 1 192.0717 462.857 cm +1 0 0 1 192.0717 444.2585 cm q []0 d 0 J @@ -26754,11 +28436,11 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -192.0717 -462.857 cm +1 0 0 1 -192.0717 -444.2585 cm BT -/F8 9.9626 Tf 195.0605 462.857 Td[(kr)1(ylo)28(v)-333(\050)]TJ/F19 9.9626 Tf 34.3435 0 Td[(metho)51(d,a,pr)52(e)51(c,b,x)1(,eps,desc)]TJ +/F8 9.9626 Tf 195.0605 444.2585 Td[(kr)1(ylo)28(v)-333(\050)]TJ/F19 9.9626 Tf 34.3435 0 Td[(metho)51(d,a,pr)52(e)51(c,b,x)1(,eps,desc)]TJ ET -1 0 0 1 342.9684 462.857 cm +1 0 0 1 342.9684 444.2585 cm q []0 d 0 J @@ -26767,121 +28449,121 @@ q 3.0552 0.1992 l S Q -1 0 0 1 -342.9684 -462.857 cm +1 0 0 1 -342.9684 -444.2585 cm BT -/F19 9.9626 Tf 346.0237 462.857 Td[(a,i)1(n)-1(f)1(o,itmax,)1(iter,er)1(r,i)1(t)-1(r)52(ac)51(e,i)1(st)-1(op)]TJ/F8 9.9626 Tf 137.013 0 Td[(\051)]TJ +/F19 9.9626 Tf 346.0237 444.2585 Td[(a,i)1(n)-1(f)1(o,itmax,)1(iter,er)1(r,i)1(t)-1(r)52(ac)51(e,i)1(st)-1(op)]TJ/F8 9.9626 Tf 137.013 0 Td[(\051)]TJ ET -1 0 0 1 145.7235 438.6955 cm +1 0 0 1 145.7235 420.3481 cm 0 g 0 G -1 0 0 1 -145.7235 -438.6955 cm +1 0 0 1 -145.7235 -420.3481 cm BT -/F29 9.9626 Tf 150.7049 438.6955 Td[(On)-383(En)32(tr)1(y)]TJ +/F29 9.9626 Tf 150.7049 420.3481 Td[(On)-383(En)32(tr)1(y)]TJ ET -1 0 0 1 198.2901 438.6955 cm +1 0 0 1 198.2901 420.3481 cm 0 g 0 G -1 0 0 1 -52.5665 -20.9301 cm +1 0 0 1 -52.5665 -18.8441 cm 0 g 0 G -1 0 0 1 -145.7236 -417.7654 cm +1 0 0 1 -145.7236 -401.504 cm BT -/F29 9.9626 Tf 150.7049 417.7654 Td[(met)-1(ho)-31(d)]TJ +/F29 9.9626 Tf 150.7049 401.504 Td[(met)-1(ho)-31(d)]TJ ET -1 0 0 1 188.7357 417.7654 cm +1 0 0 1 188.7357 401.504 cm 0 g 0 G -1 0 0 1 -188.7357 -417.7654 cm +1 0 0 1 -188.7357 -401.504 cm BT -/F8 9.9626 Tf 193.717 417.7654 Td[(a)-338(s)-1(tr)1(ing)-338(that)-338(de\014n)1(e)-1(s)-338(the)-339(it)1(e)-1(rat)1(iv)28(e)-339(me)-1(th)1(o)-28(d)-338(to)-338(b)-28(e)-339(u)1(s)-1(ed.)-459(V)83(alid)-338(v)56(alu)1(e)-1(s)-338(in)]TJ -18.1055 -11.9551 Td[(PS)1(BLAS-2.0)-333(are)-1(:)]TJ +/F8 9.9626 Tf 193.717 401.504 Td[(a)-338(s)-1(tr)1(ing)-338(that)-338(de\014n)1(e)-1(s)-338(the)-339(it)1(e)-1(rat)1(iv)28(e)-339(me)-1(th)1(o)-28(d)-338(to)-338(b)-28(e)-339(u)1(s)-1(ed.)-459(V)83(alid)-338(v)56(alu)1(e)-1(s)-338(in)]TJ -18.1055 -11.9551 Td[(PS)1(BLAS-2.0)-333(are)-1(:)]TJ ET -1 0 0 1 170.6302 384.8803 cm +1 0 0 1 170.6302 370.7048 cm 0 g 0 G -1 0 0 1 -170.6302 -384.8803 cm +1 0 0 1 -170.6302 -370.7048 cm BT -/F29 9.9626 Tf 175.6115 384.8803 Td[(CG)]TJ +/F29 9.9626 Tf 175.6115 370.7048 Td[(CG)]TJ ET -1 0 0 1 192.8938 384.8803 cm +1 0 0 1 192.8938 370.7048 cm 0 g 0 G -1 0 0 1 -192.8938 -384.8803 cm +1 0 0 1 -192.8938 -370.7048 cm BT -/F8 9.9626 Tf 197.8751 384.8803 Td[(:)-444(the)-333(C)-1(on)1(ju)1(gate)-334(grad)1(ien)28(t)-334(metho)-28(d)1(;)]TJ +/F8 9.9626 Tf 197.8751 370.7048 Td[(:)-444(the)-333(C)-1(on)1(ju)1(gate)-334(grad)1(ien)28(t)-334(metho)-28(d)1(;)]TJ ET -1 0 0 1 170.6302 368.4377 cm +1 0 0 1 170.6302 355.8458 cm 0 g 0 G -1 0 0 1 -170.6302 -368.4377 cm +1 0 0 1 -170.6302 -355.8458 cm BT -/F29 9.9626 Tf 175.6115 368.4377 Td[(CGS)]TJ +/F29 9.9626 Tf 175.6115 355.8458 Td[(CGS)]TJ ET -1 0 0 1 199.2588 368.4377 cm +1 0 0 1 199.2588 355.8458 cm 0 g 0 G -1 0 0 1 -199.2588 -368.4377 cm +1 0 0 1 -199.2588 -355.8458 cm BT -/F8 9.9626 Tf 204.2401 368.4377 Td[(:th)1(e)-334(Conj)1(ugate)-334(G)1(radi)1(e)-1(n)28(t)-333(S)1(tabil)1(iz)-1(ed)-333(me)-1(th)1(o)-28(d)1(;)]TJ +/F8 9.9626 Tf 204.2401 355.8458 Td[(:th)1(e)-334(Conj)1(ugate)-334(G)1(radi)1(e)-1(n)28(t)-333(S)1(tabil)1(iz)-1(ed)-333(me)-1(th)1(o)-28(d)1(;)]TJ ET -1 0 0 1 170.6302 351.9951 cm +1 0 0 1 170.6302 340.9867 cm 0 g 0 G -1 0 0 1 -170.6302 -351.9951 cm +1 0 0 1 -170.6302 -340.9867 cm BT -/F29 9.9626 Tf 175.6115 351.9951 Td[(BICG)]TJ +/F29 9.9626 Tf 175.6115 340.9867 Td[(BICG)]TJ ET -1 0 0 1 205.3885 351.9951 cm +1 0 0 1 205.3885 340.9867 cm 0 g 0 G -1 0 0 1 -205.3885 -351.9951 cm +1 0 0 1 -205.3885 -340.9867 cm BT -/F8 9.9626 Tf 210.3699 351.9951 Td[(:)-444(the)-333(B)-1(i-Conj)1(ugate)-333(Grad)1(ie)-1(n)29(t)-334(metho)-28(d)1(;)]TJ +/F8 9.9626 Tf 210.3699 340.9867 Td[(:)-444(the)-333(B)-1(i-Conj)1(ugate)-333(Grad)1(ie)-1(n)29(t)-334(metho)-28(d)1(;)]TJ ET -1 0 0 1 170.6302 335.5525 cm +1 0 0 1 170.6302 326.1277 cm 0 g 0 G -1 0 0 1 -170.6302 -335.5525 cm +1 0 0 1 -170.6302 -326.1277 cm BT -/F29 9.9626 Tf 175.6115 335.5525 Td[(BICGST)96(AB)]TJ +/F29 9.9626 Tf 175.6115 326.1277 Td[(BICGST)96(AB)]TJ ET -1 0 0 1 235.5807 335.5525 cm +1 0 0 1 235.5807 326.1277 cm 0 g 0 G -1 0 0 1 -235.5807 -335.5525 cm +1 0 0 1 -235.5807 -326.1277 cm BT -/F8 9.9626 Tf 240.562 335.5525 Td[(:)-444(the)-333(B)-1(i-Conj)1(ugate)-333(Grad)1(ie)-1(n)29(t)-334(S)1(tabi)1(lize)-1(d)-333(me)-1(t)1(ho)-28(d)1(;)]TJ +/F8 9.9626 Tf 240.562 326.1277 Td[(:)-444(the)-333(B)-1(i-Conj)1(ugate)-333(Grad)1(ie)-1(n)29(t)-334(S)1(tabi)1(lize)-1(d)-333(me)-1(t)1(ho)-28(d)1(;)]TJ ET -1 0 0 1 170.6302 319.1099 cm +1 0 0 1 170.6302 311.2686 cm 0 g 0 G -1 0 0 1 -170.6302 -319.1099 cm +1 0 0 1 -170.6302 -311.2686 cm BT -/F29 9.9626 Tf 175.6115 319.1099 Td[(BICGST)96(ABL)]TJ +/F29 9.9626 Tf 175.6115 311.2686 Td[(BICGST)96(ABL)]TJ ET -1 0 0 1 242.4715 319.1099 cm +1 0 0 1 242.4715 311.2686 cm 0 g 0 G -1 0 0 1 -242.4715 -319.1099 cm +1 0 0 1 -242.4715 -311.2686 cm BT -/F8 9.9626 Tf 247.4528 319.1099 Td[(:)-389(th)1(e)-223(Bi-Conju)1(gate)-223(G)1(radi)1(e)-1(n)28(t)-222(S)1(tabil)1(iz)-1(ed)-222(me)-1(t)1(ho)-28(d)-222(with)-221(res)-1(tar)1(t-)]TJ -49.9235 -11.9552 Td[(in)1(g;)]TJ +/F8 9.9626 Tf 247.4528 311.2686 Td[(:)-389(th)1(e)-223(Bi-Conju)1(gate)-223(G)1(radi)1(e)-1(n)28(t)-222(S)1(tabil)1(iz)-1(ed)-222(me)-1(t)1(ho)-28(d)-222(with)-221(res)-1(tar)1(t-)]TJ -49.9235 -11.9552 Td[(in)1(g;)]TJ ET -1 0 0 1 170.6302 290.7122 cm +1 0 0 1 170.6302 284.4544 cm 0 g 0 G -1 0 0 1 -170.6302 -290.7122 cm +1 0 0 1 -170.6302 -284.4544 cm BT -/F29 9.9626 Tf 175.6115 290.7122 Td[(R)31(GM)1(R)-1(E)1(S)]TJ +/F29 9.9626 Tf 175.6115 284.4544 Td[(R)31(GM)1(R)-1(E)1(S)]TJ ET -1 0 0 1 226.2546 290.7122 cm +1 0 0 1 226.2546 284.4544 cm 0 g 0 G -1 0 0 1 -226.2546 -290.7122 cm +1 0 0 1 -226.2546 -284.4544 cm BT -/F8 9.9626 Tf 231.236 290.7122 Td[(:)-444(the)-333(Ge)-1(n)1(e)-1(r)1(alize)-1(d)-333(M)1(ini)1(m)-1(al)-333(Res)-1(id)1(ual)-333(me)-1(th)1(o)-28(d)-333(with)-333(r)1(e)-1(starti)1(ng.)]TJ +/F8 9.9626 Tf 231.236 284.4544 Td[(:)-444(the)-333(Ge)-1(n)1(e)-1(r)1(alize)-1(d)-333(M)1(ini)1(m)-1(al)-333(Res)-1(id)1(ual)-333(me)-1(th)1(o)-28(d)-333(with)-333(r)1(e)-1(starti)1(ng.)]TJ ET -1 0 0 1 145.7235 269.7822 cm +1 0 0 1 145.7235 265.6103 cm 0 g 0 G -1 0 0 1 -145.7235 -269.7822 cm +1 0 0 1 -145.7235 -265.6103 cm BT -/F29 9.9626 Tf 150.7049 269.7822 Td[(a)]TJ +/F29 9.9626 Tf 150.7049 265.6103 Td[(a)]TJ ET -1 0 0 1 156.2742 269.7822 cm +1 0 0 1 156.2742 265.6103 cm 0 g 0 G -1 0 0 1 -156.2742 -269.7822 cm +1 0 0 1 -156.2742 -265.6103 cm BT -/F8 9.9626 Tf 161.2555 269.7822 Td[(th)1(e)-334(lo)-28(cal)-333(p)-28(or)1(tion)-333(of)-333(glob)1(al)-333(s)-1(p)1(arse)-334(m)-1(at)1(rix)]TJ/F11 9.9626 Tf 178.9682 0 Td[(A)]TJ/F8 9.9626 Tf 7.4719 0 Td[(.)]TJ -172.0841 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ +/F8 9.9626 Tf 161.2555 265.6103 Td[(th)1(e)-334(lo)-28(cal)-333(p)-28(or)1(tion)-333(of)-333(glob)1(al)-333(s)-1(p)1(arse)-334(m)-1(at)1(rix)]TJ/F11 9.9626 Tf 178.9682 0 Td[(A)]TJ/F8 9.9626 Tf 7.4719 0 Td[(.)]TJ -172.0841 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ ET -1 0 0 1 346.5264 233.9167 cm +1 0 0 1 346.5264 229.7448 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -346.5264 -233.9167 cm +1 0 0 1 -346.5264 -229.7448 cm BT -/F32 9.9626 Tf 346.5264 233.9167 Td[(psb)]TJ +/F32 9.9626 Tf 346.5264 229.7448 Td[(psb)]TJ ET -1 0 0 1 362.8451 233.9167 cm +1 0 0 1 362.8451 229.7448 cm q []0 d 0 J @@ -26890,11 +28572,11 @@ q 3.1382 0.1992 l S Q -1 0 0 1 -362.8451 -233.9167 cm +1 0 0 1 -362.8451 -229.7448 cm BT -/F32 9.9626 Tf 365.9833 233.9167 Td[(spmat)]TJ +/F32 9.9626 Tf 365.9833 229.7448 Td[(spmat)]TJ ET -1 0 0 1 392.7626 233.9167 cm +1 0 0 1 392.7626 229.7448 cm q []0 d 0 J @@ -26903,35 +28585,35 @@ q 3.1382 0.1992 l S Q -1 0 0 1 -392.7626 -233.9167 cm +1 0 0 1 -392.7626 -229.7448 cm BT -/F32 9.9626 Tf 395.9008 233.9167 Td[(type)]TJ +/F32 9.9626 Tf 395.9008 229.7448 Td[(type)]TJ ET -1 0 0 1 416.8222 233.9167 cm +1 0 0 1 416.8222 229.7448 cm 0 g 0 G -1 0 0 1 -416.8222 -233.9167 cm +1 0 0 1 -416.8222 -229.7448 cm BT -/F8 9.9626 Tf 416.8222 233.9167 Td[(.)]TJ +/F8 9.9626 Tf 416.8222 229.7448 Td[(.)]TJ ET -1 0 0 1 145.7235 212.9866 cm +1 0 0 1 145.7235 210.9007 cm 0 g 0 G -1 0 0 1 -145.7235 -212.9866 cm +1 0 0 1 -145.7235 -210.9007 cm BT -/F29 9.9626 Tf 150.7049 212.9866 Td[(pr)1(e)-1(c)]TJ +/F29 9.9626 Tf 150.7049 210.9007 Td[(pr)1(e)-1(c)]TJ ET -1 0 0 1 172.1314 212.9866 cm +1 0 0 1 172.1314 210.9007 cm 0 g 0 G -1 0 0 1 -172.1314 -212.9866 cm +1 0 0 1 -172.1314 -210.9007 cm BT -/F8 9.9626 Tf 177.1127 212.9866 Td[(The)-334(d)1(ata)-333(s)-1(tr)1(uctur)1(e)-334(c)-1(on)29(tainin)1(g)-333(the)-334(p)1(rec)-1(on)1(diti)1(oner.)]TJ -1.5012 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ +/F8 9.9626 Tf 177.1127 210.9007 Td[(The)-334(d)1(ata)-333(s)-1(tr)1(uctur)1(e)-334(c)-1(on)29(tainin)1(g)-333(the)-334(p)1(rec)-1(on)1(diti)1(oner.)]TJ -1.5012 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3786 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3786 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ ET -1 0 0 1 346.5264 177.1211 cm +1 0 0 1 346.5264 175.0352 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -346.5264 -177.1211 cm +1 0 0 1 -346.5264 -175.0352 cm BT -/F32 9.9626 Tf 346.5264 177.1211 Td[(psb)]TJ +/F32 9.9626 Tf 346.5264 175.0352 Td[(psb)]TJ ET -1 0 0 1 362.8451 177.1211 cm +1 0 0 1 362.8451 175.0352 cm q []0 d 0 J @@ -26940,11 +28622,11 @@ q 3.1382 0.1992 l S Q -1 0 0 1 -362.8451 -177.1211 cm +1 0 0 1 -362.8451 -175.0352 cm BT -/F32 9.9626 Tf 365.9833 177.1211 Td[(prec)]TJ +/F32 9.9626 Tf 365.9833 175.0352 Td[(prec)]TJ ET -1 0 0 1 387.5322 177.1211 cm +1 0 0 1 387.5322 175.0352 cm q []0 d 0 J @@ -26953,15 +28635,15 @@ q 3.1382 0.1992 l S Q -1 0 0 1 -387.5322 -177.1211 cm +1 0 0 1 -387.5322 -175.0352 cm BT -/F32 9.9626 Tf 390.6705 177.1211 Td[(type)]TJ +/F32 9.9626 Tf 390.6705 175.0352 Td[(type)]TJ ET -1 0 0 1 411.5918 177.1211 cm +1 0 0 1 411.5918 175.0352 cm 0 g 0 G -1 0 0 1 -411.5918 -177.1211 cm +1 0 0 1 -411.5918 -175.0352 cm BT -/F8 9.9626 Tf 411.5918 177.1211 Td[(.)]TJ +/F8 9.9626 Tf 411.5918 175.0352 Td[(.)]TJ ET 1 0 0 1 145.7235 156.1911 cm 0 g 0 G @@ -26979,49 +28661,49 @@ ET 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 315.0884 90.4377 Td[(104)]TJ +/F8 9.9626 Tf 315.0884 90.4377 Td[(110)]TJ ET 1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1301 0 obj << +1384 0 obj << /Type /Page -/Contents 1302 0 R -/Resources 1300 0 R +/Contents 1385 0 R +/Resources 1383 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1282 0 R -/Annots [ 1305 0 R 1306 0 R ] +/Parent 1357 0 R +/Annots [ 1388 0 R 1389 0 R ] >> endobj -1305 0 obj << +1388 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [345.5302 230.7065 417.8184 241.8314] +/Rect [345.5302 226.5346 417.8184 237.6596] /Subtype /Link /A << /S /GoTo /D (spdata) >> >> endobj -1306 0 obj << +1389 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [345.5302 173.9109 412.5881 185.0359] +/Rect [345.5302 171.825 412.5881 182.95] /Subtype /Link /A << /S /GoTo /D (precdata) >> >> endobj -1303 0 obj << -/D [1301 0 R /XYZ 150.7049 740.9981 null] +1386 0 obj << +/D [1384 0 R /XYZ 150.7049 740.9981 null] >> endobj -358 0 obj << -/D [1301 0 R /XYZ 150.7049 657.8772 null] +390 0 obj << +/D [1384 0 R /XYZ 150.7049 663.9253 null] >> endobj -1304 0 obj << -/D [1301 0 R /XYZ 150.7049 472.0226 null] +1387 0 obj << +/D [1384 0 R /XYZ 150.7049 453.4241 null] >> endobj -1300 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F14 535 0 R /F11 504 0 R /F10 532 0 R /F7 515 0 R /F19 489 0 R /F29 375 0 R /F32 510 0 R >> +1383 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F11 548 0 R /F14 579 0 R /F10 576 0 R /F7 559 0 R /F19 533 0 R /F29 407 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1309 0 obj << -/Length 7511 +1392 0 obj << +/Length 7844 >> stream 1 0 0 1 99.8954 740.9981 cm @@ -27040,25 +28722,25 @@ ET BT /F8 9.9626 Tf 110.9235 706.1289 Td[(The)-334(i)1(niti)1(al)-333(gues)-1(s.)]TJ 13.8785 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(rank)-333(on)1(e)-334(arra)28(y)84(.)]TJ ET -1 0 0 1 94.9141 650.9713 cm +1 0 0 1 94.9141 651.9277 cm 0 g 0 G -1 0 0 1 -94.9141 -650.9713 cm +1 0 0 1 -94.9141 -651.9277 cm BT -/F29 9.9626 Tf 99.8954 650.9713 Td[(eps)]TJ +/F29 9.9626 Tf 99.8954 651.9277 Td[(eps)]TJ ET -1 0 0 1 116.0306 650.9713 cm +1 0 0 1 116.0306 651.9277 cm 0 g 0 G -1 0 0 1 -116.0306 -650.9713 cm +1 0 0 1 -116.0306 -651.9277 cm BT -/F8 9.9626 Tf 121.0119 650.9713 Td[(The)-334(stop)1(pin)1(g)-334(tol)1(e)-1(r)1(ance)-1(.)]TJ 3.7901 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(re)-1(al)-333(n)29(um)27(b)-27(er.)]TJ +/F8 9.9626 Tf 121.0119 651.9277 Td[(The)-334(stop)1(pin)1(g)-334(tol)1(e)-1(r)1(ance)-1(.)]TJ 3.7901 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(re)-1(al)-333(n)29(um)27(b)-27(er.)]TJ ET -1 0 0 1 94.9141 595.8137 cm +1 0 0 1 94.9141 597.7265 cm 0 g 0 G -1 0 0 1 -94.9141 -595.8137 cm +1 0 0 1 -94.9141 -597.7265 cm BT -/F29 9.9626 Tf 99.8954 595.8137 Td[(desc)]TJ +/F29 9.9626 Tf 99.8954 597.7265 Td[(desc)]TJ ET -1 0 0 1 121.81 595.8137 cm +1 0 0 1 121.81 597.7265 cm q []0 d 0 J @@ -27067,23 +28749,23 @@ q 3.4371 0.1992 l S Q -1 0 0 1 -121.81 -595.8137 cm +1 0 0 1 -121.81 -597.7265 cm BT -/F29 9.9626 Tf 125.2471 595.8137 Td[(a)]TJ +/F29 9.9626 Tf 125.2471 597.7265 Td[(a)]TJ ET -1 0 0 1 130.8165 595.8137 cm +1 0 0 1 130.8165 597.7265 cm 0 g 0 G -1 0 0 1 -130.8165 -595.8137 cm +1 0 0 1 -130.8165 -597.7265 cm BT -/F8 9.9626 Tf 135.7978 595.8137 Td[(con)28(tain)1(s)-334(data)-333(structu)1(re)-1(s)-333(for)-333(com)-1(m)28(un)1(ic)-1(ati)1(ons.)]TJ -10.9958 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6113 0 Td[(required)]TJ/F8 9.9626 Tf -29.6113 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ +/F8 9.9626 Tf 135.7978 597.7265 Td[(con)28(tain)1(s)-334(data)-333(structu)1(re)-1(s)-333(for)-333(com)-1(m)28(un)1(ic)-1(ati)1(ons.)]TJ -10.9958 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6113 0 Td[(required)]TJ/F8 9.9626 Tf -29.6113 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(s)-1(tr)1(uctured)-333(dat)1(a)-334(of)-333(t)28(yp)-27(e)]TJ ET -1 0 0 1 295.717 559.9482 cm +1 0 0 1 295.717 561.861 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -295.717 -559.9482 cm +1 0 0 1 -295.717 -561.861 cm BT -/F32 9.9626 Tf 295.717 559.9482 Td[(psb)]TJ +/F32 9.9626 Tf 295.717 561.861 Td[(psb)]TJ ET -1 0 0 1 312.0356 559.9482 cm +1 0 0 1 312.0356 561.861 cm q []0 d 0 J @@ -27092,11 +28774,11 @@ q 3.1382 0.1992 l S Q -1 0 0 1 -312.0356 -559.9482 cm +1 0 0 1 -312.0356 -561.861 cm BT -/F32 9.9626 Tf 315.1738 559.9482 Td[(desc)]TJ +/F32 9.9626 Tf 315.1738 561.861 Td[(desc)]TJ ET -1 0 0 1 336.7228 559.9482 cm +1 0 0 1 336.7228 561.861 cm q []0 d 0 J @@ -27105,141 +28787,141 @@ q 3.1382 0.1992 l S Q -1 0 0 1 -336.7228 -559.9482 cm +1 0 0 1 -336.7228 -561.861 cm BT -/F32 9.9626 Tf 339.861 559.9482 Td[(type)]TJ +/F32 9.9626 Tf 339.861 561.861 Td[(type)]TJ ET -1 0 0 1 360.7824 559.9482 cm +1 0 0 1 360.7824 561.861 cm 0 g 0 G -1 0 0 1 -360.7824 -559.9482 cm +1 0 0 1 -360.7824 -561.861 cm BT -/F8 9.9626 Tf 360.7824 559.9482 Td[(.)]TJ +/F8 9.9626 Tf 360.7824 561.861 Td[(.)]TJ ET -1 0 0 1 94.9141 540.656 cm +1 0 0 1 94.9141 543.5253 cm 0 g 0 G -1 0 0 1 -94.9141 -540.656 cm +1 0 0 1 -94.9141 -543.5253 cm BT -/F29 9.9626 Tf 99.8954 540.656 Td[(it)-1(max)]TJ +/F29 9.9626 Tf 99.8954 543.5253 Td[(it)-1(max)]TJ ET -1 0 0 1 128.6969 540.656 cm +1 0 0 1 128.6969 543.5253 cm 0 g 0 G -1 0 0 1 -128.6969 -540.656 cm +1 0 0 1 -128.6969 -543.5253 cm BT -/F8 9.9626 Tf 133.6783 540.656 Td[(The)-334(maxi)1(m)27(um)-333(n)28(um)28(b)-27(e)-1(r)-333(of)-333(iterati)1(ons)-334(to)-333(p)-27(e)-1(r)1(form.)]TJ -8.8763 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6113 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6113 -11.9552 Td[(Defau)1(lt:)]TJ/F11 9.9626 Tf 39.4356 0 Td[(itma)1(x)]TJ/F8 9.9626 Tf 29.5046 0 Td[(=)-278(1000.)]TJ -68.9402 -11.9551 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)]TJ/F11 9.9626 Tf 142.0786 0 Td[(itma)1(x)]TJ/F14 9.9626 Tf 29.5046 0 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(1.)]TJ +/F8 9.9626 Tf 133.6783 543.5253 Td[(The)-334(maxi)1(m)27(um)-333(n)28(um)28(b)-27(e)-1(r)-333(of)-333(iterati)1(ons)-334(to)-333(p)-27(e)-1(r)1(form.)]TJ -8.8763 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6113 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6113 -11.9552 Td[(Defau)1(lt:)]TJ/F11 9.9626 Tf 39.4356 0 Td[(itma)1(x)]TJ/F8 9.9626 Tf 29.5046 0 Td[(=)-278(1000.)]TJ -68.9402 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(an)-333(in)28(t)1(e)-1(ger)-333(v)55(ar)1(iabl)1(e)]TJ/F11 9.9626 Tf 142.0786 0 Td[(itma)1(x)]TJ/F14 9.9626 Tf 29.5046 0 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(1.)]TJ ET -1 0 0 1 94.9141 473.5433 cm +1 0 0 1 94.9141 477.3689 cm 0 g 0 G -1 0 0 1 -94.9141 -473.5433 cm +1 0 0 1 -94.9141 -477.3689 cm BT -/F29 9.9626 Tf 99.8954 473.5433 Td[(it)-1(r)1(ace)]TJ +/F29 9.9626 Tf 99.8954 477.3689 Td[(it)-1(r)1(ace)]TJ ET -1 0 0 1 128.1642 473.5433 cm +1 0 0 1 128.1642 477.3689 cm 0 g 0 G -1 0 0 1 -128.1642 -473.5433 cm +1 0 0 1 -128.1642 -477.3689 cm BT -/F8 9.9626 Tf 133.1456 473.5433 Td[(If)]TJ/F11 9.9626 Tf 8.9119 0 Td[(>)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)-228(p)1(rin)28(t)-227(out)-228(an)-227(inf)1(ormation)1(al)-228(me)-1(ss)-1(age)-228(ab)-27(out)-228(con)28(v)28(ergence)-229(ev)28(e)-1(r)1(y)]TJ/F11 9.9626 Tf 265.0151 0 Td[(itr)-28(a)1(ce)]TJ/F8 9.9626 Tf -292.7867 -11.9552 Td[(iterati)1(ons.)]TJ 0 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ +/F8 9.9626 Tf 133.1456 477.3689 Td[(If)]TJ/F11 9.9626 Tf 8.9119 0 Td[(>)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)-228(p)1(rin)28(t)-227(out)-228(an)-227(inf)1(ormation)1(al)-228(me)-1(ss)-1(age)-228(ab)-27(out)-228(con)28(v)28(ergence)-229(ev)28(e)-1(r)1(y)]TJ/F11 9.9626 Tf 265.0151 0 Td[(itr)-28(a)1(ce)]TJ/F8 9.9626 Tf -292.7867 -11.9552 Td[(iterati)1(ons.)]TJ 0 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ ET -1 0 0 1 94.9141 406.4305 cm +1 0 0 1 94.9141 411.2126 cm 0 g 0 G -1 0 0 1 -94.9141 -406.4305 cm +1 0 0 1 -94.9141 -411.2126 cm BT -/F29 9.9626 Tf 99.8954 406.4305 Td[(istop)]TJ +/F29 9.9626 Tf 99.8954 411.2126 Td[(istop)]TJ ET -1 0 0 1 124.146 406.4305 cm +1 0 0 1 124.146 411.2126 cm 0 g 0 G -1 0 0 1 -124.146 -406.4305 cm +1 0 0 1 -124.146 -411.2126 cm BT -/F8 9.9626 Tf 129.1273 406.4305 Td[(An)-333(in)29(te)-1(ger)-333(s)-1(p)-27(ec)-1(if)1(yin)1(g)-334(th)1(e)-334(stopp)1(ing)-333(c)-1(r)1(iterion)1(.)]TJ -4.3253 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ +/F8 9.9626 Tf 129.1273 411.2126 Td[(An)-333(in)29(te)-1(ger)-333(s)-1(p)-27(ec)-1(if)1(yin)1(g)-334(th)1(e)-334(stopp)1(ing)-333(c)-1(r)1(iterion)1(.)]TJ -4.3253 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf 40.5768 0 Td[(.)]TJ -70.188 -11.9551 Td[(V)83(al)1(ues)-1(:)-478(1:)-479(u)1(s)-1(e)-351(th)1(e)-351(nor)1(m)27(wise)-351(bac)28(kw)27(ar)1(d)-350(e)-1(r)1(ror,)-354(2:)-479(u)1(s)-1(e)-351(th)1(e)-351(sc)-1(aled)-350(2-)-1(n)1(orm)-351(of)]TJ 0 -11.9552 Td[(th)1(e)-334(res)-1(id)1(ual)1(.)-445(Defau)1(lt:)-444(1.)]TJ ET -1 0 0 1 94.9141 351.2729 cm +1 0 0 1 94.9141 345.0562 cm 0 g 0 G -1 0 0 1 -94.9141 -351.2729 cm +1 0 0 1 -94.9141 -345.0562 cm BT -/F29 9.9626 Tf 99.8954 351.2729 Td[(On)-383(R)-1(etur)1(n)]TJ +/F29 9.9626 Tf 99.8954 345.0562 Td[(On)-383(R)-1(etur)1(n)]TJ ET -1 0 0 1 154.4337 351.2729 cm +1 0 0 1 154.4337 345.0562 cm 0 g 0 G -1 0 0 1 -59.5196 -19.2921 cm +1 0 0 1 -59.5196 -18.3357 cm 0 g 0 G -1 0 0 1 -94.9141 -331.9808 cm +1 0 0 1 -94.9141 -326.7205 cm BT -/F29 9.9626 Tf 99.8954 331.9808 Td[(x)]TJ +/F29 9.9626 Tf 99.8954 326.7205 Td[(x)]TJ ET -1 0 0 1 105.9421 331.9808 cm +1 0 0 1 105.9421 326.7205 cm 0 g 0 G -1 0 0 1 -105.9421 -331.9808 cm +1 0 0 1 -105.9421 -326.7205 cm BT -/F8 9.9626 Tf 110.9235 331.9808 Td[(The)-334(compu)1(te)-1(d)-333(solu)1(tion.)]TJ 13.8785 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(rank)-333(on)1(e)-334(arra)28(y)84(.)]TJ +/F8 9.9626 Tf 110.9235 326.7205 Td[(The)-334(compu)1(te)-1(d)-333(solu)1(tion.)]TJ 13.8785 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Sp)-27(ec)-1(i\014)1(e)-1(d)-332(as)-1(:)-444(a)-333(rank)-333(on)1(e)-334(arra)28(y)84(.)]TJ ET -1 0 0 1 94.9141 276.8232 cm +1 0 0 1 94.9141 272.5193 cm 0 g 0 G -1 0 0 1 -94.9141 -276.8232 cm +1 0 0 1 -94.9141 -272.5193 cm BT -/F29 9.9626 Tf 99.8954 276.8232 Td[(it)-1(er)]TJ +/F29 9.9626 Tf 99.8954 272.5193 Td[(it)-1(er)]TJ ET -1 0 0 1 117.5029 276.8232 cm +1 0 0 1 117.5029 272.5193 cm 0 g 0 G -1 0 0 1 -117.5029 -276.8232 cm +1 0 0 1 -117.5029 -272.5193 cm BT -/F8 9.9626 Tf 122.4842 276.8232 Td[(The)-334(n)29(um)28(b)-28(er)-333(of)-333(iteration)1(s)-334(p)-27(e)-1(r)1(formed.)]TJ 2.3178 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Re)-1(t)1(urn)1(e)-1(d)-333(as:)-444(an)-333(in)28(teger)-333(v)55(ar)1(iable.)]TJ +/F8 9.9626 Tf 122.4842 272.5193 Td[(The)-334(n)29(um)28(b)-28(er)-333(of)-333(iteration)1(s)-334(p)-27(e)-1(r)1(formed.)]TJ 2.3178 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Re)-1(t)1(urn)1(e)-1(d)-333(as:)-444(an)-333(in)28(teger)-333(v)55(ar)1(iable.)]TJ ET -1 0 0 1 94.9141 221.6656 cm +1 0 0 1 94.9141 218.3181 cm 0 g 0 G -1 0 0 1 -94.9141 -221.6656 cm +1 0 0 1 -94.9141 -218.3181 cm BT -/F29 9.9626 Tf 99.8954 221.6656 Td[(err)]TJ +/F29 9.9626 Tf 99.8954 218.3181 Td[(err)]TJ ET -1 0 0 1 114.5833 221.6656 cm +1 0 0 1 114.5833 218.3181 cm 0 g 0 G -1 0 0 1 -114.5833 -221.6656 cm +1 0 0 1 -114.5833 -218.3181 cm BT -/F8 9.9626 Tf 119.5646 221.6656 Td[(The)-334(con)28(v)28(ergence)-334(e)-1(stimate)-334(on)-333(exit.)]TJ 5.2374 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Re)-1(t)1(urn)1(e)-1(d)-333(as:)-444(a)-334(r)1(e)-1(al)-333(n)28(u)1(m)27(b)-27(e)-1(r)1(.)]TJ +/F8 9.9626 Tf 119.5646 218.3181 Td[(The)-334(con)28(v)28(ergence)-334(e)-1(stimate)-334(on)-333(exit.)]TJ 5.2374 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(global)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(opti)-1(on)1(al)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(Re)-1(t)1(urn)1(e)-1(d)-333(as:)-444(a)-334(r)1(e)-1(al)-333(n)28(u)1(m)27(b)-27(e)-1(r)1(.)]TJ ET -1 0 0 1 94.9141 166.508 cm +1 0 0 1 94.9141 164.1169 cm 0 g 0 G -1 0 0 1 -94.9141 -166.508 cm +1 0 0 1 -94.9141 -164.1169 cm BT -/F29 9.9626 Tf 99.8954 166.508 Td[(inf)-1(o)]TJ +/F29 9.9626 Tf 99.8954 164.1169 Td[(inf)-1(o)]TJ ET -1 0 0 1 118.6721 166.508 cm +1 0 0 1 118.6721 164.1169 cm 0 g 0 G -1 0 0 1 -118.6721 -166.508 cm +1 0 0 1 -118.6721 -164.1169 cm BT -/F8 9.9626 Tf 123.6534 166.508 Td[(Er)1(ror)-333(co)-28(de.)]TJ 1.1486 -11.9552 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3787 -11.9551 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(An)-333(in)29(te)-1(ger)-333(v)56(alue;)-333(0)-334(means)-334(n)1(o)-334(error)-333(h)1(as)-334(b)-27(e)-1(en)-333(detec)-1(ted.)]TJ +/F8 9.9626 Tf 123.6534 164.1169 Td[(Er)1(ror)-333(co)-28(de.)]TJ 1.1486 -11.9551 Td[(Scop)-27(e)-1(:)]TJ/F29 9.9626 Tf 32.3787 0 Td[(lo)-32(ca)-1(l)]TJ/F8 9.9626 Tf -32.3787 -11.9552 Td[(T)28(yp)-28(e:)]TJ/F29 9.9626 Tf 29.6112 0 Td[(required)]TJ/F8 9.9626 Tf -29.6112 -11.9552 Td[(An)-333(in)29(te)-1(ger)-333(v)56(alue;)-333(0)-334(means)-334(n)1(o)-334(error)-333(h)1(as)-334(b)-27(e)-1(en)-333(detec)-1(ted.)]TJ ET 1 0 0 1 99.8954 90.4377 cm 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 264.2789 90.4377 Td[(105)]TJ +/F8 9.9626 Tf 264.2789 90.4377 Td[(111)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1308 0 obj << +1391 0 obj << /Type /Page -/Contents 1309 0 R -/Resources 1307 0 R +/Contents 1392 0 R +/Resources 1390 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1282 0 R -/Annots [ 1311 0 R ] +/Parent 1395 0 R +/Annots [ 1394 0 R ] >> endobj -1311 0 obj << +1394 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [294.7207 556.738 361.7786 567.8629] +/Rect [294.7207 558.6508 361.7786 569.7757] /Subtype /Link /A << /S /GoTo /D (descdata) >> >> endobj -1310 0 obj << -/D [1308 0 R /XYZ 99.8954 740.9981 null] +1393 0 obj << +/D [1391 0 R /XYZ 99.8954 740.9981 null] >> endobj -1307 0 obj << -/Font << /F29 375 0 R /F8 378 0 R /F32 510 0 R /F11 504 0 R /F14 535 0 R >> +1390 0 obj << +/Font << /F29 407 0 R /F8 410 0 R /F32 554 0 R /F11 548 0 R /F14 579 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1314 0 obj << +1398 0 obj << /Length 9688 >> stream @@ -27399,66 +29081,66 @@ ET 0 g 0 G 1 0 0 1 -150.7049 -90.4377 cm BT -/F8 9.9626 Tf 315.0884 90.4377 Td[(106)]TJ +/F8 9.9626 Tf 315.0884 90.4377 Td[(112)]TJ ET 1 0 0 1 494.4159 90.4377 cm 0 g 0 G endstream endobj -1313 0 obj << +1397 0 obj << /Type /Page -/Contents 1314 0 R -/Resources 1312 0 R +/Contents 1398 0 R +/Resources 1396 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1324 0 R +/Parent 1395 0 R >> endobj -1315 0 obj << -/D [1313 0 R /XYZ 150.7049 740.9981 null] +1399 0 obj << +/D [1397 0 R /XYZ 150.7049 740.9981 null] >> endobj -1316 0 obj << -/D [1313 0 R /XYZ 150.7049 695.8497 null] +1400 0 obj << +/D [1397 0 R /XYZ 150.7049 695.8497 null] >> endobj -494 0 obj << -/D [1313 0 R /XYZ 150.7049 700.3148 null] +538 0 obj << +/D [1397 0 R /XYZ 150.7049 700.3148 null] >> endobj -495 0 obj << -/D [1313 0 R /XYZ 150.7049 654.5591 null] +539 0 obj << +/D [1397 0 R /XYZ 150.7049 654.5591 null] >> endobj -496 0 obj << -/D [1313 0 R /XYZ 150.7049 606.8662 null] +540 0 obj << +/D [1397 0 R /XYZ 150.7049 606.8662 null] >> endobj -1317 0 obj << -/D [1313 0 R /XYZ 150.7049 561.1105 null] +1401 0 obj << +/D [1397 0 R /XYZ 150.7049 561.1105 null] >> endobj -1318 0 obj << -/D [1313 0 R /XYZ 150.7049 514.8012 null] +1402 0 obj << +/D [1397 0 R /XYZ 150.7049 514.8012 null] >> endobj -552 0 obj << -/D [1313 0 R /XYZ 150.7049 457.6438 null] +596 0 obj << +/D [1397 0 R /XYZ 150.7049 457.6438 null] >> endobj -1319 0 obj << -/D [1313 0 R /XYZ 150.7049 387.9777 null] +1403 0 obj << +/D [1397 0 R /XYZ 150.7049 387.9777 null] >> endobj -1320 0 obj << -/D [1313 0 R /XYZ 150.7049 341.6685 null] +1404 0 obj << +/D [1397 0 R /XYZ 150.7049 341.6685 null] >> endobj -1321 0 obj << -/D [1313 0 R /XYZ 150.7049 295.9128 null] +1405 0 obj << +/D [1397 0 R /XYZ 150.7049 295.9128 null] >> endobj -1322 0 obj << -/D [1313 0 R /XYZ 150.7049 250.157 null] +1406 0 obj << +/D [1397 0 R /XYZ 150.7049 250.157 null] >> endobj -553 0 obj << -/D [1313 0 R /XYZ 150.7049 216.91 null] +597 0 obj << +/D [1397 0 R /XYZ 150.7049 216.91 null] >> endobj -1323 0 obj << -/D [1313 0 R /XYZ 150.7049 171.1542 null] +1407 0 obj << +/D [1397 0 R /XYZ 150.7049 171.1542 null] >> endobj -1312 0 obj << -/Font << /F18 369 0 R /F8 378 0 R /F19 489 0 R /F32 510 0 R >> +1396 0 obj << +/Font << /F18 401 0 R /F8 410 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -1327 0 obj << +1410 0 obj << /Length 8993 >> stream @@ -27602,60 +29284,60 @@ ET 0 g 0 G 1 0 0 1 -99.8954 -90.4377 cm BT -/F8 9.9626 Tf 264.2789 90.4377 Td[(107)]TJ +/F8 9.9626 Tf 264.2789 90.4377 Td[(113)]TJ ET 1 0 0 1 443.6065 90.4377 cm 0 g 0 G endstream endobj -1326 0 obj << +1409 0 obj << /Type /Page -/Contents 1327 0 R -/Resources 1325 0 R +/Contents 1410 0 R +/Resources 1408 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 1324 0 R +/Parent 1395 0 R >> endobj -1328 0 obj << -/D [1326 0 R /XYZ 99.8954 740.9981 null] +1411 0 obj << +/D [1409 0 R /XYZ 99.8954 740.9981 null] >> endobj -1329 0 obj << -/D [1326 0 R /XYZ 99.8954 716.0915 null] +1412 0 obj << +/D [1409 0 R /XYZ 99.8954 716.0915 null] >> endobj -524 0 obj << -/D [1326 0 R /XYZ 99.8954 675.7428 null] +568 0 obj << +/D [1409 0 R /XYZ 99.8954 675.7428 null] >> endobj -492 0 obj << -/D [1326 0 R /XYZ 99.8954 631.9072 null] +536 0 obj << +/D [1409 0 R /XYZ 99.8954 631.9072 null] >> endobj -493 0 obj << -/D [1326 0 R /XYZ 99.8954 588.0716 null] +537 0 obj << +/D [1409 0 R /XYZ 99.8954 588.0716 null] >> endobj -1330 0 obj << -/D [1326 0 R /XYZ 99.8954 544.236 null] +1413 0 obj << +/D [1409 0 R /XYZ 99.8954 544.236 null] >> endobj -1331 0 obj << -/D [1326 0 R /XYZ 99.8954 500.4003 null] +1414 0 obj << +/D [1409 0 R /XYZ 99.8954 500.4003 null] >> endobj -525 0 obj << -/D [1326 0 R /XYZ 99.8954 435.145 null] +569 0 obj << +/D [1409 0 R /XYZ 99.8954 435.145 null] >> endobj -491 0 obj << -/D [1326 0 R /XYZ 99.8954 377.1403 null] +535 0 obj << +/D [1409 0 R /XYZ 99.8954 377.1403 null] >> endobj -490 0 obj << -/D [1326 0 R /XYZ 99.8954 333.5815 null] +534 0 obj << +/D [1409 0 R /XYZ 99.8954 333.5815 null] >> endobj -1332 0 obj << -/D [1326 0 R /XYZ 99.8954 301.701 null] +1415 0 obj << +/D [1409 0 R /XYZ 99.8954 301.701 null] >> endobj -1333 0 obj << -/D [1326 0 R /XYZ 99.8954 257.8654 null] +1416 0 obj << +/D [1409 0 R /XYZ 99.8954 257.8654 null] >> endobj -1325 0 obj << -/Font << /F8 378 0 R /F19 489 0 R /F32 510 0 R >> +1408 0 obj << +/Font << /F8 410 0 R /F19 533 0 R /F32 554 0 R >> /ProcSet [ /PDF /Text ] >> endobj -865 0 obj << +909 0 obj << /Length1 1125 /Length2 4765 /Length3 532 @@ -27675,7 +29357,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /QLHXZM+CMR9 def +/FontName /ZALPDQ+CMR9 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -27752,37 +29434,37 @@ _ cleartomark endstream endobj -866 0 obj << +910 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1334 0 R +/Encoding 1417 0 R /FirstChar 40 /LastChar 115 -/Widths 1335 0 R -/BaseFont /QLHXZM+CMR9 -/FontDescriptor 864 0 R +/Widths 1418 0 R +/BaseFont /ZALPDQ+CMR9 +/FontDescriptor 908 0 R >> endobj -864 0 obj << +908 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /QLHXZM+CMR9 +/FontName /ZALPDQ+CMR9 /ItalicAngle 0 /StemV 74 /XHeight 431 /FontBBox [-39 -250 1036 750] /Flags 4 /CharSet (/parenleft/parenright/period/zero/one/two/three/four/five/six/seven/eight/nine/B/G/I/L/O/P/X/c/e/o/r/s) -/FontFile 865 0 R +/FontFile 909 0 R >> endobj -1335 0 obj +1418 0 obj [400 400 0 0 0 0 285 0 514 514 514 514 514 514 514 514 514 514 0 0 0 0 0 0 0 0 728 0 0 0 0 806 0 371 0 0 642 0 0 799 699 0 0 0 0 0 0 0 771 0 0 0 0 0 0 0 0 0 0 457 0 457 0 0 0 0 0 0 0 0 0 514 0 0 402 405 ] endobj -1334 0 obj << +1417 0 obj << /Type /Encoding /Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 46/period 47/.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 66/B 67/.notdef 71/G 72/.notdef 73/I 74/.notdef 76/L 77/.notdef 79/O/P 81/.notdef 88/X 89/.notdef 99/c 100/.notdef 101/e 102/.notdef 111/o 112/.notdef 114/r/s 116/.notdef] >> endobj -780 0 obj << +824 0 obj << /Length1 766 /Length2 759 /Length3 532 @@ -27802,7 +29484,7 @@ stream /ItalicAngle -14.035 def /isFixedPitch false def end readonly def -/FontName /GFWAHA+CMSY7 def +/FontName /HFKWUK+CMSY7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -27828,37 +29510,37 @@ aaT'/D cleartomark endstream endobj -781 0 obj << +825 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1336 0 R +/Encoding 1419 0 R /FirstChar 0 /LastChar 49 -/Widths 1337 0 R -/BaseFont /GFWAHA+CMSY7 -/FontDescriptor 779 0 R +/Widths 1420 0 R +/BaseFont /HFKWUK+CMSY7 +/FontDescriptor 823 0 R >> endobj -779 0 obj << +823 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 -/FontName /GFWAHA+CMSY7 +/FontName /HFKWUK+CMSY7 /ItalicAngle -14.035 /StemV 93 /XHeight 431 /FontBBox [-15 -951 1252 782] /Flags 4 /CharSet (/minus/infinity) -/FontFile 780 0 R +/FontFile 824 0 R >> endobj -1337 0 obj +1420 0 obj [893 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1139 ] endobj -1336 0 obj << +1419 0 obj << /Type /Encoding /Differences [ 0 /minus 1/.notdef 49/infinity 50/.notdef] >> endobj -643 0 obj << +687 0 obj << /Length1 1306 /Length2 5708 /Length3 532 @@ -27878,7 +29560,7 @@ stream /ItalicAngle 0 def /isFixedPitch true def end readonly def -/FontName /FOHAMF+CMTT9 def +/FontName /FOSIKU+CMTT9 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -27945,37 +29627,37 @@ qÜ– cleartomark endstream endobj -644 0 obj << +688 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1338 0 R +/Encoding 1421 0 R /FirstChar 39 /LastChar 122 -/Widths 1339 0 R -/BaseFont /FOHAMF+CMTT9 -/FontDescriptor 642 0 R +/Widths 1422 0 R +/BaseFont /FOSIKU+CMTT9 +/FontDescriptor 686 0 R >> endobj -642 0 obj << +686 0 obj << /Ascent 611 /CapHeight 611 /Descent -222 -/FontName /FOHAMF+CMTT9 +/FontName /FOSIKU+CMTT9 /ItalicAngle 0 /StemV 74 /XHeight 431 /FontBBox [-6 -233 542 698] /Flags 4 /CharSet (/quoteright/parenleft/parenright/comma/period/zero/one/two/nine/colon/equal/underscore/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/x/y/z) -/FontFile 643 0 R +/FontFile 687 0 R >> endobj -1339 0 obj +1422 0 obj [525 525 525 0 0 525 0 525 0 525 525 525 0 0 0 0 0 0 525 525 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 ] endobj -1338 0 obj << +1421 0 obj << /Type /Encoding /Differences [ 0 /.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma 45/.notdef 46/period 47/.notdef 48/zero/one/two 51/.notdef 57/nine/colon 59/.notdef 61/equal 62/.notdef 95/underscore 96/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v 119/.notdef 120/x/y/z 123/.notdef] >> endobj -565 0 obj << +609 0 obj << /Length1 745 /Length2 1242 /Length3 532 @@ -27995,7 +29677,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /VATBMU+CMMI5 def +/FontName /ZGESRS+CMMI5 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28021,37 +29703,37 @@ currentfile eexec cleartomark endstream endobj -566 0 obj << +610 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1340 0 R +/Encoding 1423 0 R /FirstChar 105 /LastChar 105 -/Widths 1341 0 R -/BaseFont /VATBMU+CMMI5 -/FontDescriptor 564 0 R +/Widths 1424 0 R +/BaseFont /ZGESRS+CMMI5 +/FontDescriptor 608 0 R >> endobj -564 0 obj << +608 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /VATBMU+CMMI5 +/FontName /ZGESRS+CMMI5 /ItalicAngle -14.04 /StemV 90 /XHeight 431 /FontBBox [37 -250 1349 750] /Flags 4 /CharSet (/i) -/FontFile 565 0 R +/FontFile 609 0 R >> endobj -1341 0 obj +1424 0 obj [534 ] endobj -1340 0 obj << +1423 0 obj << /Type /Encoding /Differences [ 0 /.notdef 105/i 106/.notdef] >> endobj -534 0 obj << +578 0 obj << /Length1 1050 /Length2 2900 /Length3 532 @@ -28071,7 +29753,7 @@ stream /ItalicAngle -14.035 def /isFixedPitch false def end readonly def -/FontName /AMELSV+CMSY10 def +/FontName /WVYHIK+CMSY10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28126,37 +29808,37 @@ c cleartomark endstream endobj -535 0 obj << +579 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1342 0 R +/Encoding 1425 0 R /FirstChar 0 /LastChar 120 -/Widths 1343 0 R -/BaseFont /AMELSV+CMSY10 -/FontDescriptor 533 0 R +/Widths 1426 0 R +/BaseFont /WVYHIK+CMSY10 +/FontDescriptor 577 0 R >> endobj -533 0 obj << +577 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 -/FontName /AMELSV+CMSY10 +/FontName /WVYHIK+CMSY10 /ItalicAngle -14.035 /StemV 85 /XHeight 431 /FontBBox [-29 -960 1116 775] /Flags 4 /CharSet (/minus/bullet/lessequal/greaterequal/arrowleft/element/negationslash/B/H/I/braceleft/braceright/bar/bardbl/radical/section) -/FontFile 534 0 R +/FontFile 578 0 R >> endobj -1343 0 obj +1426 0 obj [778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 778 778 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 667 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 657 0 0 0 0 0 845 545 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 278 500 0 0 0 0 833 0 0 0 0 0 0 0 444 ] endobj -1342 0 obj << +1425 0 obj << /Type /Encoding /Differences [ 0 /minus 1/.notdef 15/bullet 16/.notdef 20/lessequal/greaterequal 22/.notdef 32/arrowleft 33/.notdef 50/element 51/.notdef 54/negationslash 55/.notdef 66/B 67/.notdef 72/H/I 74/.notdef 102/braceleft/braceright 104/.notdef 106/bar/bardbl 108/.notdef 112/radical 113/.notdef 120/section 121/.notdef] >> endobj -531 0 obj << +575 0 obj << /Length1 922 /Length2 3796 /Length3 532 @@ -28176,7 +29858,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /EVAFOV+CMMI7 def +/FontName /NGIVEN+CMMI7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28223,37 +29905,37 @@ T cleartomark endstream endobj -532 0 obj << +576 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1344 0 R +/Encoding 1427 0 R /FirstChar 59 /LastChar 121 -/Widths 1345 0 R -/BaseFont /EVAFOV+CMMI7 -/FontDescriptor 530 0 R +/Widths 1428 0 R +/BaseFont /NGIVEN+CMMI7 +/FontDescriptor 574 0 R >> endobj -530 0 obj << +574 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /EVAFOV+CMMI7 +/FontName /NGIVEN+CMMI7 /ItalicAngle -14.04 /StemV 81 /XHeight 431 /FontBBox [0 -250 1171 750] /Flags 4 /CharSet (/comma/H/I/T/a/c/i/j/k/m/n/r/y) -/FontFile 531 0 R +/FontFile 575 0 R >> endobj -1345 0 obj +1428 0 obj [339 0 0 0 0 0 0 0 0 0 0 0 0 936 506 0 0 0 0 0 0 0 0 0 0 675 0 0 0 0 0 0 0 0 0 0 0 0 620 0 511 0 0 0 0 0 404 473 607 0 1014 706 0 0 0 530 0 0 0 0 0 0 579 ] endobj -1344 0 obj << +1427 0 obj << /Type /Encoding /Differences [ 0 /.notdef 59/comma 60/.notdef 72/H/I 74/.notdef 84/T 85/.notdef 97/a 98/.notdef 99/c 100/.notdef 105/i/j/k 108/.notdef 109/m/n 111/.notdef 114/r 115/.notdef 121/y 122/.notdef] >> endobj -521 0 obj << +565 0 obj << /Length1 1385 /Length2 7327 /Length3 532 @@ -28273,7 +29955,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /EYRUMU+CMR8 def +/FontName /DZMOEL+CMR8 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28369,37 +30051,37 @@ h cleartomark endstream endobj -522 0 obj << +566 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1346 0 R +/Encoding 1429 0 R /FirstChar 40 /LastChar 121 -/Widths 1347 0 R -/BaseFont /EYRUMU+CMR8 -/FontDescriptor 520 0 R +/Widths 1430 0 R +/BaseFont /DZMOEL+CMR8 +/FontDescriptor 564 0 R >> endobj -520 0 obj << +564 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /EYRUMU+CMR8 +/FontName /DZMOEL+CMR8 /ItalicAngle 0 /StemV 76 /XHeight 431 /FontBBox [-36 -250 1070 750] /Flags 4 /CharSet (/parenleft/parenright/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/B/G/I/L/O/P/T/X/a/c/d/e/g/h/i/l/m/n/o/p/r/s/t/u/v/w/y) -/FontFile 521 0 R +/FontFile 565 0 R >> endobj -1347 0 obj +1430 0 obj [413 413 0 0 0 354 295 531 531 531 531 531 531 531 531 531 531 531 0 0 0 0 0 0 0 0 752 0 0 0 0 834 0 383 0 0 664 0 0 826 723 0 0 0 767 0 0 0 796 0 0 0 0 0 0 0 0 531 0 472 590 472 0 531 590 295 0 0 295 885 590 531 590 0 414 419 413 590 561 767 0 561 ] endobj -1346 0 obj << +1429 0 obj << /Type /Encoding /Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 45/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 66/B 67/.notdef 71/G 72/.notdef 73/I 74/.notdef 76/L 77/.notdef 79/O/P 81/.notdef 84/T 85/.notdef 88/X 89/.notdef 97/a 98/.notdef 99/c/d/e 102/.notdef 103/g/h/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w 120/.notdef 121/y 122/.notdef] >> endobj -517 0 obj << +561 0 obj << /Length1 751 /Length2 1212 /Length3 532 @@ -28419,7 +30101,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /GFBPAY+CMR6 def +/FontName /NNNSDG+CMR6 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28446,37 +30128,37 @@ currentfile eexec cleartomark endstream endobj -518 0 obj << +562 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1348 0 R +/Encoding 1431 0 R /FirstChar 49 /LastChar 50 -/Widths 1349 0 R -/BaseFont /GFBPAY+CMR6 -/FontDescriptor 516 0 R +/Widths 1432 0 R +/BaseFont /NNNSDG+CMR6 +/FontDescriptor 560 0 R >> endobj -516 0 obj << +560 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /GFBPAY+CMR6 +/FontName /NNNSDG+CMR6 /ItalicAngle 0 /StemV 83 /XHeight 431 /FontBBox [-20 -250 1193 750] /Flags 4 /CharSet (/one/two) -/FontFile 517 0 R +/FontFile 561 0 R >> endobj -1349 0 obj +1432 0 obj [611 611 ] endobj -1348 0 obj << +1431 0 obj << /Type /Encoding /Differences [ 0 /.notdef 49/one/two 51/.notdef] >> endobj -514 0 obj << +558 0 obj << /Length1 786 /Length2 1412 /Length3 532 @@ -28496,7 +30178,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /IUFEFW+CMR7 def +/FontName /FSVVAT+CMR7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28528,37 +30210,37 @@ u/K cleartomark endstream endobj -515 0 obj << +559 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1350 0 R +/Encoding 1433 0 R /FirstChar 43 /LastChar 58 -/Widths 1351 0 R -/BaseFont /IUFEFW+CMR7 -/FontDescriptor 513 0 R +/Widths 1434 0 R +/BaseFont /FSVVAT+CMR7 +/FontDescriptor 557 0 R >> endobj -513 0 obj << +557 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /IUFEFW+CMR7 +/FontName /FSVVAT+CMR7 /ItalicAngle 0 /StemV 79 /XHeight 431 /FontBBox [-27 -250 1122 750] /Flags 4 /CharSet (/plus/one/two/colon) -/FontFile 514 0 R +/FontFile 558 0 R >> endobj -1351 0 obj +1434 0 obj [877 0 0 0 0 0 569 569 0 0 0 0 0 0 0 323 ] endobj -1350 0 obj << +1433 0 obj << /Type /Encoding /Differences [ 0 /.notdef 43/plus 44/.notdef 49/one/two 51/.notdef 58/colon 59/.notdef] >> endobj -509 0 obj << +553 0 obj << /Length1 1705 /Length2 10270 /Length3 532 @@ -28578,7 +30260,7 @@ stream /ItalicAngle 0 def /isFixedPitch true def end readonly def -/FontName /JUQTCP+CMTT10 def +/FontName /VXEBPO+CMTT10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28693,37 +30375,37 @@ S cleartomark endstream endobj -510 0 obj << +554 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1352 0 R +/Encoding 1435 0 R /FirstChar 40 /LastChar 126 -/Widths 1353 0 R -/BaseFont /JUQTCP+CMTT10 -/FontDescriptor 508 0 R +/Widths 1436 0 R +/BaseFont /VXEBPO+CMTT10 +/FontDescriptor 552 0 R >> endobj -508 0 obj << +552 0 obj << /Ascent 611 /CapHeight 611 /Descent -222 -/FontName /JUQTCP+CMTT10 +/FontName /VXEBPO+CMTT10 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [-4 -235 731 800] /Flags 4 /CharSet (/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/nine/colon/equal/A/B/C/E/F/I/K/L/N/O/P/S/W/Y/backslash/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/asciitilde) -/FontFile 509 0 R +/FontFile 553 0 R >> endobj -1353 0 obj +1436 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 525 525 0 0 525 0 0 0 525 525 525 0 525 525 0 0 525 0 525 525 0 525 525 525 0 0 525 0 0 0 525 0 525 0 0 525 0 0 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 525 ] endobj -1352 0 obj << +1435 0 obj << /Type /Encoding /Differences [ 0 /.notdef 40/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six 55/.notdef 57/nine/colon 59/.notdef 61/equal 62/.notdef 65/A/B/C 68/.notdef 69/E/F 71/.notdef 73/I 74/.notdef 75/K/L 77/.notdef 78/N/O/P 81/.notdef 83/S 84/.notdef 87/W 88/.notdef 89/Y 90/.notdef 92/backslash 93/.notdef 95/underscore 96/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef 126/asciitilde 127/.notdef] >> endobj -503 0 obj << +547 0 obj << /Length1 1341 /Length2 8729 /Length3 532 @@ -28743,7 +30425,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /RDQNST+CMMI10 def +/FontName /WTLWFB+CMMI10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -28833,37 +30515,37 @@ PM{ cleartomark endstream endobj -504 0 obj << +548 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1354 0 R +/Encoding 1437 0 R /FirstChar 11 /LastChar 122 -/Widths 1355 0 R -/BaseFont /RDQNST+CMMI10 -/FontDescriptor 502 0 R +/Widths 1438 0 R +/BaseFont /WTLWFB+CMMI10 +/FontDescriptor 546 0 R >> endobj -502 0 obj << +546 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /RDQNST+CMMI10 +/FontName /WTLWFB+CMMI10 /ItalicAngle -14.04 /StemV 72 /XHeight 431 /FontBBox [-32 -250 1048 750] /Flags 4 /CharSet (/alpha/beta/period/comma/less/greater/A/D/I/L/N/P/Q/T/U/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z) -/FontFile 503 0 R +/FontFile 547 0 R >> endobj -1355 0 obj +1438 0 obj [640 566 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 278 778 0 778 0 0 750 0 0 828 0 0 0 0 440 0 0 681 0 803 0 642 791 0 0 584 683 0 0 0 0 0 0 0 0 0 0 0 529 429 433 520 466 490 477 576 345 412 521 298 878 600 485 503 0 451 469 361 572 485 716 572 490 465 ] endobj -1354 0 obj << +1437 0 obj << /Type /Encoding /Differences [ 0 /.notdef 11/alpha/beta 13/.notdef 58/period/comma/less 61/.notdef 62/greater 63/.notdef 65/A 66/.notdef 68/D 69/.notdef 73/I 74/.notdef 76/L 77/.notdef 78/N 79/.notdef 80/P/Q 82/.notdef 84/T/U 86/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y/z 123/.notdef] >> endobj -488 0 obj << +532 0 obj << /Length1 1685 /Length2 13643 /Length3 532 @@ -28883,7 +30565,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /LQMEYK+CMTI10 def +/FontName /OEAKKS+CMTI10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -29026,37 +30708,37 @@ Y cleartomark endstream endobj -489 0 obj << +533 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1356 0 R +/Encoding 1439 0 R /FirstChar 11 /LastChar 122 -/Widths 1357 0 R -/BaseFont /LQMEYK+CMTI10 -/FontDescriptor 487 0 R +/Widths 1440 0 R +/BaseFont /OEAKKS+CMTI10 +/FontDescriptor 531 0 R >> endobj -487 0 obj << +531 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /LQMEYK+CMTI10 +/FontName /OEAKKS+CMTI10 /ItalicAngle -14.04 /StemV 68 /XHeight 431 /FontBBox [-163 -250 1146 969] /Flags 4 /CharSet (/ff/fi/fl/quoteright/comma/hyphen/period/slash/zero/one/two/three/five/eight/nine/colon/equal/A/B/C/D/E/F/G/I/K/L/M/N/O/P/R/S/T/U/V/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) -/FontFile 488 0 R +/FontFile 532 0 R >> endobj -1357 0 obj +1440 0 obj [613 562 588 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 307 0 0 0 0 307 358 307 511 511 511 511 511 0 511 0 0 511 511 307 0 0 767 0 0 0 743 704 716 755 678 653 774 0 386 0 769 627 897 743 767 678 0 729 562 716 743 743 0 0 0 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 307 460 256 818 562 511 511 460 422 409 332 537 460 664 464 486 409 ] endobj -1356 0 obj << +1439 0 obj << /Type /Encoding /Differences [ 0 /.notdef 11/ff/fi/fl 14/.notdef 39/quoteright 40/.notdef 44/comma/hyphen/period/slash/zero/one/two/three 52/.notdef 53/five 54/.notdef 56/eight/nine/colon 59/.notdef 61/equal 62/.notdef 65/A/B/C/D/E/F/G 72/.notdef 73/I 74/.notdef 75/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V 87/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef] >> endobj -377 0 obj << +409 0 obj << /Length1 2040 /Length2 15030 /Length3 532 @@ -29076,7 +30758,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /PWVDKE+CMR10 def +/FontName /GSJGOF+CMR10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -29241,37 +30923,37 @@ sߥ cleartomark endstream endobj -378 0 obj << +410 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1358 0 R +/Encoding 1441 0 R /FirstChar 11 /LastChar 123 -/Widths 1359 0 R -/BaseFont /PWVDKE+CMR10 -/FontDescriptor 376 0 R +/Widths 1442 0 R +/BaseFont /GSJGOF+CMR10 +/FontDescriptor 408 0 R >> endobj -376 0 obj << +408 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /PWVDKE+CMR10 +/FontName /GSJGOF+CMR10 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [-251 -250 1009 969] /Flags 4 /CharSet (/ff/fi/fl/ffi/quotedblright/ampersand/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/bracketleft/quotedblleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash) -/FontFile 377 0 R +/FontFile 409 0 R >> endobj -1359 0 obj +1442 0 obj [583 556 556 833 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 778 278 389 389 0 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 0 778 0 0 0 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 0 736 556 722 750 750 1028 750 750 0 278 500 278 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 500 ] endobj -1358 0 obj << +1441 0 obj << /Type /Encoding /Differences [ 0 /.notdef 11/ff/fi/fl/ffi 15/.notdef 34/quotedblright 35/.notdef 38/ampersand/quoteright/parenleft/parenright 42/.notdef 43/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 61/equal 62/.notdef 65/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X/Y 90/.notdef 91/bracketleft/quotedblleft/bracketright 94/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash 124/.notdef] >> endobj -374 0 obj << +406 0 obj << /Length1 1762 /Length2 12194 /Length3 532 @@ -29291,7 +30973,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /KFLZJX+CMBX10 def +/FontName /IBAFCR+CMBX10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -29424,37 +31106,37 @@ p cleartomark endstream endobj -375 0 obj << +407 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1360 0 R +/Encoding 1443 0 R /FirstChar 12 /LastChar 123 -/Widths 1361 0 R -/BaseFont /KFLZJX+CMBX10 -/FontDescriptor 373 0 R +/Widths 1444 0 R +/BaseFont /IBAFCR+CMBX10 +/FontDescriptor 405 0 R >> endobj -373 0 obj << +405 0 obj << /Ascent 694 /CapHeight 686 /Descent -194 -/FontName /KFLZJX+CMBX10 +/FontName /IBAFCR+CMBX10 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontBBox [-301 -250 1164 946] /Flags 4 /CharSet (/fi/fl/quotedblright/quoteright/comma/period/zero/one/two/three/four/five/six/seven/eight/nine/colon/equal/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/R/S/T/U/V/quotedblleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash) -/FontFile 374 0 R +/FontFile 406 0 R >> endobj -1361 0 obj +1444 0 obj [639 639 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 603 0 0 0 0 319 0 0 0 0 319 0 319 0 575 575 575 575 575 575 575 575 575 575 319 0 0 894 0 0 0 869 818 831 882 756 724 904 900 436 594 0 692 1092 900 864 786 0 862 639 800 885 869 0 0 0 0 0 603 0 0 0 0 559 639 511 639 527 351 575 639 319 351 607 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 575 ] endobj -1360 0 obj << +1443 0 obj << /Type /Encoding /Differences [ 0 /.notdef 12/fi/fl 14/.notdef 34/quotedblright 35/.notdef 39/quoteright 40/.notdef 44/comma 45/.notdef 46/period 47/.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 61/equal 62/.notdef 65/A/B/C/D/E/F/G/H/I/J 75/.notdef 76/L/M/N/O/P 81/.notdef 82/R/S/T/U/V 87/.notdef 92/quotedblleft 93/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash 124/.notdef] >> endobj -371 0 obj << +403 0 obj << /Length1 1067 /Length2 5106 /Length3 532 @@ -29474,7 +31156,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /QPCEFM+CMTI12 def +/FontName /HZWQPZ+CMTI12 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -29537,41 +31219,41 @@ Hn4*/ cleartomark endstream endobj -372 0 obj << +404 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1362 0 R +/Encoding 1445 0 R /FirstChar 65 /LastChar 121 -/Widths 1363 0 R -/BaseFont /QPCEFM+CMTI12 -/FontDescriptor 370 0 R +/Widths 1446 0 R +/BaseFont /HZWQPZ+CMTI12 +/FontDescriptor 402 0 R >> endobj -370 0 obj << +402 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /QPCEFM+CMTI12 +/FontName /HZWQPZ+CMTI12 /ItalicAngle -14.04 /StemV 63 /XHeight 431 /FontBBox [-36 -251 1103 750] /Flags 4 /CharSet (/A/B/L/P/S/a/b/c/d/e/f/g/h/i/l/n/o/p/r/s/t/u/y) -/FontFile 371 0 R +/FontFile 403 0 R >> endobj -1363 0 obj +1446 0 obj [727 688 0 0 0 0 0 0 0 0 0 613 0 0 0 663 0 0 550 0 0 0 0 0 0 0 0 0 0 0 0 0 500 450 450 500 450 300 450 500 300 0 0 250 0 550 500 500 0 413 400 325 525 0 0 0 475 ] endobj -1362 0 obj << +1445 0 obj << /Type /Encoding /Differences [ 0 /.notdef 65/A/B 67/.notdef 76/L 77/.notdef 80/P 81/.notdef 83/S 84/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 108/l 109/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u 118/.notdef 121/y 122/.notdef] >> endobj -368 0 obj << -/Length1 1655 -/Length2 9999 +400 0 obj << +/Length1 1673 +/Length2 10089 /Length3 532 -/Length 12186 +/Length 12294 >> stream %!PS-AdobeFont-1.1: CMBX12 1.0 @@ -29587,7 +31269,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /RGVXYX+CMBX12 def +/FontName /RWRSDY+CMBX12 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -29597,6 +31279,7 @@ dup 12 /fi put dup 39 /quoteright put dup 45 /hyphen put dup 46 /period put +dup 47 /slash put dup 48 /zero put dup 49 /one put dup 50 /two put @@ -29659,41 +31342,38 @@ readonly def currentdict end currentfile eexec ÙÖoc;„j—¶†©~E£Ðª*Bg·N³ÀÓ½ ƒØ‘l¦ÊKq*Þ²Xú«šææwüsŠ¼|QÍFïq˜Õþæv`æšz¹XòšMyåp"÷ƒë»¶Ôôì5OÒÞË©”Y¤ÅðÆë¡P(DTçÜ!Á[v´Á›„67XFšlU‡…²&3!R˜q©ˆ4‡Ýw”’Ýσ~j‡¸+Ûño¼uú£ “þ_dÍV`÷Kî–y ãZúÌ÷±€]¨Šãu M™YŽ­üb[Üœ1[lòŒ›Ô'ó,t\™®¾pÚ®Ôž¤ZùO4ªG‰J7 iŠº½¤!U±¯&Ï·Ý¢¼h`ZNöÌ£ÖhKGÿµˆz;íà´ÓŽº¿ ˜ #1&ë¯(›)$ÿJ3K…ÙÖ…Eý­´™s±èjF¥¯ˆfÀ"P$Õå†-IÞµØìË•ÙBƒÅ -6=h¤qDVð<ã` EŠkÀ³ªE“NrraÆŒJGø ×~Lò{6ö¶ó¬IŽE6ùà¯U'õãÌy 0„gK>&)o>2\U]$XWŠ‰ç-1f£Å×@³«±'ÏB 1mùW‡= LðÛ%§5t¤Þ.O-]NŽ CTÏ4Û>&wÁ”vN­XÅ…ôžñCþŸßÙf å ›×¢¨r™¼1žf×¹VãC¡›“È–~äqŸ0 þXfðÖÚ^Å^$Ó·ï£%ÔG7dé›È±\ò¬­úlFcè0…]g<銷_‚Ÿ¢&«Wð{>}N|ãÓ·ë 05ŨÙú4H4ý¨ãÜžlGž>îš TÉ_¤cÑœé6àYŽ1— §»nUÏÕïr®Á-š–u$zq1k.â¡s+6'ž¤FË2»âç‚Íð‰.r¶q5…#3|uç)p“Õ¾Àc ÜN•r3ì ùåÊp<~“„˜s„?ÆaàÈG:m+å-뢅¹¡Ì^dÒ­¹æG)q„„Q¢EÝöª;‚%鬎F0°ÿ2Öyì'¬­…Æ9N¦÷#¶`îˆ=‹gh7éë¤ä+¨óeC:éðèŠ&0ó{T¦ò<ÝÖv1V›'$j ™7R+u¬Æþ/àä(†ö¾üXÑ_Ö:$¾¿Oš¬G4.A¹,•ó -pøN‡» ”y{=Kƒ¨ó“¾jðÓ%–Äg*uif¥“™8Ý'Æ2¯š5ýž€ë)QÈ€ˆÀüÇQÊiÛo”ÑꆤĜ_? yV€¥m¸“ØœðÑD çÊÊ™„"0Yº'æ‚S]Jú8ÜXÜý¸¥L~?ß¿ v<Þõ:Uiµ?8wü¯çê5´´ÆœHK(Õˈâ¨Ýª‹|©¥K¿ 9ßW'ßβ8o>о¢ó“ÎL(rðvH0UjçøAŒ™òhÏj³åñn!oà9˜û5~ FcWšÆ¶Î½ä)0Ñ?ù»¯ûÒp0ÐÃÀÛÉýº½þø­0ÍŸüVëísÈg•Ï̉|ǃF/îa„ïÜ–Œ\ìNÀ“ꟃÃêͳ=™àú¿ÈBÀžÒ`¥+rÔZ%$Q÷Á éøŠõÉÛo Âþ™M†ÈIsfä»]Þ+­@ÿ{Á ‡Âñ#x(Ëð—|%[¢R‡t`¢ÔÐÌÇ }fÅß©p/~•ÝÈt„IÁoú¼•,>$h}íSlá˜Ç‡ª¼ò?«u @Ë–NP½áºx$Ó¦âß%föЉ”FB;·2ˆ -Öùpì­ªתk[Ép/Û‹YG|Õ€d6®g³™¸í |Ö‹å\k¢ç®>z}cYùÂQâ~P§0¿ilN‚0PÍÔI¾ú -'aÏ-;1î'u~ù–Èœ[Ïäé—ÖÝjø»+í(øj™2šŠïÖÿ:(ìÌoÑÁBî9å6Ùœ_f Û»TºhñðOf<4[$ük•„_BÉþÊU¬š½«¥•«Ž×f]&N º« "eM}Èb™ÀáiäÙi¦gì‹© Väå·[EaÂ]–i™wã?YN$¤2çåßü¼Ïj:”¡yð‹¦±~0¡ºmÊ‹E™UÊ2oïIFõ¦šsû$¶JO)Hïpçu†-[’¿óLëÔÜ›ôýýdß"iZZú)v˜üN÷^Ö!ƒ¯j AQ·ñÙpäL^Ö—oeº¾™HïÄøæD õÏ¡ ‚ÕÒ^Ùs?áne–²¼Nò †ÝÚ$AJìjÇy@ &ÛoaÞ%bü«ñ²ÃB’ÜÄ“äléÌÒ¨ ÿ„µýÿ7†ô¢Øý}éRƒ—Î!. \=Ô¤Í\¹¨·¢Šº³ìbü÷´ÉOE~ÆIeÛÊ œ/èQÔƺå[3OZS ÁI™ q_‚ ,E¼~ÖÅj’þòoVQá~×±o¼øR‰U/ŸDøœCC{†»hN/›ð 󳶵õÌ'Üå@ š%a· ESÁÒ[Ì ¼- WID¿[<¸ždsÎ]fšFÏV»P!v}®QU¥µ/YËF´þKÈC]ZÖ8¾ÅÌ"`2g&üîËy¡€üßs«ã¹amZÙâ¯QªÑË»Ö)ITƒÝ£¸žQn†ñ)CÒ5†€|˜¨Z«ŒMÚ¸ê1i˜M]ŒD©æ#£œ1Á>Ó„úÌ»Ñaꃠ õ€4ò¶õ‰‘r÷èÙÇ"÷²&ŒÃd¿Ôÿù¥æ5Ãb[2¤[R@Œa¹ xšVÁO"ƒ@Á\ÆRBì:NB -‹»•¦ "_Á«D †^ÏìLx«ñKS5!i–jˆçÜjÏÈ4~8;}\G4øÁ% ~bäÒÎÉoã—gïˆPOÖ\¨ë©K§_öéÆýk´­Q¤z¡éñÀ#¾D‰ -H„´yõRI¢Ó6ª›œ÷(Váp[¨·ЕµõÒg­õM©ïÙ%ÉéFÄû²^Ì’¥¾ÇÚƦɢ¾cX? ‡·(zk<äš_d{³â|åÐߧdaâéÅ€c{“¦-¦xqNÚ×îƒÚ­Ý¯sÝd„¸©ûøû p?/e£†ò˜Yy;yÙÒµš6QùL8TÀY»S'Q¬O”7¤EÎ 6%1ÄŠ•è}aE­ |ÍcK>_8:$&:°/^ð©—¹BD2 ×?¯¶-=}8Ph9Ã.\´‘þAM•Bjç J‚诩 ‘µ«sæôúæÓvÏ=ná;(Í{åë[ïÕEn lIŠÕ O—¨€È­Œx† ÉOȶ„-;£hŠ-¢íŒ@̳PöÔ™Ñs…¢oæ) *Wvo·Ð_ -ŸÒh¢EøØñoO3~¦–¹v¥W€6¼Š rɼMƒ¿k=ê|;p¨µ¡P`¬!ölŽBGþûþ5ÏŠmËѼё ó­ؘ_ÑBIš*„øÚ‚²m Ø`QŠ -ú..Û17:NÕä+CÏÑQìÜ‚}äTÚ±7ëÆ¡ÿTÚ­ñ"9_†ÙW¯ZÁä‰1,Q%ǘ€€= -\Îj¨øå¥n&«ÆðÈÓvu@¹3)¬[á€6]û‘°ËÌZü”×MÕ4苯°/#‰§E\ð8é1%-›5ãö«X¾ÝÆR:oP±. #ýz&æ¡ÿž{ÃðŠãNT»EÑ‚ŸŒ|cõ¤Z2åZPƒCWˆuQÁ×¢qî…ø´q˜Ž•ß¤ÛÑNøw#w†Hÿ1A‹Ñ›DCocÇrµ£ T&@«Ê^AÝ“VöyÎxôb¯¨ ößÀw8ˆP™e!¬{ó¥Ïg­®¢­U±Âëqçpȶ/‚ÑÇÝ9´ÕQñÓ‚vBèÒ>’‘D+¿ÞÎùÏy0ÜJßœiŽå»ÝÞ%Hia,HÊp]Æ*S?ÝÖ‡æ¼üŒ!:ˆ¿cO®ÏÁVxüòäÂ++qóᄤ„ž6åÊ÷Q™[\´<— @“°ñC` ¦¯"¹°Þrgs½ÚÐÅΤªÞŽó¼Z mº ¢V§HP'©÷¸cpørcJb"ÐÈ 4ˆ G/~Qzo¥Qè¬õZœêØU¯€_ L¬WÉîoQu/Xn`’o}ÙgŽ£…tÕ•;}ŒžSz+&ÏÑTóµù@¿%Õ «®³ÍÑJƒ*K’'ÚrÁ \èœÇQ·Õ `o툑ß-˜ô£óéäi±Úsm‘í¿ ù‘òñuUwÈ´„ÞÆ3šCä2q}:÷¯“‚+]z’à}¢¤×©x¯É]¢EYlæí%Ó 4F*ÀE{›;{®€$Ôcêü}—ÍLn é…¢‰ùƒK~ÖÆSe˜IÑÇDN¥öa±³óJÃRŒaƒÉsg1¼)ðºáF(_Hm‡R2æ‘\òiKÄàê;Ï3Ê&+áMreÆÕ"ðìÆÉGäŬ@¿mÂx½ÒKö$÷, ¶?i‰Ýè'|Ú0«* lGÇ#µ!X×>Ý›¤ûx˜à­n—b+ã¾üæmäƒ!›ã´—ßoe‘cñË2T»Œ|¢…=c£ t@¼ý‹*¸1¥aó±DÑ*™+,ø~_XÝ!ôSç4G¹šéëÞn_áÝTàÐÒú³Õ˜.–ñ_·7N8| ™þ|£ŠBÜõ®ÔAó/Š‹¬¿Ñ”Ú]‘>:ç ®ÇÔ5l"éݾ˜šŽSÛ uvä|'ï¥e½ÆËfH(Õ_=¢íÑÃl©æÓb<½ìvŽ}‹Ö7Ý0èhÔÅMSÊŒ;ÿ4 " ¿Í>”ÇקÓ!ª¬²!Mój“,Ž"c)ÐV©,Ô6åà!2Ÿ,ñ-ì*í/NK ô±xù!EiZnjœÑác‹p3ð^/\,a˜´{ð¯Üa|35'æWŒ-ë‰îÚšž3˜%ptŸÉqS¢iB»@ÔâϹ¶cŽc >·È²«(>]ýêñƒ{#†íSyá·¡éçŸ@œK¡Š>ª?úIZ×~R´ˆ°[ò €eˆÍ’ZÇ(gU<Êõìÿ*ªÕúÝ;¢ÛXË0ª=ÐòÑ_ÛÜ—Ç;ÒŒv¦;×>D¤0fØÐ -iÙÇõIn+ʶ¾ÈÕ•2lîîWDîwwæÚòèÃ"œ¾..È…—Ü+ -ð™N?ö WKïÿìë—DJ¼óv\€0 V‰Ú}¶jáÄjÞ$IÂ[ ½1Æ Ó«wOts ¤·W‘ñr>²pÞof­=F/Ͻ9>ÙË,kaÉìÁ«áž‚„%#d úíùô­)¬4¡äÏ Œ– -Á±úÄÑ££ÚœˆÌk›–q¿+Áí³¾U}Ï\½ôqû\ ½Úþt›Ä¸î¾ƒ™ A¥%ˆÓX‘TErGhè«¿t*`!°/>ÃT'ÚŒ„ ôö½ ¸Ç3AO£€ØÍ x\þöF™/mÈ -+ÙŽ¶Â%HûGòÆÀ‘ÜWÇK¦´=?[ÀðèÉëPn‡iíÞ©|çˆl¾Të§&rXÌvú}¶çÁÁ¾Q ¼x)FR8÷TvÊ…ë…±Þ gKÈggHÎð㘈‡BÉÒlˆh-üÔ†¤8ûIè¼sóšîÄ(ôp£·*pûwjãJ³(ì0= àê ŠG¹hÎÇ û#¼ˆž\Z«ì d¨¥,AzSnPGúçºêÀá’L—ù§¦[qp[Z#>¶'ÖŽ…;‹ÇÙÀÞÓÞ(ïê4ÙÌ`óñÅ|¦@ßÝIØm­«_<'p°T¦ÿ/=êñŸÎ³l!å{+ž¿]˜ÝCçî«‚ÕGÃu‡{xû8 ?xáI݈«ed™ Äwq¶~ûhIסÔ¢1%ˆ=eêæž „Ø{œ• -¼ásê(‹¾÷ÕŒÛHK‡à+¨5Öøw/§„ˆÈ&ÿžŸŸF9Úž­šEs°\/Ç„áŸØöÔÛÊl¬@>ˆ2oIA[ÑN­ÅéyùAF´å0 YÊÇ»@Àv --hüÚ©MZþW»ƒºåèK?„ßmQVH+ãÉfšyi‘0H,¼³aI÷z›‹?|RÁ*>51íPüÍï ê~¬¼7gñ¢¿ABãCqº þUjoó߽dz*lÓa[Š…-‡×Xüã… ¶ç‹¬3^ìy/6ø¾µÉ22[úq¶ïê5¿ÛÅ‹AJšmóu¤ó¤nôTñ7èv)5øR¸6fLú¾¯öf/©kjµ,YÑ*”v•­®©¬.z¾’Bû -9‰OüºµŸèï€ê¦‚±dú×ì™±€Éòr0ŸÍ§ÑmÞO!§liÌ÷Öím"Qþ¦xÝ(¼Jo/ɈåXòçhïÓ]éåGK{3A³±¿@E¿‹Z˜MÜåLoÚÈUº°z³=;¶Žù¤{Ž jëVF,½<*Éá® NkG¢¹À;æM+<óÒè6MùÄõsf{ÿH‚“ù-“@á~¯¼iìü N äAŽ¸ULoÛIdÏ*9$ð§0DùEæUƒ©³lE©¨p²§7=köJvbÞÊ ª·ÔÜ×Ñá ñ'ûÕ )0ýAnð,–Y_rC8Nl_ÓÀ¹s†#ªÝ“Å·Tâm±Ç¶ `#‡45ÄÁ˜%ã¥h(hõoÛ©îoÚ0oX%_Ò«%£ø„´%þ£À?îÍå3ÌÛ4ƒ×«‘𤋮xi‰²ß–{pÈIÙ¥z·5_°ƒqûNGPÊ.,jÀxz7«]Å:+â©Œ±Z›¹2”™woŽ8ãâiÛ÷üžõOÌŸ=Ž›T™†SJù?@ü¸ÊOlŽ2'´V³c Y¼”¦þ)Ç6`ƒ^ðpfÀ~ˆ1QGp`ÇFœœã+*)nÕ²qT3ÿL_œxÈ_€Óé…AWìÈW3¿qÒ(ál•GåÒÆè(þÉØ¥C³Õ²''öԇȈìJ]‰ ZóÚÃŒõo¿§ÍWß,í8¹rWÍQ*o°â†#àܧæIKeF)mº¢y¶+ë Lâ´ÚI‡#ï±Q:Áʾ“¡/µèþEB„ s Þ8²‡³.P¬3â˜@q”rû%ɧúÜ͆÷pR}ÓÂXv>¿Êö‰¿é±%"T&ÚÀjs¿ßÎu*mK,¹IÀ~«¾ù*j¹MT”Þ›ã]µ$åm?˜÷¸Fßr)­VE@¤9aZç‘ç&—‘ò!ÅTEPí+¼ç åQöö¥K0+%nNÿaUh]f˜B¬%O> °íÛ©oìÄPkŸd÷¥›åTI›ê4¦\ð$@É0€ñOØV’C»CZ17Iýaþ$šÅ6ÔHgWNM3µÚלìÝ7û Ý;7¢®°à¤m1ê-ƒN—Õº‡)(×jÝvo"Ö«S<²þϤíbß&B!Šj«áf¥Ómd’<Š®‘ ÑQG]aµg@`ß©Ø3Ë”gáœPî5Ø´¢uðnñ‰>v¿‘lM?†ýߥ¼±àºÊÒ8N(Ây­Cp·]Z°j¸\Ùňò´©”ü?e¥uó¥leÐ(™R²ö3æ6ÿÂÜÿ–Q¨.K9Ò¤´Ë~†vkç*B ¡Ç¦ånnBƒ ¨’¿†]¾CÐ3¥17¦ý@ä’0L¢@‹P¹€è\bUÈbç°b,Éõ˜¢ö–Ö„oøXIù•!zÂò`ž8üsÅkdo+á3•BìåÛΓéFýß¼ÒYØîeŽ;¶9£ŠŠp ‘BTœ&´TkF–þÝ­ ‹0›B7¯©Í@ -;äØßÇZñÞ}½JZ鳪Yæø8nÚC™º…ÖHŽáÍo*@_‰n‰×°ùJœØ@"Àu¸û^‡fÁd 8v”¼26^Éy@wˆ¾#¢ц©´Q¹€‚e¼u7o߉»"Ä÷‰;kýgHcæ¾Àîú\x•@‘¢ùöN\@ÁfzÑO^[fNºNˆbÎ)†jœÁþ›‰ñXŠYH™²?*¦È^óí-–Úwr;/cðø‡ðU%å/£–Ë6…D¾¾üƒƒ/ì‚U­arÖô7±jÒ`Ó¨Ìn”)>%°Å­ ¡©Fá,Ú!ž&|Â8J ;=ìûQHŽOI4¼ª¯„îèÐjU>gYY{6{ ½¶ÏL`¢cä êöÓ¤ƒhÐî>ü.÷«¿¦µÆMÁeGá-x–·YG¥ å¡TÅs% j$פ?4¨›ÿƼŸ#çÿ¾Éí÷ç1q°¢£ÓÂæìyÍ”< -ëºe™–íóo0´k%Zw$o4E±þ©Ûœó ýhy+ï‹‚d#òŒÄͨÂÖŸw–ž•IœÔxTCuÙ©ó¶^W$%%—'ç9óÇ`ä„póå—‡òP-dœ·Ñ“HÞÖ!œ%ý6ƒ©0*Ú{@ß–×ÙœnVáShÁ¥=nV0¬“sB~Ád@k–Gû»ì’ešñBtûIà0eÄ~*#’Ê_ÀˆãæѦ€to›aÖÖo \è\w|ôQsÜÀ°mº’Gب=Lpa¿ñû‹åÃi­Ù#µHµäÛ8Ô& -`µX­=0)ŸæêÞØ;Jrû5gE¾m NGuiâmŒþÁ)æ±/‰ŠÐ ªti²`³;Aí“2ÿG½Þ.äá«Ÿ,|fW«PÜ,hôe¡‹”V3f³¦(1Û31âÅ -_èŽ?•]ÑðtWÖî@„7^ ?8%‡¹KöÛÝ<óvKÚM;yAÀSáAµ8ca×ýt1¸û°Š‘üQƒˆ¢rœ.HÓ¢˜qé®&7¶ ÝD‚aÑ\°@=ûW›OD‹ã½Ñz¨@Ñ‹ËÀòRüµúëû(÷ÁÛ’ûG¨®äaú9 _(…P» :™‡H$›C¶æ«ˆ¢ÄœÎ&=ÿÞc[I·øãG: -o&øÞQÁËŒºÝ¯²ï½¼&vÁç -€?‰+>e%fBR #¯±+{w/ú2BNl›‘;lÑÛQÍôâÔ$ÌzrÿqoéÏ=tV—Hë©…Ï?’N¡ŸUüX Ô~Z-¯˜ùó(O"çZ¥Á%¨Ål 1 è†!áÊè×:z‰ »ü9:×Q®¼!Bë†rkP Âl™A™açØÉþE–:|mE <ùPþ?¨œDc_ÚÇP~¢åšŠ)zàtFœ!>Ý<œuQ¦db§*4m'Š™'ÚעаÓ¥ÈæYjM˜7øŠVõõ=9LTÀ-ŽC5ø¶´yy‚åÇCnù§%<£m}›}Ö¨1§èJ5`ñ¾Ñ_©dý@Å3^)Í„¢Óߵ˫¾>š:4öµLqqƒ -Û+l¼×F{tÇnzî éò-Y Èç× -ÝuyK“©ß­nxùüô§ð‚¯JV tÈÁ±YÅRÅAEZ]Q§&ðcÌŸõø.Ö¹s ×àÇ|øÐ#âo@i»]yW­§‘@£Æ!–£œÂd˯Ìœo3Ò§ŒùºÍº§ç>»ŽÊ9K¯i‡C¼¶<Î+À…Wýk›üWÉ(f™š¯¥6Ô›k¡”¨¾u? ÔÀø MÃ=Œ9P C“z}f“z-8œ»L#¾´»à:(xg¯œEKŽžóøÍøwÔÏözÏ‘‡’Iþ¥.Ó¼¾HÀÙëè¤qâ‰aLXfýJ˜"$è%a‚®N6ý0000000000000000000000000000000000000000000000000000000000000000 +6=h¤qDVð<ã` EŠkÀ³ªE“NrraÆŒJGø ×~Lò{6ö¶ó¬IŽE6ùà¯U'õãÌy 0„gK>&)o>2\U]$XWŠ‰ç-1f£Å×@³«±'ÏB 1mùW‡= LðÛ%§5t¤Þ.O-]NŽ CTÏ4Û>&wÁ”vN­XÅ…ôžñCþŸßÙf å ›×¢¨r™¼1žf×¹VãC¡›“È–~äqŸ0 þXfðÖÚ^Å^$Ó·ï£%ÔG7dé›È±\ò¬­úlFcè0…]g<銷_‚Ÿ¢&«Wð{>}N|ãÓ·ë 05ŨÙú4H4ý¨ãÜžlGž>îš TÉ_¤cÑœé6àYŽ1— §»nUÏÕïr®Á-š–u$zq1k.â¡s+6'ž¤FË2»âç‚Íð‰.r¶q5…#3|uç)p“Õ¾Àc ÜN•r3ì ùåÊp<~“„˜s„?ÆaàÈG:m+å-뢅¹¡Ì^dÒ­¹æG)q„„Q¢EÝöª;‚%鬎F0°ÿ2Öyì'¬­…Æ9N¦÷#¶`îˆ=‹gh7éë¤ä+¨óeC:éðèŠ&0ò­Vê"×{ o/ +Fh0þñž43”z}õs™= a´<{}àÌ[[ +Ôû#FÂ6áv'jøZ¼á`J„qøa!3ÀÀ³*Ù3_§ó\z!פ¿)š*…Š å¶lé @9`T:³öžÞL!ì +‹„¨Xš8¼–ÆMs#ñ^h>ù•Û9öNò»Q0”@y´ž©£9úcON”‡Lì»,ç!ضÓ>oð /͉reÃôûAš«„ÛØkéAÉñ^ýÝ|»²)·7¿IU/0Æß:ìÞK¥—¦àd=š]·À àt½Q¾–F]»ÒЬå73sô”Ž|P #teïäiÖù`ØD4]ÑëV·0Í}§ƒÆ\ êý¹&È#ÉEt2Kå´a(»-̼ÔŽêN} Š½5iHfü]‘n*Á9^ÄQH÷º<zqY¢Ï«ú²÷* z´OTŠX,Ô­‰'.—‰ÿ!ÿº£ŠÖþï …ãˆ x¦^=‘÷$‘‰4cýK‹LòJlƒ#ˆG{ZU]@¦rÅv"Ør¬ç3¯ìZ“²œÿÞŠØìµ€ŸÆÔ3!â­eFä 'Z&ןo–Ž›‰éšÁ&ýo9@Jñ¨˜Õ¢ÀÄÎx‚ “̀ĭ4°ó¬V®^`÷¦tÀ¾›Á„Xð¦+hËÂûhõòvhˆßIdW\%ÞK—ÔúŽyAÍFȦ´d[WóÊ!ÍÀ±æþ{ÚŒïo&hä?ê® {|Z'AV‘‹½D0%šÉ·–*ØÌܤòøK?FÕî»ÙH5CØàÿÝ2¿Z¼•à‰Î‘IUFëÿeäî›m=£t}3À« ŽµÈàlÕp/§†T‹ÎC^g÷½g–¬^Ä}”v´VGöfœfyÍ’lÞR(g®—_¿çì_ô´8—OéÜŽÝÊ­å”ÁÞ ‚^#øÊu¾Ó·_9/¹9êª/ƒ"œ³ä±NÆ~¼þnO%äyN‰ô›y(þLŸK^ Š¬§ˆãJÚ¥‰^£.‚Iù˜þ…..à8(ñæcBLÛ‚ŒÙÍó-Òä²o8(êwçj®;ñ—´à¹]í‹æûpÒ'[Ý·ÿdLï½·#¼Êñ.îRâ^?.jœl6éôùûq™Ø=ÒN)é ÖA©ƒ©ÿÈ£ÍÁ^4°ly1¤Ãa-ÙÐíÄÃ(e°ÎŽž+wMÿâ&Üi¸­zÖøø¿wvWT™|ù1w¥"³ñ€ÍEÏêd¨¯‰Ød¾*P4‡í„ +M€4)¥P™ ¾†£ôë9@Xt»Íô1ó&FÝ]4¬^Ôkûb þÁ¯ÆGÀElyÂmÁ·“wè õgßàÓ +ØÛ•®ôŨq* ¾J¬X?#g’Tºrzj!LNOÙ˜žã£ €”ªÛIÐû£óã´%‚cÇݹ×&åö㹟áÆsÖÌÙÄ^2@a ÌŬ§?0Ƀö ±o =4u¾wÖnýüÚc!PÞZÉ~•+NÕT?›É»Y˜b"pEýÚm`ë 8Úƒ1V¼TÞªD•17HnŽÊ3ÝÉæV]®,ÖžÖzª (Å(íD™’-Æ•sÁ€:€ÆÓùÒih´Žïq WOÄœJ¨è::ÑŠY³#+¬õQÆ̽—¶@(x?ô)¿i9»Ç`(ÊÍ€LöQI¤]4öØ­Å´&.¥Þzæ¬ý¦•Äƒåo¡&±ó f^/à×üKfHýÂøCqåSl…Ð^²ÿ Á¯ #y„ +ž(K¢,½¶Xœ[ßW÷ö Ñ_¡ÜnÁ|P‚,Š—ÓîMù—LÃjicr#$Dë"PŒ[ùŸÎ'…+‘ Ù.f÷p`ÇG‹Òœâ‹d,Lb©x¾åÞ·°~Ra€J |g#…Ûþ,?ž "rØ ƒâB_¥ŤnCØ08€EÙ;ÖYë¼ô8ÒÚôŠÜ##šÝ𯴢 ÂG$¯\((ÃÑŠIÍs®Ÿád@3TAÏžjîÛ†©À/CÞtqp–|{¶ØÌC:×agÉÇsöYoB*†áÓMûOŠÝ±Ã­‰@…ѧ¢r^ÕëÂ… ‚‘Pä…aÖ!í…}S½ã0îDwkõKë³z0.€e•@RjO6(ü»êÎëÀ×\1SªÛërëF{ð4Fž‹´Fm£g<)þ¼0¿¢»” zf¯B>'G&vdJ¼¥žyï`w!š$( Û=a(YŸ®[l>Éq±ómA»è¼(áÉXýÐ'²,¾áJ’ÅXÐ+íy/?VÎY FãÞm¦{n¥n‹zA? JëºÆ‡&ÙU©Ü–ÖLÕg€[io'RÖ™vJ»¬í×G3…Øþxˆ'tQ[‚ü(R¼W…;Bè——û`FŠ:Œ5ml3;‚]õG”÷šJºîé¨ÄÄo(5:i3ï¨íýÄö”a–Aï >++”CI$=S´bh­ÓÝžnô@þqüÏ—.ìàæÊó\—DI:ü窿Åg¸u@DlÄ +>N„ã!.p6)2 d Q÷[ý[%pÔpÍCyÛ¯8øAæ é R¡øh('=ªÈÄÉsNSätÕ´l„Ñ/€ú&׊äD¬^‰3 VM†š)gµ±™Ò®[PíbòË‚åÆ2ïi*Ëæ§WAü, _~BŒ†‰,þ¸ƒ•¤«‚qð?Ä'Ê»>U¸Êºw»¯}¡‰%è™hº?GòÞÿóüÁ¹îåˉpeÕÎxãs^HÍ‘ì‹c}4€H±Ûv’܈"ÈÁá f²e+”1L\Ƴ´Öó e¼‹í¯IÞ»–÷T#7Ýa€ë)#<©A¢g´ré–̾»ÉÉU]SWnkýœý1Ôwá_3¤vâÅ ¢!®‡S1?Å‹î}ƒÎ¥¤ ÁÚ|×àÁoÜ.yLõ¶œ[F æÎUpUš¥òž +SK¥ÎÆ6=]ìTqeOÈLbŸ¦C7 ¹Ój‰'¹u\„–žgâͧgMqIhddy#È9‡BE<­ï«ÍÌ?IhmL²µÚ U’aÃ'²êñFZk–”t”µP„—ÛõMÅò =Ÿ¿¨¡u/ª¥ë×(¿oë—/%¯mÝ;)£Îdö’Ñ£왞*Cà(¬oB_sœã4·€sÒáô®ð·˜ÇGÜS5Z÷ú–}Eìú+À§ƒ`™ã ¿Ë‡=ÇeÍóÑ›$i.ÇYf6ˆ¿bðÓø¯UÑ/ „,'¦þ¸ úL» _WxåT™-=EÖ©/#öâZO5SÏirôk ô;²Û$ë;ŠH0”\éêMùÇïÿÍJÂ3Ý[?L87`§Ó¬´Iú» 7!áÀAç+¢P‡hÌÀô¡ÖÌy‡ÿ˜|kCpLöê'å6½,?œÍ p ÉŠåÂ/€<ªjŽxX#ÓXCZ™f +4A/1ÿ ‰½fUU8ÔªA‘)br4æ³ li±¼±J-eë¿Ú¬öwµ V‡„CúRdóŠ‹éþ—'!‡nî1älÝW‚àþÛKÈùuÚœ[ì2eæ=KHí<\ÍÂôEi‚õÐY ÜÈŒJ‰¡ |CË¢¶÷®vq•{í‡`T–N¤Ú¹ç¡ûb¾šü_< },“‰†ß Ã·2ǹá®@Ž«Æi6áà;ÃÙcyÎï~Õh §v Ì<ܶÊÓý´Ët§5Ç,) +šmSµNú7Q‰,æ/‰#9ðž´ÕŒwc…øXÜãÒcÅX>⼸±j‚ócùÍØ +” /ÿãåHI³vpÇ=M´ p™Âë“—]gõ¦#i‚NIZ…,O-þªB¢Ýòy,ô¢ eT-?ì¿4wïÓÅ!¹ ±êýIâoR0FE€—âÀjFhÞ}úÂâ~+ú““«2üUmØ"Š¡Äp9¦("‡…£^¬ï!º~yaœºc=©ÿ˜®»ðÆn«”ND ÎHè¦íªùèl¦~¢4€%ÏWœâ¤lC&qUèyšƒ£b.¦·zïÙˆŽ)Áî9›sãD…íÕ¦,ÚÇÒÊŽ<>ÏÑj´ÍžÃé- BÞ2e7öî0¦Ø?Ç¢0ÂìmÛåÕkZ“uTªV¨Ösš,“p¸’XÐíøjƒêa²HlÞ©îaeÂksN«°*¼/`Œè,ZŽ4ŸÏ³ÉQüoé 6ö·»„ˆU|£´~9^ìŸmßØ‘ù"Ô=žäoO<„”Šì23ÒòP¿ +0•'Î÷1_œÒt%våA»Y˜ê Ü<ÎBÊGõÝ¿o‘«UŸŽ=*ÃÒ¿ŒŸ­X +®–··qøZð~W¥;>l»uàP@uD°mx¯O+ø„àâÂ|z†S}RejD-LÆϨqá*žàãÞ˜Ó|;‘JWÔsJMU{é9Öì^¯åÁråMLï¾ÆZ»ÝL¼ü&Ãä«Tá*À¹&áýT9Pl™Ù!çNw’‰Í ÚI8¡Ú’ç‘ýƒº›²Wpô£ü—Z…ð_èV’÷:·Mäã Р xîQ=äæ…8n¯m8É¡î•LœíF8ìIÉ þ%¹û½ÓEíÇY{YBgx(8‹³¬Š ¡:¦õ& +J¾VG”ªOÄy\äm€ØËÈ„Ò¹€—"í'Ó°½IÀ´¼$q…3>ñg\×ð<íc¯xD+› ž–v•€f¼˜§–ÜϽ§ž¹½¯ +¾ˆÿ·nT½Œ¬áUƒ4€PÞÜùŽËë-q© +µZ¸bí‘ðI3øÀ/%'T‰=RÝ  ôšž[ríÞ]"ö+í°Ï ëÔzÿUÝm6¶êqNw¿•Ú'^»Ÿ@Çì8ž´6ÝÞÜq?ÛUûŤÓ9ôô^®7.$Þ[T ÇJ¿•Éš]Ù¼b™c(³HkŠâØl‰³«ÉžU—O-°pHå-?)q&SÿxËkÐü\Ü X_;pÌ"3W´œä¿ LËéÆÚW~ýk%xOî~gÁ·+D|¯?ᤗTŠp⡸§Þ|ä°e†=ŽÏŒî%QŠƒ1\PÐwCH@†µú¢UŸFÙ7#ùJ-‹Ê5ÈÉ°ÍÓù€D{Vèi6€Ùþ¬5T;z Rí¡2ÁëQ]ï­áÒhM}:…D=KÍàÀ[ò` ¼ª kW°;ë¶e!çU$Öµœ±aõV5úå›› =®HûÔe+”ú{ÂÑ`ÆÒüàít srX‘,#³Ò…¯iêòÑm94«ŒHOÍõa Þ˜ªvôZçÅã߇RXþy|1F§]‡1[±4Í uyXÞ´3ce3Y¦Vp3K®Öd£ŠWsjá¶; +u0SyÇÐ +8ªš’õA|9uÖˆ!pyÅ6êfèîÁ0óh3A÷~·SR ìC>9Ùc3A”ðÖ[)c´r–œØ¹·•€cÊôãUD`üZ]Oü¯¯=Šl^¢c„Äaúèù!ÇD¬<4ÉêÎsÕhõÒwa³À¯Œ)=zz!q&Qí´¿ÚfF²]GÌù­H~ɵ‹¾Õ*ÙCGF_ýsöÄù‰ú +­Æ]˜+È"öL½Û^îDâ,Á_.QÐØÁÑÎÉ •\YýWÏ“(Ž»=Ê1øጹ^×Þ¢ V i¦6Ÿ^]b7û_çq‚\³×ßW&§î˜âû YƒT+Í;Œf‘”øH +QjâÁò&A{Ök5­¿çè ®)ðúä+6X-n~c¦tæ,BOŽ[Ãà¼Ò¾O§#IÊ‹iäâ/°AðçìÂF¡ÛgË^½úlÃÙÀÎõ“Ýg{)ÃyñüÏŒ(Öojà¹zBçp]+ïàb¿¨á9Íч%×ÈâñÇG¶IÒ Ès/÷×-Jàl!ºAˆ©h8¾àD9Jó ±•p=¨Ó·¿Ã‚~¹ð_­'ûÝY|£[÷k#Ó¦§«x’Ï=S²$fòÔÃJt™ŽI?&b¦ˆ“ËÉJT(ôNIRrZÖãTÏž¸imÁü¿0̱ /ø{³Œ„Ùw}US‚Ž¨çrZ|"ÞÜݪYûg]w§°°Ä×Cåi¬¶YhN\['÷¡/Þ‡Œ›ŽT‹h7aÑXÐ)ñ¾ØÚz;ÎÌ7挤7½]!ÆãPÇt¯ª%.áAÝÊ„æFÅ{¡¨L©±Ù~-Z;ÁÑ2¿ž"ÕŽú˜ÕÝ-óÁÿ{k)êîüÜGc‡|À¨›‹D@Èí­Âp=lA+\\Êbão'¸yÿzÊgJ|[öÉì/Ù‡u¨Årù׉ãÖrQÙyÐ`ÑŠ‘E™ÃL‰j¡]+êSÈŸ´™è²ôƒþØø&/:[:)á±ÿ3÷Ó€Ë%Èò["bÒßylæmÂÝ„ó'ljº9>¯SÊ¿Ÿ„/Õ»Uц>J°7ö’f¢êó\㌈˜o¥J¢lt;©ëbß!ñätQ&Û“6Ä +ûƒ"KçZ‰ÔúÌñ{Ì–và¢Üðž×·½p‘Šÿ¾h•”Ž³Qšv¾×°¼uÔ½`ò+×ô >“§%óÄ:µ»Œ òåÚˆ"¾"[.<a€¨ÏàDŠ ÌÜûòYã…‚ø›ÎÿJż¿D"X©žaiìÄd7~ +1-<1âèOTêq ˜ã „°†åÌÐ\TU|ZvãÛ†Z}OúÃäc6=X 3»Qb`·×ýž·ûšÎ ÷C‰­¹›y½ ㈻¢m§s¥òFFy s +Ìž‰4„w’`€XïŒðÛrô±´„03M"÷à—&4w° +#]Ÿ}…VÖþÁCº›lí&IÌ'ªZíWÍéÊ öÃÝé[tî‚Ÿsà€÷J¹½'üIçͲ€>¢†nÿëò‘5Dð˜J;{÷R”ž9 N@ƆøÝ1Sæµ Èq&‡;•Š…Ìu.…&±…Ìõ¡ ÖOLyv%k%Î…ÚH1`RE#P§¥Ð½ßAgOrÊ“"CËævÖúèyA`~ ¾dæ®·ÙR@ /²zûÛ]y%Wf²ÏäÎL•SeØQAD?éÝÁD–Ês/¦/ªoMvôAKTëïk‹+Þ@r+ä‹,“Á%ÑhO#GïVâwÂáªÁ’ÌQ³¶Z€Ýý§K›K:“v¨=\w–ÿêS:ˆ'6R'ãïú5(C~YE#¶qgt?Ïõ™â§~ƒAN7^¾þ³jp!ûÒúµùØÐ(Ö”·©ä‹Âgn7ËŒîöº«a%ª¯ý§z·8Nåz“û@Ò-4¡äJ„.]ÞÝyˆÆ̾Õz‰H–â>Æ»ðÙLE`ôúBkr§×‘"¸m'¸n…ú=QyGÕÆÓ¾”R9b!é“ä•l8á_Ê Ìºò0ÎUóù5i‡;‡óc> ¥r4Ç^Ñ !I³]c ÒL˜™ÔHìŒ}Ooé2€õo[Šn•Úª·êÒJåSúDØɲ̞wËá)·JÙî‘Ìkzþ,cöZž2+x†¸—êçpŽ{2FßNF#ùãÝFDÖ<ç&œV¢–@+C÷´µšuäþb¥Eú7·»•<¨Ö"î†p_È Æ ã +g’I·Qxá )Э²ÿbýPCšŒ]QéÏà{s…b ìl +Yþ´M)ä߈RˆLØ&ã?‚ï•ÂyüÑÐpäN¨‘w`¥¨WpTiH;?`‡«ùø>\ÜM¸ù0Ø-=t,:!­Š÷\÷*—£_KªMRAø7µ¶ËÜ77(ìeØzå7{ŸtçNNØËU@b,ÕÏvs¹®r»­~çÖI¦'9¿º—3eé„èfÕ£dŠ'Ð ¬ÕÓΆp j܃ò?а+ŸÚ kŽæ¾åéË2[nèÉä˜Ì·4zUVÓ/bŽÝ{9xétóÏ{³4”õÌ8±/¿öʸ$¾áï½cÓL~ˆA&b^’ÍkdU–UÜ 9…µ8èŽ Ý Ó~Z©Ô­8*õ–‰Fœ;ÎÚXŽþR¨ž¥è¾@V™_î0“– ;®GžRºð~o¼5‹.×ø^ø`zyïÿi®uÒ¬nZ·Wž\¾‹£xžaÝ,¥®›æËÝãšÿÌôUÛ¿˜&\dˆ-ÎèóJLW«¨x)g\v Q¼­ÈýP4 L"çL{¢5ÝÉýË-ÁÔ˜Í}!XQxpÉ„‰Ÿ*tÝSO1•-§úÑOaæˆï7¹¸œ a[üsÿ«z0êº~ÚG±!¨ÄGŸÿŸ8ÚÜë¨Õ6mP••¬J›½ñÄ +Êó·l¾.2ìÒå0Š?Ý®V¨i‡˜¸çÕ}27Öí;WYÃ:õTRJ2j9™ƒÇî!´â¦-Zöß*.2ÉÀ¯xmÌKp€š>«o÷Å>º³K©f¿œkðßmÉÞaPú}eáGŠ,>¿ñ¹Õr’£><Ö Ã3×lõúŽ 5ï8þµá[Ĩ°xVÍ7ÞÖã^7üi÷yx4ÚäýxÈù~µ8„r„N”þ‰ØÄ_g`3àÓ=ĸ©õAã@>Îïµ8E¥AÇÒ#êU3p¾ +Xlí{¾t4Ï9̘iH1̦ªËŠ|'O"¢Šó¾’¸N¸q¬IÝ +t«?•Ö®a6m·)ÌÒÑíÊI[¿€æ°¡õ7u‘œ¸àòåØŸà7Ë~˜ˆ‰™p›äŸ«Kª%¢;8ð HЋ@ëÀ=äƒ3ñ=äR²Þ¬J-0üf›ý$û˜J¿h™ÍðO]Áàj>•UXÁW64‹¤uFÛÈB|΃p)à %Ö¥\ažbƒ‹ù¥U+!½õ`Bì?ºsžÈûh4Y½MPF5Ôc EæHßî„=Þ]toqŠ?]Ó^åõçiµÁ,¢™»1uÏGx†Õýy¿Oyj]8Ÿeê=E?u·:Txgå¶6γ4Ê´î;øUQµ°v(\â6@ÂQ»¸ïé8û½'IòÑY©¨A¯ú“ZMcE OS>B&ùš«Ý"µîÃëílûÁŶhô£¨¥i»ý4/N||dÏñ OÔ·cØÝÆü@4£dB¼¶8à–v$;:‰ ¬çÛé¸ëðŽø°ó”&È«1•„V‘AÔÂô:püà‹­q«|'î’§ü ÙìúÕ?{ÑšƒsÌ‹Í2¶œB­RܤçHܤ›êû¾ <ê–Evy$†o·ÅñĬ2IÈRó˜I¶0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -29704,290 +31384,353 @@ _ cleartomark endstream endobj -369 0 obj << +401 0 obj << /Type /Font /Subtype /Type1 -/Encoding 1364 0 R +/Encoding 1447 0 R /FirstChar 12 /LastChar 124 -/Widths 1365 0 R -/BaseFont /RGVXYX+CMBX12 -/FontDescriptor 367 0 R +/Widths 1448 0 R +/BaseFont /RWRSDY+CMBX12 +/FontDescriptor 399 0 R >> endobj -367 0 obj << +399 0 obj << /Ascent 694 /CapHeight 686 /Descent -194 -/FontName /RGVXYX+CMBX12 +/FontName /RWRSDY+CMBX12 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontBBox [-53 -251 1139 750] /Flags 4 -/CharSet (/fi/quoteright/hyphen/period/zero/one/two/three/four/five/six/seven/eight/nine/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/emdash) -/FontFile 368 0 R +/CharSet (/fi/quoteright/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/emdash) +/FontFile 400 0 R >> endobj -1365 0 obj -[625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 312 0 0 0 0 0 375 312 0 562 562 562 562 562 562 562 562 562 562 0 0 0 0 0 0 0 850 800 812 862 738 707 884 880 419 0 881 676 1067 880 845 769 0 839 625 782 865 850 1162 0 0 0 0 0 0 0 0 0 547 625 500 625 513 344 562 625 312 0 594 312 937 625 562 625 594 459 444 437 625 594 812 594 594 500 0 1125 ] +1448 0 obj +[625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 312 0 0 0 0 0 375 312 562 562 562 562 562 562 562 562 562 562 562 0 0 0 0 0 0 0 850 800 812 862 738 707 884 880 419 0 881 676 1067 880 845 769 0 839 625 782 865 850 1162 0 0 0 0 0 0 0 0 0 547 625 500 625 513 344 562 625 312 0 594 312 937 625 562 625 594 459 444 437 625 594 812 594 594 500 0 1125 ] endobj -1364 0 obj << +1447 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 12/fi 13/.notdef 39/quoteright 40/.notdef 45/hyphen/period 47/.notdef 48/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 75/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W 88/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef 124/emdash 125/.notdef] +/Differences [ 0 /.notdef 12/fi 13/.notdef 39/quoteright 40/.notdef 45/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine 58/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 75/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W 88/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef 124/emdash 125/.notdef] >> endobj -379 0 obj << +411 0 obj << /Type /Pages /Count 6 -/Parent 1366 0 R -/Kids [362 0 R 381 0 R 429 0 R 478 0 R 499 0 R 527 0 R] +/Parent 1449 0 R +/Kids [394 0 R 413 0 R 461 0 R 511 0 R 522 0 R 543 0 R] >> endobj -547 0 obj << +580 0 obj << /Type /Pages /Count 6 -/Parent 1366 0 R -/Kids [541 0 R 555 0 R 561 0 R 576 0 R 593 0 R 597 0 R] +/Parent 1449 0 R +/Kids [571 0 R 586 0 R 599 0 R 605 0 R 620 0 R 637 0 R] >> endobj -620 0 obj << +657 0 obj << /Type /Pages /Count 6 -/Parent 1366 0 R -/Kids [614 0 R 622 0 R 629 0 R 637 0 R 649 0 R 659 0 R] +/Parent 1449 0 R +/Kids [641 0 R 659 0 R 666 0 R 673 0 R 681 0 R 693 0 R] >> endobj -676 0 obj << +712 0 obj << /Type /Pages /Count 6 -/Parent 1366 0 R -/Kids [669 0 R 678 0 R 682 0 R 693 0 R 698 0 R 708 0 R] +/Parent 1449 0 R +/Kids [703 0 R 714 0 R 722 0 R 726 0 R 737 0 R 742 0 R] >> endobj -721 0 obj << +755 0 obj << /Type /Pages /Count 6 -/Parent 1366 0 R -/Kids [712 0 R 723 0 R 727 0 R 735 0 R 743 0 R 751 0 R] +/Parent 1449 0 R +/Kids [752 0 R 757 0 R 767 0 R 771 0 R 779 0 R 787 0 R] >> endobj -766 0 obj << +802 0 obj << /Type /Pages /Count 6 -/Parent 1366 0 R -/Kids [759 0 R 768 0 R 776 0 R 787 0 R 799 0 R 810 0 R] +/Parent 1449 0 R +/Kids [795 0 R 804 0 R 812 0 R 820 0 R 831 0 R 843 0 R] >> endobj -825 0 obj << +860 0 obj << /Type /Pages /Count 6 -/Parent 1367 0 R -/Kids [817 0 R 827 0 R 833 0 R 838 0 R 848 0 R 861 0 R] +/Parent 1450 0 R +/Kids [854 0 R 862 0 R 871 0 R 877 0 R 882 0 R 892 0 R] >> endobj -875 0 obj << +911 0 obj << /Type /Pages /Count 6 -/Parent 1367 0 R -/Kids [868 0 R 878 0 R 891 0 R 895 0 R 904 0 R 913 0 R] +/Parent 1450 0 R +/Kids [905 0 R 913 0 R 922 0 R 935 0 R 939 0 R 948 0 R] >> endobj -924 0 obj << +960 0 obj << /Type /Pages /Count 6 -/Parent 1367 0 R -/Kids [917 0 R 926 0 R 931 0 R 935 0 R 940 0 R 947 0 R] +/Parent 1450 0 R +/Kids [957 0 R 962 0 R 970 0 R 975 0 R 979 0 R 984 0 R] >> endobj -959 0 obj << +995 0 obj << /Type /Pages /Count 6 -/Parent 1367 0 R -/Kids [952 0 R 961 0 R 969 0 R 976 0 R 982 0 R 989 0 R] +/Parent 1450 0 R +/Kids [991 0 R 997 0 R 1005 0 R 1013 0 R 1020 0 R 1026 0 R] >> endobj -1007 0 obj << +1043 0 obj << /Type /Pages /Count 6 -/Parent 1367 0 R -/Kids [1000 0 R 1009 0 R 1019 0 R 1029 0 R 1036 0 R 1043 0 R] +/Parent 1450 0 R +/Kids [1033 0 R 1045 0 R 1053 0 R 1063 0 R 1073 0 R 1080 0 R] >> endobj -1057 0 obj << +1095 0 obj << /Type /Pages /Count 6 -/Parent 1367 0 R -/Kids [1052 0 R 1059 0 R 1065 0 R 1072 0 R 1078 0 R 1084 0 R] +/Parent 1450 0 R +/Kids [1087 0 R 1097 0 R 1103 0 R 1109 0 R 1116 0 R 1122 0 R] >> endobj -1095 0 obj << +1133 0 obj << /Type /Pages /Count 6 -/Parent 1368 0 R -/Kids [1090 0 R 1097 0 R 1104 0 R 1110 0 R 1119 0 R 1128 0 R] +/Parent 1451 0 R +/Kids [1128 0 R 1135 0 R 1141 0 R 1148 0 R 1154 0 R 1163 0 R] >> endobj -1139 0 obj << +1175 0 obj << /Type /Pages /Count 6 -/Parent 1368 0 R -/Kids [1132 0 R 1141 0 R 1149 0 R 1157 0 R 1162 0 R 1167 0 R] +/Parent 1451 0 R +/Kids [1172 0 R 1177 0 R 1185 0 R 1193 0 R 1201 0 R 1206 0 R] >> endobj -1176 0 obj << +1215 0 obj << /Type /Pages /Count 6 -/Parent 1368 0 R -/Kids [1172 0 R 1178 0 R 1183 0 R 1188 0 R 1195 0 R 1202 0 R] +/Parent 1451 0 R +/Kids [1211 0 R 1217 0 R 1222 0 R 1227 0 R 1232 0 R 1239 0 R] >> endobj -1213 0 obj << +1252 0 obj << /Type /Pages /Count 6 -/Parent 1368 0 R -/Kids [1209 0 R 1215 0 R 1220 0 R 1228 0 R 1232 0 R 1237 0 R] +/Parent 1451 0 R +/Kids [1246 0 R 1254 0 R 1261 0 R 1268 0 R 1273 0 R 1278 0 R] >> endobj -1246 0 obj << +1289 0 obj << /Type /Pages /Count 6 -/Parent 1368 0 R -/Kids [1242 0 R 1248 0 R 1253 0 R 1258 0 R 1262 0 R 1266 0 R] +/Parent 1451 0 R +/Kids [1286 0 R 1291 0 R 1296 0 R 1301 0 R 1306 0 R 1311 0 R] >> endobj -1282 0 obj << +1319 0 obj << /Type /Pages /Count 6 -/Parent 1368 0 R -/Kids [1275 0 R 1284 0 R 1291 0 R 1297 0 R 1301 0 R 1308 0 R] +/Parent 1451 0 R +/Kids [1316 0 R 1321 0 R 1327 0 R 1333 0 R 1341 0 R 1345 0 R] >> endobj -1324 0 obj << +1357 0 obj << /Type /Pages -/Count 2 -/Parent 1369 0 R -/Kids [1313 0 R 1326 0 R] +/Count 6 +/Parent 1452 0 R +/Kids [1349 0 R 1359 0 R 1367 0 R 1374 0 R 1380 0 R 1384 0 R] >> endobj -1366 0 obj << +1395 0 obj << +/Type /Pages +/Count 3 +/Parent 1452 0 R +/Kids [1391 0 R 1397 0 R 1409 0 R] +>> endobj +1449 0 obj << /Type /Pages /Count 36 -/Parent 1370 0 R -/Kids [379 0 R 547 0 R 620 0 R 676 0 R 721 0 R 766 0 R] +/Parent 1453 0 R +/Kids [411 0 R 580 0 R 657 0 R 712 0 R 755 0 R 802 0 R] >> endobj -1367 0 obj << +1450 0 obj << /Type /Pages /Count 36 -/Parent 1370 0 R -/Kids [825 0 R 875 0 R 924 0 R 959 0 R 1007 0 R 1057 0 R] +/Parent 1453 0 R +/Kids [860 0 R 911 0 R 960 0 R 995 0 R 1043 0 R 1095 0 R] >> endobj -1368 0 obj << +1451 0 obj << /Type /Pages /Count 36 -/Parent 1370 0 R -/Kids [1095 0 R 1139 0 R 1176 0 R 1213 0 R 1246 0 R 1282 0 R] +/Parent 1453 0 R +/Kids [1133 0 R 1175 0 R 1215 0 R 1252 0 R 1289 0 R 1319 0 R] >> endobj -1369 0 obj << +1452 0 obj << /Type /Pages -/Count 2 -/Parent 1370 0 R -/Kids [1324 0 R] +/Count 9 +/Parent 1453 0 R +/Kids [1357 0 R 1395 0 R] >> endobj -1370 0 obj << +1453 0 obj << /Type /Pages -/Count 110 -/Kids [1366 0 R 1367 0 R 1368 0 R 1369 0 R] +/Count 117 +/Kids [1449 0 R 1450 0 R 1451 0 R 1452 0 R] >> endobj -1371 0 obj << +1454 0 obj << /Type /Outlines /First 7 0 R /Last 7 0 R /Count 1 >> endobj +391 0 obj << +/Title 392 0 R +/A 389 0 R +/Parent 387 0 R +>> endobj +387 0 obj << +/Title 388 0 R +/A 385 0 R +/Parent 7 0 R +/Prev 367 0 R +/First 391 0 R +/Last 391 0 R +/Count -1 +>> endobj +383 0 obj << +/Title 384 0 R +/A 381 0 R +/Parent 367 0 R +/Prev 379 0 R +>> endobj +379 0 obj << +/Title 380 0 R +/A 377 0 R +/Parent 367 0 R +/Prev 375 0 R +/Next 383 0 R +>> endobj +375 0 obj << +/Title 376 0 R +/A 373 0 R +/Parent 367 0 R +/Prev 371 0 R +/Next 379 0 R +>> endobj +371 0 obj << +/Title 372 0 R +/A 369 0 R +/Parent 367 0 R +/Next 375 0 R +>> endobj +367 0 obj << +/Title 368 0 R +/A 365 0 R +/Parent 7 0 R +/Prev 339 0 R +/Next 387 0 R +/First 371 0 R +/Last 383 0 R +/Count -4 +>> endobj +363 0 obj << +/Title 364 0 R +/A 361 0 R +/Parent 339 0 R +/Prev 359 0 R +>> endobj 359 0 obj << /Title 360 0 R /A 357 0 R -/Parent 355 0 R +/Parent 339 0 R +/Prev 355 0 R +/Next 363 0 R >> endobj 355 0 obj << /Title 356 0 R /A 353 0 R -/Parent 7 0 R -/Prev 335 0 R -/First 359 0 R -/Last 359 0 R -/Count -1 +/Parent 339 0 R +/Prev 351 0 R +/Next 359 0 R >> endobj 351 0 obj << /Title 352 0 R /A 349 0 R -/Parent 335 0 R +/Parent 339 0 R /Prev 347 0 R +/Next 355 0 R >> endobj 347 0 obj << /Title 348 0 R /A 345 0 R -/Parent 335 0 R +/Parent 339 0 R /Prev 343 0 R /Next 351 0 R >> endobj 343 0 obj << /Title 344 0 R /A 341 0 R -/Parent 335 0 R -/Prev 339 0 R +/Parent 339 0 R /Next 347 0 R >> endobj 339 0 obj << /Title 340 0 R /A 337 0 R -/Parent 335 0 R -/Next 343 0 R +/Parent 7 0 R +/Prev 315 0 R +/Next 367 0 R +/First 343 0 R +/Last 363 0 R +/Count -6 >> endobj 335 0 obj << /Title 336 0 R /A 333 0 R -/Parent 7 0 R +/Parent 315 0 R /Prev 331 0 R -/Next 355 0 R -/First 339 0 R -/Last 351 0 R -/Count -4 >> endobj 331 0 obj << /Title 332 0 R /A 329 0 R -/Parent 7 0 R -/Prev 307 0 R +/Parent 315 0 R +/Prev 327 0 R /Next 335 0 R >> endobj 327 0 obj << /Title 328 0 R /A 325 0 R -/Parent 307 0 R +/Parent 315 0 R /Prev 323 0 R +/Next 331 0 R >> endobj 323 0 obj << /Title 324 0 R /A 321 0 R -/Parent 307 0 R +/Parent 315 0 R /Prev 319 0 R /Next 327 0 R >> endobj 319 0 obj << /Title 320 0 R /A 317 0 R -/Parent 307 0 R -/Prev 315 0 R +/Parent 315 0 R /Next 323 0 R >> endobj 315 0 obj << /Title 316 0 R /A 313 0 R -/Parent 307 0 R -/Prev 311 0 R -/Next 319 0 R +/Parent 7 0 R +/Prev 247 0 R +/Next 339 0 R +/First 319 0 R +/Last 335 0 R +/Count -5 >> endobj 311 0 obj << /Title 312 0 R /A 309 0 R -/Parent 307 0 R -/Next 315 0 R +/Parent 247 0 R +/Prev 307 0 R >> endobj 307 0 obj << /Title 308 0 R /A 305 0 R -/Parent 7 0 R -/Prev 247 0 R -/Next 331 0 R -/First 311 0 R -/Last 327 0 R -/Count -5 +/Parent 247 0 R +/Prev 303 0 R +/Next 311 0 R >> endobj 303 0 obj << /Title 304 0 R /A 301 0 R /Parent 247 0 R /Prev 299 0 R +/Next 307 0 R >> endobj 299 0 obj << /Title 300 0 R @@ -30084,10 +31827,10 @@ endobj /A 245 0 R /Parent 7 0 R /Prev 163 0 R -/Next 307 0 R +/Next 315 0 R /First 251 0 R -/Last 303 0 R -/Count -14 +/Last 311 0 R +/Count -16 >> endobj 243 0 obj << /Title 244 0 R @@ -30512,1420 +32255,1503 @@ endobj 7 0 obj << /Title 8 0 R /A 5 0 R -/Parent 1371 0 R +/Parent 1454 0 R /First 11 0 R -/Last 355 0 R +/Last 387 0 R /Count -11 >> endobj -1372 0 obj << -/Names [(Doc-Start) 366 0 R (Hfootnote.1) 519 0 R (Hfootnote.2) 1273 0 R (Item.1) 567 0 R (Item.10) 580 0 R (Item.11) 581 0 R (Item.12) 582 0 R (Item.13) 583 0 R (Item.14) 584 0 R (Item.15) 585 0 R (Item.16) 586 0 R (Item.17) 587 0 R (Item.18) 588 0 R (Item.19) 589 0 R (Item.2) 568 0 R (Item.20) 590 0 R (Item.21) 591 0 R (Item.22) 603 0 R (Item.23) 604 0 R (Item.24) 605 0 R (Item.25) 606 0 R (Item.26) 607 0 R (Item.27) 608 0 R (Item.28) 609 0 R (Item.29) 610 0 R (Item.3) 569 0 R (Item.30) 611 0 R (Item.31) 612 0 R (Item.32) 617 0 R (Item.33) 618 0 R (Item.34) 632 0 R (Item.35) 633 0 R (Item.36) 634 0 R (Item.37) 635 0 R (Item.38) 675 0 R (Item.39) 883 0 R (Item.4) 570 0 R (Item.40) 884 0 R (Item.41) 885 0 R (Item.42) 945 0 R (Item.43) 950 0 R (Item.44) 958 0 R (Item.45) 967 0 R (Item.46) 996 0 R (Item.47) 997 0 R (Item.48) 998 0 R (Item.49) 1013 0 R (Item.5) 571 0 R (Item.50) 1014 0 R (Item.51) 1015 0 R (Item.52) 1016 0 R (Item.53) 1017 0 R (Item.54) 1026 0 R (Item.55) 1027 0 R (Item.56) 1032 0 R (Item.57) 1033 0 R (Item.58) 1034 0 R (Item.59) 1050 0 R (Item.6) 572 0 R (Item.60) 1069 0 R (Item.61) 1070 0 R (Item.62) 1101 0 R (Item.63) 1102 0 R (Item.64) 1116 0 R (Item.65) 1117 0 R (Item.66) 1125 0 R (Item.67) 1126 0 R (Item.68) 1137 0 R (Item.69) 1138 0 R (Item.7) 573 0 R (Item.70) 1146 0 R (Item.71) 1147 0 R (Item.72) 1154 0 R (Item.73) 1155 0 R (Item.74) 1193 0 R (Item.75) 1200 0 R (Item.76) 1207 0 R (Item.8) 574 0 R (Item.9) 579 0 R (cite.APNUM06) 553 0 R (cite.BLACS) 524 0 R (cite.BLAS1) 494 0 R (cite.BLAS2) 495 0 R (cite.BLAS3) 496 0 R (cite.CAI_SAAD) 1319 0 R (cite.CAI_SARKIS) 1320 0 R (cite.CAI_WIDLUND) 1321 0 R (cite.DD1) 1322 0 R (cite.DD2) 1332 0 R (cite.DOUGLAS) 1317 0 R (cite.KIVA3PSBLAS) 1331 0 R (cite.METIS) 525 0 R (cite.MPI1) 1333 0 R (cite.PARA04) 552 0 R (cite.PARA04FOREST) 1318 0 R (cite.PSBLAS) 1330 0 R (cite.SUPERLU) 1329 0 R (cite.UMFPACK) 1323 0 R (cite.machiels) 491 0 R (cite.metcalf) 490 0 R (cite.sblas02) 493 0 R (cite.sblas97) 492 0 R (descdata) 600 0 R (equation.1) 790 0 R (equation.2) 791 0 R (equation.3) 792 0 R (figure.1) 523 0 R (figure.2) 546 0 R (figure.3) 619 0 R (figure.4) 627 0 R (figure.5) 645 0 R (figure.6) 852 0 R (figure.7) 889 0 R (figure.8) 1225 0 R (figure.9) 1226 0 R (page.1) 365 0 R (page.10) 616 0 R (page.100) 1277 0 R (page.101) 1286 0 R (page.102) 1293 0 R (page.103) 1299 0 R (page.104) 1303 0 R (page.105) 1310 0 R (page.106) 1315 0 R (page.107) 1328 0 R (page.11) 624 0 R (page.12) 631 0 R (page.13) 639 0 R (page.14) 651 0 R (page.15) 661 0 R (page.16) 671 0 R (page.17) 680 0 R (page.18) 684 0 R (page.19) 695 0 R (page.2) 501 0 R (page.20) 700 0 R (page.21) 710 0 R (page.22) 714 0 R (page.23) 725 0 R (page.24) 729 0 R (page.25) 737 0 R (page.26) 745 0 R (page.27) 753 0 R (page.28) 761 0 R (page.29) 770 0 R (page.3) 529 0 R (page.30) 778 0 R (page.31) 789 0 R (page.32) 801 0 R (page.33) 812 0 R (page.34) 819 0 R (page.35) 829 0 R (page.36) 835 0 R (page.37) 840 0 R (page.38) 850 0 R (page.39) 863 0 R (page.4) 543 0 R (page.40) 870 0 R (page.41) 880 0 R (page.42) 893 0 R (page.43) 897 0 R (page.44) 906 0 R (page.45) 915 0 R (page.46) 919 0 R (page.47) 928 0 R (page.48) 933 0 R (page.49) 937 0 R (page.5) 557 0 R (page.50) 942 0 R (page.51) 949 0 R (page.52) 954 0 R (page.53) 963 0 R (page.54) 971 0 R (page.55) 978 0 R (page.56) 984 0 R (page.57) 991 0 R (page.58) 1002 0 R (page.59) 1011 0 R (page.6) 563 0 R (page.60) 1021 0 R (page.61) 1031 0 R (page.62) 1038 0 R (page.63) 1045 0 R (page.64) 1054 0 R (page.65) 1061 0 R (page.66) 1067 0 R (page.67) 1074 0 R (page.68) 1080 0 R (page.69) 1086 0 R (page.7) 578 0 R (page.70) 1092 0 R (page.71) 1099 0 R (page.72) 1106 0 R (page.73) 1112 0 R (page.74) 1121 0 R (page.75) 1130 0 R (page.76) 1134 0 R (page.77) 1143 0 R (page.78) 1151 0 R (page.79) 1159 0 R (page.8) 595 0 R (page.80) 1164 0 R (page.81) 1169 0 R (page.82) 1174 0 R (page.83) 1180 0 R (page.84) 1185 0 R (page.85) 1190 0 R (page.86) 1197 0 R (page.87) 1204 0 R (page.88) 1211 0 R (page.89) 1217 0 R (page.9) 599 0 R (page.90) 1222 0 R (page.91) 1230 0 R (page.92) 1234 0 R (page.93) 1239 0 R (page.94) 1244 0 R (page.95) 1250 0 R (page.96) 1255 0 R (page.97) 1260 0 R (page.98) 1264 0 R (page.99) 1268 0 R (page.i) 383 0 R (page.ii) 431 0 R (precdata) 640 0 R (section*.1) 384 0 R (section*.10) 78 0 R (section*.100) 1113 0 R (section*.101) 1115 0 R (section*.102) 242 0 R (section*.103) 1122 0 R (section*.104) 1124 0 R (section*.105) 250 0 R (section*.106) 1135 0 R (section*.107) 1136 0 R (section*.108) 254 0 R (section*.109) 1144 0 R (section*.11) 664 0 R (section*.110) 1145 0 R (section*.111) 258 0 R (section*.112) 1152 0 R (section*.113) 1153 0 R (section*.114) 262 0 R (section*.115) 1160 0 R (section*.116) 266 0 R (section*.117) 1165 0 R (section*.118) 270 0 R (section*.119) 1170 0 R (section*.12) 82 0 R (section*.120) 274 0 R (section*.121) 1175 0 R (section*.122) 278 0 R (section*.123) 1181 0 R (section*.124) 282 0 R (section*.125) 1186 0 R (section*.126) 286 0 R (section*.127) 1191 0 R (section*.128) 1192 0 R (section*.129) 290 0 R (section*.13) 666 0 R (section*.130) 1198 0 R (section*.131) 1199 0 R (section*.132) 294 0 R (section*.133) 1205 0 R (section*.134) 1206 0 R (section*.135) 298 0 R (section*.136) 1212 0 R (section*.137) 302 0 R (section*.138) 1218 0 R (section*.139) 310 0 R (section*.14) 86 0 R (section*.140) 1235 0 R (section*.141) 314 0 R (section*.142) 1240 0 R (section*.143) 318 0 R (section*.144) 1245 0 R (section*.145) 322 0 R (section*.146) 1251 0 R (section*.147) 326 0 R (section*.148) 1256 0 R (section*.149) 338 0 R (section*.15) 672 0 R (section*.150) 1269 0 R (section*.151) 1271 0 R (section*.152) 342 0 R (section*.153) 1278 0 R (section*.154) 346 0 R (section*.155) 1287 0 R (section*.156) 350 0 R (section*.157) 1294 0 R (section*.158) 358 0 R (section*.159) 1304 0 R (section*.16) 674 0 R (section*.160) 1316 0 R (section*.17) 94 0 R (section*.18) 685 0 R (section*.19) 98 0 R (section*.2) 62 0 R (section*.20) 701 0 R (section*.21) 102 0 R (section*.22) 715 0 R (section*.23) 106 0 R (section*.24) 730 0 R (section*.25) 110 0 R (section*.26) 738 0 R (section*.27) 114 0 R (section*.28) 746 0 R (section*.29) 118 0 R (section*.3) 646 0 R (section*.30) 754 0 R (section*.31) 122 0 R (section*.32) 763 0 R (section*.33) 126 0 R (section*.34) 771 0 R (section*.35) 130 0 R (section*.36) 783 0 R (section*.37) 134 0 R (section*.38) 794 0 R (section*.39) 138 0 R (section*.4) 66 0 R (section*.40) 813 0 R (section*.41) 146 0 R (section*.42) 842 0 R (section*.43) 853 0 R (section*.44) 150 0 R (section*.45) 872 0 R (section*.46) 882 0 R (section*.47) 886 0 R (section*.48) 154 0 R (section*.49) 908 0 R (section*.5) 653 0 R (section*.50) 909 0 R (section*.51) 158 0 R (section*.52) 921 0 R (section*.53) 922 0 R (section*.54) 166 0 R (section*.55) 938 0 R (section*.56) 944 0 R (section*.57) 170 0 R (section*.58) 955 0 R (section*.59) 957 0 R (section*.6) 70 0 R (section*.60) 174 0 R (section*.61) 964 0 R (section*.62) 966 0 R (section*.63) 178 0 R (section*.64) 972 0 R (section*.65) 182 0 R (section*.66) 979 0 R (section*.67) 186 0 R (section*.68) 985 0 R (section*.69) 190 0 R (section*.7) 656 0 R (section*.70) 992 0 R (section*.71) 995 0 R (section*.72) 194 0 R (section*.73) 1003 0 R (section*.74) 1012 0 R (section*.75) 198 0 R (section*.76) 1022 0 R (section*.77) 1025 0 R (section*.78) 202 0 R (section*.79) 1039 0 R (section*.8) 74 0 R (section*.80) 206 0 R (section*.81) 1046 0 R (section*.82) 1049 0 R (section*.83) 210 0 R (section*.84) 1055 0 R (section*.85) 214 0 R (section*.86) 1062 0 R (section*.87) 1068 0 R (section*.88) 218 0 R (section*.89) 1075 0 R (section*.9) 662 0 R (section*.90) 222 0 R (section*.91) 1081 0 R (section*.92) 226 0 R (section*.93) 1087 0 R (section*.94) 230 0 R (section*.95) 1093 0 R (section*.96) 1100 0 R (section*.97) 234 0 R (section*.98) 1107 0 R (section*.99) 238 0 R (section.1) 10 0 R (section.10) 334 0 R (section.11) 354 0 R (section.2) 14 0 R (section.3) 34 0 R (section.4) 90 0 R (section.5) 142 0 R (section.6) 162 0 R (section.7) 246 0 R (section.8) 306 0 R (section.9) 330 0 R (spdata) 625 0 R (subsection.2.1) 18 0 R (subsection.2.2) 22 0 R (subsection.2.3) 26 0 R (subsection.2.4) 30 0 R (subsection.3.1) 38 0 R (subsection.3.2) 46 0 R (subsection.3.3) 54 0 R (subsection.3.4) 58 0 R (subsubsection.3.1.1) 42 0 R (subsubsection.3.2.1) 50 0 R (table.1) 686 0 R (table.10) 782 0 R (table.11) 793 0 R (table.12) 814 0 R (table.13) 841 0 R (table.14) 871 0 R (table.15) 907 0 R (table.16) 920 0 R (table.2) 702 0 R (table.3) 716 0 R (table.4) 731 0 R (table.5) 739 0 R (table.6) 747 0 R (table.7) 755 0 R (table.8) 762 0 R (table.9) 772 0 R (title.0) 6 0 R] +1455 0 obj << +/Names [(Doc-Start) 398 0 R (Hfootnote.1) 563 0 R (Hfootnote.2) 1356 0 R (Item.1) 611 0 R (Item.10) 624 0 R (Item.11) 625 0 R (Item.12) 626 0 R (Item.13) 627 0 R (Item.14) 628 0 R (Item.15) 629 0 R (Item.16) 630 0 R (Item.17) 631 0 R (Item.18) 632 0 R (Item.19) 633 0 R (Item.2) 612 0 R (Item.20) 634 0 R (Item.21) 635 0 R (Item.22) 647 0 R (Item.23) 648 0 R (Item.24) 649 0 R (Item.25) 650 0 R (Item.26) 651 0 R (Item.27) 652 0 R (Item.28) 653 0 R (Item.29) 654 0 R (Item.3) 613 0 R (Item.30) 655 0 R (Item.31) 656 0 R (Item.32) 662 0 R (Item.33) 663 0 R (Item.34) 676 0 R (Item.35) 677 0 R (Item.36) 678 0 R (Item.37) 679 0 R (Item.38) 720 0 R (Item.39) 927 0 R (Item.4) 614 0 R (Item.40) 928 0 R (Item.41) 929 0 R (Item.42) 989 0 R (Item.43) 994 0 R (Item.44) 1003 0 R (Item.45) 1011 0 R (Item.46) 1040 0 R (Item.47) 1041 0 R (Item.48) 1042 0 R (Item.49) 1057 0 R (Item.5) 615 0 R (Item.50) 1058 0 R (Item.51) 1059 0 R (Item.52) 1060 0 R (Item.53) 1061 0 R (Item.54) 1070 0 R (Item.55) 1071 0 R (Item.56) 1076 0 R (Item.57) 1077 0 R (Item.58) 1078 0 R (Item.59) 1094 0 R (Item.6) 616 0 R (Item.60) 1113 0 R (Item.61) 1114 0 R (Item.62) 1145 0 R (Item.63) 1146 0 R (Item.64) 1160 0 R (Item.65) 1161 0 R (Item.66) 1169 0 R (Item.67) 1170 0 R (Item.68) 1182 0 R (Item.69) 1183 0 R (Item.7) 617 0 R (Item.70) 1190 0 R (Item.71) 1191 0 R (Item.72) 1198 0 R (Item.73) 1199 0 R (Item.74) 1237 0 R (Item.75) 1244 0 R (Item.76) 1251 0 R (Item.77) 1259 0 R (Item.78) 1266 0 R (Item.8) 618 0 R (Item.9) 623 0 R (cite.APNUM06) 597 0 R (cite.BLACS) 568 0 R (cite.BLAS1) 538 0 R (cite.BLAS2) 539 0 R (cite.BLAS3) 540 0 R (cite.CAI_SAAD) 1403 0 R (cite.CAI_SARKIS) 1404 0 R (cite.CAI_WIDLUND) 1405 0 R (cite.DD1) 1406 0 R (cite.DD2) 1415 0 R (cite.DOUGLAS) 1401 0 R (cite.KIVA3PSBLAS) 1414 0 R (cite.METIS) 569 0 R (cite.MPI1) 1416 0 R (cite.PARA04) 596 0 R (cite.PARA04FOREST) 1402 0 R (cite.PSBLAS) 1413 0 R (cite.SUPERLU) 1412 0 R (cite.UMFPACK) 1407 0 R (cite.machiels) 535 0 R (cite.metcalf) 534 0 R (cite.sblas02) 537 0 R (cite.sblas97) 536 0 R (descdata) 644 0 R (equation.1) 834 0 R (equation.2) 835 0 R (equation.3) 836 0 R (figure.1) 567 0 R (figure.2) 591 0 R (figure.3) 664 0 R (figure.4) 671 0 R (figure.5) 689 0 R (figure.6) 896 0 R (figure.7) 933 0 R (figure.8) 1283 0 R (figure.9) 1284 0 R (page.1) 397 0 R (page.10) 661 0 R (page.100) 1323 0 R (page.101) 1329 0 R (page.102) 1335 0 R (page.103) 1343 0 R (page.104) 1347 0 R (page.105) 1351 0 R (page.106) 1361 0 R (page.107) 1369 0 R (page.108) 1376 0 R (page.109) 1382 0 R (page.11) 668 0 R (page.110) 1386 0 R (page.111) 1393 0 R (page.112) 1399 0 R (page.113) 1411 0 R (page.12) 675 0 R (page.13) 683 0 R (page.14) 695 0 R (page.15) 705 0 R (page.16) 716 0 R (page.17) 724 0 R (page.18) 728 0 R (page.19) 739 0 R (page.2) 545 0 R (page.20) 744 0 R (page.21) 754 0 R (page.22) 759 0 R (page.23) 769 0 R (page.24) 773 0 R (page.25) 781 0 R (page.26) 789 0 R (page.27) 797 0 R (page.28) 806 0 R (page.29) 814 0 R (page.3) 573 0 R (page.30) 822 0 R (page.31) 833 0 R (page.32) 845 0 R (page.33) 856 0 R (page.34) 864 0 R (page.35) 873 0 R (page.36) 879 0 R (page.37) 884 0 R (page.38) 894 0 R (page.39) 907 0 R (page.4) 588 0 R (page.40) 915 0 R (page.41) 924 0 R (page.42) 937 0 R (page.43) 941 0 R (page.44) 950 0 R (page.45) 959 0 R (page.46) 964 0 R (page.47) 972 0 R (page.48) 977 0 R (page.49) 981 0 R (page.5) 601 0 R (page.50) 986 0 R (page.51) 993 0 R (page.52) 999 0 R (page.53) 1007 0 R (page.54) 1015 0 R (page.55) 1022 0 R (page.56) 1028 0 R (page.57) 1035 0 R (page.58) 1047 0 R (page.59) 1055 0 R (page.6) 607 0 R (page.60) 1065 0 R (page.61) 1075 0 R (page.62) 1082 0 R (page.63) 1089 0 R (page.64) 1099 0 R (page.65) 1105 0 R (page.66) 1111 0 R (page.67) 1118 0 R (page.68) 1124 0 R (page.69) 1130 0 R (page.7) 622 0 R (page.70) 1137 0 R (page.71) 1143 0 R (page.72) 1150 0 R (page.73) 1156 0 R (page.74) 1165 0 R (page.75) 1174 0 R (page.76) 1179 0 R (page.77) 1187 0 R (page.78) 1195 0 R (page.79) 1203 0 R (page.8) 639 0 R (page.80) 1208 0 R (page.81) 1213 0 R (page.82) 1219 0 R (page.83) 1224 0 R (page.84) 1229 0 R (page.85) 1234 0 R (page.86) 1241 0 R (page.87) 1248 0 R (page.88) 1256 0 R (page.89) 1263 0 R (page.9) 643 0 R (page.90) 1270 0 R (page.91) 1275 0 R (page.92) 1280 0 R (page.93) 1288 0 R (page.94) 1293 0 R (page.95) 1298 0 R (page.96) 1303 0 R (page.97) 1308 0 R (page.98) 1313 0 R (page.99) 1318 0 R (page.i) 415 0 R (page.ii) 463 0 R (page.iii) 513 0 R (precdata) 684 0 R (section*.1) 416 0 R (section*.10) 78 0 R (section*.100) 1157 0 R (section*.101) 1159 0 R (section*.102) 242 0 R (section*.103) 1166 0 R (section*.104) 1168 0 R (section*.105) 250 0 R (section*.106) 1180 0 R (section*.107) 1181 0 R (section*.108) 254 0 R (section*.109) 1188 0 R (section*.11) 708 0 R (section*.110) 1189 0 R (section*.111) 258 0 R (section*.112) 1196 0 R (section*.113) 1197 0 R (section*.114) 262 0 R (section*.115) 1204 0 R (section*.116) 266 0 R (section*.117) 1209 0 R (section*.118) 270 0 R (section*.119) 1214 0 R (section*.12) 82 0 R (section*.120) 274 0 R (section*.121) 1220 0 R (section*.122) 278 0 R (section*.123) 1225 0 R (section*.124) 282 0 R (section*.125) 1230 0 R (section*.126) 286 0 R (section*.127) 1235 0 R (section*.128) 1236 0 R (section*.129) 290 0 R (section*.13) 710 0 R (section*.130) 1242 0 R (section*.131) 1243 0 R (section*.132) 294 0 R (section*.133) 1249 0 R (section*.134) 1250 0 R (section*.135) 298 0 R (section*.136) 1257 0 R (section*.137) 1258 0 R (section*.138) 302 0 R (section*.139) 1264 0 R (section*.14) 86 0 R (section*.140) 1265 0 R (section*.141) 306 0 R (section*.142) 1271 0 R (section*.143) 310 0 R (section*.144) 1276 0 R (section*.145) 318 0 R (section*.146) 1294 0 R (section*.147) 322 0 R (section*.148) 1299 0 R (section*.149) 326 0 R (section*.15) 717 0 R (section*.150) 1304 0 R (section*.151) 330 0 R (section*.152) 1309 0 R (section*.153) 334 0 R (section*.154) 1314 0 R (section*.155) 342 0 R (section*.156) 346 0 R (section*.157) 1324 0 R (section*.158) 350 0 R (section*.159) 1330 0 R (section*.16) 719 0 R (section*.160) 354 0 R (section*.161) 358 0 R (section*.162) 1336 0 R (section*.163) 362 0 R (section*.164) 1338 0 R (section*.165) 370 0 R (section*.166) 1352 0 R (section*.167) 1354 0 R (section*.168) 374 0 R (section*.169) 1362 0 R (section*.17) 94 0 R (section*.170) 378 0 R (section*.171) 1370 0 R (section*.172) 382 0 R (section*.173) 1377 0 R (section*.174) 390 0 R (section*.175) 1387 0 R (section*.176) 1400 0 R (section*.18) 729 0 R (section*.19) 98 0 R (section*.2) 62 0 R (section*.20) 745 0 R (section*.21) 102 0 R (section*.22) 760 0 R (section*.23) 106 0 R (section*.24) 774 0 R (section*.25) 110 0 R (section*.26) 782 0 R (section*.27) 114 0 R (section*.28) 790 0 R (section*.29) 118 0 R (section*.3) 690 0 R (section*.30) 798 0 R (section*.31) 122 0 R (section*.32) 808 0 R (section*.33) 126 0 R (section*.34) 815 0 R (section*.35) 130 0 R (section*.36) 827 0 R (section*.37) 134 0 R (section*.38) 838 0 R (section*.39) 138 0 R (section*.4) 66 0 R (section*.40) 857 0 R (section*.41) 146 0 R (section*.42) 886 0 R (section*.43) 897 0 R (section*.44) 150 0 R (section*.45) 917 0 R (section*.46) 926 0 R (section*.47) 930 0 R (section*.48) 154 0 R (section*.49) 952 0 R (section*.5) 697 0 R (section*.50) 953 0 R (section*.51) 158 0 R (section*.52) 966 0 R (section*.53) 967 0 R (section*.54) 166 0 R (section*.55) 982 0 R (section*.56) 988 0 R (section*.57) 170 0 R (section*.58) 1000 0 R (section*.59) 1002 0 R (section*.6) 70 0 R (section*.60) 174 0 R (section*.61) 1008 0 R (section*.62) 1010 0 R (section*.63) 178 0 R (section*.64) 1016 0 R (section*.65) 182 0 R (section*.66) 1023 0 R (section*.67) 186 0 R (section*.68) 1029 0 R (section*.69) 190 0 R (section*.7) 700 0 R (section*.70) 1036 0 R (section*.71) 1039 0 R (section*.72) 194 0 R (section*.73) 1048 0 R (section*.74) 1056 0 R (section*.75) 198 0 R (section*.76) 1066 0 R (section*.77) 1069 0 R (section*.78) 202 0 R (section*.79) 1083 0 R (section*.8) 74 0 R (section*.80) 206 0 R (section*.81) 1090 0 R (section*.82) 1093 0 R (section*.83) 210 0 R (section*.84) 1100 0 R (section*.85) 214 0 R (section*.86) 1106 0 R (section*.87) 1112 0 R (section*.88) 218 0 R (section*.89) 1119 0 R (section*.9) 706 0 R (section*.90) 222 0 R (section*.91) 1125 0 R (section*.92) 226 0 R (section*.93) 1131 0 R (section*.94) 230 0 R (section*.95) 1138 0 R (section*.96) 1144 0 R (section*.97) 234 0 R (section*.98) 1151 0 R (section*.99) 238 0 R (section.1) 10 0 R (section.10) 366 0 R (section.11) 386 0 R (section.2) 14 0 R (section.3) 34 0 R (section.4) 90 0 R (section.5) 142 0 R (section.6) 162 0 R (section.7) 246 0 R (section.8) 314 0 R (section.9) 338 0 R (spdata) 669 0 R (subsection.2.1) 18 0 R (subsection.2.2) 22 0 R (subsection.2.3) 26 0 R (subsection.2.4) 30 0 R (subsection.3.1) 38 0 R (subsection.3.2) 46 0 R (subsection.3.3) 54 0 R (subsection.3.4) 58 0 R (subsubsection.3.1.1) 42 0 R (subsubsection.3.2.1) 50 0 R (table.1) 730 0 R (table.10) 826 0 R (table.11) 837 0 R (table.12) 858 0 R (table.13) 885 0 R (table.14) 916 0 R (table.15) 951 0 R (table.16) 965 0 R (table.2) 746 0 R (table.3) 761 0 R (table.4) 775 0 R (table.5) 783 0 R (table.6) 791 0 R (table.7) 799 0 R (table.8) 807 0 R (table.9) 816 0 R (title.0) 6 0 R] /Limits [(Doc-Start) (title.0)] >> endobj -1373 0 obj << -/Kids [1372 0 R] +1456 0 obj << +/Kids [1455 0 R] >> endobj -1374 0 obj << -/Dests 1373 0 R +1457 0 obj << +/Dests 1456 0 R >> endobj -1375 0 obj << +1458 0 obj << /Type /Catalog -/Pages 1370 0 R -/Outlines 1371 0 R -/Names 1374 0 R - /URI (http://ce.uniroma2.it/psblas) /PageMode /UseOutlines /PageLabels << /Nums [0 << /S /D >> 1 << /S /r >> 3 << /S /D >> ] >> -/OpenAction 361 0 R +/Pages 1453 0 R +/Outlines 1454 0 R +/Names 1457 0 R + /URI (http://ce.uniroma2.it/psblas) /PageMode /UseOutlines /PageLabels << /Nums [0 << /S /D >> 1 << /S /r >> 4 << /S /D >> ] >> +/OpenAction 393 0 R >> endobj -1376 0 obj << +1459 0 obj << /Title (Parallel Sparse BLAS V. 2.1) /Subject (Parallel Sparse Basic Linear Algebra Subroutines) /Keywords (Computer Science Linear Algebra Fluid Dynamics Parallel Linux MPI PSBLAS Iterative Solvers Preconditioners) /Creator (pdfLaTeX) /Producer ($Id: userguide.tex 1534 2007-01-24 09:32:49Z sfilippo $) /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords() -/CreationDate (D:20070126114231+01'00') +/CreationDate (D:20070130165710+01'00') /PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4) >> endobj xref -0 1377 +0 1460 0000000001 65535 f 0000000002 00000 f 0000000003 00000 f 0000000004 00000 f 0000000000 00000 f 0000000009 00000 n -0000009214 00000 n -0001015392 00000 n +0000009886 00000 n +0001069792 00000 n 0000000052 00000 n 0000000094 00000 n -0000104315 00000 n -0001015320 00000 n +0000113810 00000 n +0001069720 00000 n 0000000139 00000 n 0000000172 00000 n -0000117307 00000 n -0001015197 00000 n +0000126802 00000 n +0001069597 00000 n 0000000218 00000 n 0000000255 00000 n -0000123623 00000 n -0001015123 00000 n +0000133118 00000 n +0001069523 00000 n 0000000306 00000 n 0000000347 00000 n -0000146547 00000 n -0001015036 00000 n +0000156042 00000 n +0001069436 00000 n 0000000398 00000 n 0000000437 00000 n -0000158498 00000 n -0001014949 00000 n +0000167993 00000 n +0001069349 00000 n 0000000488 00000 n 0000000532 00000 n -0000173724 00000 n -0001014875 00000 n +0000183219 00000 n +0001069275 00000 n 0000000583 00000 n 0000000623 00000 n -0000185279 00000 n -0001014752 00000 n +0000194774 00000 n +0001069152 00000 n 0000000669 00000 n 0000000705 00000 n -0000185341 00000 n -0001014641 00000 n +0000194836 00000 n +0001069041 00000 n 0000000756 00000 n 0000000804 00000 n -0000196844 00000 n -0001014580 00000 n +0000206339 00000 n +0001068980 00000 n 0000000860 00000 n 0000000900 00000 n -0000208709 00000 n -0001014456 00000 n +0000218204 00000 n +0001068856 00000 n 0000000951 00000 n 0000001002 00000 n -0000221463 00000 n -0001014395 00000 n +0000230958 00000 n +0001068795 00000 n 0000001058 00000 n 0000001098 00000 n -0000231138 00000 n -0001014308 00000 n +0000240633 00000 n +0001068708 00000 n 0000001149 00000 n 0000001201 00000 n -0000231326 00000 n -0001014197 00000 n +0000240821 00000 n +0001068597 00000 n 0000001252 00000 n 0000001304 00000 n -0000231388 00000 n -0001014123 00000 n +0000240883 00000 n +0001068523 00000 n 0000001351 00000 n 0000001403 00000 n -0000243315 00000 n -0001014036 00000 n +0000252810 00000 n +0001068436 00000 n 0000001450 00000 n 0000001502 00000 n -0000243441 00000 n -0001013949 00000 n +0000252936 00000 n +0001068349 00000 n 0000001549 00000 n 0000001602 00000 n -0000254036 00000 n -0001013862 00000 n +0000263531 00000 n +0001068262 00000 n 0000001649 00000 n 0000001694 00000 n -0000254161 00000 n -0001013775 00000 n +0000263656 00000 n +0001068175 00000 n 0000001742 00000 n 0000001786 00000 n -0000254286 00000 n -0001013688 00000 n +0000263781 00000 n +0001068088 00000 n 0000001834 00000 n 0000001878 00000 n -0000259515 00000 n -0001013614 00000 n +0000269010 00000 n +0001068014 00000 n 0000001926 00000 n 0000001972 00000 n -0000260492 00000 n -0001013488 00000 n +0000269987 00000 n +0001067888 00000 n 0000002018 00000 n 0000002061 00000 n -0000271097 00000 n -0001013414 00000 n +0000280592 00000 n +0001067814 00000 n 0000002109 00000 n 0000002142 00000 n -0000284073 00000 n -0001013325 00000 n +0000293568 00000 n +0001067725 00000 n 0000002190 00000 n 0000002222 00000 n -0000296174 00000 n -0001013234 00000 n +0000305669 00000 n +0001067634 00000 n 0000002271 00000 n 0000002304 00000 n -0000306703 00000 n -0001013142 00000 n +0000316198 00000 n +0001067542 00000 n 0000002353 00000 n 0000002386 00000 n -0000315131 00000 n -0001013050 00000 n +0000324626 00000 n +0001067450 00000 n 0000002435 00000 n 0000002469 00000 n -0000324099 00000 n -0001012958 00000 n +0000333594 00000 n +0001067358 00000 n 0000002518 00000 n 0000002551 00000 n -0000334119 00000 n -0001012866 00000 n +0000343614 00000 n +0001067266 00000 n 0000002600 00000 n 0000002634 00000 n -0000343247 00000 n -0001012774 00000 n +0000352742 00000 n +0001067174 00000 n 0000002683 00000 n 0000002716 00000 n -0000353129 00000 n -0001012682 00000 n +0000362624 00000 n +0001067082 00000 n 0000002765 00000 n 0000002799 00000 n -0000361564 00000 n -0001012590 00000 n +0000371059 00000 n +0001066990 00000 n 0000002848 00000 n 0000002881 00000 n -0000373338 00000 n -0001012498 00000 n +0000382833 00000 n +0001066898 00000 n 0000002930 00000 n 0000002961 00000 n -0000395570 00000 n -0001012420 00000 n +0000405065 00000 n +0001066820 00000 n 0000003010 00000 n 0000003041 00000 n -0000415162 00000 n -0001012291 00000 n +0000424657 00000 n +0001066691 00000 n 0000003088 00000 n 0000003132 00000 n -0000424306 00000 n -0001012212 00000 n +0000433801 00000 n +0001066612 00000 n 0000003181 00000 n 0000003212 00000 n -0000449998 00000 n -0001012119 00000 n +0000459493 00000 n +0001066519 00000 n 0000003261 00000 n 0000003292 00000 n -0000481753 00000 n -0001012026 00000 n +0000491248 00000 n +0001066426 00000 n 0000003341 00000 n 0000003374 00000 n -0000501013 00000 n -0001011947 00000 n +0000510508 00000 n +0001066347 00000 n 0000003423 00000 n 0000003457 00000 n -0000510571 00000 n -0001011816 00000 n +0000520066 00000 n +0001066216 00000 n 0000003504 00000 n 0000003550 00000 n -0000519523 00000 n -0001011737 00000 n +0000529018 00000 n +0001066137 00000 n 0000003599 00000 n 0000003631 00000 n -0000540872 00000 n -0001011644 00000 n +0000550369 00000 n +0001066044 00000 n 0000003680 00000 n 0000003712 00000 n -0000545610 00000 n -0001011551 00000 n +0000555118 00000 n +0001065951 00000 n 0000003761 00000 n 0000003793 00000 n -0000551653 00000 n -0001011458 00000 n +0000561179 00000 n +0001065858 00000 n 0000003842 00000 n 0000003874 00000 n -0000555828 00000 n -0001011365 00000 n +0000565366 00000 n +0001065765 00000 n 0000003923 00000 n 0000003956 00000 n -0000564661 00000 n -0001011272 00000 n +0000574213 00000 n +0001065672 00000 n 0000004005 00000 n 0000004040 00000 n -0000572788 00000 n -0001011179 00000 n +0000582355 00000 n +0001065579 00000 n 0000004089 00000 n 0000004121 00000 n -0000582730 00000 n -0001011086 00000 n +0000592310 00000 n +0001065486 00000 n 0000004170 00000 n 0000004202 00000 n -0000596475 00000 n -0001010993 00000 n +0000606056 00000 n +0001065393 00000 n 0000004251 00000 n 0000004283 00000 n -0000605047 00000 n -0001010900 00000 n +0000614628 00000 n +0001065300 00000 n 0000004332 00000 n 0000004365 00000 n -0000611714 00000 n -0001010807 00000 n +0000621295 00000 n +0001065207 00000 n 0000004414 00000 n 0000004445 00000 n -0000617678 00000 n -0001010714 00000 n +0000627259 00000 n +0001065114 00000 n 0000004494 00000 n 0000004526 00000 n -0000626285 00000 n -0001010621 00000 n +0000635866 00000 n +0001065021 00000 n 0000004575 00000 n 0000004607 00000 n -0000632919 00000 n -0001010528 00000 n +0000642500 00000 n +0001064928 00000 n 0000004656 00000 n 0000004688 00000 n -0000637834 00000 n -0001010435 00000 n +0000647415 00000 n +0001064835 00000 n 0000004737 00000 n 0000004770 00000 n -0000644484 00000 n -0001010342 00000 n +0000654065 00000 n +0001064742 00000 n 0000004819 00000 n 0000004850 00000 n -0000654693 00000 n -0001010249 00000 n +0000664274 00000 n +0001064649 00000 n 0000004899 00000 n 0000004943 00000 n -0000665704 00000 n -0001010156 00000 n +0000675285 00000 n +0001064556 00000 n 0000004992 00000 n 0000005036 00000 n -0000672064 00000 n -0001010063 00000 n +0000681645 00000 n +0001064463 00000 n 0000005085 00000 n 0000005127 00000 n -0000678430 00000 n -0001009984 00000 n +0000688011 00000 n +0001064384 00000 n 0000005177 00000 n 0000005218 00000 n -0000679505 00000 n -0001009853 00000 n +0000689086 00000 n +0001064253 00000 n 0000005265 00000 n 0000005316 00000 n -0000684382 00000 n -0001009774 00000 n +0000693963 00000 n +0001064174 00000 n 0000005366 00000 n 0000005397 00000 n -0000691259 00000 n -0001009681 00000 n +0000700840 00000 n +0001064081 00000 n 0000005447 00000 n 0000005478 00000 n -0000697457 00000 n -0001009588 00000 n +0000707038 00000 n +0001063988 00000 n 0000005528 00000 n 0000005559 00000 n -0000701439 00000 n -0001009495 00000 n +0000711020 00000 n +0001063895 00000 n 0000005609 00000 n 0000005650 00000 n -0000706143 00000 n -0001009402 00000 n +0000715724 00000 n +0001063802 00000 n 0000005700 00000 n 0000005738 00000 n -0000708601 00000 n -0001009309 00000 n +0000718182 00000 n +0001063709 00000 n 0000005788 00000 n 0000005820 00000 n -0000711468 00000 n -0001009216 00000 n +0000721049 00000 n +0001063616 00000 n 0000005870 00000 n 0000005904 00000 n -0000714016 00000 n -0001009123 00000 n +0000723597 00000 n +0001063523 00000 n 0000005954 00000 n 0000005986 00000 n -0000720095 00000 n -0001009030 00000 n +0000729676 00000 n +0001063430 00000 n 0000006036 00000 n 0000006068 00000 n -0000726936 00000 n -0001008937 00000 n +0000736517 00000 n +0001063337 00000 n 0000006118 00000 n 0000006148 00000 n -0000733993 00000 n -0001008844 00000 n +0000743565 00000 n +0001063244 00000 n 0000006198 00000 n 0000006228 00000 n -0000741075 00000 n -0001008751 00000 n +0000750636 00000 n +0001063151 00000 n 0000006278 00000 n 0000006308 00000 n -0000747801 00000 n -0001008658 00000 n +0000757691 00000 n +0001063058 00000 n 0000006358 00000 n 0000006388 00000 n -0000754405 00000 n -0001008579 00000 n +0000764771 00000 n +0001062965 00000 n 0000006438 00000 n 0000006468 00000 n -0000762847 00000 n -0001008449 00000 n -0000006515 00000 n -0000006551 00000 n -0000773307 00000 n -0001008370 00000 n -0000006601 00000 n -0000006635 00000 n -0000775593 00000 n -0001008277 00000 n -0000006685 00000 n -0000006717 00000 n -0000778183 00000 n -0001008184 00000 n -0000006767 00000 n -0000006813 00000 n -0000781115 00000 n -0001008091 00000 n -0000006863 00000 n -0000006906 00000 n -0000783943 00000 n -0001008012 00000 n -0000006956 00000 n -0000006990 00000 n -0000784758 00000 n -0001007921 00000 n -0000007037 00000 n -0000007068 00000 n -0000786687 00000 n -0001007791 00000 n +0000771497 00000 n +0001062872 00000 n +0000006518 00000 n +0000006548 00000 n +0000778101 00000 n +0001062793 00000 n +0000006598 00000 n +0000006628 00000 n +0000786543 00000 n +0001062663 00000 n +0000006675 00000 n +0000006711 00000 n +0000797003 00000 n +0001062584 00000 n +0000006761 00000 n +0000006795 00000 n +0000799289 00000 n +0001062491 00000 n +0000006845 00000 n +0000006877 00000 n +0000801879 00000 n +0001062398 00000 n +0000006927 00000 n +0000006973 00000 n +0000804811 00000 n +0001062305 00000 n +0000007023 00000 n +0000007066 00000 n +0000807639 00000 n +0001062226 00000 n 0000007116 00000 n -0000007162 00000 n -0000794147 00000 n -0001007712 00000 n -0000007212 00000 n -0000007246 00000 n -0000801648 00000 n -0001007619 00000 n -0000007296 00000 n -0000007330 00000 n -0000809890 00000 n -0001007526 00000 n -0000007380 00000 n -0000007415 00000 n -0000813251 00000 n -0001007447 00000 n -0000007465 00000 n -0000007505 00000 n -0000814347 00000 n -0001007331 00000 n -0000007553 00000 n -0000007593 00000 n -0000824375 00000 n -0001007266 00000 n -0000007643 00000 n -0000007677 00000 n -0000008966 00000 n -0000009275 00000 n -0000007729 00000 n -0000009088 00000 n -0000009151 00000 n -0001003248 00000 n -0000990798 00000 n -0001003084 00000 n -0000990122 00000 n -0000983153 00000 n -0000989958 00000 n -0000981905 00000 n -0000967152 00000 n -0000981741 00000 n -0000965718 00000 n -0000947852 00000 n -0000965555 00000 n -0001004383 00000 n -0000048732 00000 n -0000041331 00000 n -0000009385 00000 n -0000048606 00000 n -0000048669 00000 n -0000041809 00000 n -0000041964 00000 n -0000042118 00000 n -0000042279 00000 n -0000042439 00000 n -0000042599 00000 n -0000042759 00000 n -0000042914 00000 n -0000043074 00000 n -0000043240 00000 n -0000043401 00000 n -0000043567 00000 n -0000043728 00000 n -0000043889 00000 n -0000044046 00000 n -0000044202 00000 n -0000044359 00000 n -0000044516 00000 n -0000044674 00000 n -0000044831 00000 n -0000044989 00000 n -0000045144 00000 n -0000045301 00000 n -0000045459 00000 n -0000045617 00000 n -0000045775 00000 n -0000045933 00000 n -0000046091 00000 n -0000046249 00000 n -0000046407 00000 n -0000046565 00000 n -0000046722 00000 n -0000046880 00000 n -0000047036 00000 n -0000047191 00000 n -0000047349 00000 n -0000047507 00000 n -0000047665 00000 n -0000047822 00000 n -0000047977 00000 n -0000048134 00000 n -0000048292 00000 n -0000048448 00000 n -0000091664 00000 n -0000083986 00000 n -0000048829 00000 n -0000091600 00000 n -0000084480 00000 n -0000084638 00000 n -0000084795 00000 n -0000084953 00000 n -0000085111 00000 n -0000085269 00000 n -0000085427 00000 n -0000085585 00000 n -0000085743 00000 n -0000085901 00000 n -0000086058 00000 n -0000086215 00000 n -0000086373 00000 n -0000086530 00000 n -0000086687 00000 n -0000086845 00000 n -0000087004 00000 n -0000087160 00000 n -0000087318 00000 n -0000087477 00000 n -0000087636 00000 n -0000087795 00000 n -0000087954 00000 n -0000088113 00000 n -0000088272 00000 n -0000088431 00000 n -0000088590 00000 n -0000088749 00000 n -0000088908 00000 n -0000089067 00000 n -0000089226 00000 n -0000089384 00000 n -0000089540 00000 n -0000089699 00000 n -0000089858 00000 n -0000090017 00000 n -0000090176 00000 n -0000090335 00000 n -0000090491 00000 n -0000090648 00000 n -0000090807 00000 n -0000090966 00000 n -0000091125 00000 n -0000091284 00000 n -0000091441 00000 n -0000104377 00000 n -0000103022 00000 n -0000091748 00000 n -0000103212 00000 n -0000103370 00000 n -0000103530 00000 n -0000103687 00000 n -0000103845 00000 n -0000104001 00000 n -0000104158 00000 n -0000946693 00000 n -0000930568 00000 n -0000946529 00000 n -0000853401 00000 n -0000853337 00000 n -0000853017 00000 n -0000853081 00000 n -0000842749 00000 n -0000842814 00000 n -0000842879 00000 n -0000121565 00000 n -0000117434 00000 n -0000116291 00000 n -0000104474 00000 n -0000117243 00000 n -0000929594 00000 n -0000918728 00000 n -0000929430 00000 n -0000116465 00000 n -0000116620 00000 n -0000116775 00000 n -0000917491 00000 n -0000904719 00000 n -0000917327 00000 n -0000116930 00000 n -0000117087 00000 n -0000904317 00000 n -0000901327 00000 n -0000904156 00000 n -0000901007 00000 n -0000898252 00000 n -0000900846 00000 n -0000117370 00000 n -0000897213 00000 n -0000887707 00000 n -0000897051 00000 n -0000123559 00000 n -0000852953 00000 n -0000853274 00000 n -0000123685 00000 n -0000121443 00000 n -0000117595 00000 n -0000123496 00000 n -0000887073 00000 n -0000881561 00000 n -0000886910 00000 n -0000880590 00000 n -0000875845 00000 n -0000880427 00000 n -0000123281 00000 n -0000123400 00000 n -0000123474 00000 n -0000132173 00000 n -0000134700 00000 n -0000132023 00000 n -0000123862 00000 n -0000134572 00000 n -0000134257 00000 n -0000134414 00000 n -0000134636 00000 n -0001004501 00000 n -0000133995 00000 n -0000134114 00000 n -0000134161 00000 n -0000134235 00000 n -0000843076 00000 n -0000843404 00000 n -0000146609 00000 n -0000146022 00000 n -0000134864 00000 n -0000146484 00000 n -0000146172 00000 n -0000146328 00000 n -0000159071 00000 n -0000158312 00000 n -0000146732 00000 n -0000158434 00000 n -0000875534 00000 n -0000872752 00000 n -0000875370 00000 n -0000158561 00000 n -0000158625 00000 n -0000158688 00000 n -0000158752 00000 n -0000158816 00000 n -0000158880 00000 n -0000158944 00000 n -0000159007 00000 n -0000170392 00000 n -0000169390 00000 n -0000159206 00000 n -0000169512 00000 n -0000169575 00000 n -0000169638 00000 n -0000169701 00000 n -0000169764 00000 n -0000169827 00000 n -0000169890 00000 n -0000169953 00000 n -0000170016 00000 n -0000170079 00000 n -0000170142 00000 n -0000170205 00000 n -0000170268 00000 n -0000170331 00000 n -0000173787 00000 n -0000173538 00000 n -0000170476 00000 n -0000173660 00000 n -0000186096 00000 n -0000184749 00000 n -0000173910 00000 n -0000185216 00000 n -0000185403 00000 n -0000184899 00000 n -0000185055 00000 n -0000185467 00000 n -0000185530 00000 n -0000185593 00000 n -0000185655 00000 n -0000185718 00000 n -0000185781 00000 n -0000185844 00000 n -0000185907 00000 n -0000185970 00000 n -0000186033 00000 n -0000196907 00000 n -0000196466 00000 n -0000186206 00000 n -0000196588 00000 n -0000196652 00000 n -0000196716 00000 n -0000196780 00000 n -0001004619 00000 n -0000208835 00000 n -0000208349 00000 n -0000197017 00000 n -0000208646 00000 n -0000208771 00000 n -0000208491 00000 n -0000221144 00000 n -0000221526 00000 n -0000220958 00000 n -0000208945 00000 n -0000221080 00000 n -0000221208 00000 n -0000221272 00000 n -0000221336 00000 n -0000221400 00000 n -0000231513 00000 n -0000230615 00000 n -0000221649 00000 n -0000231075 00000 n -0000231200 00000 n -0000230765 00000 n -0000871818 00000 n -0000864009 00000 n -0000871655 00000 n -0000231264 00000 n -0000231450 00000 n -0000230920 00000 n -0000243568 00000 n -0000242465 00000 n -0000231649 00000 n -0000243251 00000 n -0000242631 00000 n -0000243378 00000 n -0000242787 00000 n -0000242942 00000 n -0000243504 00000 n -0000243096 00000 n -0000254411 00000 n -0000253356 00000 n -0000243717 00000 n -0000253973 00000 n -0000254098 00000 n -0000253514 00000 n -0000254223 00000 n -0000253669 00000 n -0000254348 00000 n -0000253821 00000 n -0000259769 00000 n -0000259157 00000 n -0000254534 00000 n -0000259451 00000 n -0000259578 00000 n -0000259299 00000 n -0000259641 00000 n -0000259705 00000 n -0001004737 00000 n -0000260554 00000 n -0000260307 00000 n -0000259892 00000 n -0000260429 00000 n -0000271287 00000 n -0000270092 00000 n -0000260638 00000 n -0000271033 00000 n -0000271160 00000 n -0000271223 00000 n -0000270266 00000 n -0000270418 00000 n -0000270572 00000 n -0000270725 00000 n -0000270878 00000 n -0000273799 00000 n -0000273440 00000 n -0000271436 00000 n -0000273736 00000 n -0000273582 00000 n -0000284264 00000 n -0000283227 00000 n -0000273896 00000 n -0000284009 00000 n -0000284136 00000 n -0000284200 00000 n -0000283393 00000 n -0000283547 00000 n -0000283701 00000 n -0000283856 00000 n -0000285497 00000 n -0000285312 00000 n -0000284426 00000 n -0000285434 00000 n -0000296364 00000 n -0000295327 00000 n -0000285581 00000 n -0000296110 00000 n -0000296237 00000 n -0000296300 00000 n -0000295493 00000 n -0000295647 00000 n -0000295801 00000 n -0000295956 00000 n -0001004855 00000 n -0000297597 00000 n -0000297412 00000 n -0000296526 00000 n -0000297534 00000 n -0000306895 00000 n -0000306180 00000 n -0000297681 00000 n -0000306639 00000 n -0000306767 00000 n -0000306831 00000 n -0000306330 00000 n -0000306484 00000 n -0000315320 00000 n -0000314612 00000 n -0000307057 00000 n -0000315068 00000 n -0000315194 00000 n -0000315257 00000 n -0000314762 00000 n -0000314913 00000 n -0000324291 00000 n -0000323576 00000 n -0000315482 00000 n -0000324035 00000 n -0000324163 00000 n -0000324227 00000 n -0000323726 00000 n -0000323880 00000 n -0000334309 00000 n -0000333600 00000 n -0000324465 00000 n -0000334056 00000 n -0000334182 00000 n -0000334245 00000 n -0000333750 00000 n -0000333901 00000 n -0000343438 00000 n -0000342725 00000 n -0000334483 00000 n -0000343183 00000 n -0000343311 00000 n -0000343375 00000 n -0000342875 00000 n -0000343029 00000 n -0001004973 00000 n -0000353319 00000 n -0000352610 00000 n -0000343600 00000 n -0000353066 00000 n -0000353192 00000 n -0000353255 00000 n -0000352760 00000 n -0000352911 00000 n -0000361756 00000 n -0000361042 00000 n -0000353481 00000 n -0000361500 00000 n -0000863569 00000 n -0000861253 00000 n -0000863408 00000 n -0000361628 00000 n -0000361692 00000 n -0000361192 00000 n -0000361345 00000 n -0000373719 00000 n -0000372655 00000 n -0000361918 00000 n -0000373275 00000 n -0000373401 00000 n -0000373465 00000 n -0000373529 00000 n -0000373593 00000 n -0000373656 00000 n -0000372813 00000 n -0000372968 00000 n -0000373120 00000 n -0000384378 00000 n -0000383034 00000 n -0000373893 00000 n -0000384314 00000 n -0000383224 00000 n -0000383379 00000 n -0000383533 00000 n -0000383688 00000 n -0000383845 00000 n -0000384002 00000 n -0000384159 00000 n -0000395759 00000 n -0000395210 00000 n -0000384488 00000 n -0000395507 00000 n -0000395633 00000 n -0000395696 00000 n -0000395352 00000 n -0000407715 00000 n -0000406701 00000 n -0000395933 00000 n -0000407651 00000 n -0000406875 00000 n -0000407031 00000 n -0000407186 00000 n -0000407341 00000 n -0000407496 00000 n -0001005091 00000 n -0000413458 00000 n -0000412935 00000 n -0000407851 00000 n -0000413395 00000 n -0000413085 00000 n -0000413240 00000 n -0000415226 00000 n -0000414800 00000 n -0000413568 00000 n -0000415098 00000 n -0000414942 00000 n -0000424495 00000 n -0000423621 00000 n -0000415310 00000 n -0000424243 00000 n -0000424369 00000 n -0000424432 00000 n -0000423779 00000 n -0000423933 00000 n -0000424088 00000 n -0000430398 00000 n -0000435242 00000 n -0000430248 00000 n -0000424644 00000 n -0000435051 00000 n -0000434741 00000 n -0000435115 00000 n -0000435178 00000 n -0000434896 00000 n -0000434406 00000 n -0000434525 00000 n -0000434572 00000 n -0000434646 00000 n -0000434719 00000 n -0000439149 00000 n -0000438964 00000 n -0000435393 00000 n -0000439086 00000 n -0000860376 00000 n -0000853692 00000 n -0000860214 00000 n -0000450190 00000 n -0000449474 00000 n -0000439233 00000 n -0000449934 00000 n -0000450062 00000 n -0000450126 00000 n -0000449624 00000 n -0000449779 00000 n -0001005209 00000 n -0000465089 00000 n -0000459547 00000 n -0000458547 00000 n -0000450352 00000 n -0000459169 00000 n -0000458705 00000 n -0000459232 00000 n -0000459295 00000 n -0000459358 00000 n -0000459421 00000 n -0000459484 00000 n -0000458860 00000 n -0000459015 00000 n -0000469579 00000 n -0000464173 00000 n -0000463987 00000 n -0000459683 00000 n -0000464109 00000 n -0000469642 00000 n -0000464967 00000 n -0000464257 00000 n -0000469516 00000 n -0000469181 00000 n -0000469300 00000 n -0000469347 00000 n -0000469421 00000 n -0000469494 00000 n -0000482009 00000 n -0000481229 00000 n -0000469741 00000 n -0000481689 00000 n -0000481817 00000 n -0000481881 00000 n -0000481945 00000 n -0000481379 00000 n -0000481534 00000 n -0000489704 00000 n -0000489519 00000 n -0000482196 00000 n -0000489641 00000 n -0000501269 00000 n -0000500654 00000 n -0000489814 00000 n -0000500949 00000 n -0000501077 00000 n -0000501141 00000 n -0000501205 00000 n -0000500796 00000 n -0001005327 00000 n -0000509847 00000 n -0000509488 00000 n -0000501456 00000 n -0000509784 00000 n -0000509630 00000 n -0000510635 00000 n -0000510385 00000 n -0000509957 00000 n -0000510507 00000 n -0000519649 00000 n -0000519338 00000 n -0000510719 00000 n -0000519460 00000 n -0000519586 00000 n -0000530792 00000 n -0000530303 00000 n -0000519798 00000 n -0000530600 00000 n -0000530445 00000 n -0000530664 00000 n -0000530728 00000 n -0000534049 00000 n -0000533801 00000 n -0000530928 00000 n -0000533923 00000 n -0000533986 00000 n -0000541126 00000 n -0000540511 00000 n -0000534172 00000 n -0000540808 00000 n -0000540936 00000 n -0000540653 00000 n -0000541000 00000 n -0000541062 00000 n -0001005445 00000 n -0000545862 00000 n -0000545250 00000 n -0000541262 00000 n -0000545547 00000 n -0000545673 00000 n -0000545392 00000 n -0000545736 00000 n -0000545799 00000 n -0000551781 00000 n -0000551129 00000 n -0000545985 00000 n -0000551589 00000 n -0000551717 00000 n -0000551279 00000 n -0000551434 00000 n -0000555954 00000 n -0000555468 00000 n -0000551904 00000 n -0000555765 00000 n -0000555891 00000 n -0000555610 00000 n -0000564789 00000 n -0000564139 00000 n -0000556077 00000 n -0000564597 00000 n -0000564725 00000 n -0000564289 00000 n -0000564442 00000 n -0000573165 00000 n -0000572268 00000 n -0000564938 00000 n -0000572725 00000 n -0000572851 00000 n -0000572418 00000 n -0000572573 00000 n -0000572914 00000 n -0000572977 00000 n -0000573040 00000 n -0000573102 00000 n -0000582861 00000 n -0000582036 00000 n -0000573301 00000 n -0000582664 00000 n -0000582795 00000 n -0000582200 00000 n -0000582356 00000 n -0000582508 00000 n -0001005563 00000 n -0000587480 00000 n -0000586899 00000 n -0000582997 00000 n -0000587025 00000 n -0000587090 00000 n -0000587155 00000 n -0000587220 00000 n -0000587285 00000 n -0000587350 00000 n -0000587415 00000 n -0000596803 00000 n -0000595943 00000 n -0000587591 00000 n -0000596409 00000 n -0000596540 00000 n -0000596099 00000 n -0000596255 00000 n +0000007150 00000 n +0000808454 00000 n +0001062096 00000 n +0000007197 00000 n +0000007228 00000 n +0000816401 00000 n +0001062017 00000 n +0000007278 00000 n +0000007316 00000 n +0000816465 00000 n +0001061924 00000 n +0000007366 00000 n +0000007396 00000 n +0000823900 00000 n +0001061831 00000 n +0000007446 00000 n +0000007477 00000 n +0000832810 00000 n +0001061738 00000 n +0000007527 00000 n +0000007565 00000 n +0000832875 00000 n +0001061645 00000 n +0000007615 00000 n +0000007652 00000 n +0000833005 00000 n +0001061566 00000 n +0000007702 00000 n +0000007740 00000 n +0000838687 00000 n +0001061436 00000 n +0000007788 00000 n +0000007834 00000 n +0000846148 00000 n +0001061357 00000 n +0000007884 00000 n +0000007918 00000 n +0000853649 00000 n +0001061264 00000 n +0000007968 00000 n +0000008002 00000 n +0000861891 00000 n +0001061171 00000 n +0000008052 00000 n +0000008087 00000 n +0000865252 00000 n +0001061092 00000 n +0000008137 00000 n +0000008177 00000 n +0000866348 00000 n +0001060976 00000 n +0000008225 00000 n +0000008265 00000 n +0000877430 00000 n +0001060911 00000 n +0000008315 00000 n +0000008349 00000 n +0000009638 00000 n +0000009947 00000 n +0000008401 00000 n +0000009760 00000 n +0000009823 00000 n +0001056746 00000 n +0001044187 00000 n +0001056582 00000 n +0001043511 00000 n +0001036542 00000 n +0001043347 00000 n +0001035294 00000 n +0001020541 00000 n +0001035130 00000 n +0001019107 00000 n +0001001241 00000 n +0001018944 00000 n +0001057881 00000 n +0000049404 00000 n +0000042003 00000 n +0000010057 00000 n +0000049278 00000 n +0000049341 00000 n +0000042481 00000 n +0000042636 00000 n +0000042790 00000 n +0000042951 00000 n +0000043111 00000 n +0000043271 00000 n +0000043431 00000 n +0000043586 00000 n +0000043746 00000 n +0000043912 00000 n +0000044073 00000 n +0000044239 00000 n +0000044400 00000 n +0000044561 00000 n +0000044718 00000 n +0000044874 00000 n +0000045031 00000 n +0000045188 00000 n +0000045346 00000 n +0000045503 00000 n +0000045661 00000 n +0000045816 00000 n +0000045973 00000 n +0000046131 00000 n +0000046289 00000 n +0000046447 00000 n +0000046605 00000 n +0000046763 00000 n +0000046921 00000 n +0000047079 00000 n +0000047237 00000 n +0000047394 00000 n +0000047552 00000 n +0000047708 00000 n +0000047863 00000 n +0000048021 00000 n +0000048179 00000 n +0000048337 00000 n +0000048494 00000 n +0000048649 00000 n +0000048806 00000 n +0000048964 00000 n +0000049120 00000 n +0000094727 00000 n +0000086886 00000 n +0000049501 00000 n +0000094663 00000 n +0000087388 00000 n +0000087546 00000 n +0000087703 00000 n +0000087860 00000 n +0000088018 00000 n +0000088176 00000 n +0000088332 00000 n +0000088490 00000 n +0000088648 00000 n +0000088806 00000 n +0000088962 00000 n +0000089119 00000 n +0000089277 00000 n +0000089433 00000 n +0000089590 00000 n +0000089748 00000 n +0000089907 00000 n +0000090063 00000 n +0000090221 00000 n +0000090380 00000 n +0000090538 00000 n +0000090697 00000 n +0000090856 00000 n +0000091015 00000 n +0000091174 00000 n +0000091333 00000 n +0000091492 00000 n +0000091650 00000 n +0000091809 00000 n +0000091968 00000 n +0000092127 00000 n +0000092286 00000 n +0000092445 00000 n +0000092603 00000 n +0000092758 00000 n +0000092917 00000 n +0000093076 00000 n +0000093235 00000 n +0000093394 00000 n +0000093553 00000 n +0000093709 00000 n +0000093868 00000 n +0000094027 00000 n +0000094186 00000 n +0000094345 00000 n +0000094504 00000 n +0000101159 00000 n +0000099802 00000 n +0000094811 00000 n +0000101096 00000 n +0000099992 00000 n +0000100148 00000 n +0000100306 00000 n +0000100465 00000 n +0000100624 00000 n +0000100783 00000 n +0000100939 00000 n +0000113872 00000 n +0000112517 00000 n +0000101243 00000 n +0000112707 00000 n +0000112865 00000 n +0000113025 00000 n +0000113182 00000 n +0000113340 00000 n +0000113496 00000 n +0000113653 00000 n +0001000082 00000 n +0000983957 00000 n +0000999918 00000 n +0000906790 00000 n +0000906726 00000 n +0000906406 00000 n +0000906470 00000 n +0000896138 00000 n +0000896203 00000 n +0000896268 00000 n +0000131060 00000 n +0000126929 00000 n +0000125786 00000 n +0000113969 00000 n +0000126738 00000 n +0000982983 00000 n +0000972117 00000 n +0000982819 00000 n +0000125960 00000 n +0000126115 00000 n +0000126270 00000 n +0000970880 00000 n +0000958108 00000 n +0000970716 00000 n +0000126425 00000 n +0000126582 00000 n +0000957706 00000 n +0000954716 00000 n +0000957545 00000 n +0000954396 00000 n +0000951641 00000 n +0000954235 00000 n +0000126865 00000 n +0000950602 00000 n +0000941096 00000 n +0000950440 00000 n +0000133054 00000 n +0000906342 00000 n +0000906663 00000 n +0000133180 00000 n +0000130938 00000 n +0000127090 00000 n +0000132991 00000 n +0000940462 00000 n +0000934950 00000 n +0000940299 00000 n +0000933979 00000 n +0000929234 00000 n +0000933816 00000 n +0001057999 00000 n +0000132776 00000 n +0000132895 00000 n +0000132969 00000 n +0000141668 00000 n +0000144195 00000 n +0000141518 00000 n +0000133357 00000 n +0000144067 00000 n +0000143752 00000 n +0000143909 00000 n +0000144131 00000 n +0000143490 00000 n +0000143609 00000 n +0000143656 00000 n +0000143730 00000 n +0000896465 00000 n +0000896793 00000 n +0000156104 00000 n +0000155517 00000 n +0000144359 00000 n +0000155979 00000 n +0000155667 00000 n +0000155823 00000 n +0000168566 00000 n +0000167807 00000 n +0000156227 00000 n +0000167929 00000 n +0000928923 00000 n +0000926141 00000 n +0000928759 00000 n +0000168056 00000 n +0000168120 00000 n +0000168183 00000 n +0000168247 00000 n +0000168311 00000 n +0000168375 00000 n +0000168439 00000 n +0000168502 00000 n +0000179887 00000 n +0000178885 00000 n +0000168701 00000 n +0000179007 00000 n +0000179070 00000 n +0000179133 00000 n +0000179196 00000 n +0000179259 00000 n +0000179322 00000 n +0000179385 00000 n +0000179448 00000 n +0000179511 00000 n +0000179574 00000 n +0000179637 00000 n +0000179700 00000 n +0000179763 00000 n +0000179826 00000 n +0000183282 00000 n +0000183033 00000 n +0000179971 00000 n +0000183155 00000 n +0000195591 00000 n +0000194244 00000 n +0000183405 00000 n +0000194711 00000 n +0000194898 00000 n +0000194394 00000 n +0000194550 00000 n +0000194962 00000 n +0000195025 00000 n +0000195088 00000 n +0000195150 00000 n +0000195213 00000 n +0000195276 00000 n +0000195339 00000 n +0000195402 00000 n +0000195465 00000 n +0000195528 00000 n +0001058117 00000 n +0000206402 00000 n +0000205961 00000 n +0000195701 00000 n +0000206083 00000 n +0000206147 00000 n +0000206211 00000 n +0000206275 00000 n +0000218330 00000 n +0000217844 00000 n +0000206512 00000 n +0000218141 00000 n +0000218266 00000 n +0000217986 00000 n +0000230639 00000 n +0000231021 00000 n +0000230453 00000 n +0000218440 00000 n +0000230575 00000 n +0000230703 00000 n +0000230767 00000 n +0000230831 00000 n +0000230895 00000 n +0000241008 00000 n +0000240110 00000 n +0000231144 00000 n +0000240570 00000 n +0000240695 00000 n +0000240260 00000 n +0000925207 00000 n +0000917398 00000 n +0000925044 00000 n +0000240759 00000 n +0000240945 00000 n +0000240415 00000 n +0000253063 00000 n +0000251960 00000 n +0000241144 00000 n +0000252746 00000 n +0000252126 00000 n +0000252873 00000 n +0000252282 00000 n +0000252437 00000 n +0000252999 00000 n +0000252591 00000 n +0000263906 00000 n +0000262851 00000 n +0000253212 00000 n +0000263468 00000 n +0000263593 00000 n +0000263009 00000 n +0000263718 00000 n +0000263164 00000 n +0000263843 00000 n +0000263316 00000 n +0001058235 00000 n +0000269264 00000 n +0000268652 00000 n +0000264029 00000 n +0000268946 00000 n +0000269073 00000 n +0000268794 00000 n +0000269136 00000 n +0000269200 00000 n +0000270049 00000 n +0000269802 00000 n +0000269387 00000 n +0000269924 00000 n +0000280782 00000 n +0000279587 00000 n +0000270133 00000 n +0000280528 00000 n +0000280655 00000 n +0000280718 00000 n +0000279761 00000 n +0000279913 00000 n +0000280067 00000 n +0000280220 00000 n +0000280373 00000 n +0000283294 00000 n +0000282935 00000 n +0000280931 00000 n +0000283231 00000 n +0000283077 00000 n +0000293759 00000 n +0000292722 00000 n +0000283391 00000 n +0000293504 00000 n +0000293631 00000 n +0000293695 00000 n +0000292888 00000 n +0000293042 00000 n +0000293196 00000 n +0000293351 00000 n +0000294992 00000 n +0000294807 00000 n +0000293921 00000 n +0000294929 00000 n +0001058353 00000 n +0000305859 00000 n +0000304822 00000 n +0000295076 00000 n +0000305605 00000 n +0000305732 00000 n +0000305795 00000 n +0000304988 00000 n +0000305142 00000 n +0000305296 00000 n +0000305451 00000 n +0000307092 00000 n +0000306907 00000 n +0000306021 00000 n +0000307029 00000 n +0000316390 00000 n +0000315675 00000 n +0000307176 00000 n +0000316134 00000 n +0000316262 00000 n +0000316326 00000 n +0000315825 00000 n +0000315979 00000 n +0000324815 00000 n +0000324107 00000 n +0000316552 00000 n +0000324563 00000 n +0000324689 00000 n +0000324752 00000 n +0000324257 00000 n +0000324408 00000 n +0000333786 00000 n +0000333071 00000 n +0000324977 00000 n +0000333530 00000 n +0000333658 00000 n +0000333722 00000 n +0000333221 00000 n +0000333375 00000 n +0000343804 00000 n +0000343095 00000 n +0000333960 00000 n +0000343551 00000 n +0000343677 00000 n +0000343740 00000 n +0000343245 00000 n +0000343396 00000 n +0001058471 00000 n +0000352933 00000 n +0000352220 00000 n +0000343978 00000 n +0000352678 00000 n +0000352806 00000 n +0000352870 00000 n +0000352370 00000 n +0000352524 00000 n +0000362814 00000 n +0000362105 00000 n +0000353095 00000 n +0000362561 00000 n +0000362687 00000 n +0000362750 00000 n +0000362255 00000 n +0000362406 00000 n +0000371251 00000 n +0000370537 00000 n +0000362976 00000 n +0000370995 00000 n +0000916958 00000 n +0000914642 00000 n +0000916797 00000 n +0000371123 00000 n +0000371187 00000 n +0000370687 00000 n +0000370840 00000 n +0000383214 00000 n +0000382150 00000 n +0000371413 00000 n +0000382770 00000 n +0000382896 00000 n +0000382960 00000 n +0000383024 00000 n +0000383088 00000 n +0000383151 00000 n +0000382308 00000 n +0000382463 00000 n +0000382615 00000 n +0000393873 00000 n +0000392529 00000 n +0000383388 00000 n +0000393809 00000 n +0000392719 00000 n +0000392874 00000 n +0000393028 00000 n +0000393183 00000 n +0000393340 00000 n +0000393497 00000 n +0000393654 00000 n +0000405254 00000 n +0000404705 00000 n +0000393983 00000 n +0000405002 00000 n +0000405128 00000 n +0000405191 00000 n +0000404847 00000 n +0001058589 00000 n +0000417210 00000 n +0000416196 00000 n +0000405428 00000 n +0000417146 00000 n +0000416370 00000 n +0000416526 00000 n +0000416681 00000 n +0000416836 00000 n +0000416991 00000 n +0000422953 00000 n +0000422430 00000 n +0000417346 00000 n +0000422890 00000 n +0000422580 00000 n +0000422735 00000 n +0000424721 00000 n +0000424295 00000 n +0000423063 00000 n +0000424593 00000 n +0000424437 00000 n +0000433990 00000 n +0000433116 00000 n +0000424805 00000 n +0000433738 00000 n +0000433864 00000 n +0000433927 00000 n +0000433274 00000 n +0000433428 00000 n +0000433583 00000 n +0000439893 00000 n +0000444737 00000 n +0000439743 00000 n +0000434139 00000 n +0000444546 00000 n +0000444236 00000 n +0000444610 00000 n +0000444673 00000 n +0000444391 00000 n +0000443901 00000 n +0000444020 00000 n +0000444067 00000 n +0000444141 00000 n +0000444214 00000 n +0000448644 00000 n +0000448459 00000 n +0000444888 00000 n +0000448581 00000 n +0000913765 00000 n +0000907081 00000 n +0000913603 00000 n +0001058707 00000 n +0000459685 00000 n +0000458969 00000 n +0000448728 00000 n +0000459429 00000 n +0000459557 00000 n +0000459621 00000 n +0000459119 00000 n +0000459274 00000 n +0000474584 00000 n +0000469042 00000 n +0000468042 00000 n +0000459847 00000 n +0000468664 00000 n +0000468200 00000 n +0000468727 00000 n +0000468790 00000 n +0000468853 00000 n +0000468916 00000 n +0000468979 00000 n +0000468355 00000 n +0000468510 00000 n +0000479074 00000 n +0000473668 00000 n +0000473482 00000 n +0000469178 00000 n +0000473604 00000 n +0000479137 00000 n +0000474462 00000 n +0000473752 00000 n +0000479011 00000 n +0000478676 00000 n +0000478795 00000 n +0000478842 00000 n +0000478916 00000 n +0000478989 00000 n +0000491504 00000 n +0000490724 00000 n +0000479236 00000 n +0000491184 00000 n +0000491312 00000 n +0000491376 00000 n +0000491440 00000 n +0000490874 00000 n +0000491029 00000 n +0000499199 00000 n +0000499014 00000 n +0000491691 00000 n +0000499136 00000 n +0001058825 00000 n +0000510764 00000 n +0000510149 00000 n +0000499309 00000 n +0000510444 00000 n +0000510572 00000 n +0000510636 00000 n +0000510700 00000 n +0000510291 00000 n +0000519342 00000 n +0000518983 00000 n +0000510951 00000 n +0000519279 00000 n +0000519125 00000 n +0000520130 00000 n +0000519880 00000 n +0000519452 00000 n +0000520002 00000 n +0000529144 00000 n +0000528833 00000 n +0000520214 00000 n +0000528955 00000 n +0000529081 00000 n +0000540287 00000 n +0000539798 00000 n +0000529293 00000 n +0000540095 00000 n +0000539940 00000 n +0000540159 00000 n +0000540223 00000 n +0000543544 00000 n +0000543296 00000 n +0000540423 00000 n +0000543418 00000 n +0000543481 00000 n +0001058943 00000 n +0000550626 00000 n +0000550006 00000 n +0000543667 00000 n +0000550305 00000 n +0000550433 00000 n +0000550149 00000 n +0000550498 00000 n +0000550561 00000 n +0000555377 00000 n +0000554751 00000 n +0000550762 00000 n +0000555053 00000 n +0000555182 00000 n +0000554897 00000 n +0000555247 00000 n +0000555312 00000 n +0000561310 00000 n +0000560646 00000 n +0000555501 00000 n +0000561113 00000 n +0000561244 00000 n +0000560801 00000 n +0000560957 00000 n +0000565495 00000 n +0000564999 00000 n +0000561434 00000 n +0000565301 00000 n +0000565430 00000 n +0000565145 00000 n +0000574344 00000 n +0000573682 00000 n +0000565619 00000 n +0000574147 00000 n +0000574278 00000 n +0000573837 00000 n +0000573991 00000 n +0000582743 00000 n +0000581825 00000 n +0000574494 00000 n +0000582290 00000 n +0000582419 00000 n +0000581981 00000 n +0000582137 00000 n +0000582484 00000 n +0000582549 00000 n +0000582614 00000 n +0000582678 00000 n +0001059065 00000 n +0000592441 00000 n +0000591615 00000 n +0000582880 00000 n +0000592244 00000 n +0000592375 00000 n +0000591780 00000 n +0000591936 00000 n +0000592088 00000 n +0000597061 00000 n +0000596480 00000 n +0000592578 00000 n 0000596606 00000 n -0000596672 00000 n -0000596737 00000 n -0000599720 00000 n -0000599334 00000 n -0000596927 00000 n -0000599460 00000 n -0000599525 00000 n -0000599590 00000 n -0000599655 00000 n -0000605178 00000 n -0000604515 00000 n -0000599805 00000 n -0000604981 00000 n -0000605112 00000 n -0000604671 00000 n -0000604825 00000 n -0000611973 00000 n -0000611184 00000 n -0000605302 00000 n -0000611649 00000 n -0000611778 00000 n -0000611340 00000 n -0000611493 00000 n -0000611843 00000 n -0000611908 00000 n -0000617809 00000 n -0000617309 00000 n -0000612097 00000 n -0000617612 00000 n -0000617743 00000 n -0000617456 00000 n -0001005688 00000 n -0000626414 00000 n -0000625917 00000 n -0000617946 00000 n -0000626220 00000 n -0000626349 00000 n -0000626064 00000 n -0000628179 00000 n -0000627789 00000 n -0000626551 00000 n -0000627915 00000 n -0000627981 00000 n -0000628047 00000 n -0000628113 00000 n -0000633048 00000 n -0000632553 00000 n -0000628264 00000 n -0000632854 00000 n -0000632983 00000 n -0000632700 00000 n -0000637965 00000 n -0000637467 00000 n -0000633172 00000 n -0000637768 00000 n -0000637899 00000 n -0000637614 00000 n -0000644613 00000 n -0000644118 00000 n -0000638089 00000 n -0000644419 00000 n -0000644548 00000 n -0000644265 00000 n -0000654824 00000 n -0000654324 00000 n -0000644763 00000 n -0000654627 00000 n -0000654758 00000 n -0000654471 00000 n -0001005813 00000 n -0000656768 00000 n -0000656382 00000 n -0000654961 00000 n -0000656508 00000 n -0000656573 00000 n -0000656638 00000 n -0000656703 00000 n -0000665835 00000 n -0000665336 00000 n -0000656866 00000 n -0000665638 00000 n -0000665769 00000 n -0000665483 00000 n -0000672388 00000 n -0000671696 00000 n -0000665972 00000 n -0000671999 00000 n -0000672128 00000 n -0000671843 00000 n -0000672193 00000 n -0000672258 00000 n -0000672323 00000 n -0000678758 00000 n -0000678061 00000 n -0000672512 00000 n -0000678364 00000 n -0000678495 00000 n -0000678208 00000 n -0000678561 00000 n -0000678626 00000 n -0000678692 00000 n -0000679569 00000 n -0000679314 00000 n -0000678882 00000 n -0000679440 00000 n -0000684711 00000 n -0000684190 00000 n -0000679654 00000 n -0000684316 00000 n -0000684447 00000 n -0000684513 00000 n -0000684579 00000 n -0000684645 00000 n -0001005938 00000 n -0000691583 00000 n -0000691068 00000 n -0000684835 00000 n -0000691194 00000 n -0000691323 00000 n -0000691388 00000 n -0000691453 00000 n -0000691518 00000 n -0000697786 00000 n -0000697265 00000 n -0000691733 00000 n -0000697391 00000 n -0000697522 00000 n -0000697588 00000 n -0000697654 00000 n -0000697720 00000 n -0000701568 00000 n -0000701248 00000 n -0000697936 00000 n -0000701374 00000 n -0000701503 00000 n -0000706274 00000 n -0000705951 00000 n -0000701679 00000 n -0000706077 00000 n -0000706208 00000 n -0000708730 00000 n -0000708410 00000 n -0000706411 00000 n -0000708536 00000 n -0000708665 00000 n -0000711599 00000 n -0000711276 00000 n -0000708841 00000 n -0000711402 00000 n -0000711533 00000 n -0001006063 00000 n -0000714145 00000 n -0000713825 00000 n -0000711710 00000 n -0000713951 00000 n -0000714080 00000 n -0000720226 00000 n -0000719903 00000 n -0000714256 00000 n -0000720029 00000 n -0000720160 00000 n -0000727195 00000 n -0000726745 00000 n -0000720363 00000 n -0000726871 00000 n -0000727000 00000 n -0000727065 00000 n -0000727130 00000 n -0000734256 00000 n -0000733801 00000 n -0000727345 00000 n -0000733927 00000 n -0000734058 00000 n -0000734124 00000 n -0000734190 00000 n -0000741334 00000 n -0000740884 00000 n -0000734406 00000 n -0000741010 00000 n -0000741139 00000 n -0000741204 00000 n -0000741269 00000 n -0000747932 00000 n -0000747609 00000 n -0000741484 00000 n -0000747735 00000 n -0000747866 00000 n -0001006188 00000 n -0000754534 00000 n -0000754214 00000 n -0000748069 00000 n -0000754340 00000 n -0000754469 00000 n -0000762912 00000 n -0000762315 00000 n -0000754671 00000 n -0000762781 00000 n -0000762471 00000 n -0000762625 00000 n -0000767888 00000 n -0000767954 00000 n -0000768020 00000 n -0000767697 00000 n -0000763010 00000 n -0000767823 00000 n -0000773438 00000 n -0000773115 00000 n -0000768118 00000 n -0000773241 00000 n -0000773372 00000 n -0000775722 00000 n -0000775402 00000 n -0000773549 00000 n -0000775528 00000 n -0000775657 00000 n -0000778314 00000 n -0000777991 00000 n -0000775833 00000 n -0000778117 00000 n -0000778248 00000 n -0001006313 00000 n -0000781244 00000 n -0000780924 00000 n -0000778425 00000 n -0000781050 00000 n -0000781179 00000 n -0000784074 00000 n -0000783751 00000 n -0000781355 00000 n -0000783877 00000 n -0000784008 00000 n -0000784822 00000 n -0000784567 00000 n -0000784185 00000 n -0000784693 00000 n -0000786752 00000 n -0000786495 00000 n -0000784907 00000 n -0000786621 00000 n -0000794407 00000 n -0000793612 00000 n -0000786863 00000 n -0000794082 00000 n -0000794211 00000 n -0000793768 00000 n -0000794276 00000 n -0000793924 00000 n -0000794341 00000 n -0000801779 00000 n -0000800952 00000 n -0000794582 00000 n -0000801582 00000 n -0000801713 00000 n -0000801117 00000 n -0000801271 00000 n -0000801426 00000 n -0001006438 00000 n -0000810019 00000 n -0000809358 00000 n -0000801903 00000 n -0000809825 00000 n -0000809954 00000 n -0000809514 00000 n -0000809670 00000 n -0000813382 00000 n -0000812882 00000 n -0000810143 00000 n -0000813185 00000 n -0000813316 00000 n -0000813029 00000 n -0000814411 00000 n -0000814156 00000 n -0000813506 00000 n -0000814282 00000 n -0000824506 00000 n -0000823843 00000 n -0000814496 00000 n -0000824309 00000 n -0000824440 00000 n -0000823999 00000 n +0000596671 00000 n +0000596736 00000 n +0000596801 00000 n +0000596866 00000 n +0000596931 00000 n +0000596996 00000 n +0000606384 00000 n +0000605524 00000 n +0000597172 00000 n +0000605990 00000 n +0000606121 00000 n +0000605680 00000 n +0000605836 00000 n +0000606187 00000 n +0000606253 00000 n +0000606318 00000 n +0000609301 00000 n +0000608915 00000 n +0000606508 00000 n +0000609041 00000 n +0000609106 00000 n +0000609171 00000 n +0000609236 00000 n +0000614759 00000 n +0000614096 00000 n +0000609386 00000 n +0000614562 00000 n +0000614693 00000 n +0000614252 00000 n +0000614406 00000 n +0000621554 00000 n +0000620765 00000 n +0000614883 00000 n +0000621230 00000 n +0000621359 00000 n +0000620921 00000 n +0000621074 00000 n +0000621424 00000 n +0000621489 00000 n +0001059190 00000 n +0000627390 00000 n +0000626890 00000 n +0000621678 00000 n +0000627193 00000 n +0000627324 00000 n +0000627037 00000 n +0000635995 00000 n +0000635498 00000 n +0000627527 00000 n +0000635801 00000 n +0000635930 00000 n +0000635645 00000 n +0000637760 00000 n +0000637370 00000 n +0000636132 00000 n +0000637496 00000 n +0000637562 00000 n +0000637628 00000 n +0000637694 00000 n +0000642629 00000 n +0000642134 00000 n +0000637845 00000 n +0000642435 00000 n +0000642564 00000 n +0000642281 00000 n +0000647546 00000 n +0000647048 00000 n +0000642753 00000 n +0000647349 00000 n +0000647480 00000 n +0000647195 00000 n +0000654194 00000 n +0000653699 00000 n +0000647670 00000 n +0000654000 00000 n +0000654129 00000 n +0000653846 00000 n +0001059315 00000 n +0000664405 00000 n +0000663905 00000 n +0000654344 00000 n +0000664208 00000 n +0000664339 00000 n +0000664052 00000 n +0000666349 00000 n +0000665963 00000 n +0000664542 00000 n +0000666089 00000 n +0000666154 00000 n +0000666219 00000 n +0000666284 00000 n +0000675416 00000 n +0000674917 00000 n +0000666447 00000 n +0000675219 00000 n +0000675350 00000 n +0000675064 00000 n +0000681969 00000 n +0000681277 00000 n +0000675553 00000 n +0000681580 00000 n +0000681709 00000 n +0000681424 00000 n +0000681774 00000 n +0000681839 00000 n +0000681904 00000 n +0000688339 00000 n +0000687642 00000 n +0000682093 00000 n +0000687945 00000 n +0000688076 00000 n +0000687789 00000 n +0000688142 00000 n +0000688207 00000 n +0000688273 00000 n +0000689150 00000 n +0000688895 00000 n +0000688463 00000 n +0000689021 00000 n +0001059440 00000 n +0000694292 00000 n +0000693771 00000 n +0000689235 00000 n +0000693897 00000 n +0000694028 00000 n +0000694094 00000 n +0000694160 00000 n +0000694226 00000 n +0000701164 00000 n +0000700649 00000 n +0000694416 00000 n +0000700775 00000 n +0000700904 00000 n +0000700969 00000 n +0000701034 00000 n +0000701099 00000 n +0000707367 00000 n +0000706846 00000 n +0000701314 00000 n +0000706972 00000 n +0000707103 00000 n +0000707169 00000 n +0000707235 00000 n +0000707301 00000 n +0000711149 00000 n +0000710829 00000 n +0000707517 00000 n +0000710955 00000 n +0000711084 00000 n +0000715855 00000 n +0000715532 00000 n +0000711260 00000 n +0000715658 00000 n +0000715789 00000 n +0000718311 00000 n +0000717991 00000 n +0000715992 00000 n +0000718117 00000 n +0000718246 00000 n +0001059565 00000 n +0000721180 00000 n +0000720857 00000 n +0000718422 00000 n +0000720983 00000 n +0000721114 00000 n +0000723726 00000 n +0000723406 00000 n +0000721291 00000 n +0000723532 00000 n +0000723661 00000 n +0000729807 00000 n +0000729484 00000 n +0000723837 00000 n +0000729610 00000 n +0000729741 00000 n +0000736776 00000 n +0000736326 00000 n +0000729944 00000 n +0000736452 00000 n +0000736581 00000 n +0000736646 00000 n +0000736711 00000 n +0000743828 00000 n +0000743373 00000 n +0000736926 00000 n +0000743499 00000 n +0000743630 00000 n +0000743696 00000 n +0000743762 00000 n +0000750895 00000 n +0000750445 00000 n +0000743978 00000 n +0000750571 00000 n +0000750700 00000 n +0000750765 00000 n +0000750830 00000 n +0001059690 00000 n +0000757954 00000 n +0000757499 00000 n +0000751045 00000 n +0000757625 00000 n +0000757756 00000 n +0000757822 00000 n +0000757888 00000 n +0000765030 00000 n +0000764580 00000 n +0000758104 00000 n +0000764706 00000 n +0000764835 00000 n +0000764900 00000 n +0000764965 00000 n +0000771628 00000 n +0000771305 00000 n +0000765180 00000 n +0000771431 00000 n +0000771562 00000 n +0000778230 00000 n +0000777910 00000 n +0000771765 00000 n +0000778036 00000 n +0000778165 00000 n +0000786608 00000 n +0000786011 00000 n +0000778367 00000 n +0000786477 00000 n +0000786167 00000 n +0000786321 00000 n +0000791584 00000 n +0000791650 00000 n +0000791716 00000 n +0000791393 00000 n +0000786706 00000 n +0000791519 00000 n +0001059815 00000 n +0000797134 00000 n +0000796811 00000 n +0000791814 00000 n +0000796937 00000 n +0000797068 00000 n +0000799418 00000 n +0000799098 00000 n +0000797245 00000 n +0000799224 00000 n +0000799353 00000 n +0000802010 00000 n +0000801687 00000 n +0000799529 00000 n +0000801813 00000 n +0000801944 00000 n +0000804940 00000 n +0000804620 00000 n +0000802121 00000 n +0000804746 00000 n +0000804875 00000 n +0000807770 00000 n +0000807447 00000 n +0000805051 00000 n +0000807573 00000 n +0000807704 00000 n +0000808518 00000 n +0000808263 00000 n +0000807881 00000 n +0000808389 00000 n +0001059940 00000 n +0000816595 00000 n +0000816034 00000 n +0000808603 00000 n +0000816335 00000 n +0000816529 00000 n +0000816181 00000 n +0000824029 00000 n +0000823535 00000 n +0000816719 00000 n +0000823835 00000 n +0000823964 00000 n +0000823682 00000 n +0000833136 00000 n +0000832281 00000 n 0000824153 00000 n -0000832619 00000 n -0000832252 00000 n -0000824681 00000 n -0000832554 00000 n -0000832399 00000 n -0000843533 00000 n -0000842491 00000 n -0000832743 00000 n -0000842617 00000 n -0000842683 00000 n -0000842944 00000 n -0000843010 00000 n -0000843141 00000 n -0000843207 00000 n -0000843273 00000 n -0000843339 00000 n -0000843467 00000 n -0001006563 00000 n -0000853594 00000 n -0000852697 00000 n -0000843644 00000 n -0000852823 00000 n -0000852888 00000 n -0000853145 00000 n -0000853209 00000 n -0000853465 00000 n -0000853529 00000 n -0000860895 00000 n -0000860672 00000 n -0000863911 00000 n -0000863785 00000 n -0000872406 00000 n -0000872145 00000 n -0000875760 00000 n -0000875735 00000 n -0000881208 00000 n -0000880914 00000 n -0000887475 00000 n -0000887301 00000 n -0000897821 00000 n -0000897552 00000 n -0000901238 00000 n -0000901209 00000 n -0000904591 00000 n -0000904530 00000 n -0000918225 00000 n -0000917908 00000 n -0000930225 00000 n -0000929900 00000 n -0000947447 00000 n -0000947078 00000 n -0000966641 00000 n -0000966231 00000 n -0000982699 00000 n -0000982321 00000 n -0000990550 00000 n -0000990369 00000 n -0001003994 00000 n -0001003622 00000 n -0001006652 00000 n -0001006772 00000 n -0001006894 00000 n -0001007020 00000 n -0001007100 00000 n -0001007192 00000 n -0001015491 00000 n -0001024239 00000 n -0001024280 00000 n -0001024320 00000 n -0001024559 00000 n +0000832744 00000 n +0000832939 00000 n +0000832437 00000 n +0000833070 00000 n +0000832590 00000 n +0000836808 00000 n +0000836617 00000 n +0000833260 00000 n +0000836743 00000 n +0000838752 00000 n +0000838495 00000 n +0000836906 00000 n +0000838621 00000 n +0000846408 00000 n +0000845613 00000 n +0000838863 00000 n +0000846083 00000 n +0000846212 00000 n +0000845769 00000 n +0000846277 00000 n +0000845925 00000 n +0000846342 00000 n +0001060065 00000 n +0000853780 00000 n +0000852953 00000 n +0000846583 00000 n +0000853583 00000 n +0000853714 00000 n +0000853118 00000 n +0000853272 00000 n +0000853427 00000 n +0000862020 00000 n +0000861359 00000 n +0000853904 00000 n +0000861826 00000 n +0000861955 00000 n +0000861515 00000 n +0000861671 00000 n +0000865383 00000 n +0000864883 00000 n +0000862144 00000 n +0000865186 00000 n +0000865317 00000 n +0000865030 00000 n +0000866412 00000 n +0000866157 00000 n +0000865507 00000 n +0000866283 00000 n +0000877561 00000 n +0000876901 00000 n +0000866497 00000 n +0000877364 00000 n +0000877495 00000 n +0000877057 00000 n +0000877211 00000 n +0000886008 00000 n +0000885640 00000 n +0000877736 00000 n +0000885943 00000 n +0000885787 00000 n +0001060190 00000 n +0000896922 00000 n +0000895880 00000 n +0000886132 00000 n +0000896006 00000 n +0000896072 00000 n +0000896333 00000 n +0000896399 00000 n +0000896530 00000 n +0000896596 00000 n +0000896662 00000 n +0000896728 00000 n +0000896856 00000 n +0000906983 00000 n +0000906086 00000 n +0000897033 00000 n +0000906212 00000 n +0000906277 00000 n +0000906534 00000 n +0000906598 00000 n +0000906854 00000 n +0000906918 00000 n +0000914284 00000 n +0000914061 00000 n +0000917300 00000 n +0000917174 00000 n +0000925795 00000 n +0000925534 00000 n +0000929149 00000 n +0000929124 00000 n +0000934597 00000 n +0000934303 00000 n +0000940864 00000 n +0000940690 00000 n +0000951210 00000 n +0000950941 00000 n +0000954627 00000 n +0000954598 00000 n +0000957980 00000 n +0000957919 00000 n +0000971614 00000 n +0000971297 00000 n +0000983614 00000 n +0000983289 00000 n +0001000836 00000 n +0001000467 00000 n +0001020030 00000 n +0001019620 00000 n +0001036088 00000 n +0001035710 00000 n +0001043939 00000 n +0001043758 00000 n +0001057500 00000 n +0001057126 00000 n +0001060288 00000 n +0001060408 00000 n +0001060530 00000 n +0001060656 00000 n +0001060745 00000 n +0001060837 00000 n +0001069891 00000 n +0001079211 00000 n +0001079252 00000 n +0001079292 00000 n +0001079531 00000 n trailer << -/Size 1377 -/Root 1375 0 R -/Info 1376 0 R -/ID [ ] +/Size 1460 +/Root 1458 0 R +/Info 1459 0 R +/ID [<5E3545A0D122E51D354D63B80B893AB4> <5E3545A0D122E51D354D63B80B893AB4>] >> startxref -1025128 +1080100 %%EOF diff --git a/util/psb_hbio_mod.f90 b/util/psb_hbio_mod.f90 index 4931546c..7022f162 100644 --- a/util/psb_hbio_mod.f90 +++ b/util/psb_hbio_mod.f90 @@ -179,13 +179,13 @@ contains - subroutine dhb_write(a,iret,eiout,filename,key,rhs,mtitle) + subroutine dhb_write(a,iret,iunit,filename,key,rhs,mtitle) use psb_base_mod implicit none type(psb_dspmat_type), intent(in) :: a integer, intent(out) :: iret character(len=*), optional, intent(in) :: mtitle - integer, optional, intent(in) :: eiout + integer, optional, intent(in) :: iunit character(len=*), optional, intent(in) :: filename character(len=*), optional, intent(in) :: key real(kind(1.d0)), optional :: rhs(:) @@ -213,16 +213,16 @@ contains if (filename=='-') then iout=6 else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=99 endif open(iout,file=filename, err=901, action='WRITE') endif else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=6 endif @@ -520,13 +520,13 @@ contains - subroutine zhb_write(a,iret,eiout,filename,key,rhs,mtitle) + subroutine zhb_write(a,iret,iunit,filename,key,rhs,mtitle) use psb_base_mod implicit none type(psb_zspmat_type), intent(in) :: a integer, intent(out) :: iret character(len=*), optional, intent(in) :: mtitle - integer, optional, intent(in) :: eiout + integer, optional, intent(in) :: iunit character(len=*), optional, intent(in) :: filename character(len=*), optional, intent(in) :: key complex(kind(1.d0)), optional :: rhs(:) @@ -554,16 +554,16 @@ contains if (filename=='-') then iout=6 else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=99 endif open(iout,file=filename, err=901, action='WRITE') endif else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=6 endif diff --git a/util/psb_mmio_mod.f90 b/util/psb_mmio_mod.f90 index 9ab55ece..a22937ef 100644 --- a/util/psb_mmio_mod.f90 +++ b/util/psb_mmio_mod.f90 @@ -148,13 +148,13 @@ contains - subroutine dmm_mat_write(a,mtitle,iret,eiout,filename) + subroutine dmm_mat_write(a,mtitle,iret,iunit,filename) use psb_base_mod implicit none type(psb_dspmat_type), intent(in) :: a integer, intent(out) :: iret character(len=*), intent(in) :: mtitle - integer, optional, intent(in) :: eiout + integer, optional, intent(in) :: iunit character(len=*), optional, intent(in) :: filename integer :: iout @@ -165,16 +165,16 @@ contains if (filename=='-') then iout=6 else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=99 endif open(iout,file=filename, err=901, action='WRITE') endif else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=6 endif @@ -330,13 +330,13 @@ contains - subroutine zmm_mat_write(a,mtitle,iret,eiout,filename) + subroutine zmm_mat_write(a,mtitle,iret,iunit,filename) use psb_base_mod implicit none type(psb_zspmat_type), intent(in) :: a integer, intent(out) :: iret character(len=*), intent(in) :: mtitle - integer, optional, intent(in) :: eiout + integer, optional, intent(in) :: iunit character(len=*), optional, intent(in) :: filename integer :: iout @@ -347,16 +347,16 @@ contains if (filename=='-') then iout=6 else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=99 endif open(iout,file=filename, err=901, action='WRITE') endif else - if (present(eiout)) then - iout = eiout + if (present(iunit)) then + iout = iunit else iout=6 endif