Filewatcher File Search
FTP Search
  
Directory 
  
Content Search 
   
pkg://dbanner-1.02-7.src.rpm:28570/dbanner-1.02b5.tgz  info  downloads

dbanner-1.02/ 40700    764    765           0  6333000561  11716 5ustar  appjpackagesdbanner-1.02/Makefile100600    764    764        2350  6332777412  12647 0ustar  appjappj# Makefile for dbanner by Aristides P. Preto Jr. <appj@rnl.ist.utl.pt>
# Date: Sat Apr  5 18:33:26 GMT 1997

# Edit this for your preferences
#

# Name of dir (with / on end) where the manual page (dbanner.1) will be
DBAN_INSTALL_MANDIR=/usr/local/man/man1/

# Name of dir (with / on end) where fonts and config file will be 
DBAN_INSTALL_LIBDIR=/usr/local/lib/dbanner/

# Name of dir (with / on end) where binary will be
DBAN_INSTALL_BINDIR=/usr/local/bin/

CC=gcc

#
# Don't edit bellow this (or better: edit only if you have problems :-))
# Eg.: If you dont use gcc, then you probably will have to change the -Wall 
# and -O options of CFLAGS 

CFLAGS=-Wall -O -DDEFAULT_CONFIG_FILE_DIR='"$(DBAN_INSTALL_LIBDIR)"'

dbanner: banner.c config.h lang.h version.h
	$(CC) $(CFLAGS) banner.c -o $@


install: dbanner create_config
	install -d $(DBAN_INSTALL_LIBDIR)
	install -d $(DBAN_INSTALL_BINDIR)
	install -m 0644  fonts/dban_font_* $(DBAN_INSTALL_LIBDIR)
	install dbanner    $(DBAN_INSTALL_BINDIR)
	install -m 0644 .dbannerrc    $(DBAN_INSTALL_LIBDIR)
	install -d $(DBAN_INSTALL_MANDIR)
	install -m 0644 contrib/dbanner.1 $(DBAN_INSTALL_MANDIR)

create_config:
	./create_config_file $(DBAN_INSTALL_LIBDIR) > .dbannerrc

clean:
	rm dbanner .dbannerrc





dbanner-1.02/banner.c100600    764    764       24550  6332721375  12643 0ustar  appjappj/************************************************************
*
*      DRKBANNER
*
*      Programador : Aristides P. Preto Junior
* 
*      E-mail:       appj@rnl.ist.utl.pt
*
*
***/



#include <string.h>
#include <stdio.h>
#include <stdlib.h>

#include "config.h"
#include "lang.h"
#include "version.h"

#ifdef unix
#  ifndef __unix__
#    define __unix__
#  endif
#endif


#ifdef __unix__
#  define DIR_BAR "/"
#else
#  define DIR_BAR "\\"
#endif

#define N_DEFAULT_FONTS 1   /* numero default de fontes */
/* fontes e files das fontes */


#define help() fprintf(stderr,HELP_TEXT,VERSAO,width,CONFIG_FILE)

#define MAXFONTES 20
#define MAXBUF 500
#define MAXFNAME 80  /* nome maximo de uma file */
#define MAXCOL 80
#define MAXLIN 24
#define NCARAC 255        /* numero de caracteres existente */
#define INICIA_LETRA_STR  "BEGIN_CHAR"
#define TERMINA_LETRA_STR "END_CHAR"
#define DEFAULT_LETRA ' '
#define DEFAULT_WIDTH 80


/* 
  A little piece of *hack* in our lifes :-) 
  Now it **really** supports chars with ascii code up to 255 :-)
  I know, I should not do some like this... When I have more time (probably 
 never :-)), I will fix this the right way (defining only the relevants "chars"
 as "unsigned char" :-)
*/
#define char unsigned char

typedef struct
{
  char letra[MAXLIN][MAXCOL]; /* letra */
  int n_col;                  /* numero maximo de colunas usado */
}  letras_t;

typedef struct 
{
  char *fontname;      /* nome da fonte */
  char *pathtofont;    /* path (directoria) da file com a fonte */
  char *fontfilename;  /* nome da file com a fonte */
} fonte_t;



char *autor="DBANNER by Aristides P. Preto Jr.";

letras_t *letras[NCARAC],default_letra;
int n_lin;  /* No de linhas maximo ocupado */
int width= DEFAULT_WIDTH;
int n_fontes=N_DEFAULT_FONTS;
fonte_t fontes[MAXFONTES]=
{
  { DEFAULT_FONT_NAME, DEFAULT_FONT_PATH,DEFAULT_FONT_FILENAME }
};


/* Headers */
int read_font(char *);




/********************************************************
*
*    Tenta abrir a file de configuracao (na dir corrente
*  depois na $HOME e depois a default) 
*    Se nao conseguir usa os defaults
*
**/

int read_config()
{
  char buffer[MAXBUF]="";
  char f_name[MAXFNAME],f_path[MAXFNAME],f_filename[MAXFNAME];
  FILE *fp=fopen(CONFIG_FILE,"r");
  if (fp==NULL)
    { 
      /* tenta abrir config file segundo o ENVIRON */
      if ( (fp=fopen((char *)getenv(ENVIRON_CONFIG_FILE), "r" )) == NULL)
	{
	  /* tenta abrir a file de config na home dir */
	  sprintf(buffer,"%s%s%s",(char *)getenv("HOME"),DIR_BAR,CONFIG_FILE);
	  if ( (fp=fopen(buffer,"r"))==NULL ) 
	    {  /* tenta abrir a file de config default (sistema) */
	      sprintf(buffer,"%s%s",DEFAULT_CONFIG_FILE_DIR,CONFIG_FILE);
	      if ( (fp=fopen(buffer,"r"))==NULL ) 
		return(0);
	    }
	}
    }
  

  /* se chega aqui e pq conseguiu abrir a file de config. Le-a */
  n_fontes=0;
  while(!feof(fp)&&(n_fontes<MAXFONTES))
    {
      if (!fgets(buffer,MAXBUF-1,fp)) continue;
      if (sscanf(buffer,"%s %s %s",f_name,f_path,f_filename)!=3) continue;
      fontes[n_fontes].fontname=strdup(f_name);
      fontes[n_fontes].pathtofont=strdup(f_path);
      fontes[n_fontes].fontfilename=strdup(f_filename);
      n_fontes++;
    }
  fclose(fp);
  return(1);
}


/********************************************************************
*
*  Esta funcao descobre qual a fonte a ser usada e preenche o
* array letras com a determinada fonte 
*
***/

int get_font(char *font_name)
{
  int i;
  char buffer[MAXBUF];
  for (i=0;i<n_fontes;i++)
    if (strcasecmp(font_name,fontes[i].fontname)==0) break;
  
  /* font_name deve ser o nome da file com a fonte... try to open */
  if (i>=n_fontes) 
      return((int)read_font(font_name));

  /* a fonte existe! tentar le-la */
  sprintf(buffer,"%s%s",fontes[i].pathtofont,fontes[i].fontfilename);
  if ( read_font(buffer) )
    return(1);

  /*  Erro na path... tentar na dir local */
  return ((int) read_font(fontes[i].fontfilename));
}



/*****************************************************
*  
*  filtra a string de \n 's 
*
**/


int filtra(char *buffer,int max)
{
  int i;
  for(i=0;i<max;i++)
    if (buffer[i]=='\n') 
      buffer[i]=' ';
  return(1);
}


/***************************************************
*
*  le um caracter
*
**/


letras_t *get_chr(FILE *fp)
{
  char buffer[MAXBUF];
  letras_t *letra_buff=(letras_t*)malloc(sizeof(letras_t));
  int i=0;

  if (letra_buff==NULL)
    return(NULL);
     
  memset(letra_buff,0,sizeof(letras_t));
  while  ( (!feof(fp)) && (i<MAXLIN) )
    {
      fgets(buffer,MAXBUF-1,fp);
      filtra(buffer,MAXBUF);
      if (strstr(buffer,TERMINA_LETRA_STR)) 
	break;
      else
	strncpy(letra_buff->letra[i++],buffer,MAXCOL-1);
    }
  return(letra_buff);
}


/*****************************************************
*
*   Preenche a letra default (' ')
*
**/

int preenche_letra_default()
{
  int n_col_media=0; /* numero medio de colunas */
  int n_letras=0;    /* numero total de letras para tirar a media */
  int i,j;
  for(i=0;i<NCARAC;i++)
    if (letras[i])
      {
	n_col_media+=strlen(letras[i]->letra[1]);
	n_letras++;
      }

  /* faz a media */
  n_col_media=n_col_media/n_letras;
  for(i=0;i<n_col_media;i++)
    for(j=0;j<n_lin;j++)
      default_letra.letra[j][i]=DEFAULT_LETRA;
  default_letra.n_col=n_col_media;
  letras[DEFAULT_LETRA]=&default_letra;
  return(1);
}


/****************************************
*
*  Descobre o No Max. de linhas e colunas 
* usado por esta fonte
*
**/

void update_col_lin()
{
  int chr,i;
  for(chr=0;chr<NCARAC;chr++)
    {
      if (letras[chr]==NULL) continue;
      for (i=0; ( (i<MAXLIN) && ( strlen(letras[chr]->letra[i]) > 0) ) ;i++)
	if (strlen(letras[chr]->letra[i]) > letras[chr]->n_col)
	  letras[chr]->n_col=strlen(letras[chr]->letra[i]);

      if (i>n_lin) 
	n_lin=i;
    }

}


/****************************************
*
*   Le a fonte para o array de letras
*
**/

int read_font(char *fontfilename)
{
  FILE *fp=fopen(fontfilename,"r");
  char buffer[MAXBUF];
  int i;
  char chr=0;

  if (fp==NULL)
    return(0);
  
  for(i=0;i<NCARAC;i++)
    letras[i]=NULL;

  while(!feof(fp))  /* le-se todos os char's ascii (se existirem) */
    {
      if (!fgets(buffer,MAXBUF-1,fp)) continue;
      if (strstr(buffer,INICIA_LETRA_STR))
	{
	  if (sscanf(buffer,"%*s %c",&chr)!=1) continue;
	  letras[(int)chr]=get_chr(fp);
	}
    }
  fclose(fp);
 
  update_col_lin();

  /* preencher a letra default */
  preenche_letra_default();

  return(1);
}

/******************************************************
*
*   Escreve o actual buffer com as fontes em letras
*
**/

int write_buffer(char *buffer)
{
  char change_line=0;  /* se linha nao deu diz onde continua */
  char printf_fmt[10]=""; /* formato do printf */
  int conta_col=0; /* conta as colunas ja usadas */
  int n_col=0;
  char *linha="";
  int i,    /* linhas */
      j;    /* letra actual do buffer */


  for(i=0;i<n_lin;i++)  /* escrever todas as 1a's linhas de cada letra */
    {
      for (j=0,conta_col=0 ; buffer[j] ; j++)
	{
	  if (letras[(int)buffer[j]])
	    {
	      linha=letras[(int)buffer[j]]->letra[i];
	      n_col=letras[(int)buffer[j]]->n_col;
	    }
	  else
	    {
	      linha=letras[DEFAULT_LETRA]->letra[i];
	      n_col=letras[DEFAULT_LETRA]->n_col;
	    }

	  sprintf(printf_fmt,"%%-%d.%ds",n_col,n_col);
	  if ( (conta_col+=n_col)  >= width ) 
	    {  /* nao coube nesta linha... passar pra outra */
	      if ( (buffer[j]=='\n') || (buffer[j]==' ') )
		change_line=j+1; /* nao comeca linha com espacos (ou \n) */
	      else
		change_line=j;
	      break;
	    }
	  printf(printf_fmt,linha);
	}
#ifdef __unix__
      printf("\n");
#else
      printf("\r\n");
#endif
    }

  if (change_line)
    write_buffer(buffer+change_line);
  return(0);

}

/************************************************************
*
*    Manda mensagem de erro e sai do programa 
*
***/

int erro()
{
 fprintf(stderr,USO);
 exit(1);
}


/**********************************************************
*
* Mostra as fontes disponiveis
*
****/

int mostra_fontes()
{
  int i;
  fprintf(stderr,FONTS_AVAILABLE);
  for(i=0;i<n_fontes;i++)
    fprintf(stderr,"  (%d) - %s\n",i+1,fontes[i].fontname);
  return(1);
}

/*********************************************************
*
*   Main() - processamento dos argumentos e processamento
* principal (processa o -s e caso nao haja argumentos ).
*
**/


int main(int argc,char *argv[])
{
  int i;
  char exec_arg=0; /* diz se o arg e valido */ 
  char buffer[MAXBUF]="";
  char *fonte_name=DEFAULT_FONT_NAME;

  read_config();
  
  /* interpretar argumentos */
  for (i=1;i<argc;i++)
    {

      if (strstr(argv[i],"-h"))  /* help */
	{
	  exec_arg=1;
	  help();
	  exit(0);
	}

      if (strstr(argv[i],"-f"))  /* tipo de fonte */
	{
	  exec_arg=1;
	  if (++i>=argc) 
	    {
	      mostra_fontes();
	      erro();  /* sai do programa */
	    }
	  fonte_name=(char *)argv[i];
	}

      if (strstr(argv[i],"-o")) /* redirecciona stdout */
	{  
	  exec_arg=1;
	  if (++i>=argc) erro();  /* sai do programa */
	  if ( freopen(argv[i],"a",stdout)==NULL )
	    {
	      fprintf(stderr,OPEN_ERROR_s,argv[i]);
	      exit(1);
	    }
	}


      if (strstr(argv[i],"-i")) /* redirecciona stdin */
	{ 
	  exec_arg=1;
	  if (++i>=argc) erro();  /* sai do programa */
	  if ( freopen(argv[i],"r",stdin)==NULL )
	    {
	      fprintf(stderr,OPEN_ERROR_s,argv[i]);
	      exit(1);
	    }
	}

      if (strstr(argv[i],"-w"))   /* muda o width */
	{
	  exec_arg=1;
	  if (++i>=argc) erro();  /* sai do programa */
	  if ( (width=atoi(argv[i])) <=0 ) 
	    erro();  /* sai do programa */
	}

      if (strstr(argv[i],"-s"))  /* tudo daqui pra frente sera escrito */
        {
	  exec_arg=1;
	  if (i+1>=argc) 
	    erro();
	  
	  if (!get_font(fonte_name))
	    {
	      fprintf(stderr,FONT_s_NOEXIST,fonte_name);
	      erro();  /* sai do programa */
	    }

	  while (++i<argc)
	    {
	      if ( strlen(argv[i]) >= (strlen(buffer)+strlen(argv[i])+3) )
		{
		  write_buffer(buffer); 
		  strcpy(buffer,"");
		}
	      else
		{
		  strcat(buffer,argv[i]);
		  strcat(buffer," ");
		}
	    }
	  write_buffer(buffer); 
	  exit(0);
	}


  }  /* termina ciclo de processamento dos argumentos */


  if ( (exec_arg==0) && (argc>1) )
    {
      fprintf(stderr,ARG_INVALIDO);
      erro();
    }
  
  if (!get_font(fonte_name))
    {
      fprintf(stderr,FONT_s_NOEXIST,fonte_name);
      mostra_fontes();
      erro(); /* sai do programa */
    }


 /* faz o processamento stdin->stdout */
  while(fgets(buffer,MAXBUF-1,stdin))
    write_buffer(buffer);

  return(0);
}






dbanner-1.02/config.h100600    764    764        3556  6323143734  12630 0ustar  appjappj/*
  dbanner by Aristides P. Preto Jr. - Fri Mar 21 11:22:43 GMT 1997
  Compile-time Configuration file.
  Edit to suit to your needs
*/

#ifndef __CONFIG_H__
#define __CONFIG_H__

/*
  Define the language for help texts and error messages.
  Uncomment just one of these LANGUAGE_* #defines.
  Default is English
   - Polish language support by Dawid Kuroczko (dk@pipeta.krakow.linux.org.pl)
   - Russian language support by Kitya Karlson (karlson@karlson.mccme.ru)
*/
/*
#define LANGUAGE_PORTUGUESE
#define LANGUAGE_POLISH
#define LANGUAGE_RUSSIAN
*/
#define LANGUAGE_ENGLISH

