From dongarra@CS.UTK.EDU Fri Apr 12 16:50:11 1996
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA07592; Fri, 12 Apr 1996 16:50:11 -0400
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA19509; Fri, 12 Apr 1996 16:53:27 -0400
Received: from daffy.cs.utexas.edu (rvdg@daffy.cs.utexas.edu [128.83.143.203]) by mail.cs.utexas.edu (8.7.1/8.7.1) with ESMTP id PAA09872; Fri, 12 Apr 1996 15:45:34 -0500 (CDT)
From: Robert van de Geijn <rvdg@cs.utexas.edu>
Received: by daffy.cs.utexas.edu (8.7.1/Client-1.4)
	id PAA27599; Fri, 12 Apr 1996 15:45:33 -0500
Date: Fri, 12 Apr 1996 15:45:33 -0500
Message-Id: <199604122045.PAA27599@daffy.cs.utexas.edu>
To: blast-core@CS.UTK.EDU, blast-parallel@CS.UTK.EDU, blast-ob@CS.UTK.EDU
CC: plapackers@cs.utexas.edu, rvdg@cs.utexas.edu, stewart@cs.umd.edu
Subject: Recent advances

Folks,

we at UT-Austin have been playing with a number of issues that may be
of interest to the BLAST forum.

As part of the PLAPACK project, we have implemented a Simple Library
(SL_library) which uses Physically Based Matrix Distribution (PBMD),
Object Based Programming (OBP), and recent advances in parallel linear
algebra algorithms.  The results are quite encouraging:

* We currently have about 1200 lines of code, primarily providing
the infrastructure for the object based library.  

* With this we should be able to implement all parallel blas in
another 1200 lines of code, 

* and the rest of "core" LAPACK in yet another 1200 lines.  

* What is also interesting is that we are getting the same high
performance as our hand coded parallel level 3 BLAS, on the Intel
Paragon.

For more information, the webpage for the SL_library can be accessed
through my home page:

        http://www.cs.utexas.edu/users/rvdg

A more direct path to the reference manual, example of matrix-matrix
multiplication, and performance data, you can access

        http://www.cs.utexas.edu/users/gunnels/SL_Library/library.html

We would welcome comments

Robert




From dongarra@CS.UTK.EDU Tue Jan 28 16:04:47 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA03566; Tue, 28 Jan 1997 16:04:47 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA13240; Tue, 28 Jan 1997 16:09:35 -0500
From: <rvdg@cs.utexas.edu>
Received: from daffy.cs.utexas.edu (rvdg@daffy.cs.utexas.edu [128.83.143.203])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id PAA06570;
	Tue, 28 Jan 1997 15:09:16 -0600 (CST)
Received: by daffy.cs.utexas.edu (8.8.5/Client-1.5)
	id PAA16250; Tue, 28 Jan 1997 15:09:15 -0600
Date: Tue, 28 Jan 1997 15:09:15 -0600
Message-Id: <199701282109.PAA16250@daffy.cs.utexas.edu>
To: blast-parallel@CS.UTK.EDU
CC: blast-comm@CS.UTK.EDU
Subject: Parallel BLAS standard prototype

Dear Forum participants,

we have been busy with our PLAPACK package, which we believe can be
used as at least an example of how standardization can proceed.

The PLAPACK project represents an effort to provide an infrastructure
for implementing application friendly high performance linear algebra
algorithms.  The package uses a more application-centric data
distribution, which we call Physically Based Matrix Distribution, as
well as an object based (MPI-like) style of programming.  It is this
style of programming that allows for highly compact codes, written in
C but usable from FORTRAN, that more closely reflect the underlying
blocked algorithms.  We show that this can be attained without
sacrificing high performance.

The following example shows how PLAPACK code reflects the natural
description of a linear algebra algorithm. Consider the Cholesky
factorization of matrix A using a level-2 right-looking variant.  One
can explain this algorithm as follows: Partition

          / a_11    *   \   / l_11    0  \ / l_11  l_21^T \
    A =   \ a_21   A_22 / = \ l_21  L_22 / \   0   L_22^T /  

where a_11 and l_11 are scalars.  Then the algorithm can be
described as given below on the left, which translate to PLAPACK code
given on the right:

let A_cur = A                     PLA_Obj_all_view( a, &acur );
do until done                     while ( TRUE ){     
                                    PLA_Obj_global_length( a, &size );
                                    if ( 0 == size ) break;
  - partition 
      A_cur = / a_11  *   \         PLA_Obj_split_4( a, 1, 1, &a11, &a12,
              \ a_21 A_22 /                                   &a21, &acur );
  -  a_11 <- sqrt( a_11 )           Take_sqrt( a11 );
  -  a_21 = 1/a_11 * a_21           PLA_Inv_Scal( a11, a_21 );
  -  A_22 <- A_22 - l_21 l_21^T     PLA_Syr(PLA_LOW_TRIAN, min_one, a21, acur);
  -  let A_cur = A_22               
enddo                             }

Here A_cur becomes a reference into the original matrix, rather than a
copy.  Level-3 BLAS versions can be coded similarly, and achieve
within 30% of peak on most parallel architectures.

The web page for PLAPACK is

http://www.cs.utexas.edu/users/plapack

The web page for the Users' Guide is 

http://www.cs.utexas.edu/users/plapack/Guide

Unfortunately, we cannot give out postscript, since we have signed a
contract with The MIT Press.

Hopefully this material will provide food for discussion before the
meeting.

Best Regards
Robert

======================================================================
Robert A. van de Geijn              Taylor Hall 4.115C
Associate Professor                 (512) 471-9720 (office)
Department of Computer Sciences     (512) 471-8885 (fax)
The University of Texas             rvdg@cs.utexas.edu
Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg



From dongarra@CS.UTK.EDU Wed Nov 26 02:39:12 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id CAA02367; Wed, 26 Nov 1997 02:39:12 -0500
Received: from sgi1.ccrl-nece.technopark.gmd.de (sgi1.ccrl-nece.technopark.gmd.de [193.175.160.69]) 
        by CS.UTK.EDU with SMTP (cf v2.9s-UTK)
	id CAA26261; Wed, 26 Nov 1997 02:46:00 -0500 (EST)
From: <petitet@ccrl-nece.technopark.gmd.de>
Received: from laplace.ccrl-nece.technopark.gmd.de by sgi1.ccrl-nece.technopark.gmd.de via ESMTP (950413.SGI.8.6.12/940406.SGI.AUTO)
	 id HAA17818; Wed, 26 Nov 1997 07:36:23 +0100
Received: by laplace.ccrl-nece.technopark.gmd.de (950413.SGI.8.6.12) id IAA23008; Wed, 26 Nov 1997 08:30:13 +0100
Date: Wed, 26 Nov 1997 08:30:13 +0100
Message-Id: <199711260730.IAA23008@laplace.ccrl-nece.technopark.gmd.de>
To: blast-parallel@CS.UTK.EDU
Subject: In preparation for the coming meeting ...
Cc: petitet@ccrl-nece.technopark.gmd.de


  Dear BLAST participant,

  Please find enclosed a draft introduction/layout to the 
Distributed-memory Dense BLAS chapter. I will present its
contents at the coming meeting. Please feel free to send
me comments/suggestions.

  See you in Knoxville next week,

  Best Regards,

  Antoine


\chapter{Distributed-memory Dense BLAS Interface}            \label{chap:dmblas}

%%%%%%%%%%%%%%%%%%%%%%%%%% Introduction to Distributed-memory Dense BLAS %%%%%%%

\section{Introduction to Distributed-memory Dense BLAS} \label{sec:dmblas_intro}

\subsection{Overview and Goals}                   \label{subsec:dmblas_overview}

There has been much
interest in the past
few years in developing
versions of the BLAS 
for distributed-memory
computers\cite{cmssl90a,
elster90a, aboelaze91a,
falgout93a,brent93a,
choi94a,lawn100,chtchelkanova95a,
bangalore95a,geijn97a}.
Some of this research
proposed parallelizing
the BLAS\cite{velde87a,
cmssl90a,choi94a,lawn100,
slug,chtchelkanova95a,
strazdins96a,geijn97a},
and some implemented a
few important BLAS 
routines\cite{cmssl90a,
lichtenstein93a,choi94a,
lawn100,slug,chtchelkanova95a,
strazdins96a,geijn97a},
such as matrix-matrix
multiplication\cite{fox87a,
agarwal94a,huss94a,mathur94a,
agarwal95a,lawn57,lawn96}
or triangular system solve
\cite{heath88a,li88a,li89a,
bisseling91b}. This document
has been inspired to a 
large extent by these
research initiatives.

This document proposes
to reuse the interface
design of the dense part
of the ScaLAPACK project
\cite{lawn100,slug} as
a basis for the 
distributed-memory
dense BLAS interface.
This choice is motivated
by the following reasons.
\begin{itemize}
 \item The simplicity of this interface allows for ease-of-use
       and similar calling sequence definitions in all targeted 
       programming languages.
 \item This interface has been shown\cite{slug} to be effective
       for the developement of large and high-quality dense linear
       algebra software for distributed-memory computers.
 \item The broad functionality permitted by this interface enables,
       facilitates and encourages the development of current and
       related research projects such as the Distributed BLAS
       project\cite{strazdins96a}, the Multicomputer Toolbox
       project\cite{falgout93a,bangalore95a} and the
       PLAPACK project\cite{geijn97a}.
 \item The publically available implementation containing source
       code, testing and timing programs considerably facilitate
       the task of providing a reference implementation of the
       distributed-memory dense BLAS interface.
 \item A large number of machine and software vendors such as
       Fujitsu, Hewlett-Packard/Convex, Hitachi, IBM Parallel ESSL,
       NAG Numerical PVM and MPI library, NEC Scientific Software
       Library, SGI Cray Scientific Library, SUN Scientific Software
       Library and Visual Numerics (IMSL) have already adopted this
       interface design for their own products.
\end{itemize}

The distributed-memory
dense BLAS standardization
effort involved about
30 people from 20 
organizations mainly
from the United States
and Europe. Most of
the major vendors of
concurrent computers
were involved in this
work, along with
researchers from
universities, government
laboratories, and industry.
The standardization
process began with 
the BLAS Technical
Workshop, sponsored
by the University of
Tennessee Knoxville,
held November 13-14,
1995, in Knoxville,
Tennessee. At this 
workshop the basic
features essential
to a standard 
distributed-memory
dense BLAS interface
were discussed, and
a working group 
established to
continue the 
standardization
process.

The main advantages
of establishing a 
distributed-memory
dense BLAS standard
are portability and
ease-of-use.  In a
distributed-memory
environment in which
the higher level 
routines and/or 
abstractions are
built upon lower
level message-passing
and computational
routines the benefits
of standardization
are particularly
apparent. Furthermore,
the definition of
distributed-memory
dense basic linear
algebra subprograms,
such as those proposed
here, provides vendors
with a clearly defined
base set of routines 
that they can implement 
efficiently, or in some
cases provide hardware
support for, thereby
enhancing scalability.

The goal of the
distributed-memory
dense BLAS interface
simply stated is
to develop a widely
used standard for
writing message-passing
programs performing
dense basic linear
algebra operations.
As such the interface
should establish a 
practical, portable,
efficient and flexible
standard for
distributed-memory
dense basic linear
algebra operations.

A complete list of goals follows.
\begin{itemize}
 \item Design an Application Programming Interface
       (API) (not necessarily for compilers or a
       system implementation library) well suited
       for distributed-memory dense basic linear
       algebra computations.
 \item Allow efficient communication and computation:
       minimizing communication startup overhead and
       volume, while maximizing load balance and local
       computational performance.
 \item Allow for re-use of existing message-passing
       interface standard\cite{mpi94a} as well as local
       basic linear algebra computational kernels such
       as the {\em de facto} standard BLAS.
 \item Allow for implementations that can be used in a
       heterogeneous environment.
 \item Allow convenient Fortran~77, Fortran~90, High
       Performance Fortran (HPF), C and C++ bindings
       for the interface.
 \item Define an interface that is not too different
       from current practice and provide extensions 
       that allow greater flexibility.
 \item Define an interface that can be implemented on
       many vendors' platforms, with no significant 
       changes in the underlying system software.
 \item Semantics of the interface should be language-
       and data-distribution independent.
 \item The interface should be designed to allow for
       thread-safety.
\end{itemize}

\subsection{Who Should Use This Standard ?}

This standard is intended
for use by all those who
want to write portable 
programs performing dense
linear algebra operations
in Fortran~77, Fortran~90,
High Performance Fortran
(HPF), C or C++.  This
includes individual
application programmers,
developers of dense
linear algebra software
designed to run on parallel
machines, and creators of
computational environment
and tools. In order to be
attractive to this wide
audience, the standard
must provide a simple,
easy-to-use interface
for the basic user while
not semantically precluding
the high-performance 
computation and 
communication operations
available on advanced
machines.

\subsection{What Platforms Are Targets for Implementation ?}

The attractiveness of the 
distributed-memory dense BLAS
at least partially stems from
its wide portability as well 
as the common occurence of
dense linear algebra operations
in numerical simulations.
These programs may run on
distributed-memory multiprocessors,
networks of workstations, and
combinations of all of these.
In addition, shared-memory 
implementations are possible.
The message passing paradigm
will not be made obsolete by
architectures combining the
shared- and distributed- memory
views, or by increases in network
speeds.  It thus should be both
possible and useful to implement
this standard on a great variety
of machines, including those
"machines", parallel or not,
connected by a communication
network.

The distributed-memory dense BLAS
interface provides many features
intended to improve performance
on scalable parallel computers 
with specialized interprocessor
communication hardware. Thus, we
expect that native, high-performance
implementations of this interface
will be provided on such machines.
At the same time, implementations
of this standard on top of MPI or
PVM will provide portability to
workstation clusters and heterogeneous
networks of workstations.

\subsection{What Is Included in the Standard ?}

The standard includes:
\begin{itemize}
 \item A set of basic dense linear algebra computational operations
 \item Data-redistribution operations
 \item Environmental management and inquiry
 \item Bindings for Fortran~77 and C that can also be used in 
       respectively Fortran~90 and C++ programs
 \item Bindings for High Performance Fortran (HPF)
\end{itemize}

\subsection{What Is Not (Yet ?) Included in the Standard ?}

The standard does not (yet) specify:
\begin{itemize}
 \item Debugging facilities
 \item Specific I/O and data generation operations
 \item Out-of-core computational routines
 \item Packed and banded storage computational routines
 \item Extended precision computational routines
\end{itemize}

There are many features
and interface variants
that have been considered
and not included in this
standard.  This happened
for a number of reasons,
one of which is the time
constraint that was 
self-imposed in finishing
the standard. Features
that are not included
can always be offered
as extensions by specific
implementations. Perhaps
future version of the 
distributed-memory dense
BLAS interface will 
address some of these
issues.

\subsection{Organization of This Chapter}     \label{subsec:dmblas_organization}

The following is a list
of the remaining sections
in this chapter, along 
with a brief description
of each.
\begin{itemize}
 \item Section~\ref{sec:dmblas_terminology},
       Terminology and Conventions, explains
       notational terms and conventions used
       throughout this chapter.
 \item Section~\ref{sec:dmblas_functionality},
       Functionality, describes the operations
       performed by the distributed-memory
       dense BLAS functions,
 \item Section~\ref{sec:dmblas_lis},
       Language and Data-distribution
       Independent Specifications,
       defines the operations of
       the distributed-memory dense
       BLAS independently from the 
       data-decomposition scheme
       used for distributing the
       operands.  Matrix-matrix
       multiply, matrix-vector
       multiply and dot-product
       are found there, along
       with many associated
       functions designed to
       make the basic linear
       algebra computational
       operation powerful, easy
       to use and efficient.
 \item Section~\ref{sec:dmblas_lds},
       Language- and Data-Distribution
       Dependent Specifications, defines
       the Fortran~77 and C bindings of
       the distributed-memory dense BLAS
       functions for the two-dimensional
       block-cyclic and block-cartesian
       data decomposition schemes.
 \item Section~\ref{sec:dmblas_ref_impl},
       A Reference Implementation, describes
       a model implementation of the 
       distributed-memory dense BLAS
       as well as testing and timing
       programs for the two-dimensional
       block-cyclic mapping that aims
       at supporting and encouraging
       the use of the distributed-memory 
       dense BLAS. 
 \item Section~\ref{sec:dmblas_lang_bindings},
       Language Bindings, gives specific 
       syntax in Fortran~77 and C, for all
       distributed-memory dense BLAS functions
       for the two-dimensional block-cyclic
       and block-cartesian data-decomposition
       schemes.
 \item The distributed-memory dense BLAS
       Index is a simple index showing the
       location of the precise definition
       of each function defined by this 
       chapter, together with both C and
       Fortran~77 bindings.
\end{itemize}


From dongarra@CS.UTK.EDU Fri Dec  5 10:57:23 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id KAA09292; Fri, 5 Dec 1997 10:57:22 -0500
Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id LAA17761; Fri, 5 Dec 1997 11:04:08 -0500 (EST)
Received: from arte.inria.fr (arte.inria.fr [128.93.12.53])
	by concorde.inria.fr (8.8.7/8.8.5) with ESMTP id RAA02474;
	Fri, 5 Dec 1997 17:04:06 +0100 (MET)
Received: from localhost (scott@localhost) by arte.inria.fr (8.7.6/8.7.3) with SMTP id RAA19777; Fri, 5 Dec 1997 17:04:05 +0100 (MET)
Date: Fri, 5 Dec 1997 17:04:04 +0100 (MET)
From: Tony Scott <Tony.Scott@inria.fr>
To: blast-comm@CS.UTK.EDU
cc: blast-sparse@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
Subject: Maple/BLAS link
Message-ID: <Pine.OSF.3.96.971205165243.19714J-100000@arte.inria.fr>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

Dear Sirs,

	My name is Tony Scott and I am one of the developers of
the Maple Computer Algebra System.  I am currently working on
a project which attempts to link Maple with Scilab (a fast
numerical software package which is similar to MATLAB).  In
particular, we are also interested in the links between Maple
and Scilab with FORTRAN, C and BLAS (Scilab is freeware BTW
and it can be accessed via anonymous ftp and is partly based on the
BLAS routines).  This project has started here at INRIA-Rocquencourt
(which is in the Paris region of France).

	For this reason, I would like to communicate with you
so as to exchange information that could benefit the outcome of 
this project.

	Dr. Claude Gomez has started a package called transfor which
transforms Matrix operations into BLAS routines.  So far it works
but it is based on the standard routines. We are also 
interested in SPARSE BLAS routines and routines which exploit
parallel processing.  However, keeping freewarein our minds,
we want to make sure that the conversion into BLAS is done in
terms of standard available (and free) routines.

	I know that the CRAY has a huge directory of SPARSE
BLAS routines and in the past few years, there has been some
intensive work on SPARSE BLAS routines.  However, I don't
know if these SPARSE BLAS routines are now "standard" and
available.  Can anyone tell me if they are?  and where a
directory of such routines are available?

Thank you for your time.

Best Wishes,

Tony Scott
Editor-in-Chief
MapleTech


From dongarra@CS.UTK.EDU Sat Dec  6 02:35:16 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id CAA20279; Sat, 6 Dec 1997 02:35:16 -0500
Received: from timbuk.cray.com (timbuk-anet.cray.com [128.162.19.7]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id CAA11338; Sat, 6 Dec 1997 02:42:06 -0500 (EST)
Received: from ironwood.cray.com (root@ironwood-fddi.cray.com [128.162.21.36]) by timbuk.cray.com (8.8.7/CRI-gate-news-1.3) with ESMTP id BAA27165; Sat, 6 Dec 1997 01:42:05 -0600 (CST)
Received: from [204.73.50.35] (eagan-rip17 [204.73.50.17]) by ironwood.cray.com (8.8.4/CRI-ironwood-news-1.0) with ESMTP id BAA01658; Sat, 6 Dec 1997 01:42:00 -0600 (CST)
X-Sender: mamh@ironwood.cray.com
Message-Id: <v0300780eb0aeae1e465b@[204.73.50.35]>
In-Reply-To: <Pine.OSF.3.96.971205165243.19714J-100000@arte.inria.fr>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date: Sat, 6 Dec 1997 01:28:28 -0600
To: Tony Scott <Tony.Scott@inria.fr>, blast-comm@CS.UTK.EDU
From: Mike Heroux <mike.heroux@cray.com>
Subject: Re: Maple/BLAS link
Cc: blast-sparse@CS.UTK.EDU, blast-parallel@CS.UTK.EDU

Tony,

The sparse BLAS are not standard at this point.  There is ongoing
discussion about it, and progress is being made.  There are reference
implementations of a Toolkit and User level sparse BLAS.  The best starting
point is probably to visit the website http://math.nist.gov/spblas  This
page is maintained by Karin Remington and Roldan Pozo.  The reference
implementation of the Toolkit is there and pointers to Iain Duff's work on
the User Level sparse BLAS are there.

Best regards,

Mike

At 5:04 PM +0100 12/5/97, Tony Scott wrote:
>Dear Sirs,
>
>	My name is Tony Scott and I am one of the developers of
>the Maple Computer Algebra System.  I am currently working on
>a project which attempts to link Maple with Scilab (a fast
>numerical software package which is similar to MATLAB).  In
>particular, we are also interested in the links between Maple
>and Scilab with FORTRAN, C and BLAS (Scilab is freeware BTW
>and it can be accessed via anonymous ftp and is partly based on the
>BLAS routines).  This project has started here at INRIA-Rocquencourt
>(which is in the Paris region of France).
>
>	For this reason, I would like to communicate with you
>so as to exchange information that could benefit the outcome of
>this project.
>
>	Dr. Claude Gomez has started a package called transfor which
>transforms Matrix operations into BLAS routines.  So far it works
>but it is based on the standard routines. We are also
>interested in SPARSE BLAS routines and routines which exploit
>parallel processing.  However, keeping freewarein our minds,
>we want to make sure that the conversion into BLAS is done in
>terms of standard available (and free) routines.
>
>	I know that the CRAY has a huge directory of SPARSE
>BLAS routines and in the past few years, there has been some
>intensive work on SPARSE BLAS routines.  However, I don't
>know if these SPARSE BLAS routines are now "standard" and
>available.  Can anyone tell me if they are?  and where a
>directory of such routines are available?
>
>Thank you for your time.
>
>Best Wishes,
>
>Tony Scott
>Editor-in-Chief
>MapleTech




From dongarra@CS.UTK.EDU Wed Mar  4 15:07:28 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id PAA25817; Wed, 4 Mar 1998 15:07:27 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id PAA25480; Wed, 4 Mar 1998 15:07:47 -0500 (EST)
Received: from bigbird.cs.utexas.edu (rvdg@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id OAA21180;
	Wed, 4 Mar 1998 14:07:10 -0600 (CST)
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id OAA10616; Wed, 4 Mar 1998 14:07:08 -0600
Date: Wed, 4 Mar 1998 14:07:08 -0600
Message-Id: <199803042007.OAA10616@bigbird.cs.utexas.edu>
From: Robert van de Geijn <rvdg@cs.utexas.edu>
To: blast-parallel@CS.UTK.EDU
CC: blast-comm@CS.UTK.EDU, morrow@cs.utexas.edu
Subject: Distributed BLAS standardization

Folks,

I would like to start by stating that in my personal opinion, we who
are strictly in academia should stay out of the standardization
business.  We should prototype ideas and give advice.  Ultimately, the
mission of standardization is better met by the government labs and
industry.

As you are all well aware, we at Texas have long held the opinion that
standardization of the distributed BLAS along the lines of the
ScaLAPACK PBLAS should not be done in haste.  Thus, we are quite
surprised to see that a first reading of the chapter on distributed
BLAS is planned at the next meeting, and that that chapter essentially
proposes to use the PBLAS interface as the standard.

Thus, a few years ago, we started the PLAPACK project to investigate
the merits of raising the abstraction for programming parallel BLAS
and codes that use parallel BLAS.  All along we agreed that this may
incur a certain overhead, but maintained that this could be overcome
by the fact that the simplicity of the programming interface would
allow for more sophisticated algorithms to be programmed.  We are
finally at a stage where we can report on our experiences.

The following performance comparison between PLAPACK and the
equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
our point:

            Performance of dense linear solve 
             (in MFLOPS/sec/processor)

               n       PLAPACK         ScaLAPACK
                     (PLA_Gesv)        (PSGESV)
            2000          66             101
            5000         174             168 
            7500         228             201
           10000         268             209

The ScaLAPACK performance numbers were derived from those reported in
the ScaLAPACK Users' Guide.  We conducted our own experiments on the
T3E used to collect the PLAPACK numbers and found the ScaLAPACK
numbers to be representative.  Of course, 16 nodes is too small to
prove a point, however, we have incomplete data to show that the same
behavior can be observed on other platforms and larger systems.

Since performance is sometimes a determining factor in whether or
not people pay attention to research, we hope that the above 
numbers will encourage people to look beyond the ScaLAPACK PBLAS,
and consider alternatives.  Our advice is that a more comprehensive
interface to an infrastructure be considered, along the line of MPI.
In particular, indices are evil.

More information on PLAPACK:
      http://www.cs.utexas.edu/users/plapack
      plapack@cs.utexas.edu 

The PLAPACK Users' Guide is available from The MIT Press:
       Robert van de Geijn, 
       "Using PLAPACK: Parallel Linear Algebra Package",
       The MIT Press, 1997
       http://mitpress.mit.edu/

Best Regards
Greg Morrow and Robert van de Geijn
for the PLAPACK team

======================================================================
Robert A. van de Geijn              Taylor Hall 4.115C
Associate Professor                 (512) 471-9720 (office)
Department of Computer Sciences     (512) 471-8885 (fax)
The University of Texas             rvdg@cs.utexas.edu
Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg




From dongarra@CS.UTK.EDU Wed Mar  4 16:03:13 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA26240; Wed, 4 Mar 1998 16:03:13 -0500
Received: from cupid.cs.utk.edu (CUPID.CS.UTK.EDU [128.169.94.221]) 
        by CS.UTK.EDU with SMTP (cf v2.9s-UTK)
	id QAA29446; Wed, 4 Mar 1998 16:04:39 -0500 (EST)
From: R Clint Whaley <rwhaley@CS.UTK.EDU>
Received:  by cupid.cs.utk.edu (cf v2.11c-UTK)
          id QAA04618; Wed, 4 Mar 1998 16:04:33 -0500
Date: Wed, 4 Mar 1998 16:04:33 -0500
Message-Id: <199803042104.QAA04618@cupid.cs.utk.edu>
To: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu
Subject: Re:  Distributed BLAS standardization
Cc: blast-comm@CS.UTK.EDU, morrow@cs.utexas.edu

>The following performance comparison between PLAPACK and the
>equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
>our point:
>
>            Performance of dense linear solve 
>             (in MFLOPS/sec/processor)
>
>               n       PLAPACK         ScaLAPACK
>                     (PLA_Gesv)        (PSGESV)
>            2000          66             101
>            5000         174             168 
>            7500         228             201
>           10000         268             209
>
>The ScaLAPACK performance numbers were derived from those reported in
>the ScaLAPACK Users' Guide.  We conducted our own experiments on the
>T3E used to collect the PLAPACK numbers and found the ScaLAPACK
>numbers to be representative.  Of course, 16 nodes is too small to
>prove a point, however, we have incomplete data to show that the same
>behavior can be observed on other platforms and larger systems.

I'm a little confused.  The numbers in the SLUG (which are you are using),
are for a 300Mhz T3E; i.e., the hardware is running half as fast as the
hardware for your plapack timings.  I don't have access to a 600Mhz T3E,
but I do have access to a 450Mhz T3E.  Here are the numbers, as you've plotted
them:
                       
                         600Mhz         450Mhz
               n       PLAPACK         ScaLAPACK
                     (PLA_Gesv)        (PSGESV)
            2000          66             122
            5000         174             257 
            7500         228             315
           10000         268             344

Taken at face value, these numbers seem to indicate that ScaLAPACK is strikingly
faster . . .

Cheers,
Clint

From dongarra@CS.UTK.EDU Wed Mar  4 16:27:52 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA26570; Wed, 4 Mar 1998 16:27:51 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA01348; Wed, 4 Mar 1998 16:29:06 -0500 (EST)
Received: from bigbird.cs.utexas.edu (morrow@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id PAA24265;
	Wed, 4 Mar 1998 15:28:24 -0600 (CST)
From: Greg Morrow <morrow@cs.utexas.edu>
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id PAA22566; Wed, 4 Mar 1998 15:28:23 -0600
Message-Id: <199803042128.PAA22566@bigbird.cs.utexas.edu>
Subject: Re: Distributed BLAS standardization
To: rwhaley@CS.UTK.EDU
Date: Wed, 4 Mar 1998 15:28:22 -0600 (CST)
Cc: blast-parallel@CS.UTK.EDU, blast-comm@CS.UTK.EDU,
        rvdg@cs.utexas.edu (Robert van de Geijn)
In-Reply-To: <199803042104.QAA04618@cupid.cs.utk.edu> from "rwhaley@cs.utk.edu" at Mar 4, 98 04:04:33 pm
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

rwhaley@cs.utk.edu wrote :
> 
> >The following performance comparison between PLAPACK and the
> >equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
> >our point:
> >
> >            Performance of dense linear solve 
> >             (in MFLOPS/sec/processor)
> >
> >               n       PLAPACK         ScaLAPACK
> >                     (PLA_Gesv)        (PSGESV)
> >            2000          66             101
> >            5000         174             168 
> >            7500         228             201
> >           10000         268             209
> >

...

> 
> I'm a little confused.  The numbers in the SLUG (which are you are using),
> are for a 300Mhz T3E; i.e., the hardware is running half as fast as the
> hardware for your plapack timings.  I don't have access to a 600Mhz T3E,
> but I do have access to a 450Mhz T3E.  Here are the numbers, as you've plotted
> them:
>                        
>                          600Mhz         450Mhz
>                n       PLAPACK         ScaLAPACK
>                      (PLA_Gesv)        (PSGESV)
>             2000          66             122
>             5000         174             257 
>             7500         228             315
>            10000         268             344
> 
> Taken at face value, these numbers seem to indicate that ScaLAPACK is strikingly
> faster . . .
> 
> Cheers,
> Clint
> 

Clint,

There is a bit of confusion here.  The T3E 600 is the 
model number for the 300 MHz machine.  The T3E 900 is 
the 450 MHz machine.  The PLAPACK numbers are from
the 300 Mhz machine, so the comparison is fair.

Thanks,
Greg 

--
Greg Morrow                          morrow@cs.utexas.edu
Texas Institute for Computational and Applied Mathematics
University of Texas at Austin                  









From dongarra@CS.UTK.EDU Wed Mar  4 16:59:03 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA26845; Wed, 4 Mar 1998 16:58:59 -0500
Received: from antares.mcs.anl.gov (mcs.anl.gov [140.221.9.6]) 
        by CS.UTK.EDU with SMTP (cf v2.9s-UTK)
	id RAA03672; Wed, 4 Mar 1998 17:00:25 -0500 (EST)
Received: from eagle.mcs.anl.gov (eagle.mcs.anl.gov [140.221.3.47]) by antares.mcs.anl.gov (8.6.10/8.6.10)  with SMTP
	id QAA17923; Wed, 4 Mar 1998 16:00:20 -0600
Date: Wed, 4 Mar 1998 16:00:18 -0600 (CST)
From: Barry Smith <bsmith@mcs.anl.gov>
To: blast-parallel@CS.UTK.EDU, blast-comm@CS.UTK.ED
Subject: Re: Distributed BLAS standardization
In-Reply-To: <199803042007.OAA10616@bigbird.cs.utexas.edu>
Message-ID: <Pine.SUN.3.95.980304153926.21090Y-100000@eagle.mcs.anl.gov>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


  It would be very unfortunate if a standard were implemented 
just because "any standard is better than no standard". Clearly
the research community is still exploring various approaches to 
parallelizing dense matrix computations, good new ideas are still
emerging, they should be fostered not crushed.

  I withdraw from the BLAST Forum because it was clear to me that
it would never have the community-wide participation required to 
foster the best possible approaches and standards (that for example, 
MPI did have). Unless the BLAST Forum has the wide participation,
it will always be irrelevent to the end users.

  I hope that Robert can propose the PLAPACK approach as an alternative
to the PBLAS as a chapter in the distributed BLAS. The technical
discussions and learning as one compares and contrasts the two 
approaches are fundamental to developing any standards; no one loses
and everyone wins if you can select the best parts of several proposals.
This was the great success of MPI.

  Barry Smith


On Wed, 4 Mar 1998, Robert van de Geijn wrote:

> Folks,
> 
> I would like to start by stating that in my personal opinion, we who
> are strictly in academia should stay out of the standardization
> business.  We should prototype ideas and give advice.  Ultimately, the
> mission of standardization is better met by the government labs and
> industry.
> 
> As you are all well aware, we at Texas have long held the opinion that
> standardization of the distributed BLAS along the lines of the
> ScaLAPACK PBLAS should not be done in haste.  Thus, we are quite
> surprised to see that a first reading of the chapter on distributed
> BLAS is planned at the next meeting, and that that chapter essentially
> proposes to use the PBLAS interface as the standard.
> 
> Thus, a few years ago, we started the PLAPACK project to investigate
> the merits of raising the abstraction for programming parallel BLAS
> and codes that use parallel BLAS.  All along we agreed that this may
> incur a certain overhead, but maintained that this could be overcome
> by the fact that the simplicity of the programming interface would
> allow for more sophisticated algorithms to be programmed.  We are
> finally at a stage where we can report on our experiences.
> 
> The following performance comparison between PLAPACK and the
> equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
> our point:
> 
>             Performance of dense linear solve 
>              (in MFLOPS/sec/processor)
> 
>                n       PLAPACK         ScaLAPACK
>                      (PLA_Gesv)        (PSGESV)
>             2000          66             101
>             5000         174             168 
>             7500         228             201
>            10000         268             209
> 
> The ScaLAPACK performance numbers were derived from those reported in
> the ScaLAPACK Users' Guide.  We conducted our own experiments on the
> T3E used to collect the PLAPACK numbers and found the ScaLAPACK
> numbers to be representative.  Of course, 16 nodes is too small to
> prove a point, however, we have incomplete data to show that the same
> behavior can be observed on other platforms and larger systems.
> 
> Since performance is sometimes a determining factor in whether or
> not people pay attention to research, we hope that the above 
> numbers will encourage people to look beyond the ScaLAPACK PBLAS,
> and consider alternatives.  Our advice is that a more comprehensive
> interface to an infrastructure be considered, along the line of MPI.
> In particular, indices are evil.
> 
> More information on PLAPACK:
>       http://www.cs.utexas.edu/users/plapack
>       plapack@cs.utexas.edu 
> 
> The PLAPACK Users' Guide is available from The MIT Press:
>        Robert van de Geijn, 
>        "Using PLAPACK: Parallel Linear Algebra Package",
>        The MIT Press, 1997
>        http://mitpress.mit.edu/
> 
> Best Regards
> Greg Morrow and Robert van de Geijn
> for the PLAPACK team
> 
> ======================================================================
> Robert A. van de Geijn              Taylor Hall 4.115C
> Associate Professor                 (512) 471-9720 (office)
> Department of Computer Sciences     (512) 471-8885 (fax)
> The University of Texas             rvdg@cs.utexas.edu
> Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg
> 
> 
> 
> 


From dongarra@CS.UTK.EDU Wed Mar  4 17:09:59 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id RAA26952; Wed, 4 Mar 1998 17:09:59 -0500
Received: from timbuk.cray.com (timbuk-fddi.cray.com [128.162.8.102]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id RAA04272; Wed, 4 Mar 1998 17:08:23 -0500 (EST)
Received: from ironwood.cray.com (root@ironwood-fddi.cray.com [128.162.21.36]) by timbuk.cray.com (8.8.8/CRI-gate-news-1.3) with ESMTP id QAA16328; Wed, 4 Mar 1998 16:08:07 -0600 (CST)
Received: from song.cray.com (song [128.162.174.153]) by ironwood.cray.com (8.8.4/CRI-ironwood-news-1.0) with ESMTP id QAA20911; Wed, 4 Mar 1998 16:08:05 -0600 (CST)
From: Guangye Li <gli@cray.com>
Received: by song.cray.com (8.8.0/btd-b3)
          id WAA14728; Wed, 4 Mar 1998 22:08:04 GMT
Message-Id: <199803042208.WAA14728@song.cray.com>
Subject: Re: Distributed BLAS standardization
To: rwhaley@CS.UTK.EDU (R Clint Whaley)
Date: Wed, 4 Mar 1998 16:08:03 -0600 (CST)
Cc: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu, blast-comm@CS.UTK.EDU,
        morrow@cs.utexas.edu
In-Reply-To: <199803042104.QAA04618@cupid.cs.utk.edu> from "R Clint Whaley" at Mar 4, 98 04:04:33 pm
X-Mailer: ELM [version 2.4 PL24-CRI-d]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

Just a clarification on the T3E speed. 
The naming of the T3E series is based on the peak mega flop rate 
of the processor instead of mega hertz. So a 300 Mhz T3E is called the 
T3E600, The 450 Mhz T3E and 600 Mhz T3E are called the T3E900 and 
T3E1200 respectively. 

Guangye Li
Cray Research, a Silicon Graphics Company

> 
> >The following performance comparison between PLAPACK and the
> >equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
> >our point:
> >
> >            Performance of dense linear solve 
> >             (in MFLOPS/sec/processor)
> >
> >               n       PLAPACK         ScaLAPACK
> >                     (PLA_Gesv)        (PSGESV)
> >            2000          66             101
> >            5000         174             168 
> >            7500         228             201
> >           10000         268             209
> >
> >The ScaLAPACK performance numbers were derived from those reported in
> >the ScaLAPACK Users' Guide.  We conducted our own experiments on the
> >T3E used to collect the PLAPACK numbers and found the ScaLAPACK
> >numbers to be representative.  Of course, 16 nodes is too small to
> >prove a point, however, we have incomplete data to show that the same
> >behavior can be observed on other platforms and larger systems.
> 
> I'm a little confused.  The numbers in the SLUG (which are you are using),
> are for a 300Mhz T3E; i.e., the hardware is running half as fast as the
> hardware for your plapack timings.  I don't have access to a 600Mhz T3E,
> but I do have access to a 450Mhz T3E.  Here are the numbers, as you've plotted
> them:
>                        
>                          600Mhz         450Mhz
>                n       PLAPACK         ScaLAPACK
>                      (PLA_Gesv)        (PSGESV)
>             2000          66             122
>             5000         174             257 
>             7500         228             315
>            10000         268             344
> 
> Taken at face value, these numbers seem to indicate that ScaLAPACK is strikingly
> faster . . .
> 
> Cheers,
> Clint
> 


From dongarra@CS.UTK.EDU Fri Mar 13 16:03:09 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA10979; Fri, 13 Mar 1998 16:03:09 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA00522; Fri, 13 Mar 1998 16:06:26 -0500 (EST)
Received: from bigbird.cs.utexas.edu (rvdg@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id PAA18524;
	Fri, 13 Mar 1998 15:05:23 -0600 (CST)
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id PAA37802; Fri, 13 Mar 1998 15:05:21 -0600
Date: Fri, 13 Mar 1998 15:05:21 -0600
Message-Id: <199803132105.PAA37802@bigbird.cs.utexas.edu>
From: Robert van de Geijn <rvdg@cs.utexas.edu>
To: blast-parallel@CS.UTK.EDU
CC: blast-comm@CS.UTK.EDU, plapackers@cs.utexas.edu
In-reply-to: <199803042007.OAA10616@bigbird.cs.utexas.edu> (message from
	Robert van de Geijn on Wed, 4 Mar 1998 14:07:08 -0600)
Subject: Re: Distributed BLAS standardization

Folks,

just to show that high level abstraction can be achieved from FORTRAN
as well, we have just completed an initial stab at a PLAPACK FORTRAN
interface.  As for the C PLAPACK interface itself, the FORTRAN
interface has an MPI-like feel to it, which is also what made the
interface quite simple to implement.  Comments are of course welcome.

For details, see http://www.cs.utexas.edu/users/plapack/FORTRAN

Best Regards
Robert

======================================================================
Robert A. van de Geijn              Taylor Hall 4.115C
Associate Professor                 (512) 471-9720 (office)
Department of Computer Sciences     (512) 471-8885 (fax)
The University of Texas             rvdg@cs.utexas.edu
Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg

From dongarra@CS.UTK.EDU Tue Apr 14 04:05:13 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id EAA12187; Tue, 14 Apr 1998 04:05:12 -0400
Received: from sky.fit.qut.edu.au (rajkumar@sky.fit.qut.edu.au [131.181.2.4]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id EAA07245; Tue, 14 Apr 1998 04:15:07 -0400 (EDT)
Received: (from rajkumar@localhost)
	by sky.fit.qut.edu.au (8.8.8/8.8.8/tony) id SAA10846;
	Tue, 14 Apr 1998 18:14:58 +1000 (EST)
Date: Tue, 14 Apr 1998 18:14:58 +1000 (EST)
From: Rajkumar Bunya <rajkumar@fit.qut.edu.au>
Message-Id: <199804140814.SAA10846@sky.fit.qut.edu.au>
To: blast-comm@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
Subject:  CFP for PDCP Journal special issue

                              Special Issue on

                   High Performance Computing on Clusters

          Parallel and Distributed Computing Practices (PDCP) Journal

          February 1999 (Vol 2, No 2), Nova Science Publishers, USA

                              Call for Papers
----------------------------------------------------------------------------

In the recent years, high speed network and improved microprocessor
performance are making network of workstations an appealing vehicle for
parallel computing. Cluster/network of computers (workstations/PCs) built
using commodity hardware or software is playing a major role in redefining
the concept of Supercomputing. As a whole, Clusters are becoming
compromising solution to MPPs and Supercomputers. The focus of this special
issue will be on both hardware and software aspects of computing on
clusters. Topics of interest include, but are not limited to:

   * Cluster Hardware (Cluster of Workstations or PCs)
   * Active Messages and Light Weight Protocols
   * Cluster Operating System
   * Single System Image
   * Network Capabilities for Fast Communication
   * Message Passing Systems such as MPI and PVM for Clusters
   * Characterization of Communication and Synchronization Traffic
   * Operating Environments
   * Data Distribution and Load Balancing
   * Programming Paradigms/Environment for Clusters
   * HPCC Models for Graphics and Multimedia
   * Problem Solving Environment for Clusters
   * Tools for Operating and Managing Clusters
   * Parallel and Distributed Computing/HPC in Java
   * Algorithms for Solving Problems on Clusters
   * Building Applications on Clusters
   * Large Scale System Administration
   * Issues in Building Scalable Services
   * Fault Tolerance Issues for Clusters

Submission should include authors names, affiliations, addresses, fax and
phone numbers, email addresses, on the cover page. Please submit full paper
(not exceeding 10 single spaced pages in length) to one of the guest editors
electronically. Email postscript file of the paper (preferably viewable by
ghostview); also send a separate email with authors' names, addresses, title
and abstract of the paper. Hard copies should be sent only if electronic
submission is not possible.

Please submit full paper for consideration to this special issue to one of
the guest editors by September 15, 1998.

Guest Editors:

 RAJKUMAR                             Clemens Szyperski
 School of Computing Science          School of Computing Science
 Faculty of Information Technology    Faculty of Information Technology
 Queensland University of Technology  Queensland University of Technology
 825a, Level 8, ITE Building          735, Level 7, ITE Building
 Gardens Point Campus                 Gardens Point Campus
 Brisbane,, Australia, QLD 4001       Brisbane, Australia, QLD 4001
 Office phone: +61 7 3864 1290        Phone: +61 7 3864 2132
 Office fax: +61 7 3864 1801          Fax: +61 7 3864 1801
 Email: rajkumar@fit.qut.edu.au       Email: szypersk@fit.qut.edu.au

Important Dates:

 Draft Papers due on:                  15th September, 1998
 Notification of acceptance:           15th November, 1998
 Final paper in LaTeX format due on:   15th December, 1998

Important URLs:

PDCP Journal: http://orca.st.usm.edu/pdcp
CFP: http://www.fit.qut.edu.au/~rajkumar/pdcp.html
CFP: http://www.fit.qut.edu.au/~szypersk/pdcp.html
Instructons for
Contributors: http://orca.st.usm.edu/pdcp/InstructionsForContributors.html
Nova Science Publishers: http://www.nexusworld.com/nova
----------------------------------------------------------------------------

From dongarra@CS.UTK.EDU Thu Apr 16 15:43:53 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id PAA02022; Thu, 16 Apr 1998 15:43:53 -0400
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id PAA24407; Thu, 16 Apr 1998 15:43:35 -0400 (EDT)
Received: from bigbird.cs.utexas.edu (rvdg@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id OAA29473;
	Thu, 16 Apr 1998 14:42:32 -0500 (CDT)
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id OAA18392; Thu, 16 Apr 1998 14:42:31 -0500
Date: Thu, 16 Apr 1998 14:42:31 -0500
Message-Id: <199804161942.OAA18392@bigbird.cs.utexas.edu>
From: Robert van de Geijn <rvdg@cs.utexas.edu>
To: blast-comm@CS.UTK.EDU
CC: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu
Subject: Distributed BLAS standardization


Folks,

We recently reported performance numbers for PLAPACK vs. ScaLAPACK on
our Cray T3E-600.  In compiling numbers for ScaLAPACK, we measured
performance of the ScaLAPACK library that is part of the Cray
scientific library.  We were not aware that the Cray scientific
library is compiled with "streams" turned off.  The default for our
system is to have streams turned on for both compilation and
execution, and thus PLAPACK was compiled and executed with streams
turned on.

Corrected performance numbers (for the LU factorization based
solvers) are given below.  

	    Cray T3E-600 (300 MHz)  16 nodes

          PLAPACK    ScaLAPACK      ScaLAPACK (Empirical)
size    streams on    Guide     streams off     streams on
--------------------------------------------------------------
 2000       66         101          91              110
 5000      174         168         169              215
 7500      228         201         202              259
10000      268         209         225              285

Version information:

PLAPACK                Release 1.1
ScaLAPACK	       as part of Cray Scientific Library
Standard C compiler    Cray Standard C Version
Cray Assembler         CAM Version 2.3.0.0
f90                    Cray CF90
CrayLibs               Version 3.0.0.0
CrayTools              Version 3.0.0.0
Compiler Options       -O3

While the performance numbers we quoted for the ScaLAPACK version
included in the Cray scientific library were not measured under
optimal circumstances, the conclusion that high performance can be
attained by raising the level of abstraction is nonetheless correct.
We had merely stopped optimizing PLAPACK at the point where we felt
there was a comfortable gap between PLAPACK performance and ScaLAPACK
performance.

After measuring ScaLAPACK with streams turned on, I implemented a few
minor optimizations to PLAPACK to demonstrate this point.  So far, we
have only done this for the Cholesky factorization.  The following
table reports a number of different versions for each of ScaLAPACK and
PLAPACK

           Cray T3E-600 (300 MHz) 16 processors

                PLAPACK                         ScaLAPACK
         Previously   Optimized     Cray Sci Library     netlib version
          Reported                 streams off   on       streams on
    n                                   
 1000                   49              83      98           85             
 2000       104        115             137     165          149
 3000                  168             164     199          191
 4000                  200             184     226          222
 5000       219        232             198     243          240
 7500       268        283             220     269          273
10000       302        315             234     287          292
12500                  334             245     299          306
14000                  348


A comment on what was measured:
Performance for PLAPACK and for the Cray Sci Library were performed
by ourselves on the Cray T3E-600 at UT-Austin.  The compiler versions
etc. are given above.  The numbers in the last column were sent to
us by Jack Dongarra, and were collected on the NERSC Cray T3E-600.
Version info for that machine:

     UNICOS/mk 2.0.2.18
     LIBSCI 3.0.1.4
     C compiler = cc
     C flags    = -O3
     F77 compiler = f90
     F77 flags = -dp -O3 -X m
     Cray MPI (mpt 1.2.0.1)
   The ScaLAPACK code was what is available on netlib:
   ScaLAPACK, version 1.5 + update1.6 + t3epatch 
   The Default Programming Environment on the Cray was:
     craylibs     3.0.1.4         craytools      3.0.1.1
     cf90         3.0.1.4         scc            6.0.1.3
     CC           3.0.1.3         CCmathlib      3.0.1.0
     CCtoollib    3.0.1.0         cam            2.3.0.1
     mpt          1.2.0.1

A few comments about performance: 
Notice that the asymptotic performance of PLAPACK is better than the
current version of ScaLAPACK.  We be (speculatively) attributed to 
two things:

1) we use an algorithmic block size that is larger than our distribution
blocksize, which appears to improve performance.

2) The local symmetric rank-k update performed as part of the Cholesky
is inherently tricky: Locally on one node, the matrix is not a clean
rectangle nor a clean triangle, and thus the matrix is generally
updated panel at a time (where the panel width equals the distribution
block size).  Our implementation instead uses a recursive approach,
which recreates a clean rectangle for the bulk of the computation,
thereby improving performance of the local BLAS calls.

Notice that for smaller matrices, PLAPACK clearly still carries a large
overhead.  With some effort this can still be improved.

Limitations of the reported experiment: The data is for one machine,
one mesh size, and one algorithm.

Conclusion (as before): There is still much research to be done in
this area.  It thus continues to be our view that standardization of
the distributed BLAS is premature, regardless of the interface being
proposed.

Regards
Robert

From dongarra@CS.UTK.EDU Thu Apr 16 16:35:10 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA02537; Thu, 16 Apr 1998 16:35:08 -0400
Received: from Aurora.CS.MsState.Edu (aurora.cs.msstate.edu [130.18.209.4]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA28634; Thu, 16 Apr 1998 16:25:29 -0400 (EDT)
Received: from localhost (tony@localhost);
           by Aurora.CS.MsState.Edu using SMTP (8.8.8/7.0m-FWP-MsState);
           id PAA20697; Thu, 16 Apr 1998 15:34:49 -0500 (CDT)
Date: Thu, 16 Apr 1998 15:34:48 -0500 (CDT)
From: Tony Skjellum <tony@Aurora.CS.MsState.Edu>
To: Robert van de Geijn <rvdg@cs.utexas.edu>
cc: blast-comm@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
Subject: Re: Distributed BLAS standardization
In-Reply-To: <199804161942.OAA18392@bigbird.cs.utexas.edu>
Message-ID: <Pine.GSO.3.95.980416152645.20330M-100000@aurora.cs.msstate.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

Folks,

Aren't we just comparing how clever Robert is vs. how clever Cray is here,
on a given day, or how many minion hours have been applied to a specific
solver in specific situations in either academia or industry?   

I see no way to draw scientific inteferences (new word) other than for
dense linear algebra on 1 CPU, modulo overheads, the right abstracton
levels work pretty well (subject to all the neat issues we have learned
from each other over the years about involving caches, prefetching, pages,
TLBs etc), and there are important issues (like poly-algorithms)  that
come into play, particularly in parallel. I think most people involved in
BLAST share these values, so I am not sure that the letter argues for
anything in terms of a persuasive argument, other than a dictum that we
not standardize :-) 

It is very well likely that standardizing the API would increase the
users of solvers, and if done right, would enhance, rather than detract
from the competition, because it would allow (if general enough) all the
interesting options  to function efficiently, under one tent: for
instance, with early binding of the problem, to allow poly-algorithmic
selection in the parallel case, or to avoid repeated error checking
for the case of small, multiple instance problems.

Indeed, standardization democratizes the situation, by giving more play to
those would have not been willing to use existing interfaces, because they
prohibit efficient programmatic approaches, including but not limited to
those above.   Robert and others benefit if they can, within the canon of
an interface, show off their new ideas without breaking user code.

I submit that the BLAST Activity therefore can accelerate and otherwise
benefit the on-going effort to understand how to reduce price of
portability, and increase the market for reusable solvers like these.

Hope you have a good meeting in April, I'll see you at the next one
in October!

Tony

On Thu, 16 Apr 1998, Robert van de Geijn wrote:

> Date: Thu, 16 Apr 1998 14:42:31 -0500
> From: Robert van de Geijn <rvdg@cs.utexas.edu>
> To: blast-comm@CS.UTK.EDU
> Cc: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu
> Subject: Distributed BLAS standardization
> 
> 
> Folks,
> 
> We recently reported performance numbers for PLAPACK vs. ScaLAPACK on
> our Cray T3E-600.  In compiling numbers for ScaLAPACK, we measured
> performance of the ScaLAPACK library that is part of the Cray
> scientific library.  We were not aware that the Cray scientific
> library is compiled with "streams" turned off.  The default for our
> system is to have streams turned on for both compilation and
> execution, and thus PLAPACK was compiled and executed with streams
> turned on.
> 
> Corrected performance numbers (for the LU factorization based
> solvers) are given below.  
> 
> 	    Cray T3E-600 (300 MHz)  16 nodes
> 
>           PLAPACK    ScaLAPACK      ScaLAPACK (Empirical)
> size    streams on    Guide     streams off     streams on
> --------------------------------------------------------------
>  2000       66         101          91              110
>  5000      174         168         169              215
>  7500      228         201         202              259
> 10000      268         209         225              285
> 
> Version information:
> 
> PLAPACK                Release 1.1
> ScaLAPACK	       as part of Cray Scientific Library
> Standard C compiler    Cray Standard C Version
> Cray Assembler         CAM Version 2.3.0.0
> f90                    Cray CF90
> CrayLibs               Version 3.0.0.0
> CrayTools              Version 3.0.0.0
> Compiler Options       -O3
> 
> While the performance numbers we quoted for the ScaLAPACK version
> included in the Cray scientific library were not measured under
> optimal circumstances, the conclusion that high performance can be
> attained by raising the level of abstraction is nonetheless correct.
> We had merely stopped optimizing PLAPACK at the point where we felt
> there was a comfortable gap between PLAPACK performance and ScaLAPACK
> performance.
> 
> After measuring ScaLAPACK with streams turned on, I implemented a few
> minor optimizations to PLAPACK to demonstrate this point.  So far, we
> have only done this for the Cholesky factorization.  The following
> table reports a number of different versions for each of ScaLAPACK and
> PLAPACK
> 
>            Cray T3E-600 (300 MHz) 16 processors
> 
>                 PLAPACK                         ScaLAPACK
>          Previously   Optimized     Cray Sci Library     netlib version
>           Reported                 streams off   on       streams on
>     n                                   
>  1000                   49              83      98           85             
>  2000       104        115             137     165          149
>  3000                  168             164     199          191
>  4000                  200             184     226          222
>  5000       219        232             198     243          240
>  7500       268        283             220     269          273
> 10000       302        315             234     287          292
> 12500                  334             245     299          306
> 14000                  348
> 
> 
> A comment on what was measured:
> Performance for PLAPACK and for the Cray Sci Library were performed
> by ourselves on the Cray T3E-600 at UT-Austin.  The compiler versions
> etc. are given above.  The numbers in the last column were sent to
> us by Jack Dongarra, and were collected on the NERSC Cray T3E-600.
> Version info for that machine:
> 
>      UNICOS/mk 2.0.2.18
>      LIBSCI 3.0.1.4
>      C compiler = cc
>      C flags    = -O3
>      F77 compiler = f90
>      F77 flags = -dp -O3 -X m
>      Cray MPI (mpt 1.2.0.1)
>    The ScaLAPACK code was what is available on netlib:
>    ScaLAPACK, version 1.5 + update1.6 + t3epatch 
>    The Default Programming Environment on the Cray was:
>      craylibs     3.0.1.4         craytools      3.0.1.1
>      cf90         3.0.1.4         scc            6.0.1.3
>      CC           3.0.1.3         CCmathlib      3.0.1.0
>      CCtoollib    3.0.1.0         cam            2.3.0.1
>      mpt          1.2.0.1
> 
> A few comments about performance: 
> Notice that the asymptotic performance of PLAPACK is better than the
> current version of ScaLAPACK.  We be (speculatively) attributed to 
> two things:
> 
> 1) we use an algorithmic block size that is larger than our distribution
> blocksize, which appears to improve performance.
> 
> 2) The local symmetric rank-k update performed as part of the Cholesky
> is inherently tricky: Locally on one node, the matrix is not a clean
> rectangle nor a clean triangle, and thus the matrix is generally
> updated panel at a time (where the panel width equals the distribution
> block size).  Our implementation instead uses a recursive approach,
> which recreates a clean rectangle for the bulk of the computation,
> thereby improving performance of the local BLAS calls.
> 
> Notice that for smaller matrices, PLAPACK clearly still carries a large
> overhead.  With some effort this can still be improved.
> 
> Limitations of the reported experiment: The data is for one machine,
> one mesh size, and one algorithm.
> 
> Conclusion (as before): There is still much research to be done in
> this area.  It thus continues to be our view that standardization of
> the distributed BLAS is premature, regardless of the interface being
> proposed.
> 
> Regards
> Robert
> 

A. Skjellum, PhD, Assoc. Prof. of Computer Science; Mississippi State University
http://www.cs.msstate.edu/~tony; tony@cs.msstate.edu; 601-325-8435 (FAX -8997)
"Mississippi (n): small US state where opportunities abound." [Try MPI/RT!]



From dongarra@CS.UTK.EDU Thu Apr 16 19:02:07 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id TAA03846; Thu, 16 Apr 1998 19:02:07 -0400
Received: from timbuk.cray.com (timbuk-fddi.cray.com [128.162.8.102]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id TAA06842; Thu, 16 Apr 1998 19:02:08 -0400 (EDT)
Received: from ironwood.cray.com (root@ironwood-fddi.cray.com [128.162.21.36]) by timbuk.cray.com (8.8.8/CRI-gate-news-1.3) with ESMTP id SAA05188; Thu, 16 Apr 1998 18:02:03 -0500 (CDT)
Received: from horta.cray.com (horta [128.162.173.163]) by ironwood.cray.com (8.8.4/CRI-ironwood-news-1.0) with ESMTP id SAA23487; Thu, 16 Apr 1998 18:02:01 -0500 (CDT)
From: Ed Anderson <eca@cray.com>
Received: by horta.cray.com (8.8.0/btd-b3)
          id XAA01112; Thu, 16 Apr 1998 23:02:00 GMT
Message-Id: <199804162302.XAA01112@horta.cray.com>
Subject: Re: Distributed BLAS standardization
To: rvdg@cs.utexas.edu (Robert van de Geijn)
Date: Thu, 16 Apr 1998 18:02:00 -0500 (CDT)
Cc: blast-comm@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
In-Reply-To: <199804161942.OAA18392@bigbird.cs.utexas.edu> from "Robert van de Geijn" at Apr 16, 98 02:42:31 pm
X-Mailer: ELM [version 2.4 PL24-CRI-d]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

Robert van de Geijn wrote:
> 
> Folks,
> 
> We recently reported performance numbers for PLAPACK vs. ScaLAPACK on
> our Cray T3E-600.  In compiling numbers for ScaLAPACK, we measured
> performance of the ScaLAPACK library that is part of the Cray
> scientific library.  We were not aware that the Cray scientific
> library is compiled with "streams" turned off.  The default for our
> system is to have streams turned on for both compilation and
> execution, and thus PLAPACK was compiled and executed with streams
> turned on.
> 

I'd like to clarify Robert's comment that the Cray scientific library
is "compiled with streams turned off".  Because of a hardware issue
that affected CRAY T3E-600 (300 MHz) systems, the programming
environment made an effort to determine if an application were "stream
safe" by checking it for usage of Cray's proprietary "shmem" library.
If the application used the shmem library (or made some other use of
the E-registers), then the stream buffers were turned off by default;
however, some sites allowed users to enable the streams anyway by
setting the environment variable SCACHE_D_STREAMS to 1.

Robert is correct that the Cray Scientific Library, specifically the
BLACS, has been optimized using shmem.  On a CRAY T3E-600 system, the
loader will detect that a program calling ScaLAPACK is using shmem and
disable the streams.  The netlib version, using MPI BLACS, would have
the streams on by default because the MPI and PVM libraries have been
made "stream safe".  We believe that libsci is "stream safe" too, so it
was OK for him to re-enable the streams.

The stream coherence problem was corrected in the next generation, so
all executables on CRAY T3E-900 and CRAY T3E-1200 systems have the
streams on by default.

   --Ed

-------------------------------------------------------------------
Ed Anderson                          Cray Research/Silicon Graphics
Benchmarking Group                   655F Lone Oak Drive
email:  eca@cray.com                 Eagan, Minnesota  55121
Phone:  612-683-5238                 Fax:  612-683-5599

From dongarra@CS.UTK.EDU Tue Jan 12 08:48:34 1999
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU (CS.UTK.EDU [128.169.94.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id IAA07399; Tue, 12 Jan 1999 08:48:34 -0500
Received: from gate.ispras.ru (gate.ispras.ru [194.67.37.200]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id IAA27923; Tue, 12 Jan 1999 08:53:34 -0500 (EST)
Received: from ispserv.ispras.ru (ispserv [194.67.37.72])
	by gate.ispras.ru (8.9.1a/8.9.1) with ESMTP id QAA17950
	for <blast-parallel@cs.utk.edu>; Tue, 12 Jan 1999 16:52:42 +0300 (GMT)
Received: from beta (beta [194.67.37.156])
	by ispserv.ispras.ru (8.8.8+Sun/8.8.8) with SMTP id PAA14555
	for <blast-parallel@cs.utk.edu>; Tue, 12 Jan 1999 15:59:47 +0200 (EET)
Sender: ka@ispras.ru
Message-ID: <369B618E.6DE8@ispras.ru>
Date: Tue, 12 Jan 1999 16:51:58 +0200
From: Alexey Kalinov <ka@ispras.ru>
X-Mailer: Mozilla 3.0 (X11; I; SunOS 5.5.1 sun4m)
MIME-Version: 1.0
To: blast-parallel@CS.UTK.EDU
Subject: (no subject)
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Transfer-Encoding: 7bit

subscribe blast-comm

From dongarra@CS.UTK.EDU Fri Mar  3 05:41:16 2000
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA27435; Fri, 3 Mar 2000 05:41:15 -0500
Received: from CS.UTK.EDU (128.169.94.1 -> CS.UTK.EDU)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 3 Mar 2000 05:41:15 -0500
Received: from gull.prod.itd.earthlink.net (marvin@localhost) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id FAA09775; Fri, 3 Mar 2000 05:54:19 -0500 (EST)
From: <sprbk2000@hotmail.com>
Received: from gull.prod.itd.earthlink.net (207.217.121.85 -> gull.prod.itd.earthlink.net)
 by CS.UTK.EDU (smtpshim v1.0); Fri, 3 Mar 2000 05:54:19 -0500
Received: from oemcomputer (sdn-ar-001flflauP216.dialsprint.net [168.191.74.130])
	by gull.prod.itd.earthlink.net (8.9.3/8.9.3) with SMTP id CAA15339
	for blast-parallel@cs.utk.edu; Fri, 3 Mar 2000 02:54:16 -0800 (PST)
Date: Fri, 3 Mar 2000 02:54:16 -0800 (PST)
Message-Id: <200003031054.CAA15339@gull.prod.itd.earthlink.net>
To: <blast-parallel@CS.UTK.EDU>
Subject: >> Guaranteed -- Best SPRING BREAK Deals on the Planet!!!  ==>  
MIME-Version: 1.0
Content-Type: text/plain; charset=unknown-8bit
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by CS.UTK.EDU id FAA09777

DQoNCiAgDQogICAgICBfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f
X19fX19fDQogICAgICCrpLulq6S7p6uku6WrpLunq6S7pauku6erpLulq6S7p6uku6WrpLun
q6S7paukDQogICAgICCvr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+v
r6+vr6+vDQogIFN1Ymo6ICBHdWFyYW50ZWVkIC0tIEJFU1QgU1BSSU5HIEJSRUFLIERlYWxz
IE9uIFRoZSBJbnRlcm5ldCEhIQ0KICAgICAgX19fX19fX19fX19fX19fX19fX19fX19fX19f
X19fX19fX19fX19fX19fX19fXw0KICAgICAgq6S7pauku6erpLulq6S7p6uku6WrpLunq6S7
pauku6erpLulq6S7p6uku6WrpA0KICAgICAgr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+v
r6+vr6+vr6+vr6+vr6+vr6+vrw0KDQoJPT4gRGlzY291bnQgSG90ZWwgUm9vbXMgLSBTQVZF
IFVwIHRvIDcwJSEhIQ0KCQ0KCT0+PiBPbmxpbmUgUmVzZXJ2YXRpb25zIGZvciBhbGwgdGhl
IEhPVCBTUFJJTkcgQlJFQUsgRGVzdGluYXRpb25zDQoNCgk9Pj4+IFJvb21zIGF2YWlsYWJs
ZSBmb3IgU09MRCBPVVQgREFURVMhIQ0KDQoJPT4+Pj4gT25saW5lIHJlc2VydmF0aW9ucyBm
b3IgYWxsIE1BSk9SIFNLSS9TTk9XQk9BUkQgRGVzdGluYXRpb25zDQoNCg0KDQpDbGljayB0
aGUgTGluayBmb3IgdGhlIEJFU1QgU1BSSU5HIEJSRUFLIERFQUxTIE9OIFRIRSBJTlRFUk5F
VDoNCg0KCWh0dHA6Ly93d3cuNFNwcmluZy1CcmVhay5jb20NCg0KSWYgTGluayBkb2VzIG5v
dCB3b3JrLCBqdXN0IGN1dCBhbmQgcGFzdGUgaW50byB5b3VyIGJyb3dzZXIhIQ0KDQoNCisr
KysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
Kw0KKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
KysrKysrDQpMb29raW5nIGZvciBzb21ldGhpbmcgYSBsaXR0bGUgQ09PTEVSIHRoaXMgU3By
aW5nIEJyZWFrPz8NCg0KTWF5YmUgc29tZSBBV0VTT01FIFNLSUlORywgU05PV0JPQVJESU5H
ICYgUEFSVFlJTkc/PyEhDQorKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
KysrKysrKysrKysrKysrKysrKysrDQorKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
KysrKysrKysrKysrKysrKysrKysrKysrKysrDQoNCg0KQ2xpY2sgdGhlIExpbmsgYmVsb3cg
Zm9yIHRoZSBCRVNUIERFQUxTIEJZIFRIRSBTTE9QRVM6DQoNCglodHRwOi8vd3d3LjRTa2lS
ZXNvcnRzLmNvbQ0KDQpJZiBMaW5rIGRvZXMgbm90IHdvcmssIGp1c3QgY3V0ICYgcGFzdGUg
aW50byB5b3VyIGJyb3dzZXIhIQ0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoN
Cg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KdG8gcmVtb3ZlIHNlbmQgdG8geWFo
X21vbjFAeWFob28uY29tDQoNCioqKioqKioqKioqKioqKioqKioNCjU2MzIxDQoNCg==

From postmaster@cs.utk.edu Fri Oct  6 09:06:40 2000
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id JAA22584; Fri, 6 Oct 2000 09:06:39 -0400
Received: from cs.utk.edu (128.169.94.1 -> CS.UTK.EDU)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 6 Oct 2000 09:06:40 -0400
Received: from m1.cs.man.ac.uk (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id JAA22220; Fri, 6 Oct 2000 09:15:37 -0400 (EDT)
Received: from m1.cs.man.ac.uk (130.88.192.2 -> m1.cs.man.ac.uk)
 by cs.utk.edu (smtpshim v1.0); Fri, 6 Oct 2000 09:15:38 -0400
Received: from random by m1.cs.man.ac.uk (8.8.8/AL/MJK-2.0)
	id OAA04330; Fri, 6 Oct 2000 14:15:34 +0100 (BST)
Received: from bane by random with local (Exim 2.05 #2)
	id 13hXLU-0004qI-00; Fri, 6 Oct 2000 14:15:28 +0100
Subject: wanted: (parallel) sparse Mv BLAS for O2K
To: blast-comm@cs.utk.edu, blast-parallel@cs.utk.edu, blast-sparse@cs.utk.edu
Date: Fri, 6 Oct 2000 14:15:28 +0100 (BST)
From: Michael <michael.bane@man.ac.uk>
Reply-to: m.bane@cs.man.ac.uk
X-Mailer: ELM [version 2.4ME+ PL66 (25)]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Message-Id: <E13hXLU-0004qI-00@random>
Sender: Michael Bane <bane@cs.man.ac.uk>

Does a (parallel) sparse Mv "BLAS" yet exist for the SGI Origin2000?

ta in adv
- --- ----- ------- ----- --- -
Michael Bane
Centre for Novel Computing
University of Manchester
Tel: 0161 275 6134
http://www.cs.man.ac.uk/~bane

UK OpenMP website:
http://www.mcc.ac.uk/hpc/OpenMP
- --- ----- ------- ----- --- -

From postmaster@cs.utk.edu Sun Mar  4 01:34:59 2001
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA19641; Sun, 4 Mar 2001 01:34:59 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 4 Mar 2001 01:34:59 -0500
Received: from pop509-ec.mail.com (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id BAA13395; Sun, 4 Mar 2001 01:34:58 -0500 (EST)
Received: from pop509-ec.mail.com (165.251.32.56 -> pop509-ec.mail.com)
 by cs.utk.edu (smtpshim v1.0); Sun, 4 Mar 2001 01:34:59 -0500
Received: from data (unknown [62.98.152.178])
	by pop509-ec.mail.com (Postfix) with SMTP
	id 2800A154C62; Sun,  4 Mar 2001 01:29:23 -0500 (EST)
From: "Nancy Howard" <Nancy@email.com>
Subject: RE: about britney spears
Message-Id: <20010304062923.2800A154C62@pop509-ec.mail.com>
Date: Sun,  4 Mar 2001 01:29:23 -0500 (EST)
Apparently-To: <blast-funct-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-lb-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-lite-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-parallel-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-sparse-archive@netlib2.cs.utk.edu>

Hello, I thinl personally that britney spears did some hard movie in her past 
I know this for sure.. just check by yourself this and let me know,.... You will see
I don't say bullshits  check out at http://www.sex4many.com


From postmaster@cs.utk.edu Wed Mar 14 23:23:41 2001
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (localhost.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id XAA18458; Wed, 14 Mar 2001 23:23:40 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 14 Mar 2001 23:23:40 -0500
Received: from project (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id XAA08211; Wed, 14 Mar 2001 23:23:41 -0500 (EST)
From: <biotechstox89@hotmail.com>
Received: from project (211.104.88.203)
 by cs.utk.edu (smtpshim v1.0); Wed, 14 Mar 2001 23:23:41 -0500
Received: by project id GAA507592; Thu, 15 Mar 2001 06:17:29 +0900 (KST)
To: blast-parallel@cs.utk.edu
Subject: FREE Biotech Stock Info!    156
Date: Wed, 14 Mar 2001 16:17:10
Message-Id: <345.789452.450103@hotmail.com>
Reply-To: biotechinfo2007@yahoo.com
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"


<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Do you want to capitalize on the Biotech Revolution</title>
</head>

<body>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto" align="center"><img border="0" src="http://www.geocities.com/mailtestbox2000/Kiloh_logo.gif" width="204" height="170"></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-family:Arial">Do
you want to capitalize on the Biotech Revolution? Would you like to add
groundbreaking biotech, pharmaceutical and medical device companies to your
portfolio mix? Does hearing about exciting IPO and private placement offerings
from life sciences companies interest you?</span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-family:Arial">The
exclusive <b>Ruddy-Carlisle Biotech Infoline</b> service keeps you abreast of
investment opportunities in the life sciences space. Just sign up for it once
and get important information instantly delivered to study at your leisure. Our
service is <b><u>100% FREE</u></b>! <b><span style="color:blue"><a href="mailto:biotechsubscribe@yahoo.com">Sign
up!</a></span></b></span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;color:#003366">Ruddy-Carlisle
Biotech Infoline:</span></i></b></p>
<ul type="disc">
  <li class="MsoNormal" style="color:#003366;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial">Instantly
    delivers key life sciences investment information directly to you! </span></i></b><o:p>
    </o:p>
  </li>
  <li class="MsoNormal" style="color:#003366;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial">Learn
    about biotech, pharmaceutical &amp; medical device investment opportunities
    before others! </span></i></b><o:p>
    </o:p>
  </li>
  <li class="MsoNormal" style="color:#003366;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial">Includes
    IPO &amp; private placement information! </span></i></b><o:p>
    </o:p>
  </li>
  <li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:
     11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;color:#003366">100%
    FREE!</span></i></b></li>
</ul>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-family:Arial">For
the entire last decade there were only three profitable biotech companies. At
the end of this year, ten are projected. At the end of 2003, <u>over forty</u>
are projected! The genomic promise is about to be delivered and investors know
it. The <b>Ruddy-Carlisle Biotech Infoline </b>provides you with critical,
decision-making, information that aids the chance of investment success in this
lucrative space. <b><span style="color:blue"><a href="mailto:biotechsubscribe@yahoo.com">Sign
up!</a></span></b></span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><b><span style="font-family:Arial">Please
Note-</span></b><span style="font-family:Arial"> Your information will only be
shared with companies that are in the life sciences space <u>and</u> pass our
rigorous inspection. Only the best opportunities will come to you.
Ruddy-Carlisle respects your privacy. <b><span style="color:blue"><a href="mailto:biotechsubscribe@yahoo.com">Sign
up!</a></span></b></span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;</p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;</p>
<b><span style="font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA">
</p>
</p>List Removal Instructions</span></b><span style="font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-ansi-language:EN-US;mso-fareast-language:EN-US;
mso-bidi-language:AR-SA">- Simply click here: <b><span style="color:blue"><a href="mailto:remobiotech@yahoo.com">remove</a></span></b>
to be instantly and permanently removed from our list. Send the blank email to
the address specified. Please do not try to reply to this message.</span>

</body>

</html>

From postmaster@cs.utk.edu Thu Apr 12 01:16:11 2001
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (localhost.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA26309; Thu, 12 Apr 2001 01:16:11 -0400
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Thu, 12 Apr 2001 01:16:11 -0400
Received: from yahoo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id BAA19021; Thu, 12 Apr 2001 01:16:08 -0400 (EDT)
Received: from yahoo.com (216.112.165.60 -> ts006d48.scr-pa.concentric.net)
 by cs.utk.edu (smtpshim v1.0); Thu, 12 Apr 2001 01:16:09 -0400
From: <christmaseveryday2001@yahoo.com>
To: blast-parallel@cs.utk.edu
Subject: 68. (ADV) FREE GIFT LOCATOR!!!
Date: Thu, 12 Apr 2001 01:14:43
Message-Id: <399.814166.704377@yahoo.com>
Reply-To: christmaseveryday2001@yahoo.com
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"


<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>What</title>
</head>

<body>

<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">What?
<b>Christmas Shopping</b>!!!</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><i>The
two reasons to start thinking about Christmas gifts so soon are</i>:</font></p>
<ul>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><b><font size="3" face="Tahoma">Great
    Deals</font></b></li>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><b><font size="3" face="Tahoma">Original
    Gifts</font></b></li>
</ul>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">That's
right ladies (ok...and gentlemen), <b>the best deals</b> come to the early
shopper. And if you are going to find <b>that unique gift</b> for a special
person, you can't start looking to soon. I know...I am not telling you anything
that you don't already know. I'm sure that many of you already have those after
Christmas deals packed away for next year.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><i>That's
exactly the point</i>...</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Wouldn't
It be great to get occasional email notifications about <b>huge Christmas
bargains</b>, or <b>unique handmade gifts </b>that you can't find in the mall.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><i>I
love Christmas</i>...</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Christmas
is a wonderful time, especially when you have found <b>that perfect gift</b> for
your loved ones. Sometimes it's difficult shopping for so many family members
and friends.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Throughout
the year I come across both <b>individual craftspeople</b> and companies that
are trying to reach customers. I have seen some wonderful products, and sadly
some <b>truly unique gifts</b> that have never made it to market. So this year I
am hoping to spread the word, make some friends and become a part of your
holiday celebration.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">What
you get...</font></p>
<ul>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b>Free
    </b>email notification</font></li>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b>Free</b>
    gift locating service</font></li>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b>Free</b>
    bi-monthly newsletter</font></li>
</ul>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Just
<b><a href="mailto:beaconsubscribe@yahoo.com">click here</a></b> and put &quot;<b>yes</b>&quot; <b>in the
subject line</b> to start your service now! You will receive a confirmation
email within 24 - 48 hrs with detailed information on how to use this service.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b><u>Please
Note</u></b>: </font><font face="Tahoma" size="2"><b>Only use these links to
subscribe or unsubscribe</b>. <b>DO NOT</b> use the Reply function of your email
program. This will help me more efficiently handle your request.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">To
unsubscribe <a href="mailto:beaconlistremo@yahoo.com">click here</a>. </font><font face="Tahoma" size="2"><b>You
do not need to put anything in the subject line to unsubscribe.</b></font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><b><font face="Tahoma" size="2">By
subscribing to this service you agree to receive a confirmation email with
detailed instruction on how to use this service, a bi-monthly newsletter, and
periodic email notifications about available products. <u>You will always have
the option to easily remove yourself from any future mailing</u>. You will never
be asked to pay anything for any of the above mentioned services.</font></b></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>

</body>

</html>

From memorytogo@memorytogo4.com Wed Oct 17 18:20:55 2001
Return-Path: <memorytogo@memorytogo4.com>
Received: from cs.utk.edu ([127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id SAA25302; Wed, 17 Oct 2001 18:20:55 -0400
From: <memorytogo@memorytogo4.com>
Received: from cs.utk.edu (160.36.56.56 -> cs.cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 17 Oct 2001 18:20:55 -0400
Received: from pltn13.pbi.net (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id SAA07862; Wed, 17 Oct 2001 18:20:56 -0400 (EDT)
Received: from pltn13.pbi.net (64.164.98.8 -> mta7.pltn13.pbi.net)
 by cs.utk.edu (smtpshim v1.0); Wed, 17 Oct 2001 18:20:56 -0400
Received: from sales@mail.voyager.com ([216.100.177.30])
 by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May  7 2001))
 with SMTP id <0GLD004M0FCGUF@mta7.pltn13.pbi.net>; Wed,
 17 Oct 2001 15:20:51 -0700 (PDT)
Date: Wed, 17 Oct 2001 15:20:48 -0700 (PDT)
Date-warning: Date header was inserted by mta7.pltn13.pbi.net
Subject: **SPECIAL**COMPUTER MEMORY
Reply-to: memorytogo@memorytogo4.com
Message-id: <0GLD004SFFEAUF@mta7.pltn13.pbi.net>
MIME-version: 1.0
Content-type: text/html; charset=us-ascii
Content-transfer-encoding: 7BIT


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0039)http://209.132.208.23/news/news1001.htm -->
<HTML><HEAD><TITLE>Memory to Go - Specials - October</TITLE>
<META http-equiv=Content-Type content=text/html;charset=iso-8859-1>
<STYLE>A {
	TEXT-DECORATION: none
}
</STYLE>

<META content="MSHTML 5.50.4134.600" name=GENERATOR></HEAD>
<BODY text=#000000 link=#000080 bgColor=#ffffff>
<TABLE cellSpacing=0 cellPadding=0 width=599 align=center border=0>
  <TBODY>
  <TR>
    <TD><IMG height=34 alt=TowerRecords.com 
      src="Memory to Go - Specials - October_files/header_logo.gif" width=160 
      border=0 NOSEND="1"></A><BR></TD>
    <TD><IMG height=34 alt="July New Releases" 
      src="Memory to Go - Specials - October_files/header_newreleases.gif" 
      width=220 border=0 NOSEND="1"></A><BR></TD>
    <TD><IMG height=34 
      src="Memory to Go - Specials - October_files/header_pixel.gif" width=146 
      NOSEND="1"><BR></TD>
    <TD><IMG height=34 alt="New Music" 
      src="Memory to Go - Specials - October_files/july_header.gif" width=89 
      border=0 NOSEND="1"><BR></TD></TR></TBODY></TABLE>
<TABLE borderColor=black cellSpacing=0 cellPadding=0 width=603 align=center 
border=1>
  <TBODY>
  <TR>
    <TD bgColor=#020299 colSpan=2><FONT face="verdana, arial" color=white 
      size=2>
      <BLOCKQUOTE><BR>Dear Customer, <BR><BR>Memory to Go carries memory for 
        all systems. We offer a <STRONG>huge</STRONG> selection of memory for 
        both PC and MAC computers, printers, Cams and other devices. Just check 
        out a few of the outstanding prices below on memory and upgrade 
        processors for the MAC. Can't find something you're looking for? Call us 
        <STRONG>TOLL FREE</STRONG> at (877) 308-9800 for a fast, free quote. 
      </BLOCKQUOTE></FONT></TD></TR>
  <TR>
    <TD vAlign=top bgColor=#cccccc><IMG height=110 alt="July Hot Deals" 
      src="Memory to Go - Specials - October_files/navbox_july.gif" width=169 
      border=0 NOSEND="1"></A> <FONT face="verdana, arial" color=#020299 
      size=3><BR><B>
      <DIV align=center>MEMORY</DIV></B></FONT><LEFT><FONT face="verdana, arial" 
      size=2><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=apple&amp;media=laptop&amp;prod=CAP169"><STRONG>
      <DIV align=center>PB TITANIUM<BR>iBOOK </DIV></STRONG>
      <DIV align=center>512MB-$150<BR>256MB-$60<BR>128MB-$29</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=apple&amp;media=desktop&amp;prod=CAP168">
      <DIV align=center><STRONG>NEW PM G4 
      </STRONG><BR>512MB-$115<BR>256MB-$58</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=search&amp;type=plain&amp;key=kingston">
      <DIV align=center><STRONG>KINGSTON 
      PC133</STRONG><BR>256MB-$80<BR>128MB-$40</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=dell&amp;media=desktop&amp;prod=CDEI3800">
      <DIV align=center><STRONG>DELL INSPIRON 3800,7500,4000, 5000,5000E,8000 
      </STRONG><BR>32MB-$50<BR>16MB-$26</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=compaq&amp;media=laptop&amp;prod=CCOMPAM300">
      <DIV align=center><STRONG>Compaq Armada M300,E500,M700<BR>E700 notebook 
      </STRONG><BR>128MB-$35<BR>256MB-$108</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=apple&amp;media=laptop&amp;prod=CAP158">
      <DIV align=center><STRONG>POWERBOOK G3<BR>WALL 
      ST.</STRONG><BR>128MB-$29<BR>256MB-$54</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=mac.pc.usb.products&amp;media=hube.host.adapters&amp;prod=USBM800.4Port">
      <DIV align=center><STRONG>4 PORT USB 
      HUB</STRONG><BR>$18<BR></DIV></A><BR><A < TD></A></FONT>
    <TD vAlign=top align=middle><IMG height=62 alt=Upgrades 
      src="Memory to Go - Specials - October_files/upgrades.gif" width=419 
      border=0 NOSEND="1"> <FONT face="verdana, arial" size=2><STRONG><A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=rambus">Rambus&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=pc133">PC133&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=pc100">PC100&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=flash.ram">Flash&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=simm">SIMM&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=dimm">Dimm</A></B></FONT> 

      <TABLE cellSpacing=5 cellPadding=5 width="100%">
        <TBODY>
        <TR>
          <TD colSpan=2><IMG alt=Cresendo 
            src="Memory to Go - Specials - October_files/top_titles.gif"><BR></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top width=317>
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt="Cresendo 7200" hspace=5 
            src="Memory to Go - Specials - October_files/cresone.jpg" width=80 
            align=left border=0 NOSEND="1"></A> <BR></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Cresendo/G3 
            400MHz PM6100 To 8100<BR><STRONG>$290</STRONG> </A></FONT></P></TD>
          <TD vAlign=top width="50%">
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt="Cresendo L2" hspace=5 
            src="Memory to Go - Specials - October_files/crestwo.jpg" width=80 
            align=left border=0 NOSEND="1"> </A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Cresendo/G3 
            350MHz PM7300 TO 9600<BR><STRONG>$174</STRONG> </A></FONT></P></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top><FONT face="verdana, arial" 
            size=1>Boost your computer's performance up to thirteen times as 
            fast as the original system! The Crescendo 7200 G3 incorporates a G3 
            PowerPC processor and ultra high-speed Level 2 backside cache to 
            achieve truly modern performance levels.</FONT><BR></TD>
          <TD vAlign=top><FONT face="verdana, arial" size=1>Gain G3 
            performance for your "upgrade-challenged" Power Macintosh. The 
            Crescendo utilizes a G4 PowerPC processor that can take advantage of 
            AltiVec-enhanced applications for even more impressive performance 
            gains.</FONT><BR></TD>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top width=317>
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt="Cresendo PBG3" hspace=5 
            src="Memory to Go - Specials - October_files/crestre.jpg" width=80 
            align=left border=0 NOSEND="1"> </A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Cresendo/PBG3 
            333MHz PB1400<BR><STRONG>$299</STRONG> </A></FONT></P></TD>
          <TD vAlign=top width="50%">
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt=Encore hspace=5 
            src="Memory to Go - Specials - October_files/cresfor.jpg" width=80 
            align=left border=0 NOSEND="1"> </A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Encore/ZIF 
            G3 500MHz PMG3<BR><STRONG>$349</STRONG></A></FONT></P></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top><FONT face="verdana, arial" 
            size=1>Boost your computer's performance up to thirteen times as 
            fast as the original system! The Crescendo 7200 G3 incorporates a G3 
            PowerPC processor and ultra high-speed Level 2 backside cache to 
            achieve truly modern performance levels.</FONT><BR></TD>
          <TD vAlign=top><FONT face="verdana, arial" size=1>Gain G3 
            performance for your "upgrade-challenged" Power Macintosh. The 
            Crescendo utilizes a G4 PowerPC processor that can take advantage of 
            AltiVec-enhanced applications for even more impressive performance 
            gains.</FONT><BR></TD>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top width=317>
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=flash.ram"><IMG 
            height=80 alt="Flash Cards" hspace=5 
            src="Memory to Go - Specials - October_files/flash.jpg" width=80 
            align=left border=0 NOSEND="1"></A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=flash.ram">Flash 
            Cards - <BR>as low as <STRONG>$50!</STRONG> </A></FONT></P></TD>
          <TD vAlign=top width="50%">
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=rambus"><IMG 
            height=80 alt=Rambus hspace=5 
            src="Memory to Go - Specials - October_files/rambus.jpg" width=80 
            align=left border=0 NOSEND="1"></A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=rambus">Rambus 
            Memory<BR>as low as <STRONG>$36!</STRONG> </A></FONT></P></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top><FONT face="verdana, arial" 
            size=1>Complies with CompactFlashTM specification 1.4. Compatible 
            with PC Card ATA standard. NAND type or AND type flash memory. 
            Minimum 1,000,000 erase cycles. Minimum 10,000 Insertions. Low power 
            consumption and automatic power saving.<BR>
            <HR>
            <STRONG>
            <DIV align=center>Memory to Go</STRONG><BR>(310) 385-7373<BR>Toll 
            Free: (877) 308-9800<BR>Fax: (310) 385-9111 <BR><BR></DIV></FONT>
          <TD vAlign=top><FONT face="verdana, arial" size=1>Cutting-edge 
            technology. Largest bandwith For 820, 840 &amp; 850 Chipset (Pentium 
            4) Lifetime Warranty. Enables data rates of 800 Mbits per second 
            (two bits transferred per each clock cycle, at the leading and the 
            trailing edge of the clock.) Aka: RIMM or RDRAM. </FONT><BR>
            <HR>
            <STRONG></STRONG></B><FONT face="verdana, arial" size=1>Memory to Go 
            respects your right to privacy. This email was sent to you because 
            you are a regular MTG customer. To unsubscribe to this service, <A 
            href="mailto:sales@memorytogo.com"><B>click here</B></A> and enter 
            Unsubscribe as the subject of your 
          email.<STRONG></STRONG></FONT></TD></TD></TD></TR></TBODY></TABLE></STRONG></TD></TR></TBODY></TABLE><BR><BR></FONT></BODY></HTML>

From postmaster@cs.utk.edu Mon Jan 14 16:25:53 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id QAA11210; Mon, 14 Jan 2002 16:25:52 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 14 Jan 2002 16:25:52 -0500
Received: from boy (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id QAA22817; Mon, 14 Jan 2002 16:25:51 -0500 (EST)
Message-Id: <200201142125.QAA22817@cs.utk.edu>
Received: from boy (211.202.71.98)
 by cs.utk.edu (smtpshim v1.0); Mon, 14 Jan 2002 16:25:52 -0500
From: =?ks_c_5601-1987?B?vsbAzLX7tfu1+w==?= <iwebmaster@iwww.net>
To: blast-parallel@cs.utk.edu
Subject: =?ks_c_5601-1987?B?W8irurhdILPXxrzB8MDMILi4tecgsMu79r+jwfggvsbAzLX7tfu1+8DUtM+02S4=?=
Date: Tue, 15 Jan 2002 06:24:21 +0900
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0067_01C0F24A.93A21C00"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000

This is a multi-part message in MIME format.

------=_NextPart_000_0067_01C0F24A.93A21C00
Content-Type: text/plain;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

sMu79r+jwfggvsbAzLX7tfu1+yAgICAgICAgICAgICAgICAgICAgICAgIMDOxc2z3b+htMIg
uLnAuiDBpLq4v80gsdcgwaS6uLimIMOjvsbB1rTCILDLu/a/o8H4wMwgwNa9wLTPtNkuDQog
IMfPwfa4uCCwy7v2v6PB+LXpwMwgs8q5q7OqILi5wLogwaS6uLimIMGmsPjH2CDB1rTCILDh
sPogv8DI97fBIMGkuri4piDDo7TCtaUguLnAuiCz67fCsPogvcOwo8C7DQogICDH47rxx8+0
wiCw4bD6uKYgw8q3ocfPsO0gwNa9wLTPtNkuDQoNCiAgICAgIMDMwaa0wiC+8sC7ILz2IL74
tMIguLnAuiC+58DHILDLu/aw4bD6uri02bTCIL3Ft9q8uiDA1rTCIMGkuri4piC/5LG4x8+0
wiC9w7TrsKEgtce++r3AtM+02S4NCiAgIMDOxc2z3b+hILvqwOfH2CDA1rTCILvnwMzGriDB
37+htMIgv+y4rrChILLAIMfKv+TH0SDBpLq4tenAuyC047DtIMDWtMIgu+fAzMausKEguLnA
zCDA1rTCtaUsDQogICDAzCC758DMxq4gtenAuyCxuLrQx8+46SDG98W7LLq4xbssx+O66iC7
58DMxq6287DtIMfVtM+02S4NCg0KICAgICAgvsbAzLX7tfu1+7TCIMDMt7Egu+fAzMauuKYg
w6O+xsHWtMIgxKvF17DtuK4gudcgxbC/9rXlILDLu/a/o8H4wNS0z7TZLg0KICAgsKIgxKvF
17DtuK4gurC3ziC9xbfavLogwNa0wiC+9ryxtcggu+fAzMauuLggs9fGvMHwwMcgvue9ycC4
t8617rfPsPy4rsfPtMIgsMu79r+jwfjAzLjnDQogILHNx8+ysryttbUgxKvF17DtuK4gtOO0
58DasKEgtce9xyC89iDA1r3AtM+02S4NCg0KICDEq8XXsO24riC047TnwMwgtce9w7jpIKLf
vsbAzL+jwKXAxyDB1r3EIDHB1rimILmru/PAuLfOILXluK645yBwb3AzIGUtbWFpbCCw6MGk
wLsgteW4s7TPtNkuDQogICAoIr+5IiBhYmNAaXd3dy5uZXQiKQ0KICAgtsfH0Syx1yDEq8XX
sO24rrimILD8uK7H0iC89iDA1rTCILHHx9Gw+iDH2LTnIMSrxdew7biuv6EgtOO058DaIL7G
wMy18LimILXut8/H1bTPtNkuDQogICAote63z73Fw7vAuyDHz73FyMQgtOO057D8uK7A2rfO
IGxvZ2luIMfPvcO46SDEq8XXsO24rrimIMH3waIgsPy4rsfPvccgvPYgwNa9wLTPtNkuKQ0K
ICAgyLi/+LChwNTAuyDHz73DsO0gyLi/+MDMILXHvcO46SCi3yC+xsDMv6PApcDHIMHWvcQg
McHWuKYguau788C4t84gteW4s7TPtNkuDQogICDAzsXNs93AuiCz18a8wfDAzCDB1sDOwMyw
7SC+xsDMtfu1+7X7tMIgs9fGvMHwwMcgsM3AzLHiILanua7A1LTPtNkhIA0KDQogICAgaHR0
cDovL2l3d3cubmV0ICi+xsDMtfu1+7X7KbfOILnmua7H2CDB1ry8v+QgICAgIL7GwMy1+7X7
tfvAxyDAzLPkwLogv+y4riCz18a8wfDAzCCwrrDtwNa0wiDAr8DNx9EgwaS6uLimILytt84g
sPjAr8fPsO0gu/W3zr/uILPXxrzB8LmuyK24pg0KICAgw6LD4sfPtMKwzcDUtM+02S4gsc3H
z7KyvK21tSC+xsDMtfu1+7X7wMcgx9EgsKHBt8DMILXHvu7B1r3DseYgus7FubXluLO0z7TZ
Lg0KDQogILTDILDHsK3Hz73DsO0gx+C6ucfPvLy/5H5+frCou+fH1bTPtNkuDQoNCiAgICAg
ICAgICAgICAgICAgIDHAzyDG8rHVILnmua4gICA3NzQsNTAwIGhpdCgyMDAyLjAxLjA3KSAg
ICAgICAgICAgILPXxrzB8CC047TnIMSrxdew7biuICAgNzQ1ILCzICAgICAgIA0KICDB98Gi
ILnmua7Hz7zFvK0gxvKwocfYIMHWvcq9w7/AISA9PT09PT0+aHR0cDovL2l3d3cubmV0wK/A
zcfRILvnwMzGrrbzsO0gxvKwobXHvcO46SANCiAgwdbAp7rQtem/obDUIL7Lt8HB1r3Dsea5
2bb4tM+02S4gKCC+xsDMtfu1+7X7ID0gaXd3dyApDQoNCiAgICAgICAgICANCiAgsc3Hz7Ky
ILrSxu3AuyCzosPEILXlt8i02bjpIL/rvK24piC52bb4tM+02S4NCiAgsc3Hz8DHILjewM/A
uiDAzsXNs92/obytIMClvK3HzsHfIMPrtebHz7+0wLi45yCxzcfPwMcgvu62sMfRIMGkuri1
tSCwrrDtwNbB9iC+yr3AtM+02S4NCg0KICC02cC9us7FzbTCIMDOxc2z3SzBpLq4xeu9xSy5
2cDMt6+9urnpvcUgte4gwK/AzcfRIMGkuri4uMC7ILq4s7u15biztM+02S4gDQogIL7GwMy1
+7X7tfvAxyCwocG3wMwgtce9w7jpIMD8w7ywocG3ILjewM/AuyDF68fPv6kgwK/AzcfRIMGk
uri4piC53r7Guri9xyC89iDA1r3AtM+02S4NCiAgsPjB9rvnx9fAuyDC/LDtx8+9w7jpIL7G
wMy1+7X7tfsgs7u6zrvnwaTAuyC+xr3HILz2IMDWvcC0z7TZLiC52bfOsKG8rSC6uLHiDQog
ILPXxrzB8MDHILDtsN/AuyC89rfFx8+0wiCw+LCzsNS9w8bHwLsgv+6/tcHfwNS0z7TZLrnZ
t86wobytILq4seINCiAgILHXt6G1tSC89r3FwLsgv/jEoSC+ysC4vccgsOa/7CC89r3FsMW6
zrimIMWsuK/Hz73KvcO/wCG89r3FsMW6zg0KDQogICAgICAgICAg

------=_NextPart_000_0067_01C0F24A.93A21C00
Content-Type: text/html;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

DQo8aHRtbD4NCjxoZWFkPg0KPHRpdGxlPrDLu/a/o8H4IL7GwMy1+7X7tfs8L3RpdGxlPg0K
PHgtbWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsg
Y2hhcnNldD1ldWMta3IiPg0KPC9oZWFkPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCjwh
LS0NCkE6bGluaywgQTphY3RpdmUsIEE6dmlzaXRlZCB7DQpmb250LXNpemU6IDlwdDsNCmNv
bG9yOiByZWQ7DQp0ZXh0LWRlY29yYXRpb246IG5vbmU7DQp9DQpBOmhvdmVyIHsgDQpmb250
LXNpemU6IDlwdDsNCmNvbG9yOjAwMDAwMDsNCnRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5l
Ow0KfQ0KVEQgew0KZm9udC1mYW1pbHk6ILG8uLI7DQpmb250LXNpemU6IDlwdDsNCmNvbG9y
OiAwMDAwMDA7DQp9DQotLT4NCjwvc3R5bGU+DQo8dGFibGUgd2lkdGg9MTAwJSAgYmdjb2xv
cj0iI0I0QjRCNCIgdGV4dD0iIzAwMDAwMCI+PHRkIHZhbGlnbj10b3A+DQo8dGFibGUgd2lk
dGg9IjYxOSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIGFs
aWduPSJjZW50ZXIiIA0KYmFja2dyb3VuZD0iaHR0cDovL2l3d3cuY28ua3IvaXd3d19pbmZv
L2JhY2suZ2lmIj4NCiAgPHRyPiANCiAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0
b3AiIHdpZHRoPSIxMSI+PGltZyBzcmM9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3dfaW5mby9s
ZWZ0LmdpZiIgd2lkdGg9IjExIiANCmhlaWdodD0iMjA5Ij48L3RkPg0KICAgIDx0ZCBhbGln
bj0iY2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjU4NiI+IA0KICAgICAgPHRhYmxlIHdp
ZHRoPSIxMDAlIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIg
DQpiYWNrZ3JvdW5kPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2luZm8vY19iYWNrLmdpZiI+
DQogICAgICAgIDx0cj4gDQogICAgICAgICAgPHRkPjxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5l
dCIgdGFyZ2V0PSJfYmxhbmsiPjxpbWcgDQpzcmM9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3df
aW5mby9sb2dvLmdpZiIgd2lkdGg9IjU4NiIgaGVpZ2h0PSI0MCIgYm9yZGVyPSIwIj48L2E+
PC90ZD4NCiAgICAgICAgPC90cj4NCiAgICAgICAgPHRyPiANCiAgICAgICAgICA8dGQ+PGlt
ZyBzcmM9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3dfaW5mby9sb2dvX3R4dC5naWYiIHdpZHRo
PSI1ODYiIGhlaWdodD0iMTAwIj48L3RkPg0KICAgICAgICA8L3RyPg0KICAgICAgICA8dHI+
IA0KICAgICAgICAgIDx0ZD4gDQogICAgICAgICAgICA8dGFibGUgd2lkdGg9IjEwMCUiIGNl
bGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgYm9yZGVyPSIxIiBib3JkZXJjb2xvcj0i
IzYxOTRERCIgYm9yZGVyY29sb3JkYXJrPSIjRkZGRkZGIj4NCiAgICAgICAgICAgICAgPHRy
PiANCiAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjEwMCUiIGFsaWduPSJjZW50ZXIiIGhl
aWdodD0iNjkiPiANCiAgICAgICAgICAgICAgICAgIDx0YWJsZSBiZ2NvbG9yPSIjOThCMUQx
IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9
IjAiPg0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAg
IDx0ZCB3aWR0aD0iOTYlIj4mbmJzcDs8L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3Ry
Pg0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0
ZCB3aWR0aD0iOTYlIiBoZWlnaHQ9IjE4Ij4mbmJzcDsmbmJzcDvAzsXNs92/obTCILi5wLog
waS6uL/NILHXIMGkuri4piDDo77Gwda0wiCwy7v2v6PB+MDMIMDWvcC0z7TZLjxicj4NCiZu
YnNwOyZuYnNwO8fPwfa4uCCwy7v2v6PB+LXpwMwgs8q5q7OqILi5wLogwaS6uLimIMGmsPjH
2CDB1rTCILDhsPogv8DI97fBIMGkuri4piDDo7TCtaUguLnAuiCz67fCsPogvcOwo8C7PGJy
PiAgDQombmJzcDsmbmJzcDvH47rxx8+0wiCw4bD6uKYgw8q3ocfPsO0gwNa9wLTPtNkuPGJy
Pjxicj4gDQo8L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg
ICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIiBo
ZWlnaHQ9IjE4Ij4NCiZuYnNwOyZuYnNwO8DMwaa0wiC+8sC7ILz2IL74tMIguLnAuiC+58DH
ILDLu/aw4bD6uri02bTCIL3Ft9q8uiDA1rTCIMGkuri4piC/5LG4x8+0wiC9w7TrsKEgtce+
+r3AtM+02S48YnI+ICANCiZuYnNwOyZuYnNwO8DOxc2z3b+hILvqwOfH2CDA1rTCILvnwMzG
riDB37+htMIgv+y4rrChILLAIMfKv+TH0SDBpLq4tenAuyC047DtIMDWtMIgu+fAzMausKEg
uLnAzCDA1rTCtaUsPGJyPiAgIA0KJm5ic3A7Jm5ic3A7wMwgu+fAzMauILXpwLsgsbi60MfP
uOkgPGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L3BvcnRhbC5odG1sIiB0YXJnZXQ9Il9ibGFu
ayI+xvfFuyy6uMW7LMfjuuo8L2E+ILvnwMzGrrbzsO0gx9W0z7TZLjxicj48YnI+ICANCjwv
dGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDx0
cj4gDQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI5NiUiPg0KJm5ic3A7Jm5i
c3A7vsbAzLX7tfu1+7TCIMDMt7Egu+fAzMauuKYgw6O+xsHWtMIgxKvF17DtuK4gudcgxbC/
9rXlILDLu/a/o8H4wNS0z7TZLjxicj4gIA0KJm5ic3A7Jm5ic3A7sKIgxKvF17DtuK4gurC3
ziC9xbfavLogwNa0wiC+9ryxtcggu+fAzMauuLggs9fGvMHwwMcgvue9ycC4t84NCjxhIGhy
ZWY9Imh0dHA6Ly9pd3d3Lm5ldC9kYXRhL2NhdF9saXN0Lmh0bWwiIHRhcmdldD0iX2JsYW5r
Ij617rfPsPy4rjwvYT7Hz7TCILDLu/a/o8H4wMy45zxicj4NCiZuYnNwOyZuYnNwO7HNx8+y
sryttbUgxKvF17DtuK4gtOO058DasKEgtce9xyC89iDA1r3AtM+02S48YnI+PGJyPg0KDQoN
CiZuYnNwOyZuYnNwOzxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldC9teV9zaWdudXAuaHRtbCIg
dGFyZ2V0PSJfYmxhbmsiPsSrxdew7biuILTjtOc8L2E+wMwgtce9w7jpIKLfvsbAzL+jwKXA
xyDB1r3EIDHB1rimILmru/PAuLfOILXluK645yBwb3AzIGUtbWFpbCCw6MGkwLsgteW4s7TP
tNkuPGJyPiAgDQombmJzcDsmbmJzcDsoIr+5IiBhYmNAaXd3dy5uZXQiKTxicj4gICANCiZu
YnNwOyZuYnNwO7bHx9EssdcgxKvF17DtuK64piCw/Liux9IgvPYgwNa0wiCxx8fRsPogx9i0
5yDEq8XXsO24rr+hILTjtOfA2iC+xsDMtfC4piC17rfPx9W0z7TZLjxicj4gICANCiZuYnNw
OyZuYnNwOyi17rfPvcXDu8C7IMfPvcXIxCC047TnsPy4rsDat84gbG9naW4gx8+9w7jpIMSr
xdew7biuuKYgwffBoiCw/Liux8+9xyC89iDA1r3AtM+02S4pPGJyPiAgIA0KDQombmJzcDsm
bmJzcDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQvc2lnbnVwLmh0bWwiIHRhcmdldD0iX2Js
YW5rIj7IuL/4sKHA1DwvYT7AuyDHz73DsO0gyLi/+MDMILXHvcO46SCi3yC+xsDMv6PApcDH
IMHWvcQgMcHWuKYguau788C4t84gteW4s7TPtNkuPGJyPiAgDQombmJzcDsmbmJzcDvAzsXN
s93AuiCz18a8wfDAzCDB1sDOwMyw7SC+xsDMtfu1+7X7tMIgs9fGvMHwwMcgsM3AzLHiILan
ua7A1LTPtNkhIDxicj4gIDxicj4gIA0KDQoNCg0KPC90ZD48L3RyPg0KIDx0cj4gDQogICAg
ICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI5NiUiIGhlaWdodD0iMTkiPjxiPjxmb250
IGNvbG9yPSIjRkY5OTAwIj4NCiZuYnNwOyZuYnNwOzxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5l
dCIgdGFyZ2V0PSJfYmxhbmsiPmh0dHA6Ly9pd3d3Lm5ldDwvYT48L2ZvbnQ+PC9iPiAovsbA
zLX7tfu1+ym3ziC55rmux9ggwda8vL/kPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgPC90
cj4NCiA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIiBoZWln
aHQ9IjE5Ij4NCiZuYnNwOyZuYnNwO77GwMy1+7X7tfvAxyDAzLPkwLogv+y4riCz18a8wfDA
zCCwrrDtwNa0wiDAr8DNx9EgwaS6uLimILytt84gsPjAr8fPsO0gu/W3zr/uILPXxrzB8Lmu
yK24pjxicj4gDQombmJzcDsmbmJzcDvDosPix8+0wrDNwNS0z7TZLiCxzcfPsrK8rbW1IL7G
wMy1+7X7tfvAxyDH0SCwocG3wMwgtce+7sHWvcOx5iC6zsW5teW4s7TPtNkuPGJyPjxicj4N
Cg0KJm5ic3A7Jm5ic3A7tMMgsMewrcfPvcOw7SDH4Lq5x8+8vL/kfn5+sKi758fVtM+02S48
YnI+PGJyPg0KDQoNCjwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAg
ICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg
ICAgICAgDQogICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgIDx0cj4gDQogICAg
ICAgICAgICAgICAgPHRkIHdpZHRoPSIxMDAlIiBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRv
cCI+IA0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgd2lkdGg9IjEwMCUiIGJvcmRlcj0i
MCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4NCiAgICAgICAgICAgICAgICAg
ICAgPHRyIGJnY29sb3I9IiMwMDAwMDAiPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQg
d2lkdGg9IjclIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRk
IHdpZHRoPSI0MyUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8
dGQgd2lkdGg9IjQlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAg
PHRkIHdpZHRoPSI0NiUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAgICAgICAgICAgICAgICAg
PC90cj4NCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAg
ICA8dGQgd2lkdGg9IjclIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIjOTlDQ0NDIj4mbmJzcDs8
L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNDMlIiBoZWlnaHQ9IjIw
IiBiZ2NvbG9yPSIjOTlDQ0NDIj48Yj4xwM8gxvKx1SC55rmuPC9iPjwvdGQ+DQogICAgICAg
ICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iI2Vk
ZWRlZCI+Jm5ic3A7PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQ2
JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iI2VkZWRlZCI+PGI+PGZvbnQgY29sb3I9IiM2NjY2
NjYiPjc3NCw1MDAgaGl0KDIwMDIuMDEuMDcpDQo8L2ZvbnQ+PC9iPjwvdGQ+DQogICAgICAg
ICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAg
ICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI3JSIgaGVp
Z2h0PSIxIiBiZ2NvbG9yPSIjMDAwMDAwIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAg
IDx0ZCB3aWR0aD0iNDMlIiBoZWlnaHQ9IjEiIGJnY29sb3I9IiMwMDAwMDAiPjwvdGQ+DQog
ICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0JSIgaGVpZ2h0PSIxIiBiZ2NvbG9y
PSIjMDAwMDAwIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNDYl
IiBoZWlnaHQ9IjEiIGJnY29sb3I9IiMwMDAwMDAiPjwvdGQ+DQogICAgICAgICAgICAgICAg
ICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAg
ICAgICAgPHRkIHdpZHRoPSI3JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iIzk5Q0NDQyI+Jm5i
c3A7PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQzJSIgaGVpZ2h0
PSIyMCIgYmdjb2xvcj0iIzk5Q0NDQyI+PGI+s9fGvMHwILTjtOcgxKvF17DtuK48L2I+PC90
ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQlIiBoZWlnaHQ9IjIwIiBi
Z2NvbG9yPSIjZWRlZGVkIj4mbmJzcDs8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0
ZCB3aWR0aD0iNDYlIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIjZWRlZGVkIj48Yj48Zm9udCBj
b2xvcj0iIzY2NjY2NiI+DQo8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQvZGF0YS9jYXRfbGlz
dC5odG1sIiB0YXJnZXQ9Il9uZXciPjc0NSCwszwvYT48L2ZvbnQ+PC9iPjwvdGQ+DQogICAg
ICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAg
ICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgIDx0YWJsZSB3aWR0aD0iMTAw
JSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAg
ICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAg
ICAgICAgICAgIDx0ZCBiZ2NvbG9yPSIjQ0VDRUNFIiBoZWlnaHQ9IjE4Ij48Zm9udCBjb2xv
cj0iIzAwMDA4MCI+PGJyPg0KJm5ic3A7Jm5ic3A7wffBoiC55rmux8+8xbytIMbysKHH2CDB
1r3KvcO/wCEgPT09PT09Jmd0OzxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldCIgdGFyZ2V0PSJf
bmV3Ij48Zm9udCBjb2xvcj0iIzA2MDZGRiI+aHR0cDovL2l3d3cubmV0PC9mb250PjwvYT4N
CsCvwM3H0SC758DMxq6287DtIMbysKG1x73DuOkgPGJyPg0KJm5ic3A7Jm5ic3A7wdbAp7rQ
tem/obDUIL7Lt8HB1r3Dsea52bb4tM+02S4gKCC+xsDMtfu1+7X7ID0gaXd3dyApPGJyPg0K
PGJyPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg
ICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgIA0K
ICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICA8
L3RkPg0KICAgICAgICA8L3RyPg0KDQogPHRyPiANCiAgICAgICAgICA8dGQgaGVpZ2h0PSIy
MCIgYmdjb2xvcj0iIzQwNTY4MCIgYWxpZ249ImxlZnQiPjxmb250IGNvbG9yPSIjZmZmZmZm
Ij48YnI+DQoNCiZuYnNwOyZuYnNwO7HNx8+ysiC60sbtwLsgs6LDxCC15bfItNm46SC/67yt
uKYgudm2+LTPtNkuPGJyPg0KDQombmJzcDsmbmJzcDuxzcfPwMcguN7Az8C6IMDOxc2z3b+h
vK0gwKW8rcfOwd8gw+u15sfPv7TAuLjnILHNx8/AxyC+7rawx9EgwaS6uLW1ILCusO3A1sH2
IL7KvcC0z7TZLjxicj48YnI+DQombmJzcDsmbmJzcDu02cC9us7FzbTCIMDOxc2z3SzBpLq4
xeu9xSy52cDMt6+9urnpvcUgte4gwK/AzcfRIMGkuri4uMC7ILq4s7u15biztM+02S4gPGJy
Pg0KJm5ic3A7Jm5ic3A7vsbAzLX7tfu1+8DHILChwbfAzCC1x73DuOkgwPzDvLChwbcguN7A
z8C7IMXrx8+/qSDAr8DNx9EgwaS6uLimILnevsa6uL3HILz2IMDWvcC0z7TZLjxicj4NCiZu
YnNwOyZuYnNwO7D4wfa758fXwLsgwvyw7cfPvcO46SC+xsDMtfu1+7X7ILO7us6758GkwLsg
vsa9xyC89iDA1r3AtM+02S48QSBIUkVGPSJodHRwOi8vaXd3dy5uZXQvYmJzLmh0bWwiIHRh
cmdldD0iX25ldyI+DQo8Zm9udCBjb2xvcj0iYmx1ZSI+ILnZt86wobytILq4seI8L2ZvbnQ+
PC9hPjxicj4NCiZuYnNwOyZuYnNwO7PXxrzB8MDHILDtsN/AuyC89rfFx8+0wiCw+LCzsNS9
w8bHwLsgv+6/tcHfwNS0z7TZLg0KPGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L3d3d2IvQ3Jh
enlXV1dCb2FyZC5jZ2k/ZGI9Ym9hcmQxIiB0YXJnZXQ9Il9uZXciPjxmb250IGNvbG9yPSJi
bHVlIj652bfOsKG8rSC6uLHiPC9mb250PjwvYT48YnI+DQogIA0KJm5ic3A7Jm5ic3A7sde3
obW1ILz2vcXAuyC/+MShIL7KwLi9xyCw5r/sILz2vcWwxbrOuKYgxay4r8fPvcq9w7/AITwv
Zm9udD4NCjxBIEhSRUY9bWFpbHRvOml3ZWJtYXN0ZXJAaXd3dy5uZXQ/c3ViamVjdD289r3F
sMW6ziZib2R5PbjewM+89r3FsMW6zj4NCjxmb250IGNvbG9yPSJibHVlIj48Yj689r3FsMW6
zjwvYj48L2ZvbnQ+PC9BPjxicj48YnI+IA0KICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwv
dHI+DQogICAgICA8L3RhYmxlPg0KICAgIDwvdGQ+DQogICAgPHRkIGFsaWduPSJjZW50ZXIi
IHZhbGlnbj0idG9wIiB3aWR0aD0iMjIiPjxpbWcgc3JjPSJodHRwOi8vaXd3dy5jby5rci9p
d3d3X2luZm8vcmlnaHQuZ2lmIiB3aWR0aD0iMjIiIA0KaGVpZ2h0PSIyMDkiPjwvdGQ+DQog
IDwvdHI+DQo8L3RhYmxlPg0KPHRhYmxlIHdpZHRoPSI2MTkiIGJvcmRlcj0iMCIgY2VsbHNw
YWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiBhbGlnbj0iY2VudGVyIj4NCiAgPHRyPg0KICAg
IDx0ZD48YSBocmVmPSJodHRwOi8vaXd3dy5uZXQiIHRhcmdldD0iX25ldyI+PGltZyBzcmM9
Imh0dHA6Ly9pd3d3Lm5ldC9pd3d3X2luZm8vYnV0dG9tMS5naWYiIA0Kd2lkdGg9IjYxOSIg
aGVpZ2h0PSI0NiIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCiAgPC90cj4NCjwvdGFibGU+DQo8
L3RkPjwvdGFibGU+DQo8L2h0bWw+

------=_NextPart_000_0067_01C0F24A.93A21C00--


From postmaster@cs.utk.edu Tue Jan 15 00:25:54 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id AAA17742; Tue, 15 Jan 2002 00:25:53 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 00:25:53 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id AAA05904; Tue, 15 Jan 2002 00:25:52 -0500 (EST)
Message-Id: <200201150525.AAA05904@cs.utk.edu>
Received: from yahoo.co.kr (211.215.9.40)
 by cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 00:25:53 -0500
Reply-To: kkkk5012@yahoo.co.kr
From: "1hA$@:" <kkkk5012@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: (A$:8) !Z E7D+ , D}D+8& C#@8<<?d????????????????
Sender: "1hA$@:" <kkkk5012@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 15 Jan 2002 14:28:11 +0900
X-User: 2.5-
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id AAA05906

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD4oyKjG5MDMwfYgsbiw5sfPseIpJm5i
c3A7IC0tLS0tLSZndDsmbmJzcDsgPEEgDQpocmVmPSJodHRwOi8vd3d3LnNlYXJjaGNvcmVh
LmNvbSI+aHR0cDovL3d3dy5zZWFyY2hjb3JlYS5jb208L0E+PC9QPg0KPFA+Jm5ic3A7PC9Q
Pg0KPFA+odpgxbfEqyzE/cSrYCDA2r3FwMwgv/jHz73DtMIgwMy788f8wLsgw6O+xrXluLO0
z7TZodo8L1A+DQo8UD6+yLPnx8+8vL/kLsGmsKEgwaS4uyC/qby6utCw+iCzsry6utCysiDB
wcC6vNK9xCC+y7fBteW4sbKyv+ReXjwvUD4NCjxQPrOyvLq60MDMs6ogv6m8urrQwMyzqiC/
5MHyIMW3xKsgxP3Eq7imILi4s6q9w7HiIMj7teW9w8HSPzwvUD4NCjxQPsGmsKEgw9/DtcfY
ILXluK60wiC758DMxq6/oSDH0bn4ILChuri8vL/kLjwvUD4NCjxQPsDMIMi4u+e0wiDC+MfR
ILOywNoswMy727+pwNostMm3wsDWtMKzssDaLMfQurDBwcC6v6nA2iy4xbPKwcHAurOywNos
LCwsPC9QPg0KPFA+te7AuLfOILCiwNrAxyC/+MfPvcO0wiDAzLvzx/zAuyDDo77GvK0gv6yw
4cfYIMHWtMIgPC9QPg0KPFA+yLi757G4v+QsILmwt9AgsKHA1LrxtMIgvvi9wLTPtNkuPC9Q
Pg0KPFA+sde4rrDtILvnwfjAuLfOILvztOu55sDHIL7zsbzAuyDIrsDOx9K89iDA1r7uvK0s
PC9QPg0KPFA+wNq9xcDHIL/4x8+9w7TCIMDMu/PH/MC7ILLAIMOjwLi9x7z2IMDWwLi9x7Ko
v7m/5CxeXio8L1A+DQo8UD6x17iusO0gwNq8vMfRILO7v+vAuyC6uLDtvc3AuL3DuOkgPC9Q
Pg0KPFA+yKjG5MDMwfYgtem+7rzFvK0gsbiw5sfPvcO46SC1x7G4v+QsPC9QPg0KPFA+wcHA
uiDBpLq4sKEgtce8y8C4uOkgwcGw2rPXv+QsIMHxsMW/7iDHz7fnILXHvLy/5C48L1A+DQo8
UD48QlI+KMioxuTAzMH2ILG4sObHz7HiKSZuYnNwOyAtLS0tLS0mZ3Q7Jm5ic3A7IDxBIA0K
aHJlZj0iaHR0cDovL3d3dy5zZWFyY2hjb3JlYS5jb20iPmh0dHA6Ly93d3cuc2VhcmNoY29y
ZWEuY29tPC9BPjwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPjxCUj5w
cy4gx+O29L74wMwgwMy43sDPwLsgurizu7ytIMHLvNvH1bTPtNkuIMDMuN7Az8HWvNK0wjwv
UD4NCjxQPiZuYnNwOyZuYnNwOyZuYnNwOyDFuLvnwMzGriCw1L3Dxse/obytIMOjvsYgwMy4
3sDPwLsgurizu7DUILXHvvq9wLTPtNkuPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7Jm5ic3A7IMDM
uN7AzyC53rHiuKYgv/jHz73DwfYgvsrAu7Dmv+wsvPa9xbDFus64piDH2MHWvcq9w7/kLjwv
UD4NCjxQPiZuYnNwOyZuYnNwOyZuYnNwOyA8Y2VudGVyPjxhIGhyZWY9J2h0dHA6Ly8xOTIu
MTY4LjAuMTo5MDgwL3JlZnVzZS9yZWZ1c2U/Y21kPXZpZXcmZ3JvdXA9MTImbmFtZT0mbWFp
bD1ibGFzdC1wYXJhbGxlbEBjcy51dGsuZWR1Jz48aW1nIHNyYz0naHR0cDovLzE5Mi4xNjgu
MC4xOjkwODAvcmVmdXNlL21haWwtcmVmdXNlLmdpZicgYm9yZGVyPTApPjwvY2VudGVyPjwv
UD4NCjwvQk9EWT4NCjwvSFRNTD4NCg==

From postmaster@cs.utk.edu Tue Jan 15 23:06:58 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id XAA16743; Tue, 15 Jan 2002 23:06:58 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 23:06:58 -0500
Received: from iwww-75 (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id XAA00797; Tue, 15 Jan 2002 23:06:50 -0500 (EST)
Message-Id: <200201160406.XAA00797@cs.utk.edu>
Received: from iwww-75 (211.202.71.98)
 by cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 23:06:55 -0500
From: =?ks_c_5601-1987?B?vsbAzLX7tfu1+w==?= <iwebmaster@iwww.net>
To: blast-parallel@cs.utk.edu
Subject: =?ks_c_5601-1987?B?W8irurhdILPXxrzB8MDMILi4tecgsMu79r+jwfggvsbAzLX7tfu1+8DUtM+02S4=?=
Date: Wed, 16 Jan 2002 13:05:01 +0900
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0137_01C0F05A.93A01C00"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000

This is a multi-part message in MIME format.

------=_NextPart_000_0137_01C0F05A.93A01C00
Content-Type: text/plain;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

sMu79r+jwfggvsbAzLX7tfu1+yAgICAgICAgICAgICAgICAgICAgICAgIMDOxc2z3b+htMIg
uLnAuiDBpLq4v80gsdcgwaS6uLimIMOjvsbB1rTCILDLu/a/o8H4wMwgwNa9wLTPtNkuDQog
IMfPwfa4uCCwy7v2v6PB+LXpwMwgs8q5q7OqILi5wLogwaS6uLimIMGmsPjH2CDB1rTCILDh
sPogv8DI97fBIMGkuri4piDDo7TCtaUguLnAuiCz67fCsPogvcOwo8C7DQogICDH47rxx8+0
wiCw4bD6uKYgw8q3ocfPsO0gwNa9wLTPtNkuDQoNCiAgICAgIMDMwaa0wiC+8sC7ILz2IL74
tMIguLnAuiC+58DHILDLu/aw4bD6uri02bTCIL3Ft9q8uiDA1rTCIMGkuri4piC/5LG4x8+0
wiC9w7TrsKEgtce++r3AtM+02S4NCiAgIMDOxc2z3b+hILvqwOfH2CDA1rTCILvnwMzGriDB
37+htMIgv+y4rrChILLAIMfKv+TH0SDBpLq4tenAuyC047DtIMDWtMIgu+fAzMausKEguLnA
zCDA1rTCtaUsDQogICDAzCC758DMxq4gtenAuyCxuLrQx8+46SDG98W7LLq4xbssx+O66iC7
58DMxq6287DtIMfVtM+02S4NCg0KICAgICAgvsbAzLX7tfu1+7TCIMDMt7Egu+fAzMauuKYg
w6O+xsHWtMIgxKvF17DtuK4gudcgxbC/9rXlILDLu/a/o8H4wNS0z7TZLg0KICAgsKIgxKvF
17DtuK4gurC3ziC9xbfavLogwNa0wiC+9ryxtcggu+fAzMauuLggs9fGvMHwwMcgvue9ycC4
t8617rfPsPy4rsfPtMIgsMu79r+jwfjAzLjnDQogILHNx8+ysryttbUgxKvF17DtuK4gtOO0
58DasKEgtce9xyC89iDA1r3AtM+02S4NCg0KICDEq8XXsO24riC047TnwMwgtce9w7jpIKLf
vsbAzL+jwKXAxyDB1r3EIDHB1rimILmru/PAuLfOILXluK645yBwb3AzIGUtbWFpbCCw6MGk
wLsgteW4s7TPtNkuDQogICAoIr+5IiBhYmNAaXd3dy5uZXQiKQ0KICAgtsfH0Syx1yDEq8XX
sO24rrimILD8uK7H0iC89iDA1rTCILHHx9Gw+iDH2LTnIMSrxdew7biuv6EgtOO058DaIL7G
wMy18LimILXut8/H1bTPtNkuDQogICAote63z73Fw7vAuyDHz73FyMQgtOO057D8uK7A2rfO
IGxvZ2luIMfPvcO46SDEq8XXsO24rrimIMH3waIgsPy4rsfPvccgvPYgwNa9wLTPtNkuKQ0K
ICAgyLi/+LChwNTAuyDHz73DsO0gyLi/+MDMILXHvcO46SCi3yC+xsDMv6PApcDHIMHWvcQg
McHWuKYguau788C4t84gteW4s7TPtNkuDQogICDAzsXNs93AuiCz18a8wfDAzCDB1sDOwMyw
7SC+xsDMtfu1+7X7tMIgs9fGvMHwwMcgsM3AzLHiILanua7A1LTPtNkhIA0KDQogICAgaHR0
cDovL2l3d3cubmV0ICi+xsDMtfu1+7X7KbfOILnmua7H2CDB1ry8v+QgICAgIL7GwMy1+7X7
tfvAxyDAzLPkwLogv+y4riCz18a8wfDAzCCwrrDtwNa0wiDAr8DNx9EgwaS6uLimILytt84g
sPjAr8fPsO0gu/W3zr/uILPXxrzB8LmuyK24pg0KICAgw6LD4sfPtMKwzcDUtM+02S4gsc3H
z7KyvK21tSC+xsDMtfu1+7X7wMcgx9EgsKHBt8DMILXHvu7B1r3DseYgus7FubXluLO0z7TZ
Lg0KDQogILTDILDHsK3Hz73DsO0gx+C6ucfPvLy/5H5+frCou+fH1bTPtNkuDQoNCiAgICAg
ICAgICAgICAgICAgIDHAzyDG8rHVILnmua4gICA3NzQsNTAwIGhpdCgyMDAyLjAxLjEzKSAg
ICAgICAgICAgsKHA1Mi4v/ggICAxNTYsNTUwICgyMDAyLjAxLjEzKSAgICAgICAgICAgILPX
xrzB8CC047TnIMSrxdew7biuICAgNzg1ILCzICAgICAgIA0KICDB98GiILnmua7Hz7zFvK0g
xvKwocfYIMHWvcq9w7/AISA9PT09PT0+aHR0cDovL2l3d3cubmV0wK/AzcfRILvnwMzGrrbz
sO0gxvKwobXHvcO46SANCiAgwdbAp7rQtem/obDUIL7Lt8HB1r3Dsea52bb4tM+02S4gKCC+
xsDMtfu1+7X7ID0gaXd3dyApDQoNCiAgICAgICAgICANCiAgsc3Hz7KyILrSxu3AuyCzosPE
ILXlt8i02bjpIL/rvK24piC52bb4tM+02S4NCiAgsc3Hz8DHILjewM/AuiDAzsXNs92/obyt
IMClvK3HzsHfIMPrtebHz7+0wLi45yCxzcfPwMcgvu62sMfRIMGkuri1tSCwrrDtwNbB9iC+
yr3AtM+02S4NCg0KICC02cC9us7FzbTCIMDOxc2z3SzBpLq4xeu9xSy52cDMt6+9urnpvcUg
te4gwK/AzcfRIMGkuri4uMC7ILq4s7u15biztM+02S4gDQogIL7GwMy1+7X7tfvAxyCwocG3
wMwgtce9w7jpIMD8w7ywocG3ILjewM/AuyDF68fPv6kgwK/AzcfRIMGkuri4piC53r7Guri9
xyC89iDA1r3AtM+02S4NCiAgsPjB9rvnx9fAuyDC/LDtx8+9w7jpIL7GwMy1+7X7tfsgs7u6
zrvnwaTAuyC+xr3HILz2IMDWvcC0z7TZLiC52bfOsKG8rSC6uLHiDQogILPXxrzB8MDHILDt
sN/AuyC89rfFx8+0wiCw+LCzsNS9w8bHwLsgv+6/tcHfwNS0z7TZLrnZt86wobytILq4seIN
CiAgILHXt6G1tSC89r3FwLsgv/jEoSC+ysC4vccgsOa/7CC89r3FsMW6zrimIMWsuK/Hz73K
vcO/wCG89r3FsMW6zg0KDQogICAgICAgICAg

------=_NextPart_000_0137_01C0F05A.93A01C00
Content-Type: text/html;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6wy7v2v6PB+CC+xsDMtfu1+7X7PC90aXRsZT4NCjx4
LW1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0L2h0bWw7IGNo
YXJzZXQ9ZXVjLWtyIj4NCjwvaGVhZD4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQo8IS0t
DQpBOmxpbmssIEE6YWN0aXZlLCBBOnZpc2l0ZWQgew0KZm9udC1zaXplOiA5cHQ7DQpjb2xv
cjogcmVkOw0KdGV4dC1kZWNvcmF0aW9uOiBub25lOw0KfQ0KQTpob3ZlciB7IA0KZm9udC1z
aXplOiA5cHQ7DQpjb2xvcjowMDAwMDA7DQp0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsN
Cn0NClREIHsNCmZvbnQtZmFtaWx5OiCxvLiyOw0KZm9udC1zaXplOiA5cHQ7DQpjb2xvcjog
MDAwMDAwOw0KfQ0KLS0+DQo8L3N0eWxlPg0KPHRhYmxlIHdpZHRoPTEwMCUgIGJnY29sb3I9
IiNCNEI0QjQiIHRleHQ9IiMwMDAwMDAiPjx0ZCB2YWxpZ249dG9wPg0KPHRhYmxlIHdpZHRo
PSI2MTkiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiBhbGln
bj0iY2VudGVyIiANCmJhY2tncm91bmQ9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3dfaW5mby9i
YWNrLmdpZiI+DQogIDx0cj4gDQogICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9w
IiB3aWR0aD0iMTEiPjxpbWcgc3JjPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2luZm8vbGVm
dC5naWYiIHdpZHRoPSIxMSIgDQpoZWlnaHQ9IjIwOSI+PC90ZD4NCiAgICA8dGQgYWxpZ249
ImNlbnRlciIgdmFsaWduPSJ0b3AiIHdpZHRoPSI1ODYiPiANCiAgICAgIDx0YWJsZSB3aWR0
aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIA0K
YmFja2dyb3VuZD0iaHR0cDovL2l3d3cuY28ua3IvaXd3d19pbmZvL2NfYmFjay5naWYiPg0K
ICAgICAgICA8dHI+IA0KICAgICAgICAgIDx0ZD48YSBocmVmPSJodHRwOi8vaXd3dy5uZXQi
IHRhcmdldD0iX2JsYW5rIj48aW1nIA0Kc3JjPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2lu
Zm8vbG9nby5naWYiIHdpZHRoPSI1ODYiIGhlaWdodD0iNDAiIGJvcmRlcj0iMCI+PC9hPjwv
dGQ+DQogICAgICAgIDwvdHI+DQogICAgICAgIDx0cj4gDQogICAgICAgICAgPHRkPjxpbWcg
c3JjPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2luZm8vbG9nb190eHQuZ2lmIiB3aWR0aD0i
NTg2IiBoZWlnaHQ9IjEwMCI+PC90ZD4NCiAgICAgICAgPC90cj4NCiAgICAgICAgPHRyPiAN
CiAgICAgICAgICA8dGQ+IA0KICAgICAgICAgICAgPHRhYmxlIHdpZHRoPSIxMDAlIiBjZWxs
c3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIGJvcmRlcj0iMSIgYm9yZGVyY29sb3I9IiM2
MTk0REQiIGJvcmRlcmNvbG9yZGFyaz0iI0ZGRkZGRiI+DQogICAgICAgICAgICAgIDx0cj4g
DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxMDAlIiBhbGlnbj0iY2VudGVyIiBoZWln
aHQ9IjY5Ij4gDQogICAgICAgICAgICAgICAgICA8dGFibGUgYmdjb2xvcj0iIzk4QjFEMSIg
d2lkdGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIw
Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8
dGQgd2lkdGg9Ijk2JSI+Jm5ic3A7PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgPC90cj4N
CiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQg
d2lkdGg9Ijk2JSIgaGVpZ2h0PSIxOCI+Jm5ic3A7Jm5ic3A7wM7FzbPdv6G0wiC4ucC6IMGk
uri/zSCx1yDBpLq4uKYgw6O+xsHWtMIgsMu79r+jwfjAzCDA1r3AtM+02S48YnI+DQombmJz
cDsmbmJzcDvHz8H2uLggsMu79r+jwfi16cDMILPKuauzqiC4ucC6IMGkuri4piDBprD4x9gg
wda0wiCw4bD6IL/AyPe3wSDBpLq4uKYgw6O0wrWlILi5wLogs+u3wrD6IL3DsKPAuzxicj4g
IA0KJm5ic3A7Jm5ic3A7x+O68cfPtMIgsOGw+rimIMPKt6HHz7DtIMDWvcC0z7TZLjxicj48
YnI+IA0KPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg
ICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9Ijk2JSIgaGVp
Z2h0PSIxOCI+DQombmJzcDsmbmJzcDvAzMGmtMIgvvLAuyC89iC++LTCILi5wLogvufAxyCw
y7v2sOGw+rq4tNm0wiC9xbfavLogwNa0wiDBpLq4uKYgv+SxuMfPtMIgvcO067ChILXHvvq9
wLTPtNkuPGJyPiAgDQombmJzcDsmbmJzcDvAzsXNs92/oSC76sDnx9ggwNa0wiC758DMxq4g
wd+/obTCIL/suK6woSCywCDHyr/kx9EgwaS6uLXpwLsgtOOw7SDA1rTCILvnwMzGrrChILi5
wMwgwNa0wrWlLDxicj4gICANCiZuYnNwOyZuYnNwO8DMILvnwMzGriC16cC7ILG4utDHz7jp
IDxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldC9wb3J0YWwuaHRtbCIgdGFyZ2V0PSJfYmxhbmsi
Psb3xbssurjFuyzH47rqPC9hPiC758DMxq6287DtIMfVtM+02S48YnI+PGJyPiAgDQo8L3Rk
Pg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8dHI+
IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIj4NCiZuYnNwOyZuYnNw
O77GwMy1+7X7tfu0wiDAzLexILvnwMzGrrimIMOjvsbB1rTCIMSrxdew7biuILnXIMWwv/a1
5SCwy7v2v6PB+MDUtM+02S48YnI+ICANCiZuYnNwOyZuYnNwO7CiIMSrxdew7biuILqwt84g
vcW32ry6IMDWtMIgvva8sbXIILvnwMzGrri4ILPXxrzB8MDHIL7nvcnAuLfODQo8YSBocmVm
PSJodHRwOi8vaXd3dy5uZXQvZGF0YS9jYXRfbGlzdC5odG1sIiB0YXJnZXQ9Il9ibGFuayI+
te63z7D8uK48L2E+x8+0wiCwy7v2v6PB+MDMuOc8YnI+DQombmJzcDsmbmJzcDuxzcfPsrK8
rbW1IMSrxdew7biuILTjtOfA2rChILXHvccgvPYgwNa9wLTPtNkuPGJyPjxicj4NCg0KDQom
bmJzcDsmbmJzcDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQvbXlfc2lnbnVwLmh0bWwiIHRh
cmdldD0iX2JsYW5rIj7Eq8XXsO24riC047TnPC9hPsDMILXHvcO46SCi377GwMy/o8ClwMcg
wda9xCAxwda4piC5q7vzwLi3ziC15biuuOcgcG9wMyBlLW1haWwgsOjBpMC7ILXluLO0z7TZ
Ljxicj4gIA0KJm5ic3A7Jm5ic3A7KCK/uSIgYWJjQGl3d3cubmV0Iik8YnI+ICAgDQombmJz
cDsmbmJzcDu2x8fRLLHXIMSrxdew7biuuKYgsPy4rsfSILz2IMDWtMIgscfH0bD6IMfYtOcg
xKvF17DtuK6/oSC047TnwNogvsbAzLXwuKYgte63z8fVtM+02S48YnI+ICAgDQombmJzcDsm
bmJzcDsote63z73Fw7vAuyDHz73FyMQgtOO057D8uK7A2rfOIGxvZ2luIMfPvcO46SDEq8XX
sO24rrimIMH3waIgsPy4rsfPvccgvPYgwNa9wLTPtNkuKTxicj4gICANCg0KJm5ic3A7Jm5i
c3A7PGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L3NpZ251cC5odG1sIiB0YXJnZXQ9Il9ibGFu
ayI+yLi/+LChwNQ8L2E+wLsgx8+9w7DtIMi4v/jAzCC1x73DuOkgot8gvsbAzL+jwKXAxyDB
1r3EIDHB1rimILmru/PAuLfOILXluLO0z7TZLjxicj4gIA0KJm5ic3A7Jm5ic3A7wM7FzbPd
wLogs9fGvMHwwMwgwdbAzsDMsO0gvsbAzLX7tfu1+7TCILPXxrzB8MDHILDNwMyx4iC2p7mu
wNS0z7TZISA8YnI+ICA8YnI+ICANCg0KDQoNCjwvdGQ+PC90cj4NCiA8dHI+IA0KICAgICAg
ICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIiBoZWlnaHQ9IjE5Ij48Yj48Zm9udCBj
b2xvcj0iI0ZGOTkwMCI+DQombmJzcDsmbmJzcDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQi
IHRhcmdldD0iX2JsYW5rIj5odHRwOi8vaXd3dy5uZXQ8L2E+PC9mb250PjwvYj4gKL7GwMy1
+7X7tfspt84guea5rsfYIMHWvLy/5DwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+
DQogPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9Ijk2JSIgaGVpZ2h0
PSIxOSI+DQombmJzcDsmbmJzcDu+xsDMtfu1+7X7wMcgwMyz5MC6IL/suK4gs9fGvMHwwMwg
sK6w7cDWtMIgwK/AzcfRIMGkuri4piC8rbfOILD4wK/Hz7DtILv1t86/7iCz18a8wfC5rsit
uKY8YnI+IA0KJm5ic3A7Jm5ic3A7w6LD4sfPtMKwzcDUtM+02S4gsc3Hz7KyvK21tSC+xsDM
tfu1+7X7wMcgx9EgsKHBt8DMILXHvu7B1r3DseYgus7FubXluLO0z7TZLjxicj48YnI+DQoN
CiZuYnNwOyZuYnNwO7TDILDHsK3Hz73DsO0gx+C6ucfPvLy/5H5+frCou+fH1bTPtNkuPGJy
Pjxicj4NCg0KDQo8L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAg
ICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg
ICAgIA0KICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICA8dHI+IA0KICAgICAg
ICAgICAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3Ai
PiANCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIHdpZHRoPSIxMDAlIiBib3JkZXI9IjAi
IGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCI+DQogICAgICAgICAgICAgICAgICAg
IDx0ciBiZ2NvbG9yPSIjMDAwMDAwIj4gDQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdp
ZHRoPSI3JSIgaGVpZ2h0PSIxIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3
aWR0aD0iNDMlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRk
IHdpZHRoPSI0JSIgaGVpZ2h0PSIxIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0
ZCB3aWR0aD0iNDYlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwv
dHI+DQogICAgICAgICAgICAgICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAgICAgICAg
PHRkIHdpZHRoPSI3JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iIzk5Q0NDQyI+Jm5ic3A7PC90
ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQzJSIgaGVpZ2h0PSIyMCIg
Ymdjb2xvcj0iIzk5Q0NDQyI+PGI+McDPIMbysdUguea5rjwvYj48L3RkPg0KICAgICAgICAg
ICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNCUiIGhlaWdodD0iMjAiIGJnY29sb3I9IiNlZGVk
ZWQiPiZuYnNwOzwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0NiUi
IGhlaWdodD0iMjAiIGJnY29sb3I9IiNlZGVkZWQiPjxiPjxmb250IGNvbG9yPSIjNjY2NjY2
Ij43NzQsNTAwIGhpdCgyMDAyLjAxLjEzKQ0KPC9mb250PjwvYj48L3RkPg0KICAgICAgICAg
ICAgICAgICAgICA8L3RyPg0KPHRyIGJnY29sb3I9IiMwMDAwMDAiPiANCiAgICAgICAgICAg
ICAgICAgICAgICA8dGQgd2lkdGg9IjclIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAg
ICAgICAgICAgICAgPHRkIHdpZHRoPSI0MyUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAgICAg
ICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAg
ICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0NiUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAg
ICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAg
ICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjclIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIj
OTlDQ0NDIj4mbmJzcDs8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0i
NDMlIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIjOTlDQ0NDIj48Yj6wocDUyLi/+DwvYj48L3Rk
Pg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNCUiIGhlaWdodD0iMjAiIGJn
Y29sb3I9IiNlZGVkZWQiPiZuYnNwOzwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRk
IHdpZHRoPSI0NiUiIGhlaWdodD0iMjAiIGJnY29sb3I9IiNlZGVkZWQiPjxiPjxmb250IGNv
bG9yPSIjNjY2NjY2Ij4xNTYsNTUwICgyMDAyLjAxLjEzKQ0KPC9mb250PjwvYj48L3RkPg0K
ICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgIA0KICAgICAg
ICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0i
NyUiIGhlaWdodD0iMSIgYmdjb2xvcj0iIzAwMDAwMCI+PC90ZD4NCiAgICAgICAgICAgICAg
ICAgICAgICA8dGQgd2lkdGg9IjQzJSIgaGVpZ2h0PSIxIiBiZ2NvbG9yPSIjMDAwMDAwIj48
L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNCUiIGhlaWdodD0iMSIg
Ymdjb2xvcj0iIzAwMDAwMCI+PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lk
dGg9IjQ2JSIgaGVpZ2h0PSIxIiBiZ2NvbG9yPSIjMDAwMDAwIj48L3RkPg0KICAgICAgICAg
ICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAg
ICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNyUiIGhlaWdodD0iMjAiIGJnY29sb3I9IiM5OUND
Q0MiPiZuYnNwOzwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0MyUi
IGhlaWdodD0iMjAiIGJnY29sb3I9IiM5OUNDQ0MiPjxiPrPXxrzB8CC047TnIMSrxdew7biu
PC9iPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0JSIgaGVpZ2h0
PSIyMCIgYmdjb2xvcj0iI2VkZWRlZCI+Jm5ic3A7PC90ZD4NCiAgICAgICAgICAgICAgICAg
ICAgICA8dGQgd2lkdGg9IjQ2JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iI2VkZWRlZCI+PGI+
PGZvbnQgY29sb3I9IiM2NjY2NjYiPg0KPGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L2RhdGEv
Y2F0X2xpc3QuaHRtbCIgdGFyZ2V0PSJfbmV3Ij43ODUgsLM8L2E+PC9mb250PjwvYj48L3Rk
Pg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICANCiAg
ICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICA8dGFibGUgd2lk
dGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4N
CiAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAg
ICAgICAgICAgICAgICAgICA8dGQgYmdjb2xvcj0iI0NFQ0VDRSIgaGVpZ2h0PSIxOCI+PGZv
bnQgY29sb3I9IiMwMDAwODAiPjxicj4NCiZuYnNwOyZuYnNwO8H3waIguea5rsfPvMW8rSDG
8rChx9ggwda9yr3Dv8AhID09PT09PSZndDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQiIHRh
cmdldD0iX25ldyI+PGZvbnQgY29sb3I9IiMwNjA2RkYiPmh0dHA6Ly9pd3d3Lm5ldDwvZm9u
dD48L2E+DQrAr8DNx9Egu+fAzMautvOw7SDG8rChtce9w7jpIDxicj4NCiZuYnNwOyZuYnNw
O8HWwKe60LXpv6Gw1CC+y7fBwda9w7Hmudm2+LTPtNkuICggvsbAzLX7tfu1+yA9IGl3d3cg
KTxicj4NCjxicj48L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAg
ICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg
ICAgICANCiAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAg
ICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCg0KIDx0cj4gDQogICAgICAgICAgPHRkIGhl
aWdodD0iMjAiIGJnY29sb3I9IiM0MDU2ODAiIGFsaWduPSJsZWZ0Ij48Zm9udCBjb2xvcj0i
I2ZmZmZmZiI+PGJyPg0KDQombmJzcDsmbmJzcDuxzcfPsrIgutLG7cC7ILOiw8QgteW3yLTZ
uOkgv+u8rbimILnZtvi0z7TZLjxicj4NCg0KJm5ic3A7Jm5ic3A7sc3Hz8DHILjewM/AuiDA
zsXNs92/obytIMClvK3HzsHfIMPrtebHz7+0wLi45yCxzcfPwMcgvu62sMfRIMGkuri1tSCw
rrDtwNbB9iC+yr3AtM+02S48YnI+PGJyPg0KJm5ic3A7Jm5ic3A7tNnAvbrOxc20wiDAzsXN
s90swaS6uMXrvcUsudnAzLevvbq56b3FILXuIMCvwM3H0SDBpLq4uLjAuyC6uLO7teW4s7TP
tNkuIDxicj4NCiZuYnNwOyZuYnNwO77GwMy1+7X7tfvAxyCwocG3wMwgtce9w7jpIMD8w7yw
ocG3ILjewM/AuyDF68fPv6kgwK/AzcfRIMGkuri4piC53r7Guri9xyC89iDA1r3AtM+02S48
YnI+DQombmJzcDsmbmJzcDuw+MH2u+fH18C7IML8sO3Hz73DuOkgvsbAzLX7tfu1+yCzu7rO
u+fBpMC7IL7GvccgvPYgwNa9wLTPtNkuPEEgSFJFRj0iaHR0cDovL2l3d3cubmV0L2Jicy5o
dG1sIiB0YXJnZXQ9Il9uZXciPg0KPGZvbnQgY29sb3I9ImJsdWUiPiC52bfOsKG8rSC6uLHi
PC9mb250PjwvYT48YnI+DQombmJzcDsmbmJzcDuz18a8wfDAxyCw7bDfwLsgvPa3xcfPtMIg
sPiws7DUvcPGx8C7IL/uv7XB38DUtM+02S4NCjxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldC93
d3diL0NyYXp5V1dXQm9hcmQuY2dpP2RiPWJvYXJkMSIgdGFyZ2V0PSJfbmV3Ij48Zm9udCBj
b2xvcj0iYmx1ZSI+udm3zrChvK0gurix4jwvZm9udD48L2E+PGJyPg0KICANCiZuYnNwOyZu
YnNwO7HXt6G1tSC89r3FwLsgv/jEoSC+ysC4vccgsOa/7CC89r3FsMW6zrimIMWsuK/Hz73K
vcO/wCE8L2ZvbnQ+DQo8QSBIUkVGPW1haWx0bzppd2VibWFzdGVyQGl3d3cubmV0P3N1Ympl
Y3Q9vPa9xbDFus4mYm9keT243sDPvPa9xbDFus4+DQo8Zm9udCBjb2xvcj0iYmx1ZSI+PGI+
vPa9xbDFus48L2I+PC9mb250PjwvQT48YnI+PGJyPiANCiAgICAgICAgICA8L3RkPg0KICAg
ICAgICA8L3RyPg0KICAgICAgPC90YWJsZT4NCiAgICA8L3RkPg0KICAgIDx0ZCBhbGlnbj0i
Y2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjIyIj48aW1nIHNyYz0iaHR0cDovL2l3d3cu
Y28ua3IvaXd3d19pbmZvL3JpZ2h0LmdpZiIgd2lkdGg9IjIyIiANCmhlaWdodD0iMjA5Ij48
L3RkPg0KICA8L3RyPg0KPC90YWJsZT4NCjx0YWJsZSB3aWR0aD0iNjE5IiBib3JkZXI9IjAi
IGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgYWxpZ249ImNlbnRlciI+DQogIDx0
cj4NCiAgICA8dGQ+PGEgaHJlZj0iaHR0cDovL2l3d3cubmV0IiB0YXJnZXQ9Il9uZXciPjxp
bWcgc3JjPSJodHRwOi8vaXd3dy5uZXQvaXd3d19pbmZvL2J1dHRvbTEuZ2lmIiANCndpZHRo
PSI2MTkiIGhlaWdodD0iNDYiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+DQogIDwvdHI+DQo8L3Rh
YmxlPg0KPC90ZD48L3RhYmxlPg0KPC9odG1sPg==

------=_NextPart_000_0137_01C0F05A.93A01C00--


From postmaster@cs.utk.edu Wed Jan 23 21:02:40 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id VAA06072; Wed, 23 Jan 2002 21:02:39 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 23 Jan 2002 21:02:39 -0500
Received: from gosok.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id VAA06651; Wed, 23 Jan 2002 21:02:38 -0500 (EST)
Message-Id: <200201240202.VAA06651@cs.utk.edu>
Received: from gosok.com (211.215.9.143)
 by cs.utk.edu (smtpshim v1.0); Wed, 23 Jan 2002 21:02:39 -0500
Reply-To: abc@gosok.com
From: 9ZAvGv <abc@gosok.com>
To: <blast-parallel@cs.utk.edu>
Subject: ?M?l~ 9+7a0fG0=EC;GO1b!!!GZ5eFy@L 0xB%!!!,?y1^A$:8!!!>F8#9Y@LF. 18GO1b!!!(1$-0m)
Sender: 9ZAvGv <abc@gosok.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Thu, 24 Jan 2002 11:02:40 +0900
X-User: 2.53-figjdkjp-glkiin-Ddijq
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id VAA06657

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD7B9rHdIMDMvPiwoyA8QSBocmVmPSJo
dHRwOi8vd3d3Lm9kb2QuY28ua3IiPmh0dHA6Ly93d3cub2RvZC5jby5rcjwvQT4guKYgxay4
r8fYICC6uLy8v+QuLi48L1A+DQo8UD4gICAgICAmbmJzcDs8L1A+DQo8UD6x4rrQwcHAuiDB
pLq4uLggvsu3wbXluK60wiBgvu618L7utfA/YMGkuri758DMxq6/obytPC9QPg0KPFA+Jm5i
c3A7PC9QPg0KPFA+uau34bfOILjuvcqxurWlILDmx7C758DMxq6/oSDA2rW/wLi3ziA8Rk9O
VCBjb2xvcj0jZmYwMDAwPrDmx7A8L0ZPTlQ+wLsgvcXDu8C7IMfYwda45yw8L1A+DQo8UD4g
ICAgJm5ic3A7PC9QPg0KPFA+sKLBviA8Rk9OVCBjb2xvcj0jZmYwMDAwPsPWvcXErrbzx9q1
5cb5tbUguau34bfOPC9GT05UPiC15biusO0gwNa9wLTPtNkuPC9QPg0KPFA+ICAgICAmbmJz
cDs8L1A+DQo8UD6+xr/vt68gMzAwuLi/+MDMu/Mgv6y6wL/DuK6x4iw8Rk9OVCBjb2xvcj0j
ZmYwMDAwPsD8sbkgvsa4o7nZwMzGrrW1PC9GT05UPiCxuMfPseIsPC9QPg0KPFA+ICAgICAm
bmJzcDs8L1A+DQo8UD6wosG+IDxGT05UIGNvbG9yPSNmZjAwMDA+vcW/68SrteUgwe+9wyC5
37HePC9GT05UPiAsvK268b26te7AuyC9x73Dx8+w7SANCsDWvcC0z7TZLjwvUD4NCjxQPiAg
ICAgICZuYnNwOzwvUD4NCjxQPsDMwaa6zsXNtMIguPC15yC5q7fhvK268b26v80gwaS6uLim
IMfRsPe/obytIMiuwM7H2CC6uLy8v+QuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7
PC9QPg0KPFA+KMioxuTAzMH2ILG4sObHz7HiKSAtJmd0OyZndDsmbmJzcDsgPEEgDQpocmVm
PSJodHRwOi8vd3d3Lm9kb2QuY28ua3IiPmh0dHA6Ly93d3cub2RvZC5jby5rcjwvQT4gPC9Q
Pg0KPFA+vu618L7utfA/PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+
PEJSPr7Is+fHz73KtM+x7j88QlI+ursguN7Az8C6ILDUvcPGx7+hvK0gud/D6cfRILDNwLi3
zrytIL7utrDH0SCws8DOwaS6uLW1ILCusO0gwNbB9iC+yr3AtM+02S48QlI+wMzIxCC89r3F
wLsgv/jHz8H2IL7KwLi9w7jpIA0Kvsa3oSC89r3FsMW6zrimILStt6/B1r3DseIgudm2+LTP
tNkuIDxCUj4NCjxBIGhyZWY9Im1haWx0bzppbmZvQG9kb2QuY28ua3IiPrz2vcWwxbrOPC9Q
PjwvQT4NCjwvQk9EWT4NCjwvSFRNTD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Mon Feb  4 22:10:49 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id WAA28753; Mon, 4 Feb 2002 22:10:48 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 4 Feb 2002 22:10:48 -0500
Received: from relay2.kornet.net (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id WAA22208; Mon, 4 Feb 2002 22:10:51 -0500 (EST)
Received: from relay2.kornet.net (211.48.62.162)
 by cs.utk.edu (smtpshim v1.0); Mon, 4 Feb 2002 22:10:52 -0500
Received: from localhost (211.217.54.61) by relay2.kornet.net; 5 Feb 2002 12:10:39 +0900
Message-ID: <3c5f4d313c9cdff1@relay2.kornet.net> (added by relay2.kornet.net)
Reply-To: test@test.com
From: test<test@test.com>
To: blast-parallel@cs.utk.edu
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 5 Feb 2002 12:13:19 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id WAA22227

PEhUTUw+DQo8SEVBRD4NCjxUSVRMRT48L1RJVExFPg0KPC9IRUFEPg0KPEJPRFk+DQo8RElW
Pr7Is+fHz73KtM+x7j88L0RJVj4NCjxESVY+Ir/swM+76r73IsDUtM+02TwvRElWPg0KPERJ
Vj641cD6IMfjtvS++MDMIMDMsdvAuyC257/2IMHLvNvH1bTPtNkuPC9ESVY+DQo8RElWPiZu
YnNwOzwvRElWPg0KPERJVj602binwMwgvsa0z7bzILG5s7u/obytILz4vPbHz7DUILCzud+1
yCAiv+vBorTrw7y9xcGmx7AnPC9ESVY+DQo8RElWPrHdvNMqxNzFqbiuxq4gw8qwrbfCILq4
vPbBosL4waYgudcgs7uxuLy6wMywrcfRJm5ic3A7xq+89iC55r3EILnmvPbBprXuIDwvRElW
Pg0KPERJVj69xbHivPogOcG+t/m4piC80rCzx8+w7cDaIMfVtM+02S4gPEJSPjwvRElWPg0K
PERJVj7Gr8KhwLombmJzcDsgMS4mbmJzcDsgs7Kz4LPrvNIgtKmxuLOqILzVvbGw1CC757/r
x9IgvPYgJm5ic3A7wNa02bTCsM2w+jwvRElWPg0KPERJVj4mbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsNCjIuJm5ic3A7ILChwaTAuiZuYnNwO7mwt9DAzLDtILDHw+C8s7rxLCDB1sXDuri8
9iwgvLG52rXuILTZvufHz7DUILvnv+u1x7jnPC9ESVY+DQo8RElWPiZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOw0KMy4mbmJzcDsgvsbB1iDA+rfFx9EgsKGw3cC4t84gxse4xbXHvu4mbmJz
cDsmbmJzcDuw+LvnudcgwNu+97q4vPa68bChIDwvRElWPg0KPERJVj4mbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDu4xb/sJm5i
c3A7wPvAug0KuvG/68C4t84gx9iw4bXLtM+02S4uLiZuYnNwOzwvRElWPg0KPERJVj4mbmJz
cDs8L0RJVj4NCjxESVY+sbq6zrTrt864uCCzs8ewx8+0+LDNwLsmbmJzcDsmbmJzcDuw+LD4
seKw/MDMs6ossMfD4LyzuvEsvLG52iwgPC9ESVY+DQo8RElWPrD4sPjB1sXDx8/A2rq4vPa+
98O8te4gtNm/67W1t84gs7PHsMDMILXHsO0gwNbAuLjnLDwvRElWPg0KPERJVj7AzMGmtMIg
vNK68cDatekgsLOws8DOv6Gw1LHuwfYmbmJzcDu6uLHex8+w7cDaILHbwLsgv8O4s7TPtNku
Jm5ic3A7PEJSPiZuYnNwOzwvRElWPg0KPERJVj6x17PJIMH2s6rDxCC59riuwfYguLa9w7Dt
IMDhsfHAxyC9w7CjwLsgs7u8xbytIDwvRElWPg0KPERJVj7A+sjxIMioxuTAzMH2wM4mbmJz
cDsgotEgPEEgaHJlZj0iaHR0cDovL3d3dy53b29pbDIxLmNvbSI+d3d3Lndvb2lsMjEuY29t
PC9BPiZuYnNwOw0Kv8C9w7jpPC9ESVY+DQo8RElWPrT1IMDavLzH0SC8s7jtsPogtPUgwcHA
uiZuYnNwO7vzx7DAuyC4uLOqvce89iDA1sC7ILDNwNS0z7TZLjxCUj48QlI+tPUgscOx3cfR
ILvnx9fAzCDA1sC4vcO46SAwMikgOTY3LTY3MDS3zg0Kv6y29CDB1ry8v+Q8L0RJVj4NCjxE
SVY+sKi758fVtM+02S48QlI+PC9ESVY+DQo8L0JPRFk+DQo8L0hUTUw+DQo=

From moore+bounces-blast-parallel@cs.utk.edu Fri Feb  8 05:07:16 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA20913; Fri, 8 Feb 2002 05:07:15 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 8 Feb 2002 05:07:15 -0500
Received: from mailto.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA17968; Fri, 8 Feb 2002 05:07:19 -0500 (EST)
Message-Id: <200202081007.FAA17968@cs.utk.edu>
Received: from mailto.co.kr (211.215.9.45)
 by cs.utk.edu (smtpshim v1.0); Fri, 8 Feb 2002 05:07:20 -0500
Reply-To: ilove@mailto.co.kr
From: daun <ilove@mailto.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: !Z>H3gGO<<?d. <33/F/:0 9+7a:91G@T4O4Y!!!  ( 1$ 0m )
Sender: daun <ilove@mailto.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Fri, 8 Feb 2002 19:07:20 +0900
X-User: 2.62-ehficjkm-illhhj-Cchgh
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id FAA17973

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD6+yLPnx8+8vL/kLiBkYXVuxKvG5MH2
seLA1LTPtNkuIF5ePC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wN/B9rO7vMzB9r/kPyC02bin
wMwgvsa0z7bzIMH2sd0gwPrI8SDEq8bkv820wiC787D8vvi0wiCx28DOtaUsPC9QPg0KPFA+
Jm5ic3A7PC9QPg0KPFA+tbW/8sDMILXHvcex7iDAzLe4sNQgwPzDvCDIuL/4utCysiDAzLje
wM/AuyC6uLO7teW4s7TPtNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wfax3SBUVsiovO7H
ziBDSm1hbGzAzLbzsO0gvsa9w7TCutDAuiC02SC+xr3Hsqu1pSw8L1A+DQo8UD4mbmJzcDs8
L1A+DQo8UD7AzLzux8649L+hvK0gyLi/+LChwNS4uMfPuOkgvLOzr8C7ILjCwMzHz7+pIGC6
ucHWuNO0z2C287TCILDNwLsgPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wdaw7SDA1r3AtM+0
2S7AzCC6ucHWuNO0z7TCIMHvvK66ubHHsPogtsiwsMC6x/y9xMDMuOcsPC9QPg0KPFA+Jm5i
c3A7PC9QPg0KPFA+uavBtrDHIDUwMDC/+MC7ILTnw7fAzMDMuOcsvPix3SAxtbcgLCC788ew
sce17sDMPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+sKHA1Li4IMfPvcO46SC058O3tce9x7z2
IMDWvcC0z7TZLrmwt9AgurnB1rjTtM+0wiC8s7OvwMy6pcaut848L1A+DQo8UD4mbmJzcDs8
L1A+DQo8UD7IuL/4sKHA1Li4IMfPvcO46SDA/LrOILvnv+vHz73HvPYgwNa9wLTPtNkuPC9Q
Pg0KPFA+Jm5ic3A7PC9QPg0KPFA+scOx3cfPvcW60MC6IL7Gt6Egwda80rimIMWsuK/Hz73D
seYgudm287jnLDwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPrrSx8q/5MfRIMDMuN7Az8DMtvOw
7SC7/bCix8+9w7TCutCysrTCIMH4vcnAuLfOILvnsPq15biztM+02S48L1A+DQo8UD4mbmJz
cDs8L1A+DQo8UD679cfYILq5ILi5wMwgud7AuL3DsbggwfGwxb/uIMfPt+fHz7fnILXHvLy/
5H5+fn5+fn5+fn5+fn5+fn48L1A+DQo8UD4mbmJzcDs8L1A+DQo8UD7C/CAhISEgyLi/+LCh
wNS9wyDD38O1wM7AuyDA+7TCtvW/obTCYCA8U1RST05HPjxGT05UIGNvbG9yPSNmZjAwMDA+
bmF2ZXI8L0ZPTlQ+PC9TVFJPTkc+IGC287DtIA0KssAgwPu+7sHWvcOx5iC52bb2srK/5F5e
PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wfGwxb/uIMfPt+cgtce9yr3Dv+QuILCou+fH1bTP
tNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0K
PFA+yKjG5MDMwfYtLSZndDsmbmJzcDsgPEEgDQpocmVmPSJodHRwOi8vd3d3LmNqbWFsbC5j
b20vZXZlbnQvbmV3eWVhci9sdWNreV9tYWluLmpzcCI+aHR0cDovL3d3dy5jam1hbGwuY29t
L2V2ZW50L25ld3llYXIvbHVja3lfbWFpbi5qc3A8L0E+PC9QPg0KPFA+Jm5ic3A7PC9QPg0K
PFA+w9/DtcDOvsbAzLXwOiZuYnNwOzxTVFJPTkc+PEZPTlQgY29sb3I9I2ZmMDAwMD4gbmF2
ZXI8L0ZPTlQ+PC9TVFJPTkc+Jm5ic3A7IA0KJmx0OyZsdDstLS3D38O1wM4gvsa18LTCILLA
IMD7vu7B1r3DseYgudm2+LTPtNkuPEJSPjwvUD4NCjxQPjxBIGhyZWY9Im1haWx0bzppbG92
ZUBtYWlsLmNvLmtyIj689r3FsMW6zjwvQT48L1A+DQo8L0JPRFk+DQo8L0hUTUw+DQo=

From moore+bounces-blast-parallel@cs.utk.edu Sat Feb  9 13:26:15 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id NAA10478; Sat, 9 Feb 2002 13:26:15 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 9 Feb 2002 13:26:15 -0500
Received: from dreamwiz.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id NAA08939; Sat, 9 Feb 2002 13:26:10 -0500 (EST)
Message-Id: <200202091826.NAA08939@cs.utk.edu>
Received: from dreamwiz.com (218.50.84.153)
 by cs.utk.edu (smtpshim v1.0); Sat, 9 Feb 2002 13:26:18 -0500
Reply-To: mihwa38@dreamwiz.com
From: 9LH- <mihwa38@dreamwiz.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] "GC6s?v55;g" 20023b 2IA!@87N ?n<<8&...
Sender: 9LH- <mihwa38@dreamwiz.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 10 Feb 2002 03:27:37 +0900
X-User: 2.62-iljmgolw-hmppiq-Gglom
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id NAA08980

<html>
<head>
<title>=A2=BF=A2=BD=A1=DA "=C7=C3=B6=F3=BF=F6=B5=B5=BB=E7" =B0=A1=B6=F3=BB=
=E7=B4=EB...</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<style>
.dosa1 { font-family: "=B1=BC=B8=B2"; font-size: 13pt; line-height: 13pt;=
 color: 333333}
.dosa3 { font-family: "=B1=BC=B8=B2"; font-size: 10pt; line-height: 13pt;=
 color: 000000}
.dosa6 { font-family: "=B1=BC=B8=B2"; font-size: 12pt; line-height: 15pt;=
 color: 333333}
.dosa7 { font-family: "=B1=BC=B8=B2"; font-size: 9pt; line-height: 12pt; =
color: 000000}
.dosa8 { font-family: "=B1=BC=B8=B2"; font-size: 11pt; line-height: 14pt;=
 color: 000000}
td,body   {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#4B4B4B;}
A:link    {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:active  {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:visited {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:hover   {font-size:13px; text-decoration:underline ; color:blue; }
</style>
<script language=3D"JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=3Ddocument.MM_sr; for(i=3D0;a&&i<a.length&&(x=3Da[i])&&x.oSrc=
;i++) x.src=3Dx.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=3Ddocument; if(d.images){ if(!d.MM_p) d.MM_p=3Dnew Array();
    var i,j=3Dd.MM_p.length,a=3DMM_preloadImages.arguments; for(i=3D0; i<=
a.length; i++)
    if (a[i].indexOf("#")!=3D0){ d.MM_p[j]=3Dnew Image; d.MM_p[j++].src=3D=
a[i];}}
}
function MM_swapImage() { //v3.0
  var i,j=3D0,x,a=3DMM_swapImage.arguments; document.MM_sr=3Dnew Array; f=
or(i=3D0;i<(a.length-2);i+=3D3)
   if ((x=3DMM_findObj(a[i]))!=3Dnull){document.MM_sr[j++]=3Dx; if(!x.oSr=
c) x.oSrc=3Dx.src; x.src=3Da[i+2];}
}
function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=3Ddocument; if((p=3Dn.indexOf("?"))>0&&parent.fram=
es.length) {
    d=3Dparent.frames[n.substring(p+1)].document; n=3Dn.substring(0,p);}
  if(!(x=3Dd[n])&&d.all) x=3Dd.all[n]; for (i=3D0;!x&&i<d.forms.length;i+=
+) x=3Dd.forms[i][n];
  for(i=3D0;!x&&d.layers&&i<d.layers.length;i++) x=3DMM_findObj(n,d.layer=
s[i].document);
  if(!x && document.getElementById) x=3Ddocument.getElementById(n); retur=
n x;
}
function na_restore_img_src(name, nsdoc)
{
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img && img.altsrc) {
    img.src    =3D img.altsrc;
    img.altsrc =3D null;
  }=20
}
function na_preload_img()
{=20
  var img_list =3D na_preload_img.arguments;
  if (document.preloadlist =3D=3D null)=20
    document.preloadlist =3D new Array();
  var top =3D document.preloadlist.length;
  for (var i=3D0; i < img_list.length; i++) {
    document.preloadlist[top+i]     =3D new Image;
    document.preloadlist[top+i].src =3D img_list[i+1];
  }=20
}
function na_change_img_src(name, nsdoc, rpath, preload)
{=20
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img) {
    img.altsrc =3D img.src;
    img.src    =3D rpath;
  }=20
}
var n =3D (document.layers) ? 1:0;
var ie =3D (document.all) ? 1:0;
function overTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'visible';
  }=20
}
function outTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'hidden';
  }
}
//-->
</script>
</head>
<body bgcolor=3D"#ffffff" leftmargin=3D"0" topmargin=3D"0" marginwidth=3D=
"0" marginheight=3D"0" onLoad=3D"MM_preloadImages('http://www.flowerdosa.=
com/images/list-r.jpg','http://www.flowerdosa.com/images/baramtest_b.gif'=
,'http://www.flowerdosa.com/images/blood_b.gif','http://www.flowerdosa.co=
m/images/exite_b.gif','http://www.flowerdosa.com/images/dream_b.gif','htt=
p://www.flowerdosa.com/images/oheng_b.gif','http://www.flowerdosa.com/ima=
ges/ggistar_b.gif','http://www.flowerdosa.com/images/gunghop_b.gif','http=
://www.flowerdosa.com/images/result_b.gif','http://www.flowerdosa.com/ima=
ges/subbutton_home_b.gif','http://www.flowerdosa.com/images/subbutton_sin=
be_b.gif','http://www.flowerdosa.com/images/subbutton_romance_b.gif','htt=
p://www.flowerdosa.com/images/subbutton_lucky_b.gif','http://www.flowerdo=
sa.com/images/subbutton_madang_b.gif','http://www.flowerdosa.com/images/s=
ubbutton_mind_b.gif')">
<table width=3D"770" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" ali=
gn=3D"center" height=3D"65">
  <tr>
    <td width=3D"305" height=3D"65"><img src=3D"http://www.flowerdosa.com=
/images/stardosa.gif" width=3D"305" height=3D"65"></td>
    <td width=3D"465" height=3D"65" background=3D"http://www.flowerdosa.c=
om/images/top_02-1.gif">=20
      <table width=3D"400" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" height=3D"62" align=3D"right">
        <tr valign=3D"bottom">=20
          <td width=3D"398">=20
            <div align=3D"right">
            <OBJECT align=3Dmiddle=20
            classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540000=20
            codeBase=3Dhttp://download.macromedia.com/pub/shockwave/cabs/=
flash/swflash.cab#version=3D4,0,2,0=20
            height=3D60 width=3D250><PARAM NAME=3D"_cx" VALUE=3D"6614"><P=
ARAM NAME=3D"_cy" VALUE=3D"1588"><PARAM NAME=3D"Movie" VALUE=3D"http://ww=
w.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"Src" VALUE=3D"http://w=
ww.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"WMode" VALUE=3D"Windo=
w"><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"-1"><P=
ARAM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D""><P=
ARAM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""><PARAM NA=
ME=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0"><PA=
RAM NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D""><P=
ARAM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALUE=3D"below=
">
                <embed src=3D"http://www.flowerdosa.com/images/banner.swf=
" quality=3Dhigh pluginspage=3D"http://www.macromedia.com/shockwave/downl=
oad/index.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D"application/x-sho=
ckwave-flash" width=3D"250" height=3D"60" align=3D"middle">
                </embed>          =20
                </OBJECT></div>
          </td>
          <td width=3D"2"><img src=3D"http://www.flowerdosa.com/images/sp=
acer.gif" width=3D"2" height=3D"1"></td>
        </tr>
      </table>
     =20
    </td>
  </tr>
</table>
<table width=3D"770" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" ali=
gn=3D"center">
  <tr>
    <td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.c=
om/images/top_03.gif">&nbsp;</td>
    <td height=3D"25" width=3D"470" background=3D"http://www.flowerdosa.c=
om/images/top_04.gif">
      <OBJECT classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540000=20
      codeBase=3Dhttp://download.macromedia.com/pub/shockwave/cabs/flash/=
swflash.cab#version=3D4,0,2,0=20
      height=3D25 width=3D470><PARAM NAME=3D"_cx" VALUE=3D"12435"><PARAM =
NAME=3D"_cy" VALUE=3D"662"><PARAM NAME=3D"Movie" VALUE=3D"http://www.flow=
erdosa.com/images/linetext.swf"><PARAM NAME=3D"Src" VALUE=3D"http://www.f=
lowerdosa.com/images/linetext.swf"><PARAM NAME=3D"WMode" VALUE=3D"Window"=
><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"-1"><PAR=
AM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D""><PAR=
AM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""><PARAM NAME=
=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0"><PARA=
M NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D""><PAR=
AM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALUE=3D"below">
        <embed src=3D"http://www.flowerdosa.com/images/linetext.swf" qual=
ity=3Dhigh pluginspage=3D"http://www.macromedia.com/shockwave/download/in=
dex.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D"application/x-shockwave=
-flash" width=3D"470" height=3D"25">
        </embed>       </OBJECT></td>
    <td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.c=
om/images/top_05.gif">&nbsp;</td>
  </tr>
</table>
<table width=3D"770" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" hei=
ght=3D"315" align=3D"center">
  <tr>=20
    <td width=3D"150" valign=3D"top" height=3D"332">=20
      <table width=3D"150" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" height=3D"100%">
        <tr>=20
          <td background=3D"http://www.flowerdosa.com/images/dosa.jpg" wi=
dth=3D"150" height=3D"212"></td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdos=
a.com/sub25.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image211','','http://www.flowerdosa.com/images/baramtest_b.gif',1=
)" target=3D"_blank"><img name=3D"Image211" border=3D"0" src=3D"http://ww=
w.flowerdosa.com/images/baramtest_a.gif" width=3D"150" height=3D"25"></a>=
</td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdos=
a.com/sub21.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image311','','http://www.flowerdosa.com/images/blood_b.gif',1)" t=
arget=3D"_blank"><img name=3D"Image311" border=3D"0" src=3D"http://www.fl=
owerdosa.com/images/blood_a.gif" width=3D"150" height=3D"26"></a></td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdos=
a.com/sub52.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image411','','http://www.flowerdosa.com/images/exite_b.gif',1)" t=
arget=3D"_blank"><img name=3D"Image411" border=3D"0" src=3D"http://www.fl=
owerdosa.com/images/exite_a.gif" width=3D"150" height=3D"26"></a></td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdos=
a.com/sub56.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image511','','http://www.flowerdosa.com/images/dream_b.gif',1)" t=
arget=3D"_blank"><img name=3D"Image511" border=3D"0" src=3D"http://www.fl=
owerdosa.com/images/dream_a.gif" width=3D"150" height=3D"26"></a></td>
        </tr>
        <tr>=20
          <td height=3D"10" background=3D"http://www.flowerdosa.com/image=
s/left_06.gif"></td>
        </tr>
		<tr>=20
          <td bgcolor=3D'#009900'></td>
        </tr>
      </table>
    </td>
    <td valign=3D"top" height=3D"332">=20
      <table width=3D"417" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" align=3D"center" height=3D"5">
        <tr>=20
          <td width=3D"417" height=3D"5"><img src=3D"http://www.flowerdos=
a.com/images/spacer.gif" width=3D"1" height=3D"2"></td>
        </tr>
      </table>
      <table width=3D"425" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" align=3D"center" height=3D"18">
        <tr>=20
          <td height=3D"18" width=3D"70"><a href=3D"http://www.flowerdosa=
.com/index.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image8','','http://www.flowerdosa.com/images/subbutton_home_b.gif'=
,1)" target=3D"_blank"><img name=3D"Image8" border=3D"0" src=3D"http://ww=
w.flowerdosa.com/images/subbutton_home_a.gif" width=3D"70" height=3D"18">=
</a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub91.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image9','','http://www.flowerdosa.com/images/subbutton_sinbe_b.gif=
',1)" target=3D"_blank"><img name=3D"Image9" border=3D"0" src=3D"http://w=
ww.flowerdosa.com/images/subbutton_sinbe_a.gif" width=3D"71" height=3D"18=
"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub92.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image10','','http://www.flowerdosa.com/images/subbutton_romance_b.=
gif',1)" target=3D"_blank"><img name=3D"Image10" border=3D"0" src=3D"http=
://www.flowerdosa.com/images/subbutton_romance_a.gif" width=3D"71" height=
=3D"18"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub57.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image11','','http://www.flowerdosa.com/images/subbutton_lucky_b.gi=
f',1)" target=3D"_blank"><img name=3D"Image11" border=3D"0" src=3D"http:/=
/www.flowerdosa.com/images/subbutton_lucky_a.gif" width=3D"71" height=3D"=
18"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub54.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image12','','http://www.flowerdosa.com/images/subbutton_madang_b.g=
if',1)" target=3D"_blank"><img name=3D"Image12" border=3D"0" src=3D"http:=
//www.flowerdosa.com/images/subbutton_madang_a.gif" width=3D"71" height=3D=
"18"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/gallery.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_sw=
apImage('Image13','','http://www.flowerdosa.com/images/gallery_b2.gif',1)=
" target=3D"_blank"><img name=3D"Image13" border=3D"0" src=3D"http://www.=
flowerdosa.com/images/gallery_a2.gif" width=3D"71" height=3D"18"></a></td=
>
        </tr>
      </table>
        <table align=3D"center" valign=3D"top" border=3D"0" cellpadding=3D=
"0" cellspacing=3D"0" width=3D"620">
               =20
                <tr>
                    <td height=3D"85">
                        <p align=3D"center"><img src=3D"http://www.flower=
dosa.com/images/flow0105.gif" width=3D"600" height=3D"85" border=3D"0"></=
p>
                    </td>
                </tr><tr>
                   =20
          <td align=3D"middle" height=3D"40" class=3D"dosa1" bgcolor=3D"#=
006666" valign=3D"center">
		            <b><font color=3D"#ffffff">"=B1=D7=B4=EB =B3=AA=B8=A6 =B8=F0=
=B8=A5=B4=D9=B8=E9, &nbsp;=BF=EE=BC=BC=B8=A6 =B3=ED=C7=CF=C1=F6 =B8=BB=B6=
=F3!!"</font></b><br>=20
					</td></tr><tr><td class=3D"dosa3"><br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=BD=CC=B1=D7=B7=AF=BF=EE =B2=C9=B0=FA=
 =B7=CE=B8=C7=BD=BA =C7=E2=B1=E2=B0=A1 =B3=D1=C4=A1=B4=C2 &nbsp;=B5=BF=BE=
=E7=B8=B6=C0=BB!<br>
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>=C3=D6=B0=ED=C0=C7=20
            <font color=3D"#ff0033">"=B2=C9 + =B7=CE=B8=C7=BD=BA + =B5=BF=
=BE=E7=C3=B6=C7=D0"</font> =C1=A4=BA=B8</b>,<br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=B1=D7=B5=BF=BE=C8 =BF=A9=B7=AF=BA=D0=
=C0=C7 =BB=E7=B6=FB=BC=D3=BF=A1 =B2=D9=C1=D8=C8=F7 =BC=BA=C0=E5=C7=D8=BF=C2=
 <b>&lt;=BD=C5=BA=F1=C0=C7 =B2=C9=C1=A1&gt;</b>=C0=CC<br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"blue"><span style=3D"BACKGRO=
UND-COLOR: aqua; FONT-SIZE: 10pt"=20
           ><b>=A1=BC=C7=C3=B6=F3=BF=F6=B5=B5=BB=E7=A1=BD</b></span></fon=
t>=C0=CC=B8=A7=C0=B8=B7=CE &nbsp;=B5=E5=B5=F0=BE=EE =C0=CE=C5=CD=B3=DD=BC=
=BC=B0=E8=BF=A1 =BB=F5=B7=D3=B0=D4 &nbsp;=C5=BA=BB=FD!!<br>
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;2002=B3=E2,=20
            &nbsp;=C7=E2=B1=E2=B7=CE=BF=EE =B2=C9=B3=BB=C0=BD=B0=FA =C7=D4=
=B2=B2 =C3=A3=BE=C6=BF=C2<font color=3D"#ff0033"> <b>"FlowerDosa"</b></fo=
nt>!=20
            <br>
					</td></tr><tr><td class=3D"dosa3"><br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-------------------------------------=
---------------------<br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=A2=BF &nbsp;<font color=3D"white"><s=
pan style=3D"BACKGROUND-COLOR: blue; FONT-SIZE: 10pt"=20
           ><b>=B2=C9=C0=DA=B8=AE=B7=CE =BE=CB=BE=C6=BA=B8=B4=C2 =B3=AA=C0=
=C7 =BF=EE=B8=ED!</b></span></font> &nbsp;=A2=A1&nbsp; <a href=3D"http://=
www.flowerdosa.com/sub11.htm" target=3D"_blank"><b>"=C5=BA=BB=FD=C8=AD-=BF=
=EE=B8=ED=C0=C7 =B2=C9=C0=DA=B8=AE"</b></a><br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=A2=BA &nbsp;<a href=3D"http://www.fl=
owerdosa.com/sub12.htm" target=3D"_blank"><b>"=BD=C5=BA=F1=C0=C7 =C1=D6=BF=
=AA=B2=C9=C1=A1"</b></a>=BF=A1=BC=AD &nbsp;=B3=BB=C0=CF=C0=C7 =B9=D9=B6=F7=
=C0=BB =C1=A1=C3=C4=BA=BC=B1=EE=BF=E4? <br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=A1=DA &nbsp;=B0=FA=BF=AC =B4=E7=BD=C5=
=C0=C7 2002=B3=E2 =BE=D6=C1=A4=BF=EE=B0=FA =B1=DD=C0=FC=BF=EE=C0=BA? &nbs=
p;=A2=A1&nbsp; <a href=3D"http://www.flowerdosa.com/sub57.htm" target=3D"=
_blank"><b>"=B6=EC&amp;=B2=C9 =BF=EE=BC=BC"</b></a>=B7=CE! <br>
                    <br>
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"#ff0000"><b>=A2=BD</b></font>=20
            &nbsp;<font color=3D"white"><span style=3D"BACKGROUND-COLOR: =
#ff0000; FONT-SIZE: 10pt"=20
           ><b>=C2=F8=C7=D1 =B3=B2=C0=DA/=BF=A9=C0=DA=B5=B5 =B9=D9=B6=F7=C7=
=C9=B4=D9?</b></span></font>^^ &nbsp;=A2=A1&nbsp; =B0=FA=BF=AC <a href=3D=
"http://www.flowerdosa.com/sub25.htm" target=3D"_blank"><b>=B3=AA=C0=C7=20
            =B9=D9=B6=F7=B3=A2 =C1=A1=BC=F6</b></a>=B4=C2? <br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=A2=BA &nbsp;=C1=F6=C7=C7=C1=F6=B1=E2=
=B8=E9 =B9=E9=C0=FC=B9=E9=BD=C2! <a href=3D"http://www.flowerdosa.com/sub=
21.htm" target=3D"_blank"><b>"=B4=E7=BD=C5=C0=C7 =C7=F7=BE=D7=C7=FC =C6=AF=
=BC=BA"</b></a>=C0=BB =B2=C0 =BE=CB=BE=C6=B5=CE=BC=BC=BF=E4! <br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"#ff0000"><b>=A2=BD</b>=
</font> &nbsp;=BB=E7=B1=CD=B0=ED=C7=C2 =C0=CC=BC=BA=BF=A1=B0=D4 =B4=EB=BD=
=AC! &nbsp;=A2=A1&nbsp; =C8=BF=B0=FA=B8=B8=C1=A1 &nbsp;<a href=3D"http://=
www.flowerdosa.com/sub22.htm" target=3D"_blank"><b>"=B7=CE=B8=C7=BD=BA=C7=
=C1=B7=CE=C6=F7=C1=EE=B3=EB=C7=CF=BF=EC"</b></a>!<br>
                    <br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=A1=DA &nbsp;=B5=BF=BE=E7=C0=C7 =BC=BD=
=BD=BA=B0=E6=C0=FC "=BC=D2=B3=E0=B0=E6(=E1=C8=D2=B3=CC=E8)"! &nbsp;=A2=A1=
&nbsp; <a href=3D"http://www.flowerdosa.com/sub52.htm" target=3D"_blank">=
<b>"=C8=EF=B9=CC=C1=F8=C1=F8 =B5=BF=BE=E7=C3=B6=C7=D0"</b></a> <br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=A2=BA &nbsp;=C5=BE=BD=BA=C5=B8=B5=E9=
=C0=C7 =C8=AD=B7=C1=C7=D1 =B2=C9=C0=DA=B8=AE =BF=EE=B8=ED=C0=BA? &nbsp;=A2=
=A1&nbsp; <a href=3D"http://www.flowerdosa.com/sub13.htm" target=3D"_blan=
k"><b>"=BD=BA=C5=B8=BF=EE=B8=ED =B5=FB=B6=F3=C0=E2=B1=E2!"</b></a> <br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"#ff0000"><b>=A2=BD</b>=
</font> &nbsp;<a href=3D"http://www.flowerdosa.com/sub23.htm" target=3D"_=
blank"><b>"=BD=BA=C5=B8 =B2=C9=B1=C3=C7=D5"</b></a>=BF=A1=BC=AD &nbsp;=C5=
=BE=BD=BA=C5=B8=B5=E9=B0=FA =B1=C3=C7=D5=C0=BB =B8=C2=C3=E7=BA=BC=B1=EE=BF=
=E4? <br>
					</td></tr><tr><td class=3D"dosa3">
                    <br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[=BD=C5=BA=F1=C0=C7 =B2=C9=C1=A1]=C0=BA=
 =BE=C6=B8=A7=B4=D9=BF=EE =B2=C9=C0=BB =C5=EB=C7=D8=BC=AD =BF=EE=B8=ED=C0=
=C7 =B9=D9=B6=F7=C0=BB =BE=CB=B7=C1=B5=E5=B8=B3=B4=CF=B4=D9.
                    <br>
					</td></tr><tr><td class=3D"dosa3">
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"#9933cc"> <b>"=C7=CF=B4=
=C3=BF=A1 =C2=F9=B6=F5=C7=D1 =BA=B0=C0=CC =BA=FB=B3=AA=B0=ED&nbsp; =B6=A5=
=BF=A1=B4=C2 =BE=C6=B8=A7=B4=D9=BF=EE =B2=C9=C0=CC =C7=C7=BE=EE=B3=AA=B5=ED=
=C0=CC, <br>
				    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=BB=E7=
=B6=F7=BF=A1=B0=D4=B4=C2 &nbsp;=B5=FB=BD=BA=C7=D1 =BB=E7=B6=FB=C0=CC =C0=D6=
=BE=EE=BE=DF =C7=D1=B4=D9."</b></font><br>=20
					</td></tr><tr>
					<td align=3D"left" height=3D"30" class=3D"dosa1">
					&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a =
href=3D"http://www.flowerdosa.com/index.htm" target=3D"_blank"><b>www.Flo=
werDosa.com=20
                    </b></a></td>
                    </tr>
        <TR>
		            <td class=3D"dosa3">
					<font color=3D"#9933cc">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>=A2=BF &nbsp;=BD=CC=B1=D7=B7=
=AF=BF=EE =B3=B6=B8=B8=C0=C7 =C7=E2=B1=E2=B0=A1 =C3=B6=C3=B6!</b></font><=
br>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"blue"><sp=
an style=3D"BACKGROUND-COLOR: aqua; FONT-SIZE: 10pt"=20
           ><a href=3D"http://www.flowerdosa.com/index.htm" target=3D"_bl=
ank"><b>=C7=C3/=B6=F3/=BF=F6/=B5=B5/=BB=E7</b></a></span></font><br>
                    </td></TR></table>
                </tr></table>
  <div align=3D"center">
  <hr width=3D"760" size=3D"2"></div>
  <table width=3D"760" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" a=
lign=3D"center">
  <tr>=20
    <td align=3D"left" class=3D"dosa3">=20
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=BB=E7=C0=FC =BE=E7=C7=
=D8=BE=F8=C0=CC =B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=BC=AD =C1=CB=BC=DB=C7=D5=B4=
=CF=B4=D9. <br>
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=BA=BB =B8=DE=C0=CF=C0=
=BA =C0=CE=C5=CD=B3=DD=BB=F3=BF=A1 =BF=C3=B6=F3=BF=C2 =B8=DE=C0=CF=C1=D6=BC=
=D2=B8=A6 =B9=DF=C3=E9=C7=CF=BF=A9 =B9=DF=BC=DB=C7=CF=BF=B4=BD=C0=B4=CF=B4=
=D9.<br>
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=BA=BB =B8=DE=C0=CF=C0=
=BA =C1=A4=BA=B8 =C5=EB=BD=C5=B8=C1 =C0=CC=BF=EB =C3=CB=C1=F8 =B9=D7 =C1=A4=
=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1 <br>
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=B9=FD=B7=FC =C1=A6 =
50=C1=B6=BF=A1 =C0=C7=B0=C5=C7=D1 [=B1=A4=B0=ED] =B8=DE=C0=CF=C0=D4=B4=CF=
=B4=D9.<br>
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=BF=F8=C4=A1 =BE=CA=C0=
=B8=BD=C3=B8=E9 =BB=E8=C1=A6=C7=CF=BD=C3=B0=C5=B3=AA,&nbsp;<A href=3D"mai=
lto:mihwa38@dreamwiz.com" title=3D=B8=DE=C0=CF=BC=F6=BD=C5=B0=C5=BA=CE!><=
b>[=BC=F6=BD=C5=B0=C5=BA=CE]</b></a>=B8=A6 =B4=AD=B7=AF=C1=D6=BC=BC=BF=E4=
!
    </td></tr></table>
<table width=3D"760" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" ali=
gn=3D"center">
  <tr>=20
    <td class=3D"dosa4">=20
      <div align=3D"center"><br><font color=3D"blue">Copyright =A8=CF 200=
1-2002</font> <font color=3D"#ffffff">.</font><font color=3D"blue">J&amp;=
Y=20
        =C1=B6=B3=AA=B4=DC =C1=A4=BA=B8=C5=EB=BD=C5. All Rights Reserved.=
</font></div>
    </td>
  </tr>
</table></body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Tue Feb 19 06:29:42 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id GAA14224; Tue, 19 Feb 2002 06:29:42 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 19 Feb 2002 06:29:42 -0500
Received: from intizen.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id GAA13958; Tue, 19 Feb 2002 06:29:40 -0500 (EST)
Message-Id: <200202191129.GAA13958@cs.utk.edu>
Received: from intizen.com (61.248.169.101)
 by cs.utk.edu (smtpshim v1.0); Tue, 19 Feb 2002 06:29:41 -0500
Reply-To: gricea@intizen.com
From: ">V4O?@5p?@" <gricen@intizen.com>
To: <blast-parallel@cs.utk.edu>
Subject: mp3,?,?9A$:8,=:E2,>V4O8^@L<G >x4B0T >x4B FwE;;g@LF... FwE;7N E:;}!![H+:8]
Sender: ">V4O?@5p?@" <gricen@intizen.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 19 Feb 2002 20:29:45 +0900
X-User: 2.61-lompjrot-nopsmx-Jjomo
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id GAA13983

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtTGFuZ3VhZ2UiIGNv
bnRlbnQ9ImtvIj4NCjxtZXRhIG5hbWU9IkdFTkVSQVRPUiIgY29udGVudD0iTWljcm9zb2Z0
IEZyb250UGFnZSA1LjAiPg0KPG1ldGEgbmFtZT0iUHJvZ0lkIiBjb250ZW50PSJGcm9udFBh
Z2UuRWRpdG9yLkRvY3VtZW50Ij4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtVHlwZSIg
Y29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWtzX2NfNTYwMS0xOTg3Ij4NCjx0aXRsZT7A
/Mf0ILv1t86/7iCws7PkwMcgxvfFu7vnwMzGrjwvdGl0bGU+DQo8L2hlYWQ+DQo8Ym9keT4N
CjxwIGFsaWduPSJjZW50ZXIiPjxmb250IGNvbG9yPSIjMDA4MDAwIj7A/Mf0ILv1t86/7iCw
s7PkwMcgxvfFu7vnwMzGriEhPC9mb250PjwvcD4NCjxwIGFsaWduPSJjZW50ZXIiPjxhIHRh
cmdldD0iX2JsYW5rIiBocmVmPSJodHRwOi8vaW1hZ2UyMWMuY28ua3IvcG9ydGFscm8iPg0K
PGltZyBib3JkZXI9IjEiIHNyYz0iaHR0cDovL2ltYWdlMjFjLmNvLmtyL3BvcnRhbHJvL2lt
Zy9zY3JlZW5zaG90X3MuanBnIiBhbHQ9Irv1t86/7iCws7PkwMcgxvfFu7vnwMzGrrimIL3D
wNvG5MDMwfa3zi4uLiIgd2lkdGg9IjQwMCIgaGVpZ2h0PSI0MjYiPjwvYT48L3A+DQo8cCBh
bGlnbj0iY2VudGVyIj48Yj48Zm9udCBzaXplPSI0Ij7G98W7t84oPGEgdGFyZ2V0PSJfYmxh
bmsiIGhyZWY9Imh0dHA6Ly9pbWFnZTIxYy5jby5rci9wb3J0YWxybyI+PGZvbnQgY29sb3I9
IiNmZjAwMDAiPmh0dHA6Ly9wb3J0YWxyby53by50bzwvZm9udD48L2E+PGZvbnQgY29sb3I9
IiNmZjAwMDAiPik8L2ZvbnQ+PC9mb250PjwvYj48L3A+DQo8cCBhbGlnbj0iY2VudGVyIj7D
1r3FsO4sv7XIrSy/zbe5we4svta0z7jewMy8xyy/rL+5waS6uC4uLjwvcD4NCjxwIGFsaWdu
PSJjZW50ZXIiPrjwtecgwaS6uLimIMfRsPe/obytILq4vccgvPYgwNa9wLTPtNkuPC9wPg0K
PHAgYWxpZ249ImNlbnRlciI+bXAztNm/7rfOteUsvta0z8C9ud2wqLvzLMCpvtrHwb26xbIs
wKm1tbnZxcHIrbjpLi4uPC9wPg0KPHAgYWxpZ249ImNlbnRlciI+LS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLTwvcD4NCjxwIGFsaWduPSJj
ZW50ZXIiPjxmb250IHNpemU9IjIiPrq7ILjewM/AuiDBpMXrus4gscew7bvnx9e/oSDAx7DF
x9EgsaSw7bjewM/A1LTPtNkuPGJyPg0KuN7Az8C6ILX8fiDH0bn4uLggud+827XLtM+02S4o
wP206yC02b3Dud+827XHwfYgvsrAvSk8YnI+DQrB7ywgvPa9xbDFus4gx8+9xyDHyr/ktbUg
vvi9wLTPtNkuKLT1wMy78yC537zbtcfB9iC+ysC4uce3zik8L2ZvbnQ+PC9wPg0KPC9ib2R5
Pg0KPC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Feb 24 05:07:35 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA12019; Sun, 24 Feb 2002 05:07:34 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 24 Feb 2002 05:07:35 -0500
Received: from hananet.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA12323; Sun, 24 Feb 2002 05:07:35 -0500 (EST)
Message-Id: <200202241007.FAA12323@cs.utk.edu>
Received: from hananet.net (211.202.87.13)
 by cs.utk.edu (smtpshim v1.0); Sun, 24 Feb 2002 05:07:35 -0500
Reply-To: ktt21c@hananet.net
From: "A6H-@/?5>n" <ktt21c@hananet.net>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]?5>n559h?l0m ?%GG>28.55 9+7a7N
Sender: "A6H-@/?5>n" <ktt21c@hananet.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 24 Feb 2002 18:52:43 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id FAA12328

<html>
<head>
<title></title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
</head>
<body bgcolor=3D"#666666" text=3D"#000000" leftmargin=3D"0" topmargin=3D"=
0" marginwidth=3D"0" marginheight=3D"0">
<center>
  <br>
  <table width=3D"741" border=3D"0" cellspacing=3D"1" cellpadding=3D"0" b=
gcolor=3D"#000000">
    <tr>
      <td bgcolor=3D"#ffffff">
        <table width=3D"741" border=3D"0" cellspacing=3D"0" cellpadding=3D=
"0">
          <tr>=20
            <td colspan=3D"3"><img src=3D"http://www.dialtalks.com/mail/i=
mages/img_mail_01.gif" width=3D"741" height=3D"29" usemap=3D"#Map" border=
=3D"0"></td>
          </tr>
          <tr>=20
            <td colspan=3D"3"><a href=3D"http://www.dialtalks.com" target=
=3D"_blank"><img src=3D"http://www.dialtalks.com/mail/images/img_mail_02.=
gif" width=3D"741" height=3D"221" border=3D"0"></a></td>
          </tr>
          <tr>=20
            <td width=3D"16"><img src=3D"http://www.dialtalks.com/mail/im=
ages/img_mail_03.gif" width=3D"16" height=3D"543"></td>
            <td width=3D"684" align=3D"middle" valign=3D"top">
              <table width=3D"680" border=3D"0" cellspacing=3D"0" cellpad=
ding=3D"0">
                <tr>=20
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                </tr>
                <tr>=20
                  <td width=3D"311" valign=3D"top"><img src=3D"http://www=
.dialtalks.com/mail/images/img_mail_06.gif" width=3D"311" height=3D"133">=
<br>
                    <br>
                    <img src=3D"http://www.dialtalks.com/mail/images/img_=
mail_07.gif" width=3D"311" height=3D"157"><br>
                    <br>
                    <img src=3D"http://www.dialtalks.com/mail/images/img_=
mail_08.gif" width=3D"311" height=3D"157">=20
                  </td>
                  <td width=3D"20">&nbsp;</td>
                  <td width=3D"359" valign=3D"top"><img src=3D"http://www=
.dialtalks.com/mail/images/img_mail_09.gif" width=3D"332" height=3D"188" =
usemap=3D"#Map2" border=3D"0"><br>
                    <br><img src=3D"http://www.dialtalks.com/mail/images/=
mp3.jpg" width=3D"300" height=3D"300" border=3D"0"><br>&nbsp;=20
                  </td>
                </tr>
              </table>
            </td>
            <td width=3D"41"><img src=3D"http://www.dialtalks.com/mail/im=
ages/img_mail_04.gif" width=3D"41" height=3D"543"></td>
          </tr>
          <tr>=20
            <td colspan=3D"3"><img src=3D"http://www.dialtalks.com/mail/i=
mages/img_mail_05.gif" width=3D"741" height=3D"110" usemap=3D"#Map4" bord=
er=3D"0"></td>
          </tr>
	  <tr>=20
            <td colspan=3D"3" style=3D"PADDING-RIGHT: 15px; PADDING-LEFT:=
 15px; PADDING-BOTTOM: 15px; PADDING-TOP: 15px"=20
         >
<font size=3D"2">=B1=CD=C7=CF=C0=C7 =BD=C2=B6=F4=BE=F8=C0=CC =C0=FC=C0=DA=
 =BF=EC=C6=ED=C0=BB =BA=B8=B3=BB=B0=D4 =B5=C8 =C1=A1 =C1=A4=C1=DF=C8=F7 =BB=
=E7=B0=FA =B5=E5=B8=B3=B4=CF=B4=D9. =C0=FA=C8=F1=C8=B8=BB=E7=B4=C2 =C1=A4=
=BA=B8=C5=EB=BD=C5=BA=CE=C0=C7 =BF=E4=B1=B8=BB=E7=C7=D7=C0=CE =BC=F6=BD=C5=
 =B0=C5=BA=CE =C0=E5=C4=A1=B8=A6 =C7=CA=C8=F7 =B8=B6=B7=C3=C7=CF=B0=ED =C0=
=D6=BD=C0=B4=CF=B4=D9. =B1=CD=C7=CF=C0=C7 =C0=FC=C0=DA =BF=EC=C6=ED =C1=D6=
=BC=D2=B4=C2 =C0=CE=C5=CD=B3=DD=BB=F3=C0=C7 =B0=F8=B0=B3=B5=C8 =C0=E5=BC=D2=
=BF=A1=BC=AD =C8=AE=C0=CE=C7=CF=BF=B4=C0=B8=B8=E7, =B1=CD=C7=CF=C0=C7 =C0=
=FC=C0=DA=BF=EC=C6=ED =C1=D6=BC=D2=BF=DC =BE=EE=B6=B0=C7=D1 =B0=B3=C0=CE =
=C1=A4=BA=B8=B5=B5 =C8=AE=C0=CE=B5=C7=C1=F6 =BE=CA=C0=B8=B9=C7=B7=CE =BE=C8=
=BD=C9=C7=CF=BD=C3=B1=E2 =B9=D9=B6=F8=B4=CF=B4=D9.  =B5=BF=C0=CF=C7=D1 =B3=
=BB=BF=EB=C0=C7 =B8=DE=C0=CF=BC=F6=BD=C5=C0=BB =B0=C5=BA=CE=C7=CF=BD=C5=B4=
=D9=B8=E9 =B1=CD=C7=CF=C0=C7 =C0=C7=BB=E7=B8=A6 =C1=B8=C1=DF=C7=CF=BF=A9 =
=BB=E8=C1=A6=C3=B3=B8=AE=C7=CF=B0=DA=BD=C0=B4=CF=B4=D9. =B0=A8=BB=E7=C7=D5=
=B4=CF=B4=D9.<br><br>
<img src=3D'http://211.202.87.13:9080/open?group=3D45&state=3D0&code=3D46=
2196' height=3D0 width=3D0><center><a href=3D'http://211.202.87.13:9080/r=
efuse/refuse?cmd=3Dview&group=3D45&name=3D&mail=3Dblast-parallel@cs.utk.e=
du'><img src=3D'http://211.202.87.13:9080/refuse/mail-refuse.gif' border=3D=
0)></center></font>=20
	    </td>
          </tr>
        </table>
      </td>
  </tr>
</table>
</center>
<map name=3D"Map">
  <area shape=3D"RECT" coords=3D"557,7,702,27" href=3D"http://www.dialtal=
ks.com" target=3D"_blank" onfocus=3D"this.blur()">
</map>
<map name=3D"Map2">
  <area shape=3D"RECT" coords=3D"199,137,287,172" href=3D"http://www.dial=
talks.com" target=3D"_blank" onfocus=3D"this.blur()">
</map>
<map name=3D"Map4">
  <area shape=3D"RECT" coords=3D"410,3,556,23" href=3D"mailto:webmaster@d=
ialtalks.com" onfocus=3D"this.blur()">
</map>
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Feb 25 02:47:06 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id CAA00347; Mon, 25 Feb 2002 02:47:05 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 25 Feb 2002 02:47:05 -0500
Received: from CashRe-PadEmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id CAA21639; Mon, 25 Feb 2002 02:47:03 -0500 (EST)
Message-Id: <200202250747.CAA21639@cs.utk.edu>
Received: from CashRe-PadEmail.com (61.84.155.200)
 by cs.utk.edu (smtpshim v1.0); Mon, 25 Feb 2002 02:47:05 -0500
Reply-To: nonreply@CashRe-PadEmail.com
From: "nonreply@CashRe-PadEmail.com" <nonreply@CashRe-PadEmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: Thank you all! We have!!!
Sender: "nonreply@CashRe-PadEmail.com" <nonreply@CashRe-PadEmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 25 Feb 2002 16:40:53 +0900
X-User: 2.62-gjhkelkn-mlljhm-Eejjk

<HTML>
<HEAD>
<META content="text/html; charset=ks_c_5601-1987" http-equiv=Content-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; }</STYLE>
</HEAD>
</HEAD>
<script language="JavaScript">
<!--
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
//-->
</script>
<BODY text=black vLink=purple aLink=red link=blue bgColor=white 
onload="na_open_window('win570','http://na33.com/humor/index.htm',1500,1500,10,10,0,0,0,0,0);">Thank you all! We have already over 58,000 members! 
</BODY>
</HTML>

From moore+bounces-blast-parallel@cs.utk.edu Wed Feb 27 06:09:32 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id GAA24254; Wed, 27 Feb 2002 06:09:31 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 27 Feb 2002 06:09:31 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id GAA00992; Wed, 27 Feb 2002 06:09:32 -0500 (EST)
Message-Id: <200202271109.GAA00992@cs.utk.edu>
Received: from yahoo.co.kr (211.37.77.170)
 by cs.utk.edu (smtpshim v1.0); Wed, 27 Feb 2002 06:09:33 -0500
Reply-To: dre4am@yahoo.co.kr
From: "3*@L=:0!@L5e" <dre4am@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]0z?\<1;}4T@L3* 0z?\GP;}@; 18GO=C3*?d?
Sender: "3*@L=:0!@L5e" <dre4am@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Wed, 27 Feb 2002 20:09:05 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id GAA00993

	<html>
	<head>
	<title>Untitled Document</title>
	<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr=
">
	<style>
	body,td,select,div,textarea,center
		{ color:black; font-size:9pt ; line-height:140%; }
	p,,blockquote,td,br { font-size : 9pt;}
	A:link{text-decoration:none;color:#808080;font-size:9pt;}
	A:visited {text-decoration:none;color:#808080;font-size:9pt;}
	A:hover { color:#808080; text-decoration:underline;font-size:9pt;}
		</style>
	</head>
	<body bgcolor=3D"#ffffff">
	<table width=3D"556" border=3D"0" align=3D"center" cellpadding=3D"0" cel=
lspacing=3D"0">
	  <tr>=20
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail01.gif" widt=
h=3D"566" height=3D"170"></td>
	  </tr>
	  <tr>
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail02.gif" widt=
h=3D"566" height=3D"244" usemap=3D"#Map" border=3D"0"><map name=3D"Map"><=
area shape=3D"RECT" coords=3D"309,141,436,187" href=3D"http://www.nicegui=
de.co.kr" target=3D"_blank"></map></td>
	  </tr>
	  <tr>=20
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail03.gif" widt=
h=3D"567" height=3D"261" usemap=3D"#Map2" border=3D"0"><map name=3D"Map2"=
><area shape=3D"RECT" coords=3D"153,151,277,192" href=3D"http://www.niceg=
uide.co.kr" target=3D"_blank"></map></td>
	  </tr>
	  <tr>=20
		<td background=3D"http://www.niceguide.co.kr/mail/images/mail-bg1.gif">=
=20
		  <table width=3D"511" border=3D"0" align=3D"center" cellpadding=3D"8" =
cellspacing=3D"0">
			<tr bgcolor=3D"#e0e8ec">=20
			  <td> <font color=3D"#003366">=BA=BB=B8=DE=C0=CF=C0=BA =C1=A4=C5=EB=BA=
=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =C0=C7=B0=C5 =C1=A6=B8=F1=BF=A1<b> <fo=
nt color=3D"#006699">[=B1=A4=B0=ED]</font></b>=20
				=B6=F3=B0=ED =C7=A5=B1=E2=B5=C8 =B8=DE=C0=CF=C0=D4=B4=CF=B4=D9.<br>
				=BA=BB=B8=DE=C0=CF=C0=BA =B9=DF=BD=C5=C0=FC=BF=EB =B8=DE=C0=CF=C0=D4=B4=
=CF=B4=D9 =C0=CC=B8=DE=C0=CF=C0=BA =C0=CF=C8=B8=BC=BA =B8=DE=C0=CF=C0=CC=B8=
=E7 =C0=E7=B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. <br>
				=B1=CD=C7=CF=C0=C7 =B8=DE=C0=CF=C1=D6=BC=D2=B4=C2 =C0=A5=BC=AD=C7=CE=C1=
=DF=BF=A1 =BE=CB=B0=D4=B5=C8 =B0=CD=C0=CC=B8=E7, =C0=CC=B8=DE=C0=CF =C1=D6=
=BC=D2=BF=DC=BF=A1 =B4=D9=B8=A5 =C1=A4=BA=B8=B4=C2 =B0=A1=C1=F6=B0=ED =C0=
=D6=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. </font><br>
				<table width=3D"500" border=3D"0" cellpadding=3D"0" cellspacing=3D"0"=
>
				  <tr>
					<td width=3D"216" height=3D"27"><font color=3D"#003366">=BF=F8=C4=A1=
 =BE=CA=C0=B8=BD=C3=B8=E9 =BC=F6=BD=C5=B0=C5=BA=CE=B8=A6=20
					  =B4=AD=B7=AF=C1=D6=BC=BC=BF=E4</font></td>
					<td width=3D"268" height=3D"27"><A href=3D"mailto:webmaster@niceguid=
e.co.kr"><img src=3D"http://www.niceguide.co.kr/mail/images/no.gif" width=
=3D"61" height=3D"22" border=3D"0"></A></td>
				  </tr>
				</table>
				<div align=3D"center"><font color=3D"#006699">copyright(c)2001 <b><fo=
nt color=3D"#006699"><a href=3D"http://www.niceguide.co.kr">niceguide</a>=
</font></b>.=20
				  all rights reserved. <A href=3D"mailto:webmaster@niceguide.co.kr">m=
ail=20
				  to webmaster </A></font> </div>
			  </td>
			</tr>
		  </table>
		</td>
	  </tr>
	  <tr>=20
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail-bg2.gif" wi=
dth=3D"566" height=3D"30"></td>
	  </tr>
	</table>
	</body>
	</html>

From moore+bounces-blast-parallel@cs.utk.edu Thu Feb 28 19:37:47 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id TAA08400; Thu, 28 Feb 2002 19:37:47 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Thu, 28 Feb 2002 19:37:47 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id TAA13144; Thu, 28 Feb 2002 19:37:45 -0500 (EST)
Message-Id: <200203010037.TAA13144@cs.utk.edu>
Received: from yahoo.co.kr (210.221.107.72 -> s210-221-107-72.thrunet.ne.kr)
 by cs.utk.edu (smtpshim v1.0); Thu, 28 Feb 2002 19:37:46 -0500
Reply-To: haaiyan@yahoo.co.kr
From: "@/?#:qA>GU1]@6" <haaiyan@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: <1$0m>A>GU1]@64kCb
Sender: "@/?#:qA>GU1]@6" <haaiyan@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Fri, 1 Mar 2002 09:46:18 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id TAA13152

<HTML>
<HEAD>
<META content=3D"text/html; charset=3Dks_c_5601-1987" http-equiv=3DConten=
t-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; =
}</STYLE>
</HEAD><BODY>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B8=D5=C0=FA=20
=C7=E3=B6=F4 =BE=F8=C0=CC =B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=BC=AD =B4=EB=B4=
=DC=C8=F7 =C1=CB=BC=DB =C7=D5=B4=CF=B4=D9</SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<?xml:namespace=20
prefix =3D o ns =3D "urn:schemas-microsoft-com:office:office"=20
/><o:p></o:p></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=C8=B3=E7=C7=CF=BD=CA=
=B4=CF=B1=EE<SPAN=20
lang=3DEN-US>?<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; COLOR: blue; FONT-FAMILY: =B5=B8=BF=F2; mso-bid=
i-font-size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=AF=BF=A3=
=BA=F1=C1=BE=C7=D5=B1=DD=C0=B6</SPAN></B><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=20
<B style=3D"mso-bidi-font-weight: normal">=C0=FC=B9=AE=C8=B8=BB=E7=C0=D4=B4=
=CF=B4=D9<SPAN=20
lang=3DEN-US>.<o:p></o:p></SPAN></B></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=AF=BF=A3=BA=F1=C1=BE=
=C7=D5=B1=DD=C0=B6=C0=BA=20
<B style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"COLOR: blue">=BB=F3=C8=A3=BD=C5=BF=EB=B1=DD=B0=ED</SPAN></B> =B4=
=EB=C3=E2 =B4=EB=C7=E0=BB=E7=C0=D4=B4=CF=B4=D9<SPAN=20
lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=FA=C8=F1=B4=C2=20
=B4=D9=B8=A5 =BE=F7=C3=BC=BF=CD =B4=DE=B8=AE =BC=F6=BC=F6=B7=E1=B8=A6 =C0=
=FC=C7=F4 =B9=DE=C1=F6 =BE=CA=B4=C2 =B1=FA=B2=FD=C7=D1 =BE=F7=C3=BC=C0=D4=
=B4=CF=B4=D9<SPAN lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; COLOR: red; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi=
-font-size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C4=AB=B5=E5=
=BB=E7=BF=EB=C0=DA<SPAN=20
lang=3DEN-US>, =C1=F7=C0=E5=C0=CE, =C1=D6=BA=CE, =B4=EB=C7=D0=BB=FD, =C0=DA=
=BF=B5=BE=F7=C0=DA.<U><o:p></o:p></U></SPAN></SPAN></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B6=C7=20
=BA=B8=C7=E8=C0=CC=B3=AA<SPAN lang=3DEN-US>, =C0=FB=B1=DD=C0=BB 3=B0=B3=BF=
=F9=C0=CC=BB=F3 =B3=B3=C0=D4 =C7=CF=BD=C5=BA=D0,,,</SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=CC=B8=F0=B5=E7=BA=D0=
=B5=E9=C0=CC=20
=B4=EB=C3=E2=C0=BB =B9=DE=C0=B8=BD=C7=BC=F6 =C0=D6=BD=C0=B4=CF=B4=D9<SPAN=
 lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B4=EB=C3=E2=C3=D6=B0=ED=
=20
<B style=3D"mso-bidi-font-weight: normal"><SPAN lang=3DEN-US=20
style=3D"COLOR: red">2000=B8=B8=BF=F8=B1=EE=C1=F6</SPAN></B><SPAN style=3D=
"COLOR: red"> </SPAN>=B0=A1=B4=C9=C7=CF=B0=ED<SPAN=20
lang=3DEN-US>, =B4=EB=C3=E2=B1=E2=B0=A3=C0=BA <B style=3D"mso-bidi-font-w=
eight: normal"><SPAN=20
style=3D"COLOR: red">3=B3=E2</SPAN></B><SPAN style=3D"COLOR: yellow">=20
</SPAN>=C0=D4=B4=CF=B4=D9.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=A3=B4=DC=C7=D1=20
=BC=AD=B7=F9=B7=CE <B style=3D"mso-bidi-font-weight: normal"><SPAN lang=3D=
EN-US=20
style=3D"COLOR: red">2~3=C0=CF=B8=B8=BF=A1</SPAN></B> =B4=EB=C3=E2=C0=CC =
=B0=A1=B4=C9=C7=D5=B4=CF=B4=D9<SPAN=20
lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B5=B7=C0=CC=20
=B1=DE=C7=CF=B0=D4 =C7=CA=BF=E4=C7=CF=BD=C5=BA=D0=B5=E9=C0=BA =B8=C1=BC=B3=
=C0=CC=C1=F6 =B8=B6=BD=C3=B0=ED<SPAN lang=3DEN-US>...<o:p></o:p></SPAN></=
SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=F6=B1=DD=20
=B9=D9=B7=CE =C0=FC=C8=AD=C1=D6=BC=BC=BF=E4<SPAN lang=3DEN-US>.!!!!!!</SP=
AN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B1=E2=C5=B8=20
=B1=DD=C0=B6=BB=F3=B4=E3=B5=B5 =C4=A3=C0=FD=C8=F7 =C0=C0=B4=EB=C7=D8 =B5=E5=
=B8=AE=B0=DA=BD=C0=B4=CF=B4=D9<SPAN lang=3DEN-US>.<o:p></o:p></SPAN></SPA=
N></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=AF=BF=A3=BA=F1=C1=BE=
=C7=D5=B1=DD=C0=B6<SPAN=20
lang=3DEN-US><SPAN style=3D"mso-spacerun: yes">&nbsp; </SPAN>=C0=FC=B9=AE=
=BB=F3=B4=E3=BF=F8=20
=C0=CF=B5=BF<o:p></o:p></SPAN></SPAN></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B9=AE=C0=C7<SPAN=20
lang=3DEN-US>:<SPAN style=3D"mso-spacerun: yes">&nbsp;&nbsp; </SPAN>Tel:=20
02-2249-4515, 5636 &lt;=C1=F6=BB=E7 =B9=D7 =B5=F4=B7=AF =B8=F0=C1=FD&gt;<=
o:p></o:p></SPAN></SPAN></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BA=BB</SPAN><SPA=
N=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B8=DE=C0=CF=C0=BA=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=A4=BA=B8=C5=EB=
=BD=C5=B8=C1</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=CC=BF=EB=C3=CB=
=C1=F8</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B9=D7</SPAN><SPA=
N=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=A4=BA=B8=BA=B8=
=C8=A3</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B5=EE=BF=A1</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=FC=C7=D1</SPA=
N><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> [</FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B1=A4=B0=ED</SPA=
N><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">] </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B8=DE=C0=CF=C0=D4=
=B4=CF=B4=D9</SPAN><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">. e-mail</FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=D6=BC=D2=B4=C2=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=CE=C5=CD=B3=DD=
=BB=F3=BF=A1=BC=AD</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C3=EB=B5=E6=C7=CF=
=BF=B4=C0=B8=B8=E7</SPAN><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">, </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=D6=BC=D2=BF=DC=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=EE=B6=B0=C7=D1=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=B3=C0=CE</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=A4=BA=B8=B5=B5=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=A1=C1=F6=B0=ED=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=D6=C1=F6</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=CA=BD=C0=B4=CF=
=B4=D9</SPAN><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">. </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=C6=B7=A1=C0=C7=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BC=F6=BD=C5=B0=C5=
=BA=CE=B8=A6</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B4=AD=B7=AF</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=D6=BD=C3=B8=E9=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B4=D9=BD=C3=B4=C2=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BA=B8=B3=BB=C1=F6=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=CA=B0=DA=BD=C0=
=B4=CF=B4=D9</SPAN><FONT=20
face=3D"Times New Roman"><SPAN lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt">.</SPAN><SPAN lang=3D=
EN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'"><o:p></o:p></SPAN></FON=
T></P>
<P><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B1=BC=B8=B2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: '=
Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: KO; mso=
-bidi-language: AR-SA">=BC=F6=BD=C5=B0=C5=BA=CE<SPAN=20
lang=3DEN-US>: <A=20
href=3D"mailto:haaiyan@yahoo.co.kr">haaiyan@yahoo.co.kr</A></SPAN></SPAN>=
</P>
<P><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B1=BC=B8=B2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: '=
Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: KO; mso=
-bidi-language: AR-SA"><SPAN=20
lang=3DEN-US></SPAN></SPAN>&nbsp;</P>
</BODY>
</HTML>

From moore+bounces-blast-parallel@cs.utk.edu Sat Mar  2 06:59:44 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id GAA11200; Sat, 2 Mar 2002 06:59:43 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 2 Mar 2002 06:59:44 -0500
Received: from wowexpo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id GAA24253; Sat, 2 Mar 2002 06:59:44 -0500 (EST)
Message-Id: <200203021159.GAA24253@cs.utk.edu>
Received: from wowexpo.com (211.107.28.191)
 by cs.utk.edu (smtpshim v1.0); Sat, 2 Mar 2002 06:59:44 -0500
Reply-To: master@wowexpo.com
From: wowexpo <master@wowexpo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]9>>_?  6G BoG{4Y18?
Sender: wowexpo <master@wowexpo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 2 Mar 2002 21:05:29 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id GAA24267

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6h3SC6u7jewM/AuiDBpLq4xeu9xbjBIMDMv+vDy8H4
ILnXIMGkuri6uMijILXuv6EgsPzH0SC5/bf8IMGmNTDBtr+hIMDHsMXH0SBbsaSw7V243sDP
wNS0z7TZLjwvdGl0bGU+DQo8bWV0YSBuYW1lPSJnZW5lcmF0b3IiIGNvbnRlbnQ9Ik5hbW8g
V2ViRWRpdG9yIHY0LjAiPg0KPC9oZWFkPg0KPGJvZHkgYmdjb2xvcj0id2hpdGUiIHRleHQ9
ImJsYWNrIiBsaW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjx0YWJs
ZSBib3JkZXI9IjEiIHdpZHRoPSI3NjciPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHdpZHRo
PSI3NTciIGhlaWdodD0iODciPg0KICAgICAgICAgICAgPHA+Jm5ic3A7od0guru43sDPwLog
waS6uMXrvcW4wSDAzL/rw8vB+CC51yDBpLq4urjIoyC17r+hILD8x9Eguf23/CDBpjUwwba/
oSANCiAgICAgICAgICAgIMDHsMXH0SBbsaSw7V243sDPwNS0z7TZLjwvcD4NCiAgICAgICAg
ICAgIDxwPiZuYnNwO6HdIGUtbWFpbMHWvNK0wiDAzsXNs92787+hvK0gw+u15sfPv7TAuLjn
LCBlLW1haWzB1rzSv9wgvu62sMfRIA0KICAgICAgICAgICAgsLPAziDBpLq4tbUgsKHB9rDt
IMDWwfYgvsq9wLTPtNkuPC9wPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPHRy
Pg0KICAgICAgICANCiAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0PSI1ODgiPiANCiAgICAg
IDxwPiZuYnNwOyZuYnNwO7mrwM4gtNy80yDEq7jetvMhISEhISZuYnNwO8DMwaggsMbBpMfP
wfYguLa8vL/kLiZuYnNwOzwvcD4NCiAgICAgICAgICAgIA0KICAgICAgPHA+PGZvbnQgY29s
b3I9IiMwMDAwZmYiPrDtwaS9xCC5q8DOtNy80yDEq7jetvO/zSDAzLW/vcQguavAzrTcvNMg
xKu43rbzPC9mb250PsDHIMCnxKG1tSDA4r7GILO7wfa/5C4uLi4uPC9wPg0KICAgICAgICAg
ICAgDQogICAgICA8cD4mbmJzcDsmbmJzcDu/7LiuwMcgwNq2+yBTQ1MoU2FmZXR5IENhcmUg
U3lzdGVtKSEgLCA8Zm9udCBjb2xvcj0iI2ZmMDAwMCI+PGI+PGZvbnQgc2l6ZT0iNCI+bi1T
VEFSIA0KICAgICAgICBDTC0yMDI8L2ZvbnQ+PC9iPjwvZm9udD64piDH0bn4ILi4s6q6uLy8
v+QmbmJzcDshPC9wPg0KICAgICAgPHA+Jm5ic3A7Jm5ic3A7uri02SDA2ry8x9EgwaS6uLim
IL/4x8+9w7jpIDxiPjxmb250IGNvbG9yPSIjZmYwMDAwIiBzaXplPSI0Ij6+xrehILHXuLLA
uyANCiAgICAgICAgxay4rzwvZm9udD48L2I+x8+/qSDB1r3KvcO/5C48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48YSBocmVmPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL2NvbXBh
bnkvbGFib3JhdG9yeS5odG0iPjxpbWcgc3JjPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL25z
dGFyL3JvZ29fcHJvLmdpZiIgd2lkdGg9IjM4NCIgaGVpZ2h0PSIzMTMiIGJvcmRlcj0iMCI+
PC9hPjwvcD4NCiAgICAgIDxwIGFsaWduPSJjZW50ZXIiPjxmb250IHNpemU9IjQiPm4tU1RB
UiBDTC0yMDK4piCxuMDUx8+9w7TCILDtsLS01LXpv6Gw1DwvZm9udD48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48Zm9udCBzaXplPSI0Ij7A57nMwNa0wiA8YSBocmVmPSJodHRw
Oi8vd3d3Lndvd2V4cG8uY29tL2dhbWUvZ2FtZWludHJvLmh0bSI+PGZvbnQgY29sb3I9IiNm
ZjAwMDAiPrnOubCzrL3DIA0KICAgICAgICCw1MDTKEtvcmVhIEZpc2hpbmcgXDI1LDAwMCk8
L2ZvbnQ+PC9hPsC7ILmrt+G3ziC15biztM+02S48L2ZvbnQ+PC9wPg0KICAgICAgPHAgYWxp
Z249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7
PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgICA8L3Rk
Pg0KICAgIDwvdHI+DQogICAgPHRyPg0KICAgICAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0
PSI3MyI+DQogICAgICAgICAgICANCiAgICAgICAgICAgICZuYnNwO6HcILvnwPwgx+O29L74
wMwguN7Az8C7ILq4s7uw1CC1yMGhILvnsPq15biztM+02S48YnI+DQogICAgICAgICAgICAm
bmJzcDuh3CC43sDPILz2vcXAuyC/+MfPvcPB9iC+ysC4vcO46SC02cC9wLsgxay4r8fYIMHW
vLy/5C48YnI+IA0KICAgICAgPHA+PGNlbnRlcj48YSBocmVmPSdodHRwOi8vaXRuc29mdC5j
b20vfm1haWx0b3VjaC91c2VyL3RvdWNoLmNnaT9jbWQ9cmVmdXNlX3ZpZXcmdXNlcmNvZGU9
bG9tcGpzb3Utc3NxcmtyLUpqb291Jmdyb3VwPTE0Jm5hbWU9Jm1haWw9Ymxhc3QtcGFyYWxs
ZWxAY3MudXRrLmVkdSc+PGltZyBzcmM9J2h0dHA6Ly9pdG5zb2Z0LmNvbS9+bWFpbHRvdWNo
L3VzZXIvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9wPg0KICAgICAg
ICA8L3RkPg0KICAgIDwvdHI+DQo8L3RhYmxlPg0KPHA+Jm5ic3A7PC9wPg0KPC9ib2R5Pg0K
PC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar  3 04:36:59 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id EAA26028; Sun, 3 Mar 2002 04:36:59 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 3 Mar 2002 04:36:59 -0500
Received: from dreamwiz.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id EAA01990; Sun, 3 Mar 2002 04:36:57 -0500 (EST)
Message-Id: <200203030936.EAA01990@cs.utk.edu>
Received: from dreamwiz.com (211.49.199.130)
 by cs.utk.edu (smtpshim v1.0); Sun, 3 Mar 2002 04:36:58 -0500
Reply-To: emoamoa@dreamwiz.com
From: 0q6s8` <emoamoa@dreamwiz.com>
To: <blast-parallel@cs.utk.edu>
Subject: (1$0m) 2@ Gc6tGX AV=G0EAR^*^
Sender: 0q6s8` <emoamoa@dreamwiz.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 3 Mar 2002 18:28:46 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id EAA01992

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT68pbq4wMwgwaS6uCDA1LTPtNkuPC90aXRsZT4NCjxt
ZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0iTmFtbyBXZWJFZGl0b3IgdjQuMCI+DQo8
IS0tICixpLDtKSCywCDH47b0x9ggwda9x7DFwdJeKl4gLS0+DQo8L2hlYWQ+DQo8Ym9keSBi
Z2NvbG9yPSJ3aGl0ZSIgdGV4dD0iYmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJwdXJwbGUi
IGFsaW5rPSJyZWQiPg0KPHRhYmxlIGJvcmRlcj0iMSIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo
PSI1MTkiIGJvcmRlcmNvbG9yZGFyaz0iYmxhY2siIGJvcmRlcmNvbG9ybGlnaHQ9ImJsYWNr
Ij4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB3aWR0aD0iNTEzIiBoZWlnaHQ9Ijg3IiBiZ2Nv
bG9yPSIjRkFGMEY1Ij4gICAgICAgICAgICA8cCBhbGlnbj0iY2VudGVyIj48YnI+PHNwYW4g
c3R5bGU9ImZvbnQtc2l6ZToxMHB0OyI+or4gDQogICAgICAgICAgICA8L3NwYW4+PHNwYW4g
c3R5bGU9ImZvbnQtc2l6ZToxMHB0OyI+PGI+tNS/obDUILGksO0guN7Az8C7IA0Kurizu7W1
ILXJse6/5C4gPC9iPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Ij6ivjwv
c3Bhbj48L3A+DQo8cCBhbGlnbj0iY2VudGVyIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEw
cHQ7Ij48Yj61/CDH0bn4uLggurizvrKyv+QuIF4qXjwvYj48L3NwYW4+PC9wPg0KPHAgYWxp
Z249ImNlbnRlciI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTo5cHQ7Ij7A/sC6ILPXxrzB8LOi
uK4gvuC80yC15biztM+02S4gDQooPGZvbnQgY29sb3I9ImJsdWUiPsD6v6EgyKjHx7+hvLEg
ICAouPApLCi+xiksKLjgKSDAzLbzsO0gutK3r7/kPC9mb250Pik8L3NwYW4+PGJyPjxicj48
L3A+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB3
aWR0aD0iNTEzIiBoZWlnaHQ9IjE3MyIgYmdjb2xvcj0iI0ZERjdGMiI+ICAgICAgICAgICAg
PHAgYWxpZ249ImNlbnRlciI+PGJyPjxmb250IGNvbG9yPSIjNjY2NjAwIj48c3BhbiBzdHls
ZT0iZm9udC1zaXplOjEwcHQ7Ij7A+sjxtMIgPC9mb250PjxhIGhyZWY9Imh0dHA6Ly9nb2xs
YTEwMDB3b24uY29tIiB0YXJnZXQ9Il9ibGFuayI+PGZvbnQgY29sb3I9Im1hcm9vbiI+PGI+
PHU+sPEstvMsw7Usv/g8L3U+PC9iPjwvZm9udD48L2E+PGZvbnQgY29sb3I9IiM2NjY2MDAi
PiAmbmJzcDs8YSBocmVmPSJodHRwOi8vd3d3LmdvbGxhMTAwMHdvbi5jb20iIHRhcmdldD0i
X2JsYW5rIj5HT0xMQTEwMDBXT04uQ09NPC9hPg0KJm5ic3A7PC9mb250Pjxmb250IGNvbG9y
PSJuYXZ5Ij7B37DtwMe3+TwvZm9udD48Zm9udCBjb2xvcj0iIzY2NjYwMCI+LDwvZm9udD48
Zm9udCBjb2xvcj0iYmx1ZSI+vcW788ewPC9mb250Pjxmb250IGNvbG9yPSIjNjY2NjAwIj4g
wPy5rsGhIA0KwNS0z7TZLjwvc3Bhbj48YnI+PGJyPjxiPjxzcGFuIHN0eWxlPSJmb250LXNp
emU6MTBwdDsiPrChsN3AzCC9zrnHt84gwcHAuiDBpLq4tvMgu/2wosfVtM+02S48L3NwYW4+
PC9iPjwvZm9udD48L3A+DQo8cCBhbGlnbj0iY2VudGVyIj48Zm9udCBjb2xvcj0iIzY2NjYw
MCI+PGI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTo5cHQ7Ij4xyLggDQqxpLDtuKYgud7AuL3H
ILrQwLoguN7Az7i1v6EgsKHA1MfYIMHWvLy/5C4gPC9zcGFuPjwvYj48L2ZvbnQ+PGJyPqLR
PGZvbnQgY29sb3I9IiM2NjY2MDAiPjxiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6OXB0OyI+
Jm5ic3A7Jm5ic3A7sKHA1CwgDQogxbvF8LChIMfRufjAuLfOILXKtM+02S4gPC9zcGFuPjxh
IGhyZWY9Imh0dHA6Ly93d3cuZS1tb2Ftb2EubmV0L3NwbGlzdC9pbnB1dC5odG0iIHRhcmdl
dD0iX2JsYW5rIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjlwdDsgYmFja2dyb3VuZC1jb2xv
cjp5ZWxsb3c7Ij4xyLggDQqxpLDtIMfjv+sgyK7AzjwvZm9udD48L2E+PC9zcGFuPjwvYj48
L3A+DQo8cCBhbGlnbj0iY2VudGVyIj48Zm9udCBjb2xvcj0ibmF2eSI+PGI+PHNwYW4gc3R5
bGU9ImZvbnQtc2l6ZTo5cHQ7Ij65zLiuucy4riANCsi4v/ggsKHA1MfPvMW+3yC788ewwLsg
sbjA1MfPvce89iDA1rDtIL73taXAzMauILzSvcTAuyC+yyC89iDA1r3AtM+02S48L3NwYW4+
PC9iPjwvZm9udD48L3A+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8dHI+DQog
ICAgICAgIDx0ZCB3aWR0aD0iNTEzIiBoZWlnaHQ9IjE2MyIgYmdjb2xvcj0iI0ZBRjBGNSI+
ICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImNlbnRlciI+PHNwYW4gc3R5bGU9
ImZvbnQtc2l6ZTo5cHQ7Ij643sDPwLsgv/jEoSC+ysC4vcO46SA8YSBocmVmPSJtYWlsdG86
aW5mb0B1cmlhcHQuY29tIj689r3FsMW6zjwvYT64piC6uLO7IMHWvcO46SC02b3DtMIgDQq4
3sDPwLsgurizu8H2IL7KsNq9wLTPtNkuPC9zcGFuPjxiPjxmb250IGNvbG9yPSIjOTk5OUZG
Ij48dT4mbmJzcDs8L3U+PC9mb250PjwvYj48L3A+DQogICAgICAgICAgICA8cCBhbGlnbj0i
Y2VudGVyIj4mbmJzcDs8c3BhbiBzdHlsZT0iZm9udC1zaXplOjlwdDsiPrq7ILjewM/AuiDB
pLq4xeu9xbrOILHHsO2758fXILn9t/wgwaYgNTDBtr+hIMDHsMXHz7+pICBbsaSw7V0NCrje
wM/A08C7DQogueDI/LTPtNkuPGJyPiCxzcfPwMcguN7AzyDB1rzStMIgsMu79r+jwfiw+iDA
z7ndILvnwMzGrsDHILD4sLPA+8DOILD3v6G8rQ0KIMPfw+LH0SCwzcDMuOcsPGJyPrjewM/B
1rzSIMDMv9y/obTCILTZuKUgwaS6uLTCIMDPw7wguPC4o7TPIL7IvcnHz73DseINCiC52bb4
tM+02S4gPGJyPrvnwPwgx+O29L74wMwguN7Az8C7ILq4s7uw1CC1yCDBoSC757D6teW4s7TP
tNkuILCou+fH1bTPtNkuPC9zcGFuPjwvcD4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0K
PC90YWJsZT4NCjwvYm9keT4NCjwvaHRtbD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar  4 01:37:54 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA13705; Mon, 4 Mar 2002 01:37:54 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 4 Mar 2002 01:37:54 -0500
Received: from wowexpo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id BAA28009; Mon, 4 Mar 2002 01:37:53 -0500 (EST)
Message-Id: <200203040637.BAA28009@cs.utk.edu>
Received: from wowexpo.com (61.77.70.160)
 by cs.utk.edu (smtpshim v1.0); Mon, 4 Mar 2002 01:37:54 -0500
Reply-To: master@wowexpo.com
From: wowexpo <master@wowexpo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] 9>>_!!! 6G 0z<S 9z1]@L 3*?T4Y18?????
Sender: wowexpo <master@wowexpo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 4 Mar 2002 15:43:53 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id BAA28015

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6h3SC6u7jewM/AuiDBpLq4xeu9xbjBIMDMv+vDy8H4
ILnXIMGkuri6uMijILXuv6EgsPzH0SC5/bf8IMGmNTDBtr+hIMDHsMXH0SBbsaSw7V243sDP
wNS0z7TZLjwvdGl0bGU+DQo8bWV0YSBuYW1lPSJnZW5lcmF0b3IiIGNvbnRlbnQ9Ik5hbW8g
V2ViRWRpdG9yIHY0LjAiPg0KPC9oZWFkPg0KPGJvZHkgYmdjb2xvcj0id2hpdGUiIHRleHQ9
ImJsYWNrIiBsaW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjx0YWJs
ZSBib3JkZXI9IjEiIHdpZHRoPSI3NjciPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHdpZHRo
PSI3NTciIGhlaWdodD0iODciPg0KICAgICAgICAgICAgPHA+Jm5ic3A7od0guru43sDPwLog
waS6uMXrvcW4wSDAzL/rw8vB+CC51yDBpLq4urjIoyC17r+hILD8x9Eguf23/CDBpjUwwba/
oSANCiAgICAgICAgICAgIMDHsMXH0SBbsaSw7V243sDPwNS0z7TZLjwvcD4NCiAgICAgICAg
ICAgIDxwPiZuYnNwO6HdIGUtbWFpbMHWvNK0wiDAzsXNs92787+hvK0gw+u15sfPv7TAuLjn
LCBlLW1haWzB1rzSv9wgvu62sMfRIA0KICAgICAgICAgICAgsLPAziDBpLq4tbUgsKHB9rDt
IMDWwfYgvsq9wLTPtNkuPC9wPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPHRy
Pg0KICAgICAgICANCiAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0PSI1ODgiPiANCiAgICAg
IDxwPiZuYnNwOyZuYnNwO7mrwM4gtNy80yDEq7jetvMhISEhISZuYnNwO8DMwaggsMbBpMfP
wfYguLa8vL/kLiZuYnNwOzwvcD4NCiAgICAgICAgICAgIA0KICAgICAgPHA+PGZvbnQgY29s
b3I9IiMwMDAwZmYiPrDtwaS9xCC5q8DOtNy80yDEq7jetvO/zSDAzLW/vcQguavAzrTcvNMg
xKu43rbzPC9mb250PsDHIMCnxKG1tSDA4r7GILO7wfa/5C4uLi4uPC9wPg0KICAgICAgICAg
ICAgDQogICAgICA8cD4mbmJzcDsmbmJzcDu/7LiuwMcgwNq2+yBTQ1MoU2FmZXR5IENhcmUg
U3lzdGVtKSEgLCA8Zm9udCBjb2xvcj0iI2ZmMDAwMCI+PGI+PGZvbnQgc2l6ZT0iNCI+bi1T
VEFSIA0KICAgICAgICBDTC0yMDI8L2ZvbnQ+PC9iPjwvZm9udD64piDH0bn4ILi4s6q6uLy8
v+QmbmJzcDshPC9wPg0KICAgICAgPHA+Jm5ic3A7Jm5ic3A7uri02SDA2ry8x9EgwaS6uLim
IL/4x8+9w7jpIDxiPjxmb250IGNvbG9yPSIjZmYwMDAwIiBzaXplPSI0Ij6+xrehILHXuLLA
uyANCiAgICAgICAgxay4rzwvZm9udD48L2I+x8+/qSDB1r3KvcO/5C48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48YSBocmVmPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL2NvbXBh
bnkvbGFib3JhdG9yeS5odG0iPjxpbWcgc3JjPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL25z
dGFyL3JvZ29fcHJvLmdpZiIgd2lkdGg9IjM4NCIgaGVpZ2h0PSIzMTMiIGJvcmRlcj0iMCI+
PC9hPjwvcD4NCiAgICAgIDxwIGFsaWduPSJjZW50ZXIiPjxmb250IHNpemU9IjQiPm4tU1RB
UiBDTC0yMDK4piCxuMDUx8+9w7TCILDtsLS01LXpv6Gw1DwvZm9udD48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48Zm9udCBzaXplPSI0Ij7A57nMwNa0wiA8YSBocmVmPSJodHRw
Oi8vd3d3Lndvd2V4cG8uY29tL2dhbWUvZ2FtZWludHJvLmh0bSI+PGZvbnQgY29sb3I9IiNm
ZjAwMDAiPrnOubCzrL3DIA0KICAgICAgICCw1MDTKEtvcmVhIEZpc2hpbmcgXDI1LDAwMCk8
L2ZvbnQ+PC9hPsC7ILmrt+G3ziC15biztM+02S48L2ZvbnQ+PC9wPg0KICAgICAgPHAgYWxp
Z249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7
PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgICA8L3Rk
Pg0KICAgIDwvdHI+DQogICAgPHRyPg0KICAgICAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0
PSI3MyI+DQogICAgICAgICAgICANCiAgICAgICAgICAgICZuYnNwO6HcILvnwPwgx+O29L74
wMwguN7Az8C7ILq4s7uw1CC1yMGhILvnsPq15biztM+02S48YnI+DQogICAgICAgICAgICAm
bmJzcDuh3CC43sDPILz2vcXAuyC/+MfPvcPB9iC+ysC4vcO46SC02cC9wLsgxay4r8fYIMHW
vLy/5C48YnI+IA0KICAgICAgPHA+PGNlbnRlcj48YSBocmVmPSdodHRwOi8vaXRuc29mdC5j
b20vfm1haWx0b3VjaC91c2VyL3RvdWNoLmNnaT9jbWQ9cmVmdXNlX3ZpZXcmdXNlcmNvZGU9
bG9tcGpzb3Utc3NxcmtyLUpqb291Jmdyb3VwPTE0Jm5hbWU9Jm1haWw9Ymxhc3QtcGFyYWxs
ZWxAY3MudXRrLmVkdSc+PGltZyBzcmM9J2h0dHA6Ly9pdG5zb2Z0LmNvbS9+bWFpbHRvdWNo
L3VzZXIvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9wPg0KICAgICAg
ICA8L3RkPg0KICAgIDwvdHI+DQo8L3RhYmxlPg0KPHA+Jm5ic3A7PC9wPg0KPC9ib2R5Pg0K
PC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar  5 20:15:24 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id UAA01635; Tue, 5 Mar 2002 20:15:23 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 5 Mar 2002 20:15:23 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id UAA04546; Tue, 5 Mar 2002 20:12:57 -0500 (EST)
From: <sexi_mandi@hotmail.com>
Received: from hotmail.com (211.114.56.209)
 by cs.utk.edu (smtpshim v1.0); Tue, 5 Mar 2002 20:13:03 -0500
Reply-To: <sexi_mandi@hotmail.com>
Message-ID: <018a26b06c6e$6482d7a5$7bc03eb8@eygquj>
Subject: Best Adult Websites!
Date: Wed, 06 Mar 2002 04:01:16 -0300
MiME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook, Build 10.0.2627
Importance: Normal

Hi, my name is Cindy. I like to flirt and show off with my friends on my webcam. We are all just 18 and currently students. We like to get naked online because its naughty and gives us a thrill. Anyhow I don't want to get in trouble so I am not letting minors in to see us naked. If you want to see, you must click the link below and signup. Its free of charge, we just want to make sure you are 18 before showing you the link to our free webcam. 

Log in from here...   http://www.%61%64%64%69ct%69%76e%73e%78.com

3527mIKj7-004fnIk2271cdJh0-978XTbw160l35


From moore+bounces-blast-parallel@cs.utk.edu Wed Mar  6 20:19:28 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu ([127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id UAA02892; Wed, 6 Mar 2002 20:19:27 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 6 Mar 2002 20:19:27 -0500
Received: from simmani.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id UAA11440; Wed, 6 Mar 2002 20:19:04 -0500 (EST)
Message-Id: <200203070119.UAA11440@cs.utk.edu>
Received: from simmani.com (211.108.84.87)
 by cs.utk.edu (smtpshim v1.0); Wed, 6 Mar 2002 20:19:09 -0500
Reply-To: woo910@simmani.com
From: 9LH- <woo910@simmani.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] 4g=E@G 9Y6w3"8& EW=:F.GX :8<<?d!^^
Sender: 9LH- <woo910@simmani.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Thu, 7 Mar 2002 10:20:12 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id UAA11503

<html>
<head>
<title>=A2=BF=A2=BD=A1=DA [=C8=AD=C0=CC=C6=AE=B5=A5=C0=CC] =BC=B1=B9=B0=C0=
=BA "=C7=E0=BA=B9=C7=D1=B2=C9=B9=E6"=BF=A1=BC=AD...</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<style>
.dosa1 { font-family: "=B1=BC=B8=B2"; font-size: 13pt; line-height: 13pt;=
 color: 333333}
.dosa3 { font-family: "=B1=BC=B8=B2"; font-size: 10pt; line-height: 13pt;=
 color: 000000}
.dosa6 { font-family: "=B1=BC=B8=B2"; font-size: 12pt; line-height: 15pt;=
 color: 333333}
.dosa7 { font-family: "=B1=BC=B8=B2"; font-size: 9pt; line-height: 12pt; =
color: 000000}
.dosa8 { font-family: "=B1=BC=B8=B2"; font-size: 11pt; line-height: 14pt;=
 color: 000000}
td,body   {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#4B4B4B;}
A:link    {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:active  {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:visited {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:hover   {font-size:13px; text-decoration:underline ; color:blue; }
</style>
<script language=3D"JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=3Ddocument.MM_sr; for(i=3D0;a&&i<a.length&&(x=3Da[i])&&x.oSrc=
;i++) x.src=3Dx.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=3Ddocument; if(d.images){ if(!d.MM_p) d.MM_p=3Dnew Array();
    var i,j=3Dd.MM_p.length,a=3DMM_preloadImages.arguments; for(i=3D0; i<=
a.length; i++)
    if (a[i].indexOf("#")!=3D0){ d.MM_p[j]=3Dnew Image; d.MM_p[j++].src=3D=
a[i];}}
}
function MM_swapImage() { //v3.0
  var i,j=3D0,x,a=3DMM_swapImage.arguments; document.MM_sr=3Dnew Array; f=
or(i=3D0;i<(a.length-2);i+=3D3)
   if ((x=3DMM_findObj(a[i]))!=3Dnull){document.MM_sr[j++]=3Dx; if(!x.oSr=
c) x.oSrc=3Dx.src; x.src=3Da[i+2];}
}
function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=3Ddocument; if((p=3Dn.indexOf("?"))>0&&parent.fram=
es.length) {
    d=3Dparent.frames[n.substring(p+1)].document; n=3Dn.substring(0,p);}
  if(!(x=3Dd[n])&&d.all) x=3Dd.all[n]; for (i=3D0;!x&&i<d.forms.length;i+=
+) x=3Dd.forms[i][n];
  for(i=3D0;!x&&d.layers&&i<d.layers.length;i++) x=3DMM_findObj(n,d.layer=
s[i].document);
  if(!x && document.getElementById) x=3Ddocument.getElementById(n); retur=
n x;
}
function na_restore_img_src(name, nsdoc)
{
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img && img.altsrc) {
    img.src    =3D img.altsrc;
    img.altsrc =3D null;
  }=20
}
function na_preload_img()
{=20
  var img_list =3D na_preload_img.arguments;
  if (document.preloadlist =3D=3D null)=20
    document.preloadlist =3D new Array();
  var top =3D document.preloadlist.length;
  for (var i=3D0; i < img_list.length; i++) {
    document.preloadlist[top+i]     =3D new Image;
    document.preloadlist[top+i].src =3D img_list[i+1];
  }=20
}
function na_change_img_src(name, nsdoc, rpath, preload)
{=20
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img) {
    img.altsrc =3D img.src;
    img.src    =3D rpath;
  }=20
}
var n =3D (document.layers) ? 1:0;
var ie =3D (document.all) ? 1:0;
function overTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'visible';
  }=20
}
function outTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'hidden';
  }
}
//-->
</script>
</head>
<body bgcolor=3D"#ffffff" leftmargin=3D"0" topmargin=3D"0" marginwidth=3D=
"0" marginheight=3D"0" onLoad=3D"MM_preloadImages('http://www.flowerdosa.=
com/images/list-r.jpg','http://www.flowerdosa.com/images/baramtest_b.gif'=
,'http://www.flowerdosa.com/images/blood_b.gif','http://www.flowerdosa.co=
m/images/exite_b.gif','http://www.flowerdosa.com/images/dream_b.gif','htt=
p://www.flowerdosa.com/images/oheng_b.gif','http://www.flowerdosa.com/ima=
ges/ggistar_b.gif','http://www.flowerdosa.com/images/gunghop_b.gif','http=
://www.flowerdosa.com/images/result_b.gif','http://www.flowerdosa.com/ima=
ges/subbutton_home_b.gif','http://www.flowerdosa.com/images/subbutton_sin=
be_b.gif','http://www.flowerdosa.com/images/subbutton_romance_b.gif','htt=
p://www.flowerdosa.com/images/subbutton_lucky_b.gif','http://www.flowerdo=
sa.com/images/subbutton_madang_b.gif','http://www.flowerdosa.com/images/s=
ubbutton_mind_b.gif')">
<table border=3D0 cellpadding=3D0 cellspacing=3D0 width=3D770 align=3Dcen=
ter height=3D"100%">
<TR>
	<TD align=3Dmiddle valign=3Dtop><table width=3D"770" border=3D"0" cellsp=
acing=3D"0" cellpadding=3D"0" height=3D"100%">
		<tr valign=3Dtop>
			<td width=3D"305" height=3D"65"><A href=3D"http://www.flowerdosa.com/i=
ndex.htm" target=3D"_blank"><img src=3D"http://www.flowerdosa.com/images/=
stardosa.gif" width=3D"305" height=3D"65" border=3D"0"></A></td>
			<td width=3D"465" height=3D"65" background=3D"http://www.flowerdosa.co=
m/images/top_02-1.gif"><table width=3D"400" border=3D"0" cellspacing=3D"0=
" cellpadding=3D"0" height=3D"62" align=3D"right">
				<tr valign=3D"bottom">=20
					<td width=3D"398"><div align=3D"right">
                  <OBJECT align=3Dmiddle=20
                  classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540000=20
                  codeBase=3Dhttp://download.macromedia.com/pub/shockwave=
/cabs/flash/swflash.cab#version=3D4,0,2,0=20
                  height=3D60 width=3D250><PARAM NAME=3D"_cx" VALUE=3D"66=
14"><PARAM NAME=3D"_cy" VALUE=3D"1588"><PARAM NAME=3D"Movie" VALUE=3D"htt=
p://www.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"Src" VALUE=3D"ht=
tp://www.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"WMode" VALUE=3D=
"Window"><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"=
-1"><PARAM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D=
""><PARAM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""><PAR=
AM NAME=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0=
"><PARAM NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D=
""><PARAM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALUE=3D"=
below">
                  															<embed src=3D"http://www.flowerdosa.com/=
images/banner.swf" quality=3Dhigh pluginspage=3D"http://www.macromedia.co=
m/shockwave/download/index.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D"=
application/x-shockwave-flash" width=3D"250" height=3D"60" align=3D"middl=
e"></embed></OBJECT></div></td>
					<td width=3D"2"><img src=3D"http://www.flowerdosa.com/images/spacer.=
gif" width=3D"2" height=3D"1"></td>
				</tr>
				</table></td>
		</tr>
		<TR>
			<TD colspan=3D3 valign=3Dtop><table width=3D"770" border=3D"0" cellspa=
cing=3D"0" cellpadding=3D"0" align=3D"center">
				<tr>
					<td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.=
com/images/top_03.gif">&nbsp;</td>
					<td height=3D"25" width=3D"470" background=3D"http://www.flowerdosa.=
com/images/top_04.gif">
                  <OBJECT classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-4445535=
40000=20
                  codeBase=3Dhttp://download.macromedia.com/pub/shockwave=
/cabs/flash/swflash.cab#version=3D4,0,2,0=20
                  height=3D25 width=3D470><PARAM NAME=3D"_cx" VALUE=3D"12=
435"><PARAM NAME=3D"_cy" VALUE=3D"662"><PARAM NAME=3D"Movie" VALUE=3D"htt=
p://www.flowerdosa.com/images/linetext.swf"><PARAM NAME=3D"Src" VALUE=3D"=
http://www.flowerdosa.com/images/linetext.swf"><PARAM NAME=3D"WMode" VALU=
E=3D"Window"><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=
=3D"-1"><PARAM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VAL=
UE=3D""><PARAM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""=
><PARAM NAME=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=
=3D"0"><PARAM NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VAL=
UE=3D""><PARAM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALU=
E=3D"below">
                  															<embed src=3D"http://www.flowerdosa.com/=
images/linetext.swf" quality=3Dhigh pluginspage=3D"http://www.macromedia.=
com/shockwave/download/index.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D=
"application/x-shockwave-flash" width=3D"470" height=3D"25"></embed></OBJ=
ECT></td>
					<td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.=
com/images/top_05.gif">&nbsp;</td>
				</tr>
				</table></TD>
		</TR>
		<TR>
			<TD colspan=3D3 valign=3Dtop height=3D"100%"><table width=3D"770" bord=
er=3D"0" cellspacing=3D"0" cellpadding=3D"0" height=3D"100%" align=3D"cen=
ter">
				<tr><!-- =C1=C2=C3=F8=B8=DE=B4=BA -->=20
					<td width=3D"150" valign=3D"top" height=3D"332"><table width=3D"150"=
 border=3D"0" cellspacing=3D"0" cellpadding=3D"0" height=3D"100%">
						<tr>=20
							<td background=3D"http://www.flowerdosa.com/images/dosa.jpg" width=
=3D"150" height=3D"212"></td>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdosa.c=
om/sub25.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image211','','http://www.flowerdosa.com/images/baramtest_b.gif',1)" =
target=3D"_blank"><img name=3D"Image211" border=3D"0" src=3D"http://www.f=
lowerdosa.com/images/baramtest_a.gif" width=3D"150" height=3D"25"></a></t=
d>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdosa.c=
om/sub21.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image311','','http://www.flowerdosa.com/images/blood_b.gif',1)" targ=
et=3D"_blank"><img name=3D"Image311" border=3D"0" src=3D"http://www.flowe=
rdosa.com/images/blood_a.gif" width=3D"150" height=3D"26"></a></td>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdosa.c=
om/sub52.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image411','','http://www.flowerdosa.com/images/exite_b.gif',1)" targ=
et=3D"_blank"><img name=3D"Image411" border=3D"0" src=3D"http://www.flowe=
rdosa.com/images/exite_a.gif" width=3D"150" height=3D"26"></a></td>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdosa.c=
om/sub56.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image511','','http://www.flowerdosa.com/images/dream_b.gif',1)" targ=
et=3D"_blank"><img name=3D"Image511" border=3D"0" src=3D"http://www.flowe=
rdosa.com/images/dream_a.gif" width=3D"150" height=3D"26"></a></td>
						</tr>
						<tr>
							<td height=3D"10" background=3D"http://www.flowerdosa.com/images/l=
eft_06.gif"></td>
						</tr>
						<tr>=20
							<td bgcolor=3D'#009900' height=3D"100%"=20
                     ></td>
						</tr>
						</table></td><!-- =C1=C2=C3=F8=B8=DE=B4=BA=B3=A1 -->
					<td valign=3D"top" height=3D"332"><table width=3D"417" border=3D"0" =
cellspacing=3D"0" cellpadding=3D"0" align=3D"center" height=3D"5">
						<tr>=20
							<td width=3D"417" height=3D"5"><img src=3D"http://www.flowerdosa.c=
om/images/spacer.gif" width=3D"1" height=3D"2"></td>
						</tr>
						<tr>
							<TD><table width=3D"425" border=3D"0" cellspacing=3D"0" cellpaddin=
g=3D"0" align=3D"center" height=3D"18">
								<tr>=20
									<td height=3D"18" width=3D"70"><a href=3D"http://www.flowerdosa.=
com/index.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image8','','http://www.flowerdosa.com/images/subbutton_home_b.gif',=
1)" target=3D"_blank"><img name=3D"Image8" border=3D"0" src=3D"http://www=
.flowerdosa.com/images/subbutton_home_a.gif" width=3D"70" height=3D"18"><=
/a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub91.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image9','','http://www.flowerdosa.com/images/subbutton_sinbe_b.gif'=
,1)" target=3D"_blank"><img name=3D"Image9" border=3D"0" src=3D"http://ww=
w.flowerdosa.com/images/subbutton_sinbe_a.gif" width=3D"71" height=3D"18"=
></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub92.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image10','','http://www.flowerdosa.com/images/subbutton_romance_b.g=
if',1)" target=3D"_blank"><img name=3D"Image10" border=3D"0" src=3D"http:=
//www.flowerdosa.com/images/subbutton_romance_a.gif" width=3D"71" height=3D=
"18"></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub57.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image11','','http://www.flowerdosa.com/images/subbutton_lucky_b.gif=
',1)" target=3D"_blank"><img name=3D"Image11" border=3D"0" src=3D"http://=
www.flowerdosa.com/images/subbutton_lucky_a.gif" width=3D"71" height=3D"1=
8"></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub54.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image12','','http://www.flowerdosa.com/images/subbutton_madang_b.gi=
f',1)" target=3D"_blank"><img name=3D"Image12" border=3D"0" src=3D"http:/=
/www.flowerdosa.com/images/subbutton_madang_a.gif" width=3D"71" height=3D=
"18"></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/gallery.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image13','','http://www.flowerdosa.com/images/gallery_b2.gif',1)"=
 target=3D"_blank"><img name=3D"Image13" border=3D"0" src=3D"http://www.f=
lowerdosa.com/images/gallery_a2.gif" width=3D"71" height=3D"18"></a></td>
								</tr>
								</table></TD>
						</tr>
						<TR>
							<TD><table align=3D"center" valign=3D"top" border=3D"0" cellpaddin=
g=3D"0" cellspacing=3D"0" width=3D"620">
								<TR>
									<TD height=3D10></TD>
								</TR>
								<tr>
									<td align=3Dright><table border=3D0 cellpadding=3D0 cellspacing=3D=
0 width=3D542>
										<TR>
											<TD background=3D"http://www.flowerdosa.com/images/dosamail_00=
2.gif" WIDTH=3D"542" HEIGHT=3D"104" align=3Dmiddle><table border=3D0 cell=
padding=3D0 cellspacing=3D0 width=3D520>
												<TR>
												=09
                                        <TD>=C7=CF=B4=C3=BF=A1 =C2=F9=B6=F5=
=C7=D1 =BA=B0=C0=CC =BA=FB=B3=AA=B0=ED =B6=A5=BF=A1=B4=C2 =BE=C6=B8=A7=B4=
=D9=BF=EE =B2=C9=C0=CC =C7=C7=BE=EE=B3=AA=B5=ED=C0=CC,<BR>
                                          =BB=E7=B6=F7=BF=A1=B0=D4=B4=C2 =
=B5=FB=BD=BA=C7=D1 =BB=E7=B6=FB=C0=CC =C0=D6=BE=EE=BE=DF =C7=D1=B4=D9....=
<BR>
                                          <BR>
                                          =C7=C3=B6=F3=BF=F6=B5=B5=BB=E7=C0=
=C7 <b>"=C7=E0=BA=B9=C7=D1 =B2=C9=B9=E6"</b>=BF=A1=BC=AD <font color=3D"b=
lue"><b>[=C8=AD=C0=CC=C6=AE=B5=A5=C0=CC]</b></font> =BC=B1=B9=B0=C0=BB =C1=
=D8=BA=F1=C7=CF=BC=BC=BF=E4!</TD>
												</TR>
												</table></TD>
										</TR>
										<TR>
											<TD align=3Dright><IMG SRC=3D"http://www.flowerdosa.com/images=
/dosamail_003.gif" WIDTH=3D"142" HEIGHT=3D"94" BORDER=3D0 ALT=3D""></TD>
										</TR>
										</table></td>
								</tr>
								<tr>
									<TD><IMG SRC=3D"http://www.flowerdosa.com/images/dosamail_004.gi=
f" WIDTH=3D"573" HEIGHT=3D"39" BORDER=3D0 ALT=3D""></TD>
								</tr>
								<TR><!-- =BB=F3=C7=B0=C1=F8=BF=AD -->
									<TD align=3Dmiddle><table border=3D0 cellpadding=3D0 cellspacing=
=3D0 width=3D"98%">
										<TR>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
11.jpg" width=3D80 border=3D1 bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
21.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
41.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
51.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
61.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD></TR=
>
										<TR>
										  <TD>
											<P align=3Dcenter>=C8=A5=C7=D5=B2=C9=B9=D9=B1=B8=B4=CF+=BB=E7=C5=
=C1<BR>60,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>=C0=E5=B9=CC=C7=CF=C6=AE=B9=D9=B1=B8=B4=CF+<=
br>=BB=E7=C5=C1<BR>65,000=BF=F8</P></TD>
										  <TD>
											<DIV align=3Dcenter>100=BC=DB=C0=CC=B2=C9=B9=D9=B1=B8=B4=CF+<b=
r>=BB=E7=C5=C1<BR>130,000=BF=F8</DIV></TD>
										  <TD>
											<P align=3Dcenter>100=BC=DB=C0=CC=BB=F3=C0=DA+=BB=E7=C5=C1<BR>=
130,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>100=BC=DB=C0=CC=C7=CF=C6=AE=B9=DA=BD=BA+<br>=
=BB=E7=C5=C1<BR>150,000=BF=F8</P></TD></TR>
										<TR>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
71.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
81.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
91.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
01.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
11.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD></TR=
>
										<TR>
										  <TD>
											<P align=3Dcenter>20=BC=DB=C0=CC=BB=F3=C0=DA+=BB=E7=C5=C1<BR>5=
0,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>=C7=CF=C6=AE=B9=DA=BD=BA+=BB=E7=C5=C1<BR>100=
,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>50=BC=DB=C0=CC=C7=CF=C6=AE(=BB=A1=B0=AD)+<br=
>=BB=E7=C5=C1<BR>80,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>25=BC=DB=C0=CC=C7=CF=C6=AE+=BB=E7=C5=C1<BR>6=
0,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>=BB=A1=B0=AD=C0=E5=B9=CC=B2=C9=B4=D9=B9=DF+=BB=
=E7=C5=C1<BR>50,000=BF=F8</P></TD></TR>
										<TR>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
21.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
31.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
41.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
51.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter> </P></TD></TR>
										<TR>
										  <TD>
											<DIV align=3Dcenter>20=BC=DB=C0=CC=C0=E5=B9=CC=B2=C9=B4=D9=B9=DF=
+<br>=BB=E7=C5=C1<BR>45,000=BF=F8</DIV></TD>
										  <TD>
											<DIV align=3Dcenter>=BA=D0=C8=AB=C0=E5=B9=CC=B2=C9=B4=D9=B9=DF=
+=BB=E7=C5=C1<BR>50,000=BF=F8</DIV></TD>
										  <TD>
											<DIV align=3Dcenter>=C8=A5=C7=D5=B2=C9=B4=D9=B9=DF+=BB=E7=C5=C1=
<BR>50,000=BF=F8</DIV></TD>
										  <TD>
											<DIV align=3Dcenter>100=BC=DB=C0=CC=B2=C9=B4=D9=B9=DF+=BB=E7=C5=
=C1<BR>130,000=BF=F8</DIV></TD>
										  <TD>
											<P align=3Dcenter>&nbsp;</P></TD>
										</TR>
										<TR>
											<TD colspan=3D5>				 =20
                                    <UL>
                                      <P><br><br><B>&nbsp;=C8=AD=C0=CC=C6=
=AE=B5=A5=C0=CC =BF=B9=BE=E0=C1=D6=B9=AE=C0=BB =B9=DE=BD=C0=B4=CF=B4=D9.(=
=B9=E8=B4=DE=BD=C3=B0=A3=C0=BA =BF=C0=C0=FC /=20
                                        =BF=C0=C8=C4 =B1=B8=BA=D0=C7=D5=B4=
=CF=B4=D9)<BR>
                                        <FONT=20
										color=3Dred>* =C8=AD=C0=CC=C6=AE=B5=A5=C0=CC =B9=E8=B4=DE=C1=D6=
=B9=AE=C0=BA =C1=D6=B9=AE=C6=F8=C1=D6=B7=CE =C0=CE=C7=D8 =B4=E7=C0=CF=BF=A1=
 =C7=D1=C7=CF=BF=A9=20
                                        =BF=C0=C0=FC/=BF=C0=C8=C4 =B9=E8=B4=
=DE=C0=BB =C7=D5=B4=CF=B4=D9.<BR>
                                        * =BB=E7=C5=C1=C0=BA =C1=F6=BF=AA=
=BA=B0=B7=CE =B4=D9=B8=A6 =BC=F6=B5=B5 =C0=D6=BD=C0=B4=CF=B4=D9.</FONT></=
B></P>
                                    </UL>
                                  </TD></TR>
								  <TR></TR>
										</table></TD>
								</TR><!-- =BB=F3=C7=B0=C1=F8=BF=AD=B3=A1 -->
								</table></TD>
						</TR>
						<TR><!-- =B1=A4=B0=ED=B8=DE=C0=CF=C7=A5=BD=C3 -->
							<TD><ul>=BB=E7=C0=FC =BE=E7=C7=D8=BE=F8=C0=CC =B8=DE=C0=CF=C0=BB =BA=
=B8=B3=BB=BC=AD =C1=CB=BC=DB=C7=D5=B4=CF=B4=D9.<BR>
							=BA=BB =B8=DE=C0=CF=C0=BA =C0=CE=C5=CD=B3=DD=BB=F3=BF=A1 =BF=C3=B6=
=F3=BF=C2 =B8=DE=C0=CF=C1=D6=BC=D2=B8=A6 =B9=DF=C3=E9=C7=CF=BF=A9 =B9=DF=BC=
=DB=C7=CF=BF=B4=BD=C0=B4=CF=B4=D9.<BR>
							=BA=BB =B8=DE=C0=CF=C0=BA =C1=A4=BA=B8 =C5=EB=BD=C5=B8=C1 =C0=CC=BF=
=EB =C3=CB=C1=F8 =B9=D7 =C1=A4=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1=
 =B9=FD=B7=FC =C1=A6 50=C1=B6=BF=A1 =C0=C7=B0=C5=C7=D1 [=B1=A4=B0=ED] =B8=
=DE=C0=CF=C0=D4=B4=CF=B4=D9.<BR><BR>
							=BF=F8=C4=A1 =BE=CA=C0=B8=BD=C3=B8=E9 =BB=E8=C1=A6=C7=CF=BD=C3=B0=C5=
=B3=AA, <A href=3D"mailto:woo910@dreamwiz.com" title=3D=B8=DE=C0=CF=BC=F6=
=BD=C5=B0=C5=BA=CE!>[=BC=F6=BD=C5=B0=C5=BA=CE]</a>=B8=A6 =B4=AD=B7=AF=C1=D6=
=BC=BC=BF=E4!</ul>
							<p><CENTER>Copyright =A8=CF 2001-2002 &nbsp; J&amp;Y =C1=B6=B3=AA=B4=
=DC =C1=A4=BA=B8=C5=EB=BD=C5. All Rights Reserved.</CENTER>
                        <P></P></TD>
						</TR>
						</table></td>
				</tr>
				</table></TD>
		</TR>
		</table></TD>
</TR>
</table>=20
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar  8 12:09:09 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id MAA26680; Fri, 8 Mar 2002 12:09:09 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 8 Mar 2002 12:09:09 -0500
Received: from orgio.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id MAA16117; Fri, 8 Mar 2002 12:09:10 -0500 (EST)
Message-Id: <200203081709.MAA16117@cs.utk.edu>
Received: from orgio.net (61.81.101.193)
 by cs.utk.edu (smtpshim v1.0); Fri, 8 Mar 2002 12:09:11 -0500
Reply-To: yupgishop@orgio.net
From: "?11b<%" <yupgishop@orgio.net>
To: <blast-parallel@cs.utk.edu>
Subject: [F/:0GQ1$0m]?11b@{@N ;sG0@;FD4B ?11b@|9.<nGN8t@T4O4Y.
Sender: "?11b<%" <yupgishop@orgio.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 9 Mar 2002 02:09:51 +0900
X-User: 2.63-jmknhpnu-hprnpu-Hhmkl
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id MAA16132

PGJyPr7Is+fHz7y8v+Q/waS4uyC/+MShIL7KtMIguN7Az8C7ILq4s7u15bfBvK0gwcu828fV
tM+02S4NCjxicj7A+iC2x8fRILHisKG4t8j5ILzux8649MDMIL/Ax8LH37TCtaUgvsu4sSC5
5rn9wMwgvvi+7rytDQo8YnI+wMy3uLDUIL+wxKEgutKxuCDHz7DtILjewM/AuyC6uLPAtM+0
2S4NCjxicj6+xrehILvzx7DAuiC068elwPvAziC788ewwMyw7Q0KPGJyPrvnwMzGrrfOILCh
vcO46SA1MDC/qbChwfbAxyC788ewwMwgwNa9wLTPtNkuDQo8YnI+vu63wb/uILvzyLK/obyt
IL/Ax8LHz7DFtvMguLnAzCC55rmux8+/qSDB1r3DsO0NCjxicj6w3bfBx9ggwda9w7jpILCo
u+fHz7DavcC0z7TZLg0KPGJyPrjewM/AuyC53sC4vcUguPC157rQIA0KPGJyPsfXu/Mgx+C6
ucfPvcOw7SCwx7Ctx8+9w7DtDQo8YnI+vvDBprOqILDHvcLHz73DseK4piDB+L3JwLi3ziCx
4r/4x9W0z7TZLg0KPGJyPg0KPGJyPg0KPGJvZHkgb251bmxvYWQ9J3dpbmRvdy5vcGVuKCJo
dHRwOi8vd3d3Lnl1cGdpc2hvcC5jby5rciIpJz4gDQo8YSBocmVmPSJodHRwOi8vd3d3Lnl1
cGdpc2hvcC5jby5rciIgdGFyZ2V0PSJfYmxhbmsiPiANCjxpbWcgc3JjPSJodHRwOi8vd3d3
Lnl1cGdpc2hvcC5jby5rci9zaG9wL3VwZmlsZXMvMDIxMDAxMDAwMDIyMi5qcGciIHdpZHRo
PSIyMDAiIGhlaWdodD0iMjAwIj4gDQo8aW1nIHNyYz0iaHR0cDovL3d3dy55dXBnaXNob3Au
Y28ua3Ivc2hvcC91cGZpbGVzL3phLmpwZyIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiAN
CjxpbWcgc3JjPSJodHRwOi8vd3d3Lnl1cGdpc2hvcC5jby5rci9zaG9wL3VwZmlsZXMvdHR0
LkpQRyIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiANCjxpbWcgc3JjPSJodHRwOi8vd3d3
Lnl1cGdpc2hvcC5jby5rci9zaG9wL3VwZmlsZXMvMDIxMDA1MDAwMDA0Mi5qcGciIHdpZHRo
PSIyMDAiIGhlaWdodD0iMjAwIj4gDQo8aW1nIHNyYz0iaHR0cDovL3d3dy55dXBnaXNob3Au
Y28ua3Ivc2hvcC91cGZpbGVzLzAxNDAwNDAwMDAwMjIuanBnIiB3aWR0aD0iMjAwIiBoZWln
aHQ9IjIwMCI+IA0KPGltZyBzcmM9Imh0dHA6Ly93d3cueXVwZ2lzaG9wLmNvLmtyL3Nob3Av
dXBmaWxlcy8wMDkwMDEwMDAwMDIyLmdpZiIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiAN
CjxpbWcgc3JjPSJodHRwOi8veXVwZ2lzaG9wLmNvLmtyL3Nob3AvdXBmaWxlcy8wMDQwMDEw
MDAwMDcyLmpwZyIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiANCjxpbWcgc3JjPSJodHRw
Oi8veXVwZ2lzaG9wLmNvLmtyL3Nob3AvdXBmaWxlcy8wMTEwMDIwMDAwMjMyLmdpZiIgd2lk
dGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiANCjxpbWcgc3JjPSJodHRwOi8vd3d3Lnl1cGdpc2hv
cC5jby5rci9zaG9wL3VwZmlsZXMvMDA5MDAzMDAwMDA1Mi5qcGciIHdpZHRoPSIyMDAiIGhl
aWdodD0iMjAwIj4gDQo8Zm9udCBzaXplPTM+PGI+IA0KPGJyPrvnwMzGrrfOIMDMtb/Hz73D
t8G46SCx17iyILbHtMIgsdvAuyDFrLivx8+8vL/kIA0KPGZvbnQgc2l6ZT01IGNvbG9yPXJl
ZD4gDQq1tsavx9Egu/PHsCANCrHiud/H0SC788ewIA0Kv7Gx4sD7ILvzx7AgDQq/sbHiwPy5
riC87sfOuPQgDQo8L2I+DQo8YnI+DQo8YnI+DQo8QSBocmVmPSJtYWlsdG86eXVwZ2lzaG9w
QGludGl6ZW4uY29tIj689r3FsMW6zjwvYT4gDQo8YnI+IA0KPGJyPiANCjxwIGFsaWduPSJj
ZW50ZXIiPiZuYnNwOzxzcGFuIHN0eWxlPSJGT05ULVNJWkU6IDlwdCI+ursguN7Az8C6IMGk
urjF673Fus4gscew7bvnx9cguf23/CDBpiA1MMG2v6EgwMewxcfPv6kgIFuxpLDtXQ0KILje
wM/A08C7ILngyPy0z7TZLjxicj4gsc3Hz8DHILjewM8gwda80rTCILDLu/a/o8H4sPogwM+5
3SC758DMxq7AxyCw+LCzwPvAziCw97+hvK0NCiDD38Pix9EgsM3AzLjnLDxicj643sDPwda8
0iDAzL/cv6G0wiC02bilIMGkuri0wiDAz8O8ILjwuKO0zyC+yL3Jx8+9w7HiDQogudm2+LTP
tNkuIDxicj6758D8IMfjtvS++MDMILjewM/AuyC6uLO7sNQgtcggwaEgu+ew+rXluLO0z7TZ
LiCwqLvnx9W0z7TZLjwvc3Bhbj48L3A+PC9URD48L1RBQkxFPg0KPGJyPiANCjxicj4gDQo8
YnI+PC9mb250PjwvRk9OVD48L0JPRFk+PC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sat Mar  9 21:13:13 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id VAA25453; Sat, 9 Mar 2002 21:13:12 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 9 Mar 2002 21:13:12 -0500
Received: from yahoo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id VAA28646; Sat, 9 Mar 2002 21:13:13 -0500 (EST)
Message-Id: <200203100213.VAA28646@cs.utk.edu>
Received: from yahoo.com (211.202.87.13)
 by cs.utk.edu (smtpshim v1.0); Sat, 9 Mar 2002 21:13:14 -0500
Reply-To: pipi1227@yahoo.com
From: ">FEdGG>F" <pipi1227@yahoo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] ">FEdGG<: GG:N?0" 1X:9@; @'GQ =N@LF. <R03
Sender: ">FEdGG>F" <pipi1227@yahoo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 10 Mar 2002 11:14:52 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id VAA28647

<html>
<head>
<title>=B1=B9=B3=BB =C3=D6=B4=EB =B1=D4=B8=F0=C0=C7 =BE=C6=C5=E4=C7=C7 =C8=
=AF=C0=DA=B8=A6 =C0=A7=C7=D1 =C1=A4=BA=B8=B1=B3=B7=F9=C0=E5=B0=FA =C0=FC=B9=
=AE=BC=EE=C7=CE=B8=F4</title>
<meta name=3D"generator" content=3D"Namo WebEditor v4.0">
</head>
<body bgcolor=3D"white" text=3D"black" link=3D"blue" vlink=3D"purple" ali=
nk=3D"red">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D680 bgColor=3D#ffd744 bord=
er=3D0>
<TBODY>
<TR height=3D85>
<TD align=3Dmiddle width=3D"100%" height=3D"56">
            <p style=3D"LINE-HEIGHT: 5mm"><b><font size=3D"4"><img src=3D=
"http://www.atopia.co.kr/images/fmfmfm.gif" width=3D"640" height=3D"136" =
border=3D"0" usemap=3D"#ImageMap1"></font></b></p>
</TD></TR>
<TR>
<TD vAlign=3Dtop align=3Dmiddle>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"667" align=3Dcenter bgCol=
or=3D#ffffff=20
border=3D0 style=3D"LINE-HEIGHT: 5mm">
<TBODY>
<TR>
<TD colspan=3D"5" width=3D"667">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD height=3D"50" width=3D"14">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm"><b=
><span style=3D"FONT-SIZE: 12pt"=20
           ><IMG src=3D"http://218.145.54.39/1by1.gif"> </span></b></p></=
TD><TD height=3D"50" width=3D"605" align=3D"left" valign=3D"center" colsp=
an=3D"3">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm"><f=
ont size=3D"4" color=3D"blue"><b>
                        </b></font><font size=3D"4" color=3D"black"><b>=BE=
=C6=C5=E4=C7=C7=BE=C6</b></font><font size=3D"4" color=3D"blue"><b> </b><=
/font><font size=3D"4"><b>(</b><a href=3D"http://www.atopia.co.kr"><b>www=
.atopia.co.kr</b></a><b>)</b></font></p></TD><TD height=3D"50" width=3D"4=
8">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"166">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm">&n=
bsp;</p></TD><TD width=3D"248" height=3D"166" align=3D"left" valign=3D"to=
p">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm"><f=
ont size=3D"2"><img src=3D"http://www.atopia.co.kr/images/a1.gif" width=3D=
"200" height=3D"147" border=3D"1" usemap=3D"#ImageMap2"></font></p></TD><=
TD width=3D"5" height=3D"166" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm"><font size=3D"2"></=
font>&nbsp;</p>
</TD><TD width=3D"352" height=3D"166" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 6mm" align=3D"left"><spa=
n style=3D"FONT-SIZE: 10pt">=A2=D1<font color=3D"blue">=20
                        </font><font color=3D"red"><b>=B1=B9=B3=BB=C3=D6=C3=
=CA =B1=B9=B3=BB =C3=D6=B4=EB=B1=D4=B8=F0</b></font>=C0=C7 =BE=C6=C5=E4=C7=
=C7=20
                        =C0=FC=B9=AE =C4=BF=B9=C2=B4=CF=C6=BC<br>=A2=D1 =C7=
=CF=B7=E7=C6=F2=B1=D5 =B9=E6=B9=AE=C0=DA=BC=F6 2=C3=B5=BF=A9=B8=ED, <b><f=
ont color=3D"red">=C3=D1=B9=E6=B9=AE=C8=BD=BC=F6=20
                        100=B8=B8 =B5=B9=C6=C4!</font></b><font color=3D"=
red"><br></font> =A2=D1 <font color=3D"red"><b>=BE=C6=C5=E4=C7=C7 =BE=C6=B1=
=E2=BA=CE=C5=CD =BC=BA=C0=CE=B1=EE=C1=F6</b></font><font color=3D"blue"> =
</font>=BE=C6=C5=E4=C7=C7 =C4=A1=B7=E1=20
                         =C1=A4=BA=B8=20
                        =B1=B3=C8=AF<br>=A2=D1 =BE=C6=C5=E4=C7=C7 =B0=E6=B7=
=C2 20=B3=E2=C0=C7 =BF=EE=BF=B5=C0=DA=B0=A1 =B8=BB=C7=D8=C1=D6=B4=C2 <fon=
t color=3D"red"><b>=BE=C6=C5=E4=C7=C7=20
                        =B1=D8=BA=B9 =B3=EB=C7=CF=BF=EC=BF=CD =B9=CC=B1=B9=
=B0=FA =C0=CF=BA=BB=C0=C7 =C3=D6=BD=C5 =C4=A1=B7=E1=C1=A4=BA=B8 =BC=D2=B0=
=B3</b></font><br>=20
                          =A2=D1<font color=3D"red"> KBS 2TV =B4=BA=BD=BA=
=C5=F5=B5=A5=C0=CC</font>=BF=A1 =BE=C6=C5=E4=C7=C7=BE=C6 =BC=D2=B0=B3=20
                        (2001.8.20)</span></p></TD><TD width=3D"48" heigh=
t=3D"166">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"57">
                        <p style=3D"LINE-HEIGHT: 5mm"><span style=3D"FONT=
-SIZE: 9pt"></span>&nbsp;</p>
</TD><TD width=3D"605" height=3D"57" align=3D"left" valign=3D"center" col=
span=3D"3">
                        <p style=3D"LINE-HEIGHT: 5mm" align=3D"center"><b=
><font size=3D"4" color=3D"black">=BE=C6=C5=E4=C7=C7=BC=A5</font><font si=
ze=3D"4" color=3D"red">=20
                        </font><font size=3D"4">(<a href=3D"http://www.at=
opyshop.com">www.atopyshop.com</a>)&nbsp;</font></b></p></TD><TD width=3D=
"48" height=3D"57" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"176">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD><TD width=3D"248" height=3D"176" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm" align=3D"center"><f=
ont size=3D"2">&nbsp;<img src=3D"http://www.atopia.co.kr/images/a2.gif" w=
idth=3D"200" height=3D"144" border=3D"1" usemap=3D"#ImageMap3"></font></p=
>
</TD><TD width=3D"5" height=3D"176" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm"><font size=3D"2"></=
font>&nbsp;</p>
</TD><TD width=3D"352" height=3D"176" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 6mm" align=3D"left"><spa=
n style=3D"FONT-SIZE: 10pt"><br>=A2=D1=20
                        =BE=C6=C5=E4=C7=C7=BE=C6=B0=A1 =BF=EE=BF=B5=C7=CF=
=B4=C2 <font color=3D"red"><b>=B1=B9=B3=BB=C3=D6=C3=CA =BE=C6=C5=E4=C7=C7=
 =C0=FC=B9=AE =BC=EE=C7=CE=B8=F4</b></font><b><br></b> =A2=D1 =BA=B8=BD=C0=
=C1=A6,=20
                        =C3=B5=BF=AC=BF=AC=B0=ED, =BF=B0=BC=D2=C1=A6=B0=C5=
=BF=EB =BB=FE=BF=F6=B1=E2, =C0=CC=BF=C2=C0=FC=C7=D8=BC=F6=B1=E2, =C1=F5=BB=
=F3=B0=B3=BC=B1=C1=A6,=20
                        =B0=A1=B7=C1=BF=F2 =B0=B3=BC=B1=C1=A6=B5=EE &nbsp=
;<font color=3D"red"><b>=BE=C6=C5=E4=C7=C7 =B1=D8=BA=B9 =BE=C6=C0=CC=C5=DB=
 =C3=D1=C1=FD=C7=D5!</b></font><b>&nbsp;</b><br>=A2=D1=20
                        =BE=C6=C5=E4=C7=C7 =B0=FC=B7=C3 =C1=A6=C7=B0 =C0=DA=
=C3=BC =BF=AC=B1=B8, =B0=B3=B9=DF <br> =A2=D1 <font color=3D"red">=B5=BF=BE=
=C6=C0=CF=BA=B8,=20
                        =B0=E6=C7=E2=BD=C5=B9=AE, =BC=BC=B0=E8=C0=CF=BA=B8=
</font>=B5=EE=BF=A1 =BE=C6=C5=E4=C7=C7=BC=A5 =BC=D2=B0=B3.<br> </span></p=
>
</TD><TD width=3D"48" height=3D"176">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"37">
                        <p style=3D"LINE-HEIGHT: 7mm">&nbsp;&nbsp;<br>&nb=
sp;<b><span style=3D"FONT-SIZE: 16pt"><br></span></b><span style=3D"FONT-=
SIZE: 16pt"=20
           >&nbsp;</span></p>
</TD><TD width=3D"653" height=3D"37" colspan=3D"4">
                        <p style=3D"LINE-HEIGHT: 7mm"><b><span style=3D"F=
ONT-SIZE: 16pt"=20
           >=A1=D8=20
                        =C1=D6=BA=AF=BF=A1 =BE=C6=C5=E4=C7=C7=B7=CE =B0=ED=
=BB=FD=C7=CF=B4=C2 =BA=D0=B5=E9=C0=CC =C0=D6=C0=B8=B8=E9 =C0=A7=C0=C7 =B5=
=CE =BD=CE=C0=CC=C6=AE=B8=A6=20
                        =BE=CB=B7=C1=C1=D6=BC=BC=BF=E4. =B1=D7=BA=D0=BF=A1=
=B0=D5 =C5=AB =B5=B5=BF=F2=C0=CC =B5=C9 =BC=F6 =C0=D6=BD=C0=B4=CF=B4=D9. =
&nbsp;&nbsp;</span></b></p>
</TD></TR>
<TR>
<TD height=3D"49" width=3D"14" bgcolor=3D"#cccccc">
                        <p style=3D"LINE-HEIGHT: 5mm"><IMG=20
src=3D"http://218.145.54.39/1by1.gif"></p></TD><TD height=3D"49" width=3D=
"605" colspan=3D"3" bgcolor=3D"#cccccc">
                        <p style=3D"LINE-HEIGHT: 5mm"><span style=3D"FONT=
-SIZE: 9pt">&nbsp;&nbsp;<br>* =BA=BB =B8=DE=C0=CF=C0=BA =C1=A4=BA=B8=C5=EB=
=BD=C5=BA=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =C0=C7=B0=C5 (=B1=A4=B0=ED)=C0=
=D3=C0=BB =B9=E0=C0=D4=B4=CF=B4=D9. =C7=E3=B6=F4=BE=F8=C0=CC =C8=AB=BA=B8=
=B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=B5=E5=B7=C1 =C1=CB=BC=DB =C7=D5=B4=CF=B4=D9=
. =B1=CD=C7=CF=C0=C7 E-MAIL=C0=BA =B0=D4=BD=C3=C6=C7 =B5=EE=20
=C0=CE=C5=CD=B3=DD =BB=F3=BF=A1=BC=AD =BE=CB=B0=D4 =B5=C7=BE=FA=C0=B8=B8=E7=
, E-mail=C0=BB =C1=A6=BF=DC=C7=D1 =BE=EE=B6=B0=C7=D1 =C1=A4=BA=B8=B5=B5 =BE=
=CB=C1=F6 =B8=F8=C7=D4=C0=BB =B9=E0=C8=FC=B4=CF=B4=D9. =C7=CA=BF=E4=BE=F8=
=B4=C2 =B8=DE=C0=CF=C0=CF =B0=E6=BF=EC, =BA=D2=C6=ED=C7=CF=BD=C3=B4=F5=B6=
=F3=B5=B5 =B9=DD=BC=DB=C7=CF=BF=A9 =C1=D6=BD=C3=B8=E9=20
=B4=F5 =C0=CC=BB=F3 =B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=B5=B5=B7=CF =C7=CF=B0=
=DA=BD=C0=B4=CF=B4=D9.&nbsp;<br>&nbsp;</span><font size=3D"2"><br>
<img src=3D'http://itnsoft.com/~mailtouch/user/touch.cgi?cmd=3Dopen&userc=
ode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&state=3D1&code=3D933731' height=3D=
0 width=3D0><center><a href=3D'http://itnsoft.com/~mailtouch/user/touch.c=
gi?cmd=3Drefuse_view&usercode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&name=3D&=
mail=3Dblast-parallel@cs.utk.edu'><img src=3D'http://itnsoft.com/~mailtou=
ch/user/mail-refuse.gif' border=3D0)></center></font></p>
</TD><TD height=3D"49" width=3D"48" bgcolor=3D"#cccccc">
                        <p style=3D"LINE-HEIGHT: 5mm"=20
       >&nbsp;</p>
</TD></TR></TBODY></TABLE></TD></TR>
<TR height=3D40>
<TD align=3Dmiddle>
<P style=3D"LINE-HEIGHT: 5mm" align=3Dcenter><FONT color=3Dwhite size=3D"=
1"><B>Copyright &copy; 1998 - 2002 ATOPIA. All rights=20
reserved.</B></FONT><B><font size=3D"1"> </font></B></P></TD></TR></TBODY=
></TABLE>
<p>&nbsp;</p>
<map name=3D"ImageMap1">
<area shape=3D"RECT" coords=3D"457,62,561,88" href   =3D"http://www.atopi=
a.co.kr">
<area shape=3D"RECT" coords=3D"456,91,562,117" href   =3D"http://www.atop=
yshop.com">
<area shape=3D"RECT" coords=3D"460,76,461,77" href   =3D"http://www.atopi=
a.co.kr" target=3D"_blank">
<area shape=3D"RECT" coords=3D"513,104,514,105" href   =3D"http://www.ato=
pyshop.com" target=3D"_blank">
</map><map name=3D"ImageMap2">
<area shape=3D"RECT" coords=3D"6,7,187,144" href   =3D"http://www.atopia.=
co.kr">
</map><map name=3D"ImageMap3">
<area shape=3D"RECT" coords=3D"7,10,193,138" href   =3D"http://www.atopys=
hop.com">
</map></body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 11 04:23:22 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id EAA15570; Mon, 11 Mar 2002 04:23:21 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 04:23:21 -0500
Received: from imcard.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id EAA02651; Mon, 11 Mar 2002 04:23:23 -0500 (EST)
Message-Id: <200203110923.EAA02651@cs.utk.edu>
Received: from imcard.net (61.98.28.108)
 by cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 04:23:24 -0500
Reply-To: immail@imcard.net
From: IMCARD <immail@imcard.net>
To: <blast-parallel@cs.utk.edu>
Subject: <1$0m> Gv4k@N@; @'GQ Gv4k@N@G D+5e! Gv4k MD+5e!!
Sender: IMCARD <immail@imcard.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 11 Mar 2002 18:23:33 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id EAA02652

<HTML>
<HEAD>
<TITLE>=C7=F6=B4=EB=C0=CE=C0=BB =C0=A7=C7=D1 =C4=AB=B5=E5, =C7=F6=B4=EBM=C4=
=AB=B5=E5!</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dks_c_5601=
-1987">
<META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR>
</HEAD>
<BODY bgColor=3Dwhite onLoad=3D"">
<div align=3D"center"><font size=3D"2">=C7=E3=B6=F4=BE=F8=C0=CC =B8=DE=C0=
=CF=C0=BB =BA=B8=B3=BB=BC=AD =C1=CB=BC=DB=C7=D5=B4=CF=B4=D9. =B1=CD=C7=CF=
=C0=C7 =C0=CC=B8=DE=C0=CF=C0=BA =C0=A5=BC=AD=C7=CE=C1=DF =BE=CB=B0=D4 =B5=
=C7=BE=FA=C0=B8=B8=E7 =C0=FA=C8=F1=B4=C2=20
  =C0=CC=B8=DE=C0=CF =C0=CC=BF=DC=BF=A1 <br>
  =B1=CD=C7=CF=C0=C7 =BE=EE=B6=B0=C7=D1 =B0=B3=C0=CE=C1=A4=BA=B8=B5=B5 =B0=
=A1=C1=F6=B0=ED =C0=D6=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. =BA=BB =B8=DE=C0=CF=
=C0=BA =C1=A4=C5=EB=BA=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =B5=FB=B6=F3 =C1=
=A6=B8=F1=BF=A1 &lt;=B1=A4=B0=ED&gt;=C7=A5=B1=E2=B8=A6 =C7=D1 =B8=DE=C0=CF=
=C0=D4=B4=CF=B4=D9. <br>
  </font> <br>
</div>
<TABLE height=3D735 cellSpacing=3D0 borderColorDark=3Dwhite cellPadding=3D=
0 width=3D590=20
bgColor=3D#99ccff borderColorLight=3Dblack align=3D"center" border=3D"0">
  <TBODY>=20
  <TR bgColor=3D#ffffff>
    <TD width=3D297><a href=3D"http://www.imcard.net" target=3D"_blank"><=
IMG height=3D43 src=3D"http://www.imcard.net/mainimage/toplogo2.jpg" widt=
h=3D300 border=3D0></a></TD>
    <TD class=3Dtext-black vAlign=3Dbottom align=3Dright width=3D293>&nbs=
p;</TD></TR>
  <TR>
    <TD class=3Dtk-white width=3D590 colSpan=3D2 height=3D36><IMG height=3D=
36 src=3D"http://www.imcard.net/mail/top.jpg" width=3D600></TD>
  </TR>
  <TR>
    <TD width=3D590 colSpan=3D2 height=3D12>&nbsp;</TD></TR>
  <TR>
    <TD vAlign=3Dtop align=3Dmiddle width=3D590 colSpan=3D2>
      <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D576 bgColor=3D#fffff=
f border=3D0 align=3D"center">
        <TBODY>=20
        <TR>
          <TD align=3Dmiddle width=3D576>
            <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D560 border=3D0=
>
              <TBODY>
              <TR>
                <TD width=3D560 height=3D341>
                  <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D561 bord=
er=3D0>
                    <TBODY>
                    <TR>
                      <TD width=3D561 height=3D506>=20
                        <P align=3Dcenter><a href=3D"http://www.imcard.ne=
t" target=3D"_blank"><IMG height=3D80 src=3D"http://www.imcard.net/mail/t=
op2.jpg" width=3D520 border=3D0></a>&nbsp;=20
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D54=
3=20
                        align=3Dcenter border=3D0 height=3D"35">
                          <TBODY>=20
                          <TR>
                            <TD width=3D544 height=3D2><FONT face=3D=B1=BC=
=B8=B2=20
                              color=3D#ffffff size=3D2>.. </FONT></TD>
                          </TR>
                          <TR>
                            <TD width=3D544 height=3D24><FONT face=3D=B1=BC=
=B8=B2=20
                              color=3D#ffffff size=3D2>.</FONT><FONT=20
                              size=3D2>&nbsp;<font color=3D"#0000ff">=C7=E0=
=BB=E7=B1=E2=B0=A3(2002. 3. 1.~ 2002. 3.=20
                              30.)=BF=A1 =C7=F6=B4=EB=C4=AB=B5=E5=B8=A6 =BD=
=C5=C3=BB=C7=CF=BD=C3=B4=C2 =B8=F0=B5=E7=BA=D0=B2=B2 =C3=D6=BD=C5=C7=FC =C7=
=DA=B5=E5=C6=F9=B0=FA =C8=DE=B4=EB=BF=EB =C0=BD=C1=D6=C3=F8=C1=A4=B1=E2(=BC=
=B1=C2=F8=BC=F8 200=B8=ED)=B8=A6=20
                              =B9=AB=B7=E1=B7=CE =B5=E5=B8=B3=B4=CF=B4=D9=
. =B6=C7=C7=D1 =BD=C5=C3=BB=C7=CF=BD=C3=B4=C2 =B8=F0=B5=E7=BA=D0=B2=B2 =C1=
=A6=C1=D6=B5=B5 2=B9=DA 3=C0=CF =B9=AB=B7=E1 =B0=FC=B1=A4=B1=C7=B5=B5=20
                              =B5=E5=B8=B3=B4=CF=B4=D9. (=B4=DC, =C7=D7=B0=
=F8=B7=E1 =BA=BB=C0=CE=BA=CE=B4=E3) -=C7=F6=B4=EB=C4=AB=B5=E5 =B5=BF=B4=EB=
=B9=AE =B4=EB=B8=AE=C1=A1-</font>=20
                              </FONT></TD>
                          </TR></TBODY></TABLE>
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D54=
4=20
                        align=3Dcenter border=3D0>
                          <TBODY>=20
                          <TR>=20
                            <TD height=3D145 width=3D"184">=20
                              <P align=3D"right"><a href=3D"http://www.im=
card.net" target=3D"_blank"><IMG height=3D120 src=3D"http://www.imcard.ne=
t/mail/stamfL.jpg" width=3D145 border=3D0></a><FONT=20
                              size=3D2> </FONT></P>
                            </TD>
                            <TD height=3D145 width=3D"172">
                              <div align=3D"center"><a href=3D"http://www=
.imcard.net" target=3D"_blank"><IMG height=3D120 src=3D"http://www.imcard=
.net/mail/stamfj.jpg" width=3D120 border=3D0></a></div>
                            </TD>
                            <TD height=3D145 width=3D"188"><a href=3D"htt=
p://www.imcard.net" target=3D"_blank"><IMG height=3D120 src=3D"http://www=
.imcard.net/mail/stamfR.jpg" width=3D145 border=3D0></a></TD>
                          </TR>
                          </TBODY>=20
                        </TABLE>
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D54=
4=20
                        align=3Dcenter border=3D0>
                          <TBODY>=20
                          <TR>
                            <TD>&nbsp;</TD>
                          </TR>
                          <TR>
                            <TD height=3D"27"><IMG height=3D27 src=3D"htt=
p://www.imcard.net/mail/mcard.jpg" width=3D180></TD>
                          </TR>
                          <TR>
                            <TD height=3D34><font size=3D"2">=C7=F6=B4=EB=
=C0=DA=B5=BF=C2=F7 =B1=D7=B7=EC=C0=CC =B4=D9=C0=CC=B3=CA=BD=BA=C4=AB=B5=E5=
=B8=A6 =C0=CE=BC=F6=C7=CF=BF=A9=20
                              =BE=DF=BD=C9=C0=FB=C0=B8=B7=CE =C3=E2=B9=FC=
=C7=CF=B4=C2 =BB=F5=B7=CE=BF=EE =BD=C5=BF=EB=C4=AB=B5=E5=B7=CE=BC=AD =C6=AF=
=C8=F7 =C0=DA=B5=BF=C2=F7 =BF=EE=C0=FC=C0=DA=B5=E9=BF=A1=B0=D4 =B0=A1=C0=E5=
 =C7=CA=BF=E4=C7=D1 =C4=AB=B5=E5=C0=D4=B4=CF=B4=D9.</font></TD>
                          </TR>
                          <TR>
                            <TD height=3D92> <br>
                              <table width=3D"400" border=3D"0" cellspaci=
ng=3D"0" cellpadding=3D"0" align=3D"center" height=3D"87">
                                <tr bgcolor=3D"#ffffff">=20
                                  <td height=3D"107"> <font size=3D"2"><I=
MG height=3D12 src=3D"http://www.imcard.net/mail/bu_01.gif" width=3D12>=C1=
=D6=C0=AF=20
                                    1=B8=AE=C5=CD=B4=E7 40=BF=F8 =C7=D2=C0=
=CE<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=B1=E2=BE=C6=20
                                    / =C7=F6=B4=EB=C0=DA=B5=BF=C2=F7 =B1=B8=
=C0=D4=BD=C3 =C3=D6=B0=ED 200=B8=B8=BF=F8=B1=EE=C1=F6 =C7=D2=C0=CE<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=C4=AB=B5=E5=B0=E1=C1=A6=C1=D6=C0=AF=BF=
=CD=20
                                    =B5=BF=BD=C3 72=BD=C3=B0=A3=B5=BF=BE=C8=
 =C3=D6=B0=ED 1=C3=B5=B8=B8=BF=F8 =BB=F3=C7=D8=BA=B8=C7=E8 =C0=DA=B5=BF=B0=
=A1=C0=D4<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=C0=FC=B1=B9=20
                                    =C1=D6=BF=E4 =C0=DA=B5=BF=C2=F7 =B1=D8=
=C0=E5 =B9=AB=B7=E1 =C0=D4=C0=E5 (=BC=AD=BF=EF-=C0=E1=BD=C7 =C4=AE=B8=B62=
1, =BD=C3=B3=D7=B8=B6Q)<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=C0=FC=B1=B9=20
                                    =B0=A2=C1=F6 =C8=A3=C5=DA, =C4=DC=B5=B5=
=C7=D2=C0=CE =BC=AD=BA=F1=BD=BA(10-77%)<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=B1=B9=B3=BB=BC=B1,=20
                                    =B1=B9=C1=A6=BC=B1, =B0=ED=BC=D3=B9=F6=
=BD=BA, =C3=B6=B5=B5, =C7=D2=C0=CE=C7=FD=C5=C3 (5-7%)</font> </td>
                                </tr>
                              </table>
                              <br>
                            </TD>
                          </TR>
                          <TR bgcolor=3D"#cccccc">=20
                            <TD height=3D"30">=20
                              <table width=3D"96" border=3D"0" cellspacin=
g=3D"0" cellpadding=3D"0" align=3D"center">
                                <tr>
                                  <td height=3D"27"><a href=3D"http://www=
.imcard.net" target=3D"_blank"><IMG height=3D23 src=3D"http://www.imcard.=
net/mail/mswi1.jpg" width=3D124 border=3D0 name=3DImage13></a></td>
                                </tr>
                              </table>
                            </TD>
                          </TR></TBODY></TABLE>
                        <P></P></TD></TR></TBODY></TABLE></TD></TR>
              <TR>
                <TD align=3Dmiddle width=3D560 height=3D30>
                  <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D566 bord=
er=3D0>
                    <TBODY>
                    <TR>
                      <TD style=3D"FONT-SIZE: 8pt" align=3Dmiddle width=3D=
566=20
                      height=3D22>
                        <DIV align=3Dcenter>=B8=DE=C0=CF=BF=A1 =B4=EB=C7=D1=
 =B9=AE=C0=C7 =BB=E7=C7=D7=C0=CC =C0=D6=C0=BB =B0=E6=BF=EC =BB=F3=B4=E3=B8=
=DE=C0=CF=C0=BB =BA=B8=B3=BB=C1=D6=BC=BC=BF=E4. <A href=3D"mailto:im@imca=
rd.net"><IMG height=3D15 src=3D"http://www.imcard.net/mail/btn1.gif" widt=
h=3D101 border=3D0></A></DIV>
                      </TD></TR>
                    <TR>
                      <TD align=3Dmiddle width=3D566 bgColor=3D#ffffff>
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"1=
00%"=20
border=3D0>
                          <TBODY>
                          <TR>
                            <TD bgColor=3D#d7d7d7>
                              <TABLE cellSpacing=3D1 cellPadding=3D3 widt=
h=3D"100%"=20
                              border=3D0>
                                <TBODY>
                                <TR vAlign=3Dcenter bgColor=3D#ffffff>
                                  <TD class=3Dtk style=3D"LINE-HEIGHT: 13=
pt"=20
                                height=3D41><A=20
                                href=3D"mailto:gamsayo@yahoo.co.kr?subjec=
t=3D1004@1004d.com &Agrave;&Ccedil; &raquo;&ccedil;=A2=AF&euml;&Agrave;&U=
acute;=A1=A4&Icirc;=A8=F6&aacute; #=A8=F9&ouml;=A8=F6&Aring;&Agrave;&raqu=
o;=A1=C6&Aring;=A8=AC&Icirc;&Ccedil;&Otilde;=A2=A5&Iuml;=A2=A5&Ugrave;#&a=
mp;body=3D1004@1004d.com &Agrave;&raquo; =A1=BE&Iacute;&Ccedil;&Iuml;&Agr=
ave;&Ccedil; =A2=AC=A2=E7=A8=F6=A8=AC=A8=A1=A2=E7=A2=AF=A2=AE=A8=F9&shy; =
&raquo;&egrave;&Aacute;&brvbar;=A2=AF&auml;=A2=AC&Aacute;!"></A>&nbsp;<FO=
NT=20
                                size=3D2><B>=C0=CC =B8=DE=C0=CF=C0=BA =C0=
=CF=C8=B8=BC=BA =B1=A4=B0=ED=B8=DE=C0=CF=B7=CE=BC=AD =B4=D9=BD=C3 =B9=DF=BC=
=DB=B5=C7=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. =C1=DF=BA=B9=B9=DF=BC=DB=C0=BA=20
                                    =C7=C1=B7=CE=B1=D7=B7=A5=C0=C7 =BF=C0=
=B7=F9=B7=CE =C0=CE=C7=D1 =B0=CD=C0=CC=BF=C0=B3=AA =C1=A4=C1=DF=C8=F7 =BB=
=E7=B0=FA=B5=E5=B8=AE=BF=C0=B8=E7 =BC=F6=BD=C5=B0=C5=BA=CE =C3=BC=C5=A9=B8=
=A6 =C7=CF=BD=C3=B8=E9=20
                                    =C1=EF=BD=C3 =C1=B6=C3=B3=C7=CF=B0=DA=
=BD=C0=B4=CF=B4=D9.</B></FONT> <A href=3D"mailto:im@imcard.net?subject=3D=
%BC%F6%BD%C5%B0%C5%BA%CE&amp;body=3D%BC%F6%BD%C5%B0%C5%BA%CE"><IMG height=
=3D18 src=3D"http://www.imcard.net/mail/btn2.gif" width=3D100 border=3D0>=
</A></TD>
                                </TR></TBODY></TABLE></TD></TR></TBODY></=
TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR>
        <TR bgColor=3D#99ccff>
          <TD width=3D576 height=3D8>
            <P align=3Dcenter><FONT color=3Dgray size=3D2><B>&nbsp;</B></=
FONT><FONT=20
            size=3D2> <A href=3D"http://www.imcard.net"=20
            target=3D_blank>http://www.imcard.net</A></FONT></P>
          </TD></TR>
        <TR bgColor=3D#99ccff>
          <TD width=3D576=20
height=3D10>&nbsp;</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></B=
ODY></HTML>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 11 05:48:15 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA16869; Mon, 11 Mar 2002 05:48:15 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 05:48:15 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA15309; Mon, 11 Mar 2002 05:48:17 -0500 (EST)
Message-Id: <200203111048.FAA15309@cs.utk.edu>
Received: from hotmail.com (210.110.47.35)
 by cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 05:48:18 -0500
Reply-To: ncstyle49@hotmail.com
From: "4:DZ=:" <ncstyle49@hotmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: H-@eG0 >2=C4B ?)<::P88 :8<<?d.1&Bz@: =N@LF.8& <R03GO7A18?d..[1$ _0m]
Sender: "4:DZ=:" <ncstyle49@hotmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 11 Mar 2002 19:48:07 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id FAA15319

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD48Rk9OVCBjb2xvcj0jZmYwMDAwPiog
ud+9xcD8v+vAzLnHt84gvPa9xcDMILrSsKHH1bTPtNkuPC9GT05UPjwvUD4NCjxQPiogud21
5b3DIDxBIGhyZWY9Im1haWx0bzpuY21hbkBzaW1tYW5pLmNvbSI+wMyw9zwvQT4oPEEgDQpo
cmVmPSJtYWlsdG86bmNtYW5Ac2ltbWFuaS5jb20iPm5jbWFuQHNpbW1hbmkuY29tPC9BPinA
uLfOIMi4vcUgudm2+LTPtNkuPC9QPg0KPFA+KiC60sfKv+TH0SDBpLq4tvO46SZuYnNwO8H4
vcnAuLfOIMHLvNvH1bTPtNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+vsiz58fPvLy/5D8g
yK3A5cewIL3OwMzGrjwvUD4NCjxQPjxBIGhyZWY9Imh0dHA6Ly93d3cubmV3Y29zLmNvLmty
Ij60usTavbooaHR0cDovL3d3dy5uZXdjb3MuY28ua3I8L0E+KbChILv1t84gDQq/wMfCx8+/
tL3AtM+02S48L1A+DQo8UD7H0bn4ILXpt6+8xbytILG4sObH2Lq4vLy/5C48L1A+DQo8UD6+
xri2ILChsN3AzCDA+rfFx9KwxbbzILv9sKLHz7jnLL7GwdYgsKPG7cfPsNQgsbi4xcfPvccg
vPYgwNbAu7DMtM+02S48L1A+DQo8UD7Ds8C9wMy28yC4ucDMILrOwbfHz8H2uLggwfbE0brB
wda8vL/kLjwvUD4NCjxQPjxCUj48QSBocmVmPSJodHRwOi8vd3d3Lm5ld2Nvcy5jby5rciI+
tdG3r7q4seIoxay4ryk8L0E+PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+odggursguN7Az8C6
IMGkurjF673FuMG/oSCw/MfRILn9t/wgwaYgNTDBtr+hIMDHsMXHz7+pIFuxpLDtXbjewM/A
08C7ILngyPy0z7TZLjwvUD4NCjxQPsfjtvS++MDMILjewM/AuyC6uLO9waEgwfi9ycC4t84g
wcu828fVtM+02S48L1A+DQo8UD7AzCC43sDPwLogwKW8rcfOILW1wd8gsPiws7XIILTUwMcg
uN7Az8C7ILq4sO0gurizu7XluK60wiCxpLDtwNS0z7TZLjxCUj6w4cTaLDxGT05UIGNvbG9y
PSNmZjAwMDA+uN7Az8HWvNLAzL/cILTUv6EgDQq068fRIL7utrIgwaS6uLW1ILChwfaw7SDA
1sH2IL7KvcC0z7TZLrjNvLzE2i4uLjwvRk9OVD48L1A+DQo8UD48Rk9OVCBjb2xvcj0jZmYw
MDAwPjxCUj48L0ZPTlQ+PC9QPg0KPFA+v8C0w7W1IMHxsMyw7SDH4Lq5x9Egx8+35yC1x7y8
v+R+fn5+PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wMy43sDPwLogPEZPTlQgY29sb3I9I2Zm
MDAwMD65373FwPy/68DMuce3ziC89r3FwMwgutKwocfVtM+02S7By7zbx9W0z7TZLjwvRk9O
VD48L1A+DQo8UD48Rk9OVCBjb2xvcj0jZmYwMDAwPjwvRk9OVD4mbmJzcDs8L1A+DQo8UD65
3bXlvcMgvsa3ocDHILjewM+3ziC6uLO7wda9w7HiILnZtvi0z7TZLiCwxbXsIMHLvNvH1bTP
tNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+WzxBIA0KaHJlZj0ibWFpbHRvOm5ld2Nvc21h
bkBzaW1tYW5pLmNvbT9zdWJqZWN0PVu89r3FsMW6zl0mYW1wO2JvZHk9vPa9xbDFus4gv+TD
uy4iPrz2vcWwxbrOuN7Az7q4s7ux4jwvQT4oPEEgDQpocmVmPSJtYWlsdG86bmNtYW5Ac2lt
bWFuaS5jb20pIj5uY21hbkBzaW1tYW5pLmNvbSk8L0E+XSZuYnNwOzwvUD4NCjxQPiZuYnNw
OzwvUD4NCjxQPjxjZW50ZXI+PGEgaHJlZj0naHR0cDovLzIxMC4xMTAuNDcuMzU6OTA4MC9y
ZWZ1c2UvcmVmdXNlP2NtZD12aWV3Jmdyb3VwPTcmbmFtZT0mbWFpbD1ibGFzdC1wYXJhbGxl
bEBjcy51dGsuZWR1Jz48aW1nIHNyYz0naHR0cDovLzIxMC4xMTAuNDcuMzU6OTA4MC9yZWZ1
c2UvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9QPg0KPFA+Jm5ic3A7
PC9QPg0KPC9CT0RZPg0KPC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 11 17:09:53 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id RAA05573; Mon, 11 Mar 2002 17:09:52 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 17:09:52 -0500
Received: from netian.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id RAA16226; Mon, 11 Mar 2002 17:09:55 -0500 (EST)
Message-Id: <200203112209.RAA16226@cs.utk.edu>
Received: from netian.com (61.254.180.186)
 by cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 17:09:56 -0500
Reply-To: dzon21@netian.com
From: dazon21 <dzon21@netian.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]@L:84Y 4u=N8i 5N9hH/:R
Sender: dazon21 <dzon21@netian.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 12 Mar 2002 07:09:21 +0900
X-User: 2.62-hkilfmmw-jppofm-Ffkin
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id RAA16230

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9ImNvbnRlbnQtdHlwZSIgY29udGVu
dD0idGV4dC9odG1sOyBjaGFyc2V0PWV1Yy1rciI+DQo8dGl0bGU+NcDPIMDlxc3H4LvnITwv
dGl0bGU+DQo8bWV0YSBuYW1lPSJnZW5lcmF0b3IiIGNvbnRlbnQ9Ik5hbW8gV2ViRWRpdG9y
IHY1LjAiPg0KPC9oZWFkPg0KPGJvZHkgYmdjb2xvcj0id2hpdGUiIHRleHQ9ImJsYWNrIiBs
aW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjxkaXYgYWxpZ249Imxl
ZnQiPg0KICAgIDxwPiZuYnNwOzwvcD4NCiAgICA8dGFibGUgYm9yZGVyPSIwIiB3aWR0aD0i
NDkwIiBiZ2NvbG9yPSIjY2NjY2NjIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRk
IHdpZHRoPSI1NzAiIGJnY29sb3I9IiNmZmZmY2MiPg0KICAgICAgICAgICAgICAgIDxwIGFs
aWduPSJsZWZ0Ij48Zm9udCBmYWNlPSK8rb/vtbXGriIgY29sb3I9IiM5OTAwNjYiPjxzcGFu
IHN0eWxlPSJGT05ULVNJWkU6IDIycHQiIA0KICAgICA+Jm5ic3A7PC9zcGFuPjwvZm9udD48
c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiAyNHB0IiANCiAgICAgPjxhIGhyZWY9Imh0dHA6Ly93
d3cuZGF6b24yMS5jb20iIHRhcmdldD0iX2JsYW5rIj48Zm9udCBmYWNlPSK8rb/vtbXGriIg
Y29sb3I9IiM5OTAwNjYiPjXAz8Dlxc3H4LvnITwvZm9udD48L2E+PC9zcGFuPjwvcD4NCiAg
ICAgICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+PGZvbnQgZmFjZT0ivK2/77zSs6q5q00i
PjxzcGFuIHN0eWxlPSJGT05ULVNJWkU6IDE2cHQiPjxhIGhyZWY9Imh0dHA6Ly93d3cuZGF6
b24yMS5jb20iIHRhcmdldD0iX2JsYW5rIj4mbmJzcDsgJm5ic3A7NcDPIMDlxc0gwabHsMHf
IMW4ILzux8649CC6uLTZIA0KICAgICAgICAgICAgICAgILrxvdIgsOa/7Dxicj4gJm5ic3A7
Jm5ic3A7wve+18DHIDK56LimIMivutIgx9i15biztM+02S48L2E+PC9zcGFuPjwvZm9udD48
L3A+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgICAgICA8dHI+DQog
ICAgICAgICAgICA8dGQgd2lkdGg9IjU3MCIgYmdjb2xvcj0iI2ZmZmZjYyI+DQogICAgICAg
ICAgICAgICAgPHA+PGZvbnQgZmFjZT0ivK2/77W1xq4iIGNvbG9yPSJmdWNoc2lhIj48c3Bh
biBzdHlsZT0iRk9OVC1TSVpFOiAyNHB0IiANCiAgICAgPiZuYnNwOzwvc3Bhbj48L2ZvbnQ+
PGEgaHJlZj0iaHR0cDovL3d3dy5kYXpvbjIxLmNvbSIgdGFyZ2V0PSJfYmxhbmsiPjxzcGFu
IHN0eWxlPSJGT05ULVNJWkU6IDI0cHQiIA0KICAgICA+PGZvbnQgZmFjZT0ivK2/77W1xq4i
IGNvbG9yPSJmdWNoc2lhIj7BpjE4wvcgDQogICAgICAgICAgICAgICAgsPi1v7G4uMXH4Lvn
ITwvZm9udD48L3NwYW4+PC9hPjwvcD4NCiAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJo
dHRwOi8vd3d3LmRhem9uMjEuY29tIiB0YXJnZXQ9Il9ibGFuayI+Jm5ic3A7Jm5ic3A7Jm5i
c3A7PC9hPjxmb250IGZhY2U9Irytv++80rOquatNIj48c3BhbiBzdHlsZT0iRk9OVC1TSVpF
OiAxNnB0Ij48YSBocmVmPSJodHRwOi8vd3d3LmRhem9uMjEuY29tIiB0YXJnZXQ9Il9ibGFu
ayI+M7/5IA0KICAgICAgICAgICAgICAgIDTAz7rOxc0gvce9wzxicj4gPGJyPjwvYT48L3Nw
YW4+PC9mb250PjwvcD4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAg
ICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB3aWR0aD0iNTcwIiBiZ2NvbG9yPSIjZmZmZmNj
Ij4NCiAgICAgICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+PHNwYW4gc3R5bGU9IkZPTlQt
U0laRTogMzZwdCIgDQogICAgID48YSBocmVmPSJodHRwOi8vd3d3LmRhem9uMjEuY29tIiB0
YXJnZXQ9Il9ibGFuayI+PGZvbnQgZmFjZT0ivK2/77W1xq4iIGNvbG9yPSIjY2M5OTMzIj4m
bmJzcDs8L2ZvbnQ+PC9hPjwvc3Bhbj48c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiAyNHB0IiAN
CiAgICAgPjxhIGhyZWY9Imh0dHA6Ly93d3cuZGF6b24yMS5jb20iIHRhcmdldD0iX2JsYW5r
Ij48Zm9udCBmYWNlPSK8rb/vtbXGriIgY29sb3I9IiNjYzk5MzMiPrW/tOu5riANCiAgICAg
ICAgICAgICAgICDG0LzHILCzwOXA07naITwvZm9udD48L2E+PC9zcGFuPjwvcD4NCiAgICAg
ICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+PGZvbnQgZmFjZT0ivK2/77zSs6q5q00iPjxz
cGFuIHN0eWxlPSJGT05ULVNJWkU6IDE4cHQiPjxhIGhyZWY9Imh0dHA6Ly93d3cuZGF6b24y
MS5jb20iIHRhcmdldD0iX2JsYW5rIj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsyMDAwsLMg
DQogICAgICAgICAgICAgICAgwMy788DHILW/tOu5riDA/LmuxtC8x8GhwMw8YnI+ICZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwO7TZsKG/ybTPtNkuPC9hPjwvc3Bhbj48L2ZvbnQ+PC9wPg0K
ICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3RhYmxlPg0KPC9kaXY+
DQo8cD4mbmJzcDs8L3A+DQo8cD48c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiAxMHB0Ij48YSBo
cmVmPSJodHRwOi8vd3d3LmRhem9uMjEuY29tIiB0YXJnZXQ9Il9ibGFuayI+PGZvbnQgY29s
b3I9IiNmZjY2MDAiPqHaIA0KyLi/+MC4t84gsKHA1MfPvcO46SDAzL20v80gwMy6pcaute4s
vsvCpSDBpLq4v80gsKLBviDH/cXDwLsgud7AuL3HILz2IMDWvcC0z7TZLjwvZm9udD48L2E+
PGZvbnQgY29sb3I9IiNmZjY2MDAiPjxicj48L2ZvbnQ+PGZvbnQgY29sb3I9IiM2NjY2NjYi
PqHavO7Hzrj0IA0Kv+6/tb+hILD8vckgwNbAuL3FutDAuiA8L2ZvbnQ+PGEgaHJlZj0iaHR0
cDovL2tzczIyMzAuaGlob21lLmNvbS9zaG9waW5mby5odG0iIHRhcmdldD0iX2JsYW5rIj48
Zm9udCBjb2xvcj0iIzAwMDBjYyI+W7+pseJdPC9mb250PjwvYT48L3NwYW4+PC9wPg0KPHA+
PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+Jm5ic3A7PC9zcGFuPjxzcGFuIHN0eWxl
PSJGT05ULVNJWkU6IDlwdCI+PGZvbnQgY29sb3I9IiM5OTk5OTkiPrHNx8/AxyANCrjhwda8
0rTCIMClvK3HzsHfIL7LsNQgtce++sC4uOcguOHB1rzSIMDMv9zAxyC02bilIMGkuri0wiDA
z8O8IL7LwfYguPjH1bTPtNkuIA0KPGJyPiAmbmJzcDu02b3DILjhwLsgurizu8H2IL7KwLsg
sM3AzL/AtM8mbmJzcDvAz7rOt68gvPa9xbDFus4gx8/B9iC+ysC4vMW1tSANCsHBvcC0z7TZ
Ljxicj4gJm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7PC9mb250PjxBIGhyZWY9Im1haWx0bzpkYXpvbjIxQG5ldGlh
bi5jb20iPjxmb250IGNvbG9yPSIjOTk5OTk5Ij4mbmJzcDsmbmJzcDsmbmJzcDtbvPa9xbDF
us5dPC9mb250PjwvYT48L3NwYW4+PC9wPg0KPC9ib2R5Pg0KPC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 12 07:44:07 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id HAA23554; Tue, 12 Mar 2002 07:44:06 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 12 Mar 2002 07:44:06 -0500
Received: from doye.info (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id HAA08475; Tue, 12 Mar 2002 07:44:05 -0500 (EST)
Message-Id: <200203121244.HAA08475@cs.utk.edu>
Received: from doye.info (61.81.72.142)
 by cs.utk.edu (smtpshim v1.0); Tue, 12 Mar 2002 07:44:05 -0500
Reply-To: mail@doye.info
From: "55?9A$:8" <mail@doye.info>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]Gv@g H(<nGN?!<- 9f<[A_@N 55?9@[G0@; @NEM3]?!<- 883*:8<<?d.
Sender: "55?9A$:8" <mail@doye.info>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 12 Mar 2002 21:43:24 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id HAA08480

PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9u
YWwvL0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgaHR0cC1lcXVpdj1Db250ZW50LVR5cGUg
Y29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWV1Yy1rciI+DQo8U1RZTEU+IHAge2ZvbnQt
c2l6ZToxMHB0fSA8L1NUWUxFPg0KPE1FVEEgY29udGVudD0iTVNIVE1MIDYuMDAuMjYwMC4w
IiBuYW1lPUdFTkVSQVRPUj48L0hFQUQ+DQo8Qk9EWT4NCjxUQUJMRSBjZWxsU3BhY2luZz0w
IGNlbGxQYWRkaW5nPTAgd2lkdGg9NzAwIGFsaWduPWNlbnRlcj4NCiAgDQogIDxUUj4NCiAg
ICA8VEQgd2lkdGg9NzAwPg0KICAgICAgPFAgYWxpZ249Y2VudGVyPjxGT05UIHNpemU9NT48
Qj61tb+5waS6uFuxpLDtuea82108QlI+PC9CPjwvRk9OVD48Rk9OVCBjb2xvcj1yZWQgDQog
ICAgICBzaXplPTM+x/bA5yDIqLzux86/obytILnmvNvB38DOILW1v7nA28ewwLsgwM7FzbPd
v6G8rSC4uLOquri8vL/kLjxCUj48L0ZPTlQ+PEZPTlQgY29sb3I9cmVkIA0KICAgICAgc2l6
ZT0zPrnmvNvAuyC6uL3Dt8G46SBXaW5kb3dzIE1lZGlhIFBsYXllciAmbmJzcDu9xbn2wa/A
zCDHyr/kx9W0z7TZLjwvRk9OVD48L1A+PC9URD48L1RSPg0KICA8VFI+DQogICAgPFREPg0K
ICAgICAgPFAgYWxpZ249Y2VudGVyPiZuYnNwOzwvUD48L1REPjwvVFI+DQogIDxUUj4NCiAg
ICA8VEQ+DQogICAgICA8VEFCTEUgY2VsbFNwYWNpbmc9MCBib3JkZXJDb2xvckRhcms9d2hp
dGUgd2lkdGg9IjEwMCUiIGFsaWduPWNlbnRlciANCiAgICAgIGJnQ29sb3I9I2ZmZjBmZiBi
b3JkZXJDb2xvckxpZ2h0PSM5OTk5OTkgYm9yZGVyPTE+DQogICAgICAgIA0KICAgICAgICA8
VFI+DQogICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249
Y2VudGVyPjxCPr3Wv+u8+LHdtN64trnpwNo8Rk9OVCBjb2xvcj1yZWQ+PEJSPjwvRk9OVD48
L0I+PEEgDQogICAgICAgICAgICBocmVmPSJodHRwOi8vd3d3LmRveWUuaW5mby93bXYvZG95
ZV80LndtdiI+PElNRyBoZWlnaHQ9MjAwIA0KICAgICAgICAgICAgYWx0Pb3Wv+u8+LHdtN64
trnpwNogc3JjPSJodHRwOi8vd3d3LmRveWUuaW5mby9pbWFnZXMvZG95ZV80MC5qcGciIHdp
ZHRoPTE1MCANCiAgICAgICAgICAgIGJvcmRlcj0wPjxCUj6xpLDtuea82zwvQT48L1A+PC9U
RD4NCiAgICAgICAgICA8VEQgd2lkdGg9IjI1JSI+DQogICAgICAgICAgICA8UCBhbGlnbj1j
ZW50ZXI+PEI+vPix3bHdsK2w5rnpwNo8Rk9OVCBjb2xvcj1yZWQ+PEJSPjwvRk9OVD48L0I+
PEEgDQogICAgICAgICAgICBocmVmPSJodHRwOi8vd3d3LmRveWUuaW5mby93bXYvZG95ZV8z
LndtdiI+PElNRyBoZWlnaHQ9MjAwIA0KICAgICAgICAgICAgYWx0Pbz4sd2x3bCtsOa56cDa
IHNyYz0iaHR0cDovL3d3dy5kb3llLmluZm8vaW1hZ2VzL2RveWVfMzAuanBnIiB3aWR0aD0x
NTAgDQogICAgICAgICAgICBib3JkZXI9MD48QlI+saSw7bnmvNs8L0E+PC9QPjwvVEQ+DQog
ICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVy
PjxCPrHdtN64trndvt+9ybDmtbXA2rHiPEZPTlQgY29sb3I9cmVkPjxCUj48L0ZPTlQ+PC9C
PjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5kb3llLmluZm8vd212L2RveWVf
Mi53bXYiPjxJTUcgaGVpZ2h0PTIwMCANCiAgICAgICAgICAgIGFsdD2x3bTeuLa53b7fvcmw
5rW1wNqx4iBzcmM9Imh0dHA6Ly93d3cuZG95ZS5pbmZvL2ltYWdlcy9kb3llXzIwLmpwZyIg
DQogICAgICAgICAgICB3aWR0aD0xNTAgYm9yZGVyPTA+PEJSPrGksO255rzbPC9BPjwvUD48
L1REPg0KICAgICAgICAgIDxURCB3aWR0aD0iMjUlIj4NCiAgICAgICAgICAgIDxQIGFsaWdu
PWNlbnRlcj48Qj691r/rsPzAvbvnuK656cDaPEZPTlQgY29sb3I9cmVkPjxCUj48L0ZPTlQ+
PC9CPjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5kb3llLmluZm8vd212L2Rv
eWVfMS53bXYiPjxJTUcgaGVpZ2h0PTIwMCANCiAgICAgICAgICAgIGFsdD291r/rsPzAvbvn
uK656cDaIHNyYz0iaHR0cDovL3d3dy5kb3llLmluZm8vaW1hZ2VzL2RveWVfMTAuanBnIiB3
aWR0aD0xNTAgDQogICAgICAgICAgICBib3JkZXI9MD48QlI+saSw7bnmvNs8L0E+PC9QPjwv
VEQ+PC9UUj4NCiAgICAgICAgPFRSPg0KICAgICAgICAgIDxURCB3aWR0aD0iMjUlIj4NCiAg
ICAgICAgICAgIDxQIGFsaWduPWNlbnRlcj68urD4uf2757ytv7nA28ew3dY8QlI+MjRLsd3A
5bTruvHB1iwgyLKx3byxxKe60jxCUj6w1LijuLa0vcfVvLozwb6/sMHWvLzGrjwvUD48L1RE
Pg0KICAgICAgICAgIDxURCB3aWR0aD0iMjUlIj4NCiAgICAgICAgICAgIDxQIGFsaWduPWNl
bnRlcj7H2L/uvLG757yxuay03ri2tbU8QlI+MjRLsd3A5bTruvHB1iwgyLKx3byxxKe60jxC
Uj6w1LijuLa0vcfVvLozwb6/sMHWvLzGrjwvUD48L1REPg0KICAgICAgICAgIDxURCB3aWR0
aD0iMjUlIj4NCiAgICAgICAgICAgIDxQIGFsaWduPWNlbnRlcj660sDav+u9w7DoPEJSPsfY
w7W9urTUvK2/ucDbx7A8QlI+ud2+373JsObd1sDaPC9QPjwvVEQ+DQogICAgICAgICAgPFRE
IHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVyPrrSwNq/673DsOg8
QlI+x9jDtb26tNS8rb+5wNvHsDxCUj653b7fvcmw5t3WwNo8L1A+PC9URD48L1RSPg0KICAg
ICAgICA8VFI+DQogICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAg
YWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEu
bmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9hcmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1i
ZXI9MyI+PEZPTlQgDQogICAgICAgICAgICBjb2xvcj1ibHVlPrChsN06NzkwLDAwML/4PC9G
T05UPjxCUj48Rk9OVCANCiAgICAgICAgICAgIGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE5OCww
MDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+PC9QPjwvVEQ+DQogICAgICAgICAgPFREIHdp
ZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAg
ICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEubmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9h
cmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1iZXI9MiI+PEZPTlQgDQogICAgICAgICAgICBj
b2xvcj1ibHVlPrChsN06NzkwLDAwML/4PC9GT05UPjxCUj48Rk9OVCANCiAgICAgICAgICAg
IGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE5OCwwMDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+
PC9QPjwvVEQ+DQogICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAg
YWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEu
bmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9hcmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1i
ZXI9MSI+PEZPTlQgDQogICAgICAgICAgICBjb2xvcj1ibHVlPrChsN06MjQwLDAwML/4PC9G
T05UPjxCUj48Rk9OVCANCiAgICAgICAgICAgIGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE0OSww
MDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+PC9QPjwvVEQ+DQogICAgICAgICAgPFREIHdp
ZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAg
ICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEubmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9h
cmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1iZXI9MCI+PEZPTlQgDQogICAgICAgICAgICBj
b2xvcj1ibHVlPrChsN06MjgwLDAwML/4PC9GT05UPjxCUj48Rk9OVCANCiAgICAgICAgICAg
IGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE1OCwwMDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+
PC9QPjwvVEQ+PC9UUj48L1RBQkxFPjwvVEQ+PC9UUj4NCiAgPFRSPg0KICAgIDxURD4NCiAg
ICAgIDxQIGFsaWduPWNlbnRlcj48QSBocmVmPSJodHRwOi8vd3d3LkJ1ZGRoYVNob3BwaW5n
LmNvbSI+PEZPTlQgDQogICAgICBzaXplPTU+PEI+aHR0cDovL3d3dy5CdWRkaGFTaG9wcGlu
Zy5jb208L0I+PC9GT05UPjwvQT4gPC9QPjwvVEQ+PC9UUj4NCiAgPFRSPg0KICAgIDxURD4N
CiAgICAgIDxQPjwvUD48L1REPjwvVFI+DQogIDxUUj4NCiAgICA8VEQ+DQogICAgICA8UCBh
bGlnbj1jZW50ZXI+TyDH47b0vvjAzCC43sDPwLsgurizuyDBy7zbx9W0z7TZLiC89r3FsMW6
ziDHz73DuOkgtNm9w7TCILjewM/AuyC6uLO7wfYgvsqw2r3AtM+02S48QlI+TyANCiAgICAg
IMGkurjF673FuMEgwMy/68PLwfggudcgwaS6uLq4yKMgte6/oSCw/MfRILn9t/wgwaY8Qj41
MDwvQj7Btr+hIMDHsMXH0SBbsaSw7V243sDPwNS0z7TZLjxCUj5PILjewM/B1rzStMIgwM7F
zbPdu/O/obytIA0KICAgICAgw+u15sffwLi45ywgwda80r/cIL7utrDH0SCws8DOIMGkuri1
tSCwrrDtIMDWwfYgvsq9wLTPtNkuPC9QPjwvVEQ+PC9UUj4NCiAgPFRSPg0KICAgIDxURD4N
CiAgICAgIDxQIGFsaWduPWNlbnRlcj4mbmJzcDs8L1A+PC9URD48L1RSPg0KICA8VFI+DQog
ICAgPFREPg0KICAgICAgPFAgYWxpZ249Y2VudGVyPjxBIA0KICAgICAgaHJlZj0ibWFpbHRv
OmRveWVAZG95ZS5pbmZvP3N1YmplY3Q9W7z2vcWwxbrOXSZhbXA7Ym9keT3H47b0vvjAzCC4
3sDPwLsgurizuyDBy7zbx9W0z7TZLiC89r3FsMW6ziDHz73DuOkgtNm9w7TCILjewM/AuyC6
uLO7wfYgvsqw2r3AtM+02S4iPjxCPjxGT05UIA0KICAgICAgY29sb3I9cmVkIHNpemU9NT5b
PC9GT05UPjwvQj48Rk9OVCBjb2xvcj1yZWQgDQogICAgICBzaXplPTU+PEI+vPa9xbDFus48
L0I+PC9GT05UPjxCPjxGT05UIGNvbG9yPXJlZCANCiAgc2l6ZT01Pl08L0ZPTlQ+PC9CPjwv
QT48L1A+PC9URD48L1RSPjwvVEFCTEU+PC9CT0RZPjwvSFRNTD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Thu Mar 14 11:01:47 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA20127; Thu, 14 Mar 2002 11:01:47 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Thu, 14 Mar 2002 11:01:47 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA22830; Thu, 14 Mar 2002 11:01:46 -0500 (EST)
Message-Id: <200203141601.LAA22830@cs.utk.edu>
Received: from hotmail.com (211.49.203.84)
 by cs.utk.edu (smtpshim v1.0); Thu, 14 Mar 2002 11:01:48 -0500
Reply-To: bojaki@hotmail.com
From: bojagicard <bojaki@hotmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]F/:0GQ C;C8@e@; 885i>n :8<<?d.
Sender: bojagicard <bojaki@hotmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Fri, 15 Mar 2002 01:01:49 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id LAA22841

<HTML>
<HEAD>
<META content=3D"text/html; charset=3Dks_c_5601-1987" http-equiv=3DConten=
t-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; =
}</STYLE>
<title>:::[=B1=A4=B0=ED]=BA=B8=C0=DA=B1=E2=C4=AB=B5=E5 =C3=BB=C3=B8=C0=E5=
:::</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<STYLE type=3Dtext/css>A {
	FONT-SIZE: 9pt; LINE-HEIGHT: 120%
}
A:link {
	COLOR: #003399; text-decoration;color: red
}
A:hover {
	COLOR: red; TEXT-DECORATION: underline
}
A:visited {
	COLOR: #660055; TEXT-DECORATION: none
}
A:active {
	COLOR: #008400; text-decoration;color: red
}
TD {
	FONT-SIZE: 9pt
}
FONT {
	FONT-SIZE: 9pt; LINE-HEIGHT: 125%
}
</STYLE>
</head>
<body bgcolor=3D"#ffffff" text=3D"#000000">
<table width=3D"500" border=3D"1" cellspacing=3D"0" cellpadding=3D"0">
  <tr>=20
    <td>=20
      <table width=3D"500" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0">
        <tr>=20
          <td height=3D"177" bgcolor=3D"#ffffff" colspan=3D"3">=20
            <div align=3D"center"><font color=3D"#ffffff"><a href=3D"http=
://www.bojagicard.com/index.htm"><img src=3D"http://www.bojagicard.com/PR=
/1.gif" width=3D"500" height=3D"177" border=3D"0"></a></font></div>
          </td>
        </tr>
        <tr>=20
          <td valign=3D"top" width=3D"158" rowspan=3D"4">=20
            <div align=3D"left">=20
              <p>&nbsp;</p>
            </div>
          </td>
          <td valign=3D"top" width=3D"12" background=3D"http://www.bojagi=
card.com/PR/line.gif" rowspan=3D"4">&nbsp;</td>
          <td valign=3D"top" width=3D"330" height=3D"26" background=3D"ht=
tp://www.bojagicard.com/PR/2.gif">&nbsp;</td>
        </tr>
        <tr>
          <td valign=3D"top" width=3D"330" bgcolor=3D"#ffffff"><br>
            <b><font color=3D"#ffffff">.</font><font color=3D"#000099"> <=
/font></b><font color=3D"#000099">=A1=DD=20
            =BA=B8=C0=DA=B1=E2=C4=AB=B5=E5=B4=C2 =B1=E2=BC=BA =C3=BB=C3=B8=
=C0=E5 =BC=EE=C7=CE=B8=F4=C0=CC =BE=C6=B4=D5=B4=CF=B4=D9.</font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#666666">=A4=B7=
=C3=BB=C3=B8=C0=E5=C0=C7 =C0=DB=C7=B0=C8=AD =BC=B1=BE=F0</font><br>
            <font color=3D"#ffffff">..</font><font color=3D"#666666">=A4=B7=
=C8=F1=BC=D2=B0=A1=C4=A1,=BC=D2=C0=E5=B0=A1=C4=A1 =C0=D6=B4=C2=20
            =C3=BB=C3=B8=C0=E5</font><br>
            <font color=3D"#ffffff">..</font><font color=3D"#666666">=A4=B7=
=C0=FA=B7=C5=C7=D1 =B0=A1=B0=DD=BF=A1 =B8=C2=C3=E3=C4=AB=B5=E5=B8=A6=20
            =C1=A6=C0=DB=C7=D5=B4=CF=B4=D9.<br>
            </font><br>
            <font color=3D"#ffffff">..</font><font color=3D"#cc0000">* =C8=
=B8=BF=F8=B0=A1=C0=D4 =B8=B8=C0=B8=B7=CE =B0=E1=C8=A5=20
            =C0=CF=C1=A4=B0=FC=B8=AE<b><br>
            <font color=3D"#ffffff">... </font></b>=B6=F3=BA=A7 =C3=E2=B7=
=C2 =C7=C1=B7=CE=B1=D7=B7=A5=C0=BB =C0=CC=BF=EB =C7=CF=BD=C7 =BC=F6 =C0=D6=
=BD=C0=B4=CF=B4=D9. <b><br>
            <br>
            </b></font><font color=3D"#ffffff">..</font><font color=3D"#c=
c0000"><font color=3D"#000000">=A4=D3<a href=3D"http://www.bojagicard.com=
/login1.php" target=3D"_blank"><font color=3D"#990000">=B9=AB=B7=E1=20
            =B0=E1=C8=A5=C0=CF=C1=A4=B0=FC=B8=AE</font></a>=A4=D3<a href=3D=
"http://www.bojagicard.com/index.htm" target=3D"_blank"><font color=3D"#9=
90000">=BA=B8=C0=DA=B1=E2=C4=AB=B5=E5=20
            </font></a><font color=3D"#990000"><a href=3D"http://www.boja=
gicard.com/index.htm">=C8=A8</a></font>=A4=D3<a href=3D"http://www.bojagi=
card.com/sample1.php"><font color=3D"#990000">=B9=AB=B7=E1=20
            =BB=F9=C7=C3=BD=C5=C3=BB</font></a>=A4=D3<br>
            <font color=3D"#ffffff">.</font> </font></font></td>
        </tr>
        <tr>
          <td valign=3D"top" width=3D"330" height=3D"26" background=3D"ht=
tp://www.bojagicard.com/PR/3.gif">&nbsp;</td>
        </tr>
        <tr>
          <td valign=3D"top" width=3D"330"><font color=3D"#000099"><b><fo=
nt color=3D"#ffffff"><br>
            .</font><font color=3D"#000099"> </font></b><font color=3D"#0=
00099">=A1=DD=20
            </font>=BA=B8=C0=DA=B1=E2=C4=AB=B5=E5 =B8=B8=C0=C7 =B9=AB=B7=E1=
 =BC=AD=BA=F1=BD=BA.</font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font><a href=3D"http://www.bojagicard.com/index.htm" target=3D"_blank">=
<font color=3D"#333333">3=B0=A1=C1=F6=20
            =B1=EE=C1=F6 =B9=AB=B7=E1=B7=CE =BB=F9=C7=C3 =B9=DF=BC=DB =C0=
=BB =C7=D8 =B5=E5=B8=B3=B4=CF=B4=D9.</font><br>
            </a><br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font><a href=3D"http://www.bojagicard.com/e.htm" target=3D"_blank"><fon=
t color=3D"#333333">4=BF=F930=C0=CF=B1=EE=C1=F6=20
            =C1=D6=B9=AE=C7=CF=BD=C5 =C3=BB=C3=B8=C0=E5 =C1=D6=B9=AE =BD=C5=
=B6=FB=BD=C5=BA=CE=B4=D4 =BF=A1=B0=D4...</font></a><br>
            <font color=3D"#ffffff">.=A4=B7</font> <font color=3D"#999999=
"><a href=3D"http://www.bojagicard.com/e.htm">(=C3=DF=C3=B7=C8=C4=20
            =B9=E9=C8=AD=C1=A1 =BB=F3=C7=B0=B1=C7=B5=EE =B0=A8=BB=E7=C0=C7=
 =BC=B1=B9=B0=C0=BB =B5=E5=B8=B3=B4=CF=B4=D9.)</a></font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font><a href=3D"http://www.bojagicard.com/index.htm" target=3D"_blank">=
<font color=3D"#333333">=C1=D6=B9=AE=B0=ED=B0=B4=B8=F0=B5=CE=20
            =B9=AB=B7=E1 =C0=CC=B8=DE=C0=CF =C3=BB=C3=B8=C0=E5=C0=BB =C1=A6=
=C0=DB =C7=CF=BF=A9 =B5=E5=B8=B3=B4=CF=B4=D9.</font></a><br>
            <font color=3D"#ffffff">..=A4=B7</font>(=BA=B0=B5=B5=C0=C7 =C0=
=CC=B8=DE=C0=CF =BC=AD=B9=F6 =BE=F8=C0=CC =BD=CE=C0=CC=C6=AE =B3=BB=BF=A1=
=BC=AD =B9=DF=BC=DB.)<br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000"><a h=
ref=3D"http://www.bojagicard.com/index.htm"><font color=3D"#333333">=A4=B7=
</font></a></font><font color=3D"#333333"><a href=3D"http://www.bojagicar=
d.com/index.htm">=BD=C5=BF=EB=C4=AB=B5=E5=20
            =BC=F6=BC=F6=B7=E1 =D9=ED , =C4=AB=B5=E5=BA=B0 =B9=AB=C0=CC=C0=
=DA =C7=FD=C5=C3</a></font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font>=C3=BB=C3=B8=C0=E5 =C1=A6=C0=DB=20
            =C1=F8=C7=E0=BB=F3=C8=B2=C0=BB <br>
            <font color=3D"#ffffff">..=A4=B7</font>=BF=C2=B6=F3=C0=CE=C0=B8=
=B7=CE =BD=C5=BC=D3=C7=CF=B0=D4 =B0=CB=C5=E4 =C7=CF=BD=C7 =BC=F6 =C0=D6=BD=
=C0=B4=CF=B4=D9.<br>
            <font color=3D"#cc0000"><font color=3D"#000000"><font color=3D=
"#ffffff">.</font>=20
            </font></font> </td>
        </tr>
        <tr>=20
          <td valign=3D"top" colspan=3D"3">=20
            <table width=3D"500" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0">
              <tr bgcolor=3D"#999999">=20
                <td width=3D"20" height=3D"25">&nbsp;</td>
                <td width=3D"130" height=3D"25">=20
                  <div align=3D"right"></div>
                </td>
                <td width=3D"35" height=3D"25">&nbsp;</td>
                <td width=3D"130" height=3D"25">=20
                  <div align=3D"right"></div>
                </td>
                <td width=3D"35" height=3D"25">&nbsp;</td>
                <td width=3D"130" height=3D"25">=20
                  <div align=3D"right"></div>
                </td>
                <td width=3D"20" height=3D"25">&nbsp;</td>
              </tr>
              <tr bgcolor=3D"#999999">=20
                <td width=3D"20">&nbsp;</td>
                <td width=3D"130"><a href=3D"http://www.bojagicard.com/in=
dex.htm"><img src=3D"http://www.bojagicard.com/PR/gb_17.gif" width=3D"130=
" height=3D"88" border=3D"0"></a></td>
                <td width=3D"35">&nbsp;</td>
                <td width=3D"130"><a href=3D"http://www.bojagicard.com/in=
dex.htm"><img src=3D"http://www.bojagicard.com/PR/gb_15.gif" width=3D"130=
" height=3D"88" border=3D"0"></a></td>
                <td width=3D"35">&nbsp;</td>
                <td><a href=3D"http://www.bojagicard.com/index.htm"><img =
src=3D"http://www.bojagicard.com/PR/gb_5.gif" width=3D"130" height=3D"88"=
 border=3D"0"></a></td>
                <td width=3D"20">&nbsp;</td>
              </tr>
              <tr bgcolor=3D"#999999">=20
                <td width=3D"20" height=3D"5">&nbsp;</td>
                <td width=3D"130" height=3D"5">&nbsp;</td>
                <td width=3D"35" height=3D"5">&nbsp;</td>
                <td width=3D"130" height=3D"5">&nbsp;</td>
                <td width=3D"35" height=3D"5">&nbsp;</td>
                <td height=3D"5">&nbsp;</td>
                <td width=3D"20" height=3D"5">&nbsp;</td>
              </tr>
            </table>
           =20
          </td>
        </tr>
        <tr>=20
          <td height=3D"20" bgcolor=3D"#999999" colspan=3D"3">=20
            <div align=3D"right"><font color=3D"#ffffff">( =C0=CC=B8=DE=C0=
=CF=C0=BA =B5=CE=B9=F8=B4=D9=BD=C3 =B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=BD=C0=B4=
=CF=B4=D9.)<font color=3D"#999999">....................................</=
font><a href=3D"http://www.bojagicard.com/index.htm" target=3D"_blank"><f=
ont color=3D"#ffffff">www.Bojagicard.com</font>=20
              </a><font color=3D"#999999">.</font> </font></div>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<A href=3D"mailto:bogagi@korea.com">=A4=D3=BC=F6=BD=C5=B0=C5=BA=CE=A4=D3<=
/A>
</body>
</HTML>

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar 15 11:44:45 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA25963; Fri, 15 Mar 2002 11:44:44 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 15 Mar 2002 11:44:44 -0500
Received: from yahoo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA26630; Fri, 15 Mar 2002 11:44:38 -0500 (EST)
Message-Id: <200203151644.LAA26630@cs.utk.edu>
Received: from yahoo.com (211.202.87.13)
 by cs.utk.edu (smtpshim v1.0); Fri, 15 Mar 2002 11:44:43 -0500
Reply-To: pipi1227@yahoo.com
From: "A6H-@/" <pipi1227@yahoo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]A6H-@/?5>n ?%GG>28. GC79@L>n 9+7a @L:%F.!!!
Sender: "A6H-@/" <pipi1227@yahoo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 16 Mar 2002 01:46:36 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id LAA26645

<!-- saved from url=3D(0022)http://internet.e-mail -->
<html>
<head>
<title>::::: =C1=B6=C8=AD=C0=AF=C0=C7 =B9=CC=B1=B9=BF=B5=BE=EE :::::</tit=
le>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
</head>
<body bgcolor=3D"#ffffff" text=3D"#000000" leftmargin=3D"0" topmargin=3D"=
0" marginwidth=3D"0" marginheight=3D"0" background=3D"http://www.dialtalk=
s.com/mail/version_02/images/img_mail_09.gif">
<center>
  <br>
  <table width=3D"600" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">
    <tr>=20
      <td colspan=3D"2"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_01.gif" width=3D"600" height=3D"56" border=3D"0=
"></a></td>
    </tr>
    <tr>=20
      <td colspan=3D"2"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_02.gif" width=3D"600" height=3D"159" border=3D"=
0"></a></td>
    </tr>
    <tr>=20
      <td colspan=3D"2"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_03.gif" width=3D"600" height=3D"63" border=3D"0=
"></a></td>
    </tr>
    <tr>=20
      <td width=3D"129"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_04.gif" width=3D"129" height=3D"585" border=3D"=
0"></a></td>
      <td width=3D"471" valign=3D"top"><a href=3D"http://www.dialtalks.co=
m" target=3D"_blank" onfocus=3D"this.blur()"><img src=3D"http://www.dialt=
alks.com/mail/version_02/images/img_mail_05.gif" width=3D"471" height=3D"=
202" border=3D"0"></a><img src=3D"http://www.dialtalks.com/mail/version_0=
2/images/img_mail_06.gif" width=3D"471" height=3D"17"><a href=3D"http://w=
ww.dialtalks.com" target=3D"_blank" onfocus=3D"this.blur()"><img src=3D"h=
ttp://www.dialtalks.com/mail/version_02/images/img_mail_07.gif" width=3D"=
471" height=3D"239" border=3D"0"><img src=3D"http://www.dialtalks.com/mai=
l/version_02/images/img_mail_08.gif" width=3D"471" height=3D"127" border=3D=
"0"></a></td>
    </tr>
    <tr align=3D"middle">=20
      <td colspan=3D"2" height=3D"50" bgcolor=3D"#ffffff">               =
         <p style=3D"LINE-HEIGHT: 5mm" align=3D"left"><span style=3D"FONT=
-SIZE: 9pt">&nbsp;&nbsp;<br>* =BA=BB =B8=DE=C0=CF=C0=BA =C1=A4=BA=B8=C5=EB=
=BD=C5=BA=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =C0=C7=B0=C5 (=B1=A4=B0=ED)=C0=
=D3=C0=BB =B9=E0=C0=D4=B4=CF=B4=D9. =C7=E3=B6=F4=BE=F8=C0=CC =C8=AB=BA=B8=
=B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=B5=E5=B7=C1 =C1=CB=BC=DB =C7=D5=B4=CF=B4=D9=
. =B1=CD=C7=CF=C0=C7 E-MAIL=C0=BA =B0=D4=BD=C3=C6=C7 =B5=EE=20
=C0=CE=C5=CD=B3=DD =BB=F3=BF=A1=BC=AD =BE=CB=B0=D4 =B5=C7=BE=FA=C0=B8=B8=E7=
, E-mail=C0=BB =C1=A6=BF=DC=C7=D1 =BE=EE=B6=B0=C7=D1 =C1=A4=BA=B8=B5=B5 =BE=
=CB=C1=F6 =B8=F8=C7=D4=C0=BB =B9=E0=C8=FC=B4=CF=B4=D9. =C7=CA=BF=E4=BE=F8=
=B4=C2 =B8=DE=C0=CF=C0=CF =B0=E6=BF=EC, =BA=D2=C6=ED=C7=CF=BD=C3=B4=F5=B6=
=F3=B5=B5 =B9=DD=BC=DB=C7=CF=BF=A9 =C1=D6=BD=C3=B8=E9=20
=B4=F5 =C0=CC=BB=F3 =B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=B5=B5=B7=CF =C7=CF=B0=
=DA=BD=C0=B4=CF=B4=D9.&nbsp;<br>&nbsp;</span><font size=3D"2"><br>
<img src=3D'http://itnsoft.com/~mailtouch/user/touch.cgi?cmd=3Dopen&userc=
ode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&state=3D2&code=3D933731' height=3D=
0 width=3D0><center><a href=3D'http://itnsoft.com/~mailtouch/user/touch.c=
gi?cmd=3Drefuse_view&usercode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&name=3D&=
mail=3Dblast-parallel@cs.utk.edu'><img src=3D'http://itnsoft.com/~mailtou=
ch/user/mail-refuse.gif' border=3D0)></center></font></p>
</td>
    </tr>
  </table>
</center>
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Sat Mar 16 05:45:56 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA09739; Sat, 16 Mar 2002 05:45:56 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 16 Mar 2002 05:45:56 -0500
Received: from afd.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA22911; Sat, 16 Mar 2002 05:46:00 -0500 (EST)
Message-Id: <200203161046.FAA22911@cs.utk.edu>
Received: from afd.co.kr (211.177.73.38)
 by cs.utk.edu (smtpshim v1.0); Sat, 16 Mar 2002 05:46:01 -0500
Reply-To: kdh20c@afd.co.kr
From: "1h<1Hq" <kdh20c@afd.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: (<:@NH+:8)=I=IGO=C:P 3n7/?@<<?d..^^(100%9+7a)
Sender: "1h<1Hq" <kdh20c@afd.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 16 Mar 2002 19:47:40 +0900
X-User: 2.62-dgehbjhs-hjhfdn-Bbgfk
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id FAA22914

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD6+yLPnx8+8vL/kXl48L1A+DQo8UD67
58DMxq60wiC/z7y6wMwgtNkgvsi1xsH2uLguLiDH0bn4ILPut6+/wLy8v+QuLiDAzLn4wdYg
vsjAuLfOIL/PvLrAuzwvUD4NCjxQPr3DxbCw2r3AtM+02S48L1A+DQo8UD7A+sjxu+fAzMau
tMIguavBuLDHMTAwJbmrt+G758DMxq7A1LTPtNkuIL/PvLrAuiC+yLXGwfa4uCC53cDAwMw8
L1A+DQo8UD6+7raysKHH2LytILHbwLsguN7Az8C7ILq4s8C0z7TZLiA8QSBocmVmPSJodHRw
Oi8vd3d3LmJlc3RsaW5rcy5jby5rciI+uqO9usauuLXFqTwvQT6/oSC/wL3DuOkgx9e78yAN
CsDrwNaw1DwvUD4NCjxQPsfYteW4rrDavcC0z7TZLjwvUD4NCjxQPiZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyANCjxjZW50ZXI+PGEgaHJlZj0naHR0cDovLzE5Mi4x
NjguMC4zOjkwODAvcmVmdXNlL3JlZnVzZT9jbWQ9dmlldyZncm91cD01MCZuYW1lPSZtYWls
PWJsYXN0LXBhcmFsbGVsQGNzLnV0ay5lZHUnPjxpbWcgc3JjPSdodHRwOi8vMTkyLjE2OC4w
LjM6OTA4MC9yZWZ1c2UvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9Q
Pg0KPC9CT0RZPg0KPC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar 17 20:12:37 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id UAA16974; Sun, 17 Mar 2002 20:12:36 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 17 Mar 2002 20:12:36 -0500
Received: from the-global.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id UAA16265; Sun, 17 Mar 2002 20:12:39 -0500 (EST)
Message-Id: <200203180112.UAA16265@cs.utk.edu>
Received: from the-global.co.kr (211.255.151.210)
 by cs.utk.edu (smtpshim v1.0); Sun, 17 Mar 2002 20:12:40 -0500
Reply-To: bongsupjo@the-global.co.kr
From: "0|8.@Z" <bongsupjo@the-global.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: ?5>n,@O:;>n GP=@@L GJ?dGO=E:P 2@:8<<?d^^[1$0m]
Sender: "0|8.@Z" <bongsupjo@the-global.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 18 Mar 2002 10:18:45 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id UAA16273

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD4iPFNQQU4gc3R5bGU9IkZPTlQtU0la
RTogOXB0Ij66uyANCkUtbWFpbMC6Jm5ic3A7PEI+waS6uMXrvcW4wcDMv+s8L0I+w8vB+LnX
PEI+waS6uDwvQj66uMijte6/obD8x9G5/bf8Jm5ic3A7v6EgwMewxcfPv6kgPC9TUEFOPjxG
T05UIA0Kc2l6ZT0yPrz2vcXA2rKyvK08L0ZPTlQ+Jm5ic3A7PFNQQU4gc3R5bGU9IkZPTlQt
U0laRTogOXB0Ij7Ax7vnuKYgyLi9xcC4t84mbmJzcDu54Mj5IMjEv6G0wiC2x7TZvcMgDQq6
uLO+vPYgvvi9wLTPtNkuJm5ic3A7tfu287ytIMfRufi4uCC6uLO7teW4rrjnLCC6uyBFLW1h
aWy/7yC53rDtILHiutDAzCC788fPvMy02bjpIL7nx9i52bb4tM+02TwvU1BBTj4uIiq89r3F
sMW6zrTCIMfPtNy/oSANCsDWvcC0z7TZLjwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPiZsdDvH
0L3AIMfPvcO0wrWlIMPWtOvAxyC1tb/ywLsgteW4sbDNwLsgvuC80yC15biztM+02S4mZ3Q7
PC9QPg0KPFA+vsiz58fPvLy/5DwvUD4NCjxQPrHbt865377ux9C/+MDUtM+02S48L1A+DQo8
UD7H9sDnIL+1vu6zqiDAz7q7vu64piCw+LrOuKYgx8+8xb7fIMfRtNm46SDA0L7uIMHWvcq9
w7/ALjwvUD4NCjxQPsD6yPEgsdu3zrnfvu7H0L/4wLogDQo8U1RST05HPrytv+8osK2zsizB
vrfOLL+1te7G9yksus7DtSy6zsbyLMHWvsgsvPa/+Cw8L1NUUk9ORz48U1RST05HPiwsLDwv
U1RST05HPjwvUD4NCjxQPjxTVFJPTkc+LCzBpsHWtbWx7sH2IMD8sbkgMjawsyDB9rvnuKYg
v+6/tcfPsO0gwNa9wLTPtNk8L1NUUk9ORz4uwfax3SA8L1A+DQo8UD617rfPx8+9w7jpIDxT
VFJPTkc+MrCzv/m89rCtwLsguau34bfOILz2sK3AuzwvU1RST05HPiDHz73HILz2IMDWwLi4
5yA8U1RST05HPrGzwOe/zSA8L1NUUk9ORz48L1A+DQo8UD48U1RST05HPrCtwMe/6yDF18DZ
wLsguau34bfOIMGmsPjAuyA8L1NUUk9ORz7H2LXluK6w7SDA1r3AtM+02S6xw7Hdx8+9xSA8
L1A+DQo8UD6758fXwMwgwNa02bjpIL7Gt6EgufjIo7fOIMD8yK24piDB1r3DuOkgwNq8vMfR
IL7Is7u4piA8L1A+DQo8UD653sC4vccgvPYgwNa9wLTPtNkuPC9QPg0KPFA+Jm5ic3A7PC9Q
Pg0KPFA+PFNUUk9ORz7H0L/4xq/CoTwvU1RST05HPjwvUD4NCjxQPjxTVFJPTkc+MS602bil
IL/csbm+7iDH0L/4wLogsO3BpL3DsKO/obi4ILz2sK3AzCCwobTJx8+zqiA8L1NUUk9ORz48
L1A+DQo8UD48U1RST05HPiZuYnNwOyZuYnNwOyDA+sjxIMfQv/jAuiCws8DOwMcgvbrEycHs
v6Egtfu28yC+8MGmtefB9iC9w7CjPC9TVFJPTkc+PC9QPg0KPFA+PFNUUk9ORz4mbmJzcDsg
uq+1v8DMILChtMnHz7+pILDhvK7AuyDHz7+0vu61tSC6uLCtwLsgx8+9xyC89iA8L1NUUk9O
Rz48L1A+DQo8UD48U1RST05HPiZuYnNwOyDA1rW1t88gtce+7sDWvcC0z7TZLjwvU1RST05H
PjwvUD4NCjxQPjxTVFJPTkc+Mi7A/LG5IDI2sLMgwfa75yC+7rXwtefB9iC89rCtx8+9w7TZ
sKEgwOW80iC6r7DmwMw8L1NUUk9ORz48L1A+DQo8UD48U1RST05HPiZuYnNwOyCwobTJx8+9
yrTPtNkuPC9TVFJPTkc+PC9QPg0KPFA+PFNUUk9ORz4zLjIxs+Igtb++yMDHIMD8xevAuLfO
IMO8sOjA+8DOIMfQvcDAuyDA2rb7x9W0z7TZPC9TVFJPTkc+PC9QPg0KPFA+PFNUUk9ORz4m
bmJzcDsmbmJzcDsmbmJzcDs8L1NUUk9ORz48L1A+DQo8UD48U1RST05HPjQusKLBviC/3LG5
vu69w8fotOu68SzIuMitLL73uassw+u+9yy9wrmrv/gssPyxpMXrv6osPC9TVFJPTkc+PC9Q
Pg0KPFA+PFNUUk9ORz4mbmJzcDsgsKHAzLXlLMXrv6osufi/qrXuPC9TVFJPTkc+PC9QPg0K
PFA+Jm5ic3A7Jm5ic3A7IDwvUD4NCjxQPsD6yPEgx9C/+MC6ILCzwM4gtOO058DMILnowaS1
x77uIMDWseIgtqe5rr+hILz2sK29xcO7ILz2sK2/rLHiIMDlvNK6r7DmPC9QPg0KPFA+uPC1
5yDH0L/4v6EgsPy3w7XIILvnx9fAuyDDs7iux9ggteW4s7TPtNkutPUgwNq8vMfRILvnx9fA
uiC+xrehILn4yKO3zjwvUD4NCjxQPsD8yK24piDB1r3DseIgudm2+LTPtNkusKi758fVtM+0
2V5ePC9QPg0KPFA+KioqPFNUUk9ORz7H0L/4ILGzwOcgsbjA1LmuwMezqiC/wrbzwM4gsK3B
wrmuwMe1tSC+xrehILn4yKO3ziC/rLb0wda9yr3Dv8A8L1NUUk9ORz4qKio8L1A+DQo8UD4m
bmJzcDs8L1A+DQo8UD6x27fOud++7sfQv/g6PFNUUk9ORz4wMi01MDEtNTA4MTwvU1RST05H
Pi0mZ3Q7wPyxubW/wM88L1A+DQo8UD69zsDMxq46IDxBIGhyZWY9Imh0dHA6Ly93d3cuNDg2
bGFuZ3VhZ2UuY29tLyI+d3d3LjQ4Nmxhbmd1YWdlLmNvbTwvQT4gJm5ic3A7PC9QPg0KPFA+
Jm5ic3A7PC9QPg0KPFA+vPa9xcC7IL/4xKEgvsrAuL3DuOkgvPa9xbDFus64piDFrLivx9jB
1ry8v+Q8L1A+DQo8UD48Y2VudGVyPjxhIGhyZWY9J2h0dHA6Ly9pdG5zb2Z0LmNvbS9+bWFp
bHRvdWNoL3VzZXIvdG91Y2guY2dpP2NtZD1yZWZ1c2VfdmlldyZ1c2VyY29kZT1namhrZWxr
bi1sbmlpZ2stRWVqa20mZ3JvdXA9MjQmbmFtZT0mbWFpbD1ibGFzdC1wYXJhbGxlbEBjcy51
dGsuZWR1Jz48aW1nIHNyYz0naHR0cDovL2l0bnNvZnQuY29tL35tYWlsdG91Y2gvdXNlci9t
YWlsLXJlZnVzZS5naWYnIGJvcmRlcj0wKT48L2NlbnRlcj48L1A+DQo8L0JPRFk+DQo8L0hU
TUw+DQo=

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 18 10:21:40 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id KAA05068; Mon, 18 Mar 2002 10:21:39 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 10:21:39 -0500
Received: from empal.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id KAA28944; Mon, 18 Mar 2002 10:21:41 -0500 (EST)
Message-Id: <200203181521.KAA28944@cs.utk.edu>
Received: from empal.com (211.104.46.70)
 by cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 10:21:42 -0500
Reply-To: newsweeek@empal.com
From: "A_>SEW86" <newsweeek@empal.com>
To: <blast-parallel@cs.utk.edu>
Subject: **C`GOGU4O4Y** <190 9^>F 0!<<?d-H+ :8
Sender: "A_>SEW86" <newsweeek@empal.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 19 Mar 2002 00:19:58 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id KAA28950

<html>
<head>
<meta http-equiv=3D"content-type" content=3D"text/html; charset=3Deuc-kr"=
>
<title>=BE=C8=B3=E7=C7=CF=BC=BC=BF=E4? =C1=DF=BE=D3 =C5=D7=B8=B6 =C0=CC=BA=
=A5=C6=AE=C0=D4=B4=CF=B4=D9.</title>
<meta name=3D"generator" content=3D"Namo WebEditor v5.0">
</head>
<body bgcolor=3D"white" text=3D"black" link=3D"blue" vlink=3D"purple" ali=
nk=3D"red">
<p>=BA=BB =B8=DE=C0=CF=C0=BA =B9=DF=BD=C5=C0=FC=BF=EB=C0=D4=B4=CF=B4=D9.=B6=
=A7=B9=AE=BF=A1 =BC=DB=BD=C5=C0=DA =B8=DE=C0=CF=C1=D6=BC=D2=B7=CE=B4=C2 =C8=
=B8=BD=C5=C0=BB =BA=B8=B3=BE =BC=F6 =BE=F8=BD=C0=B4=CF=B4=D9.<br>=C1=CB=BC=
=DB=C7=CF=C1=F6=B8=B8=20
=BC=F6=BD=C5=C0=BB=20
=BF=F8=C7=CF=C1=F6 =BE=CA=C0=B8=BD=C3=B8=E9 =B8=C7=BE=C6=B7=A1=C0=C7 =BC=F6=
=BD=C5=B0=C5=BA=CE =B9=F6=C6=B0=C0=BB =C5=AC=B8=AF=C7=D8 =C1=D6=BD=CA=BD=C3=
=BF=E4.<br>=B9=AE=C0=C7=BB=E7=C7=D7=C0=BA =C8=A8=C6=E4=C0=CC=C1=F6=BF=A1=20
=BF=C0=BC=C5=BC=AD =B9=AE=C0=C7=C7=CF=BD=C3=B8=E9 =C4=A3=C0=FD=C7=CF=B0=D4=
 =B4=E4=C7=D8=B5=E5=B8=B3=B4=CF=B4=D9.<br>=B1=CD=C7=CF=C0=C7 =BD=C2=B6=F4=
=BE=F8=C0=CC=20
=C8=AB=BA=B8=BC=BA =B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=B0=D4 =B5=C8 =C1=A1 =C1=
=A4=C1=DF=C8=F7 =BB=E7=B0=FA=B5=E5=B8=B3=B4=CF=B4=D9.</p>
<TABLE width=3D"100%" bgColor=3D#ffffff marginheight=3D"0" marginwidth=3D=
"0"=20
topmargin=3D"0" leftmargin=3D"0">
<TBODY>
<TR>
<TD vAlign=3Dtop width=3D"890">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"792"=20
background=3Dhttp://www.j-event.co.kr/mail/image/e_top_bg.gif border=3D0>
<TBODY>
<TR>
<TD width=3D"340"><A target=3D_top href=3D"http://www.j-event.co.kr"><IMG=
 height=3D92=20
src=3D"http://www.j-event.co.kr/mail/image/e_logo.gif" width=3D257=20
border=3D0></A></TD>
<TD width=3D"244" valign=3D"bottom">
                        <p>&nbsp;</p>
</TD>
<TD align=3Dright width=3D"208"><IMG height=3D92=20
src=3D"http://www.j-event.co.kr/mail/image/e_top.gif"=20
width=3D118></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"773" border=3D0>
<TBODY>
<TR>
<TD width=3D"773"><IMG height=3D25 src=3D"http://www.j-event.co.kr/mail/i=
mage/e_top_bar.gif"=20
width=3D"793"></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"793" border=3D0>
<TBODY>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
&nbsp;</TD>
<TD width=3D"779">&nbsp;</TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f>&nbsp;</TD></TR>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
&nbsp;</TD>
<TD width=3D"779">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TBODY>
<TR>
<TD align=3Dmiddle width=3D"788" height=3D"45" colspan=3D"2"><font face=3D=
"=B5=B8=BF=F2"><span style=3D"FONT-SIZE: 11pt">=C1=F6=B1=DD =BD=C5=C3=BB=C7=
=CF=BD=C3=B4=C2 =BA=D0=BF=A1 =C7=D1=C7=CF=BF=A9 </span></font><FONT face=3D=
"=B5=B8=BF=F2" color=3D"blue"><B><span style=3D"FONT-SIZE: 11pt"=20
                 >=C6=FA=B6=F3=B7=CE=C0=CC=B5=E5=20
=C4=AB=B8=DE=B6=F3</span></B></FONT><font face=3D"=B5=B8=BF=F2"><span sty=
le=3D"FONT-SIZE: 11pt"=20
                 >=B3=AA </span></font><FONT color=3D"blue" face=3D"=B5=B8=
=BF=F2"><b><span style=3D"FONT-SIZE: 11pt">=B7=CE=B8=B8=BC=D5 =B0=ED=B1=DE=
 =C4=BF=C7=C3=20
                                    =BC=D5=B8=F1=BD=C3=B0=E8</span></b></=
FONT><font face=3D"=B5=B8=BF=F2"><span style=3D"FONT-SIZE: 11pt">=B8=A6 =B5=
=E5=B8=B3=B4=CF=B4=D9</span></font><span style=3D"FONT-SIZE: 11pt"=20
                 >&nbsp;</span></TD>
</TR>
<TR>
<TD align=3Dmiddle width=3D"69%" height=3D"106" bgcolor=3D"#1f76a1"><A ta=
rget=3D_blank><IMG height=3D83=20
src=3D"http://www.j-event.co.kr/mail/image/e_banner08.gif" width=3D505=20
border=3D0></A></TD>
<TD align=3Dmiddle width=3D"31%" height=3D"106"><span style=3D"FONT-SIZE:=
 11pt"=20
                 >=B9=AE=C0=C7=20
                                    : 02) 771-9495</span>
                                    <p><span style=3D"FONT-SIZE: 11pt"=20
                 >=B4=E3=B4=E7 :=20
                                    =B9=DA &nbsp;&nbsp;&nbsp;=C7=F6 &nbsp=
;&nbsp;&nbsp;=C1=D6</span></p>
<P align=3Dcenter>&nbsp;</P></TD></TR></TBODY></TABLE></TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f>&nbsp;</TD></TR>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
&nbsp;</TD>
<TD width=3D"779">&nbsp;</TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f>&nbsp;</TD></TR>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
<IMG=20
height=3D8 src=3D"http://www.j-event.co.kr/mail/image/e_bg1.gif" width=3D=
6></TD>
<TD width=3D"779"><FONT color=3D"red"><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=C1=
=DF=BE=D3=C5=D7=B8=B6=C0=CC=BA=A5=C6=AE=B4=C2 =C1=DF=BE=D3=C0=CF=BA=B8 =B4=
=BA=BD=BA=C0=A7=C5=A9=C1=F6=BB=E7=BF=A1=BC=AD=20
                        =C7=CF=B4=C2 =C0=CC=BA=A5=C6=AE =C8=AB=BA=B8=C7=E0=
=BB=E7=C0=D4=B4=CF=B4=D9 </B></FONT>=20
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TR bgColor=3D#cccccc>
<TD vAlign=3Dtop height=3D1></TD></TR></TABLE><BR><IMG height=3D27 src=3D=
"http://www.j-event.co.kr/mail/image/e_title06.gif"=20
width=3D255> &nbsp;<font color=3D"black">&nbsp;</font><B><FONT=20
color=3D"#15a2a2">[=BF=F9=C8=B8=BA=F1=20
                        10,500=BF=F8]</FONT></B><BR><BR><TABLE cellSpacin=
g=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TBODY>
<TR>
<TD width=3D"35"><IMG height=3D1 src=3D"http://www.j-event.co.kr/mail/ima=
ge/blank.gif"=20
width=3D44></TD>
<TD width=3D"744">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"717" border=3D0>
<TBODY>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=C6=AF=BA=B0 =BB=E7=C0=BA=C7=B0=C1=F5=C1=A4</FONT></B><=
font color=3D"#189a9a"> :</font> <FONT color=3D"black"><B>=C6=FA=B6=F3=B7=
=CE=C0=CC=B5=E5 =C4=AB=B8=DE=B6=F3</B></FONT><b><font color=3D"black"> =B6=
=C7=B4=C2 </font></b><FONT color=3D"black"><B>=B7=CE=B8=B8=BC=D5 =B0=ED=B1=
=DE =C4=BF=C7=C3=BD=C3=B0=E8</B></FONT><b><font color=3D"black">=C1=DF =C5=
=C3=C0=CF</font></b> </TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=B1=B9=C1=A6 =BD=C3=BB=E7=C1=D6=B0=A3=C1=F6 =B4=BA=BD=BA=
=C0=A7=C5=A9 =C7=D1=B1=B9=C6=C7</FONT></B><font color=3D"#189a9a"> :</fon=
t> <B>2=B3=E2=B0=A3 100=BA=CE=20
                                                (=B8=C5=C1=D61=B1=C7)=B9=DF=
=BC=DB, </B>=BF=B5=C7=D1=C7=D8=BC=B3 =BA=B0=C1=F6=BA=CE=B7=CF 8Page<br>=20
                                                &nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;=C6=F7=C7=D4&nbsp;</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D35 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <FONT col=
or=3D"#189a9a"><B>=BF=B5=C8=AD=B7=CE=C0=C7=C3=CA=B4=EB</B> :</FONT> <B>=BF=
=AC 8=C8=B8=C0=CC=BB=F3,=20
                                                =B9=AB=B7=E1=C3=CA=B4=EB=B1=
=C7  (2=C0=CE =C0=D4=C0=E5)</B> <BR><IMG height=3D8=20
src=3D"http://www.j-event.co.kr/mail/image/blank.gif" width=3D100> &nbsp;=
&nbsp;&nbsp;&nbsp;=C1=D6=B8=BB=BF=A1=20
                                                =BB=F3=BF=B5=C7=CF=B8=E7 =
=BD=C3=B0=A3=BC=B1=C5=C3=B0=A1=B4=C9, =B0=B3=BA=C0=C7=CF=B4=C2 =BF=EC=BC=F6=
=BF=B5=C8=AD=20
=B6=C7=B4=C2 =BD=C3=BB=E7=C8=B8=B8=A6 =BC=B1=C1=A4<br><br>&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*=C0=CC=C0=FC=BF=B5=
=C8=AD - =BE=C6=C6=AE=BE=EE=BA=EA=BF=F6,=C4=B3=BD=BA=C6=AE=BE=EE=BF=FE=C0=
=CC,=B9=CC=BD=BA=BF=A1=C0=CC=C0=FC=C6=AE,=BC=B6=BF=F8=B6=F3=C0=CC=C5=A9=C0=
=AF,=BD=C5=B6=F3=C0=C7=B4=DE=B9=E3,<br>=20
                                                &nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;=C8=A4=BC=BA=C5=BB=C3=E2,=C5=B3=B7=AF=B5=E9=C0=C7=BC=F6=B4=D9,=B4=
=DE=B8=B6=BE=DF=B3=EE=C0=DA,=C8=AD=BB=EA=B0=ED,=B9=DD=C1=F6=C0=C7=20
                                                =C1=A6=BF=D5=20
                                                =B5=EE </TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=B6=F3=C0=CC=BA=EA=C4=DC=BC=AD=C6=AE</FONT></B><font co=
lor=3D"#189a9a"> :</font> <B>=BF=AC 4=C8=B8=C0=CC=BB=F3, =B9=AB=B7=E1=C3=CA=
=B4=EB=B1=C7=20
                                                (2=C0=CE =C0=D4=C0=E5)</B=
><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;*=C0=CC=C0=FC=C4=DC=BC=AD=C6=AE-=C0=CC=C0=BA=B9=CC,=B1=E8=B0=E6=C8=
=A3,=BE=C8=C4=A1=C8=AF,=B1=E8=B9=CE=C1=BE,=B1=E8=C7=F6=C1=A4,=C0=DA=BF=EC=
=B8=B2,=C0=B1=B5=B5=C7=F6=B9=EA=B5=E5,=BC=AD=B9=AE=C5=B9 =B5=EE</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=B8=ED=B0=AD=BB=E7 =B8=ED=B0=AD=C0=C7</FONT></B><font c=
olor=3D"#189a9a"> :</font>  <B>=BF=AC 6=C8=B8 =C0=CC=BB=F3, =B9=AB=B7=E1=C3=
=CA=B4=EB=B1=C7=20
                                                (2=C0=CE =C0=D4=C0=E5)</B=
><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;*=C0=CC=C0=FC=B0=AD=C0=C7-=C8=B2=BC=F6=B0=FC,=C0=CC=BD=C3=C7=
=FC,=BE=F6=B1=E6=C3=BB,=C1=A4=B4=F6=C8=F1,=C0=FC=BF=A9=BF=C1,=B1=B8=BC=BA=
=BE=D6,=B9=E9=C1=F6=BF=AC,=C7=A5=C1=F8=C0=CE,=B2=F4=B7=B9=BA=A7=B9=DA=20
                                                =B5=EE</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=BF=AC=B1=D8, =B9=C2=C1=F6=C4=C3</FONT></B><font color=3D=
"#189a9a"> :</font>  <B>=BF=AC 12=C8=B8=C0=CC=BB=F3,=20
                                                =C7=D2=C0=CE=BF=EC=B4=EB=B1=
=C7 (50%~20% =C7=D2=C0=CE=C0=B2)</B><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*=C0=CC=C0=FC=B0=F8=BF=AC - =BA=
=EA=B7=CE=B5=E5=BF=FE=C0=CC 42=B9=F8=B0=A1,=C4=DA=B7=AF=BD=BA=B6=F3=C0=CE=
,=B3=CD=BC=BE=BD=BA,=BE=C6=B8=AE=B6=FB,=B5=E5=B6=F3=C5=A5=B6=F3,=BF=A9=B7=
=CE =B5=EE</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <FONT col=
or=3D"#189a9a"><B>=C1=A4=B5=BF=B1=D8=C0=E5=20
                                                :</B></FONT><FONT color=3D=
"black"><B> </B></FONT><B>=B0=F8=BF=AC 20% =C7=D2=C0=CE=C7=FD=C5=C3</B>=20
                                                (=C1=DF=BE=D3 =C1=A4=C8=B8=
=BF=F8 =B8=E2=B9=F6=BD=B1 =C4=AB=B5=E5=C1=F6=C2=FC=BD=C3)</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6><B><FONT=20
color=3D"#990000">&nbsp;</FONT><FONT=20
color=3D"#189a9a">=C1=A4=C8=B8=BF=F8 =B8=E2=B9=F6=BD=B1 =C4=AB=B5=E5=B9=DF=
=B1=DE</FONT></B><font color=3D"#189a9a"> :</font> <B>=C1=DF=BE=D3=C5=D7=B8=
=B6=C0=CC=BA=A5=C6=AE=BF=A1=BC=AD =C1=D6=B0=FC=C7=CF=B4=C2 =B9=AE=C8=AD=C7=
=E0=BB=E7 =C3=CA=B4=EB</B></TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif"=20
width=3D"100%"></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<P><font face=3D"=B5=B8=BF=F2"><span style=3D"FONT-SIZE: 11pt"></span></f=
ont>&nbsp;</P>
                        <p><font face=3D"=B5=B8=BF=F2" color=3D"maroon"><=
span style=3D"FONT-SIZE: 11pt"=20
           >=C0=FA=C8=F1=B0=A1=20
                        =C8=B8=BF=F8=BA=D0=B5=E9=BF=A1=B0=D4 =C1=A6=B0=F8=
=C7=D8 =B5=E5=B8=AE=B4=C2 =C8=B8=BF=F8=C7=FD=C5=C3=C0=BB =C0=DA=BA=F1=B7=CE=
 =C0=CC=BF=EB=C7=CF=BD=C5=B4=D9=B8=E9=20
                        =BF=F9 50,000=BF=F8 =C0=CC=BB=F3&nbsp;=C1=F6=C3=E2=
=B5=C9 =B0=CD=C0=D4=B4=CF=B4=D9.=C7=E0=BB=E7=B1=E2=B0=A3=BF=A1 =C8=B8=BF=F8=
=B0=A1=C0=D4=C0=BB=20
                        =C7=CF=BC=C5=BC=AD =BF=F9 10,500=BF=F8=BF=A1 =C0=CC=
 =B8=F0=B5=E7 =B9=AE=C8=AD=BB=FD=C8=B0=C0=BB =B4=A9=B8=AE=BC=BC=BF=E4. =C6=
=FA=B6=F3=B7=CE=C0=CC=B5=E5=20
                        =C4=AB=B8=DE=B6=F3=B3=AA =B7=CE=B8=B8=BC=D5 =C4=BF=
=C7=C3=BC=D5=B8=F1=BD=C3=B0=E8=B4=C2 =C7=E0=BB=E7=B1=E2=B0=A3=BF=A1 =B0=A1=
=C0=D4=C7=CF=BD=C3=B4=C2=20
                        =C8=B8=BF=F8=BA=D0=B5=E9=B2=B2 =B5=E5=B8=AE=B4=C2=
 =BB=E7=C0=BA=C7=B0=C0=D4=B4=CF=B4=D9. =BF=A9=B7=AF=BA=D0=C0=C7 =C1=FA=B3=
=F4=C0=BA =B9=AE=C8=AD=BB=FD=C8=B0=BF=A1=20
                        =B5=B5=BF=F2=C0=CC =B5=C7=B0=ED=C0=DA =C7=CF=B4=C2=
 =C1=DF=BE=D3=C5=D7=B8=B6=C0=CC=BA=A5=C6=AE=C0=D4=B4=CF=B4=D9.</span></fo=
nt></p>
                        <p><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;<span style=3D"FONT-SIZE: 12pt"><font color=3D"red">&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><f=
ont color=3D"black">&nbsp;</font></span><span style=3D"FONT-SIZE: 14pt"><=
a href=3D"http://newsweek-event.com" target=3D"_blank"><font color=3D"bla=
ck">=C8=B8=BF=F8=B0=A1=C0=D4=B0=FA=20
                        =C0=DA=BC=BC=C7=D1 =B3=BB=BF=EB=C0=BA</font></a><=
/span><span style=3D"FONT-SIZE: 12pt"=20
           ><a href=3D"http://newsweek-event.com"><font color=3D"black">=20
                        </font></a></span><span style=3D"FONT-SIZE: 14pt"=
=20
           ><a href=3D"http://newsweek-event.com" target=3D"_blank"><font=
 color=3D"red">=C8=A8=C6=E4=C0=CC=C1=F6</font><font color=3D"black">=B7=CE=
</font></a></span></B><BR>=20
                        &nbsp;&nbsp;</p>
                        <p><span style=3D"FONT-SIZE: 10pt"=20
           ><br>=BA=BB<font color=3D"black"> </font></span><FONT color=3D=
"black"><span style=3D"FONT-SIZE: 10pt"=20
           >=B8=DE=C0=CF</span></FONT><span style=3D"FONT-SIZE: 10pt"=20
           ><font color=3D"black">=C0=BB </font></span><FONT color=3D"bla=
ck"><span style=3D"FONT-SIZE: 10pt">=B0=C5=BA=CE</span></FONT><span style=
=3D"FONT-SIZE: 10pt">=C7=CF=BD=C3=B4=C2 =BA=D0=C0=BA [<A href=3D"mailto:n=
ewsweek2002@intizen.com?subject=3D=BC=F6=BD=C5=B0=C5=BA=CE&amp;body=3D=B8=
=DE=C0=CF=BC=F6=BD=C5=C0=BB=B0=C5=BA=CE=C7=D5=B4=CF=B4=D9" ><font color=3D=
"blue">=BC=F6=BD=C5=B0=C5=BA=CE</font></A> ]=B8=A6=20
=B4=AD=B7=AF=C1=D6=BD=CA=BD=C3=BF=E4. =BA=D2=C6=ED=C7=CF=B0=D4 =C7=D8=B5=E5=
=B7=C8=B4=D9=B8=E9 =C1=CB=BC=DB=C7=D5=B4=CF=B4=D9.<BR></span></p></TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f><IMG=20
height=3D8 src=3D"http://www.j-event.co.kr/mail/image/e_bg2.gif"=20
width=3D6></TD></TR></TBODY></TABLE><IMG height=3D24=20
src=3D"http://www.j-event.co.kr/mail/image/e_under.gif" width=3D"793">
</TD></TR></TBODY></TABLE>
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 18 17:08:18 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id RAA12901; Mon, 18 Mar 2002 17:08:17 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 17:08:17 -0500
Received: from orgio.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id RAA00088; Mon, 18 Mar 2002 17:08:16 -0500 (EST)
Message-Id: <200203182208.RAA00088@cs.utk.edu>
Received: from orgio.net (211.228.227.228)
 by cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 17:08:20 -0500
Reply-To: han0533@orgio.net
From: "0G0-AvE4@L" <han0533@orgio.net>
To: <blast-parallel@cs.utk.edu>
Subject: AK<[GU4O4Y. 9N0#:q9f @Z7a[1$0m]
Sender: "0G0-AvE4@L" <han0533@orgio.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 19 Mar 2002 07:06:37 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id RAA00152

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5Au+fA/L7nx9i++MDMurizu7ytwaS4u7fOwcu828fV
tM+02S5APC90aXRsZT4NCjxtZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0iTmFtbyBX
ZWJFZGl0b3IgdjQuMCI+DQo8L2hlYWQ+DQo8Ym9keSBiZ2NvbG9yPSJ3aGl0ZSIgdGV4dD0i
YmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJibHVlIiBhbGluaz0iYmx1ZSI+DQo8UCBzdHls
ZT0iTUFSR0lOLVRPUDogMG1tOyBNQVJHSU4tQk9UVE9NOiAwbW0iIGFsaWduPWNlbnRlcj48
Rk9OVCBzaXplPSIyIj6758D8IL7nx9i++MDMILq4s7u8rSDBy7zbx9W0z7TZLiA8L0ZPTlQ+
PC9QPg0KPHAgYWxpZ249ImNlbnRlciIgc3R5bGU9Ik1BUkdJTi1UT1A6IDFtbTsgTUFSR0lO
LUJPVFRPTTogMG1tIj48Rk9OVCBzaXplPTI+PEZPTlQgc2l6ZT0yPrq7ILO7v+vAuiC9usbU
uN7Az8DHIMCvx/y/oSC+xrmrsM21tSC808fPwfYgvsq9wLTPtNkuKMfHtvO5zLXlLCZuYnNw
OyDH4L/uwMfG7cH2LCC8usDOsPy3w8irurggDQq17ik8QlI+PC9GT05UPjwvRk9OVD48Rk9O
VCBzaXplPSIyIj66uyC43sDPwLogwM7FzbPdu/O/oSC/w7bzIMDWtMIguN7Az8HWvNK4piC6
uLDtILnfw+nHz7+pILnfvNvHz7+0vcC0z7TZLiANCjxCUj66uyC43sDPwLogwaS6uMXrvcW4
wSDAzL/rw8vB+CC51yDBpLq4urjIoyC17r+hILD8x9Eguf23/CDBpiA1MMG2v6EgwMewxcfR
IFuxpLDtXSC43sDPwNS0z7TZLiA8QlI+PC9GT05UPjxQIHN0eWxlPSJNQVJHSU4tVE9QOiAw
bW07IE1BUkdJTi1CT1RUT006IDBtbSIgYWxpZ249Y2VudGVyPjxGT05UIHNpemU9IjIiPjxi
Pr7Gv/S36MDNvbrHwbe5vbq/obytIA0KIFNtdHAgwfa/+MDMILXHwfYgvsrAuL3DtMIgutDA
uiC89rDtvbq3tMH2uLggJmx0O7z2vcWwxbrOJmd0Oye4piA8L2I+PC9GT05UPjwvUD4NCjxw
IGFsaWduPSJjZW50ZXIiIHN0eWxlPSJNQVJHSU4tVE9QOiAwbW07IE1BUkdJTi1CT1RUT006
IDJtbSI+PEZPTlQgc2l6ZT0iMiI+PGI+aGFubmEwNTMzQG9yZ2lvLm5ldCANCrfOILq5u+cg
yMQsILrZv6mz1rHiIMfPv6kgx9jB1ry8v+QuPC9iPjwvRk9OVD48L3A+DQo8UCBzdHlsZT0i
TUFSR0lOLVRPUDogM21tOyBNQVJHSU4tQk9UVE9NOiAxbW0iIGFsaWduPWNlbnRlcj48QSAN
CmhyZWY9Im1haWx0bzpoYW5uYTA1MzNAb3JnaW8ubmV0Ij48Rk9OVCBjb2xvcj0jMzM5OTk5
PjxJTUcgaGVpZ2h0PTE5IA0Kc3JjPSJodHRwOi8vd3d3Lm5pY2VpLmNvLmtyL2UtbWFpbC9p
bWFnZS9idXR0b24uZ2lmIiB3aWR0aD03MSANCmJvcmRlcj0wPjwvRk9OVD48L0E+PC9QPg0K
PFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDBtbTsgTUFSR0lOLUJPVFRPTTogMG1tIiBhbGlnbj1j
ZW50ZXI+PEZPTlQgDQpjb2xvcj0jMzM5OTk5PjxCPj09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PTwvQj48L0ZPTlQ+PC9Q
Pg0KPFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDFtbTsgTUFSR0lOLUJPVFRPTTogMG1tIiBhbGln
bj1jZW50ZXI+osKiwqLCPFNQQU4gDQpzdHlsZT0iRk9OVC1TSVpFOiAxNHB0Ij4mbmJzcDs8
L1NQQU4+PFNQQU4gDQpzdHlsZT0iRk9OVC1TSVpFOiAxNHB0OyBCQUNLR1JPVU5ELUNPTE9S
OiB5ZWxsb3ciPjxCPjxGT05UIGNvbG9yPXJlZD7Iq8itvr7AxyDIv7TJwLsgtPW/7SANCrP0
wM4gwK/IssiryK2+viA8L0ZPTlQ+PC9CPjwvU1BBTj6iwqLCosI8L1A+DQo8UCBzdHlsZT0i
TUFSR0lOLVRPUDogNG1tOyBNQVJHSU4tQk9UVE9NOiAwcHg7IExJTkUtSEVJR0hUOiAxNTAl
IiANCmFsaWduPWNlbnRlcj48U1BBTiBzdHlsZT0iRk9OVC1TSVpFOiAxNHB0Ij4mbmJzcDs8
L1NQQU4+PEZPTlQgc2l6ZT0zPr7Gwfex7sH2IMCvyLLIq8itvr6woSC5q775wM7B9iANCsDf
ILjwuKO9w7TCILrQtem1tSCw6L3Dwfa/5C48L0ZPTlQ+PC9QPg0KPFAgc3R5bGU9Ik1BUkdJ
Ti1UT1A6IDBweDsgTUFSR0lOLUJPVFRPTTogMHB4OyBMSU5FLUhFSUdIVDogMTUwJSIgDQph
bGlnbj1jZW50ZXI+PEZPTlQgc2l6ZT0zPsH2sd2x7sH2ILCiwb4gPC9GT05UPjxGT05UIGNv
bG9yPXllbGxvdyBzaXplPTM+PFNQQU4gDQpzdHlsZT0iQkFDS0dST1VORC1DT0xPUjogZ3Jl
ZW4iPjxCPsDPud3Iq8itvr63ziDIv7D6wLsgwOe067fOILj4uri9xSC60LXpPC9CPjwvU1BB
Tj48L0ZPTlQ+PEZPTlQgDQpzaXplPTM+wLogssAguea5rsfYwda8vL/kLjwvRk9OVD48L1A+
DQo8UCBzdHlsZT0iTUFSR0lOLVRPUDogM3B4OyBNQVJHSU4tQk9UVE9NOiAwcHg7IExJTkUt
SEVJR0hUOiAxNTAlIiANCmFsaWduPWNlbnRlcj48Rk9OVCBzaXplPTM+wK/Isr/AuK6woSC4
9r+hIMHBtNm0wiCwzcC6ILTZIL7GvcPB9r/kLjwvRk9OVD48L1A+DQo8UCBzdHlsZT0iTUFS
R0lOLVRPUDogMHB4OyBNQVJHSU4tQk9UVE9NOiAwcHg7IExJTkUtSEVJR0hUOiAxNTAlIiAN
CmFsaWduPWNlbnRlcj48Rk9OVCBzaXplPTM+udm3ziDAr8iywLsguNS/qbytILHXt6/H0SCw
zcDUtM+02S48L0ZPTlQ+PC9QPg0KPFAgYWxpZ249Y2VudGVyPjxTUEFOIHN0eWxlPSJCQUNL
R1JPVU5ELUNPTE9SOiByZ2IoNTEsMCwyNTUpIj48Rk9OVCANCmNvbG9yPXllbGxvdz48Qj7A
r8iyyKvIrb6+tMIgsdcgyL+0ycC7ILT1v+0gs/TAzLHiIMCnx9i8rSDAr8iywLsgu9G3wbyt
IMCvyLLAzCCwocH4PC9CPjwvU1BBTj48L0ZPTlQ+PC9QPg0KPFAgYWxpZ249Y2VudGVyPjxG
T05UIGNvbG9yPXllbGxvdz48U1BBTiANCnN0eWxlPSJCQUNLR1JPVU5ELUNPTE9SOiByZ2Io
NTEsMCwyNTUpIj48Qj7BwcC6ILq4vue8urrQwLsgyKvIrbChIMjtvPY8L0I+PC9TUEFOPjwv
Rk9OVD7Hz7W1t88gDQrH0S4uLi48L1A+DQo8cCBhbGlnbj0iY2VudGVyIj48Yj48Zm9udCBj
b2xvcj0icmVkIj7Iv7D6uKYguri9xSC4ucC6ILrQtenAxyAmbHQ7sObH6Lvnt8omZ3Q7tbUg
DQq/w7bzv80gwNa9wLTPtNkuPC9mb250PjwvYj48L3A+DQo8VEFCTEUgY2VsbFNwYWNpbmc9
MCBib3JkZXJDb2xvckRhcms9d2hpdGUgY2VsbFBhZGRpbmc9MCB3aWR0aD0iMTAwJSIgDQpi
b3JkZXJDb2xvckxpZ2h0PWJsYWNrIGJvcmRlcj0wIGFsaWduPSJjZW50ZXIiPg0KPFRCT0RZ
Pg0KPFRSPg0KPFREIGFsaWduPWxlZnQgd2lkdGg9NDExIGhlaWdodD0yNDc+DQo8VEFCTEUg
Y2VsbHNwYWNpbmc9IjAiIHdpZHRoPSI1ODYiIGFsaWduPSJjZW50ZXIiIGNlbGxwYWRkaW5n
PSIwIj4NCjxUQk9EWT4NCjxUUj4NCjxURCB3aWR0aD0iODkiIGhlaWdodD0iMzIzIiBiZ2Nv
bG9yPSJ3aGl0ZSI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+
PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOzwvYj48L0ZPTlQ+PC9wPg0KPC9URD48VEQgd2lkdGg9IjQ5NyIg
aGVpZ2h0PSIzMjMiIGJnY29sb3I9IiNlNWU1ZTgiPg0KPFRBQkxFIGJvcmRlcj0xIGNlbGxz
cGFjaW5nPSIyIiB3aWR0aD0iNDk2IiBhbGlnbj0iY2VudGVyIj4NCjxUQk9EWT4NCjxUUj4N
CjxURCB3aWR0aD0iODAwIiBoZWlnaHQ9IjI3IiBiZ2NvbG9yPSIjZTVlNWU4IiBhbGlnbj0i
bWlkZGxlIiB2YWxpZ249ImNlbnRlciI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cCBh
bGlnbj0ibGVmdCI+PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOzApILvAsKEg
us63r8GuvK0gwN8gJiM0ODY3NzvB9iANCiAgICAgICAgICAgICAgICAgICAgICAgIL7KtMIg
utA8L2I+PC9GT05UPjwvcD4NCjwvVEQ+PC9UUj4NCjxUQk9EWT4NCjxUUj4NCjxURCB3aWR0
aD0iODAwIiBoZWlnaHQ9MTkgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFs
aWduPSJjZW50ZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImxlZnQi
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw
OyZuYnNwOzEpIA0KICAgICAgICAgICAgICAgICAgICAgICAgv8IguPbAzCC+pb3DsO0gsOG4
rr3DtMIgutA8L2I+PC9GT05UPjwvcD4NCjwvVEQ+PC9UUj4NCjxUUj4NCjxURCB3aWR0aD0i
ODAwIiBoZWlnaHQ9MTkgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWdu
PSJjZW50ZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImxlZnQiIHN0
eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOzIpIA0KICAgICAgICAgICAgICAgICAgICAgICAgvu64sMDMILy6wOUgwOW+1jwvYj48
L0ZPTlQ+PC9wPg0KPC9URD48L1RSPg0KPFRCT0RZPg0KPFRSPg0KPFREIHdpZHRoPSI4MDAi
IGhlaWdodD0iMjMiIGJnY29sb3I9IiNlNWU1ZTgiIGFsaWduPSJtaWRkbGUiIHZhbGlnbj0i
Y2VudGVyIj4NCjxQIGFsaWduPSJsZWZ0IiBzdHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxG
T05UIGZhY2U9IrG8uLIiIHNpemU9IjMiIGNvbG9yPSJibHVlIj48Qj4mbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsz
KSANCiAgICAgICAgICAgICAgICAgICAgICAgILvAsKEgvuDH0SC60DwvQj48L0ZPTlQ+PC9Q
PjwvVEQ+PC9UUj4NCjxUUj4NCjxURCB3aWR0aD0iODAwIiBoZWlnaHQ9IjIzIiBiZ2NvbG9y
PSIjZTVlNWU4IiBhbGlnbj0ibWlkZGxlIiB2YWxpZ249ImNlbnRlciI+DQo8UCBhbGlnbj0i
bGVmdCIgc3R5bGU9IkxJTkUtSEVJR0hUOiAxNTAlIj48Rk9OVCBmYWNlPSKxvLiyIiBzaXpl
PSIzIiBjb2xvcj0iYmx1ZSI+PEI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i
c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7NCkguPbAzCDHx7Dvx8+w7SC5q7DF
v+4gutA8L0I+PC9GT05UPjwvUD48L1REPjwvVFI+DQo8VFI+DQo8VEQgd2lkdGg9IjgwMCIg
aGVpZ2h0PSIyMyIgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWduPSJj
ZW50ZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImxlZnQiIHN0eWxl
PSJMSU5FLUhFSUdIVDogMTUwJSI+PGZvbnQgc2l6ZT0iMyIgY29sb3I9ImJsdWUiPjxiPiZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOzUpIA0KICAgICAgICAgICAgICAgICAgICAgICAgtOu6ryC6uLHisKEgyPu1
5b3FILrQPC9iPjwvZm9udD48L3A+DQo8L1REPjwvVFI+DQo8VFI+DQo8VEQgd2lkdGg9Ijgw
MCIgaGVpZ2h0PSIyMyIgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWdu
PSJjZW50ZXIiPg0KPFAgYWxpZ249ImxlZnQiIHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+
PEZPTlQgZmFjZT0isby4siIgc2l6ZT0iMyIgY29sb3I9ImJsdWUiPjxCPiZuYnNwOyZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw
OzYpIL/CuPbAzCDC97DtIMD6uK69xSC60DwvQj48L0ZPTlQ+PC9QPjwvVEQ+PC9UUj4NCjxU
Uj4NCjxURCB3aWR0aD0iODAwIiBoZWlnaHQ9IjIzIiBiZ2NvbG9yPSIjZTVlNWU4IiBhbGln
bj0ibWlkZGxlIiB2YWxpZ249ImNlbnRlciI+DQo8UCBhbGlnbj0ibGVmdCIgc3R5bGU9IkxJ
TkUtSEVJR0hUOiAxNTAlIj48Rk9OVCBmYWNlPSKxvLiyIiBzaXplPSIzIiBjb2xvcj0iYmx1
ZSI+PEI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Nykgw+K76iDIxCC76sjEwba4rrimIMfPvcO0wiANCrrQPC9C
PjwvRk9OVD48L1A+PC9URD48L1RSPg0KPFRSPg0KPFREIHdpZHRoPSI4MDAiIGhlaWdodD0i
MjMiIGJnY29sb3I9IiNlNWU1ZTgiIGFsaWduPSJtaWRkbGUiIHZhbGlnbj0iY2VudGVyIj4N
CjxQIGFsaWduPSJsZWZ0IiBzdHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxGT05UIGZhY2U9
IrG8uLIiIHNpemU9IjMiIGNvbG9yPSJibHVlIj48Qj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJz
cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDs4KSC8rbytIMDP
x8+x4iC2p7muv6Egud/AzCC617DtIMfHsO/Hz73FIA0KutA8L0I+PC9GT05UPjwvUD48L1RE
PjwvVFI+DQo8VFI+DQo8VEQgd2lkdGg9IjgwMCIgaGVpZ2h0PSIyMyIgYmdjb2xvcj0iI2U1
ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWduPSJjZW50ZXIiPg0KPFAgYWxpZ249ImxlZnQi
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PEZPTlQgZmFjZT0isby4siIgc2l6ZT0iMyIg
Y29sb3I9ImJsdWUiPjxCPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOzkpILPrvuDA2iC51yCwx7CtyLi6ucC7IL/k
x8+0wiANCiAgICAgICAgICAgICAgICAgICAgICAgILrQPC9CPjwvRk9OVD48L1A+PC9URD48
L1RSPg0KPFRSPg0KPFREIHdpZHRoPSI4MDAiIGhlaWdodD0iMjEiIGJnY29sb3I9IiNlNWU1
ZTgiIGFsaWduPSJtaWRkbGUiIHZhbGlnbj0iY2VudGVyIj4NCjxQIGFsaWduPSJsZWZ0IiBz
dHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxGT05UIGZhY2U9IrG8uLIiIHNpemU9IjMiIGNv
bG9yPSJibHVlIj48Qj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz
cDsmbmJzcDsmbmJzcDsmbmJzcDsxMCkgsKLBviC8usDOurQgv7m55sfPvccgutA8L0I+PC9G
T05UPjwvUD48L1REPjwvVFI+DQo8L1RCT0RZPjwvVEFCTEU+DQo8L1REPjwvVFI+DQo8L1RC
T0RZPjwvVEFCTEU+DQo8L1REPjwvVFI+PC9UQk9EWT48L1RBQkxFPg0KPFAgYWxpZ249ImNl
bnRlciI+Jm5ic3A7PEI+PEZPTlQgY29sb3I9YmxhY2s+v6y3zsfPvcUgus648LTUIMi/tbUg
vLG5sLfOILHXuLggwNS0z7TZLjwvRk9OVD48L0I+PC9QPg0KPHAgYWxpZ249ImNlbnRlciI+
PGI+PHNwYW4gc3R5bGU9IkJBQ0tHUk9VTkQtQ09MT1I6IHllbGxvdyI+PGZvbnQgY29sb3I9
ImJsdWUiPr3EvPa3ziANCrG4vPbHz7+pILq4uK7C9yC6uLTZILT1ILjAwMwgwcG9wLTPtNku
ICjB+rq0IL+5ueYpPC9mb250Pjwvc3Bhbj48L2I+PC9wPg0KPFAgYWxpZ249Y2VudGVyPqLC
PGZvbnQgY29sb3I9InJlZCI+IDxiPsioxuTAzMH2PC9mb250PjwvQj4gPEZPTlQgc2l6ZT00
PiZuYnNwOzxBIA0KaHJlZj0iaHR0cDovL3d3dy5ob25nd2hhLm5ldC8iIHRhcmdldD0iX2Js
YW5rIj48Qj5odHRwOi8vd3d3Lmhvbmd3aGEubmV0LzwvQT48YSBocmVmPSJodHRwOi8vd3d3
Lmhvbmd3aGEubmV0LyIgdGFyZ2V0PSJfcGFyZW50Ij4gPC9hPjwvQj48L0ZPTlQ+Jm5ic3A7
PGZvbnQgY29sb3I9InJlZCI+PGI+wMyw98C7IMH2sd0gDQq52bfOIDwvZm9udD48Zm9udCBj
b2xvcj0iYmxhY2siPqLCIDwvQj48L2ZvbnQ+PFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDNtbTsg
TUFSR0lOLUJPVFRPTTogMW1tIiBhbGlnbj1jZW50ZXI+PGZvbnQgY29sb3I9InJlZCI+PGI+
uea5rsfYwda8vL/kPC9mb250PjwvQj48L1A+DQo8UCBzdHlsZT0iTUFSR0lOLVRPUDogMG1t
OyBNQVJHSU4tQk9UVE9NOiAwbW0iIA0KYWxpZ249Y2VudGVyPj09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PC9QPg0KPFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDBtbTsgTUFSR0lOLUJPVFRPTTogMG1t
IiBhbGlnbj1jZW50ZXI+PEZPTlQgc2l6ZT0iMiI+u+fA/CC+58fYvvjAzCC6uLO7vK0gtNm9
wyANCsfRufggsO2wsyC897+pILvnsPq15biztM+02S4gPC9GT05UPjwvUD4NCjxwIGFsaWdu
PSJjZW50ZXIiIHN0eWxlPSJNQVJHSU4tVE9QOiAwbW07IE1BUkdJTi1CT1RUT006IDBtbSI+
PEZPTlQgc2l6ZT0iMiI+sc0gDQqwocGkv6EgvvDBprTPIMfgurmw+iCwx7CtwMwgx9SysiDH
z73DseK4piAuLi4uPC9GT05UPjwvcD4NCjxwIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJNQVJH
SU4tVE9QOiAwbW07IE1BUkdJTi1CT1RUT006IDBtbSI+PEZPTlQgc2l6ZT0iMiI+PC9GT05U
PiZuYnNwOzwvcD4NCjwvYm9keT4NCjwvaHRtbD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar 22 02:27:17 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu ([127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id CAA09782; Fri, 22 Mar 2002 02:27:16 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 02:27:16 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id CAA05409; Fri, 22 Mar 2002 02:27:14 -0500 (EST)
Message-Id: <200203220727.CAA05409@cs.utk.edu>
Received: from yahoo.co.kr (218.51.149.79)
 by cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 02:27:15 -0500
Reply-To: park000a@yahoo.co.kr
From: "9ZA>@O" <park000a@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: :q13GR<v>x4B @L8^@O<RGAF.7N 8ECb@;109h(H+:8)
Sender: "9ZA>@O" <park000a@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 23 Mar 2002 04:33:54 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id CAA05416

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9ImNvbnRlbnQtdHlwZSIgY29udGVu
dD0idGV4dC9odG1sOyBjaGFyc2V0PWV1Yy1rciI+DQo8dGl0bGU+sKW89rfPIMShv63H2MH2
tMIguLm+xsH2tMIgyKjG5MDMwfa16SCxzbvnsKEgw6TFw8fPsO0gwNa0wiDIq7q4ILnmvcTA
uiA8L3RpdGxlPg0KPG1ldGEgbmFtZT0iZ2VuZXJhdG9yIiBjb250ZW50PSJOYW1vIFdlYkVk
aXRvciB2NS4wIj4NCjwvaGVhZD4NCjxib2R5IGJnY29sb3I9IiNmZmZmY2MiIHRleHQ9ImJs
YWNrIiBsaW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjxQPrClvPa3
zyDEob+tx9jB9rTCILi5vsbB9rTCIMioxuTAzMH2tekgPEZPTlQgZmFjZT21uL/yPrHNu+ew
oSA8L0ZPTlQ+PEZPTlQgY29sb3I9IzAwMzNmZiBmYWNlPbHDvK3DvCANCnNpemU9ND7DpMXD
x8+w7SDA1rTCIMirurgguea9xDwvRk9OVD7AuiA8L1A+DQo8UD65q775wNS0z7HuICZuYnNw
Oz8/ICZuYnNwO73Fua6xpLDtt9AgwabHsMbIvsa1tSC89sDNwMwgs7LB9iC+yrTCtNmw7SAm
bmJzcDu4u764x8+9w7TCILrQtPrAzLTDvvq9wLTPtNkuPC9QPg0KPFA+wPy03MH2tbUgwNDB
9iC+yrTCIMPfvLy28yAmbmJzcDu4tralx9EgsaSw7SC89rTcwMwgvvi0wiDH9r3DwaG/obyt
sPjCpb+hILChse6/7iC68b/rwLi3ziDAzsXNs92787+hvK0gPC9QPg0KPFA+sc2758DHILvz
x7DAuyDGyL7GwdkgJm5ic3A7wMy43sDPILi2xM/Gw8C7ILHHx9W0z7TZLjwvUD4NCjxQPiZu
YnNwOyoqKioqKioqKjxGT05UIGZhY2U9scO8rcO8IHNpemU9ND6x17PJILDLu/a+7rimIMDU
t8LHz7HiuLggx9i1tSDD38Pitce0wiDA2rW/sMu79ri4wLi30CC6zsG3x8+03CCwzSANCr7G
vcq0z7HuPzwvRk9OVD48L1A+DQo8UD4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDs8Rk9OVCBjb2xvcj1yZWQgZmFjZT2xw7ytw7wgc2l6ZT00PrDU
vcPGx8C7ILi4tenB9iC+yrTCILvnwMzGrrChICZuYnNwO8D9ud3AuyCz0bDUIA0KwvfB9sfV
tM+02TwvRk9OVD4uICZuYnNwO8DMt7Gw5r/uPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7vu62u7DUIMPfw+LHz73DsNq9wLTPse4/IDxGT05UIGNvbG9yPXJlZD7Apb3OwMzG
riC55rmuuLggx8+46SAmbmJzcDvA2rW/wLi3ziDD38Pix9jB1rTCPC9GT05UPjwvUD4NCjxQ
PiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwO8PWsO3AxyDD38PiseKwoSCzqr/UvcC0z7TZLioq
KioqKioqKioqKioqPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i
c3A7Jm5ic3A7PC9QPg0KPFA+wMy43sDPIMPfw+Kx4iArILnfvNux4iArIMDMuN7Az7XwuvEg
wMwgw7W4uLCzuKYgPSAzNbi4v/i/oSAmbmJzcDvGx7jFx9W0z7TZLjwvUD4NCjxQPjxCUj7A
zLjewM8guLbEycbDwMwgwM7FzbPdILrxwe60z726uKYgx8+9w7TCILrQwMyzqiDBpsewwLsg
xse4xcfPsO3A2iDH0iC2pyA8QlI+vvbDu7OtIMi/sPq4prSpuK60wiCwzSAmbmJzcDu+xr3D
wdI/IDwvUD4NCjxQPisrKysrK7/4xay4ryC89r3FsMW6zsDaIMDatb+76MGmILHitMkrKysr
KysrIMDatb/B37q5waawxSCx4rTJKysrKysrKysrPC9QPg0KPFA+MSwgwMy43sDPIMPfw+Kx
4sHfIMClveHHzsfPuOm8rSDD38Pix9IgvPYgwNa0wiCwzSC6uLzMvcC0z7HuPyAowKW94cfO
w9/D4rHitMkgKcGmsPjH1bTPtNkuPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7PEZPTlQgZmFjZT2x
w7ytw7wgc2l6ZT0zPrz2uLnAuiDHwbfOsde3pcDWwfa4uCAmbmJzcDvA2rHisKEgvc7AzMau
ILnmua7Hz7jpIMDatb/AuLfOIMPfw+LHz7TCILDNwLogDQq4+Lq4vMzAu7DMtM+02S48L0ZP
TlQ+PC9QPg0KPFA+MiwgJm5ic3A7KMDatb8gsMu79r7uILHitMkpwaaw+MfVtM+02S4gsKG3
ySC5q7+qwMy29SC03L7uIMfPs6oguLggwNS3wsfPuOkgPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7
uPC15yDApb3OwMzGrr+hvK0gwNq1v8C4t84gw9/D4sfVtM+02S48L1A+DQo8UD4zLCDHz7fn
ud+828Gmx9G3rr74wMwguavBpsfRIMDatb+537zbtcu0z7TZLiAmbmJzcDs8L1A+DQo8UD40
LiC89r3FsMW6ziC/+MWsuK8gu+jBpiAmbmJzcDvA2rW/wd+6ucGmsMUgseK0ySAmbmJzcDuw
o8btx8+w7SCwrbfCx9W0z7TZLjwvUD4NCjxQPjUuILCzwM7Hx76+uKYgvK259sitx8+0wiCx
4rTJwLi3ziAmbmJzcDu8rbn2vvjAzCDB773DILvnv+vH0iC89iDA1r3AtM+02S48L1A+DQo8
UD42LiDHwbfOsde3pbqwt84gwM7B9bn4yKMgus6/qbXHtMIgwaTHsMDUtM+02S48L1A+DQo8
UD48QlI+LSAxutC/oSDD1rDtIDEwMDCws8DMu/MguavBpsfRIMPfw+K1y7TPtNkuPEJSPi0g
sbmzu7/cIDgwJcDMu/PAxyDAzLjewM8gvPbB/bTJt8IgPEJSPi0gvcO9usXbILvnvue/oSC1
+7bzILTZvPbAxyANCsfBt86x17elIL3Hx+AgsKG0yS48QlI+LSC537zbseIgx8G3zrHXt6Ug
wNrDvL+hvK0gwd+6ucO8xaksILz2vcWwxbrOwNoguPG3zyCw/LiusKG0yS48QlI+LSDB9bCo
sKosIMPKseKwqiC17rXuIL7ut8G/7iC8s8GkwLogDQrA/Mf0vvjAvS4gu+e/68DMILCjtNzH
1bTPtNkuIDxCUj4tICZuYnNwO7ChwaS/obytIMDavcXAxyDExMe7xc2/oSDFrLivIMfRufi/
oSC8s8ShsKG0ycfPuOcgvLPEocjEIMHvvcMgu+e/68DMILChtMnH1bTPtNk8L1A+DQo8UD48
QlI+sbjA1Lnmuf0gOiDH9sDnIMD6yPGwoSC537zbvcMgu+e/68fRILjewM+3ziDIuL3FwLsg
x8+/qSDB1r3DuOkgtOS6r8C7ILXluK7B9iC4+MfVtM+02S48L1A+DQo8UD4mbmJzcDsmbmJz
cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz
cDvAzLjewM+w6MGkv6Egud2827jewM/AzCCz0cPEvK0gJm5ic3A7sOjBpMDMIMDawdYgsvex
6bTPtNkuPEJSPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyA8QlI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i
c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7wPzIrbn4yKMgDQovwMy4
pyAvyLi757jtICZuYnNwO8D7vu68rSA8QSANCmhyZWY9Im1haWx0bzpwYXJram9uZzdAeWFo
b28uY28ua3IiPnBhcmtqb25nN0B5YWhvby5jby5rcjwvQT7AuLfOPC9QPg0KPFA+Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7urizu8HWvcO46SDA+ry8x9EgvLO47bytv80gwMy5zMH2IMbEwM/AuyAmbmJzcDu6
uLO7teW4rrDavcC0z7TZLiA8L1A+DQo8UD4mbmJzcDs8L1A+DQo8UD7AzLjewM/AuiDBpMXr
us4gwLG4rrHUwaTAuyDB2Lz2x9EguN7Az8DUtM+02S48L1A+DQo8UD689r3FsMW6zrimIMfP
vcOw7SC9zcC6utDAuiAmbmJzcDs8QSANCmhyZWY9Im1haWx0bzpwYXJram9uZzlAaG90bWFp
bC5jb20iPnBhcmswMGFAaG90bWFpbC5jb208L0E+IMC4t84gvPa9xbDFus4gx9jB1ry8v+Q8
L1A+DQo8UD7AzLjewM/B1rzSv9y/oSC+xrmrt7EgwaS6uLW1ILChwfaw7SDA1sH2IL7KvcC0
z7TZLjwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOzwvUD4NCjwvYm9keT4NCjwvaHRt
bD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar 22 14:16:03 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id OAA29467; Fri, 22 Mar 2002 14:16:02 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 14:16:02 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id OAA05613; Fri, 22 Mar 2002 14:15:51 -0500 (EST)
Message-Id: <200203221915.OAA05613@cs.utk.edu>
Received: from hotmail.com (211.37.22.59)
 by cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 14:15:52 -0500
Reply-To: malca1004@hotmail.com
From: "@L<v9L" <malca1004@hotmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: `wlQ88 E,8/GXAV<<?d!!!
Sender: "@L<v9L" <malca1004@hotmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 23 Mar 2002 04:15:59 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id OAA05634

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD7AzLjewM/AuiDAz8i4v+sgud+828DM
uOcgsO2wtLTUwMcgvu62sMfRIMGkurg8QlI+tbUgsKHB9rDtIMDWwfYgvsq9wLTPtNkuPC9Q
Pg0KPFA+Jm5ic3A7PC9QPg0KPFA+vLrAzrvnwMzGrrTCILi5vcC0z7TZLjxCUj6x17evs6og
tbezu7DtIL7GsfXB9iC+yrDUIMDMv+vH0rz2wNa0wiC758DMxq60wiA8QlI+v6mx4rnbv6Eg
vvi9wLTPtNkuJm5ic3A7IMjEyLjHz8H2IA0KvsrAuL3HsMy0z7TZLjwvUD4NCjxQPiZuYnNw
OzwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPjxBIGhyZWY9Imh0dHA6Ly80LjM2LjIzNC4xOTIv
fmRlYnVkZWJ1L2NnaS1iaW4vaW5kZXguY2dpPzYzMzAyNTkiPjxGT05UIA0KY29sb3I9I2Zm
MDAwMCBzaXplPTQ+vLrAzri4IMWsuK/H2MHWvLy/5CEhISC5zLy6s+LA2rTCILvnwP0hISEh
PC9GT05UPiA8L0E+PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPC9CT0RZPg0KPC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar 24 10:57:18 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id KAA11616; Sun, 24 Mar 2002 10:57:18 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 10:57:18 -0500
Received: from trend1020.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id KAA28664; Sun, 24 Mar 2002 10:57:15 -0500 (EST)
Message-Id: <200203241557.KAA28664@cs.utk.edu>
Received: from trend1020.com (218.144.60.206)
 by cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 10:57:16 -0500
Reply-To: open@trend1020.com
From: "open@trend1020.com" <open@trend1020.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]5?4k9.558E;s@N5i@L :83;5e8.4B :=Gb1b 0!5fGQ FP<GA$:8
Sender: "open@trend1020.com" <open@trend1020.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 25 Mar 2002 00:53:46 +0900

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=euc-kr">
<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
<BODY> <table>
  
  <TR>
	<TD align=left><TABLE WIDTH=621 BORDER=0 CELLPADDING=0 CELLSPACING=0>
	<TR>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=19 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=7 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=70 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=33 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=13 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=99 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=45 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=30 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=97 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=7 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=47 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=65 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=17 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=35 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=37 HEIGHT=1></TD>
		<TD></TD>
	</TR>
	<TR>
		<TD COLSPAN=15>
			<IMG SRC="http://trend1020.com/md/images/mm_01.jpg" WIDTH=621 HEIGHT=31></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=31></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=9>
			<IMG SRC="http://trend1020.com/md/images/mm_02.jpg" WIDTH=96 HEIGHT=688></TD>
		<TD COLSPAN=3 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3641"><IMG SRC="http://trend1020.com/md/images/mm_03.jpg" WIDTH=145 HEIGHT=163 border=0></a></TD>
		<TD COLSPAN=9>
			<IMG SRC="http://trend1020.com/md/images/mm_04.jpg" WIDTH=380 HEIGHT=63></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=63></TD>
	</TR>
	<TR>
		<TD COLSPAN=6 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3391"><IMG SRC="http://trend1020.com/md/images/mm_05.jpg" WIDTH=291 HEIGHT=153 border=0></a></TD>
		<TD COLSPAN=3 ROWSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_06.jpg" WIDTH=89 HEIGHT=259></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=100></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_07.jpg" WIDTH=145 HEIGHT=525></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=53></TD>
	</TR>
	<TR>
		<TD COLSPAN=6>
			<IMG SRC="http://trend1020.com/md/images/mm_08.jpg" WIDTH=291 HEIGHT=106></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=106></TD>
	</TR>
	<TR>
		<TD COLSPAN=4 ROWSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_09.jpg" WIDTH=179 HEIGHT=147></TD>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3612"><IMG SRC="http://trend1020.com/md/images/mm_10.jpg" WIDTH=129 HEIGHT=141 border=0></a></TD>
		<TD COLSPAN=2 ROWSPAN=12>
			<IMG SRC="http://trend1020.com/md/images/mm_11.jpg" WIDTH=72 HEIGHT=999></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=141></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_12.jpg" WIDTH=129 HEIGHT=10></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=6></TD>
	</TR>
	<TR>
		<TD ROWSPAN=13>
			<IMG SRC="http://trend1020.com/md/images/mm_13.gif" WIDTH=45 HEIGHT=1203></TD>
		<TD COLSPAN=2 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3586"><IMG SRC="http://trend1020.com/md/images/mm_14.jpg" WIDTH=127 HEIGHT=144 border=0></a></TD>
		<TD ROWSPAN=6>
			<IMG SRC="http://trend1020.com/md/images/mm_15.jpg" WIDTH=7 HEIGHT=544></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=4></TD>
	</TR>
	<TR>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3588"><IMG SRC="http://trend1020.com/md/images/mm_16.jpg" WIDTH=129 HEIGHT=140 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=140></TD>
	</TR>
	<TR>
		<TD COLSPAN=2 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_17.jpg" WIDTH=127 HEIGHT=400></TD>
		<TD COLSPAN=3 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_18.jpg" WIDTH=129 HEIGHT=400></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=75></TD>
	</TR>
	<TR>
		<TD ROWSPAN=10>
			<IMG SRC="http://trend1020.com/md/images/mm_19.jpg" WIDTH=19 HEIGHT=984></TD>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3610"><IMG SRC="http://trend1020.com/md/images/mm_20.jpg" WIDTH=110 HEIGHT=177 border=0></a></TD>
		<TD COLSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_21.jpg" WIDTH=112 HEIGHT=177></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=177></TD>
	</TR>
	<TR>
		<TD COLSPAN=5>
			<IMG SRC="http://trend1020.com/md/images/mm_22.jpg" WIDTH=222 HEIGHT=97></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=97></TD>
	</TR>
	<TR>
		<TD COLSPAN=5>
			<IMG SRC="http://trend1020.com/md/images/mm_23.jpg" WIDTH=222 HEIGHT=51></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=51></TD>
	</TR>
	<TR>
		<TD ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_24.jpg" WIDTH=7 HEIGHT=659></TD>
		<TD COLSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_25.jpg" WIDTH=116 HEIGHT=145 border=0></TD>
		<TD ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_26.jpg" WIDTH=99 HEIGHT=659></TD>
		<TD ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_27.jpg" WIDTH=30 HEIGHT=659></TD>
		<TD COLSPAN=3 ROWSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_28.jpg" WIDTH=151 HEIGHT=163 border=0></TD>
		<TD COLSPAN=2 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_29.gif" WIDTH=82 HEIGHT=308></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=145></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3655"><IMG SRC="http://trend1020.com/md/images/mm_30.jpg" WIDTH=116 HEIGHT=150 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=18></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=4395"><IMG SRC="http://trend1020.com/md/images/mm_31.jpg" WIDTH=151 HEIGHT=145 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=132></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_32.jpg" WIDTH=116 HEIGHT=364></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=13></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_33.gif" WIDTH=151 HEIGHT=351></TD>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_norm.asp?prodCd=4432"><IMG SRC="http://trend1020.com/md/images/mm_34.jpg" WIDTH=117 HEIGHT=156 border=0></a></TD>
		<TD ROWSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_35.jpg" WIDTH=37 HEIGHT=351></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=156></TD>
	</TR>
	<TR>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3646"><IMG SRC="http://trend1020.com/md/images/mm_36.jpg" WIDTH=117 HEIGHT=176 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=176></TD>
	</TR>
	<TR>
		<TD COLSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_37.jpg" WIDTH=117 HEIGHT=19></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=19></TD>
	</TR>
</TABLE>
	</TD></TR>
    </table></TABLE>
<table align=center width=400 border=0>
  
  <TR>
<td>
<a href="http://trend1020.com/nomail/no.asp" target="_blink"><IMG height=18 src="http://www.nextsoft21.com/images/Reject_email.JPG" width=100 border=0></a> 
</td></TR>
</table></BODY></HTML>

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar 24 11:08:24 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA11770; Sun, 24 Mar 2002 11:08:24 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 11:08:24 -0500
Received: from wowsungin.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA00384; Sun, 24 Mar 2002 11:08:22 -0500 (EST)
Message-Id: <200203241608.LAA00384@cs.utk.edu>
Received: from wowsungin.com (211.63.98.73)
 by cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 11:08:22 -0500
Reply-To: sexywow@wowsungin.com
From: "<RA_GQ;g6w" <sexywow@wowsungin.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$ 0m] A$8; <RA_GQ A$:88& 5e834O4Y! E,8/!
Sender: "<RA_GQ;g6w" <sexywow@wowsungin.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 25 Mar 2002 01:09:49 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id LAA00387

<html>
<head>
<title>:::::::=BF=CD=BF=EC=BC=BA=C0=CE=C0=C7 =C8=AB=BA=B8=B8=DE=C0=CF=C0=D4=
=B4=CF=B4=D9:::::::</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<style type=3D"text/css">
<!--
td {  font-family: "=B1=BC=B8=B2", "=B1=BC=B8=B2=C3=BC"; font-size: 10pt;=
 line-height: 19px}
-->
</style>
</head>
<body bgcolor=3D"#ffffff" text=3D"#000000" leftmargin=3D"0" topmargin=3D"=
0" marginwidth=3D"0" marginheight=3D"0">
<table width=3D"590" cellpadding=3D"7">
  <tr>
    <td> =A2=BA =C1=A4=BA=B8=C5=EB=BD=C5=B8=C1 =C0=CC=BF=EB=C3=CB=C1=F8 =B9=
=D7 =C1=A4=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1 =B9=FD=B7=FC 6=C0=E5=
 =C1=A6 50=C1=B6, 9=C0=E5 =C1=A6 67=C1=B6=BF=A1 =C0=C7=B0=C5 [=B1=A4=B0=ED=
] =B6=F3=B0=ED<br>
      =C7=A5=BD=C3=C7=D1 =B8=DE=C0=CF=C0=D4=B4=CF=B4=D9. =C0=CC =C1=A4=BA=
=B8=B3=BB=BF=EB=C0=BA =C3=BB=BC=D2=B3=E2 =C0=AF=C7=D8=B8=C5=C3=BC=B9=B0=B7=
=CE=BC=AD =C1=A4=BA=B8=C5=EB=BD=C5=B8=C1 =C0=CC=BF=EB=C3=CB=C1=F8 =B9=D7 =
=C1=A4=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1 =B9=FD=B7=FC =B9=D7 =C3=
=BB=BC=D2=B3=E2=BA=B8=C8=A3=B9=FD=C0=C7 =B1=D4=C1=A4=BF=A1=20
      =C0=C7=C7=CF=BF=A9 19=BC=BC =B9=CC=B8=B8=C0=C7 =C3=BB=BC=D2=B3=E2=C0=
=CC =C0=CC=BF=EB =C7=D2 =BC=F6 =BE=F8=BD=C0=B4=CF=B4=D9. </td>
</tr>
</table>
<table width=3D"590" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">
  <tr>=20
    <td width=3D"20">&nbsp;</td>
    <td bgcolor=3D"#999999"><a href=3D"http://www.wowsungin.com" target=3D=
"_blank"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-28/image=
s/top01.jpg" width=3D"301" height=3D"180" border=3D"0"></a><a href=3D"htt=
p://www.wowsungin.com" target=3D"_blank"><img src=3D"http://www.wowsungin=
.com/mail/cover/2002-02-28/images/top02.jpg" width=3D"249" height=3D"180"=
 border=3D"0"></a></td>
    <td width=3D"20">&nbsp;</td>
  </tr>
  <tr>=20
    <td colspan=3D"3"><a href=3D"http://www.wowsungin.com" target=3D"_bla=
nk"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/top=
03.jpg" width=3D"590" height=3D"30" border=3D"0"></a></td>
  </tr>
  <tr>=20
    <td width=3D"20">&nbsp;</td>
    <td>=20
      <table width=3D"550" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" background=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/bg=
_body.jpg">
        <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td width=3D"10">&nbsp;</td>
          <td width=3D"480" height=3D"200">=20
            <table width=3D"530" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0">
              <tr>=20
                <td width=3D"336" height=3D"212" background=3D"http://www=
.wowsungin.com/mail/cover/2002-02-28/images/bg_flash.jpg">=20
                  <table width=3D"336" border=3D"0" cellspacing=3D"0" cel=
lpadding=3D"0">
                    <tr>=20
                      <td width=3D"13" height=3D"6"></td>
                      <td height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                    </tr>
                    <tr>=20
                      <td width=3D"13">&nbsp;</td>
                      <td>
                        <OBJECT=20
                        classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540=
000=20
                        codeBase=3Dhttp://download.macromedia.com/pub/sho=
ckwave/cabs/flash/swflash.cab#version=3D5,0,0,0=20
                        height=3D200 width=3D310><PARAM NAME=3D"_cx" VALU=
E=3D"8202"><PARAM NAME=3D"_cy" VALUE=3D"5292"><PARAM NAME=3D"FlashVars" V=
ALUE=3D"8202"><PARAM NAME=3D"Movie" VALUE=3D"http://www.wowsungin.com/mai=
l/cover/2002-02-28/images/wowportal_b_banner.swf"><PARAM NAME=3D"Src" VAL=
UE=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/wowportal_b_b=
anner.swf"><PARAM NAME=3D"WMode" VALUE=3D"Window"><PARAM NAME=3D"Play" VA=
LUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"-1"><PARAM NAME=3D"Quality" VALU=
E=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D""><PARAM NAME=3D"Menu" VALUE=3D=
"-1"><PARAM NAME=3D"Base" VALUE=3D""><PARAM NAME=3D"Scale" VALUE=3D"ShowA=
ll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0"><PARAM NAME=3D"EmbedMovie" VAL=
UE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D""><PARAM NAME=3D"SWRemote" VALU=
E=3D"">
                          <embed src=3D"http://www.wowsungin.com/mail/cov=
er/2002-02-28/images/wowportal_b_banner.swf" quality=3Dhigh pluginspage=3D=
"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=3D=
ShockwaveFlash" type=3D"application/x-shockwave-flash" width=3D"310" heig=
ht=3D"200">
                          </embed>                         </OBJECT></td>
                      <td width=3D"13">&nbsp;</td>
                      <td width=3D"13">&nbsp;</td>
                    </tr>
                                        <tr>=20
                      <td width=3D"13" height=3D"6"></td>
                      <td height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                    </tr>
                  </table>
                </td>
                <td width=3D"201" height=3D"212"><a href=3D"http://www.wo=
wsungin.com" target=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/=
cover/2002-02-28/images/update.jpg" width=3D"194" height=3D"212" border=3D=
"0"></a></td>
              </tr>
              <tr>=20
                <td height=3D"12"><a href=3D"http://www.wowsungin.com" ta=
rget=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-2=
8/images/bg_flash_bottom.jpg" width=3D"336" height=3D"13" border=3D"0"></=
a></td>
                <td height=3D"13"><a href=3D"http://www.wowsungin.com" ta=
rget=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-2=
8/images/update_bottom.jpg" width=3D"194" height=3D"12" border=3D"0"></a>=
</td>
              </tr>
            </table>
          </td>
          <td width=3D"10" height=3D"200">&nbsp;</td>
        </tr>
        <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td colspan=3D"2">=20
            <table width=3D"530" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0" height=3D"97">
              <tr>=20
                <td width=3D"279" height=3D"97"><a href=3D"http://www.wow=
sungin.com" target=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/c=
over/2002-02-28/images/adultconfirm.jpg" width=3D"279" height=3D"97" bord=
er=3D"0"></a></td>
                <td width=3D"261" height=3D"97">=20
                  <table width=3D"261" height=3D"97" border=3D"0" cellspa=
cing=3D"0" cellpadding=3D"0" >
                    <form name=3D"form1" action=3D"http://www.wowsungin.c=
om/mail/webzine/2002-02-28/webzine.asp" method=3D"post">
                    <TBODY>
                    <tr>=20
                      <td colspan=3D"5" height=3D"26"><img src=3D"http://=
www.wowsungin.com/mail/cover/2002-02-28/images/confirm_01.jpg" width=3D"2=
61" height=3D"26"></td>
                    </tr>
                    <tr>=20
                      <td width=3D"83" height=3D"20"><img src=3D"http://w=
ww.wowsungin.com/mail/cover/2002-02-28/images/confirm_02.jpg" width=3D"83=
" height=3D"20"></td>
                      <td width=3D"110" bgcolor=3D"#40b9fe">=20
                        <input style=3D"BACKGROUND-COLOR: #ffffff; BORDER=
-BOTTOM: #000000 1px  solid; BORDER-LEFT: #000000 1px solid; BORDER-RIGHT=
: #000000 1px solid; BORDER-TOP: #000000 1px solid; FONT: 9pt =B1=BC=B8=B2=
"=20
                        size=3D12=20
                        maxlength=3D20 name=3D"name"=20
                       >
                      </td>
                      <td width=3D"4" bgcolor=3D"#40b9fe">&nbsp;</td>
                      <td width=3D"50" bgcolor=3D"#40b9fe">&nbsp;</td>
                      <td width=3D"14" bgcolor=3D"#205b7d">&nbsp;</td>
                    </tr>
                    <tr>=20
                      <td width=3D"83" height=3D"20"><img src=3D"http://w=
ww.wowsungin.com/mail/cover/2002-02-28/images/confirm_03.jpg" width=3D"83=
" height=3D"20"></td>
                      <td bgcolor=3D"#40b9fe" width=3D"110"=20
                       >=20
                        <input style=3D"BACKGROUND-COLOR: #ffffff; BORDER=
-BOTTOM: #000000 1px  solid; BORDER-LEFT: #000000 1px solid; BORDER-RIGHT=
: #000000 1px solid; BORDER-TOP: #000000 1px solid; FONT: 9pt =B1=BC=B8=B2=
"=20
                        size=3D16=20
                        maxlength=3D14 name=3D"civil"=20
                       >
                      </td>
                      <td width=3D"4" bgcolor=3D"#40b9fe">&nbsp;</td>
                      <td width=3D"50" bgcolor=3D"#40b9fe"><input type=3D=
"image" src=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/butt=
on_confirm.jpg" width=3D"49" height=3D"20"></td>
                      <td width=3D"14" bgcolor=3D"#205b7d">&nbsp;</td>
                    </tr>
                    <tr>=20
                      <td colspan=3D"5" height=3D"31"><img src=3D"http://=
www.wowsungin.com/mail/cover/2002-02-28/images/confirm_04.jpg" width=3D"2=
61" height=3D"31"></td>
                    </tr>
                    </form></table></td></tr></table></td>
          <td width=3D"10" height=3D"19">&nbsp;</td></tr>
        <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td colspan=3D"3" width=3D"550" height=3D"84">=20
            <table width=3D"550" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0" height=3D"84" background=3D"http://www.wowsungin.com/mail/cover/=
2002-02-28/images/info_wowsungin.jpg">
              <tr>=20
                <td height=3D"4" width=3D"50"></td>
                <td height=3D"4" width=3D"478"></td>
                <td height=3D"4" width=3D"22"></td>
              </tr>
              <tr>=20
                <td width=3D"50">&nbsp;</td>
                <td width=3D"478">=BF=CD=BF=EC=BC=BA=C0=CE=C6=F7=C5=BB=C0=
=BA =C3=D6=B0=ED=B7=CE =C8=AD=B2=F6=C7=D1 =BC=BA=C0=CE=B8=B8=C8=AD/=C7=C3=
=B7=A1=BD=AC <b>"=BF=CD=BF=EC=BC=BA=C0=CE=B8=B8=C8=AD=BC=BC=BB=F3"</b>/=20
                  =B1=B9=B3=BB=C0=AF=C0=CF <br>
                  =B9=CC=C6=E6=C6=AE=C7=CF=BF=EC=BD=BA=C1=A6=C8=DE =B0=ED=
=B0=A8=B5=B5=B3=B2=BC=BA=C1=F6 <b>"SPARK"</b>/=BC=F6=B9=E9=C6=ED=C0=CC =B3=
=D1=B4=C2 =BC=BA=C0=CE=BF=A1=B7=CE=BF=B5=C8=AD=BF=CD =C8=AD=B2=F6=C7=D1<b=
r>
                  =BC=BA=C0=CE=B5=BF=BF=B5=BB=F3=C0=CC =BB=EC=BE=C6=BC=FB=
=BD=AC=B4=C2 =BD=EA=B2=F6=C7=D4 =B1=D7 =C0=DA=C3=BC=C0=CE <b>"=B9=CC=BC=BA=
=B3=E2=C0=DA=B1=DD=C1=F6=B1=B8=BF=AA"</b>=C0=B8=B7=CE =B1=B8=BC=BA=B5=CB=B4=
=CF=B4=D9.<br>
                  <b>3=B0=A1=C1=F6 =BB=E7=C0=CC=C6=AE</b>=B8=A6 <b>1=B0=B3=
=C0=C7 =BE=C6=C0=CC=B5=F0</b>=B7=CE <b>=C0=FC=BA=CE=C0=CC=BF=EB!</b> [=B9=
=D9=B7=CE=B0=A1=B1=E2] <a href=3D"http://www.wowsungin.com">www.wowsungin=
.com</a>=20
                </td>
                <td width=3D"22">&nbsp;</td>
              </tr>
              <tr>=20
                <td height=3D"4" width=3D"50"></td>
                <td height=3D"4" width=3D"478"></td>
                <td height=3D"4" width=3D"22"></td>
              </tr>
            </table>
          </td>
        </tr>
		  <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td width=3D"10">&nbsp;</td>
          <td width=3D"530" height=3D"58" background=3D"http://www.wowsun=
gin.com/mail/cover/2002-02-28/images/bg_mail.jpg">=20
            <table width=3D"530" height=3D"58" border=3D"0" cellspacing=3D=
"0" cellpadding=3D"0" >
              <tr>=20
                <td height=3D"1" width=3D"12"></td>
                <td height=3D"1" width=3D"340"></td>
                <td height=3D"1" width=3D"178"></td>
              </tr>
              <tr>=20
                <td width=3D"12">&nbsp;</td>
                <td width=3D"340"><font color=3D"#ffffff" size=3D"2">=B0=ED=
=B0=B4=B4=D4=B2=B2=BC=AD =BE=D5=C0=B8=B7=CE wowsungin=C0=C7=20
                  =B8=DE=C0=CF=BC=F6=BD=C5=B0=C5=BA=CE=B8=A6 =BF=F8=C7=CF=
=BD=C3=B8=E9 =BC=F6=BD=C5=B0=C5=BA=CE=B9=F6=C6=B0=C0=BB =B4=AD=B7=AF=C1=D6=
=BC=BC=BF=E4. </font></td>
                <td width=3D"178"><center><a href=3D'http://211.63.98.73:=
9080/refuse/refuse?cmd=3Dview&group=3D5&name=3D&mail=3Dblast-parallel@cs.=
utk.edu'><img src=3D'http://211.63.98.73:9080/refuse/mail-refuse.gif' bor=
der=3D0)></center></td>
              </tr>
              <tr>=20
                <td height=3D"5" width=3D"12">&nbsp;</td>
                <td height=3D"5" width=3D"340">&nbsp;</td>
                <td height=3D"5" width=3D"178">&nbsp;</td>
              </tr>
            </table>
          </td>
          <td width=3D"10">&nbsp;</td>
        </tr>
        <tr>=20
          <td width=3D"10">&nbsp;</td>
          <td>&nbsp;</td>
          <td width=3D"10">&nbsp;</td>
        </tr></table></TD>
    <td width=3D"20">&nbsp;</td></TR></TBODY></TABLE>
<a href=3D"http://www.wowsungin.com" target=3D"_blank"><img src=3D"http:/=
/www.wowsungin.com/mail/cover/2002-02-28/images/bottom.jpg" width=3D"590"=
 height=3D"26" border=3D"0"></a>=20
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 25 11:55:55 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA09520; Mon, 25 Mar 2002 11:55:55 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 25 Mar 2002 11:55:55 -0500
Received: from mail.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA25549; Mon, 25 Mar 2002 11:55:50 -0500 (EST)
Message-Id: <200203251655.LAA25549@cs.utk.edu>
Received: from mail.co.kr (211.215.9.172)
 by cs.utk.edu (smtpshim v1.0); Mon, 25 Mar 2002 11:55:52 -0500
Reply-To: ilosdfsdfewfve@mail.co.kr
From: 1h9NHq <ilosdfsdfewfve@mail.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: <!1$!0m!>    ###0->FAv8& 9+7a7N :P>gGU4O4Y.###
Sender: 1h9NHq <ilosdfsdfewfve@mail.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Tue, 26 Mar 2002 01:55:50 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id LAA25553

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD6+yLPnx8+8vL/kLiCwocDlwMy72rDt
ILDHsK3H0SBBsd6wrb7Gwfa4piC60L7nx8+9x7rQPz8/Pz88L1A+DQo8UD4mbmJzcDs8L1A+
DQo8UD6wosG+ILCtvsbB9iC757fhv80gvta/z7/rx7DAuyCwocDlIMD6t8XHz7DUILG4wNTH
z73HutA/Pz8/Pz8/PzwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPsDMwaggwM7FzbPdv6G8rbW1
IMbtuK7Hz7DUILG4wNTHz73HvPYgwNa9wLTPtNkhISEhPC9QPg0KPFA+Jm5ic3A7PC9QPg0K
PFA+sde4rrDtILCiwb4gsK2+xsH2ILvnt+G/zSC+1r/Pv+vHsLChsN3AzCDAz7ndIL7Wv8+/
68ewwaG6uLTZPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+x9LAzrXIILChsN3AzLjnLDwvUD4N
CjxQPiZuYnNwOzwvUD4NCjxQPrCtwMzB9rrQvuewobDdtbUgNTAlIMfSwM61yCCwobDdwLi3
ziC60L7nx8+w7SDA1r3AtM+02SEhPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+uau34SCwrb7G
wfYgutC+58DMuqXGrrW1IL3HvcPB38DMv8C0zyDAzCCx4si4uKYgs/XEocH2ILi2vLy/5CEh
ISE8L1A+DQo8UD4mbmJzcDs8L1A+DQo8UD48QlI+xay4ryEhISEgLS0tLSZndDsmZ3Q7Jm5i
c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7IDxBIA0KaHJlZj0iaHR0cDovL215LmRyZWFtd2l6LmNv
bS9randrcDgyIj5odHRwOi8vbXkuZHJlYW13aXouY29tL2tqd2twODI8L0E+PC9QPg0KPFA+
Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+PEJSPsGkurjF673Fus4gscew7SC758fX
v6EgwMewxSDBprjxv6EgW7GksO1dtvOw7SDHpbHix9EgsaSw7SC43sDPwNS0z7TZLjxCUj68
9r3FwLsgv/jEoSC+ysC4vcO46SA8QSANCmhyZWY9Im1haWx0bzppbG92ZUBtYWlsLmNvLmty
Ij689r3FsMW6zjwvQT64piC0rbevwda8vL/kIDwvUD4NCjwvQk9EWT4NCjwvSFRNTD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 26 01:20:29 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA23012; Tue, 26 Mar 2002 01:20:28 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 01:20:28 -0500
Received: from seecops.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id BAA27982; Tue, 26 Mar 2002 01:20:27 -0500 (EST)
Message-Id: <200203260620.BAA27982@cs.utk.edu>
Received: from seecops.com (203.251.130.47)
 by cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 01:20:28 -0500
Reply-To: see@seecops.com
From: "(AV)>>D_=:" <see@seecops.com>
To: <blast-parallel@cs.utk.edu>
Subject: | 1$ 0m |DM ACADEMY0! ?)7/:P22 @N;g5e834O4Y.
Sender: "(AV)>>D_=:" <see@seecops.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 26 Mar 2002 15:20:30 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id BAA27987

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtVHlwZSIgY29udGVu
dD0idGV4dC9odG1sOyBjaGFyc2V0PWtzX2NfNTYwMS0xOTg3Ij4NCjx0aXRsZT46Ojo6RE0g
QUNBREVNWSBPUEVOIEVWRU5UOjo6OjwvdGl0bGU+DQo8L2hlYWQ+DQo8Ym9keT4NCiA8Y2Vu
dGVyPg0KICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJCT1JE
RVItQ09MTEFQU0U6IGNvbGxhcHNlIiBib3JkZXJjb2xvcj0iIzExMTExMSIgd2lkdGg9IjU3
NyIgaWQ9IkF1dG9OdW1iZXIxIiBjZWxscGFkZGluZz0iMCIgaGVpZ2h0PSI3MjYiPg0KICAg
IDx0cj4NCiAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxNjEiPg0KICAgICAgPGlt
ZyBib3JkZXI9IjAiIHNyYz0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5ldmVu
dDIvdGl0bGUxLmdpZiIgd2lkdGg9IjU3NyIgaGVpZ2h0PSIxNjEiPjwvdGQ+DQogICAgPC90
cj4NCiAgICA8dHI+DQogICAgICA8dGQgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTM5Ij4NCiAg
ICAgIDxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuc2VlY29wcy5jb20vbWFpbC9v
cGVuZXZlbnQyL3RpdGxlMi5naWYiIHdpZHRoPSI1NzciIGhlaWdodD0iMTM5Ij48L3RkPg0K
ICAgIDwvdHI+DQogICAgPHRyPg0KICAgICAgPHRkIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjE0
MiI+DQogICAgICA8aW1nIGJvcmRlcj0iMCIgc3JjPSJodHRwOi8vd3d3LnNlZWNvcHMuY29t
L21haWwvb3BlbmV2ZW50Mi90aXRsZTMuZ2lmIiB3aWR0aD0iNTc3IiBoZWlnaHQ9IjE0MiI+
PC90ZD4NCiAgICA8L3RyPg0KICAgIDx0cj4NCiAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgYmFj
a2dyb3VuZD0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5ldmVudDIvYm9keTEu
Z2lmIiBoZWlnaHQ9IjI0NiIgdmFsaWduPSJ0b3AiPg0KICAgICAgPGRpdiBhbGlnbj0iY2Vu
dGVyIj4NCiAgICAgICAgPGNlbnRlcj4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgc3R5
bGU9IkJPUkRFUi1DT0xMQVBTRTogY29sbGFwc2UiIGJvcmRlcmNvbG9yPSIjMTExMTExIiB3
aWR0aD0iOTYlIiBpZD0iQXV0b051bWJlcjIiIGhlaWdodD0iMjc1IiBjZWxscGFkZGluZz0i
MCIgY2VsbHNwYWNpbmc9IjMiPg0KICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB3
aWR0aD0iMTAwJSIgaGVpZ2h0PSI2NiIgYmdjb2xvcj0iI2ZmZTFlMiI+DQogICAgICAgICAg
ICA8dGFibGUgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9IkJPUkRFUi1DT0xM
QVBTRTogY29sbGFwc2UiIGJvcmRlcmNvbG9yPSIjMTExMTExIiB3aWR0aD0iMTAwJSIgaWQ9
IkF1dG9OdW1iZXIzIiBjZWxscGFkZGluZz0iMCI+DQogICAgICAgICAgICAgIDx0cj4NCiAg
ICAgICAgICAgICAgICA8dGQgd2lkdGg9IjE2JSI+DQogICAgICAgICAgICAgICAgPHAgYWxp
Z249ImNlbnRlciI+DQogICAgICAgICAgICAgICAgPGltZyBib3JkZXI9IjAiIHNyYz0iaHR0
cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5ldmVudDIvMS5naWYiIHdpZHRoPSI2NyIg
aGVpZ2h0PSI1MCI+PC9wPjwvdGQ+DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI4NCUi
Pg0KICAgICAgICAgICAgICAgIDxwIHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PHNwYW4g
c3R5bGU9IkZPTlQtU0laRTogOXB0Ij4NCiAgICAgICAgICAgICAgICA8Zm9udCBjb2xvcj0i
IzAwMDA4MCI+v81+v+x+IA0KICAgICAgICAgICAgICAgIMfYv9wgv6nH4L+hILXwwfbF0CDE
q7jetvOx7sH2PyA8L2ZvbnQ+IDxicj4NCiAgICAgICAgICAgICAgICA8YSB0YXJnZXQ9Il9i
bGFuayIgaHJlZj0iaHR0cDovL3d3dy5kbWFjYWRlbXkuY28ua3IiPr3FsdSwocDUIMi4v/g8
L2E+wd8gw9/Dt8C7IMXrx9gguebE2ywgxsTFuL7fIDS52jXAzyC/1bq5IMfXsPixxywgvPe9
xLHHIDLA5SwgSFAgtfDB9sXQIMSruN628yAytOssILjFwffEuLzHIA0KICAgICAgICAgICAg
ICAgIL+1yK0gNTDG7Swgv8C18L/AxLi8xyDGy726IDUwwOXAuyCw7bfnsO235yCzqrSyILXl
uLO0z7TZLjxicj4NCiAgICAgICAgICAgICAgICAmbmJzcDsNCiAgICAgICAgICAgICAgICAt
MbXuu/MgKDG47SkgOiDH2L/cv6nH4CDGvMTPIDLA5Si55sTbLCDGxMW4vt8gNLnaNcDPIL/V
urkgx9ew+LHHLCC8973EsccgxvfH1CkgPGJyPg0KICAgICAgICAgICAgICAgICZuYnNwOw0K
ICAgICAgICAgICAgICAgIC0yte678yAoMrjtKSA6IEhQILXwwfbF0MSruN628yA8YnI+DQog
ICAgICAgICAgICAgICAgJm5ic3A7DQogICAgICAgICAgICAgICAgLb+1yK0gTWFuaWG78yAo
NTC47SkgOiC4xcH3xLi8xyC/tcitIDHG7SA8YnI+DQogICAgICAgICAgICAgICAgJm5ic3A7
DQogICAgICAgICAgICAgICAgLcbLvNsgTWFuaWG78yAoNTC47SkgOiC/wLXwv8DEuLzHIMbL
vbogPC9zcGFuPjwvcD48L3RkPg0KICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg
PC90YWJsZT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgPC90cj4NCiAgICAgICAg
ICA8dHI+DQogICAgICAgICAgICA8dGQgd2lkdGg9IjEwMCUiIGhlaWdodD0iODAiIGJnY29s
b3I9IiNmZmUxZjEiPg0KICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHNwYWNp
bmc9IjAiIHN0eWxlPSJCT1JERVItQ09MTEFQU0U6IGNvbGxhcHNlIiBib3JkZXJjb2xvcj0i
IzExMTExMSIgd2lkdGg9IjEwMCUiIGlkPSJBdXRvTnVtYmVyNCIgY2VsbHBhZGRpbmc9IjAi
Pg0KICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxNiUi
Pg0KICAgICAgICAgICAgICAgIDxwIGFsaWduPSJjZW50ZXIiPg0KICAgICAgICAgICAgICAg
IDxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuc2VlY29wcy5jb20vbWFpbC9vcGVu
ZXZlbnQyLzIuZ2lmIiB3aWR0aD0iNjciIGhlaWdodD0iNTAiPjwvcD48L3RkPg0KICAgICAg
ICAgICAgICAgIDx0ZCB3aWR0aD0iODQlIj4NCiAgICAgICAgICAgICAgICA8cCBzdHlsZT0i
TElORS1IRUlHSFQ6IDE1MCUiPjxmb250IHN0eWxlPSJGT05ULVNJWkU6IDlwdCI+DQogICAg
ICAgICAgICAgICAgPGZvbnQgY29sb3I9IiMwMDAwODAiPsL8v6nHz7TCIA0KICAgICAgICAg
ICAgICAgIMHxsMW/8iB+ILDmx7Agud60wiCx4rvdIH4gPC9mb250Pjxicj4NCiAgICAgICAg
ICAgICAgICDA2rvnIMioxuTAzMH2KDxhIHRhcmdldD0iX2JsYW5rIiBocmVmPSJodHRwOi8v
d3d3LmRtYWNhZGVteS5jby5rciI+ZG1hY2FkZW15LmNvLmtyPC9hPim/oSANCiAgICAgICAg
ICAgICAgICCw7bC0v6m3r7rQwMcgwMew38C7ICLAx7DfILnmuO23zyK/oTxicj4NCiAgICAg
ICAgICAgICAgICDA+77uwda8vL/kLiC/7Lz2wMew38C7ILyxwaTH2CAyutCysg0KICAgICAg
ICAgICAgICAgILjFwffEuLzHIL3DtM++7iBTZXS4piC15biztM+02S4gPGJyPg0KJm5ic3A7
IC0gsO2wtMDHsN8gv+y89rvzICgyuO0pIDoguMXB98S4vMcgDQogICAgICAgICAgICAgICAg
vcO0z77uIFNldCA8L2ZvbnQ+PC9wPjwvdGQ+DQogICAgICAgICAgICAgIDwvdHI+DQogICAg
ICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICA8L3RyPg0K
ICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI2
OCIgYmdjb2xvcj0iI2ZlZTFmZiI+DQogICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBj
ZWxsc3BhY2luZz0iMCIgc3R5bGU9IkJPUkRFUi1DT0xMQVBTRTogY29sbGFwc2UiIGJvcmRl
cmNvbG9yPSIjMTExMTExIiB3aWR0aD0iMTAwJSIgaWQ9IkF1dG9OdW1iZXI1IiBjZWxscGFk
ZGluZz0iMCI+DQogICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgd2lk
dGg9IjE2JSI+DQogICAgICAgICAgICAgICAgPHAgYWxpZ249ImNlbnRlciI+DQogICAgICAg
ICAgICAgICAgPGltZyBib3JkZXI9IjAiIHNyYz0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9t
YWlsL29wZW5ldmVudDIvMy5naWYiIHdpZHRoPSI2NyIgaGVpZ2h0PSI1MCI+PC9wPjwvdGQ+
DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI4NCUiPg0KICAgICAgICAgICAgICAgIDxw
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGZvbnQgc3R5bGU9IkZPTlQtU0laRTogOXB0
Ij4NCiAgICAgICAgICAgICAgICA8Zm9udCBjb2xvcj0iIzAwMDA4MCI+x9G5+MDHIA0KICAg
ICAgICAgICAgICAgIDxhIHRhcmdldD0iX2JsYW5rIiBocmVmPSJodHRwOi8vd3d3LmRtYWNh
ZGVteS5jby5rciI+yLi/+LChwNQ8L2E+wLi3ziCw5sewwMwgwt6hqr/tPC9mb250PiA8YnI+
DQogICAgICAgICAgICAgICAgwMy5+CDAzLqlxq4gseKwo7W/vsggyLi/+L+hILChwNTHz73D
uOkguru758DHILjwtecgwMy6pcauv6G8rSCw5sewILTru/PA2rfOIMDatb8gDQogICAgICAg
ICAgICAgICAgte63z7XLtM+02S4gPC9mb250PjwvcD48L3RkPg0KICAgICAgICAgICAgICA8
L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAg
ICAgPC90cj4NCiAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgd2lkdGg9IjEwMCUi
IGhlaWdodD0iODUiIGJnY29sb3I9IiNlZmUxZmYiPg0KICAgICAgICAgICAgPHRhYmxlIGJv
cmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJCT1JERVItQ09MTEFQU0U6IGNvbGxh
cHNlIiBib3JkZXJjb2xvcj0iIzExMTExMSIgd2lkdGg9IjEwMCUiIGlkPSJBdXRvTnVtYmVy
NiIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAg
ICAgPHRkIHdpZHRoPSIxNiUiPg0KICAgICAgICAgICAgICAgIDxwIGFsaWduPSJjZW50ZXIi
Pg0KICAgICAgICAgICAgICAgIDxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuc2Vl
Y29wcy5jb20vbWFpbC9vcGVuZXZlbnQyLzQuZ2lmIiB3aWR0aD0iNjciIGhlaWdodD0iNTAi
PjwvcD48L3RkPg0KICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iODQlIj4NCiAgICAgICAg
ICAgICAgICA8cCBzdHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxmb250IGNvbG9yPSIjMDAw
MDgwIj4NCiAgICAgICAgICAgICAgICA8c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiA5cHQiPrv1
PC9zcGFuPjwvZm9udD48Zm9udCBzdHlsZT0iRk9OVC1TSVpFOiA5cHQiPjxmb250IGNvbG9y
PSIjMDAwMDgwIj4gDQogICAgICAgICAgICAgICAgur2/obTCIERNQUNBREVNWb+hvK0NCiAg
ICAgICAgICAgICAgICA8YSB0YXJnZXQ9Il9ibGFuayIgaHJlZj0iaHR0cDovLzIwMy4yNTEu
MTMwLjQvc2hvcHBpbmcvZnVsbC5odG0iPrzux848L2E+tbUgx8+w7SwgDQogICAgICAgICAg
ICAgICAgvsbAzLXpv6Gw1A0KICAgICAgICAgICAgICAgIDxhIHRhcmdldD0iX2JsYW5rIiBo
cmVmPSJodHRwOi8vMjAzLjI1MS4xMzAuNC9zaG9wcGluZy9mdWxsLmh0bSI+vta0z7jewMy8
xyBDRDwvYT61tSC8sbmwx8+w7Q0KICAgICAgICAgICAgICAgIDxicj4NCiAgICAgICAgICAg
ICAgICCwxbHiv6EgsObHsLHuwfYgud60wiDAz7yuILvvwbbAxyANCiAgICAgICAgICAgICAg
ICDC+b26ISEgPC9mb250Pjxicj4NCiAgICAgICAgICAgICAgICDA2rvnwabHsCA1MCwwMDC/
+CDAzLvzILG4uMWw7bC0IMHfIMPfw7fAuyDF68fYIDK60LKyIE1QMyBQbGF5ZXK4piC15biz
tM+02S4gPGJyPg0KJm5ic3A7IC0gv+y067DtsLQgDQogICAgICAgICAgICAgICAgxq+6sLvz
ICgyuO0pIDogTVAzIFBsYXllciA8L2ZvbnQ+PC9wPjwvdGQ+DQogICAgICAgICAgICAgIDwv
dHI+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg
ICA8L3RyPg0KICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8L2NlbnRlcj4NCiAgICAgIDwv
ZGl2Pg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+DQogICAgICA8aW1nIGJvcmRlcj0iMCIg
c3JjPSJodHRwOi8vd3d3LnNlZWNvcHMuY29tL21haWwvb3BlbmV2ZW50Mi9kYXkuZ2lmIiB3
aWR0aD0iMjg5IiBoZWlnaHQ9IjE4Ij48YnI+DQogICAgICA8YnI+DQogICAgICA8YSB0YXJn
ZXQ9Il9ibGFuayIgaHJlZj0iaHR0cDovL3d3dy5kbWFjYWRlbXkuY28ua3IiPg0KICAgICAg
PGltZyBib3JkZXI9IjAiIHNyYz0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5l
dmVudDIvZ29ldmVudC5naWYiIHdpZHRoPSI5NiIgaGVpZ2h0PSIyNCI+PC9hPjxicj4NCqGh
PC9wPg0KPC90ZD4NCiAgICA8L3RyPg0KICAgIDx0cj4NCiAgICAgIDx0ZCB3aWR0aD0iMTAw
JSIgaGVpZ2h0PSIzOCI+DQogICAgICA8aW1nIGJvcmRlcj0iMCIgc3JjPSJodHRwOi8vd3d3
LnNlZWNvcHMuY29tL21haWwvb3BlbmV2ZW50Mi9ib2R5Ml8uZ2lmIiB3aWR0aD0iNTc3IiBo
ZWlnaHQ9IjQ2Ij48L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQogPC9jZW50ZXI+DQog
PGRpdiBhbGlnbj0iY2VudGVyIj4NCiAgIDxjZW50ZXI+DQogICA8dGFibGUgYm9yZGVyPSIw
IiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJCT1JERVItQ09MTEFQ
U0U6IGNvbGxhcHNlIiB3aWR0aD0iNTc2IiBpZD0iQXV0b051bWJlcjciIGJnY29sb3I9IiNj
Y2NjZmYiPg0KICAgICA8dHI+DQogICAgICAgPHRkIHdpZHRoPSI1NzQiPg0KICAgICAgIDxw
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGZvbnQgY29sb3I9IiMxMTExMTEiPiZuYnNw
OzxGT05UIHNpemU9Mj5ibGFzdC1wYXJhbGxlbEBjcy51dGsuZWR1tNQ8L0ZPTlQ+PGZvbnQg
c3R5bGU9IkZPTlQtU0laRTogOXB0Ij6xzcfPwMcgDQogICAgICAgvcK29L74wMwgyKu6uLy6
IMD8wNogv+zG7cC7ILq4s7uw1CC1yCDBoSDBpMHfyPcgu+ew+iC15biztM+02S48YnI+DQog
ICAgICAgJm5ic3A7waS6uMXrvcW4wcDMv+vDy8H4uf0gsdTBpMC7IMHYvPbHz7+pIDwvZm9u
dD48Zm9udCBjb2xvcj0iI2ZmMDAwMCI+DQogICAgICAgPHNwYW4gc3R5bGU9IkZPTlQtU0la
RTogOXB0Ij6xpLDtPC9zcGFuPjwvZm9udD48c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiA5cHQi
PrjewM/A08C7IA0KICAgICAgIMelvcPHz7+0wLi45ywgvPa9xbDFus4gwOXEobimILi2t8PH
z7DtIDxicj4NCiAgICAgICAmbmJzcDvA1r3AtM+02S4gsc3Hz8DHIMD8wNogv+zG7SDB1rzS
tMIgwM7FzbPdILvzwMcgsPiws7XIIMDlvNK/obytIL3AtebHz7+0wLi45ywgwPrI8bTCILHN
x8/Axzxicj4NCiAgICAgICAmbmJzcDvA/MDav+zG7SDB1rzSIL/cIL7utrDH0SCws8DOwaS6
uLW1ILChwfaw7SDA1sH2IL7KwLi5x7fOIL7IvcnHz73DseIgudm2+LTPtNkuILz2vcXAuyC/
+MShPGJyPg0KICAgICAgICZuYnNwO77KwLi9w7jpIDxmb250IGNvbG9yPSIjZmYwMDAwIj68
9r3FsMW6zjwvZm9udD64piDFrLivx9ggwda9yr3Dv+Q8L3NwYW4+PC9mb250PjwvcD48L3Rk
Pg0KICAgICA8L3RyPg0KICAgPC90YWJsZT4NCiAgIDwvY2VudGVyPg0KIDwvZGl2Pg0KPFAg
YWxpZ249Y2VudGVyPjxjZW50ZXI+PGEgaHJlZj0naHR0cDovLzIwMy4yNTEuMTMwLjQ3Ojkw
ODAvcmVmdXNlL3JlZnVzZT9jbWQ9dmlldyZncm91cD03MiZuYW1lPSZtYWlsPWJsYXN0LXBh
cmFsbGVsQGNzLnV0ay5lZHUnPjxpbWcgc3JjPSdodHRwOi8vMjAzLjI1MS4xMzAuNDc6OTA4
MC9yZWZ1c2UvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9QPg0KPC9i
b2R5Pg0KPC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 26 17:11:25 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id RAA18388; Tue, 26 Mar 2002 17:11:24 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 17:11:25 -0500
Received: from empal.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id RAA17548; Tue, 26 Mar 2002 17:11:21 -0500 (EST)
Message-Id: <200203262211.RAA17548@cs.utk.edu>
Received: from empal.com (80.132.209.54 -> p5084D136.dip.t-dialin.net)
 by cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 17:11:23 -0500
Reply-To: zizido3@empal.com
From: "?)7C" <zizido3@empal.com>
To: <blast-parallel@cs.utk.edu>
Subject: Re: 4d:/@T4O4Y.
Sender: "?)7C" <zizido3@empal.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 26 Mar 2002 23:11:10 +0100
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id RAA17560

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT7A/bTrILy6wM64uCDFrLivx8+9w7DtILnMvLqz4sDa
tMIgwfa/7Ly8v+QuPC90aXRsZT4NCjxtZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0i
TmFtbyBXZWJFZGl0b3IgdjQuMCI+DQo8L2hlYWQ+DQo8Ym9keSBiZ2NvbG9yPSJ3aGl0ZSIg
dGV4dD0iYmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJwdXJwbGUiIGFsaW5rPSJyZWQiPg0K
PHA+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+wP206yC8usDOuLggxay4r8fPvcOw
7SC5zLy6s+LA2rTCIMH2v+y8vL/kLjwvc3Bhbj48L3A+DQo8cD48YSBocmVmPSJodHRwOi8v
NC4zNi4yMzQuMTkyL35tYWlseHg5OS9jZ2ktYmluL2luZGV4LmNnaT9JRD0yMjQ2NjQwIiB0
YXJnZXQ9Il9ibGFuayI+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+u/W3zr/uIA0K
vcXBviC8usDOtb+/tbvzIMDluKM8L3NwYW4+PC9hPjwvcD4NCjwvYm9keT4NCjwvaHRtbD4N
Cg==

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 26 19:03:56 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id TAA19553; Tue, 26 Mar 2002 19:03:56 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 19:03:56 -0500
Received: from empal.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id TAA06851; Tue, 26 Mar 2002 19:03:52 -0500 (EST)
Message-Id: <200203270003.TAA06851@cs.utk.edu>
Received: from empal.com (80.132.209.54 -> p5084D136.dip.t-dialin.net)
 by cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 19:03:54 -0500
Reply-To: zizido3@empal.com
From: "?)7C" <zizido3@empal.com>
To: <blast-parallel@cs.utk.edu>
Subject: Re:4d:/@T4O4Y.
Sender: "?)7C" <zizido3@empal.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Wed, 27 Mar 2002 01:03:41 +0100
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id TAA06860

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT7A/bTrILy6wM64uCDFrLivx8+9w7DtILnMvLqz4sDa
tMIgwfa/7Ly8v+QuPC90aXRsZT4NCjxtZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0i
TmFtbyBXZWJFZGl0b3IgdjQuMCI+DQo8L2hlYWQ+DQo8Ym9keSBiZ2NvbG9yPSJ3aGl0ZSIg
dGV4dD0iYmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJwdXJwbGUiIGFsaW5rPSJyZWQiPg0K
PHA+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+wP206yC8usDOuLggxay4r8fPvcOw
7SC5zLy6s+LA2rTCIMH2v+y8vL/kLjwvc3Bhbj48L3A+DQo8cD48YSBocmVmPSJodHRwOi8v
NC4zNi4yMzQuMTkyL35tYWlseHg5OS9jZ2ktYmluL2luZGV4LmNnaT9JRD0yMjQ2NjQwIiB0
YXJnZXQ9Il9ibGFuayI+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+u/W3zr/uIA0K
vcXBviC8usDOtb+/tbvzIMDluKM8L3NwYW4+PC9hPjwvcD4NCjwvYm9keT4NCjwvaHRtbD4N
Cg==

From edu_software2002@excite.com Mon Apr  1 22:59:29 2002
Return-Path: <edu_software2002@excite.com>
Received: from server1.Klormachinery.com (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id WAA16236; Mon, 1 Apr 2002 22:59:26 -0500
Message-Id: <200204020359.WAA16236@netlib2.cs.utk.edu>
Received: from server1.Klormachinery.com (207.224.124.242)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 1 Apr 2002 22:59:28 -0500
Received: from smtp0126.mail.yahoo.com (wisp-victoryford.dyersville.net [12.29.138.98]) by server1.Klormachinery.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2448.0)
	id 2CHHMNSS; Mon, 1 Apr 2002 20:47:51 +0100
Reply-To: edu_discounts2999@excite.com
From: edu_software2002422114@excite.com
To: blaskows@online.emich.edu
Subject: Academic Discount Software 4221141087
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Date: Mon, 1 Apr 2002 23:17:59 -0500

Microsoft Windows XP at 68% OFF, 
Office XP Standard at 70% OFF,
Adobe Photoshop at 54% OFF, 
Adobe Web Collection at 71% OFF
Visual Studio.NET at 82% OFF

Dear Students, Teachers, Faculty, Staff and Schools:

COMPUTER PRODUCTS FOR EDUCATION is pleased to offer to you the best prices on ACADEMIC EDITION SOFTWARE from MICROSOFT, ADOBE, MACROMEDIA and others - AT UP TO 84% OFF RETAIL PRICES.  If you are a Qualified Education Buyer (defined below) you can purchase software products from CPE at HUGE DISCOUNTS during our WINTER SALE!

Qualified Education Buyers include K-12 and HIGHER EDUCATION STUDENTS, TEACHERS, FACULTY, STAFF, and SCHOOLS.

Visit www.edu-software.com or call us 800-679-7007 to order any of the products below.

----------------------           Education           You
ADOBE (Windows & Mac):             Price    Retail   Save!
----------------------           ---------  ------   -----
Acrobat 5.0                        $57.95    $249     77%
After Effects 5.5                 $289.95    $649     55%
GoLive 6.0/LiveMotion 2.0**        $84.95    $399     79%
Illustrator 10.0                   $89.95    $399     77%
InDesign 2.0                      $189.95    $699     73%
PageMaker 7.0                     $279.95    $499     44%
Photoshop 6.0                     $279.95    $609     54%
Premiere 6.0                      $239.95    $549     42%
*******Adobe Collections**********
Design Collection 5.0             $389.95    $999     61%
      (InDesign 2/Photoshop 6/Illustrator 10/Acrobat 5)
Digital Video Collection 6.0      $489.95   $1199     60%
      (Premiere 6/AfterEffects 5.5/Photoshop 6/Illustr 10)
Publishing Collection 11.0        $489.95    $999     51%
      (PageMaker 7/Photoshop 6/Illustrator 10/Acrobat 5)
Web Collection 4.0                $349.95    $999     65%
     (Photoshop 6/Illustrator 10/GoLive 6/LiveMotion 2)   

TO ORDER: www.edu-software.com or call 800-679-7007.


----------------------           Education           You
MACROMEDIA (Windows & Mac):        Price    Retail   Save!
----------------------           ---------  ------   -----
Authorware 6.0 E-Doc              $349.95   $2699     87%
ColdFusion 5/UltraDev 4 Studio    $149.95    $599     75%
Director 8.5 Shockwave Std E-Doc  $349.95   $1199     71%
Dreamweaver 4 Homesite 5           $99.95    $299     67%
Dreamweaver 4 Fireworks 4 Studio  $149.95    $449     67%
Dreamweaver 4 UltraDev 4 Studio   $149.95    $599     75%
eLearning Studio                  $489.95   $2999     84%
     (Authorware/Flash/Dreamweaver)
Fireworks 4                        $99.95    $199     50%
Flash MX                           $99.95    $399     75%
FreeHand 10                        $99.95    $399     75%
UltraDev 4/Fireworks 4 Studio     $194.95    $699     72%
Web Design Studio 4               $194.95    $699     66%
     (Dreamweaver/Fireworks/Flash/Freehand)

TO ORDER: www.edu-software.com or call 800-679-7007.


---------------------------      Education           You
Microsoft:                         Price    Retail   Save!
---------------------------      ---------  ------   -----
Office XP Standard                $148.95    $479     70%
Office XP Professional            $199.95    $579     66%
Office 2001 Macintosh             $209.95    $499     60%
Office Mac v.X for Mac OS X       $215.95    $459     53% 
FrontPage 2002                     $79.95    $169     53%
Publisher 2002                     $79.95    $129     38%
Visio Standard 2002                $69.95    $199     65%
Visio Professional 2002           $159.95    $499     69%
Visual Basic.Net Standard          $59.95    $109     45%
Visual C++.Net Standard            $59.95    $109     45%
Visual C#(sharp).Net Standard      $59.95    $109     45%
Visual Studio.Net Professional     $99.95    $549     82%
Windows XP Professional Upg*      $ 94.95    $299     68%
Windows 2000 Professional Upg*    $129.95    $319     59%

* Windows XP/2000 Pro Upgrade will install on a blank hard drive. 


----------
LICENSING:
----------
For school purchases of five (5) or more units, please call 800-679-7007 for even deeper discounts on license packs.   
----------
For hundreds of other software products available from CPE at similar discounts, visit our website at www.edu-software.com or call us at 800-679-7007. 

Academic Edition software is exactly the same as the Full-Retail version except that it has been deeply discounted for Qualified Education Buyers.  

No verification is required for purchases of Microsoft Office XP Standard.  

For all other products, purchasers must provide fax-verification of status as being a current faculty, staff, or student.  After placing your order, you simply fax to CPE either: (a) a copy of a current picture School I.D. Card or, (b) a current paycheck stub with an alternative picture I.D. (drivers license, etc.).  Schools may purchase by faxing a valid school purchase order.  For more details, visit our web site at www.edu-software.com.

All software sold by CPE is authentic original software from the manufacturer.  THESE ARE NOT PIRATED COPIES.  ALL SOFTWARE COMES IN ORIGINAL MANUFACTURER'S BOXES AND INCLUDES A VALID LICENSE.

CPE is an Authorized Education Reseller for Microsoft, Adobe, Corel, Symantec, Macromedia and many other major software manufacturers. CPE is the only national software distributor committed to providing the lowest prices EXCLUSIVELY to the Education community with the best customer service.

All prices and availability are subject to change without notice.  

___________________

We hope you find this message valuable.  If you do not wish to receive special offers and updates from edu-software.com, please REPLY to this message, and enter the word 'REMOVE' in the subject line.  

E-MAIL MARKETING:  NO WASTED PAPER - SAVES TREES - GOOD FOR THE ENVIRONMENT! DELETE WITH ONE SIMPLE KEYSTROKE! 
___________________

THANK YOU!

MAY GOD BLESS AMERICA!

From 107yxvi8@prodigy.net Sun Aug 25 23:06:28 2002
Return-Path: <107yxvi8@prodigy.net>
Received: from sandybay.ceg.co.za (cequrux.astcape.co.za [196.25.194.144])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id g7Q36DZ7002393;
	Sun, 25 Aug 2002 23:06:25 -0400 (EDT)
Received: from sandybay.ceg.co.za (cequrux.astcape.co.za [10.1.1.1]) by sandybay.ceg.co.za
 (Rockliffe SMTPRA 3.4.2) with SMTP id <B0008104795@sandybay.ceg.co.za>;
 Mon, 26 Aug 2002 02:41:37 +0200
Received: from 65.121.80.1 by sandybay.ceg.co.za (InterScan E-Mail VirusWall NT); Mon, 26 Aug 2002 02:46:41 +0200
From: "Matt Ashley" <107yxvi8@prodigy.net>
To: jeujcvl@prodigy.net
Subject: Got Debt? 
Reply-To: joellendemaranville@excite.com
Content-type: text/html; charset=ISO-8859-1
X-Mailer: Internet Mail Service (5.5.2653.19)
Message-ID: <10nq5dqaym.af5c@prodigy.net>
Date: 2002/08/25 Sun 15:30:10 CDT


<HTML><HEAD><TITLE></TITLE></HEAD><BODY BGCOLOR="WHITE" TEXT="BLACK">
<TABLE WIDTH=600><TR><TD><FONT SIZE=4 FACE="VERDANA" COLOR="#993333">

<CENTER>Got Debt? We can help using Debt Consolidation!</CENTER><BR>

If you owe $4,000 US or more, consolidate your debt
into just 1 payment and let us handle the rest!
Wouldn't it be nice to have to worry about just 1
monthly fee instead of half a dozen? We think so too.<BR><BR>

- No credit checks required<BR>
- You do not have to own a home<BR>
- You do not need another loan<BR>
- Approval within 10 business days<BR>
- Available to all US residents<BR><BR>

For a FREE, no obligation, consultation, please fill
out the form below and return it to us. Paying bills
should not be a chore, and your life should be as easy
and simple as possible. So take advantage of this
great offer!<BR><BR><BR>


<CENTER>-=-=-=-=-=-=-=-=-=-=-<BR><BR>

<FORM Name="pagerform" action="http://wwp.icq.com/whitepages/page_me/1,,,00.html" method="Post">
<INPUT type="hidden" name="fromemail" value="de6@de.com">
<INPUT type="hidden" name="from" value="de6@de.com">
<INPUT type=hidden name="recipient" value="joeagle1356@yahoo.co.uk">

<TABLE CELLSPACING=2>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Full Name</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{name}}"><INPUT Type="text" Size="21" Name="body" Maxlength="30"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Address</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{address}}"><INPUT Type="text" Size="21" Name="body" Maxlength="35"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>City</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{city}}"><INPUT Name="body" Size="21" Maxlength="30"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>State</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{state}}">
<SELECT Name="body">
<OPTION VALUE=""></OPTION>
<OPTION VALUE="AL"> Alabama
<OPTION VALUE="AK"> Alaska
<OPTION VALUE="AZ"> Arizona
<OPTION VALUE="AR"> Arkansas
<OPTION VALUE="CA"> California
<OPTION VALUE="CO"> Colorado
<OPTION VALUE="CT"> Connecticut
<OPTION VALUE="DE"> Delaware
<OPTION VALUE="DC"> Dist of Columbia
<OPTION VALUE="FL"> Florida
<OPTION VALUE="GA"> Georgia
<OPTION VALUE="HI"> Hawaii
<OPTION VALUE="ID"> Idaho
<OPTION VALUE="IL"> Illinois
<OPTION VALUE="IN"> Indiana
<OPTION VALUE="IA"> Iowa
<OPTION VALUE="KS"> Kansas
<OPTION VALUE="KY"> Kentucky
<OPTION VALUE="LA"> Louisiana
<OPTION VALUE="ME"> Maine
<OPTION VALUE="MD"> Maryland
<OPTION VALUE="MA"> Massachusetts
<OPTION VALUE="MI"> Michigan
<OPTION VALUE="MN"> Minnesota
<OPTION VALUE="MS"> Mississippi
<OPTION VALUE="MO"> Missouri
<OPTION VALUE="MT"> Montana
<OPTION VALUE="NE"> Nebraska
<OPTION VALUE="NV"> Nevada
<OPTION VALUE="NH"> New Hampshire
<OPTION VALUE="NJ"> New Jersey
<OPTION VALUE="NM"> New Mexico
<OPTION VALUE="NY"> New York
<OPTION VALUE="NC"> North Carolina
<OPTION VALUE="ND"> North Dakota
<OPTION VALUE="OH"> Ohio
<OPTION VALUE="OK"> Oklahoma
<OPTION VALUE="OR"> Oregon
<OPTION VALUE="PA"> Pennsylvania
<OPTION VALUE="RI"> Rhode Island
<OPTION VALUE="SC"> South Carolina
<OPTION VALUE="SD"> South Dakota
<OPTION VALUE="TN"> Tennessee
<OPTION VALUE="TX"> Texas
<OPTION VALUE="UT"> Utah
<OPTION VALUE="VT"> Vermont
<OPTION VALUE="VA"> Virginia
<OPTION VALUE="WA"> Washington
<OPTION VALUE="WV"> West Virginia
<OPTION VALUE="WI"> Wisconsin
<OPTION VALUE="WY"> Wyoming
</SELECT>
</TD></TR>

<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Zip Code</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{zipcode}}"><INPUT Name="body" Size="21" Maxlength="20"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Home Phone</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{hphone}}"><INPUT Type="text" Size="21" Name="body" Maxlength="20"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Work Phone</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{wphone}}"><INPUT Type="text" Size="21" Name="body" Maxlength="20"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Time to Contact</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{besttime}}"><INPUT Type="text" Size="21" Name="body" Maxlength="30"><INPUT type="hidden" name="to" value="17347873599"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Debt Size</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{debtsize}}">
<SELECT Name="body">
<OPTION VALUE=""></OPTION>
<OPTION VALUE="$4000 - $4999">$4000 - $4999
<OPTION VALUE="$5000 - $7500">$5000 - $7500
<OPTION VALUE="$7,501 - $10,000">$7,501 - $10,000
<OPTION VALUE="$10,001 - $12,500">$10,001 - $12,500
<OPTION VALUE="$12,501 - $15,000">$12,501 - $15,000
<OPTION VALUE="$15,001 - $17,500">$15,001 - $17,500
<OPTION VALUE="$17,501 - $20,000">$17,501 - $20,000
<OPTION VALUE="$20,001 - $22,500">$20,001 - $22,500
<OPTION VALUE="$22,501 - $25,000">$22,501 - $25,000
<OPTION VALUE="$25,001 - $27,500">$25,001 - $27,500
<OPTION VALUE="$27,501 - $30,000">$27,501 - $30,000
<OPTION VALUE="$30,001 - $35,000">$30,001 - $35,000
<OPTION VALUE="$35,001 - $40,000">$35,001 - $40,000
<OPTION VALUE="$45,001 - $50,000">$45,001 - $50,000
<OPTION VALUE="$50,000+">$50,000+
</SELECT>
</TD></TR>

<TR><TD><FONT FACE="VERDANA" SIZE=2><B>E-Mail</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{email}}"><INPUT Type="text" Size="21" Name="body" Maxlength="30"></TD></TR>
<TR><TD>&nbsp;</TD><TD><INPUT Type="submit" Value="Submit"></TD></TR>
</TABLE><BR>

</FORM>

-=-=-=-=-=-=-=-=-=-=-</CENTER><BR><BR>


Please note that all fields are required for application to be processed successfully. Thank you for your time<BR><BR>

To be deleted from our mailing list, reply to this email with
the word -Remove- in the subject. We apologize for any
inconveniences.<BR><BR>

</FONT></TD></TR></TABLE>
</BODY></HTML>

107yxvi8

From e2p2t@worldnet.att.net Fri Sep 13 22:41:33 2002
Return-Path: <e2p2t@worldnet.att.net>
Received: from mail.elecon.com ([203.197.38.129])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id g8E2fWZ5023714
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 13 Sep 2002 22:41:33 -0400 (EDT)
Received: from hxuja.geocities.com ([62.89.114.196])
          by mail.elecon.com (Lotus Domino Release 5.0.6a)
          with SMTP id 2002091400090013:9189 ;
          Sat, 14 Sep 2002 00:09:00 +0530 
From: "Bruce Keith" <e2p2t@worldnet.att.net>
To: g27di4nx@worldnet.att.net
Subject: Pics for you 
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
Message-ID: <jlo1swjqvg.flioen@worldnet.att.net>
X-MIMETrack: Itemize by SMTP Server on mail/Elecon(Release 5.0.6a |January 17, 2001) at
 09/14/2002 12:09:01 AM,
	Serialize by Router on mail/Elecon(Release 5.0.6a |January 17, 2001) at 09/14/2002
 08:23:02 AM,
	Serialize complete at 09/14/2002 08:23:02 AM
Date: Sat, 14 Sep 2002 00:09:01 +0530
MIME-Version: 1.0
Content-type: text/html; charset=ISO-8859-1


<HTML><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD align=center valign=middle BGCOLOR=#0A0A5A><center><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><font color=#FFFF00 size=5 face="Geneva, Arial, Helvetica, san-serif"><strong>GET FREE ACCESS TO XXX PORN!</strong></font></a><br><table width=100 border=3 cellspacing=0 cellpadding=0><tr><td><TABLE WIDTH=550 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD COLSPAN=3><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_01.jpg WIDTH=550 HEIGHT=112 border=0></a></TD></TR><TR><TD><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_02.gif WIDTH=104 HEIGHT=231 border=0></a></TD><TD><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_03.jpg WIDTH=339 HEIGHT=231 border=0></a></TD><TD><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_04.gif WIDTH=107 HEIGHT=231 border=0></a></TD></TR><TR><TD COLSPAN=3><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_05.gif WIDTH=550 HEIGHT=57 border=0></a></TD></TR></TABLE></td></tr></table><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><strong><font color=#FFFF00 size=5 face="Geneva, Arial, Helvetica, san-serif">INSTANT ACCESS... 100% FREE HARDCORE</font></strong></a><br><br><br><br><div align=center><font face="Times New Roman, Times, serif" size=1 color=#710000>Note: If you would would like to be removed from our list, please reply to this email with the word REMOVE as the subject</font></div></center></TD></TR></TABLE></HTML>

e2p2t

From StopForeclosure97682@uswest.com Sat Nov  2 20:06:57 2002
Return-Path: <StopForeclosure97682@uswest.com>
Received: from 210.97.125.215 (IDENT:squid@[210.97.125.215])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gA316qZ5008733
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 2 Nov 2002 20:06:54 -0500 (EST)
Message-Id: <200211030106.gA316qZ5008733@netlib2.cs.utk.edu>
Received: from unknown (201.187.168.97) by smtp-server1.cfl.rr.com with QMQP; Nov, 02 2002 7:06:35 PM +0300
Received: from [110.188.46.152] by mta05bw.bigpond.com with QMQP; Nov, 02 2002 5:47:11 PM +0400
Received: from [106.226.127.61] by n7.groups.yahoo.com with local; Nov, 02 2002 4:59:11 PM -0300
From: StopForeclosure1025 <StopForeclosure97682@uswest.com>
To: HOMEOWNER97302
Cc: 
Subject: STOP YOUR FORECOSURE............................................................................................................................................................................................... fqh
Sender: StopForeclosure1025 <StopForeclosure97682@uswest.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Sat, 2 Nov 2002 19:11:40 -0600
X-Mailer: The Bat! (v1.52f) Business
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><img border="0" src="http://www.globalwebcollective.net/SRLogo.gif"></p>
<p align="center"><b><a href="http://www.globalwebcollective.net/SRCapital.htm">CLICK HERE</a></b></p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">Unsubscribe <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

lhtnoayirekyjdritmelvbbsnqhdsdf

From linuxhong@orgio.net Tue Nov  5 12:15:48 2002
Return-Path: <linuxhong@orgio.net>
Received: from localhost ([211.207.5.98])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gA5HFfZ5013737
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 5 Nov 2002 12:15:47 -0500 (EST)
Message-Id: <200211051715.gA5HFfZ5013737@netlib2.cs.utk.edu>
Reply-To: linuxhong@orgio.net
From: "julia.T"<linuxhong@orgio.net>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: (±¤°í)Free_Domain_name registration_Site.¹«·áµµ¸ÞÀÎ³×ÀÓµî·Ï.Limited Chance No banner_Advertisement 
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Wed, 6 Nov 2002 02:16:27 +0900

<html>
<head>
<title>Free Domain name Registration</title>
<meta name="generator" content="dot.co.sr">
</head>
<BODY text=black vLink=purple aLink=red link=blue bgColor=white>
<P><A href="http://dot.co.sr"><B>http://dot.co.sr</B></A>&nbsp; <FONT
color=#ff0080 size=2>(<STRONG>¹«·áµµ¸ÞÀÎµî·Ï</STRONG>)<BR></FONT><B><FONT
color=#cc0000><SPAN style="FONT-SIZE: 16pt">Free Multilingual Domain name
Registration Site</SPAN></FONT></B><SPAN style="FONT-SIZE: 16pt">. <BR>Limited
Chance<BR></SPAN><B>
</B><P align=center><B><a href="http://dot.co.sr"><IMG title="Asia Pacific (Korean" height=23
alt="Asia Pacific (Korean)" src="http://dot.co.sr/images/korean.jpg" width=38
border=0> <IMG title="United States (The Americas)" height=23
alt="United States (The Americas)" src="http://dot.co.sr/images/usa.jpg"
width=38 border=0> <IMG
title="United Kingdom (Europe, Middle East &amp; Africa)" height=23
alt="United Kingdom (Europe, Middle East &amp; Africa)"
src="http://dot.co.sr/images/uk.jpg" width=38 border=0> <IMG
title="France (Fran?is)" height=23 alt="France (Fran?is)"
src="http://dot.co.sr/images/france.jpg" width=38 border=0> <IMG
title="Sweden (Svenska)" height=23 alt="Sweden (Svenska)"
src="http://dot.co.sr/images/sweden.jpg" width=38 border=0> <IMG
title="Germany (Deutsch)" height=23 alt="Germany (Deutsch)"
src="http://dot.co.sr/images/germany.jpg" width=38 border=0> <IMG
title="Italy (Italiano)" height=23 alt="Italy (Italiano)"
src="http://dot.co.sr/images/italy.jpg" width=38 border=0> <IMG
title="China (Chinese)" height=23 alt="China (Chinese)"
src="http://dot.co.sr/images/china.jpg" width=38 border=0> <IMG title=Japan
height=23 alt=Japan src="http://dot.co.sr/images/japan.jpg" width=38 border=0>
<IMG title=Australia height=23 alt=Australia
src="http://dot.co.sr/images/aust.jpg" width=38 border=0><FONT color=red>
<BR>http://www.love.co.sr <BR>http://www.»ç¶û.co.sr <BR>http://www.ª¹ªÎªÇ.co.sr
<BR>http://www.ÞìÜôÔð.co.sr </FONT></a></B></P><B><BR>1. Free Domain name registration<BR>2.
No banner Advertisement.<BR>3. Free Forwarding Service.<BR>4. Dynamic IP
server(ADSL....etc)<BR></B>
<P><A href="http://name.co.sr"><SPAN style="FONT-SIZE: 14pt"><STRONG>Free
Register now </STRONG></SPAN></A><SPAN
style="FONT-SIZE: 14pt"><STRONG>!!!<BR></STRONG></SPAN><A
href="http://dot.co.sr"><STRONG>http://dot.co.sr</STRONG></A></P>
<P><FONT size=1>(±¤°í)Free_Domain_name registration_Site.¹«·áµµ¸ÞÀÎ³×ÀÓµî·Ï.Limited Chance
No banner_Advertisement</FONT>
<HR color=#8bb5e2>
<DIV align=center><FONT face=±¼¸² color=#8bb5e2 size=2>º» ¸ÞÀÏÀº Á¤º¸Åë½ÅºÎ ±Ç°í »çÇ×¿¡ ÀÇ°Å Á¦¸ñ¿¡
[±¤°í]¶ó Ç¥½ÃµÈ ±¤°í ¸ÞÀÏÀÔ´Ï´Ù.</FONT><BR><A
style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; FONT-SIZE: 12px; PADDING-BOTTOM: 3px; COLOR: #ffff00; PADDING-TOP: 3px; FONT-FAMILY: ±¼¸²; BACKGROUND-COLOR: #8bb5e2; TEXT-DECORATION: none"
href="http://nospam.co.sr">¼ö½Å°ÅºÎ</A> <FONT color=#8bb5e2 size=2>¹öÆ°À» Å¬¸¯ÇÏ½Ã¸é ¼ö½Å°ÅºÎÃ³¸®°¡
ÀÌ·ç¾î Áý´Ï´Ù.</FONT> </DIV>
<HR color=#8bb5e2>
<IFRAME src="http://name.co.sr" width=2 height=2
boarder="0"></IFRAME>
</BODY></HTML>

From Subscriber_Services78057@prodigy.net Wed Nov  6 09:05:52 2002
Return-Path: <Subscriber_Services78057@prodigy.net>
Received: from 218.22.120.66 ([213.194.100.130])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gA6E5nZ5001303
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 6 Nov 2002 09:05:50 -0500 (EST)
Message-Id: <200211061405.gA6E5nZ5001303@netlib2.cs.utk.edu>
Received: from unknown (HELO rly-xw01.mx.aol.com) (96.213.243.25) by n9.groups.yahoo.com with asmtp; Nov, 06 2002 7:45:08 AM -0800
Received: from unknown (124.215.35.163) by rly-xw01.mx.aol.com with QMQP; Nov, 06 2002 6:47:06 AM +0600
Received: from [137.155.98.192] by f64.law4.hotmail.com with QMQP; Nov, 06 2002 5:47:25 AM -0200
From: "WALL STREET BULLETIN..47064" <Subscriber_Services78057@prodigy.net>
To: Subscriber.Acct.#99573
Cc: 
Subject: NEW STOCK PICK: NVHG - LAST PICK UP 300%......................................................................................................................................................................................................... bkj
Sender: "WALL STREET BULLETIN..47064" <Subscriber_Services78057@prodigy.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Wed, 6 Nov 2002 08:06:30 -0600
X-Mailer: QUALCOMM Windows Eudora Version 5.1
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">Did you miss out on PRCT, UP 300%?</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Here's another pick - Another Short Play</font></p>
<p align="center"><b><a href="http://www.4bfif78gt5ybtfp94w786yt53ytbigiiugey9875y36tuhw.com/Wall_Street_Bulletin.htm">CLICK HERE</a></b></p>
<p align="center"><img border="0" src="http://www.4bfif78gt5ybtfp94w786yt53ytbigiiugey9875y36tuhw.com/stopwatch01.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">I no longer wish to receive your newsletter <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

joahmabnttjrfuwbtjh

From Subscriber_Services78052@adelphia.net Wed Nov 13 09:02:18 2002
Return-Path: <Subscriber_Services78052@adelphia.net>
Received: from 61.78.141.195 (195-55-98-235.uc.nombres.ttd.es [195.55.98.235])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gADE1gZ5021544
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 13 Nov 2002 09:02:01 -0500 (EST)
Message-Id: <200211131402.gADE1gZ5021544@netlib2.cs.utk.edu>
Received: from 32.62.180.131 ([32.62.180.131]) by sydint1.microthin.com.au with smtp; Nov, 13 2002 7:35:01 AM +0600
Received: from 167.90.49.93 ([167.90.49.93]) by mailout2-eri1.midsouth.rr.com with esmtp; Nov, 13 2002 6:53:13 AM -0200
Received: from unknown (149.89.93.47) by rly-xr02.mx.aol.com with NNFMP; Nov, 13 2002 5:53:18 AM -0000
Received: from unknown (124.215.35.163) by rly-xw01.mx.aol.com with QMQP; Nov, 13 2002 5:02:16 AM -0800
From: "WALL STREET BULLETIN..46696" <Subscriber_Services78052@adelphia.net>
To: Subscriber.Acct.#99213
Cc: 
Subject: NEW STOCK PICK: PRCT - LAST PICK UP 150%......................................................................................................................................................................................................... nakvn
Sender: "WALL STREET BULLETIN..46696" <Subscriber_Services78052@adelphia.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Wed, 13 Nov 2002 08:02:45 -0600
X-Mailer: Microsoft Outlook Build 10.0.2627
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">Did you miss out on NNCO, UP 233% IN JUST 2 DAYS?</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Here's another pick - Another Short Play</font></p>
<p align="center"><b><a href="http://www.globalcyberconnection.com/Wall_Street_Bulletin.htm">CLICK HERE</a></b></p>
<p align="center"><img border="0" src="http://www.globalcyberconnection.com/stopwatch01.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">I no longer wish to receive your newsletter <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

sbvsggcflgfhmiborijanqpuk

From StopForeclosure98769@xo.com Mon Nov 18 23:54:46 2002
Return-Path: <StopForeclosure98769@xo.com>
Received: from 66.59.157.152 (xtreme15-152.aci.on.ca [66.59.157.152])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gAJ4sjZ5010297
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 18 Nov 2002 23:54:46 -0500 (EST)
Message-Id: <200211190454.gAJ4sjZ5010297@netlib2.cs.utk.edu>
Received: from [110.188.46.152] by mta05bw.bigpond.com with QMQP; Nov, 18 2002 10:35:23 PM -0300
Received: from [42.47.39.56] by mta6.snfc21.pbi.net with SMTP; Nov, 18 2002 9:39:24 PM +0400
Received: from rly-xw01.mx.aol.com ([153.196.56.114]) by da001d2020.lax-ca.osd.concentric.net with SMTP; Nov, 18 2002 8:34:22 PM +1100
From: StopForeclosure941 <StopForeclosure98769@xo.com>
To: HOMEOWNER95968
Cc: 
Subject: STOP YOUR FORECLOSURE.............................................................................................................................................................................................. kfbx
Sender: StopForeclosure941 <StopForeclosure98769@xo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Mon, 18 Nov 2002 22:59:43 -0600
X-Mailer: Internet Mail Service (5.5.2650.21)
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><img border="0" src="http://www.globalcyberconnection.net/SRLogo.gif"></p>
<p align="center"><b><a href="http://www.globalcyberconnection.net/SRCapital.htm">CLICK HERE</a></b></p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">Unsubscribe <a href="mailto:takemeoff1001@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

rmsuixqqbhkdmwqe

From Subscriber_Services78036@idt.net Thu Nov 21 14:49:54 2002
Return-Path: <Subscriber_Services78036@idt.net>
Received: from 218.11.140.144 ([218.11.140.144])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gALJndZ8016486
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 21 Nov 2002 14:49:51 -0500 (EST)
Message-Id: <200211211949.gALJndZ8016486@netlib2.cs.utk.edu>
Received: from smtp-server6.tampabay.rr.com ([12.232.159.86]) by mailout2-eri1.midsouth.rr.com with asmtp; Nov, 21 2002 1:52:38 PM +1100
Received: from 36.185.61.158 ([36.185.61.158]) by f64.law4.hotmail.com with QMQP; Nov, 21 2002 12:44:24 PM +0600
Received: from 184.244.108.80 ([184.244.108.80]) by rly-xr02.mx.aol.com with SMTP; Nov, 21 2002 11:25:42 AM +0700
Received: from [130.91.58.120] by mta6.snfc21.pbi.net with SMTP; Nov, 21 2002 10:37:42 AM +0600
From: "WALL STREET BULLETIN..46249" <Subscriber_Services78036@idt.net>
To: WALL.STREET.BULLETIN..47404
Cc: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: NEW STOCK PICK: TBIN - SYPY UP 309%....................................................................................................................................................................... mgb
Sender: "WALL STREET BULLETIN..46249" <Subscriber_Services78036@idt.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Thu, 21 Nov 2002 13:53:58 -0600
X-Mailer: AOL 7.0 for Windows US sub 118
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">Did you miss out on SYPY, UP 309%?</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Here's another pick - Another SHORT PLAY</font></p>
<p align="center"><b><a href="http://www.globalcyberconnection.com/Wall_Street_Bulletin.htm">CLICK HERE</a></b></p>
<p align="center"><img border="0" src="http://www.globalcyberconnection.com/stopwatch01.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">I no longer wish to receive your newsletter <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

kgoqybkngnjkcbctnfaujjxitqanqldhjpuwe

From Your_Health_Care_932@sprintmail.com Sat Nov 23 01:04:55 2002
Return-Path: <Your_Health_Care_932@sprintmail.com>
Received: from 194.126.46.244 (200-171-82-17.terra.com.br [200.171.82.17] (may be forged))
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gAN64PZ7013947
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 23 Nov 2002 01:04:50 -0500 (EST)
Message-Id: <200211230604.gAN64PZ7013947@netlib2.cs.utk.edu>
Received: from [24.118.23.60] by n9.groups.yahoo.com with SMTP; Nov, 22 2002 11:31:14 PM -0800
Received: from unknown (52.127.142.42) by rly-xl04.mx.aol.com with smtp; Nov, 22 2002 10:42:10 PM +1100
Received: from 82.49.149.76 ([82.49.149.76]) by hd.regsoft.net with asmtp; Nov, 22 2002 9:57:19 PM -0300
From: Your_Health_Care_185 <Your_Health_Care_932@sprintmail.com>
To: Subscriber1458@sympatico.ca
Cc: 
Subject: YOUR HEALTH CARE........................................................................................................................................................................... qfkm
Sender: Your_Health_Care_185 <Your_Health_Care_932@sprintmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Sat, 23 Nov 2002 00:00:58 -0600
X-Mailer: MIME-tools 5.503 (Entity 5.501)
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><img border="0" src="http://www.globalcyberconnection.org/HealthCare001_Logo(Small).gif"></p>
<p align="center"><b><a href="http://www.globalcyberconnection.org/HealthCare001.htm">CLICK HERE</a></b></p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">Unsubscribe <a href="mailto:anothertime10010@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

nymwlvcqplabqpjb

From LevetoGille@i-mailbox.net Sat Nov 30 02:04:29 2002
Return-Path: <LevetoGille@i-mailbox.net>
Received: from VL-MS-MR002.sc1.videotron.ca (relais.videotron.ca [24.201.245.36])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id gAU74RZ5014396
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 30 Nov 2002 02:04:28 -0500 (EST)
Received: from unspecified.host ([66.130.64.126])
 by VL-MS-MR002.sc1.videotron.ca
 (iPlanet Messaging Server 5.2 HotFix 0.9 (built Jul 29 2002))
 with SMTP id <0H6D003KIK3F7S@VL-MS-MR002.sc1.videotron.ca> for
 blast-parallel-archive@netlib2.cs.utk.edu; Sat,
 30 Nov 2002 02:05:09 -0500 (EST)
Received: from 66.130.64.126 ([66.130.64.126])
 by 66.130.64.126 (WinRoute Pro 4.1) with SMTP; Fri, 29 Nov 2002 09:12:03 -0500
Date: Thu, 21 Nov 2002 00:06:11 -0400
From: Arriola Silvers <ArriolaSilvers@i-mailbox.net>
Subject: If you're one of the millions of men who suffer from erectile
 dysfunction (ivO4Vl4)
To: Bjelland Barsky <Mustian@catchamail.com>
Reply-to: kght55%yahoo.com@yahoo.com
Message-id: <0H6D003LZNND7S@VL-MS-MR002.sc1.videotron.ca>
Organization: b1UypCtgF8
MIME-version: 1.0
X-Mailer: Novell GroupWise 5.5.4
Content-type: multipart/alternative;
 boundary="Boundary_(ID_lM2/jpqqa75llx1rHRNnbA)"
Importance: Normal
X-Priority: 3 (Normal)


--Boundary_(ID_lM2/jpqqa75llx1rHRNnbA)
Content-type: text/html; charset=US-ASCII
Content-transfer-encoding: 7BIT

<CENTER>
<table border=2 cellspacing=0 cellpadding=3 width=500 bordercolor=#003584 bgcolor=D7EDFF>
<TR>
<TD ALIGN=CENTER VALIGN=middle>
<A HREF="http://w%77%77.%64i%73coun%74-c%65n%74%72%61%6C-n%65%74%77o%72k%2Ec%6F%6D/5030" style="FONT-SIZE: 18px; TEXT-DECORATION: none; COLOR: #004971; FONT-FAMILY: Arial, Verdana, Helvetica;">
<B> Increase Your Sexual Performance Right Now! </B></A><BR>
<FONT style="FONT-SIZE: 15px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
<I>Take control of your sex life, Order Viagra Online Now!</I><BR><BR>
The drug Viagra is a revolutionary way to treat impotence and enhance any man's sex life.
<BR><BR><A HREF="http://w%77w.discou%6Et%2Dcent%72a%6C%2Dne%74wo%72%6B.co%6D/5030" style="FONT-SIZE: 18px; TEXT-DECORATION: underline; COLOR: RED; FONT-FAMILY: Arial, Verdana, Helvetica;"><U><B>To order online click here</B></U></A><BR><BR>
<table border=0 cellspacing=3 cellpadding=2 width=490>
<TR>
<TD ALIGN=LEFT VALIGN=TOP WIDTH=30%>
<FONT style="FONT-SIZE: 14px; TEXT-DECORATION: none; COLOR: FF040B; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
<IMG SRC=http://w%77w.cnn.%63om/HEALTH/9902/11/jama.viagra.01/story.sex.signs.jpg>
</TD>
<TD ALIGN=LEFT VALIGN=TOP WIDTH=70%>
<FONT style="FONT-SIZE: 16px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
The drug <B>Viagra</B> is a revolutionary way to treat impotence and enhance any man's sex life.<BR><BR><B>It is a Safe and Effective way to increase a man's libido</B> and has proven to be the most successful treatment for impotence.
</TD>
</TR>
<TR>
<TD ALIGN=LEFT VALIGN=middle WIDTH=100% COLSPAN=2>
<FONT style="FONT-SIZE: 16px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
No need to go through embarrassing, stressful situations anymore, you can now get Viagra from the comfort of your home!<BR><BR>
<FONT style="FONT-SIZE: 17px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Helvetica, Verdana, Helvetica;"> 
<B>Some Things to think about...</B><BR><BR>
<FONT style="FONT-SIZE: 15px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Helvetica, Verdana, Helvetica;"> 
<B>1)</B> You will not get an erection without sexual stimulation - no need to be embarrassed like when you use other sexual stimulants. You will only gain an erection when you are sexually stimulated.<BR><BR>
<B>2)</B> More men use and trust Viagra as a treatment for sexual dysfunction than other sexual stimulation aids. Viagra is a safe sexual treatment that is proven because of the wide use and acceptance by the general public.<BR><BR>
<B>3)</B> When you use Viagra you are able to gain an erection through your partners sexual stimulation - all of your sexual acts, feelings and your love making is the result of your chemistry. <BR><BR>
<CENTER>
<FONT style="FONT-SIZE: 17px; TEXT-DECORATION: none; COLOR: #3C4355; FONT-FAMILY: Arial, Verdana, Helvetica;">
<B>This is the easiest and most discreet way to <BR>end impotence</B><BR><BR>
<A HREF="http://w%77%77.d%69s%63ou%6E%74%2Dcen%74ra%6C-n%65t%77%6F%72%6B.com/5030" style="FONT-SIZE: 18px; TEXT-DECORATION: underline; COLOR: RED; FONT-FAMILY: Arial, Verdana, Helvetica;"><U><B>To order online click here</B></U></A><BR><BR>
<FONT style="FONT-SIZE: 16px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Helvetica, Verdana, Helvetica;"> 
It's worked for so many don't waste any more time get started by following the link on this page!
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<FONT style="FONT-SIZE: 10px; TEXT-DECORATION: none; COLOR: GRAY; FONT-FAMILY: Arial, Verdana, Helvetica;">
To unsubscribe from this message please reply with the word REMOVE in the Subject Line.
</CENTER>
O8vQE8u1tnBlj42023gHVhm7LfSDbc8k8axYMxD2Cv3Trtib2rO51pUwTM04JKasyiF25GLn3E

--Boundary_(ID_lM2/jpqqa75llx1rHRNnbA)--

From mike@micguys.com Fri Dec 13 05:32:26 2002
Return-Path: <mike@micguys.com>
Received: from 210west (lsanca1-ar7-4-42-121-159.lsanca1.dsl-verizon.net [4.42.121.159])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gBDAWKZ5000390
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 13 Dec 2002 05:32:20 -0500 (EST)
Message-Id: <200212131032.gBDAWKZ5000390@netlib2.cs.utk.edu>
From: "Mike " <mike@micguys.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Home Studio
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="----=_NextPart_000_0034_01C221EC.6C64F7B0"
Date: Fri, 13 Dec 2002 02:32:03
Reply-To: "Mike " <mike@micguys.com>
X-Mailer: Microsoft Outlook Express 6.00.2600.0000

------=_NextPart_000_0034_01C221EC.6C64F7B0
Content-Type: text/plain;
        charset="iso-8859-1"

<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
<meta name="GENERATOR" content="Mozilla/4.79 [en] (X11; U; Linux 2.4.18-17.8.0 i686) [Netscape]"> 
<title>Merry Christmas from MICGUYS.COM!</title> 
</head> 
<body text="#444444" bgcolor="#FFFFFF" link="#0000FF" vlink="#FF0000" alink="#990000"> 
<font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>Instructions 
for how to be removed from this mailing list are available at the end of 
this message.</font></font> 
<br>&nbsp; 
<table BORDER=0 WIDTH="493" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><font face="Arial"><font color="#5E8BB7"><font size=+3>Micguys.com</font></font></font></b> 
<br><b><i><font face="Arial"><font color="#000000">"Bringing Affordable 
and Unique Microphones To The World!"</font></font></i></b> 
<br><b><font face="Arial"><font color="#5E8BB7"><font size=-1><a href="http://www.micguys.com">Microphones</a> 
/ <a href="http://www.micguys.com/accessories/acc_stands.htm">Stands</a> 
/ <a href="http://www.micguys.com/accessories/acc_miccables.htm">Mic Cables</a> 
/ <a href="http://www.micguys.com/">Monitors</a> / <a href="http://www.micguys.com/accessories/accessories.htm">Microphone 
Accessories</a> / <a href="http://www.micguys.com/">Pre Amps</a> / <a href="http://www.micguys.com/ps_audio/ps_audio.htm">A.C. 
Solutions</a></font></font></font></b></center> 
</td> 
</tr> 
</table> 
<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" HEIGHT="20" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<br>&nbsp; 
<table BORDER=0 COLS=3 WIDTH="400" NOSAVE > 
<tr NOSAVE> 
<td NOSAVE> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
<td WIDTH="80%" NOSAVE> 
<center><b><font face="Arial"><font color="#009900"><font size=-1>HAPPY 
HOLIDAYS FROM MICGUYS.COM!</font></font></font></b></center> 
<p><b><font face="Arial"><font size=-1>Thanks for being&nbsp; part of the 
Micguys.com family!&nbsp; In an effort to better serve our customers needs,&nbsp; 
we are always on the lookout for new and unique products that we feel offer 
great value for the price. We are always adding new products so visit us 
often at&nbsp; <a href="http://www.micguys.com">Micguys.com</a>.</font></font></b></td> 
<td> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table></center> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="500" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><i><font color="#000000"><font size=+2>Musicians...&nbsp; Look 
At This Deal!</font></font></i></b></center> 
</td> 
</tr> 
</table> 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><img SRC="http://www.micguys.com/e-mail_blasts/tb1_mail2.jpg" NOSAVE height=300 width=87 align=LEFT><b><font color="#000000"><font size=+2><a href="http://www.micguys.com/studio_project_mics/spmics_tb1.htm">Studio 
Projects TB-1</a></font></font><font color="#FF0000"><font size=+1>&nbsp; 
$299.99</font></font></b> 
<br><b><i><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+1>Get 
That Warm Tube Sound At An Incredible Price!&nbsp;</font></font></font></i></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1>These 
mics are in high demand and are hard to find!&nbsp;</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-1><font color="#000000">There 
is Limited Stock on hand, so </font><font color="#FF0000">Order Now!</font></font></font></b> 
<br><font face="Arial"><font size=-1>The TB1 is a vacuum tube (valve) microphone 
incorporating the philosophy that the best microphones use high quality, 
yet minimal components, along with hand selected tubes. Using the finest 
available materials to build the best possible capsule, the Studio Projects 
TB1 achieves this philosophy and more.&nbsp;</font></font><img SRC="http://www.micguys.com/e-mail_blasts/tb1_case_small.jpg" NOSAVE height=132 width=126 align=RIGHT> 
<blockquote><b><font color="#000000"><font size=-1>APPLICATIONS:</font></font></b> 
<br><font color="#000000"><font size=-1>* A superb vocal microphone with 
warm natural transparent character</font></font> 
<br><font color="#000000"><font size=-1>* Great for strings, pianos &amp; 
percussion</font></font> 
<br><font color="#000000"><font size=-1>* Great for production, broadcast, 
and voice over work</font></font> 
<br><font color="#000000"><font size=-1>* Perfect for the professional 
and home project studio&nbsp;</font></font> 
<br><b><font color="#000000"><font size=-1>SUPPLIED ACCESSORIES:</font></font></b> 
<br><font color="#000000"><font size=-1>* Foam windscreen</font></font> 
<br><font color="#000000"><font size=-1>* Mic Stand Clip</font></font> 
<br><font color="#000000"><font size=-1>* 7pin interface cable</font></font> 
<br><font color="#000000"><font size=-1>* Power supply</font></font> 
<br><font color="#000000"><font size=-1>* Aluminum carrying case</font></font></blockquote> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+2>Stocking 
Stuffers!</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">You 
Better Have Enough </font><font color="#FF0000">Cables!</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#444444"><font size=-1><a href="http://www.micguys.com/accessories/acc_miccables.htm">We 
have a variety of cables in different lengths to help wire you up!&nbsp; 
(click here)</a></font></font></font> 
<p><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Got 
Enough Stands?</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/accessories/acc_stands.htm">Always 
be prepared with the stands necessary to mic any situation. Take a look 
at our selection of stands for a variety of applications.</a></font></font></font> 
<br>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Check 
out our great selection of other instrument mics:</font></font></b> 
<p><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/marshall/marsh_603s.htm">Marshall 
603s</a> - a great overhead mic for drums or stringed instruments.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/studio_project_mics/spmics_c1.htm">Studio 
Projects C1</a> - The new workhorse for the new millennium...</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/adk/adk_a-51.htm">ADK 
A51</a> - A large diaphragm condenser that will give Neumanns a run for 
their money.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/blue/blue_mouse.htm">B.L.U.E. 
The Mouse</a> - Add a bit of flavor and style to your next recordings.</font></font></font> 
<p>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>If 
you wish to be removed from this mailing list, e-mail <a href="mailto:list@micguys.com">info@micguys.com</a> 
to be removed from the list.</font></font></td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<br>&nbsp; 
<br>&nbsp; 
</body> 
</html> 

------=_NextPart_000_0034_01C221EC.6C64F7B0
Content-Type: text/html;
        charset="iso-8859-1"

<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
<meta name="GENERATOR" content="Mozilla/4.79 [en] (X11; U; Linux 2.4.18-17.8.0 i686) [Netscape]"> 
<title>Merry Christmas from MICGUYS.COM!</title> 
</head> 
<body text="#444444" bgcolor="#FFFFFF" link="#0000FF" vlink="#FF0000" alink="#990000"> 
<font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>Instructions 
for how to be removed from this mailing list are available at the end of 
this message.</font></font> 
<br>&nbsp; 
<table BORDER=0 WIDTH="493" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><font face="Arial"><font color="#5E8BB7"><font size=+3>Micguys.com</font></font></font></b> 
<br><b><i><font face="Arial"><font color="#000000">"Bringing Affordable 
and Unique Microphones To The World!"</font></font></i></b> 
<br><b><font face="Arial"><font color="#5E8BB7"><font size=-1><a href="http://www.micguys.com">Microphones</a> 
/ <a href="http://www.micguys.com/accessories/acc_stands.htm">Stands</a> 
/ <a href="http://www.micguys.com/accessories/acc_miccables.htm">Mic Cables</a> 
/ <a href="http://www.micguys.com/">Monitors</a> / <a href="http://www.micguys.com/accessories/accessories.htm">Microphone 
Accessories</a> / <a href="http://www.micguys.com/">Pre Amps</a> / <a href="http://www.micguys.com/ps_audio/ps_audio.htm">A.C. 
Solutions</a></font></font></font></b></center> 
</td> 
</tr> 
</table> 
<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" HEIGHT="20" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<br>&nbsp; 
<table BORDER=0 COLS=3 WIDTH="400" NOSAVE > 
<tr NOSAVE> 
<td NOSAVE> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
<td WIDTH="80%" NOSAVE> 
<center><b><font face="Arial"><font color="#009900"><font size=-1>HAPPY 
HOLIDAYS FROM MICGUYS.COM!</font></font></font></b></center> 
<p><b><font face="Arial"><font size=-1>Thanks for being&nbsp; part of the 
Micguys.com family!&nbsp; In an effort to better serve our customers needs,&nbsp; 
we are always on the lookout for new and unique products that we feel offer 
great value for the price. We are always adding new products so visit us 
often at&nbsp; <a href="http://www.micguys.com">Micguys.com</a>.</font></font></b></td> 
<td> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table></center> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="500" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><i><font color="#000000"><font size=+2>Musicians...&nbsp; Look 
At This Deal!</font></font></i></b></center> 
</td> 
</tr> 
</table> 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><img SRC="http://www.micguys.com/e-mail_blasts/tb1_mail2.jpg" NOSAVE height=300 width=87 align=LEFT><b><font color="#000000"><font size=+2><a href="http://www.micguys.com/studio_project_mics/spmics_tb1.htm">Studio 
Projects TB-1</a></font></font><font color="#FF0000"><font size=+1>&nbsp; 
$299.99</font></font></b> 
<br><b><i><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+1>Get 
That Warm Tube Sound At An Incredible Price!&nbsp;</font></font></font></i></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1>These 
mics are in high demand and are hard to find!&nbsp;</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-1><font color="#000000">There 
is Limited Stock on hand, so </font><font color="#FF0000">Order Now!</font></font></font></b> 
<br><font face="Arial"><font size=-1>The TB1 is a vacuum tube (valve) microphone 
incorporating the philosophy that the best microphones use high quality, 
yet minimal components, along with hand selected tubes. Using the finest 
available materials to build the best possible capsule, the Studio Projects 
TB1 achieves this philosophy and more.&nbsp;</font></font><img SRC="http://www.micguys.com/e-mail_blasts/tb1_case_small.jpg" NOSAVE height=132 width=126 align=RIGHT> 
<blockquote><b><font color="#000000"><font size=-1>APPLICATIONS:</font></font></b> 
<br><font color="#000000"><font size=-1>* A superb vocal microphone with 
warm natural transparent character</font></font> 
<br><font color="#000000"><font size=-1>* Great for strings, pianos &amp; 
percussion</font></font> 
<br><font color="#000000"><font size=-1>* Great for production, broadcast, 
and voice over work</font></font> 
<br><font color="#000000"><font size=-1>* Perfect for the professional 
and home project studio&nbsp;</font></font> 
<br><b><font color="#000000"><font size=-1>SUPPLIED ACCESSORIES:</font></font></b> 
<br><font color="#000000"><font size=-1>* Foam windscreen</font></font> 
<br><font color="#000000"><font size=-1>* Mic Stand Clip</font></font> 
<br><font color="#000000"><font size=-1>* 7pin interface cable</font></font> 
<br><font color="#000000"><font size=-1>* Power supply</font></font> 
<br><font color="#000000"><font size=-1>* Aluminum carrying case</font></font></blockquote> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+2>Stocking 
Stuffers!</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">You 
Better Have Enough </font><font color="#FF0000">Cables!</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#444444"><font size=-1><a href="http://www.micguys.com/accessories/acc_miccables.htm">We 
have a variety of cables in different lengths to help wire you up!&nbsp; 
(click here)</a></font></font></font> 
<p><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Got 
Enough Stands?</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/accessories/acc_stands.htm">Always 
be prepared with the stands necessary to mic any situation. Take a look 
at our selection of stands for a variety of applications.</a></font></font></font> 
<br>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Check 
out our great selection of other instrument mics:</font></font></b> 
<p><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/marshall/marsh_603s.htm">Marshall 
603s</a> - a great overhead mic for drums or stringed instruments.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/studio_project_mics/spmics_c1.htm">Studio 
Projects C1</a> - The new workhorse for the new millennium...</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/adk/adk_a-51.htm">ADK 
A51</a> - A large diaphragm condenser that will give Neumanns a run for 
their money.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/blue/blue_mouse.htm">B.L.U.E. 
The Mouse</a> - Add a bit of flavor and style to your next recordings.</font></font></font> 
<p>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>If 
you wish to be removed from this mailing list, e-mail <a href="mailto:list@micguys.com">info@micguys.com</a> 
to be removed from the list.</font></font></td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<br>&nbsp; 
<br>&nbsp; 
</body> 
</html> 

------=_NextPart_000_0034_01C221EC.6C64F7B0--

From INVESTMENT_ALERT---99863@earthlink.net Mon Jan  6 19:13:33 2003
Return-Path: <INVESTMENT_ALERT---99863@earthlink.net>
Received: from 218.64.167.183 ([218.64.167.183])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id h070DDjb002428
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 6 Jan 2003 19:13:30 -0500 (EST)
Message-Id: <200301070013.h070DDjb002428@netlib2.cs.utk.edu>
Received: from 36.185.61.158 ([36.185.61.158]) by f64.law4.hotmail.com with QMQP; Jan, 06 2003 6:03:09 PM -0700
Received: from [72.62.68.193] by rly-yk04.mx.aol.com with asmtp; Jan, 06 2003 4:55:03 PM +0400
Received: from 82.60.152.190 ([82.60.152.190]) by smtp4.cyberec.com with QMQP; Jan, 06 2003 3:51:09 PM +1200
From: INVESTMENT ALERT - 99685 <INVESTMENT_ALERT---99863@earthlink.net>
To: Subscriber.98594
Cc: 
Subject: STOCK MARKET ALERT - TBIN REPORTS RECORD REVENUES.99901
Sender: INVESTMENT ALERT - 99685 <INVESTMENT_ALERT---99863@earthlink.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Mon, 6 Jan 2003 18:18:40 -0600
X-Mailer: Microsoft Outlook Express 5.00.2615.200
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">TBIN Reports Record Revenues and Earnings - UP 309%</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Get the whole story from "Live From the Street"</font></p>
<p align="center"><b><a href="http://www.marketingnewsletter.us/Live_From_the_Street_TBIN.htm">ENTER HERE</a></b></p>
<p align="center"><img border="0" src="http://www.marketingnewsletter.us/bm08.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2"><A href="http://www.famousoffers.com/remove/cstremove.htm">Click here to unsubscribe</A>
</body>
</html>

enejpsculawjbkg

From Credit_Doctor_621@netcom.com Mon Jan 20 20:33:34 2003
Return-Path: <Credit_Doctor_621@netcom.com>
Received: from 148.245.105.18 (MG021120.user.veloxzone.com.br [200.165.21.120])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id h0L1X8VW029635
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 20 Jan 2003 20:33:30 -0500 (EST)
Message-Id: <200301210133.h0L1X8VW029635@netlib2.cs.utk.edu>
Received: from mx.rootsystems.net ([60.127.54.24]) by smtp-server6.tampabay.rr.com with SMTP; Jan, 20 2003 7:16:22 PM -0100
Received: from unknown (185.176.53.24) by rly-yk05.mx.aol.com with local; Jan, 20 2003 6:05:03 PM -0700
Received: from [204.80.13.95] by asy100.as122.sol.superonline.com with smtp; Jan, 20 2003 5:10:01 PM -0700
From: Patrin <Credit_Doctor_621@netcom.com>
To: Hesus
Cc: 
Subject: We Can Fix Your Credit..... cvq
Sender: Patrin <Credit_Doctor_621@netcom.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Mon, 20 Jan 2003 19:32:48 -0600
X-Mailer: QUALCOMM Windows Eudora Version 5.1

<p align="center"><img border="0" src="http://www.cjlinc.net/CJ01.gif" width="501" height="64"></p>
<p>We can fix your credit.  We are very successful at getting 
bankruptcies, judgments, tax liens, foreclosures, late payments, charge-offs, 
repossessions, and even student loans removed from a persons credit report.  To find out more go to
<a href="http://www.cjlinc.net">http://www.cjlinc.net</a>.</p>
<p>If you no longer want to receive information from us just go to 
<a href="mailto:tallrhe@cs.com">tallrhe@cs.com</a>.<p>
&nbsp;

drhrvskiabmkassbj

From academic-discounts@yahoo.com Mon Feb  3 20:09:32 2003
Return-Path: <academic-discounts@yahoo.com>
Received: from mail.midastech.co.kr ([211.192.100.227])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1419UaN017365
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 3 Feb 2003 20:09:31 -0500 (EST)
Message-Id: <200302040109.h1419UaN017365@netlib2.cs.utk.edu>
Received: from smtp0281.mail.yahoo.com (PROXY [210.82.33.3]) by mail.midastech.co.kr with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13)
	id D9HK20NZ; Tue, 4 Feb 2003 09:52:05 +0900
Date: Tue, 4 Feb 2003 01:01:48 GMT
From: "Melaine Ann"<academic-discounts@yahoo.com>
X-Priority: 3
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: FW: Academic  Discounts for Software                                            
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Check this out - They've got great deals on Adobe products.  Best.

Adobe Photoshop at 54% OFF, 
Macromedia Studio MX at 76% OFF, 
Adobe Design Collection at 62% OFF
Microsoft Visual Studio.NET at 91% OFF,
Office XP Standard at 70% OFF,

FREE SHIPPING THROUGH FEBRUARY 28, 2003 WITH BELOW CODE.
FREE SHIPPING CODE (Ground Only): BRK584 
YOU MUST PLACE ORDER BY TELEPHONE AND YOU MUST TELL OUR OPERATOR THAT YOU HAVE A FREE SHIPPING CODE.

Dear Students, Teachers, Faculty, Staff and Schools:

COMPUTER PRODUCTS FOR EDUCATION is pleased to offer to you the best prices on ACADEMIC EDITION SOFTWARE from MICROSOFT, ADOBE, MACROMEDIA, COREL, and others - AT UP TO 91% OFF STANDARD COMMERCIAL RETAIL PRICES.  If you are a Qualified Education Buyer (defined below) you can purchase software products from CPE at HUGE DISCOUNTS - year-round!

Qualified Education Buyers include K-12 and HIGHER EDUCATION STUDENTS, TEACHERS, FACULTY, STAFF, and SCHOOLS.

Call 800-679-7007 to order any of these products.

For our website address, please send a blank email here:  
Mailto:124ujijk@gmx.de?subject=MORE%20INFO 
You will receive a response with our web address.

----------------------           Education Standard  You
ADOBE (Windows & Mac):             Price    Retail   Save!
----------------------           ---------  ------   -----
Acrobat 5.0                        $57.95    $249     77%
After Effects 5.5                 $289.95    $649     55%
GoLive 6.0/LiveMotion 2.0          $84.95    $399     79%
Illustrator 10.0                   $89.95    $399     77%
InDesign 2.0                      $189.95    $699     73%
PageMaker 7.0                     $279.95    $499     44%
PageMaker 7.0 Upgrade              $89.95      -       -
Photoshop 7.0                     $279.95    $609     54%
Photoshop 7.0 Upgrade             $149.95      -       -
Premiere 6.5                      $224.95    $549     59%
Premiere 6.5 Upgrade              $149.95      -       -

*******Adobe Collections**********
Design Collection 6.0             $379.95    $999     62%
    (InDesign 2/Photoshop 7/Illustrator 10/Acrobat 5)
Digital Video Collection 8.0      $489.95   $1199     60%
    (Premiere 6.5/AfterEffects 5.5/Photoshop 7/Illustr 10)
Publishing Collection 12.0        $489.95    $999     51%
    (PageMaker 7/Photoshop 7/Illustrator 10/Acrobat 5)
Web Collection 6.0                $389.95    $999     61%
    (Photoshop 7/Illustrator 10/GoLive 6/Acrobat 5)   


Call 800-679-7007 to order any of the products below.

----------------------           Education Commercial You
MACROMEDIA (Windows & Mac):        Price    Retail   Save!
----------------------           ---------  ------   -----
Authorware 6.5 E-Doc              $349.95   $2699     87%
ColdFusion MX Server Pro          $529.95    $799     34%
Director MX                       $479.95   $1199     60%
Dreamweaver MX                     $98.95    $299     67%
eLearning Studio                  $489.95   $2999     84%
   (Authorware 6/FlashMX/DreamweaverMX)
Fireworks MX                       $98.95    $199     50%
Flash MX                           $98.95    $399     75%
FreeHand 10                        $98.95    $399     75%
STUDIO MX                         $189.95    $799     76%
  (Dreamweaver MX/Fireworks MX/Flash MX/Freehand 10/ColdFusion MX)

Call 800-679-7007 to order any of the products below.

---------------------------      Education Standard  You
Microsoft:                         Price    Retail   Save!
---------------------------      ---------  ------   -----
Office XP Standard                $148.95    $479     70%
Office XP Professional            $199.95    $579     66%
Office 2001 Macintosh             $209.95    $499     60%
Office Mac v.X for Mac OS X       $215.95    $459     53% 
FrontPage 2002                     $79.95    $169     53%
Publisher 2002                     $79.95    $129     38%
Visio Standard 2002                $69.95    $199     65%
Visio Professional 2002           $159.95    $499     69%
Visual Basic.Net Standard          $59.95    $109     45%
Visual C++.Net Standard            $59.95    $109     45%
Visual C#(sharp).Net Standard      $59.95    $109     45%
Visual Studio.Net Professional     $98.95   $1079     91%
Windows XP Professional Upg*      $ 94.95    $299     68%
Windows 2000 Professional Upg*    $129.95    $319     59%

* Windows XP/2000 Pro Upgrade will install on a blank hard drive. 

Call 800-679-7007 to order any of the products below.

---------------------------      Education Standard  You
Corel:                             Price    Retail   Save!
---------------------------      ---------  ------   -----
Wordperfect Office 2002 w/Voice    $99.95    $389     74%
Corel Draw 11.0                   $142.95    $549     72%
Procreate Painter 7.0             $229.95    $549     60%

Call 800-679-7007 to order any of the products below.

For our website address, please send a blank email here:  
Mailto:124ujijk@gmx.de?subject=MORE%20INFO 
You will receive a response with our web address.

PURCHASE ORDERS MAY BE FAXED TO: 800-679-6996
REFERENCE THE FREE SHIPPING CODE ON YOUR PURCHASE ORDER
FOR FREE SHIPPING.

----------
LICENSING:
----------
For school purchases of five to ten (5-10) or more units, depending on the product, please call 800-679-7007 for even deeper discounts on license packs.   
----------
For hundreds of other software products available from CPE at similar discounts, call us at 800-679-7007. 

Academic Edition software is exactly the same as the Full-Retail version except that it has been deeply discounted for Qualified Education Buyers.  

No verification is required for purchases of Microsoft Office XP Standard.  

For all other products, purchasers must provide fax-verification of status as being a current faculty, staff, or student.  After placing your order, you simply fax to CPE either: (a) a copy of a current picture School I.D. Card or, (b) a current paycheck stub with an alternative picture I.D. (drivers license, etc.).  Schools may purchase by faxing a valid school purchase order.  For more details, call us for our website address.

All software sold by CPE is authentic original software from the manufacturer.  THESE ARE NOT PIRATED COPIES.  ALL SOFTWARE COMES IN ORIGINAL MANUFACTURER'S BOXES AND INCLUDES A VALID LICENSE.

CPE is an Authorized Education Reseller for Microsoft, Adobe, Corel, Symantec and many other major software manufacturers. CPE is the only national software distributor committed to providing the lowest prices EXCLUSIVELY to the Education community with the best customer service.

All prices and availability are subject to change without notice.  

FREE SHIPPING (GROUND ONLY) through FEBRUARY 28, 2003, on any order when you present the above FREE SHIPPING CODE to our operator at the time of placing your order. You must place the order by phone or purchase order in order to receive free shipping. 

___________________

We hope you find this message valuable.  If you do not wish to receive any more special offers and updates, please send an email to:  Mailto:124ujijk@gmx.de?subject=REMOVE 
___________________

THANK YOU!

From stendd@tiscali.de Thu Feb 13 19:06:40 2003
Return-Path: <stendd@tiscali.de>
Received: from webmail.tiscali.de ([62.27.55.1])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1E06YaO006850
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 13 Feb 2003 19:06:39 -0500 (EST)
Received: from ultraknall (213.54.15.135) by webmail.tiscali.de (6.0.045)
        id 3E3788DF005F3774 for blast-parallel-archive@netlib2.cs.utk.edu; Fri, 14 Feb 2003 00:54:47 +0100
Message-ID: <3E3788DF005F3774@eagle.intern.zoo.tiscali.de> (added by postmaster@webmail.tiscali.de)
From: "steven" <stendd@tiscali.de>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Test-Angebot
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
Reply-To: stendd@tiscali.de
Date: Fri, 14 Feb 2003 01:07:15 +0100
Mime-Version: 1.0
Content-Type: multipart/related;
	boundary="----=_NextPart_000_01AC_01C2D37F.9153A2C0";
	type="multipart/alternative"


This is a multi-part message in MIME format.

------=_NextPart_000_01AC_01C2D37F.9153A2C0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_001_01AD_01C2D37F.9153A2C0"


------=_NextPart_001_01AD_01C2D37F.9153A2C0
Content-Type: text/plain;
	charset="utf-8"
Content-Transfer-Encoding: quoted-printable



Sehr geehrte Damen und Herren,

ab sofort k=C3=B6nnen Sie eventuelle Versandauftr=C3=A4ge f=C3=BCr =
Werbemails=20

nocheinmal verifizieren und konkretisieren.

Test-Angebot

Desweiteren teilen wir mit, dass es uns gelungen ist, einen namhaften =
belorussischen Provider f=C3=BCr unser System zu gewinnen,

durch den es uns nunmehr m=C3=B6glich ist, in noch k=C3=BCrzerer Zeit =
noch mehr Emails zu versenden. In diesem Zusammenhang sei weiterhin

bemerkt, dass sich unser Adresspotential auf nunmehr ca. 350.000.000 =
bel=C3=A4uft.



MfG

Steven Langer
-Bulkservice/ T&S-

http://www.thomas-stevens.biz/email/index.htm

P.S.: Sollten Sie in Zukunft nicht mehr von uns kontaktiert werden =
wollen, so teilen Sie uns dies bitte kurz mit.

info@thomas-stevens.biz







------=_NextPart_001_01AD_01C2D37F.9153A2C0
Content-Type: text/html;
	charset="utf-8"
Content-Transfer-Encoding: quoted-printable

=EF=BB=BF<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dutf-8">
<META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR>
<STYLE>BODY {
	MARGIN-TOP: 5px; FONT-SIZE: 10pt; MARGIN-LEFT: 30px; COLOR: #333399; =
FONT-FAMILY: Trebuchet MS, Verdana
}
IMG {
	MARGIN-TOP: 5px; MARGIN-LEFT: -30px
}
</STYLE>
</HEAD>
<BODY background=3Dcid:01ab01c2d377$2f8c2d80$15eefea9@ultraknall>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000><IMG=20
src=3D"http://www.thomas-stevens.biz/email/Thomaslog.gif?1289BB23" =
border=3D0=20
editor=3D"Webstyle3"></FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>Sehr geehrte Damen =
und=20
Herren,</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>ab sofort =
k=C3=B6nnen Sie eventuelle=20
Versandauftr=C3=A4ge f=C3=BCr Werbemails </FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>nocheinmal =
verifizieren und=20
konkretisieren.</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV align=3Dcenter><SPAN style=3D"TEXT-DECORATION: overline"><FONT =
size=3D5><B><I><A=20
href=3D"http://www.thomas-stevens.biz/email/testbulk.htm">Test-Angebot</A=
></I></B></FONT></SPAN></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>Desweiteren teilen =
wir mit, dass=20
es uns gelungen ist, einen namhaften belorussischen Provider f=C3=BCr =
unser System zu=20
gewinnen,</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>durch den es uns =
nunmehr m=C3=B6glich=20
ist, in noch k=C3=BCrzerer Zeit noch mehr Emails zu versenden. In diesem =
Zusammenhang=20
sei weiterhin</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>bemerkt, dass sich =
unser=20
Adresspotential auf nunmehr ca. 350.000.000 =
bel=C3=A4uft.</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial =
color=3D#000000>MfG</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>Steven=20
Langer</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>-Bulkservice/=20
T&amp;S-</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000080></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000080><A=20
href=3D"http://www.thomas-stevens.biz/email/index.htm">http://www.thomas-=
stevens.biz/email/index.htm</A></FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>P.S.: Sollten Sie in =
Zukunft=20
nicht mehr von uns kontaktiert werden wollen, so teilen Sie uns dies =
bitte kurz=20
mit.</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000><A=20
href=3D"mailto:info@thomas-stevens.biz">info@thomas-stevens.biz</A></FONT=
></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV></BODY></HTML>

------=_NextPart_001_01AD_01C2D37F.9153A2C0--

------=_NextPart_000_01AC_01C2D37F.9153A2C0
Content-Type: application/octet-stream;
	name="Thomaslog.gif?1289BB23"
Content-Transfer-Encoding: base64
Content-Location: http://www.thomas-stevens.biz/email/Thomaslog.gif?1289BB23

R0lGODdhuABjALMAAP///9De46zS5H+Af77Y4rXW5MXb47O8v77Hy+nx9N3n6/f395aYmKWpqYqM
i1xoSywAAAAAuABjAAAE/xDISau9OK8FUgoGgYwkIhpBoGwAl71wLM90bd942wUFcvzAoBDoIygS
upxyyWw6ZZxFgnDwDX0IAaJHIIS6otHPtHqaz+i0ZRMQDMddlEExT6VQ9nsgjAhsXGqBgoMXHAkF
QlYFXnd0eioodI5ydgYhJgkshJucZwpUV5aSeY14eJWjonldSJ2urzZTY0QFlaSOkJKnILwpuL2W
Aa2wxMUSGwZWQQSoeru9ILpzdXnTCtHRZcbbnQluQrWPdrq85I+/4rbjHtztgQsBoc3QzXLXvqTz
pvd4R5nuAJ0swAJEQKRd06qlM5Wv4a+DvDwACkiRhpQD38YEE/Us4TVqDf/pIax2D5uKfxVTwrg4
60CBa6MgjYMYsqbNhgc9DFPJk4ICZT/kbKTEayiwo0eJngoGrCQInT2jAogXpI8KBVizat3KtatX
rVe3PjpoAKrUlArAoSigs63bt3Djyn3r1Ig9YVLOUkyLccy4IxCXykyn7qbhXEsl6nWnICPGpgkm
lQSJ004XEyREXDbBBbPmZFZJ1VG82NjAqv1QeBC90CaWLCMQjdBSgnbsACOWJizLrnQxoKGjzflQ
p7jTkPcOGEFXvFLxyHv6GC9l1rcrqlUOMMTjIRjzmpdyl/Vn6RSuScLo5M5nDe9O64MS9P3BTPjH
Ix8Jk+pSNVyvyN9R94H/CEWNFU0mE8GnxmkFFSUUVglAhE4lVmzhBWD4eEfHSBHRcQIuCeVRnYJp
wFOVffYMd98zlmkkykvQ9XKfTAw9dc0ISE1T3hF5kViiYxsJJwqGM1UDBDMMdecLiwrpAR0VD9bi
3Rxs9TZIgj0BVYCOzigAY34i+SAACFHiR4lQ1Zy5x5PSlcIlHlK85yMT8hHx4JlzAHbPQxoJ6SWE
1lCDHpkFQrfenTrKIZGcc+aQxZFMrbXhnx+IRNWW5Rnw0qb4NdkQkikQwCaiQ02aCaONxoJamVKq
Rhw6RRxEjiVKzpRiL9Kpph4CQ1kTjlA6YZlqDYgA8VKkPEwK42ChBpVp/6bHmgniZJMhOR4PW0xa
3rFn8ojqsDEskJ0b9tRSi5eZ1kqhcn5yRGulNNW0pY248frsn70ORxq4NRiwzLNUvihJjHb4gCnA
977KHjanaDdcdAI/myy3i/JrgzImUIluouV54F8Kse6IqZdk6hkYs7jEUSkVZGa6IcLernHMH5q0
EMXNLgibUp0/CLAxx9B22uLIlnCrsYqiHbcfr6ttsWPQnHJ6as40V2311VhHkRIozr4sMLeA5hEy
wtAqSZSBuyiH1R4Ou0x2x1NnLffcV1M0n71vb/tlL84W/efBO74a4nTQbGEo3tB+/fcKEmW9wgIr
YAX55JHT/Yc74hqbt//b6saD+Obd/TLhkqEigNUlXigOuMsIZvLV619NnjU3fFXxbNQA791s6jAD
DF2IY01LxeGJI7x6XrB/FVbsj9f9Gy25v5jwKVTwHn26ERbpyOggHLA2lJsH3HGcSvdhPm4/rZ28
VrJXXUxGBt2+4erLtmj9trmbyZp+3Z/uNNmr21bjzFeCEtSrgCSoV/pM55UNNE9ngwgCpgAXQLid
YgRxeNvBTCa61DCLDGyj3/XgJgUEFnAMrzEhjky3PPY9EIJq4NnnALgtobGteAAU2j5qJBrtXOME
4ZPfPyqUnSK+4QoI/MtWrHYdCSaugkVTl7+8wLuDbWmCZmOWCgpkigP/bJEKEyweBUUhEQM04AAN
SKMaz7jGH5zxiFUwYAslRzNXJMNFULyipjTVKTwoJ3VQ9JvCFjIjkPHqRjOsoBUZB481OvKRj0Qj
EkmQviXWkRMV+t8ew5g7Kf7RC3rU4x4fNq2zPQMRpwPjKPEnyqLRig0MiKUsZynLBtQSkpLMjhy5
4r5NZISTxgtaZKhhoSDWbw/UagQpfvCktgHzdoKUggJoSc1qzhKSb4zj+a7Svk4oYxGAdGUBrLjH
I4zFBBnk5ATNBLz93aEKqeTMJl05z1VKAXIOYIAD9slPfuozn/nUJzUdWZURwIR9l9sEQdRJz4Yu
qznKeWYYYQSS5jDJ/2BsEuEqV7mlUynAAQMIKUhFGlKS9jOgtYylGomQwD5k5ZKE+OYXQMnReVaJ
Eh5CJyBbuSUiddAc3VPOMMEnyok2tCwbSEBJl8rUpp4UpQRFoVUQWrMIag6YodSbDe+Aznpqap3D
RApOqseWG43TigzN6j0V0NS2tvWk12yjNl1Kx6oK4ps0talRhxOoO4AznBMNnUw2VBh/RXSYPsCf
TUcJ1lO59bFLBWk/VcqAlWoTfS+1ayC+gU6jkvOKx1yKTkNJTnhBQ2mGJcA4MzpOcdYzqwhiK2Rn
OwDJorSyll2hVhCESWOBIavAJWM5dtGFRdCztVXSxaCqgYXWDlU5i/8N7le9JVva0tafKk0jCn2R
WRiagQpFKG509WpOMJkiDsidIEUPg4VNQqcHwSXtV/l4zwA09QHWfStUtTvXsCQ0pr79bXTTGzqP
nJemZ72iB7inh2IluKwhcAlPXzvfxtk3v9fdZ3bfmMDuevcJIvjBIkY83wSzsiz8I9NZF1upwhSs
CoA9nGq/+mAah3JqCMDwbG17yzOWILOuqJ0Afjtj0j5YSYR1xpJW3FpzhiTCVagxhMGY1/iC9p4L
aICOM5zP3BpUcrzlBM/Gqdoig9a1utvidKxBBxO3eGljOPNZ3ytPKafXvUkd6ZYhq2Hc+vjLzXsF
LUZsZtCSeZzm5CH/cvwBljRVaMRMXq16JFzkEpcY0Y3bc0jx69Y+c5iSgX6FFQRAaEgbusyYNgyL
HsaIyxBBtQ829NrgC2sT23rOa9U0nzXs5WtgGRag2MKhCw3OQzvZnYdRbc8w8mBSxxrCRTCuoW0M
WgTBQ9d83nCH6wqL2h3a1N+G9LEPQ48UVIG7WcmTVtSdnj2QutZ3lu+pAKBlbOs3uyjMCkpgkTlm
ozrcqFbtsZkkVlswAz+RSbjC/ZHwThkM3M8+KyMXYF1O55fXn+ZmmGHx6AfXGt4JXtjZ1KEbo6SY
FPCNeMQbV11NW7ykntYuoDVrxzE42+MqHzER4qhLnhORILokCMYw/9YSCefczfckgL3vzd+phroY
/T66yrVAddgIgOpXt/qjaMN1MWHE6lgvANapLvWzCqBxC9Dz0nmMW21ymxtYuHnZ5073nMu97s8+
e66XHtmAypyu/90GVYSN94jL/e6FLzziMf2HHPMd5vjeNs2J0e/Fj5PUiL+55S9v92Zz3uyGL7ve
Hft4kWr7y9YOCCgWf/XWt37umXe92F2/ecUn2GdYvvDjMb5dHn34FZnLgtjNLoA3NkAADrj68G8P
+lhj/viuZwDtmU99zFPf82dvndrtzfs4Qmjy3CiW8J3tBgc84AEOaMADaC/76c/e9Q9gwPrdgP4H
qJ/97H8//pt/ef/fX3v3p8dCqZcSmaN8n1cA+XR15zd/5zcAArCAA4BfD3h+AiB/6xd/8xdSrXd+
sUSBDDiBDriACmh/BmiAbHFPCcAAfBdz+fZ0KhFs1jd7+6SAyKeC0neBAqCB86d+BzB/OVh/N4h+
D3h8DDgAaVRbRNiDFShSr3d4aKd72BZzf/Z2UdEzw2d9M/iAFWh+GGF/66dPWohf9qd+OHh+GKGA
8kd/IRWED1hbybd+WjaB0BeDBYBlCbB9mnZLcXQVGxcVfGF9mDcA0qeF+hRSSrh+CfgAh4hGOZiG
6mdLXXh/Q7iBX7h+XVh886eC5Dd8cXMAa9dlf8dN4JcSo3Z5pJb/RqTmgKgYgceXfKiYfBHogBGY
fD0Iiz1YWwpIhEZYfMeHgBKYfBWofg7YhD5jbbKFh9blT3/HQAO4GAVYgrPHeYCofNRIjJhXjdNH
jdF4haYIiMuHeRO3ACoYi1uGcX/mUn1YGn9IjNF4jfj3jvAYj/lngtf4fsOHZVmmadilRpI3ilKx
evUYkPI4kARZkO7IidYGhRjGgpflf40iJthokBI5kftXjSeIgnumjE3HXelIIqehfxQZkiJJe4uy
AcjYabW1YT6GGyfhj9ZRJyA5kjJpkFWSF+J4cW64YXtoOt3ELywRkzMZlPAYNwAwjjumkU2HIxNn
MTPDF0AplFBJ/2pol4+7hpTnqG+B55MO9BMuEZVeqXxxQ5Wdhl1+1l/f93sKgjPXQB9fCZVI9Qcp
OJZ9VpZShZVoOSd/sDaz0ZYzGZY36VRk6WVKGY5MuQZJlRW1wZcUWZN/oJBuOJdyRUkn0ZGFWQFr
9RP18pSK+Y5+6Ym19ZgA5WdJyULecpdaKU1YUUCauZlX5w9VM44jpWHpF5mDuZSVOQN5eQ8lQACs
iX+8UTWOZ1v7lZS+gHa3aQNweTglsJpR+ZY081GgqZIZp3EueZwa4EAD8RNYcCOKCSP4CDlaNlmi
uV18CFPWqQRJVSkkAE/XEJUwknocME2BuVI4kgLGeZ5n8JyI5GQDDeAHH8Cc79hRU9l4AtVjf8aR
1Ymf6AmX+4lGCGBtxFE0JvYuJVlHH9AAfjeaLxVmpqmgS8CghiRzj2MzKBgnJsoC0oQAPeZ2ENKM
HroN6ambYlCfLZqchpIIkumaCfqiEhABADs=

------=_NextPart_000_01AC_01C2D37F.9153A2C0
Content-Type: application/octet-stream;
	name="=?utf-8?Q?Hintergrund_f=C3=BCr_Natur.jpg?="
Content-Transfer-Encoding: base64
Content-ID: <01ab01c2d377$2f8c2d80$15eefea9@ultraknall>

/9j/4AAQSkZJRgABAgEAYABgAAD/7QY8UGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAAYAAAAAEA
AQBgAAAAAQABOEJJTQPzAAAAAAAIAAAAAAAAAAA4QklNBAoAAAAAAAEAADhCSU0nEAAAAAAACgAB
AAAAAAAAAAI4QklNA/UAAAAAAEgAL2ZmAAEAbGZmAAYAAAAAAAEAL2ZmAAEAoZmaAAYAAAAAAAEA
MgAAAAEAWgAAAAYAAAAAAAEANQAAAAEALQAAAAYAAAAAAAE4QklNA/gAAAAAAHAAAP//////////
//////////////////8D6AAAAAD/////////////////////////////A+gAAAAA////////////
/////////////////wPoAAAAAP////////////////////////////8D6AAAOEJJTQQIAAAAAAAQ
AAAAAQAAAkAAAAJAAAAAADhCSU0ECQAAAAAEywAAAAEAAACAAAAAYAAAAYAAAJAAAAAErwAYAAH/
2P/gABBKRklGAAECAQBIAEgAAP/+ACdGaWxlIHdyaXR0ZW4gYnkgQWRvYmUgUGhvdG9zaG9wqCA0
LjAA/+4ADkFkb2JlAGSAAAAAAf/bAIQADAgICAkIDAkJDBELCgsRFQ8MDA8VGBMTFRMTGBEMDAwM
DAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAENCwsNDg0QDg4QFA4ODhQUDg4ODhQRDAwM
DAwREQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/8AAEQgAYACAAwEiAAIRAQMR
Af/dAAQACP/EAT8AAAEFAQEBAQEBAAAAAAAAAAMAAQIEBQYHCAkKCwEAAQUBAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAABBAEDAgQCBQcGCAUDDDMBAAIRAwQhEjEFQVFhEyJxgTIGFJGhsUIjJBVS
wWIzNHKC0UMHJZJT8OHxY3M1FqKygyZEk1RkRcKjdDYX0lXiZfKzhMPTdePzRieUpIW0lcTU5PSl
tcXV5fVWZnaGlqa2xtbm9jdHV2d3h5ent8fX5/cRAAICAQIEBAMEBQYHBwYFNQEAAhEDITESBEFR
YXEiEwUygZEUobFCI8FS0fAzJGLhcoKSQ1MVY3M08SUGFqKygwcmNcLSRJNUoxdkRVU2dGXi8rOE
w9N14/NGlKSFtJXE1OT0pbXF1eX1VmZ2hpamtsbW5vYnN0dXZ3eHl6e3x//aAAwDAQACEQMRAD8A
9LDTMd04rKK3lThG1ggEQrUw2FIkDlRNjfiha6gF0kg4FOkpiUx1TkhMSEUMDWPgo+l5qcpSkjRT
WhuimIQ5SlJVpZCYuChKSVJtdxJQy1ymkkgi3//Q9RbyFMmBKYDVJ/0SkgbI3OLgZ+5RT9lEnukg
lcOgyp7pEhBJTtcI1KKLZkpKJeAobjJg6FJFpEkOToe4Sk8+PKSrSJ0MSNEi5wiSkpInUWuMweOJ
U2w4SEkrJKUJQkqn/9H1SEjqIPCSg7yMFJCN2hhQJ0T2l0a/IhAc5x0OiKwlkXjsma4nTkKHPCky
ZSWs04SHwUg0FJKwHgpAJwD8U8SkuAWjxUXjgKeoTP1A7eSCqRifgiMsgweCdVDjX705GqSmyIcJ
HBTwgUvgweOwVhJcH//S9UPCC46yjO4KrkyiFslnQeUNwjQ6qadFjQFnhonY1wdCnsIGpTgcd0FU
oAqQBTgJSgvpUlKQmJKb4pKtnu+aZ4BHwUdFKDGhhJVsPxCQ4+CbX4ppI18EFJK/pI9ZPHggVlsn
XngI1fJRXB//0/U7DDVXHKsPEhV+CiFk91OEFIIgAcIKXpoo4VgFL0+/CdohSQXAIUxRHubED8EF
8/moIKimUHbhzKbc4d0lqQFSBKg1wPx7hTCSQs9p5HzUIJRgkGNnjVJcxqrDwQR8PgrDWhogJNaA
0acKSSX/1PUHvgIRdKcukFQTgxSKRhRQZQGorUCuiWai5v7v3KSSS5CmPwRXNB17oTgRyEFpYOAJ
118lAt00MnwRCmKKGLGO3jjzKIAYB8eEqmncTMfBGCSQGAYdR4aojGRqU4ToLlEpiUxKG5yKCX//
2QA4QklNBAYAAAAAAAcABAEBAAEBAP/+ACdGaWxlIHdyaXR0ZW4gYnkgQWRvYmUgUGhvdG9zaG9w
qCA0LjAA/+4AIUFkb2JlAGQAAAAAAQMAEAMCAwYAAAAAAAAAAAAAAAD/2wCEAAYEBAQFBAYFBQYJ
BgUGCQsIBgYICwwKCgsKCgwQDAwMDAwMEAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBBwcH
DQwNGBAQGBQODg4UFA4ODg4UEQwMDAwMEREMDAwMDAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM
DAwMDP/CABEIAJYAyAMBEQACEQEDEQH/xACOAAADAQEBAAAAAAAAAAAAAAABAgMABAgBAQEBAQEA
AAAAAAAAAAAAAAABAgMEEAACAgEEAgICAgMAAAAAAAAAARECAxAgIRIwMUATUDJBImAjBBEAAQMD
AwQCAQUBAAAAAAAAAQARIRAxQSBRYTCBkQJxEkChscEiQtESAQAAAAAAAAAAAAAAAAAAAID/2gAM
AwEBAhEDEQAAAPTXk0aw+pTR9xqIAAgSzicihL2tY+hrCwmLPKeFNq7EOowawDAhYEuBACY1ENCB
GACG0puNWFEkMr1gQsCBKARjGjUQBCasYr0hqcQkBisri5ogQDGMYJjGohMatVdzVzZgBCxotNaB
ACAFYIQ1ghNWMNqU0U5pBCwIXNpK4hNBGogDWFK1a1qJjJTQ0pzZiQM2eSwQmMGsNRNWs54dKW9e
q5jU1YWI5QyTKMJmGrLqNNTGsNGsQkFEc7daeiYERyllzYShJANXRa1NWprGt1mNUMzGAVru1omp
co86sc2ZGEgIa6bW0Nj0awawKhmY1Y0dm7e3E8I8qsLEhEAidG61ho0DRqI1TkmCmMdVtrXqPOx5
BACRNYafUbTAgQpg1qUkhBVi9t7Xrn42eCxghoaCw6hoQIWNKA2GjUEUUpV7ezVY5eFTNaxMiPo+
x1ERRYXISgBhrDopFAX1e/VY0cvGzxbdIIENo+pTRScQzIZCFGKWtYdGoGOvVcwIli8/JTau41AJ
qQjmLCRDJYBSr6Gm0aqF7cAnix5kzTZbopqGiIQkELAhJVSUNXRa2o9NV7cCBEedlirDFOkruNox
hCGYkCFBKBq67TqPRrAhMlzY8yyiGqm5TZ9xjAEiGZOBKDFavqvY1atCQmLPL//aAAgBAgABBQAg
gVRIXjS2tjYxnUVSCCCCPFJJJI3sjRbJJ8E+RaTskkkn4C3ST8JD2ST8CNr0nWSfBHjZOk+GNkb2
MbHtWkEEeFbGNj+Itbb4+AtLvfAvKtFpcW2CN86LatWWENaoSI8y2WWiHUgSFsZJO+CBbLaLSCNZ
0ZGxeGRskTF4HpBHhkkeiExbX4ELY2To9EIW571sYxn/2gAIAQMAAQUA/Lz/AIzOyfyE/KX45+Bf
JX45fBn8pHyV8leH/9oACAEBAAEFAOSBVYqFalULYx+rY0y2Kx9dxYbMrTqkhaSh2LWLNjHjU1xq
FjQqI6IhEDWrWzjTsdjudx21hDrXSi40+yo86K5pckkobRKG1pJJPip+pfKk8jbspRJiyMdh2Gyd
y2LZBX9buK+3bljJ5raat6SplCsm3dJ2vWr7VhOsKyekbYF6y/oN82fMppsx2Sq7cfbUtZu02G2x
t2EpF7hxVyVyW7dl2gggggXq6mr4H6bJL3itMqa7WQ+SHECbIhxDiT+Oa2V7J1yKa2rZwQQQNpKU
ZqjZayVb3Y7NlVVuEcoTQkQdWhQJDTiynR+8Wa+N4r96QRoy9ObXypXbq73dlEqGirt2TFB1FUTa
FDTqcolMaizUOJr/ABgs65K2VlpdwO3LZejQ8VWOtqtMo1KgSQuBEECtoyzsmnKrwyst47dXM6ZR
+2y1VYvVKzrI8VWfX/sVRVOqOqOTtY7iskTJlSmJOzQ2UT7GFvoZXy2SSJF63tZ1shptKBEjbHZn
9mQQQZO6Xax2TVbQ8Ks7sw/oZnyh+9Eh4m7dWhLV7UWTdWmhtDhmP7bPHkva2OrrV+sjl193rxpV
CR9aZkpWr4HA3y2Ns5E2cnJkx9jk6s/5Kt2pjrXRmSvK915VsYqNCRVCOlZzKbZGq1eSzbvc+26K
5ZIJFo8VWLDRGPHRU0bMik9OlhMhHU9H2Um+VjaZasn10Mi/tAzFkbEhCQjFRWZJI7F8nLtJVlWJ
6IyU7JpobY5JP61Hiq30s74sWT7lSzuqtuuNu1cTZWta6NjsOxf9hFGLZeisWq6nJEjSGkODA79k
lNKpCSQhjY2OxyP2IqIWy8dbKmj04P8AniUL1raRyW7H/9oACAECAgY/AG3/AP/aAAgBAwIGPwBt
/wD/2gAIAQEBBj8A6myhWoAOjFvyLafZ4+t1AUwo/DFGElOc3U0Y+SfwwiafIU3FIQLvzVsrlEZC
AOcoPlO8J3UY6ARh6fon81n27J1KJGLeEPZ3K+2U5ui/hciafUmclAmwjsh65M6yAtmoFFCGk5Ra
n7qFNt06dfsmynGVKfIKYF863HwaOYZEdlvwntzTdSuKR4TWKZRfC23C5CBRID/KBNzpJ9SyYh1/
XwuAuQnGUG7KRWLqax4KYwVxlPR0CMfynGpzI3UQuHZM10AZ41QmPmnKLymTYNkQgBlcG+qUwEMt
2WyAxzS2mQoMUcBlyp7FP5TDe9J1kgfCYmRdWnFLK1bst6RCgxtS3ZN/kpxAFz8L5TtfoEjKY9Jh
+tOVEFA+rgi7f8Te3q3NkxvocaXKYKehdPlNQvDsx8p876WUaXIlDAUXUYV7K78pjd4pFGyuVuvU
NselZwmdf180bFG5T+VOF9T2NI81L2GltfOiygJ3RDMB/pACwMlfUSUwuvr57L24UZv1XacJjpuo
9fs3akJ9/wAAvZFjGBOk79H/2Q==

------=_NextPart_000_01AC_01C2D37F.9153A2C0--

From incomingforward@cs.com Wed Feb 19 01:15:05 2003
Return-Path: <incomingforward@cs.com>
Received: from smtp.wp.pl (smtp.wp.pl [212.77.101.161])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1J6F3aN023627
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 19 Feb 2003 01:15:04 -0500 (EST)
Message-Id: <200302190615.h1J6F3aN023627@netlib2.cs.utk.edu>
Received: (WP-SMTPD 994 invoked from network); 19 Feb 2003 06:14:56 -0000
Received: from unknown (HELO smtp0000.mail.yahoo.com) (abc@[62.110.31.24])
          (envelope-sender <incomingforward@cs.com>)
          by smtp.wp.pl (wp-smtpd) with SMTP
          for <blast-lite-archive@netlib2.cs.utk.edu>; 19 Feb 2003 06:14:55 -0000
Date: Wed, 19 Feb 2003 06:14:57 GMT
From: incomingforward@cs.com
X-Priority: 3
To: blast-lite-archive@netlib2.cs.utk.edu
Subject: blast-lite-archive, LIVE FROM WALL STREET: VICC Test Results Are In..........
Mime-Version: 1.0
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-AntiVirus: skaner antywirusowy poczty Wirtualnej Polski S. A.
X-WP-ChangeAV: 0

blast-lite-archive@netlib2.cs.utk.edu
<p>If you bought into our last recommendation (CIMG) early enough you had an excellent opportunity to make substantial gains (from .90 to 1.65 in just the first day).  Now is your chance to do the same with our newest pick: VICC.  To find out more go to <a href="http://12.148.59.67">Live From the Street</a>.</p>
<p align="center"><img border="0" src="http://12.148.59.67/bm01.gif"></p>
<p>If you no longer want to receive information from us just go to 
<a href="mailto:tallrhe@cs.com">tallrhe@cs.com</a>.<p>
&nbsp;

From AOBO@edirectoffers.com Mon Feb 24 14:18:12 2003
Return-Path: <AOBO@edirectoffers.com>
Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1OJIBaN027079;
	Mon, 24 Feb 2003 14:18:12 -0500 (EST)
Message-Id: <200302241918.h1OJIBaN027079@netlib2.cs.utk.edu>
Received: from sccrmhc03.attbi.com (localhost[127.0.0.1])
          by sccrmhc03.attbi.com (sccrmhc03) with ESMTP
          id <2003022419164000300jnh4ve>; Mon, 24 Feb 2003 19:16:53 +0000
X-Comment: AT&T Maillennium special handling code - x
Received: from sccrmhc02.attbi.com (sccrmhc02-qfe1.ops.asp.att.net[192.168.202.82])
          by sccrmhc03.attbi.com (sccrmhc03) with ESMTP
          id <20030224163908002004pv36e>; Mon, 24 Feb 2003 16:39:21 +0000
X-Comment: AT&T Maillennium special handling code - x
Received: from newg (c-54-28-176-66.se.biz.attbi.com[66.176.28.54])
          by sccrmhc02.attbi.com (sccrmhc02) with SMTP
          id <20030224163908002004pv36e>; Mon, 24 Feb 2003 16:39:19 +0000
X-Comment: AT&T Maillennium special handling code - x
From: "" <AOBO@edirectoffers.com>
To: "" <bizops7@yahoo.com>, "" <bizpromo@directbizpromo.com>,
   "" <bizsitebiz-on@mail-list.com>, "" <bizsuccess-on@bizsuccess.com>,
   "" <bizsuccess@myreply.com>, "" <bizzibee@bigpond.com>, "" <bj134@bfn.org>,
   "" <bj4now@hotmail.com>, "" <bjacks8210@aol.com>,
   "" <bjacobs@ucssun1.sdsu.edu>, "" <bjajnjpj@aol.com>, "" <bjb228@aol.com>,
   "" <bjb@tappedin.org>, "" <bjberti@hotmail.com>,
   "" <bjmcclure@acf.dhhs.gov>, "" <bjodmjhnhcdihaaa@angelfire.com>,
   "" <bjoern.schneider@rhein-neckar.netsurf.de>, "" <bjohn318@aol.com>,
   "" <bjokr@itn.liu.se>, "" <bjones@ucsd.edu>, "" <bjones@weber.ucsd.edu>,
   "" <bjorgk@postur.is>, "" <bjorn@debian.org>, "" <bjr@cellar.org>,
   "" <bjueneman@listserv.temple.edu>, "" <bjueneman@novell.com>,
   "" <bjunited@bjunited.com.cn>, "" <bjzolp@students.wisc.edu>,
   "" <bk361kb@aol.com>, "" <bk@bookmarkpublishing.com>,
   "" <bkblock@netaxis.com>, "" <bkchell@juno.com>, "" <bkchest@pipeline.com>,
   "" <bkelley1@nycap.rr.com>, "" <bkemp@esn.net>, "" <bkerea66@yahoo.com>,
   "" <bkexpress@aw.com>, "" <bkgallry@crl.com>,
   "" <bkinsley@thevirtualpool.com>, "" <bkkabea@juno.com>,
   "" <bklabel@aol.com>, "" <bkmanfict@yahoo.com>, "" <bkmine@ns.net>,
   "" <bkorb@pacbell.net>, "" <bkorders@taylorandfrancis.com>,
   "" <bkpub@bkpub.com>, "" <bkriter@footnet.com>,
   "" <bks@research.bell-labs.com>, "" <bksource@msn.com>,
   "" <bkunert@ramfans.com>, "" <bkunert@usgs.gov>, "" <bkworld@aol.com>,
   "" <bla@engny.mhs.compuserve.com>, "" <blaash@aol.com>, "" <black@via.at>,
   "" <blackat@direct.ca>, "" <blackbeatproduct@aol.com>,
   "" <blackbirdnz@hotmail.com>, "" <blackbob@wwa.com>, "" <blackbox@bbox.com>,
   "" <blackdmn20@aol.com>, "" <blackfocus@mindspring.com>,
   "" <blackhawk117@home.com>, "" <blackhole@trax.fsworld.co.uk>,
   "" <blackhorse@blackhorse.pl>, "" <blackie@imada.ou.dk>,
   "" <blackje@crd.ge.com>, "" <blacklist@womenrussia.com>,
   "" <blacknus@igs.net>, "" <blackoak2@infoconex.com>,
   "" <blackoakbks@earthlink.net>, "" <blackpoplar9@aol.com>,
   "" <blackqueen2000@reggaemail.com>, "" <blackstn@aol.com>,
   "" <blackwells.extra@blackwell.co.uk>, "" <blair@blairrobertson.com>,
   "" <blairpub@blairpub.com>, "" <blake@blakesbooks.com>,
   "" <blake@calinet.com>, "" <blake@digital-evidence.com>,
   "" <blakeman@europa.com>, "" <blakrose@web.net>,
   "" <blancacuevas55@hotmail.com>, "" <bland@apple.com>,
   "" <blandis@epix.net>, "" <blapointe@dsisd.k12.mi.us>,
   "" <blast-funct-archive@netlib2.cs.utk.edu>, "" <blast-funct@cs.utk.edu>,
   "" <blast-lb-archive@netlib2.cs.utk.edu>,
   "" <blast-lite-archive@netlib2.cs.utk.edu>,
   "" <blast-parallel-archive@netlib2.cs.utk.edu>,
   "" <blast-sparse-archive@netlib2.cs.utk.edu>, "" <blasting@compsurf.com>,
   "" <blawbull@cs.com>, "" <blawso4@us.ibm.com>, "" <blaze@nether.net>,
   "" <blc@bsdwins.com>, "" <blcr@web.net>, "" <bldjj@yahoo.com>,
   "" <bleab@msn.com>
Cc: 
Date: Mon, 24 Feb 03 11:37:03 -0500
Subject: Press From AOBO
X-Mailer: ExclamationSoft Corporation Mail Version 2.0
X-MSMail-Priority: NORMAL
MIME-Version: 1.0
Content-Type: text/html;
	boundary="----=_ExClAmAtIoNsOfT_MaIl_PaRt_BoUnDaRy"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META NAME="Generator" CONTENT="NetObjects Fusion 5.0 for Windows">
<TITLE>AOBO</TITLE>
<script>
function invitepopup(url) {window.open(url,'artist','width='+540+',height='+500+',scrollbars=yes,status=no');
}
</script>
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./style.css">
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./site.css">
<STYLE>
</STYLE>
</HEAD>
<BODY STYLE="text-align: center; background-color: rgb(102,102,153);" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
    <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 NOF=LY>
        <TR VALIGN=TOP ALIGN=LEFT>
            <TD WIDTH=627>
                <TABLE ID="Table1" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=627>
                    <COLGROUP>
                    <COL WIDTH=16>
                    <COL WIDTH=230>
                    <COL WIDTH=128>
                    <COL WIDTH=132>
                    <COL WIDTH=121>
                    </COLGROUP>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(0,0,0); padding: 4px;">
                            <P STYLE="text-align: right;"><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">&nbsp;<A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html">Home Page</A> - </SPAN></B><A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><B><SPAN
                                 STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">Company Info</SPAN></B></A><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; 
                                font-size: xx-small;">&nbsp; </SPAN></B></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="border: 1pt solid rgb(0,0,0);">
                            <P><IMG ID="Picture3" HEIGHT=353 WIDTH=625 SRC="http://www.edirectoffers.com/aobo/./aobofront23456.jpg" VSPACE=0 HSPACE=0 ALIGN="TOP" BORDER=0 USEMAP="#map0"><MAP NAME="map0"><AREA SHAPE=RECT ALT="" COORDS="125,5,183,19" HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><AREA
                                 SHAPE=RECT ALT="" COORDS="182,3,296,20" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"><AREA SHAPE=RECT ALT="" COORDS="295,1,406,20" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT=""
                                 COORDS="406,6,519,19" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=v3"><AREA SHAPE=RECT ALT="" COORDS="310,67,584,292" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT="" COORDS="16,28,307,341"
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"></MAP></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD WIDTH=16 STYLE="background-color: rgb(255,255,255); border-left: 1pt solid rgb(102,102,153); border-bottom: 1pt solid rgb(102,102,153);">
                            <P><SPAN STYLE="color: rgb(255,255,255);">.</SPAN></P>
                        </TD>
                        <TD COLSPAN=4 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(102,102,153); padding: 7px;">
                            <P><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><A HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO Completes Purchase of Soybean Protein Peptide Project</A>
                                <BR></SPAN></B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small; color: rgb(255,0,0);">January 28, 2003 12:06:00 PM ET</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><B>HONG KONG, Jan. 28 /PRNewswire-FirstCall/ -- American Oriental Bioengineering Inc. (OTC Bulletin Board: <A
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO</A>)</B>
                                 announced that its board of directors has approved the completion of the Soybean Protein Peptide project purchase, worth an estimated $40 million, effective immediately.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">On October 11, 2002, AOBO filed an Information Statement Pursuant to Section 14(c) of the Securities Exchange Act of 
                                1934, announcing that a total of 20,284,810 shares of Common Stock and 1,000,000 shares of Class A Preferred Stock will be issued by AOBO in consideration for 100% ownership interest in a soybean protein peptide 
                                biochemical engineering project (the &quot;Project&quot;) as described in the Purchase Agreement dated as of August 17, 2002 signed by Shujun Liu and AOBO. The value of the Common Stock to be issued is approximately 
                                $3,205,000, which is equivalent to $0.158 per share of common stock, which is the average of the closing price for the five-day period immediately following the date of the Purchase Agreement, August 19, 2002 to 
                                August 23, 2002. By acquiring the Project, among other assets, AOBO will acquire ownership of the building housing the Project's manufacturing plant, manufacturing equipment, and environmental control equipment of 
                                which the historical cost is approximately $3,205,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">In addition, AOBO will receive the right to produce the products that resulted from the Project as well as ownership 
                                rights on a pending patent in China for the process of the extraction and production of soybean peptide. The Project, including the production, marketing and sales of various functional soybean peptide medical 
                                tablets and powders, has a fair market value of $40,406,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">About American Oriental Bioengineering, Inc.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">American Oriental Bioengineering, Inc. is a leading Chinese nutracuetical company that uses proprietary processes for 
                                producing soybean protein peptide more efficiently than traditional extracting techniques. These techniques are used to manufacture and formulate supplemental and medicinal products. The Company focuses on new 
                                product research to combine biotechnology and Chinese medical technology to capture the increasing demand for traditional Chinese medicines and health supplements, both domestically and internationally. Soybean 
                                peptides are used widely in general food and health food products, sports foods, medicines, fermentation industry and in environmental protection applications</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Safe Harbor Statement</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Except for the historical statements made herein, the statements made in this release are forward-looking statements, 
                                including. Risk factors that could cause actual results to differ materially from those projected in forward-looking statements include, but are not limited to, general business conditions, managing growth, and 
                                political and other business risks. Although the Company believes that the forward-looking statements contained herein are reasonable, it can give no assurance that the Company's expectations are correct. All 
                                forward-looking statements are expressly qualified in their entirety by this Cautionary Statement and the risks and other factors detailed in the Company's reports filed with the Securities and Exchange Commission.</SPAN>
                            </P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">China Contact: Lily Li<BR>86-451-6666601<BR>F: 86-451-6690967<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:aobo@biosly.com"><SPAN STYLE=
                                "font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@biosly.com</SPAN></A><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><BR>
                                <BR>Hong Kong Contact: Clarence Chan<BR>852-9522-3111<BR>F: 852-2829-7410<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:sly@biosly.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">sly@biosly.com</SPAN></A>
                                <BR><BR><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Investor Contact: Harvey Goralnick/David Zazoff<BR>FOCUS Partners LLC<BR>212-752-9445<BR></SPAN><A
                                 HREF="http://www.edirectoffers.com/aobo/mailto:aobo@focuspartners.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@focuspartners.com</SPAN></A></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">&#169; 2003 PRNewswire</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><SPAN STYLE="color: rgb(0,51,102);"><B>more...</B><BR></SPAN><BR><B>
                                AOBO Completes Purchase of Soybean Protein Peptide Project</B><BR>12:06 pm - PR Newswire <BR>Friday January 24, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030124/nyf043_1.html"><B>
                                AOBO Expects to Have a Total of 65 Enuresis Soft Gel Clinics Operating in 2003</B></A><BR>9:14 am - PR Newswire <BR>Tuesday January 14, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030114/nytu090_1.html"><B>
                                AOBO Expands Into Japan; Signs LOI to Export Its Soybean Protein Peptide Products</B></A><BR>9:28 am - PR Newswire <BR>Monday January 6, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030106/nym123_1.html"><B>
                                AOBO Enters the Hong Kong Market</B></A><BR>10:25 am - PR Newswire&nbsp; </SPAN></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(102,102,153);">
                            <P></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); padding: 12px; border-top: 1pt solid rgb(0,0,0);">
                            <P STYLE="text-align: left;"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;"><SPAN STYLE="color: rgb(102,102,153);"><B>DISCLAIMER</B><BR></SPAN><SPAN STYLE=
                                "color: rgb(102,102,153);">This Email and Newsletter were sent to you as you requested information on <A HREF="http://www.edirectoffers.com">edirectoffers.com</A> of this nature.&nbsp; The views, discussion and opinions should be followed up with good research by your compliance department as well as your own researcher and/or advisor.&nbsp;&nbsp; This is a subscription mailing if you received this by email&nbsp; <A
                                 HREF="http://www.edirectoffers.com/Opt_Out/opt_out.html">To opt-out and never receive this newsletter again - Click Here and put unsubscribe in the subject line!</A>&nbsp; Very important removal instruction: To be 
                                removed you may do so via fax or email&nbsp; with the word unsubscribe and then your email address in the BODY of the message.. It should look like this &quot; unsubscribe youraddress@aol.com &quot;. The words in 
                                bold should be the only things written in the email .. It has to be done exactly that way. You must make sure you remove the address that we actually send mail to not a forwarded address..Thanks and sorry for any 
                                trouble.. </SPAN></SPAN></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD>
                            <P></P>
                        </TD>
                        <TD WIDTH=230>
                            <P></P>
                        </TD>
                        <TD WIDTH=128>
                            <P></P>
                        </TD>
                        <TD WIDTH=132>
                            <P></P>
                        </TD>
                        <TD WIDTH=121>
                            <P></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                    </TR>
                </TABLE>
            </TD>
        </TR>
    </TABLE>
</BODY>
</HTML>
 


From AOBO@edirectoffers.com Mon Feb 24 18:54:19 2003
Return-Path: <AOBO@edirectoffers.com>
Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1ONsIaN007092;
	Mon, 24 Feb 2003 18:54:19 -0500 (EST)
Message-Id: <200302242354.h1ONsIaN007092@netlib2.cs.utk.edu>
Received: from sccrmhc03.attbi.com (localhost[127.0.0.1])
          by sccrmhc03.attbi.com (sccrmhc03) with ESMTP
          id <200302242014380030005j0he>; Mon, 24 Feb 2003 20:14:42 +0000
X-Comment: AT&T Maillennium special handling code - x
Received: from newg (c-54-28-176-66.se.biz.attbi.com[66.176.28.54])
          by sccrmhc03.attbi.com (sccrmhc03) with SMTP
          id <2003022418225100300mm9soe>; Mon, 24 Feb 2003 18:23:05 +0000
X-Comment: AT&T Maillennium special handling code - x
From: "" <AOBO@edirectoffers.com>
To: "" <Loscompany@freemail.nl>, "" <mmunoz@cc.uantof.cl>,
   "" <tang@www.newimage.com.tw>, "" <bloomer@omen.net.au>,
   "" <dxg24@email.psu.edu>, "" <nick_hall@usa.net>, "" <ittek@sprynet.com>,
   "" <ricdiehl@pacbell.net>, "" <borsum@dascor.com>,
   "" <flint@krypton.tera.com>, "" <frenschecl@icon.co.za>,
   "" <cie90fpo@student.lth.se>, "" <samir@hotmail.com>,
   "" <sruffell@pgaero.co.uk>, "" <elscrapo@ix.netcom.com>,
   "" <m.catena@ifm-relay.inet.it>, "" <info@seetron.com>,
   "" <koloman_goetzl@yahoo.com>, "" <mm@ncs-net.com>,
   "" <jeff@dialup26.i-star.com>, "" <jeff@dialup13.i-star.com>,
   "" <rwolski@glasscity.net>, "" <bruno.schwander@technologist.com>,
   "" <gaus@alpha.fh-furtwangen.de>, "" <steve.brown@racalinst.co.uk>,
   "" <ramos_aurelio@emc.com>, "" <wkearson@gate.net>,
   "" <BFinn@bigpond.com.au>, "" <dcb@sirvys.com>, "" <hBTECH@MS16.HINET.NET>,
   "" <graml@biochem.mpg.de>, "" <DStephan@mail.ultratronik.de>,
   "" <willc@mediaone.net>, "" <digitech@niagara.com>, "" <tejasman2@aol.com>,
   "" <dave@dingbat.demon.co.uk>, "" <pjansen@execulink.com>,
   "" <wagnerl@earthlink.net>, "" <rvbaar@multiweb.nl>,
   "" <d55guy@engr.colostate.edu>, "" <student@sy.eni.com>,
   "" <parisy@labri.u-bordeaux.fr>, "" <bolesja@ece.orst.edu>,
   "" <jussi@koro.pp.fi>, "" <mkong@interlog.com>,
   "" <demitchel@worldnet.att.net>, "" <hee@asic.sec.samsung.co.kr>,
   "" <Mposey@ersi.com>, "" <erikoynl@netvigator.com>, "" <wmayewsky@ica.net>,
   "" <bab2610@unix.tamu.edu>, "" <gusr405@email.mot.com>,
   "" <kbookan@uwaterloo.uwaterloo.ca>, "" <st001796@hrzpub.tu-darmstadt.de>,
   "" <gembec@yahoo.com>, "" <desgronte@wilke.de>, "" <lmbraz@hotmail.com>,
   "" <vili@bgnet.bg>, "" <narasimha.kumar@intel.com>,
   "" <johnwong@cuhk.edu.hk>, "" <microboy@ix.netcom.com>,
   "" <tyler@eminent.net>, "" <desai@meru.com>, "" <axel.graf@zbs-ilmenau.de>,
   "" <sollie@mpinet.net>, "" <adrianrgc@yahoo.com>, "" <sallen@sirius.com>,
   "" <dongarra@CS.UTK.EDU>, "" <blast-funct@CS.UTK.EDU>,
   "" <m0vouYR-000iCjC@ishark.jf.intel.com>, "" <shane@ibeam.jf.intel.com>,
   "" <blast-funct@CS.UTK.EDU>, "" <199702051739.MAA21208@CS.UTK.EDU>,
   "" <lck@research.bell-labs.com>, "" <jglewis@redwood.rt.cs.boeing.com>,
   "" <199702212221.OAA09564@sulien.network-b>, "" <john.g.lewis@boeing.com>,
   "" <roger.g.grimes@boeing.com>, "" <jglewis@cs.washington.edu>,
   "" <sven@odin.nag.co.uk>, "" <199702251112.LAA25348@odin.nag.co.uk>,
   "" <sven@nag.co.uk>, "" <postmaster@CS.UTK.EDU>, "" <Nancy@email.com>,
   "" <20010304062923.2800A154C62@pop509-ec.mail.com>,
   "" <blast-funct-archive@netlib2.cs.utk.edu>,
   "" <blast-lb-archive@netlib2.cs.utk.edu>,
   "" <blast-lite-archive@netlib2.cs.utk.edu>,
   "" <blast-parallel-archive@netlib2.cs.utk.edu>,
   "" <blast-sparse-archive@netlib2.cs.utk.edu>,
   "" <biotechstox92@hotmail.com>, "" <385.843938.751234@hotmail.com>,
   "" <biotechinfo2007@yahoo.com>, "" <biotechsubscribe@yahoo.com>,
   "" <remobiotech@yahoo.com>, "" <christmaseveryday2001@yahoo.com>,
   "" <285.524316.109290@yahoo.com>, "" <beaconsubscribe@yahoo.com>,
   "" <beaconlistremo@yahoo.com>, "" <memorytogo@memorytogo4.com>
Cc: 
Date: Mon, 24 Feb 03 13:20:44 -0500
Subject: Press From AOBO
X-Mailer: ExclamationSoft Corporation Mail Version 2.0
X-MSMail-Priority: NORMAL
MIME-Version: 1.0
Content-Type: text/html;
	boundary="----=_ExClAmAtIoNsOfT_MaIl_PaRt_BoUnDaRy"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META NAME="Generator" CONTENT="NetObjects Fusion 5.0 for Windows">
<TITLE>AOBO</TITLE>
<script>
function invitepopup(url) {window.open(url,'artist','width='+540+',height='+500+',scrollbars=yes,status=no');
}
</script>
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./style.css">
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./site.css">
<STYLE>
</STYLE>
</HEAD>
<BODY STYLE="text-align: center; background-color: rgb(102,102,153);" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
    <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 NOF=LY>
        <TR VALIGN=TOP ALIGN=LEFT>
            <TD WIDTH=627>
                <TABLE ID="Table1" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=627>
                    <COLGROUP>
                    <COL WIDTH=16>
                    <COL WIDTH=230>
                    <COL WIDTH=128>
                    <COL WIDTH=132>
                    <COL WIDTH=121>
                    </COLGROUP>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(0,0,0); padding: 4px;">
                            <P STYLE="text-align: right;"><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">&nbsp;<A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html">Home Page</A> - </SPAN></B><A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><B><SPAN
                                 STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">Company Info</SPAN></B></A><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; 
                                font-size: xx-small;">&nbsp; </SPAN></B></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="border: 1pt solid rgb(0,0,0);">
                            <P><IMG ID="Picture3" HEIGHT=353 WIDTH=625 SRC="http://www.edirectoffers.com/aobo/./aobofront23456.jpg" VSPACE=0 HSPACE=0 ALIGN="TOP" BORDER=0 USEMAP="#map0"><MAP NAME="map0"><AREA SHAPE=RECT ALT="" COORDS="125,5,183,19" HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><AREA
                                 SHAPE=RECT ALT="" COORDS="182,3,296,20" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"><AREA SHAPE=RECT ALT="" COORDS="295,1,406,20" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT=""
                                 COORDS="406,6,519,19" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=v3"><AREA SHAPE=RECT ALT="" COORDS="310,67,584,292" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT="" COORDS="16,28,307,341"
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"></MAP></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD WIDTH=16 STYLE="background-color: rgb(255,255,255); border-left: 1pt solid rgb(102,102,153); border-bottom: 1pt solid rgb(102,102,153);">
                            <P><SPAN STYLE="color: rgb(255,255,255);">.</SPAN></P>
                        </TD>
                        <TD COLSPAN=4 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(102,102,153); padding: 7px;">
                            <P><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><A HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO Completes Purchase of Soybean Protein Peptide Project</A>
                                <BR></SPAN></B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small; color: rgb(255,0,0);">January 28, 2003 12:06:00 PM ET</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><B>HONG KONG, Jan. 28 /PRNewswire-FirstCall/ -- American Oriental Bioengineering Inc. (OTC Bulletin Board: <A
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO</A>)</B>
                                 announced that its board of directors has approved the completion of the Soybean Protein Peptide project purchase, worth an estimated $40 million, effective immediately.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">On October 11, 2002, AOBO filed an Information Statement Pursuant to Section 14(c) of the Securities Exchange Act of 
                                1934, announcing that a total of 20,284,810 shares of Common Stock and 1,000,000 shares of Class A Preferred Stock will be issued by AOBO in consideration for 100% ownership interest in a soybean protein peptide 
                                biochemical engineering project (the &quot;Project&quot;) as described in the Purchase Agreement dated as of August 17, 2002 signed by Shujun Liu and AOBO. The value of the Common Stock to be issued is approximately 
                                $3,205,000, which is equivalent to $0.158 per share of common stock, which is the average of the closing price for the five-day period immediately following the date of the Purchase Agreement, August 19, 2002 to 
                                August 23, 2002. By acquiring the Project, among other assets, AOBO will acquire ownership of the building housing the Project's manufacturing plant, manufacturing equipment, and environmental control equipment of 
                                which the historical cost is approximately $3,205,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">In addition, AOBO will receive the right to produce the products that resulted from the Project as well as ownership 
                                rights on a pending patent in China for the process of the extraction and production of soybean peptide. The Project, including the production, marketing and sales of various functional soybean peptide medical 
                                tablets and powders, has a fair market value of $40,406,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">About American Oriental Bioengineering, Inc.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">American Oriental Bioengineering, Inc. is a leading Chinese nutracuetical company that uses proprietary processes for 
                                producing soybean protein peptide more efficiently than traditional extracting techniques. These techniques are used to manufacture and formulate supplemental and medicinal products. The Company focuses on new 
                                product research to combine biotechnology and Chinese medical technology to capture the increasing demand for traditional Chinese medicines and health supplements, both domestically and internationally. Soybean 
                                peptides are used widely in general food and health food products, sports foods, medicines, fermentation industry and in environmental protection applications</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Safe Harbor Statement</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Except for the historical statements made herein, the statements made in this release are forward-looking statements, 
                                including. Risk factors that could cause actual results to differ materially from those projected in forward-looking statements include, but are not limited to, general business conditions, managing growth, and 
                                political and other business risks. Although the Company believes that the forward-looking statements contained herein are reasonable, it can give no assurance that the Company's expectations are correct. All 
                                forward-looking statements are expressly qualified in their entirety by this Cautionary Statement and the risks and other factors detailed in the Company's reports filed with the Securities and Exchange Commission.</SPAN>
                            </P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">China Contact: Lily Li<BR>86-451-6666601<BR>F: 86-451-6690967<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:aobo@biosly.com"><SPAN STYLE=
                                "font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@biosly.com</SPAN></A><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><BR>
                                <BR>Hong Kong Contact: Clarence Chan<BR>852-9522-3111<BR>F: 852-2829-7410<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:sly@biosly.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">sly@biosly.com</SPAN></A>
                                <BR><BR><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Investor Contact: Harvey Goralnick/David Zazoff<BR>FOCUS Partners LLC<BR>212-752-9445<BR></SPAN><A
                                 HREF="http://www.edirectoffers.com/aobo/mailto:aobo@focuspartners.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@focuspartners.com</SPAN></A></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">&#169; 2003 PRNewswire</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><SPAN STYLE="color: rgb(0,51,102);"><B>more...</B><BR></SPAN><BR><B>
                                AOBO Completes Purchase of Soybean Protein Peptide Project</B><BR>12:06 pm - PR Newswire <BR>Friday January 24, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030124/nyf043_1.html"><B>
                                AOBO Expects to Have a Total of 65 Enuresis Soft Gel Clinics Operating in 2003</B></A><BR>9:14 am - PR Newswire <BR>Tuesday January 14, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030114/nytu090_1.html"><B>
                                AOBO Expands Into Japan; Signs LOI to Export Its Soybean Protein Peptide Products</B></A><BR>9:28 am - PR Newswire <BR>Monday January 6, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030106/nym123_1.html"><B>
                                AOBO Enters the Hong Kong Market</B></A><BR>10:25 am - PR Newswire&nbsp; </SPAN></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(102,102,153);">
                            <P></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); padding: 12px; border-top: 1pt solid rgb(0,0,0);">
                            <P STYLE="text-align: left;"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;"><SPAN STYLE="color: rgb(102,102,153);"><B>DISCLAIMER</B><BR></SPAN><SPAN STYLE=
                                "color: rgb(102,102,153);">This Email and Newsletter were sent to you as you requested information on <A HREF="http://www.edirectoffers.com">edirectoffers.com</A> of this nature.&nbsp; The views, discussion and opinions should be followed up with good research by your compliance department as well as your own researcher and/or advisor.&nbsp;&nbsp; This is a subscription mailing if you received this by email&nbsp; <A
                                 HREF="http://www.edirectoffers.com/Opt_Out/opt_out.html">To opt-out and never receive this newsletter again - Click Here and put unsubscribe in the subject line!</A>&nbsp; Very important removal instruction: To be 
                                removed you may do so via fax or email&nbsp; with the word unsubscribe and the