/*

** This one is probably the only thing you will want to change!!!

  This is the dir where the program will search for configuration file, AFTER 
  trying on actual dir, and $HOME.
  First, it will try to open ./CONFIG_FILE
  if unsucessfull, it will try the environment variable DBANNER_CONFIG_FILE
  if unsucessfull, it will try  $HOME/CONFIG_FILE
  if unsusessfull, it will try  DEFAULT_CONFIG_FILE_DIR/CONFIG_FILE
  if unsucessfull (ouch...), will use internal (default) config.
*/

#ifndef DEFAULT_CONFIG_FILE_DIR
#define DEFAULT_CONFIG_FILE_DIR "/usr/local/lib/dbanner/"
#endif



/*
  Bellow here you probably will not want to change anything
*/

/* 
   This is the name of configuration file (only name, not path)
*/
#ifdef __unix__
#  define CONFIG_FILE ".dbannerrc"
#else
#  define CONFIG_FILE "dbanner.cfg"
#endif

/*
  This is the Environment Variable name that holds the name (full path) to the
  config file
*/
#ifndef ENVIRON_CONFIG_FILE
#define ENVIRON_CONFIG_FILE "DBANNER_CONFIG_FILE"
#endif


/*
  Here are the internal default configuration (hardcoded on program). 
  Only needed if it can't find none of the config files.
*/
#define DEFAULT_FONT_NAME     "normal"
#define DEFAULT_FONT_PATH     "/usr/local/lib/dbanner/"
#define DEFAULT_FONT_FILENAME "dban_font_normal"


#endif /* __CONFIG_H__*/



dbanner-1.02/create_config_file100700    764    764         470  6314510330  14663 0ustar  appjappj#!/bin/sh
# This create a dbanner config file for all the fonts standing in 
# the current dorectory
# Take as argument the target fonts directory
# By aristides P. Preto Jr. - Fri Mar 21 12:53:58 GMT 1997

for i in `ls fonts/dban_font_*` 
do
    echo `echo $i | cut -c 17-100` $1 `echo $i | cut -c 7-100` 
done
dbanner-1.02/OLD-README100600    764    764        4043  5743256240  12500 0ustar  appjappjDRKBANNER

Este programa permite transformar texto ascii em letras grandes.
As fontes podem mudar, conforme a vontade do utilizador.

* Ficheiro de configuracao


 1) Onde fica o ficheiro

  O programa, qdo arranca, tenta ler um ficheiro de configuracao ('.drkbanrc'
 em unix, 'drkban.cfg' em outros sistemas). Primeiro procura esse ficheiro na
 directoria corrente. Em insucesso, procura-o na directoria $HOME do user (em
 unix). Em insucesso tenta abrir o fich. de configuracao default do sistema, 
 definido na hora da compilacao. Caso nao consiga abrir nenhum desses fichei-
 ros, entao usa os default's, definidos na hora da compilacao.

 2) Formato do ficheiro 
   
  O ficheiro de configuracao deve ter suas linhas com o seguinte formato:

 <nome_da_fonte> <directoria_da_fonte> <ficheiro_com_a_fonte>  

  As 'strings' <nome_da_fonte>, <directoria_da_fonte> e 
 <ficheiro_com_a_fonte> nao devem ter espacos.
 Exemplo de ficheiro de configuracao (em unix):

 normal  /usr/local/bin/drkbanner/ .drkban_fonte_normal
 gothic  /usr/local/bin/drkbanner/ .drkban_fonte_gothic

 Deste modo, qdo se fizer drkban -f as fontes que aparecerao serao 
 (1) - normal
 (2) - gothic





** Ficheiro com as fontes


  1) Onde ficam os ficheiros.

  Podem ficar ou na directoria corrente ou numa directoria especifica.
  Ao se fazer drkban -f <nome_da_fonte> primeiro o programa verifica se 
 <nome_da_fonte> esta especificado no fich. de configuracao. Se estiver, abre
  o ficheiro correspondente a fonte. Se nao estiver no fich de config., entao
  tenta abrir na directoria corrente um ficheiro chamado <nome_da_fonte>

 2) Formato do ficheiro
  
  O ficheiro deve ter o seguinte formato:

INICIA_LETRA <caracter>
.
. (desenho do caracter)
. 
TERMINA_LETRA

  Exemplo:


INICIA_LETRA A
  ___  
 / _ \ 
| |_| |
|  _  |
| | | |
|_| |_|
TERMINA_LETRA

INICIA_LETRA B
 ____  
|  _ \ 
| |_) |
|  _ < 
| |_) |
|____/ 
TERMINA_LETRA



*** Creditos:

  Este programa foi feito por Aristides P. Preto Jr. (DRK Soft.)
  Bugs, sugestoes, $$$, etc favor contactar:
  
  l38061@alfa.ist.utl.pt









dbanner-1.02/fonts/ 40700    764    764           0  6322222423  12223 5ustar  appjappjdbanner-1.02/fonts/dban_font_normal100600    764    764       22514  6314474617  15612 0ustar  appjappjBEGIN_CHAR A
  ___  
 / _ \ 
| |_| |
|  _  |
| | | |
|_| |_|
END_CHAR

BEGIN_CHAR B
 ____  
|  _ \ 
| |_) |
|  _ < 
| |_) |
|____/ 
END_CHAR

BEGIN_CHAR C
  _____ 
 / ____|
| |     
| |     
| |____ 
 \_____|
END_CHAR

BEGIN_CHAR D
 _____   
|  __ \  
| |  | | 
| |  | | 
| |__| | 
|_____/  
END_CHAR

BEGIN_CHAR E
 ______ 
|  ____|
| |__   
|  __|  
| |____ 
|______|
END_CHAR

BEGIN_CHAR F
 ______ 
|  ____|
| |__   
|  __|  
| |     
|_|     
END_CHAR

BEGIN_CHAR G
  _____ 
 / ____|
| |  __ 
| | |_ |
| |__| |
 \_____|
END_CHAR

BEGIN_CHAR H
 _    _ 
| |  | |
| |__| |
|  __  |
| |  | |
|_|  |_|
END_CHAR

BEGIN_CHAR I
 _____ 
|_   _|
  | |  
  | |  
 _| |_ 
|_____|
END_CHAR

BEGIN_CHAR J
      _ 
     | |
     | |
 _   | |
| |__| |
 \____/ 
END_CHAR
BEGIN_CHAR K
 _  __
| |/ /
| ' / 
|  <  
| . \ 
|_|\_\
END_CHAR
BEGIN_CHAR L
 _      
| |     
| |     
| |     
| |____ 
|______|
END_CHAR
BEGIN_CHAR M
 __  __ 
|  \/  |
| \  / |
| |\/| |
| |  | |
|_|  |_|
END_CHAR
BEGIN_CHAR N
 _   _ 
| \ | |
|  \| |
| . ` |
| |\  |
|_| \_|
END_CHAR
BEGIN_CHAR O
  ____  
 / __ \ 
| |  | |
| |  | |
| |__| |
 \____/ 
END_CHAR
BEGIN_CHAR P
 _____  
|  __ \ 
| |__) |
|  ___/ 
| |     
|_|     
END_CHAR
BEGIN_CHAR Q
  ____  
 / __ \ 
| |  | |
| |  | |
| |__| |
 \___\_\
END_CHAR
BEGIN_CHAR R
 _____  
|  __ \ 
| |__) |
|  _  / 
| | \ \ 
|_|  \_\
END_CHAR
BEGIN_CHAR S
 ______ 
/  ____|
| (___  
 \___ \ 
.____) |
\_____/ 
END_CHAR
BEGIN_CHAR T
 _______ 
|__   __|
   | |   
   | |   
   | |   
   |_|   
END_CHAR
BEGIN_CHAR U
 _    _ 
| |  | |
| |  | |
| |  | |
| |__| |
 \____/ 
END_CHAR
BEGIN_CHAR V
__      __
\ \    / /
 \ \  / / 
  \ \/ /  
   \  /   
    \/    
END_CHAR
BEGIN_CHAR W
__          __
\ \        / /
 \ \  /\  / / 
  \ \/  \/ /  
   \  /\  /   
    \/  \/    
END_CHAR
BEGIN_CHAR X
__   __
\ \ / /
 \ V / 
  > <  
 / . \ 
/_/ \_\
END_CHAR
BEGIN_CHAR Y
__     __
\ \   / /
 \ \_/ / 
  \   /  
   | |   
   |_|   
END_CHAR
BEGIN_CHAR Z
  ______
 /___  /
    / / 
   / /  
  / /__ 
 /_____|
END_CHAR
      
BEGIN_CHAR a        
       
       
  __ _ 
 / _` |
| (_| |
 \__,_|
END_CHAR
BEGIN_CHAR b        
 _     
| |    
| |__  
| '_ \ 
| |_) |
|_.__/ 
END_CHAR             
BEGIN_CHAR c
      
      
  ___ 
 / __|
| (__ 
 \___|
END_CHAR                  
                  
BEGIN_CHAR d
     _  
    | | 
  __| | 
 / _` | 
| (_| | 
 \__,_| 
END_CHAR                       
BEGIN_CHAR e                      
      
      
  ___ 
 / _ \
|  __/
 \___|
END_CHAR                            
BEGIN_CHAR f                           
  __ 
 / _|
| |_ 
|  _|
| |  
|_|  
END_CHAR
BEGIN_CHAR g                              
  __ _ 
 / _` |
| (_| |
 \__, |
  __/ |
 |___/ 
END_CHAR
BEGIN_CHAR h                                    
 _     
| |    
| |__  
| '_ \ 
| | | |
|_| |_|
END_CHAR                                           
BEGIN_CHAR i                                          
 _  
(_) 
 _  
| | 
| | 
|_| 
END_CHAR                                          
BEGIN_CHAR j                                          
   _ 
  (_)
  | |
  | |
 _/ |
|__/ 
END_CHAR              
BEGIN_CHAR k                                
 _    
| |   
| | _ 
| |/ /
|   < 
|_|\_\
END_CHAR                                                      
BEGIN_CHAR l
 _  
| | 
| | 
| | 
| | 
|_| 
END_CHAR                                               
BEGIN_CHAR m            
           
           
 _ __ ___  
| '_ ` _ \ 
| | | | | |
|_| |_| |_|
END_CHAR              
BEGIN_CHAR n
       
       
 _ __  
| '_ \ 
| | | |
|_| |_|
END_CHAR
BEGIN_CHAR o  
       
       
  ___  
 / _ \ 
| (_) |
 \___/ 
END_CHAR


       _             _       __      _     _ _ _    _
      | |           | |     / _|    | |   (_|_) |  | |
  __ _| |__   ___ __| | ___| |_ __ _| |__  _ _| | _| |_ __ ___  _ __   ___
 / _` | '_ \ / __/ _` |/ _ \  _/ _` | '_ \| | | |/ / | '_ ` _ \| '_ \ / _ \
| (_| | |_) | (_| (_| |  __/ || (_| | | | | | |   <| | | | | | | | | | (_) |
 \__,_|_.__/ \___\__,_|\___|_| \__, |_| |_|_| |_|\_\_|_| |_| |_|_| |_|\___/
                                __/ |      _/ |
                               |___/      |__/

                      _
                     | |
 _ __   __ _ _ __ ___| |_ _   ___   ____      ____  ___   _ ____
| '_ \ / _` | '__/ __| __| | | \ \ / /\ \ /\ / /\ \/ / | | |_  /
| |_) | (_| | |  \__ \ |_| |_| |\ V /  \ V  V /  >  <| |_| |/ /
| .__/ \__, |_|  |___/\__|\__,_| \_/    \_/\_/  /_/\_\\__, /___|
| |       | |                                          __/ |
|_|       |_|                                         |___/


       
                                                                   
BEGIN_CHAR p         
 _ __  
| '_ \ 
| |_) |
| .__/ 
| |    
|_|    
END_CHAR
BEGIN_CHAR q 
  __ _ 
 / _` |
| (_| |
 \__, |
    | |
    |_|
END_CHAR
BEGIN_CHAR r                    
      
      
 _ __ 
| '__|
| |   
|_|   
END_CHAR                 
BEGIN_CHAR s          
      
      
 ___  
/ __| 
\__ \ 
|___/ 
END_CHAR                      
BEGIN_CHAR t                       
 _    
| |   
| |_  
| __| 
\ |_  
 \__| 
END_CHAR                         
BEGIN_CHAR u                           
       
       
 _   _ 
| | | |
| |_| |
 \__,_|
END_CHAR                                
BEGIN_CHAR v        
       
       
__   __
\ \ / /
 \ V / 
  \_/  
END_CHAR                                      
BEGIN_CHAR w                                        
          
          
__      __
\ \ /\ / /
 \ V  V / 
  \_/\_/  
END_CHAR                                                
BEGIN_CHAR x  
       
       
__  __ 
\ \/ / 
 >  <  
/_/\_\ 
END_CHAR
BEGIN_CHAR y                                                       
 _   _  
| | | | 
| |_| | 
 \__, | 
  __/ | 
 |___/  
END_CHAR                
BEGIN_CHAR z
      
      
 ____ 
|_  / 
 / /  
/___| 
END_CHAR
BEGIN_CHAR 1  
 __ 
/_ |
 | |
 | |
 | |
 |_|
END_CHAR
BEGIN_CHAR 2     
 ___  
|__ \ 
   ) |
  / / 
 / /_ 
|____|
END_CHAR        
BEGIN_CHAR 3
 ____  
|___ \ 
  __) |
 |__ < 
 ___) |
|____/ 
END_CHAR              
BEGIN_CHAR 4
 _  _   
| || |  
| || |_ 
|__   _|
   | |  
   |_|  
END_CHAR
BEGIN_CHAR 5                       
 _____ 
| ____|
| |__  
|___ \ 
 ___) |
|____/ 
END_CHAR
BEGIN_CHAR 6                             
   __  
  / /  
 / /_  
| '_ \ 
| (_) |
 \___/ 
END_CHAR
                
BEGIN_CHAR 7
_______
|___  /
   / / 
  / /  
 / /   
/_/    
END_CHAR
BEGIN_CHAR 8
  ___  
 / _ \ 
| (_) |
 > _ < 
| (_) |
 \___/ 
END_CHAR
BEGIN_CHAR 9                                             
  ___  
 / _ \ 
| (_) |
 \__, |
   / / 
  /_/  
END_CHAR
BEGIN_CHAR 0                                                   
  ___  
 / _ \ 
| | | |
| | | |
| |_| |
 \___/ 
END_CHAR
BEGIN_CHAR !  
 _ 
| |
| |
| |
|_|
(_)
END_CHAR          
BEGIN_CHAR @    
   ____  
  / __ \ 
 / / _` |
| | (_| |
 \ \__,_|
  \____/ 
END_CHAR
BEGIN_CHAR #            
   _  _   
 _| || |_ 
|_  __  _|
 _| || |_ 
|_  __  _|
  |_||_|  
END_CHAR
BEGIN_CHAR $                     
  _  
 | | 
/ __)
\__ \
(   /
 |_| 
END_CHAR                       
BEGIN_CHAR %                        
 _   __
(_) / /
   / / 
  / /  
 / / _ 
/_/ (_)
END_CHAR
BEGIN_CHAR &                                       
        
  ___   
 ( _ )  
 / _ \/\
| (_>  <
 \___/\/
END_CHAR
BEGIN_CHAR *                                      
    _    
 /\| |/\ 
.\ ` ' /.
\_     _|
 / , . \ 
 \/|_|\/ 
END_CHAR                                            
BEGIN_CHAR (                                
  __
 / /
| | 
| | 
| | 
 \_\
END_CHAR
BEGIN_CHAR )                                                  
__  
\ \ 
 | |
 | |
 | |
/_/ 
END_CHAR
BEGIN_CHAR ~  
       
       
 /\/|  
|/\/   
       
       
END_CHAR         
BEGIN_CHAR -           
         
         
 ______  
|______| 
         
         
END_CHAR
BEGIN_CHAR _  
         
         
         
         
 ______  
|______| 
END_CHAR             
BEGIN_CHAR +
       
   _   
 _| |_ 
|_   _|
  |_|  
       
END_CHAR                 
BEGIN_CHAR =
 ______ 
|______|
 ______ 
|______|
        
        
END_CHAR                         
BEGIN_CHAR >
    
__  
\ \ 
 \ \
 / /
/_/ 
END_CHAR                
BEGIN_CHAR <
    
  __
 / /
/ / 
\ \ 
 \_\
END_CHAR
                            
BEGIN_CHAR ]
 ___ 
|_  |
  | |
  | |
 _| |
|___|
END_CHAR                
BEGIN_CHAR [ 
 ___ 
|  _|
| |  
| |  
| |_ 
|___|
END_CHAR                                       
BEGIN_CHAR :
  _  
 (_| 
     
  _  
 (_| 
     
END_CHAR
BEGIN_CHAR ; 
 _  
|_) 
    
 _  
| ) 
|/  
END_CHAR
BEGIN_CHAR "                                            
 _ _ 
( | )
 V V 
     
     
     
END_CHAR
BEGIN_CHAR |  
 _
| |
| |
| |
| |
|_|
END_CHAR
BEGIN_CHAR \
__     
\ \    
 \ \   
  \ \  
   \ \ 
    \_\
END_CHAR                                                   
BEGIN_CHAR '
 _ 
( )
|/ 
   
   
   
END_CHAR             
BEGIN_CHAR `  
 _ 
( )
 \|
   
   
   
END_CHAR 
BEGIN_CHAR ,        
   
   
   
 _ 
( )
|/ 
END_CHAR                                                           
BEGIN_CHAR .   
   
   
   
   
 _ 
(_)
END_CHAR
BEGIN_CHAR ?                                                             
 ___  
|__ \ 
   ) |
  / / 
 |_|  
 (_)  
END_CHAR
BEGIN_CHAR /
     __
    / /
   / / 
  / /  
 / /   
/_/    
END_CHAR                                                          
BEGIN_CHAR } 
__    
\ \   
 \ \  
  > > 
 / /  
/_/   
END_CHAR                                                          
BEGIN_CHAR { 
   __ 
  / / 
 / /  
< <   
 \ \  
  \_\ 
END_CHAR                                                          
                                                   


 






dbanner-1.02/fonts/dban_font_fat100600    764    764        7450  6314525201  15040 0ustar  appjappjBEGIN_CHAR a
 _____ 
/  _  \
|  _  |
\_/ \_/
END_CHAR
BEGIN_CHAR  b
 _____ 
|  __ \
|  __ <
|_____/
END_CHAR
BEGIN_CHAR  c
 _____ 
/     \
|  <--<
\_____/
END_CHAR
BEGIN_CHAR d             
 ____  
|    \ 
|  |  |
|____/ 
END_CHAR
BEGIN_CHAR  e                    
 _____ 
|  ___|
|  ___|
|_____|
END_CHAR
BEGIN_CHAR   f                           
 _____ 
|  ___|
|  __| 
|__|   
END_CHAR
BEGIN_CHAR    g                                  
 _____ 
/  ___\
|  \_ \
\_____/
END_CHAR
BEGIN_CHAR h
 __   __ 
|  |_|  |
|   _   |
|__| |__|
END_CHAR
BEGIN_CHAR  i                                                      
 __
|  |
|  |
|__|
END_CHAR
BEGIN_CHAR j
    __ 
 __|  |
|  |  |
\_____/
END_CHAR
BEGIN_CHAR k
 __  ___
|  |/  /
|     < 
|__|\__\
END_CHAR
BEGIN_CHAR  l    
 __    
|  |   
|  |__ 
|_____|
END_CHAR
BEGIN_CHAR   m           
 __  __ 
|  \/  |
|      |
|_|\/|_|
END_CHAR
BEGIN_CHAR n
 __  __ 
|  \|  |
|      |
|__|\__|
END_CHAR
BEGIN_CHAR  o                              
 _____ 
/     \
|  |  |
\_____/
END_CHAR
BEGIN_CHAR p                                     
 ____ 
|  _ \
|  __/
|__|  
END_CHAR
BEGIN_CHAR  q                                             
 _____ 
/     \
|  |  |
\____ \
END_CHAR
BEGIN_CHAR r                                                      
 _____
|  _  \
|     /
|__|__\
END_CHAR
BEGIN_CHAR s
 _____ 
/  ___>
\___  \
<_____/
END_CHAR
BEGIN_CHAR t
 ______ 
|_    _|
  |  |  
  |__|  
END_CHAR
BEGIN_CHAR  u   
 __  __ 
|  ||  |
|  `'  |
 \____/ 
END_CHAR
BEGIN_CHAR   v            
___  ___
\  \/  /
 \    / 
  \__/  
END_CHAR
BEGIN_CHAR  w                     
 __    __ 
|  |/\|  |
|        |
 \__/\__/ 
END_CHAR
BEGIN_CHAR x                                  
___  ___ 
\  \/  / 
 >    <  
/__/\__\ 
END_CHAR
BEGIN_CHAR  y                                             
___  ___
\  \/  /
 \    / 
  |__|  
END_CHAR
BEGIN_CHAR z                                                      
 _____
|_   /
 /  /_
/_____|
END_CHAR


BEGIN_CHAR A
 _____ 
/  _  \
|  _  |
\_/ \_/
END_CHAR
BEGIN_CHAR  B
 _____ 
|  __ \
|  __ <
|_____/
END_CHAR
BEGIN_CHAR  C
 _____ 
/     \
|  <--<
\_____/
END_CHAR
BEGIN_CHAR D           
 ____  
|    \ 
|  |  |
|____/ 
END_CHAR
BEGIN_CHAR E                   
 _____ 
|  ___|
|  ___|
|_____|
END_CHAR
BEGIN_CHAR   F                          
 _____ 
|  ___|
|  __| 
|__|   
END_CHAR
BEGIN_CHAR    G                                 
 _____ 
/  ___\
|  \_ \
\_____/
END_CHAR
BEGIN_CHAR H
 __   __ 
|  |_|  |
|   _   |
|__| |__|
END_CHAR
BEGIN_CHAR  I                                                     
 __
|  |
|  |
|__|
END_CHAR
BEGIN_CHAR J
    __ 
 __|  |
|  |  |
\_____/
END_CHAR
BEGIN_CHAR K
 __  ___
|  |/  /
|     < 
|__|\__\
END_CHAR
BEGIN_CHAR  L   
 __    
|  |   
|  |__ 
|_____|
END_CHAR
BEGIN_CHAR   M
 __  __ 
|  \/  |
|      |
|_|\/|_|
END_CHAR
BEGIN_CHAR N
 __  __ 
|  \|  |
|      |
|__|\__|
END_CHAR
BEGIN_CHAR  O                            
 _____ 
/     \
|  |  |
\_____/
END_CHAR
BEGIN_CHAR P                                   
 ____ 
|  _ \
|  __/
|__|  
END_CHAR
BEGIN_CHAR  Q                                            
 _____ 
/     \
|  |  |
\____ \
END_CHAR
BEGIN_CHAR R                                                   
 _____
|  _  \
|     /
|__|__\
END_CHAR
BEGIN_CHAR S
 _____ 
/  ___>
\___  \
<_____/
END_CHAR
BEGIN_CHAR T
 ______ 
|_    _|
  |  |  
  |__|  
END_CHAR
BEGIN_CHAR  U  
 __  __ 
|  ||  |
|  `'  |
 \____/ 
END_CHAR
BEGIN_CHAR   V           
___  ___
\  \/  /
 \    / 
  \__/  
END_CHAR
BEGIN_CHAR  W                   
 __    __ 
|  |/\|  |
|        |
 \__/\__/ 
END_CHAR
BEGIN_CHAR X                                
___  ___ 
\  \/  / 
 >    <  
/__/\__\ 
END_CHAR
BEGIN_CHAR  Y                                            
___  ___
\  \/  /
 \    / 
  |__|  
END_CHAR
BEGIN_CHAR Z                                                    
 _____
|_   /
 /  /_
/_____|
END_CHAR


dbanner-1.02/fonts/dban_font_gothic100600    764    764       25504  6314525270  15571 0ustar  appjappj  ___                                              _ ,     __ ,
 -   -_, _-_ _,,     ,- _%. -_____      ,- _%,   ,- -    ,-| %   _-_-
(  %/||     -/  )   (' /|     ' | -,   (' /| /  _||_    ('||/__,   /,
(  / ||    %||_<   ((  ||    /| |  |` ((  ||/= ' ||    (( |||  |   || __
 \/==||     || \\  ((  ||    || |==|| ((  ||     ||    (( |||==|  %||-  -
 /_ _||     ,/--||  ( / |   %|| |  |,  ( / |     |,     ( / |  ,   ||===||
(  - \\,   _--_-'    -____-  %-____,    -____- _-/       -____/   ( \_, |
          (                 (                                           `



BEGIN_CHAR A	
  ___   
 -   -_,
(  %/|| 
(  / || 
 \/==|| 
 /_ _|| 
(  - \\,
END_CHAR



                  
BEGIN_CHAR 	B         
_-_ _,,  
  -/  ) 
 %||_<  
  || \\ 
  ,/--||
 _--_-' 
(       
END_CHAR


                           

                  
BEGIN_CHAR 	C

   ,- _%.
  (' /|  
 ((  ||  
 ((  ||  
  ( / |  
   -____-
END_CHAR
                           


                                     
                
BEGIN_CHAR 	 D           

-_____   
  ' | -, 
 /| |  |`
 || |==||
%|| |  |,
 %-____, 
(        
END_CHAR




                                               
                
BEGIN_CHAR 	  E                    

  ,- _%, 
 (' /| / 
((  ||/= 
((  ||   
 ( / |   
  -____- 
END_CHAR
                                               


                
BEGIN_CHAR F	                              
     _ ,
   ,- - 
  _||_  
 ' ||   
   ||   
   |,   
 _-/    
END_CHAR
                                                      



                                                       
BEGIN_CHAR G	
    __ ,
  ,-| %  
 ('||/__,
(( |||  |
(( |||==|
 ( / |  ,
  -____/ 
END_CHAR
                                                                


                                                               
                
BEGIN_CHAR H

_-_-
  /,
  || __
 %||-  -
  ||===||
 ( \_, |
       `
END_CHAR
BEGIN_CHAR I	

_-_, 
  // 
  || 
 %|| 
  || 
_-_, 
END_CHAR
BEGIN_CHAR J	
  _-_,,
 (  // 
   _|| 
   _|| 
    || 
 -__-, 
END_CHAR
BEGIN_CHAR K	

_-_-, 
  // , 
  ||/\\
 %|| < 
  ||/\\
 _-__,\\,
END_CHAR
BEGIN_CHAR L	      

_-_-   
 /,    
 ||    
%||    
 ||    
(  -__,
END_CHAR
BEGIN_CHAR M	              

  /\\,/\\,
 /| || || 
 || || || 
 ||=|= || 
%|| || || 
 |, \\,\\,
_-        
END_CHAR
BEGIN_CHAR N	                         
    __  
   /  -,
  ||   )
 %||---)
 %||---,
 %||  / 
  |, /  
-_-  --%
END_CHAR
BEGIN_CHAR O	                                  
    __
  ,-||-,  
 ('|||  ) 
(( |||--))
(( |||--))
 ( / |  ) 
  -____-  
END_CHAR
BEGIN_CHAR P	                                             
-__ /\\
  ||  \\
 /||__||
 \||__||
  ||  |,
_-||-_/
  ||
END_CHAR
BEGIN_CHAR Q	
    __     
  ,-||-,   
 ('|||  )  
(( |||--)) 
(( |||--)) 
 ( / |  )  
  -____-\\ 
END_CHAR
BEGIN_CHAR R	

-__ /\ 
  || \,
 /|| / 
 \||/- 
  ||  \
_---_-|,
END_CHAR
BEGIN_CHAR S	

  -_-/  
 (_ /   
(_ --_  
  --_ ) 
 _/  )) 
(_-_-   
END_CHAR
BEGIN_CHAR 	T           
  ___       
 -   ---___-
    (' ||   
   ((  ||   
  ((   ||   
   (( //    
     -____- 
END_CHAR
BEGIN_CHAR 	U                       
 _ _    _ ,
- - /  - - 
  ('||  || 
 (( ||--|| 
 (( ||--|| 
 (( /   || 
   -___-\\,
END_CHAR
BEGIN_CHAR 	V                                   
 _     
- - _- 
  )-  )
  )___)
 %)___)
  )  ) 
 /-_/  
END_CHAR
BEGIN_CHAR 	W                                           
 _
- - /, /,
  )/ )/ )
  )__)__)
 %)__)__)
  )  )  )
 /-_/-_/
END_CHAR
BEGIN_CHAR 	X
 _
- -    /` 
  \\  /   
   \\/    
  ==/\==  
   / \\   
\\/   \\, 
END_CHAR
BEGIN_CHAR 	Y
-_   _  
  |,- ` 
 %||__))
 %||__))
  |_ _, 
 -' -   
( _-_
END_CHAR
BEGIN_CHAR 	Z  
_-___
    /
   /
 =/=
 /
/-__-
END_CHAR
BEGIN_CHAR a
     
  _  
 < \,
 /-||
(( ||
 \/\\
END_CHAR
BEGIN_CHAR 	b      
,,   
||   
||/|,
|| ||
|| |'
\\/  
END_CHAR
           

    
BEGIN_CHAR c
   
   
 _-_ 
||   
||   
\\,/ 
END_CHAR
BEGIN_CHAR 	d                 
 |\  
  \\ 
 / \\
|| ||
|| ||
 \\/ 
END_CHAR
BEGIN_CHAR e
  
   
 _-_ 
|| \\
||/  
\\,/ 
END_CHAR
BEGIN_CHAR 	f                             
  /\ 
 ||  
=||= 
 ||  
 ||  
 \\, 
END_CHAR
BEGIN_CHAR g

  _   
 / \\ 
|| || 
|| || 
\\_-| 
 /  \ 
'----`
END_CHAR
BEGIN_CHAR 	h
,,   
||   
||/\\
|| ||
|| ||
\\ |/
  _/ 
END_CHAR
BEGIN_CHAR i

  '
 \\
 ||
 ||
 \\
END_CHAR
BEGIN_CHAR  j
 '
\\
||
||
||
|;
/
END_CHAR
BEGIN_CHAR k                                        
,,  
||  
||/\
||_<
|| |
\\,\
END_CHAR
BEGIN_CHAR l                                            
,,
||
||
||
||
\\
END_CHAR
BEGIN_CHAR m


\\/\\/\\
|| || ||
|| || ||
\\ \\ \\
END_CHAR
BEGIN_CHAR n


\\/\\
|| ||
|| ||
\\ \\
END_CHAR
BEGIN_CHAR o
     
     
 /'\\
|| ||
|| ||
\\,/ 
END_CHAR
BEGIN_CHAR p

   
-_-_ 
|| \\
|| ||
||-'
|/ 
'  
END_CHAR
BEGIN_CHAR q


 /'\\
|| ||
|| ||
\\,||
   ||
   '`
END_CHAR                  
BEGIN_CHAR r


,._-_
 || 
 || 
 \\,
END_CHAR
BEGIN_CHAR s


 _-_,
||_. 
 % ||
,-_- 
END_CHAR
BEGIN_CHAR t                
  ,
 ||
=||=
 || 
 || 
 \\,
END_CHAR
BEGIN_CHAR u


\\ \\
|| ||
|| ||
\\/\\
END_CHAR                                        
BEGIN_CHAR v

;   
\\/\
|| |
|| |
\\/ 
END_CHAR
BEGIN_CHAR w
                       
;     
\\/\/\
|| | |
|| | |
\\/\\/
END_CHAR                                                    
                                                    

                                 
                                 
                                                     
BEGIN_CHAR x

,
\\ /` 
 \\   
 /\\  
/  \; 
END_CHAR
BEGIN_CHAR y


'\\/\\
 || ;'
 ||/  
 |/  
(    
 -_- 
END_CHAR
BEGIN_CHAR z


/\\
 /
/\\
 ||
 /
(,
END_CHAR








          ____   ,  ____        ____
 /|   /\  ` //  /|  ||  `   ,/  `  ||  /\\   /\\   /\\
/||  (  )  //  / |  ||_    //      /, || || || || || ||
 ||    //  \\  __|_ |/ \  ((_-    //   \ /  || || || ||
 ||   //    )) ----    )) || ))  ((    /\\   \/|| || ||
 ||  /(    //    |    //  (( ||  ||   // \\    || || ||
,/-' {___ /'    ,_,  /'    \//   |'   || ||  \_/   \\/
                                       \\/


BEGIN_CHAR 1    
 /| 
/|| 
 || 
 || 
 || 
,/-'
END_CHAR
    



          
     
BEGIN_CHAR 2
 /\  
(  ) 
  // 
 //  
/(   
{___ 
END_CHAR
          

          
BEGIN_CHAR 3
____ 
` // 
 //  
 \\  
  )) 
 //  
/'   
END_CHAR
               


             
BEGIN_CHAR 4
    , 
   /| 
  / | 
 /__|_
 -----
    | 
   ,_,
END_CHAR


                    
BEGIN_CHAR 5
____ 
||  `
||_  
|/ \ 
   ))
  // 
 /'  
END_CHAR
                         


                               
              
BEGIN_CHAR 6            
  ,/ 
 //  
((_- 
|| ))
(( ||
 \// 
END_CHAR
                               


              
BEGIN_CHAR 7                  
____
`  ||
   /,
  //
 (( 
 || 
 |' 
END_CHAR
                                    



                                    
                                      
BEGIN_CHAR 8
 /\\ 
|| ||
 \ / 
 /\\ 
// \\
|| ||
 \\/
END_CHAR



                                    
                                            
BEGIN_CHAR 9
 /\\ 
|| ||
|| ||
 \/||
   ||
 \_/ 
END_CHAR
                                          


                                    
                                                  
BEGIN_CHAR 0
 /\\
|| ||
|| ||
|| ||
|| ||
 \\/
END_CHAR
                                          






BEGIN_CHAR !
/\
\/
}{
\/
  
<>
END_CHAR
  





        
   
BEGIN_CHAR @
 /\\ 
|| ||
||/||
||\| 
||   
 \\_,
END_CHAR





         
BEGIN_CHAR #
  <> <>  
  }{ }{  
<>++=++<>
  }{ }{  
<>++=++<>
  }{ }{  
  <> <>  
END_CHAR



              
BEGIN_CHAR $     
 _++_,
||||  
||--. 
 %||||
  ||||
,-__- 
  ||  
END_CHAR


              
BEGIN_CHAR %           
     ,
 <>  /
    / 
   /  
  /   
 /  <>
 `     
END_CHAR

              
BEGIN_CHAR ^                  
  x   
 / \  
/   \ 
END_CHAR
                                      
                                      
                                      
                                      





                                      
BEGIN_CHAR &


 /\   
 \/   
 /\ , 
/'\\, 
|  \\ 
\\-/\ 
END_CHAR
                                            




                                                   
                                            
BEGIN_CHAR *


 <> <> 
  \ /  
<>-*-<>
  / \  
 <> <> 
END_CHAR
                                                   




                                                    
BEGIN_CHAR (
 /
//
||
||
||
\\
 \
END_CHAR





                                                      
BEGIN_CHAR )
 \
 \\
 ||
 ||
 ||
 //
 /
END_CHAR




BEGIN_CHAR ~
 _    
/ \_/
END_CHAR
      
      
      
      
      
      



        
BEGIN_CHAR `
      
<>
( 
END_CHAR

        

        
        
        
        


BEGIN_CHAR _






_____
END_CHAR

                    
                    
              
              
              
              
              
              
              
         
                    
BEGIN_CHAR -



<>-<>
END_CHAR
                    
                    
                    


                                 
BEGIN_CHAR =                                 


<>-<>
     
<>-<>
END_CHAR
                                 



                                  
                                 
                            

BEGIN_CHAR {
   _ 
  (  
  )  
  )  
-{   
  )  
  )  
  (_ 
END_CHAR



              
BEGIN_CHAR [                         
  __
||  
||  
||  
||  
||  
||  
||__
END_CHAR



              
BEGIN_CHAR }                             
_   
 )  
 (  
 (  
  }-
 (  
 (  
_)  
END_CHAR



              
BEGIN_CHAR ]                                   
__  
  ||
  ||
  ||
  ||
  ||
  ||
__||
END_CHAR



                                                        
              
BEGIN_CHAR :                                          


<>
  
  
<>
END_CHAR
                                                        



                                                           
                                                           
                                                           
  
                                                        
                                                      
BEGIN_CHAR ;


                                           
<>


<>
 )
END_CHAR




BEGIN_CHAR '                                                            
<>
 )
END_CHAR

              
BEGIN_CHAR "                                                 
<> <>
 )  ) 
END_CHAR

              
BEGIN_CHAR  |                                                       
||
||
||
||
||
||
||
END_CHAR

                                                                    
              
BEGIN_CHAR \                                                          
\
 \
 \\
  \
  \\
   \
    \
END_CHAR



BEGIN_CHAR ,




   
   
<> 
 ) 
END_CHAR

BEGIN_CHAR .




 

<>
END_CHAR
     


         
           
BEGIN_CHAR /
    /
   /
  //
  / 
 // 
 /  
/   
END_CHAR


       
BEGIN_CHAR ?
 __
/ \\
` ||
  |,
 ((
   
 <>
END_CHAR
         


           
BEGIN_CHAR <                
    /
   / 
 //  
<<   
 \\  
   \ 
    \
END_CHAR


           
              
BEGIN_CHAR >         
\
 \
  \\
   >>
  //
 /
/
END_CHAR



dbanner-1.02/fonts/dban_font_hs100600    764    764       11707  6314525420  14723 0ustar  appjappjBEGIN_CHAR !

|
| 
| 
  
O 
TERMINA_LETRA
BEGIN_CHAR "
/ / 
    
    
    
      
END_CHAR
BEGIN_CHAR #

 _/_/ 
_/_/_ 
/ /   
      
END_CHAR
BEGIN_CHAR $
 |_ 
<|  
 |\ 
\|/ 
 |  
END_CHAR
BEGIN_CHAR  %   

O / 
 /  
/ O 
    
END_CHAR
BEGIN_CHAR &
     
 ()  
 /\  
(__X
END_CHAR 
BEGIN_CHAR '
 o  
 /  
    
    
    
END_CHAR
BEGIN_CHAR <
  / 
 /  
(   
 \  
  \ 
END_CHAR
BEGIN_CHAR >
\   
 \  
  ) 
 /  
/   
    
END_CHAR
BEGIN_CHAR *
 |  
\|/ 
/|\ 
 |  
      
END_CHAR
BEGIN_CHAR +
  |   
__|__ 
  |   
  |   
   
END_CHAR
BEGIN_CHAR ,
   
   
  
   
 /     
END_CHAR
BEGIN_CHAR  -   

--- 
    
    
  
END_CHAR 
BEGIN_CHAR .
   


   
 o      
END_CHAR
BEGIN_CHAR /

   / 
  /  
 /   
/    
END_CHAR
BEGIN_CHAR 0
 ___  
/  /\ 
| / | 
|/  | 
\___/ 
END_CHAR
BEGIN_CHAR 1
    
/|  
 |  
 |  
_|_ 
END_CHAR
BEGIN_CHAR 2
 __  
/  ) 
  /  
 /   
(___ 
END_CHAR
BEGIN_CHAR 3
 ___ 
   / 
  <  
   \ 
\__/ 
END_CHAR
BEGIN_CHAR 4
     
  /| 
 / | 
`--| 
   | 
END_CHAR
BEGIN_CHAR 5
____ 
|    
|__  
   \ 
\__/ 
END_CHAR
BEGIN_CHAR 6
 __  
/  \ 
|__  
|  \ 
\__/ 
END_CHAR
BEGIN_CHAR 7
____ 
   / 
  /  
 /   
/    
END_CHAR
BEGIN_CHAR 8
 __  
/  \ 
\__/ 
/  \ 
\__/ 
END_CHAR
BEGIN_CHAR 9
 __  
/  \ 
\__| 
   | 
\__/ 
END_CHAR
BEGIN_CHAR :
  
o 
  
o 
  
END_CHAR
BEGIN_CHAR ;
  
o 
  
o 
/ 
END_CHAR
BEGIN_CHAR <
   
 / 
/  
\  
 \ 
   
END_CHAR
BEGIN_CHAR =

___ 
    
___ 

END_CHAR
BEGIN_CHAR  >  

\  
 \ 
 / 
/  
    
END_CHAR
BEGIN_CHAR   ? 
 __  
/  \ 
   / 
  |  
  o  
END_CHAR
BEGIN_CHAR    @
 ,--.  
| /\ | 
||  || 
| \/\| 
 \___  
END_CHAR
BEGIN_CHAR    A
,---. 
|   | 
|---| 
|   | 
|   | 
END_CHAR
BEGIN_CHAR    B
,--.  
|   ) 
|--<  
|   ) 
|__/  
END_CHAR
BEGIN_CHAR    C
 ,-.  
/   ) 
|     
\   ) 
 \_/  
END_CHAR
BEGIN_CHAR    D
,--.  
|   \ 
|   | 
|   / 
|__/  
END_CHAR
BEGIN_CHAR    E
,---- 
|     
|--   
|     
|____ 
END_CHAR
BEGIN_CHAR    F
,---- 
|     
|--   
|     
|     
END_CHAR
BEGIN_CHAR    G
 ,-.  
/   ) 
| __  
|   | 
 \_/  
END_CHAR
BEGIN_CHAR    H
,   . 
|   | 
|---| 
|   | 
|   | 
END_CHAR
BEGIN_CHAR    I
--- 
 |  
 |  
 |  
_|_ 
END_CHAR
BEGIN_CHAR    J
   -- 
    | 
    | 
|   | 
 \_/  
END_CHAR
BEGIN_CHAR    K
.   , 
|  /  
|-<   
|  \  
|   \ 
END_CHAR
BEGIN_CHAR    L
.     
|     
|     
|     
|____ 
END_CHAR
BEGIN_CHAR    M
.   . 
|\ /| 
| | | 
|   | 
|   | 
END_CHAR
BEGIN_CHAR    N
.   . 
|\  | 
| \ | 
|  \| 
|   | 
END_CHAR
BEGIN_CHAR    O
 ,-.  
/   \ 
|   | 
\   | 
 \_/  
END_CHAR
BEGIN_CHAR    P
,--.  
|   ) 
|--'  
|     
|     
END_CHAR
BEGIN_CHAR    Q
 ,-.  
/   \ 
|   | 
| \ | 
 \_\/ 
END_CHAR
BEGIN_CHAR    R
,--.  
|   ) 
|-<'  
|  \  
|   \ 
END_CHAR
BEGIN_CHAR    S
 .--  
(     
 `-.  
    ) 
\__/  
END_CHAR
BEGIN_CHAR    T
--,-- 
  |   
  |   
  |   
  |   
END_CHAR
BEGIN_CHAR    U
.   . 
|   | 
|   | 
|   | 
 \_/  
END_CHAR
BEGIN_CHAR    V
.   . 
|   / 
|  /  
| /   
|/    
END_CHAR
BEGIN_CHAR    W
.   . 
|   | 
| | | 
| | / 
\/\/  
END_CHAR
BEGIN_CHAR    X
.   , 
 \ /  
  X   
 / \  
/   \ 
END_CHAR
BEGIN_CHAR    Y
.   , 
 \ /  
  |   
  |   
  |   
END_CHAR
BEGIN_CHAR    Z
----, 
   /  
  /   
 /    
(____ 
END_CHAR
BEGIN_CHAR    [
,-- 
|  
|   
|   
|__
END_CHAR
BEGIN_CHAR     \
     
\    
 \   
  \  
   \ 
END_CHAR
BEGIN_CHAR    ]
--. 
  | 
  | 
  | 
__| 
END_CHAR
BEGIN_CHAR    ^
     
 /\  
/  \ 
     
     
     
END_CHAR
BEGIN_CHAR    _



     
____ 
END_CHAR
BEGIN_CHAR    `
 o  
 \  
    
    
    
END_CHAR          
BEGIN_CHAR    a

  _   
 / \  
(   | 
 \_/\ 
END_CHAR
BEGIN_CHAR    b
     
|    
|__  
|  \ 
|__/ 
END_CHAR
BEGIN_CHAR    c
     
  _  
 / \ 
(    
 \_/ 
END_CHAR
BEGIN_CHAR    d
     
   | 
 __| 
/  | 
\__| 
END_CHAR
BEGIN_CHAR    e
      
  __  
 /  \ 
(---' 
 \__/ 
END_CHAR
BEGIN_CHAR    f
 __  
/    
|--  
|    
|    
END_CHAR
BEGIN_CHAR    g
 __  
/  | 
\__| 
   | 
\__| 
END_CHAR
BEGIN_CHAR    h
     
.    
|__  
|  \ 
|  | 
END_CHAR
BEGIN_CHAR    i
 o  
__  
 |  
 |  
_|_ 
END_CHAR
BEGIN_CHAR    j
   o 

  __ 
   | 
   | 
\__/ 
END_CHAR
BEGIN_CHAR    k
     
.    
|_/  
| \  
|  \ 
END_CHAR
BEGIN_CHAR    l
_   
 |  
 |  
 |  
_|_ 
END_CHAR
BEGIN_CHAR    m
      
      
|/\/\ 
| | | 
| | | 
END_CHAR
BEGIN_CHAR    n
     
  _  
|/ \ 
|  | 
|  | 
END_CHAR
BEGIN_CHAR    o
     
 __  
/  \ 
|  | 
\__/ 
END_CHAR
BEGIN_CHAR    p
 __  
|  \ 
|__/ 
|    
|    
END_CHAR
BEGIN_CHAR    q
 __  
/  | 
\__| 
   | 
   | 
END_CHAR
BEGIN_CHAR    r
     
  __ 
|/   
|    
|    
END_CHAR
BEGIN_CHAR    s
     
 __  
<__  
   \ 
\__/ 
END_CHAR
BEGIN_CHAR    t
     
_|_  
 |   
 |   
 \_/ 
END_CHAR
BEGIN_CHAR    u
     
     
|  | 
|  | 
\_/\
END_CHAR
BEGIN_CHAR    v
      
      
|   / 
\  /  
 \/   
END_CHAR
BEGIN_CHAR    w
      
      
| | | 
| | | 
\/\/  
END_CHAR
BEGIN_CHAR    x
    
    
\ / 
 X  
/ \ 
END_CHAR
BEGIN_CHAR    y
     
|  | 
\__| 
   | 
\__/ 
END_CHAR
BEGIN_CHAR    z
    
___ 
  / 
 /  
(__ 
END_CHAR
BEGIN_CHAR    {
 ,- 
 |  
<   
 |  
 \_ 
END_CHAR
BEGIN_CHAR    |
 |  
 |  
 |  
 |  
 |  
END_CHAR
BEGIN_CHAR    }
-.  
 |  
  > 
 |  
_/  
END_CHAR
BEGIN_CHAR    ~
    
/\/ 
    
    
    
END_CHAR













dbanner-1.02/fonts/dban_font_little100600    764    764        6220  6314533050  15556 0ustar  appjappjBEGIN_CHAR A
  _  
 /_\ 
/   \

END_CHAR
BEGIN_CHAR B
 _ 
|_)
|_)
 
END_CHAR             
BEGIN_CHAR  C
 _
/ 
\_
 
END_CHAR
BEGIN_CHAR   D    
 _  
| \ 
|_/ 

END_CHAR
BEGIN_CHAR    E         
 _ 
|_ 
|_ 

END_CHAR
BEGIN_CHAR     F             
 _ 
|_ 
|  

END_CHAR
BEGIN_CHAR      G                 
 __
/__
\_|

END_CHAR
BEGIN_CHAR       H                      
. .
|_|
| |

END_CHAR
BEGIN_CHAR I                                  
___
 | 
_|_

END_CHAR
BEGIN_CHAR  J                                       
  .
  |
\_|

END_CHAR
BEGIN_CHAR   K                                            
. .
|/ 
|\ 

END_CHAR
BEGIN_CHAR    L                                                
. 
| 
|_
 
END_CHAR
BEGIN_CHAR     M                                                    
.  .
|\/|
|  |

END_CHAR   
BEGIN_CHAR N
.  .
|\ |
| \|

END_CHAR
BEGIN_CHAR O
 _  
/ \ 
\_/ 

END_CHAR             
BEGIN_CHAR P
 _ 
|_)
|  

END_CHAR
BEGIN_CHAR  Q     
 _ 
/ \
\_X

END_CHAR
BEGIN_CHAR   R          
 _ 
|_)
| \

END_CHAR
BEGIN_CHAR    S               
 __
(_ 
__)

END_CHAR
BEGIN_CHAR     T                    
___
 | 
 | 

END_CHAR
BEGIN_CHAR U
. .
| |
|_|

END_CHAR
BEGIN_CHAR V
.  .
|  |
 \/ 

END_CHAR
BEGIN_CHAR W
.  .  .
|  |  |
 \/ \/ 

END_CHAR
BEGIN_CHAR X

 \/
 /\

END_CHAR
BEGIN_CHAR Y

\_/
 | 

END_CHAR
BEGIN_CHAR Z
__
 /
/_

END_CHAR       
BEGIN_CHAR (
 /
|
 \ 

END_CHAR
BEGIN_CHAR )
\ 
 |
/ END_CHAR            
BEGIN_CHAR .


o

END_CHAR            
BEGIN_CHAR  ;


o
/
END_CHAR
BEGIN_CHAR :
 

o
o

END_CHAR
BEGIN_CHAR  '        
/



END_CHAR                         
BEGIN_CHAR !
|
|
o

END_CHAR                         
BEGIN_CHAR ,



/
END_CHAR 
BEGIN_CHAR  "                                 
||



END_CHAR 
BEGIN_CHAR   [                       
 _
| 
|_

END_CHAR 
BEGIN_CHAR    ]                            
_ 
 |
_|

END_CHAR 
BEGIN_CHAR     &                            

()  
(_X 

END_CHAR 
BEGIN_CHAR      *                           

\|/
/|\

END_CHAR 
BEGIN_CHAR       #                          

-|-|-
-|-|-

END_CHAR 
BEGIN_CHAR a
   
 _.
(_|
   
END_CHAR 
BEGIN_CHAR b

|_ 
|_)

END_CHAR 
BEGIN_CHAR  c 

 _ 
(_ 

END_CHAR 
BEGIN_CHAR   d      

 _|
(_|

END_CHAR 
BEGIN_CHAR e

 _  
(/_ 

END_CHAR 
BEGIN_CHAR  f                            
  _ 
_|_ 
 |  

END_CHAR 
BEGIN_CHAR   g               

 _  
(_| 
 _| 
END_CHAR 
BEGIN_CHAR h

|_ 
| |

END_CHAR 
BEGIN_CHAR  i                               

o
|

END_CHAR                                   
BEGIN_CHAR j

 o
 |
_|
END_CHAR 
BEGIN_CHAR  k                               

| 
|<
END_CHAR              
BEGIN_CHAR   l                 

|
|

END_CHAR 
BEGIN_CHAR m

._ _ 
| | |

END_CHAR                   
BEGIN_CHAR n

._
| |
   
END_CHAR                                        
BEGIN_CHAR o

 _ 
(_)
   
END_CHAR 
BEGIN_CHAR p

._ 
|_)
|  
END_CHAR 
BEGIN_CHAR  q           

 _.
(_|
  |
END_CHAR 
BEGIN_CHAR  r
  
._
| 

END_CHAR 
BEGIN_CHAR s

 _ 
_> 

END_CHAR 
BEGIN_CHAR t

_|_
 |_

END_CHAR 
BEGIN_CHAR u


|_|

END_CHAR 
BEGIN_CHAR v


\/

END_CHAR 
BEGIN_CHAR  w                                                 


\/\/

END_CHAR 
BEGIN_CHAR x

\/
/\

END_CHAR 
BEGIN_CHAR y


\/
/
END_CHAR 
BEGIN_CHAR z

_ 
/_

END_CHAR 



dbanner-1.02/fonts/dban_font_side100600    764    764       11236  6314525605  15237 0ustar  appjappjBEGIN_CHAR A 
    .aMMMb
   dMP"dMP
  dMMMMMP 
 dMP dMP  
dMP dMP   
END_CHAR        
BEGIN_CHAR B 
    dMMMMb 
   dMP"dMP 
  dMMMMK"  
 dMP.aMF  
dMMMMP"   
END_CHAR
BEGIN_CHAR C     
   .aMMMb 
  dMP"VMP 
 dMP      
dMP.aMP  
VMMMP"  
END_CHAR
BEGIN_CHAR D 
    dMMMMb 
   dMP VMP 
  dMP dMP  
 dMP.aMP  
dMMMMP"  
END_CHAR
BEGIN_CHAR E                      
    dMMMMMP 
   dMP      
  dMMMP    
 dMP      
dMMMMMP  
END_CHAR
BEGIN_CHAR F                               
    dMMMMMP
   dMP     
  dMMMP    
 dMP      
dMP       
END_CHAR
BEGIN_CHAR G                                  
   .aMMMMP
  dMP"
 dMP MMP"
 dMP.dMP
 VMMMP"
END_CHAR
BEGIN_CHAR H 
    dMP dMP
   dMP dMP 
  dMMMMMP  
 dMP dMP  
dMP dMP  
END_CHAR
BEGIN_CHAR I 
    dMP
   amr 
  dMP  
 dMP  
dMP   
END_CHAR
BEGIN_CHAR J 
   dMMMMMP
      dMP 
     dMP  
dK .dMP  
VMMMP"  
END_CHAR
BEGIN_CHAR K         
    dMP dMP
   dMP.dMP 
  dMMMMK"  
 dMP"AMF  
dMP dMP  
END_CHAR
BEGIN_CHAR L                  
    dMP  
   dMP   
  dMP    
 dMP     
dMMMMMP  
END_CHAR
BEGIN_CHAR M                           
    dMMMMMMMMb
   dMP"dMP"dMP
  dMP dMP dMP 
 dMP dMP dMP  
dMP dMP dMP  
END_CHAR
BEGIN_CHAR N                                        
    dMMMMb
   dMP dMP
  dMP dMP
 dMP dMP
dMP dMP
END_CHAR
BEGIN_CHAR O 
   .aMMMb
  dMP"dMP
 dMP dMP 
dMP.aMP  
VMMMP"   
END_CHAR
BEGIN_CHAR P 
    dMMMMb 
   dMP.dMP 
  dMMMMP" 
 dMP      
dMP       
END_CHAR
BEGIN_CHAR Q   
   .aMMMb 
  dMP"dMP 
 dMP.dMP  
dMP.MMP  
VMMP"MP 
END_CHAR
BEGIN_CHAR R            
    dMMMMb 
   dMP.dMP 
  dMMMMK"  
 dMP"AMF  
dMP dMP   
END_CHAR
BEGIN_CHAR S                      
   .dMMMb 
  dMP" VP 
  VMMMb  
dP .dMP  
VMMMP"   
END_CHAR
BEGIN_CHAR T                                
 dMMMMMMP
   dMP   
  dMP    
 dMP    
dMP     
END_CHAR
BEGIN_CHAR U                                        
   dMP dMP
  dMP dMP
 dMP dMP
dMP.aMP
VMMMP"
END_CHAR
BEGIN_CHAR V 
  dMP dMP
 dMP dMP 
dMP dMP  
YMvAP"  
 VP"    
END_CHAR
BEGIN_CHAR W 
   dMP dMP dMP
  dMP dMP dMP 
 dMP dMP dMP  
dMP.dMP.dMP  
VMMMPVMMP"  
END_CHAR
BEGIN_CHAR X      
    dMP dMP
   dMK.dMP 
   `MMM"   
 dMP"AMF  
dMP dMP   
END_CHAR
BEGIN_CHAR Y                
   dMP dMP
  dMP.dMP 
  VMMMMP  
dA .dMP  
VMMMP"  
END_CHAR
BEGIN_CHAR Z                        
    dMMMMMP
     .dMP"
   .dMP"
 .dMP"    
dMMMMMP  
END_CHAR


BEGIN_CHAR a
    .aMMMb
   dMP"dMP
  dMMMMMP 
 dMP dMP  
dMP dMP   
END_CHAR        
BEGIN_CHAR b 
    dMMMMb 
   dMP"dMP 
  dMMMMK"  
 dMP.aMF  
dMMMMP"   
END_CHAR
BEGIN_CHAR c     
   .aMMMb 
  dMP"VMP 
 dMP      
dMP.aMP  
VMMMP"  
END_CHAR
BEGIN_CHAR d 
    dMMMMb 
   dMP VMP 
  dMP dMP  
 dMP.aMP  
dMMMMP"  
END_CHAR
BEGIN_CHAR e                      
    dMMMMMP 
   dMP      
  dMMMP    
 dMP      
dMMMMMP  
END_CHAR
BEGIN_CHAR f                               
    dMMMMMP
   dMP     
  dMMMP    
 dMP      
dMP       
END_CHAR
BEGIN_CHAR g                                  
   .aMMMMP
  dMP"
 dMP MMP"
 dMP.dMP
 VMMMP"
END_CHAR
BEGIN_CHAR h 
    dMP dMP
   dMP dMP 
  dMMMMMP  
 dMP dMP  
dMP dMP  
END_CHAR
BEGIN_CHAR i 
    dMP
   amr 
  dMP  
 dMP  
dMP   
END_CHAR
BEGIN_CHAR j 
   dMMMMMP
      dMP 
     dMP  
dK .dMP  
VMMMP"  
END_CHAR
BEGIN_CHAR k         
    dMP dMP
   dMP.dMP 
  dMMMMK"  
 dMP"AMF  
dMP dMP  
END_CHAR
BEGIN_CHAR l                  
    dMP  
   dMP   
  dMP    
 dMP     
dMMMMMP  
END_CHAR
BEGIN_CHAR m                           
    dMMMMMMMMb
   dMP"dMP"dMP
  dMP dMP dMP 
 dMP dMP dMP  
dMP dMP dMP  
END_CHAR
BEGIN_CHAR n                                        
    dMMMMb
   dMP dMP
  dMP dMP
 dMP dMP
dMP dMP
END_CHAR
BEGIN_CHAR o 
   .aMMMb
  dMP"dMP
 dMP dMP 
dMP.aMP  
VMMMP"   
END_CHAR
BEGIN_CHAR p 
    dMMMMb 
   dMP.dMP 
  dMMMMP" 
 dMP      
dMP       
END_CHAR
BEGIN_CHAR q   
   .aMMMb 
  dMP"dMP 
 dMP.dMP  
dMP.MMP  
VMMP"MP 
END_CHAR
BEGIN_CHAR r            
    dMMMMb 
   dMP.dMP 
  dMMMMK"  
 dMP"AMF  
dMP dMP   
END_CHAR
BEGIN_CHAR s                      
   .dMMMb 
  dMP" VP 
  VMMMb  
dP .dMP  
VMMMP"   
END_CHAR
BEGIN_CHAR t                                
 dMMMMMMP
   dMP   
  dMP    
 dMP    
dMP     
END_CHAR
BEGIN_CHAR u                                        
   dMP dMP
  dMP dMP
 dMP dMP
dMP.aMP
VMMMP"
END_CHAR
BEGIN_CHAR v 
  dMP dMP
 dMP dMP 
dMP dMP  
YMvAP"  
 VP"    
END_CHAR
BEGIN_CHAR w 
   dMP dMP dMP
  dMP dMP dMP 
 dMP dMP dMP  
dMP.dMP.dMP  
VMMMPVMMP"  
END_CHAR
BEGIN_CHAR x      
    dMP dMP
   dMK.dMP 
   `MMM"   
 dMP"AMF  
dMP dMP   
END_CHAR
BEGIN_CHAR y                
   dMP dMP
  dMP.dMP 
  VMMMMP  
dA .dMP  
VMMMP"  
END_CHAR
BEGIN_CHAR z                        
    dMMMMMP
     .dMP"
   .dMP"
 .dMP"    
dMMMMMP  
END_CHAR
BEGIN_CHAR . 



 amr
dMP
END_CHAR
BEGIN_CHAR ! 
    dMP
   amr 
  dMP  

dMP   
END_CHAR

dbanner-1.02/fonts/dban_font_pipechar100600    764    764       12325  6321726733  16111 0ustar  appjappjPipe Char (|) font by Dawid Kuroczko <dark@pipeta.krakow.linux.org.pl>

BEGIN_CHAR A
    ,||||
   ,|| ||
  ,||||||
 ,||   ||
.||.  .||.
END_CHAR
BEGIN_CHAR B
`|||||.
 ||  ||
 |||||.
 ||   ||
.||||||'
END_CHAR
BEGIN_CHAR C
 .|||||.
||'
||
||.
 `|||||'
END_CHAR
BEGIN_CHAR D
`|||||.
 ||   ||
 ||   ||
 ||   ||
.||||||'
END_CHAR
BEGIN_CHAR    E         
`|||||||
 ||
 ||||||
 ||
.|||||||
END_CHAR
BEGIN_CHAR     F             
`|||||||
 ||
 ||||||
 ||
.||.
END_CHAR
BEGIN_CHAR      G                 
 .|||||.
||'
||    ,,
||.  .||
`||||||'
END_CHAR
BEGIN_CHAR       H                      
'||' '||'
 ||   ||
 |||||||
 ||   ||
.||. .||.
END_CHAR
BEGIN_CHAR I                                  
'||'
 ||
 ||
 ||
.||.
END_CHAR
BEGIN_CHAR  J                                       
  '||'
   ||
   ||
  .||
.|||'
END_CHAR
BEGIN_CHAR   K                                            
'||' .||'
 || .||
 |||||.
 ||  `||.
.||. .||.
END_CHAR
BEGIN_CHAR    L                                                
`||`
 ||
 ||
 ||
.||||||.
END_CHAR
BEGIN_CHAR     M                                                    
`||.   .||`
 |||. .|||
 || ||| ||
 ||     ||
.||.   .||.
END_CHAR   
BEGIN_CHAR N
`||.  `||`
 |||.  ||
 || || ||
 ||  `|||
.||.  `||.
END_CHAR
BEGIN_CHAR O
 .||||.
||'  `||
||    ||
||.  .||
`||||||'
END_CHAR             
BEGIN_CHAR P
`||||||.
 ||   ||
 ||||||'
 ||
.||.
END_CHAR
BEGIN_CHAR  Q     
 .||||.
||'  `||
||    ||
||.`||||
`||||||.
END_CHAR
BEGIN_CHAR   R          
`||||||.
 ||   ||
 ||||||'
 ||  ||
.||. .||.
END_CHAR
BEGIN_CHAR    S               
.|||||.
||
`|||||.
     ||
`|||||'
END_CHAR
BEGIN_CHAR     T                    
`||||||`
   ||
   ||
   ||
  .||.
END_CHAR
BEGIN_CHAR U
`||` `||`
 ||   ||
 ||   ||
 ||. .||
 `|||||'
END_CHAR
BEGIN_CHAR V
`||` `||`
 ||   ||
 ||   ||
 `||.||'
  `|||'
END_CHAR
BEGIN_CHAR W
`||` `||` `||`
 ||   ||   ||
 ||   ||   ||
 `||.||||.||'
  `|||'`|||'
END_CHAR
BEGIN_CHAR X
`||` `||`
  || ||
   |||
  || ||
.||. .||.
END_CHAR
BEGIN_CHAR Y
`||``||`
 ||  ||
  ||||
   ||
  .||.
END_CHAR
BEGIN_CHAR Z
`|||||||'
    .||'
   |||
 .||'
.|||||||.
END_CHAR       
BEGIN_CHAR (
 ||'
||
||
||
 ||.
END_CHAR
BEGIN_CHAR )
`||
  ||
  ||
  ||
.||
END_CHAR            
BEGIN_CHAR .




||
END_CHAR            
BEGIN_CHAR  ;


 ||

.||
END_CHAR
BEGIN_CHAR :
 

||

||
END_CHAR
BEGIN_CHAR  '        
.||




END_CHAR                         
BEGIN_CHAR !
||
||
||
''
||
END_CHAR                         
BEGIN_CHAR    ?               
.|||||.
||   ||
  .|||'
  ||'  
 .||.  
END_CHAR
BEGIN_CHAR ,




.||
END_CHAR 
BEGIN_CHAR  "                                 
|| ||




END_CHAR 
BEGIN_CHAR   [                       
||||
||
||
||
||||
END_CHAR 
BEGIN_CHAR    ]                            
||||
  ||
  ||
  ||
||||
END_CHAR 
BEGIN_CHAR     &                            
.||||.
||  ||
 ||||.||
||  |||
`||||'||
END_CHAR 
BEGIN_CHAR      *                           
 ||   ||
  || ||
|||||||||
  || ||
 ||   ||
END_CHAR 
BEGIN_CHAR       #                          
 ||  ||
||||||||
 ||  ||
||||||||
 ||  ||
END_CHAR 
BEGIN_CHAR a

.||||.
||  ||
||  ||
`|||'||.
END_CHAR 
BEGIN_CHAR b
||
|||||.
||  ||
||  ||
`||||'
END_CHAR 
BEGIN_CHAR  c 

.||||.
||
||
`||||'
END_CHAR 
BEGIN_CHAR   d      
    ||
.|||||
||  ||
||  ||
`||||'
END_CHAR 
BEGIN_CHAR e

.||||.
||..||
||  
`||||'
END_CHAR 
BEGIN_CHAR  f                            
 .|||
 ||
||||
 ||
 ||
END_CHAR 
BEGIN_CHAR   g               

.||||.
||  ||
`|||||
 ...|'
END_CHAR 
BEGIN_CHAR h
||
|||||.
||  ||
||  ||
||  ||
END_CHAR 
BEGIN_CHAR  i                               

'' 
|| 
|| 
`||
END_CHAR
BEGIN_CHAR j

  ''
  ||
  ||
.||'
END_CHAR 
BEGIN_CHAR  k                               
||
|| .||
|||||
||  ||
||  ||
END_CHAR              
BEGIN_CHAR   l           
||
||
||
||.
`||||
END_CHAR 
BEGIN_CHAR m

.|||..|||.
||  ||  ||
||  ||  ||
||. ||. `||
END_CHAR                   
BEGIN_CHAR n

.||||.
||  ||
||  ||
||. `||
END_CHAR                                        
BEGIN_CHAR o

.||||.
||  ||
||  ||
`||||'
END_CHAR 
BEGIN_CHAR p

.||||.
||  ||
||..||
||``
END_CHAR 
BEGIN_CHAR  q           

.||||.
||  ||
||..||
  ``||
END_CHAR 
BEGIN_CHAR  r

.||||
||
||
||
END_CHAR 
BEGIN_CHAR s

.|||||'
||,,,,
 ````||
.|||||'
END_CHAR 
BEGIN_CHAR t
 ||   
||||  
 ||   
 ||.  
 `||| 
END_CHAR             
BEGIN_CHAR u

||  ||
||  ||
||  ||
`||||'
END_CHAR 
BEGIN_CHAR v

||  ||
||  ||
 ||||
 `||'
END_CHAR 
BEGIN_CHAR  w                                                 

||  ||  ||
||  ||  ||
||  ||  ||
`|||'`|||'
END_CHAR 
BEGIN_CHAR x
||  ||
 `||'
 .||.
||  ||
END_CHAR 
BEGIN_CHAR y

||  ||
||  ||
`|||||
 ...|'
END_CHAR 
BEGIN_CHAR z

||||||
  .||
 ||'
||||||
END_CHAR
BEGIN_CHAR 0
.|||||.
||   ||
||   ||
||   ||
`|||||'
END_CHAR
BEGIN_CHAR 1
 .||
||||
  ||
  ||
 .||. 
END_CHAR
BEGIN_CHAR 2
.|||||.
    .||
.|||||'
||'
`|||||'
END_CHAR
BEGIN_CHAR 3
.|||||.
    .||
  ||||
    `||
`|||||'
END_CHAR
BEGIN_CHAR 4
  ||||
 || ||
|||||||
    ||
   .||.
END_CHAR
BEGIN_CHAR 5
`||||||'
 ||
 ||||||.
      ||
 `|||||'
END_CHAR
BEGIN_CHAR 6
.|||||.
||
||||||.
||   ||
`|||||'
END_CHAR
BEGIN_CHAR 7
`||||||'
     ||
    ||
   ||
   ||
END_CHAR
BEGIN_CHAR 8
.|||||.
||   ||
 |||||
||   ||
`|||||'
END_CHAR
BEGIN_CHAR 9
.|||||.
||   ||
`||||||
     ||
`|||||'
END_CHAR

BEGIN_CHAR @
.|||||||||
|| .|||. ``
|| || || 
|| `||||||
`||||||||'
END_CHAR
dbanner-1.02/fonts/dban_font_bubble100600    764    764        7475  6322222225  15527 0ustar  appjappjThis one is pretty nice... Ported to dbanner by Dawid Kuroczko.

Made after przemyslaw.czerpak@students.mimuw.edu.pl's signature.
Similar font I have also seen in Urtica MOTD file (root of Urtica - 
cassel@pipeta.krakow.linux.org.pl).

BEGIN_CHAR A
 _)_)_)
_)    _)
_)_)_)_)
_)    _)
_)    _)
END_CHAR
BEGIN_CHAR B
_)_)_)
_)   _)
_)_)_)
_)   _)
_)_)_)
END_CHAR
BEGIN_CHAR C
 _)_)_)
_)
_)
_)
 _)_)_)
END_CHAR
BEGIN_CHAR D
_)_)_)
_)   _)
_)   _)
_)   _)
_)_)_)
END_CHAR
BEGIN_CHAR E
_)_)_)
_)
_)_)
_)
_)_)_)
END_CHAR
BEGIN_CHAR F
_)_)_)
_)
_)_)
_)
_)
END_CHAR
BEGIN_CHAR G
 _)_)_)
_)
_)    _)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR H
_)    _)
_)    _)
_)_)_)_)
_)    _)
_)    _)
END_CHAR
BEGIN_CHAR I
_)
_)
_)
_)
_)
END_CHAR
BEGIN_CHAR J
   _)
   _)
   _)
   _)
_)_)
END_CHAR
BEGIN_CHAR K
_)   _)
_)  _) 
_) _)
_)  _)
_)   _)
END_CHAR
BEGIN_CHAR L
_)
_)
_)
_)
_)_)_)
END_CHAR
BEGIN_CHAR M
_)      _)
_)_)  _)_)
_) _)_) _)
_)      _)
_)      _)
END_CHAR
BEGIN_CHAR N
_)    _)
_)_)  _)
_) _) _)
_)  _)_)
_)    _)
END_CHAR
BEGIN_CHAR O
 _)_)_)
_)    _)
_)    _)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR P
_)_)_)
_)   _)
_)_)_)
_)
_)
END_CHAR
BEGIN_CHAR Q
 _)_)_)
_)    _)
_)    _)
_)  _)_)
 _)_)_)
END_CHAR
BEGIN_CHAR R
_)_)_)
_)   _)
_) _)
_)  _)
_)   _)
END_CHAR
BEGIN_CHAR S
 _)_)_)
_)
 _)_)_)
      _)
 _)_)_)
END_CHAR
BEGIN_CHAR T
_)_)_)_)
   _)
   _)
   _)
   _)
END_CHAR
BEGIN_CHAR U
_)    _)
_)    _)
_)    _)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR V
_)    _)
_)    _)
 _)  _)
  _)_)
   _)
END_CHAR
BEGIN_CHAR W
_)      _)
_)      _)
_)  _)  _)
 _)_)_)_)
  _)  _)
END_CHAR
BEGIN_CHAR X
_)    _)
 _)  _)
  _)_)
 _)  _)
_)    _)
END_CHAR
BEGIN_CHAR Y
_)    _)
 _)  _)
  _)_)
   _)
   _)
END_CHAR
BEGIN_CHAR Z
_)_)_)
    _)
  _)
_)
_)_)_)
END_CHAR
BEGIN_CHAR ?
 _)_)_)
      _)
   _)_)

   _)
END_CHAR
BEGIN_CHAR 0
 _)_)_)
_)    _)
_)    _)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR 1
  _)
_)_)
  _)
  _)
  _)
END_CHAR
BEGIN_CHAR 2
 _)_)_)
      _)
    _)
  _)
_)_)_)_)
END_CHAR
BEGIN_CHAR 3
_)_)_)
     _)
  _)_)
     _)
_)_)_)
END_CHAR
BEGIN_CHAR 4
  _) _)
  _) _)
 _)_)_)_)
     _)
     _)
END_CHAR
BEGIN_CHAR 5
_)_)_)
_)
_)_)_)
     _)
_)_)_)
END_CHAR
BEGIN_CHAR 6
 _)_)_)
_)
 _)_)_)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR 7
_)_)_)
    _)
   _)
  _)
  _)
END_CHAR
BEGIN_CHAR 8
 _)_)_)
_)    _)
 _)_)_)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR 9
 _)_)_)
_)    _)
 _)_)_)
      _)
 _)_)_)
END_CHAR

Ma³e literki:

BEGIN_CHAR a
 _)_)_)
_)    _)
_)_)_)_)
_)    _)
_)    _)
END_CHAR
BEGIN_CHAR b
_)_)_)
_)   _)
_)_)_)
_)   _)
_)_)_)
END_CHAR
BEGIN_CHAR c
 _)_)_)
_)
_)
_)
 _)_)_)
END_CHAR
BEGIN_CHAR d
_)_)_)
_)   _)
_)   _)
_)   _)
_)_)_)
END_CHAR
BEGIN_CHAR e
_)_)_)
_)
_)_)
_)
_)_)_)
END_CHAR
BEGIN_CHAR f
_)_)_)
_)
_)_)
_)
_)
END_CHAR
BEGIN_CHAR g
 _)_)_)
_)
_)    _)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR h
_)    _)
_)    _)
_)_)_)_)
_)    _)
_)    _)
END_CHAR
BEGIN_CHAR i
_)
_)
_)
_)
_)
END_CHAR
BEGIN_CHAR j
   _)
   _)
   _)
   _)
_)_)
END_CHAR
BEGIN_CHAR k
_)   _)
_)  _) 
_) _)
_)  _)
_)   _)
END_CHAR
BEGIN_CHAR l
_)
_)
_)
_)
_)_)_)
END_CHAR
BEGIN_CHAR m
_)      _)
_)_)  _)_)
_) _)_) _)
_)      _)
_)      _)
END_CHAR
BEGIN_CHAR n
_)    _)
_)_)  _)
_) _) _)
_)  _)_)
_)    _)
END_CHAR
BEGIN_CHAR o
 _)_)_)
_)    _)
_)    _)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR p
_)_)_)
_)   _)
_)_)_)
_)
_)
END_CHAR
BEGIN_CHAR q
 _)_)_)
_)    _)
_)    _)
_)  _)_)
 _)_)_)
END_CHAR
BEGIN_CHAR r
_)_)_)
_)   _)
_) _)
_)  _)
_)   _)
END_CHAR
BEGIN_CHAR s
 _)_)_)
_)
 _)_)_)
      _)
 _)_)_)
END_CHAR
BEGIN_CHAR t
_)_)_)_)
   _)
   _)
   _)
   _)
END_CHAR
BEGIN_CHAR u
_)    _)
_)    _)
_)    _)
_)    _)
 _)_)_)
END_CHAR
BEGIN_CHAR v
_)    _)
_)    _)
 _)  _)
  _)_)
   _)
END_CHAR
BEGIN_CHAR w
_)      _)
_)      _)
_)  _)  _)
 _)_)_)_)
  _)  _)
END_CHAR
BEGIN_CHAR x
_)    _)
 _)  _)
  _)_)
 _)  _)
_)    _)
END_CHAR
BEGIN_CHAR y
_)    _)
 _)  _)
  _)_)
   _)
   _)
END_CHAR
BEGIN_CHAR z
_)_)_)
    _)
  _)
_)
_)_)_)
END_CHAR
dbanner-1.02/fonts/dban_font_phx100600    764    764       11314  6321727521  15106 0ustar  appjappjAcquired from PhoEniX 2.27 irc Script by Dawid Kuroczko.

I've send a mail to FoUL for permission few days ago, but I received
nothing yet. Meanwhile I'm sending this to You. You'll have to decide
what to do with this one. And give some nice name to it, I've no idea.

Here's a comment from the script:
### Written by FoUL!fouler@digital.decay.com (unde000b@frank.mtsu.edu) 
### for Vassago 

BEGIN_CHAR A
 @@@@@@
@@!  @@@
@!@!@!@!
!!:  !!!
 :   : :
END_CHAR
BEGIN_CHAR B
@@@@@@@
@@!  @@@
@!@!@!@
!!:  !!!
:: : ::
END_CHAR
BEGIN_CHAR C
 @@@@@@@
!@@
!@!
:!!
 :: :: :
END_CHAR
BEGIN_CHAR D
@@@@@@@ 
@@!  @@@
@!@  !@!
!!:  !!!
:: :  : 
END_CHAR
BEGIN_CHAR E
@@@@@@@@
@@!     
@!!!:!  
!!:     
: :: :::
END_CHAR
BEGIN_CHAR F
@@@@@@@@
@@!     
@!!!:!  
!!:     
 :      
END_CHAR
BEGIN_CHAR G
 @@@@@@@ 
!@@      
!@! @!@!@
:!!   !!:
 :: :: : 
END_CHAR
BEGIN_CHAR H
@@@  @@@
@@!  @@@
@!@!@!@!
!!:  !!!
 :   : :
END_CHAR
BEGIN_CHAR I
@@@
@@!
!!@
!!:
:  
END_CHAR
BEGIN_CHAR J
    @@@
    @@!
    !!@
.  .!! 
::.::  
END_CHAR
BEGIN_CHAR K
@@@  @@@
@@!  !@@
@!@@!@! 
!!: :!! 
 :   :::
END_CHAR
BEGIN_CHAR L
@@@     
@@!     
@!!     
!!:     
: ::.: :
END_CHAR
BEGIN_CHAR M
@@@@@@@@@@ 
@@! @@! @@!
@!! !!@ @!@
!!:     !!:
 :      :  
END_CHAR
BEGIN_CHAR N
@@@  @@@
@@!@!@@@
@!@@!!@!
!!:  !!!
::    : 
END_CHAR
BEGIN_CHAR O
 @@@@@@ 
@@!  @@@
@!@  !@!
!!:  !!!
 : :. : 
END_CHAR
BEGIN_CHAR P
@@@@@@@ 
@@!  @@@
@!@@!@! 
!!:     
 :      
END_CHAR
BEGIN_CHAR Q
 @@@@@@  
@@!  @@@ 
@!@  !@! 
!!:!!:!: 
 : :. :::
END_CHAR
BEGIN_CHAR R
@@@@@@@ 
@@!  @@@
@!@!!@! 
!!: :!! 
 :   : :
END_CHAR
BEGIN_CHAR S
 @@@@@@
!@@    
 !@@!! 
    !:!
::.: : 
END_CHAR
BEGIN_CHAR T
@@@@@@@
  @@!  
  @!!  
  !!:  
   :   
END_CHAR
BEGIN_CHAR U
@@@  @@@
@@!  @@@
@!@  !@!
!!:  !!!
 :.:: : 
END_CHAR
BEGIN_CHAR V
@@@  @@@
@@!  @@@
@!@  !@!
 !: .:! 
   ::   
END_CHAR
BEGIN_CHAR W
@@@  @@@  @@@
@@!  @@!  @@!
@!!  !!@  @!@
 !:  !!:  !! 
  ::.:  :::  
END_CHAR
BEGIN_CHAR X
@@@  @@@
@@!  !@@
 !@@!@! 
 !: :!! 
:::  :::
END_CHAR
BEGIN_CHAR Y
@@@ @@@
@@! !@@
 !@!@! 
  !!:  
  .:   
END_CHAR
BEGIN_CHAR Z
@@@@@@@@
     @@!
   @!!  
 !!:    
:.::.: :
END_CHAR
BEGIN_CHAR 0
 @@@@@@ 
@@!  @@@
@!@  !@!
!!:  !!!
 : : :: 
END_CHAR
BEGIN_CHAR 1
 @@@
 @@@
 !@!
 !!!
 :  
END_CHAR
BEGIN_CHAR 2
 @@@@@@ 
@@   @@@
  .!!@! 
 !!:    
:.:: :::
END_CHAR
BEGIN_CHAR 3
@@@@@@ 
    @@!
 @!!!: 
    !!:
::: :: 
END_CHAR
BEGIN_CHAR 4
@@@  @@@
@@!  @@@
@!@!@!@!
     !!!
     : :
END_CHAR
BEGIN_CHAR 5
@@@@@@@
!@@    
!!@@!! 
    !:!
:: : : 
END_CHAR
BEGIN_CHAR 6
  @@@@@ 
@@!@    
@!@!@!@ 
!!:  !!!
 : : :: 
END_CHAR
BEGIN_CHAR 7
@@@@@@@@
     @@!
    @!! 
 .!!:   
: :     
END_CHAR
BEGIN_CHAR 8
 @@@@@@ 
@@!  @@@
 !@!@!@ 
!!:  !!!
 :.:: : 
END_CHAR
BEGIN_CHAR 9
 @@@@@@ 
@@!  @@@
 @!@@!@!
     !!:
 : :::  
END_CHAR
BEGIN_CHAR #
 @@@ @@@ 
@@@!@@@@@
 @!@ !@! 
!!!:!!!!:
 ::  : : 
END_CHAR
BEGIN_CHAR !
@@@
@@@
!@!
   
:.:
END_CHAR
BEGIN_CHAR -
        
        
@!@!@!@!
        
        
END_CHAR

I ma³e literki:


BEGIN_CHAR a
 @@@@@@
@@!  @@@
@!@!@!@!
!!:  !!!
 :   : :
END_CHAR
BEGIN_CHAR b
@@@@@@@
@@!  @@@
@!@!@!@
!!:  !!!
:: : ::
END_CHAR
BEGIN_CHAR c
 @@@@@@@
!@@
!@!
:!!
 :: :: :
END_CHAR
BEGIN_CHAR d
@@@@@@@ 
@@!  @@@
@!@  !@!
!!:  !!!
:: :  : 
END_CHAR
BEGIN_CHAR e
@@@@@@@@
@@!     
@!!!:!  
!!:     
: :: :::
END_CHAR
BEGIN_CHAR f
@@@@@@@@
@@!     
@!!!:!  
!!:     
 :      
END_CHAR
BEGIN_CHAR g
 @@@@@@@ 
!@@      
!@! @!@!@
:!!   !!:
 :: :: : 
END_CHAR
BEGIN_CHAR h
@@@  @@@
@@!  @@@
@!@!@!@!
!!:  !!!
 :   : :
END_CHAR
BEGIN_CHAR i
@@@
@@!
!!@
!!:
:  
END_CHAR
BEGIN_CHAR j
    @@@
    @@!
    !!@
.  .!! 
::.::  
END_CHAR
BEGIN_CHAR k
@@@  @@@
@@!  !@@
@!@@!@! 
!!: :!! 
 :   :::
END_CHAR
BEGIN_CHAR l
@@@     
@@!     
@!!     
!!:     
: ::.: :
END_CHAR
BEGIN_CHAR m
@@@@@@@@@@ 
@@! @@! @@!
@!! !!@ @!@
!!:     !!:
 :      :  
END_CHAR
BEGIN_CHAR n
@@@  @@@
@@!@!@@@
@!@@!!@!
!!:  !!!
::    : 
END_CHAR
BEGIN_CHAR o
 @@@@@@ 
@@!  @@@
@!@  !@!
!!:  !!!
 : :. : 
END_CHAR
BEGIN_CHAR p
@@@@@@@ 
@@!  @@@
@!@@!@! 
!!:     
 :      
END_CHAR
BEGIN_CHAR q
 @@@@@@  
@@!  @@@ 
@!@  !@! 
!!:!!:!: 
 : :. :::
END_CHAR
BEGIN_CHAR r
@@@@@@@ 
@@!  @@@
@!@!!@! 
!!: :!! 
 :   : :
END_CHAR
BEGIN_CHAR s
 @@@@@@
!@@    
 !@@!! 
    !:!
::.: : 
END_CHAR
BEGIN_CHAR t
@@@@@@@
  @@!  
  @!!  
  !!:  
   :   
END_CHAR
BEGIN_CHAR u
@@@  @@@
@@!  @@@
@!@  !@!
!!:  !!!
 :.:: : 
END_CHAR
BEGIN_CHAR v
@@@  @@@
@@!  @@@
@!@  !@!
 !: .:! 
   ::   
END_CHAR
BEGIN_CHAR w
@@@  @@@  @@@
@@!  @@!  @@!
@!!  !!@  @!@
 !:  !!:  !! 
  ::.:  :::  
END_CHAR
BEGIN_CHAR x
@@@  @@@
@@!  !@@
 !@@!@! 
 !: :!! 
:::  :::
END_CHAR
BEGIN_CHAR y
@@@ @@@
@@! !@@
 !@!@! 
  !!:  
  .:   
END_CHAR
BEGIN_CHAR z
@@@@@@@@
     @@!
   @!!  
 !!:    
:.::.: :
END_CHAR

Bouns Chars below by Dawid Kuroczko - sorry for Low Quality:

BEGIN_CHAR ?
 @@@@@@
@@   @@@
  .!!@!
  !!:
  :.:
END_CHAR

dbanner-1.02/dban_font_normal120777    764    764           0  6332716257  20741 2fonts/dban_font_normalustar  appjappjdbanner-1.02/INSTALL100600    764    764        3501  6314524364  12233 0ustar  appjappjDBANNER

 This file has info on how to install

 -- Quick Install:

 Edit Makefile and change the entry :
DBAN_INSTALL_LIBDIR=/usr/local/lib/dban/ 
to where you want to put the configuration (and the font) files.

 Then change the entry 
DBAN_INSTALL_BINDIR=/usr/local/bin/ 
to the directory where you want the binary to be installed.

 Then just type make install. (make sure that you have permission to write on 
the directories you specified above).
 That's all!!! Next try the program and read the README.
 For help: "dbanner -h"

 Quick Install  will automatically create a config file and put this config 
and the fonts on DBAN_INSTALL_LIBDIR. The binary (dbanner) will be in 
DBAN_INSTALL_BINDIR.

 Using:
 Just type dbanner -f to see the fonts available, and then dban -f <fontname> 
to play with it. For help, "dbanner -h"


 -- Manual Install:
 
 Well, before compiling the program, edit config.h and set your preferences.
(Make sure to change the DBAN_INSTALL_LIBDIR on makefile to the same value you
put on DEFAULT_CONFIG_FILE_DIR at config.h).
 On config.h you can change the name used for the config file (the default is 
.dbanrc), and other options.

 You can change also the font file names to be hardcoded on the binary, and 
then you will not need a config file... (But I think a config file is easyer)

 Then, compile it (make dbanner). Next, put the files on fonts/ directory 
to the directory you want to keep them.
 After that, create the config file (the format is explained on README) for 
the fonts you installed, and put it on the directory you specified on 
config.h (DEFAULT_CONFIG_FILE_DIR) or in your $HOME or in the current dir
 Then try the program: dbanner -f. It shoud work. If not, check if it can find
the config file, and if the entries on config file are right.

 Good Luck!


Aristides P. Preto Jr.
appj@rnl.ist.utl.ptdbanner-1.02/README100600    764    764       15422  6333000432  12071 0ustar  appjappjDBANNER 1.02

This program allows you to transform simple ascii text in beatifull ascii art :-)
Fonts can change, according to your needs

This is the README file. It has information about using, format of
config and font files, and about the program itself.
 Well, it could be a kind of man page, if I had patience to format it:-)))

 For installing (and quick install) read INSTALL

 For other nice things check out the contrib/ dir. There you will find an
IRC script and other nice things that people sent to me. (Not fonts. These
are in the directory fonts/ and will be automatically installed)

 NEW: For checking the differences from the last release, look at HISTORY. The 
important ones have to do with changing the name of config files and the 
default library dir: 
  After 1.02, the config file will be called .dbannerrc (or dbanner.cfg), and
the default lib dir is /usr/local/bin/dbanner/            
  And now you can specify the config file with a environment variable:
DBANNER_CONFIG_FILE. (This must be usefull to MS-DOS users):
  On bash: export DBANNER_CONFIG_FILE=/full/path/to/your/config/file.cfg
  On tcsh: setenv DBANNER_CONFIG_FILE /full/path/to/your/config/file.cfg
  On DOS/win95: put the following line (or some like it) at your autoexec.bat: 
     set DBANNER_CONFIG_FILE=/full/path/to/your/config/file.cfg 
 
 Well, after these modifications, on near future probably there will be not 
many changes on the program itself... But you can always check 
http://alfa.ist.utl.pt/~l38061/download/ for new fonts that may appear (ppl 
send them to me :-)), and for a GUI front-end for dbanner (in TCL/TK) that I 
am thinking to do (something like a editor... In one win you type, and the 
text appears on the other... So you can do cut-and-paste... Choose the fonts, 
width, optional input and output files, etc...)


Using:
  - HELP: "dbanner -h" shows a little HELP.
  - It reads from input and prints the ascii-art-chars on output.
     type "dbanner", type something, and you will see the result :-)
  - It takes chars from the command line too : 
     type "dbanner -s Hello this is my text" and see the result

* Config File


 1) Where is it ??

 When program starts, it tryes to read a config file ('.dbannerrc' in unix, or 
'dbanner.cfg' on other systems, but you can change these names editing config.h
before compilation).
  It first search this file in current dir: ./dbannerrc
  If unsucessfull tries to open the file specified by the environment variable
 DBANNER_CONFIG_FILE. 
  If unsucessfull tries $HOME/.dbannerrc . If still unsucessfull, it will try 
the default system config file (DEFAULT_CONFIG_FILE_DIR/.dbannerrc
  If unsucessfull, it will use the hardcoded defaults (see config.h and 
banner.c)


 2) Format of Config File
   
  The config file must have lines with he following format:

 <font_name> <font_directory> <name_of_file_with_the_font>  

  The strings <font_name>, <font_directory> and 
 <name_of_file_with_the_font> must not have spaces.
 Example of configuration file (in unix):

 normal  /usr/local/lib/dbanner/  dban_font_normal
 gothic  /usr/local/lib/dbanner/  dban_font_gothic


 With a config file like this , if you do a dbanner -f, it will show the 
following fonts:

 (1) - normal
 (2) - gothic



** Font File
R

  1) Where are they??

 They can be on curent dir or on the dir defined by the config file, or in the 
file defined by the -f argument (if this is not already a defined font)
 When you do dbanner -f <font_name>, it first search if <font_name> is defined
in config file. If it is, uses the entry on config file. If not, it will try
to open a file with the name <font_name>.


 2) Format of Font File (YES, YOU CAN ADD NEW FONTS!! :-))
  
  The font files must have the following format:

BEGIN_CHAR <char>
.
. (put the char's  ascii-art-picture here)
. 
END_CHAR

  Example:


BEGIN_CHAR A
  ___  
 / _ \ 
| |_| |
|  _  |
| | | |
|_| |_|
END_CHAR

BEGIN_CHAR B
 ____  
|  _ \ 
| |_) |
|  _ < 
| |_) |
|____/ 
END_CHAR

 - Important: Note that the number of lines of the AsciiArt font (height) 
   will be the height of the biggest char of all. All the chars will have 
   the same number of lines (height).


*** About dbanner

  Well, it toke me more time to write the makefile for it than writing the 
program itself :-))). Besides, I wrote it some time ago (in middle 95, I guess)
and I think it was the first program I wrote to unix to distribute (with a 
Makefile and a README and a INSTALL :-)) ).
  It was first written on a Digital Unix (I guess). Now I just finished it 
(take out warnings, changed names of config files and put a install on 
makefile) on a Linux 2.0.27. 
  It is distributed under GPL (General Public License)
  The code was written all in portuguese (in 95 I always coded in portuguese).
  So, if you want to change something, unfortunally, the comments will not
help you, they are all in portuguese... But the program is simple.
  If you change something, (or if you use this) please let me know.
  Oh... by the way... Dont judge me by looking at this code :-))) It is not 
very well designed, the coding style is a mess... (That time I still haven't 
read about OO and encapsulation...)... But it is a small program...  And
works nice !!! :-)))

**** Credits and Contact:

  This program was made by Aristides P. Preto Jr.
  Except the ascii art for the fonts. They were taken from the net... (Don't 
 know who did them  :-(( ) I just formated then for dbanner font file format.
  Bugs, suggestions, $$$, etc, please contact:
  
  appj@rnl.ist.utl.pt
  http://alfa.ist.utl.pt/~l38061

  And if you USE this program, let me know (unbelivable... You are really 
 reading this, and using this program!!! :-)).
  Send me a e-mail with something like "I use dbanner (ooh gosh!!!)" as
 subject.  


***** Contributions:

  - Dawid Kuroczko  <dark@pipeta.krakow.linux.org.pl>
      The first official contributor :-)) Sended me a lot of sugestions, the
      Font files pipechar (and others), the IRC script and is the brave soul 
      that built (and mantains) the RPM and SRPM distributions for dbanner.
      Polish Language Support.
      Also, never stops looking (and asking ppl) for new fonts... Thanks Dawid.

  - Kitya Karlson <karlson@karlson.mccme.ru> 
      Russian language support, and pointed a bug (dbanner did not recognize 
      chars with ascii code > 127 because I used "char" instead of
      "unsigned char" :-))

  - Jim Jackson <jj@scs.leeds.ac.uk>
      The manual page.

  New font files will be ***very*** welcome!!!!!
  Send then to appj@rnl.ist.utl.pt, please!!! (And you happily will appear on 
  the contributors list :-)))) 

****** Thanks:

 - Christoph Tietz <Christoph.Tietz@mch.sni.de> 
     For lots of suggestions about making this program more portable (look at 
     the HISTORY file).

 - Patrick Fischer <gandalf@babcom.chnet.ch>
     A little tip (bugfix?) about the makefile.


dbanner-1.02/dbanner.lsm100600    764    764        1451  6323145124  13323 0ustar  appjappjBegin3
Title:     	dbanner     
Version:       	1.02
Size:		23Kb
Entered-date:   Thu Apr 10 12:07:43 WET DST 1997
Description:    dbanner is, yet, another banner. Read input, and writes it in 
		big-ascii-chars. But with this one, you can use different 
		(ascii-art) fonts (gothic, side, etc) at your will. You can 
		even create your own ascii-art font and use it with dbanner.
Keywords:    	banner ascii-art in-utilities
Author:         appj@rnl.ist.utl.pt (Aristides P. Preto Jr.)
Maintained-by:  same       
Primary-site:   http://alfa.ist.utl.pt/~l38061/download/
Alternate-site: http://193.136.132.2/~l38061/download/ (same as Primary-site)
                ftp://ftp.redhat.com/pub/contrib/
			dbanner-1.02-5.i386.rpm
			dbanner-1.02-5.src.rpm		   
Platform:       Unix , DOS
Copying-policy: GPL
End


dbanner-1.02/contrib/ 40700    764    764           0  6332776664  12560 5ustar  appjappjdbanner-1.02/contrib/dbanner.irc100600    764    764        5127  6323142765  14761 0ustar  appjappj#
#   DBANNER.IRC v1.2.2 ircii script				7.4.1997
#   Copyright (C) 1997 Dawid Kuroczko (dark@pipeta.krakow.linux.org.pl)
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software
#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# ----------------------------------------------------------------------
# Filename   : DBANNER.IRC
# Description: Quite well working banner program for use on IRC
#              Main advantage: Takes little memory and gives
#              large number of fonts to use
# Author     : Dawid Kuroczko (dark@pipeta.krakow.linux.org.pl)
# Comments   : "I wouldn't do this littlle thing if
#              Aristides P. Preto Junior hasn't done his dbanner"
#              At the beginning it was a LiCe script module.
#              Now it should be working with any ircii script.
# ----------------------------------------------------------------------

@ dbanner.path = ["/usr/local/bin"]
@ dbanner.lib = ["/usr/local/lib/dbanner"]
@ dbanner.font = ["little"]

alias db {
  if ([$1]) {
    if ([$[1]0]==[-]) {
      if ([$[2]0]==[-f]) {
        if ([$2] == [*]) { @ dbanner.orig = [$C] } { @ dbanner.orig = [$2] } 
        ^exec -msg $dbanner.orig $dbanner.path/dbanner -w 70 -f $1 -s "$3-" | egrep -xv " *"
      }{^exec $dbanner.path/dbanner -w 70 -f $1 -s "$2-" | egrep -xv " *"} 
    }{if ([$0] == [*]) { @ dbanner.orig = [$C] } { @ dbanner.orig = [$0] } 
    ^exec -msg $dbanner.orig $dbanner.path/dbanner -w 70 -f $dbanner.font -s "$1-" | egrep -xv " *"}
  }{echo [?] Usage: /DB <nick|#channel> [-f <fontname>] <string to banner>
  echo [?] To test the result, try: /DB -t <fontname> <string to banner>
  ^exec -name dbanner cat $dbanner.lib/.dbannerrc | awk 'BEGIN \{ printf "[?] Where fontname use one of these: " \} END \{printf "\\n"\} \{ printf \$1 ", "\}'}
  ^assign -dbanner.orig
}
echo #  ____    _____  #
echo # |    \  |  __ \ #  DBANNER.IRC, by DArK (dark@pipeta.krakow.linux.org.pl)
echo # |  |  | |  __ < #
echo # |____/  |_____/ #  For Command Help Type: /DB
dbanner-1.02/contrib/dbanner.1100600    764    764       10712  6332776506  14366 0ustar  appjappj.TH dbanner 1 "14Apr97" "Release 1" "Unix System Manual"
.SH NAME
.I dbanner \- writes large ASCII fonts for banners/headers
.SH SYNOPSIS
.B dbanner [-h] [-i file] [-o file] [-f font] [-w width]
.br
.B dbanner -s text

.SH DESCRIPTION
.I dbanner
allows you to transform simple ASCII text in beautifull ASCII
art. Fonts can change, according to your needs.
.PP
It reads from standard input and prints the ASCII-art-chars to
standard output.
Type "dbanner", type something, and you will see the result.
It can take chars from the command line too, using the
.I -s
option.
.PP
e.g. dbanner -s Hello this is my text
.SH OPTIONS
.IP -h
display usage and help info
.IP -i\ <input_file>
default is standard input.
.IP -o\ <output_file> 
default is standard output.
.IP -w\ <width>
resizes width (default is 80)
.IP -f\ [font_name]
shows available fonts or changes the font. If font_name
is not in your (or system's) .dbannerrc file, or in defaults, then
font_name is the name of the file containing the font.
.IP -s\ <line>
processes line instead input (all flags after -s are ignored).
.SH EXAMPLES
.SH
.SH FILES
.PP
.I Configuration\ Files:
When the program starts, it tries to read a config file '.dbannerrc'
in the current directory, if that fails it looks in $HOME/.dbannerrc.
If that fails it will try the system default config file in
.I /usr/local/dbanner/.dbannerrc
\ \. If that fails it uses the defaults it was compiled with.
Alternatively you can set the environment vairable DBANNER_CONFIG_FILE
to specify the config file to use.
.PP
.I Format\ of\ Config\ File:
The config file must have lines with the following format:
.PP
<font_name> <font_directory> <name_of_file_with_the_font>  
.PP
The strings <font_name>, <font_directory> and 
<name_of_file_with_the_font> must not have spaces.
.PP
Example of configuration file:
.br
.sp
normal  /usr/local/lib/dbanner/  dban_font_normal
.br
gothic  /usr/local/lib/dbanner/  dban_font_gothic
.PP
With a config file like this, if you do a dbanner -f, it will show the 
following fonts:
.br
.sp
(1) - normal
.br
(2) - gothic
.PP
.I Font\ Files
can be in the current directory or in the directory defined in the config
file, or in the file defined by the -f argument - if this is 
not already a defined font.
When you do dbanner -f <font_name>, it first checks if <font_name> is defined
in the config file. If it is, it uses this entry. If not, it will try
to open a file with the name <font_name>.
.PP
The font files must have the following format:
.br
.sp
BEGIN_CHAR <char>
.br
\.\.\.
.br
\.\.\. (put the char's  ascii-art-picture here)
.br
\.\.\. 
.br
END_CHAR

.IP Example:
BEGIN_CHAR A
.br

.br
  ___  
.br
 / _ \\
.br
| |_| |
.br
|  _  |
.br
| | | |
.br
|_| |_|
.br
END_CHAR
.br
.PP
.I Important:
Note that the number of lines of the AsciiArt font (height) will be the height
of the biggest char of all. 
All the chars will have the same number of lines (height).
.SH SEE ALSO
.SH
.SH BUGS
.SH
.SH COPYING
.I Copyright 1995, 1996, 1997 the author (see below)
.PP
The software described by this manual is covered by the GNU General
Public License, Version 2, June 1991, issued by :
.IP
Free Software Foundation, Inc.,
.br
675 Mass Ave,
.br
Cambridge, MA 02139, USA
.PP
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
.PP
Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the
entire resulting derived work is distributed under the terms of a
permission notice identical to this one.
.PP
Permission is granted to copy and distribute translations of this
manual into another language, under the above conditions for modified
versions, except that this permission notice may be included in
translation instead of in the original English.
.SH PROGRAM\ AUTHOR
This program was written by Aristides P. Preto Jr.
.PP
Except the ascii art for the fonts. They were taken from the net... don't 
know who did them, I just formatted them for the dbanner font file format.
.PP
Bugs, suggestions, $$$, etc, please contact:
.br
.sp
appj@rnl.ist.utl.pt
.br
http://alfa.ist.utl.pt/~l38061
.PP
And if you USE this program, let the author know.
Send me a e-mail with something like "I use dbanner (ooh gosh!!!)" as
subject.  
.SH MANUAL\ AUTHOR
.I Jim Jackson
.br
.I School of Computer Studies
.br
.I University of Leeds
.I The University of Leeds
.br
.I Leeds, LS2 9JT
.br
.I UK
.br
.sp
.I Email: jj@scs.leeds.ac.uk
.br



dbanner-1.02/HISTORY100600    764    764        4361  6333000374  12262 0ustar  appjappjdbanner-1.02b5
  Diff from previous:
  - Now dbanner really recognizes chars with ascii code up to 255. The problem 
    was I was using char instead of unsigned char (thanks to Kitya Karlson for
    pointing me this error). I just did a quick fix (also called "hack" :-)), 
    "#define char unsigned char" ... Someday I should make it the right way, 
    defining as unsigned char only the relevant vars
  - Added to contrib/ dir (and to "make install" on Makefile) the man page 
    sent by Jim Jackson <jj@scs.leeds.ac.uk>

dbanner-1.02b4
  Diff from previous:
  - Russian Language support by Kitya Karlson
  - Little bugfix on contrib/dbanner.irc (set lib=/usr/local/lib/dbanner 
    instead of /usr/local/lib/dban)
  - Created a file called version.h with the macro #define VERSAO "blah blah"
    (this macro used to be in banner.c)

dbanner-1.02b3
 Diff from previous:
 - Patches to bubble font and irc script sent to me by Dawid Kuroczo. 

dbanner-1.02b2
 Differences from previous version:
 - Added patches sent by Dawid Kuroczo <dark@pipeta.krakow.linux.org.pl>, with
   changes to irc script, polish suport, and 2 more fonts.
 - Create a new file called lang.h, with the #defines for messages and helps 
   in various languages (this code used to be in banner.c)

dbanner-1.02b1
 Differences from previous version:
 - Adeedd a contrib/ directory, with contributions 
    (IRC Script and Fonts from Dawid Kuroczo <dark@pipeta.krakow.linux.org.pl>)
 - Now it exits 0 if sucessfull and 1 in error (like all other normal unix
   programs :-))
 - Some modifications to source to be more portable (thanks to Christoph Tietz
   <Christoph.Tietz@mch.sni.de> for pointing them out)
     * Included a #ifdef unix 
     * Changed int chr; to char chr; in read_font()
     * added CC=gcc to Makefile (I forgot! :-)
 - Change in Makefile: create_config_file to ./create_config_file
 - Changed the default directories and config file names:
     * /usr/local/lib/dban/ is now /usr/local/lib/dbanner/
     * The config file:  .dbanrc is now .dbannerrc
 - Added one more option to the config file: If there is any environment 
   variable called DBANNER_CONFIG_FILE, it is interpreted as an possible 
   config file, and will try to open this (That must be usefull to the DOS
   lusers ;-))))

dbanner-1.02/lang.h100600    764    764       10572  6323142507  12315 0ustar  appjappj/************************************************************
*
*      DRKBANNER
*
*      Programador : Aristides P. Preto Junior
* 
*      E-mail:       appj@rnl.ist.utl.pt
*
*
***/

#ifndef __LANG_H__
#define __LANG_H__

#include "config.h"


#ifdef LANGUAGE_ENGLISH

#define ARG_INVALIDO "Invalid arguments. Try -h for help.\n"
#  define OPEN_ERROR_s "Error: cant open %s\n"
#  define FONT_s_NOEXIST "Error: Font %s do not exists!!\n"
#  define USO  "Usage: dbanner [-h] [-i <in>] [-o <out>] [-f [font]]\
 [-w <width>] [-s <line>]\n"
#define FONTS_AVAILABLE "dbanner - Available fonts :\n"
#  define HELP_TEXT "DBANNER - by Aristides P. Preto Jr. \n\
Version: %s\n\
E-Mail : appj@rnl.ist.utl.pt\n\
Arguments: \n\
  -h shows this help.\n\
  -i <input_file> (default is input).\n\
  -o <output_file> (default is output).\n\
  -w <width> - resizes width (default is %d)\n\
  -f [font_name] shows available fonts or changes the font. If font_name\n\
  is not in your (or system\'s) %s file, or in defaults, then\n\
  font_name is the name of the file containing the font.\n\
  -s <line> - processes line instead input (all flags after -s are ignored).\n"

#endif /* English*/


#ifdef LANGUAGE_PORTUGUESE

#define ARG_INVALIDO "Argumento invalido. Tente -h para ajuda.\n"
#  define OPEN_ERROR_s "Erro ao abrir o ficheiro %s\n"
#  define FONT_s_NOEXIST "Erro: A fonte %s nao existe!!!\n"
#  define USO  "Uso: dbanner [-h] [-i <in>] [-o <out>] [-f [fonte]] [-w <tam.>] [-s <linha>]\n"
#  define FONTS_AVAILABLE "DBANNER - Fontes disponiveis :\n"
#  define HELP_TEXT "DBANNER - por Aristides P. Preto Jr. \n\
Versao: %s\n\
E-Mail : appj@rnl.ist.utl.pt\n\
Argumentos: \n\
  -h mostra este quadro de ajuda.\n\
  -i <ficheiro_entrada> (por omissao e o input).\n\
  -o <ficheiro_saida> (por omissao e o output).\n\
  -w <tamanho> - redefine o tamanho maximo de uma linha (por omissao e %d)\n\
  -f [nome_fonte] Muda ou mostra as fontes disponiveis. Se nome_fonte\n\
  nao estiver no seu (ou no do sistema) %s, ou nos defaults, entao\n\
  nome_fonte e o nome do ficheiro contendo a fonte.\n\
  -s <linha> - processa linha ao inves do input (todos os argumentos apos -s\n\
  sao ignorados)\n"

#endif /* Portuguese */


#ifdef LANGUAGE_POLISH
/*
  Polish language support by Dawid Kuroczko (dark@pipeta.krakow.linux.org.pl)
*/

#define ARG_INVALIDO "Nieprawid³owe argumenty. Spróbuj -h by uzyskaæ pomoc.\n"
#  define OPEN_ERROR_s "B³±d: nie da siê otworzyæ %s\n"
#  define FONT_s_NOEXIST "B³±d: Czcionka %s nie istnieje!!\n"
#  define USO  "Usage: dbanner [-h] [-i <wej>] [-o <wyj>] [-f [czcionka]]\
 [-w <d³ugo¶æ>] [-s <linia>]\n"
#define FONTS_AVAILABLE "dbanner - dostêpne czcionki :\n"
#  define HELP_TEXT "DBANNER - autor: Aristides P. Preto Jr. \n\
Wersja: %s\n\
E-Mail: appj@rnl.ist.utl.pt\n\
Jêzyk polski: Dawid Kuroczko <dark@pipeta.krakow.linux.org.pl>\n\n\
Argumenty: \n\
  -h poka¿ t± pomoc.\n\
  -i <plik_wej¶ciowy> (domy¶lnie jest to wej¶cie).\n\
  -o <plik_wyj¶ciowy> (domy¶lnie jest to wyj¶cie).\n\
  -w <d³ugo¶æ> - zmienia d³ugo¶æ (domy¶lna d³ugo¶æ to %d)\n\
  -f [nazwa_czcionki] Wy¶wietla dostêpne czcionki lub wybiera odpowiedni±\n\
  czcionkê. Je¶li nazwa_czcionki nie jest dostêpna w twoim (b±d¼ systemowym)\n\
  pliku %s, albo w warto¶ciach domy¶lnych - wtedy nazwa_czcionki\n\
  jest nazw± pliku zawieraj±cego dan± czcionkê.\n\
  -s <linia> - przetwarzaj liniê zamiast wej¶cia (wszelkie flagi po -s s±
  ignorowane).\n"

#endif /* Polish*/



#ifdef LANGUAGE_RUSSIAN

#define ARG_INVALIDO "îÅ ×ÅÒÎÙÅ ÐÁÒÁÍÅÔÒÙ, -h ×Ù×ÏÄÉÔ ÐÏÄÓËÁÚËÕ.\n"
#  define OPEN_ERROR_s "ïÛÉÂËÁ: ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
#  define FONT_s_NOEXIST "ïÛÉÂËÁ: ÛÒÉÆÔ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ!!\n"
#  define USO  "óÉÎÔÁËÓÉÓ: dbanner [-h] [-i <in>] [-o <out>] [-f [font]]\
 [-w <width>] [-s <line>]\n"
#define FONTS_AVAILABLE "dbanner - äÏÓÔÕÐÎÙÅ ÛÒÉÆÔÙ :\n"
#  define HELP_TEXT "DBANNER - by Aristides P. Preto Jr. \n\
Version: %s\n\
E-Mail : appj@rnl.ist.utl.pt\n\
ëÉÒÉÌÉÃÁ ÏÔ ëÁÒÌÓÏÎÁ: karlson@karlson.mccme.ru\n\
ðÁÒÁÍÅÔÒÙ: \n\
  -h ÜÔÁ ÐÏÄÓËÁÚËÁ.\n\
  -i <input_file> (ÐÏ ÕÍÏÌÞÁÎÉÀ input).\n\
  -o <output_file> (ÐÏ ÕÍÏÌÞÁÎÉÀ output).\n\
  -w <width> - ÛÉÒÉÎÁ (ÐÏ ÕÍÏÌÞÁÎÉÀ %d)\n\
  -f [font_name] ÐÏËÁÚÙ×ÁÅÔ ÄÏÓÔÕÐÎÙÅ ÛÒÉÆÔÙ ÉÌÉ ÍÅÎÑÅÔ ÛÒÉÆÔ. åÓÌÉ\n\
  font_name ÎÅ × ×ÁÛÅÍ (ÉÌÉ ÓÉÓÔÅÍÎÏÍ) %s ÆÁÊÌÅ, ÔÏ \n\
  font_name ÉÍÑ ÆÁÊÌÁ ÓÏÄÅÒÖÁÝÅÇÏ ÛÒÉÆÔ. \n\
  -s <line> - ÒÁÂÏÔÁÅÍ ÓÏ ÓÔÒÏËÏÊ ×ÍÅÓÔÏ input_file (×ÓÅ ÁÒÇÕÍÅÎÔÙ\n\
  ÐÏÓÌÅ ÓÔÒÏËÉ ÉÇÎÏÒÉÒÕÀÔÓÑ).\n"
#endif /* Russian*/

#endif /* __LANG_H__ */

dbanner-1.02/version.h100600    764    764         216  6332721666  13024 0ustar  appjappj/*
  DBANNER - Aristides P. Preto Jr. <appj@rnl.ist.utl.pt>
*/
#undef  VERSAO
#define    VERSAO "1.02b5 - Sat May  3 21:44:36 WET DST 1997"


Results 1 - 1
Help - FTP Sites List - Software Dir.
Searching half a billion files worldwide
© 1997-2009 MARUHN Internet Solutions