ftp.nice.ch/pub/next/unix/text/recode-3.4.s.tar.gz#/recode-3.4/merged.c

This is merged.c in view mode; [Download] [Up]

/* A lexical scanner generated by flex */

/* Scanner skeleton version:
 * $Header: /home/daffy/u0/vern/flex/flex-2.4.7/RCS/flex.skl,v 1.2 94/08/03 11:13:24 vern Exp $
 */

#define FLEX_SCANNER

#include <stdio.h>


/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
#ifdef c_plusplus
#ifndef __cplusplus
#define __cplusplus
#endif
#endif


#ifdef __cplusplus

#include <stdlib.h>
#include <unistd.h>

/* Use prototypes in function declarations. */
#define YY_USE_PROTOS

/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST

#else	/* ! __cplusplus */

#ifdef __STDC__

#define YY_USE_PROTOS
#define YY_USE_CONST

#endif	/* __STDC__ */
#endif	/* ! __cplusplus */


#ifdef __TURBOC__
#define YY_USE_CONST
#endif


#ifndef YY_USE_CONST
#ifndef const
#define const
#endif
#endif


#ifdef YY_USE_PROTOS
#define YY_PROTO(proto) proto
#else
#define YY_PROTO(proto) ()
#endif

/* Returned upon end-of-file. */
#define YY_NULL 0

/* Promotes a possibly negative, possibly signed char to an unsigned
 * integer for use as an array index.  If the signed char is negative,
 * we want to instead treat it as an 8-bit unsigned char, hence the
 * double cast.
 */
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)

/* Enter a start condition.  This macro really ought to take a parameter,
 * but we do it the disgusting crufty way forced on us by the ()-less
 * definition of BEGIN.
 */
#define BEGIN yy_start = 1 + 2 *

/* Translate the current start state into a value that can be later handed
 * to BEGIN to return to the state.
 */
#define YY_START ((yy_start - 1) / 2)

/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)

/* Special action meaning "start processing a new file".  Now included
 * only for backward compatibility with previous versions of flex.
 */
#define YY_NEW_FILE yyrestart( yyin )

#define YY_END_OF_BUFFER_CHAR 0

/* Size of default input buffer. */
#define YY_BUF_SIZE 16384

typedef struct yy_buffer_state *YY_BUFFER_STATE;

extern int yyleng;
extern FILE *yyin, *yyout;

#ifdef __cplusplus
extern "C" {
#endif
	extern int yywrap YY_PROTO(( void ));
#ifdef __cplusplus
	}
#endif

#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2

/* The funky do-while in the following #define is used to turn the definition
 * int a single C statement (which needs a semi-colon terminator).  This
 * avoids problems with code like:
 *
 * 	if ( condition_holds )
 *		yyless( 5 );
 *	else
 *		do_something_else();
 *
 * Prior to using the do-while the compiler would get upset at the
 * "else" because it interpreted the "if" statement as being all
 * done when it reached the ';' after the yyless() call.
 */

/* Return all but the first 'n' matched characters back to the input stream. */

#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
		*yy_cp = yy_hold_char; \
		yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
		} \
	while ( 0 )

#define unput(c) yyunput( c, yytext_ptr )


struct yy_buffer_state
	{
	FILE *yy_input_file;

	char *yy_ch_buf;		/* input buffer */
	char *yy_buf_pos;		/* current position in input buffer */

	/* Size of input buffer in bytes, not including room for EOB
	 * characters.
	 */
	int yy_buf_size;

	/* Number of characters read into yy_ch_buf, not including EOB
	 * characters.
	 */
	int yy_n_chars;

	/* Whether this is an "interactive" input source; if so, and
	 * if we're using stdio for input, then we want to use getc()
	 * instead of fread(), to make sure we stop fetching input after
	 * each newline.
	 */
	int yy_is_interactive;

	/* Whether to try to fill the input buffer when we reach the
	 * end of it.
	 */
	int yy_fill_buffer;

	int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
	/* When an EOF's been seen but there's still some text to process
	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
	 * shouldn't try reading from the input source any more.  We might
	 * still have a bunch of tokens to match, though, because of
	 * possible backing-up.
	 *
	 * When we actually see the EOF, we change the status to "new"
	 * (via yyrestart()), so that the user can continue scanning by
	 * just pointing yyin at a new input file.
	 */
#define YY_BUFFER_EOF_PENDING 2
	};

static YY_BUFFER_STATE yy_current_buffer = 0;

/* We provide macros for accessing buffer states in case in the
 * future we want to put the buffer states in a more general
 * "scanner state".
 */
#define YY_CURRENT_BUFFER yy_current_buffer


/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;

static int yy_n_chars;		/* number of characters read into yy_ch_buf */


int yyleng;

/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 1;		/* whether we need to initialize */
static int yy_start = 0;	/* start state number */

/* Flag which is used to allow yywrap()'s to do buffer switches
 * instead of setting up a fresh yyin.  A bit of a hack ...
 */
static int yy_did_buffer_switch_on_eof;

static void yyunput YY_PROTO(( int c, char *buf_ptr ));
void yyrestart YY_PROTO(( FILE *input_file ));
void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
void yy_load_buffer_state YY_PROTO(( void ));
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));

static int yy_start_stack_ptr = 0;
static int yy_start_stack_depth = 0;
static int *yy_start_stack = 0;
static void yy_push_state YY_PROTO(( int new_state ));
static void yy_pop_state YY_PROTO(( void ));
static int yy_top_state YY_PROTO(( void ));

static void *yy_flex_alloc YY_PROTO(( unsigned int ));
static void *yy_flex_realloc YY_PROTO(( void *, unsigned int ));
static void yy_flex_free YY_PROTO(( void * ));

#define yy_new_buffer yy_create_buffer

#define INITIAL 0
#define ascii_latin1 1
#define html_latin1 2
#define latex_latin1 3
#define texte_latin1 4
typedef unsigned char YY_CHAR;
typedef int yy_state_type;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
extern char *yytext;
#define yytext_ptr yytext

#ifndef yytext_ptr
static void yy_flex_strncpy YY_PROTO(( char *, const char *, int ));
#endif

#ifdef __cplusplus
static int yyinput YY_PROTO(( void ));
#else
static int input YY_PROTO(( void ));
#endif

static yy_state_type yy_get_previous_state YY_PROTO(( void ));
static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
static int yy_get_next_buffer YY_PROTO(( void ));
static void yy_fatal_error YY_PROTO(( const char msg[] ));

/* Done after the current pattern has been matched and before the
 * corresponding action - sets up yytext.
 */
#define YY_DO_BEFORE_ACTION \
	yytext_ptr = yy_bp; \
	yyleng = yy_cp - yy_bp; \
	yy_hold_char = *yy_cp; \
	*yy_cp = '\0'; \
	yy_c_buf_p = yy_cp;

#define YY_END_OF_BUFFER 274
static const short int yy_accept[977] =
    {   0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
      274,  273,  273,  273,  273,  273,  273,  273,  273,  273,
      273,  273,  273,  273,  273,  273,  273,  273,  273,  273,
      273,  273,  273,  273,  273,  273,  273,  273,  273,  273,
      273,  273,  273,  273,  132,  273,  273,  273,  273,  273,
      273,  273,  273,  273,  273,  273,  273,  273,  273,  273,
      273,  273,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,  133,  148,  152,  135,  124,  125,  126,  127,  143,
      146,  138,  212,  212,  175,  134,    0,  128,    0,  212,
      212,  212,  212,  212,  212,  204,  212,  129,  130,    0,
      136,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,  214,    0,  216,  215,    0,    0,  226,  227,  223,
        0,  236,  235,    0,    0,  242,  241,    0,  248,  247,
      213,    0,  219,  218,    0,    0,  232,  233,  229,    0,
      239,  238,    0,  245,  244,    0,  251,  250,    1,    2,
        7,   12,   16,   22,   27,   34,   39,   43,   49,   29,

       54,   56,    4,   10,   14,   19,   25,   28,   31,   37,
       41,   46,   52,   55,    8,   35,   23,   50,    5,    3,
        6,   11,    9,   15,   13,   17,   20,   18,   21,   26,
       24,   32,   38,   42,   47,   53,   30,   36,   40,   45,
       51,   33,   44,   48,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,  157,  164,  168,  174,  179,    0,  186,  193,  203,
      208,  210,    0,  154,  162,  166,  171,  177,  180,    0,
      183,  191,  200,  206,  209,    0,  212,  158,  159,    0,
      175,    0,  134,    0,  155,  163,  167,  172,  178,    0,
      184,  192,  201,  207,    0,  153,  161,  165,  170,  176,
        0,  182,  190,  199,  205,    0,  187,  188,  212,  212,
      212,    0,  212,  212,  212,  204,    0,  181,  156,  169,
      173,  185,  198,  202,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

      217,  221,  228,  225,  237,    0,  243,  249,  220,  222,
      234,  231,  240,  246,  252,   66,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
       98,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,   59,    0,    0,    0,    0,   58,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,  197,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,  195,    0,    0,    0,    0,    0,

        0,    0,    0,    0,    0,    0,    0,  158,    0,  159,
        0,  212,  175,  134,  196,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,  194,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,  187,    0,  188,    0,
      212,  160,  189,  212,    0,    0,  212,  212,  137,  204,
      181,    0,    0,    0,    0,    0,    0,    0,  261,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,  224,    0,  230,    0,
        0,    0,    0,    0,    0,    0,    0,   76,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,   57,    0,    0,    0,    0,    0,
        0,    0,  108,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,  197,  211,    0,    0,  195,    0,    0,  158,
      159,  196,    0,    0,  194,    0,    0,  187,  188,  212,
      212,  212,  212,  137,    0,  181,    0,    0,    0,    0,
        0,    0,    0,    0,    0,  263,    0,    0,  267,    0,
        0,    0,    0,    0,  266,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

        0,   83,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,  211,    0,  197,  197,  195,
      195,  196,  196,  194,  194,  212,  145,    0,    0,    0,
      137,    0,    0,    0,    0,    0,    0,    0,  272,    0,
        0,    0,    0,    0,    0,  269,    0,    0,    0,    0,
        0,   65,    0,    0,  115,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

       90,    0,    0,    0,    0,    0,    0,    0,    0,    0,
       97,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,  122,
        0,    0,    0,    0,    0,    0,  211,  212,    0,    0,
        0,  255,    0,    0,  271,  254,    0,    0,    0,    0,
      265,    0,    0,    0,  270,   61,   62,   64,   60,   63,
       67,   69,   70,   71,   68,   73,   74,   75,   72,   77,
       79,   80,   82,   78,    0,   81,   86,   87,   88,   85,
       89,   93,   94,   96,   92,   95,   99,  101,  102,  103,
      100,  105,  106,  107,  104,  109,  111,  112,  114,  110,

        0,  113,   91,  118,  119,  120,  117,  121,  123,  212,
      150,  149,  151,    0,    0,    0,    0,  262,    0,  258,
        0,    0,    0,    0,   84,  116,  212,  150,    0,  149,
        0,  151,    0,    0,    0,    0,    0,    0,    0,  256,
        0,    0,  264,  268,    0,    0,  131,  150,  149,  151,
        0,    0,    0,    0,    0,    0,  253,  257,  259,  260,
      131,    0,    0,    0,  147,  141,  142,    0,  131,  144,
      140,    0,    0,    0,  139,    0
    } ;

static const int yy_ec[256] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    2,    3,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    3,    4,    5,    6,    7,    8,    9,   10,    1,
        1,    1,    1,   11,   12,    1,   13,    1,   14,   15,
       16,   17,    1,    1,    1,    1,    1,   18,   19,   20,
        1,   21,   22,    1,   23,   24,   25,   26,   27,   28,
       29,   30,   31,   32,   28,   33,   34,   35,   36,   28,
       28,   37,   38,   39,   40,   41,   28,   28,   42,   28,
        1,   43,    1,   44,   45,   46,   47,   48,   49,   50,

       51,   52,   53,   54,   55,   32,   56,   57,   58,   59,
       60,   61,   28,   62,   63,   64,   65,   66,   28,   67,
       68,   28,   69,    1,   70,   71,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1
    } ;

static const int yy_meta[72] =
    {   0,
        1,    1,    2,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    1,    1,    1,    1,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    2,    1,
        1
    } ;

static const short int yy_base[990] =
    {   0,
        0,    0,    0,    0, 1309, 1308,    2,   48,  119,    0,
     1316, 1319, 1313, 1312, 1311, 1310, 1309, 1308, 1307, 1306,
     1305, 1304, 1303, 1302, 1301, 1300, 1299, 1298, 1297, 1296,
     1295, 1294, 1293, 1292, 1291, 1290, 1289, 1288,  168, 1279,
     1278, 1277,  232, 1240, 1319,  281, 1275,   10, 1273,   56,
       32, 1273,   57,   62,    0, 1236,   67, 1270,   72,  204,
      208,  304,  331,  377,    4,   21, 1275, 1274,  313, 1267,
      201,  328, 1206,  351,  337, 1266,  378,  400,  402, 1264,
      406,  410, 1203,  448, 1268,  425,    4,  330,  417, 1223,
     1240,  433,   39, 1230, 1205,   46, 1238,  290, 1220,  438,

     1217,  448, 1201,  326, 1200, 1199,  457, 1199, 1207,  464,
       37, 1319, 1319, 1319,  499, 1319, 1319, 1319, 1319,  546,
     1319, 1319,  365,    0,   14,   29,  593, 1319,  640,  487,
      446,  352,   35,  436,  318,   36,  460, 1319, 1319,  501,
     1319,   57, 1209,  145,  134, 1199, 1211, 1198,  149,  158,
     1189, 1319,    0, 1319, 1319,  518,    0, 1245, 1319, 1319,
        0, 1319, 1319,  206,    0, 1319, 1319,    0, 1319, 1319,
     1319,    0, 1319, 1319,  540,    0, 1244, 1319, 1319,    0,
     1319, 1319,    0, 1319, 1319,    0, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,

     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1234, 1203, 1196, 1195, 1187, 1193,
     1192, 1195, 1204, 1214, 1194, 1187, 1186, 1178, 1190, 1183,
     1182, 1174, 1202, 1179, 1184, 1177, 1176, 1168, 1165, 1173,
     1191, 1177, 1170, 1169, 1161, 1173, 1172, 1165, 1164, 1199,
     1155, 1155, 1160, 1159, 1162, 1163, 1156, 1155, 1147, 1154,
     1188, 1157, 1150, 1149, 1141, 1183, 1146, 1151, 1144, 1143,

     1135, 1132, 1140, 1140, 1133, 1143, 1136, 1135, 1127, 1139,
     1132, 1319, 1319, 1319, 1319, 1319, 1131, 1319, 1319, 1319,
     1319, 1319,  687, 1319, 1319, 1319, 1319, 1319, 1319, 1130,
     1319, 1319, 1319, 1319, 1319,  733,   38,  246,  248, 1114,
      272, 1113,  311, 1112, 1319, 1319, 1319, 1319, 1319, 1126,
     1319, 1319, 1319, 1319,  594, 1319, 1319, 1319, 1319, 1319,
     1125, 1319, 1319, 1319, 1319,  595,  324,  357,  459,  506,
      456,  300,  471,  530,  474,  407, 1109,  475, 1319, 1319,
     1319, 1319, 1319, 1319,  549,  548, 1130, 1114, 1117, 1122,
     1115, 1126, 1117, 1116, 1115, 1109,   59,  168, 1121, 1111,

     1319, 1319, 1319, 1156, 1319,  276, 1319, 1319, 1319, 1319,
     1319, 1155, 1319, 1319, 1319, 1319, 1099, 1101, 1115, 1114,
     1101, 1102, 1108, 1126, 1137, 1090, 1092, 1106, 1105, 1086,
     1088, 1102, 1101, 1108, 1089, 1080, 1082, 1096, 1095, 1079,
     1083, 1102, 1073, 1075, 1089, 1088, 1069, 1068, 1070, 1084,
     1319, 1083, 1110, 1069, 1070, 1076, 1060, 1062, 1076, 1075,
     1102, 1319, 1055, 1057, 1071, 1070, 1319, 1059, 1050, 1052,
     1066, 1065, 1049, 1053, 1062, 1046, 1042, 1044, 1058, 1057,
     1038, 1055,  529, 1031, 1030, 1029, 1028, 1027, 1041, 1025,
     1024, 1023, 1022, 1021,  544, 1020, 1019, 1018, 1017, 1016,

     1015, 1029, 1013, 1012, 1011, 1010, 1009,  554, 1008,  559,
     1007, 1319, 1319, 1319,  578, 1006, 1005, 1004, 1003, 1002,
     1016, 1000,  999,  998,  997,  588,  996,  995,  994,  993,
      992, 1006,  990,  989,  988,  987,  592,  986,  599,  985,
      600, 1319, 1319,  601,  984,  983,  624,  629,  609, 1319,
      616,  982,  981,  980,  979,  978,  977,  976, 1319,  980,
      989,  996,  982,  976,  171,  975,  986,   25,  308,  973,
      380,  972,  989,  988,  979,  986, 1319,  574, 1319,  968,
      982,  979,  963,  975,  977,  971,  987, 1319,  960,  974,
      971,  955,  956,  970,  967,  951,  997,  965,  950,  964,

      961,  945,  950,  959,  973,  943,  957,  954,  938,  939,
      938,  952,  949,  933, 1319,  945,  947,  941,  931,  945,
      942,  926, 1319,  927,  941,  938,  922,  937,  922,  936,
      933,  917,  922,  931,  918,  920,  914,  928,  925,  909,
      910,  922,  646,  647,  902,  901,  648,  900,  899, 1319,
     1319,  663,  898,  897,  671,  896,  895, 1319, 1319,  672,
      676,  674,  679,  681,  894, 1319,  912,  909,  906,  909,
      908,  911,  902,  589,  891, 1319,  899,  899, 1319,  891,
      897,  896,  634,  895, 1319,  898,  883,  885,  895,  926,
      893,  886,  923,  890,  875,  877,  887,  886,  871,  873,

      883, 1319,  882,  881,  866,  868,  878,  872,  876,  907,
      874,  859,  861,  871,  870,  869,  854,  856,  866,  897,
      864,  857,  862,  847,  849,  859,  858,  843,  845,  855,
      854,  853,  838,  840,  850,  844,  848,  837,  878,  845,
      830,  832,  842,  841,  829,  689,  820, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319,  692,  694,  876,  875,    9,
     1319,  676,  822,  833,  681,  684,  830,  831, 1319,  832,
      835,  701,  834,  827,  826, 1319,  702,  859,  858,  857,
      856, 1319,  855,  854, 1319,  853,  852,  851,  850,  849,
      848,  847,  846,  845,  844,  843,  842,  841,  808,  839,

     1319,  838,  837,  836,  835,  834,  833,  832,  831,  830,
     1319,  829,  828,  827,  826,  825,  824,  823,  822,  821,
      820,  819,  818,  817,  816,  815,  782,  813,  812, 1319,
      811,  810,  809,  800,  799,  797, 1319,  710,  534,  798,
      660, 1319,  763,  748, 1319, 1319,  703,  746,  706,  754,
     1319,    9,  133,  155, 1319, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319,  215, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,
     1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,

      227, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,  709,
      698,  719,  722,  345,  767,  721,  265, 1319,  273, 1319,
      724,  726,  295,  312, 1319, 1319,  733,  725,  371,  730,
      387,  743,  398,  410,  441,  496,  538,  545,  522, 1319,
      748,  772, 1319, 1319,  787,  790,  748, 1319, 1319, 1319,
      567,  603,  573,  578,  594,  617, 1319, 1319, 1319, 1319,
      751,  689,  692,  695, 1319, 1319, 1319,  706, 1319, 1319,
     1319,  721,  764,  704, 1319, 1319,  820,  822,  782,  783,
      786,  793,  794,  797,  800,  801,  803,  804,  824
    } ;

static const short int yy_def[990] =
    {   0,
      977,  977,  977,    3,  977,  977,  977,  977,  976,    9,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,   46,  976,  976,  976,
      976,  976,  976,  976,   46,   46,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  978,  978,  978,  978,  976,  976,  976,  978,
      978,  978,  978,  978,  978,  978,  978,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  979,  976,  976,  976,  980,  976,  976,  976,
      981,  976,  976,  976,  982,  976,  976,  983,  976,  976,
      976,  984,  976,  976,  976,  985,  976,  976,  976,  986,
      976,  976,  987,  976,  976,  988,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  978,  978,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  978,  978,  978,  976,
      978,  976,  978,  978,  978,  976,  976,  978,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  989,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  989,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  989,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  989,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      978,  976,  976,  978,  976,  976,  978,  978,  978,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  989,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  978,
      978,  978,  978,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  978,  978,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  978,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,

      976,  976,  976,  976,  976,  976,  976,  976,  976,  978,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  978,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  978,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,    0,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976
    } ;

static const short int yy_nxt[1391] =
    {   0,
      976,  976,  337,  976,   13,   40,  976,  976,  202,   14,
       15,   41,   16,  214,  153,  841,  341,  976,  976,   17,
       18,  976,   19,   42,   20,  976,   21,  153,  215,  676,
       22,  343,  976,  976,   23,   24,  161,  337,  376,   25,
      337,   26,  676,   27,   43,   28,   29,   44,   30,  161,
       31,   40,  216,  154,   32,  155,  217,   41,   33,   34,
      157,  165,   35,  922,   36,  158,  168,   37,  340,   42,
       38,  172,   45,  157,  165,  162,  176,  163,  512,  168,
      218,  177,  342,  310,  172,  259,  311,  260,  261,  176,
       43,  262,  265,   44,  266,  267,  373,  344,  268,  159,

      166,  160,  167,  340,  377,  169,  340,  170,  269,  270,
      173,  386,  174,  571,  387,  178,  572,  179,   45,   46,
       46,   46,   46,   46,   46,   46,   46,   46,   47,   46,
       46,   46,   46,   46,   46,   46,   46,   46,   46,   46,
       46,   48,   12,   49,   12,   50,   12,   12,   12,   51,
       52,   52,   12,   12,   53,   12,   12,   52,   54,   12,
       12,   46,   55,   46,   56,   57,   12,   58,   12,   59,
       12,   12,   12,   60,   12,   52,   12,   12,   61,   12,
       12,   12,   52,   62,   12,   12,   12,   46,   46,   46,
       89,  389,   90,   91,   92,  397,  392,  923,   93,  390,

      393,   94,   95,   96,  391,  192,   97,   98,  180,   99,
      204,  399,  183,  398,  100,  573,  101,  400,  102,  924,
      103,  180,  104,  672,  105,  183,  106,  107,  406,  574,
      108,  109,  110,  925,  673,  111,  115,  116,  117,  118,
      119,  120,  121,  122,  222,  926,  223,  181,  508,  182,
      510,  184,  406,  185,  123,  124,  124,  124,  124,  124,
      124,  124,  124,  124,  124,  124,  124,  125,  124,  126,
      124,  124,  124,  124,  341,  127,  128,  129,  130,  131,
      132,  124,  124,  133,  124,  124,  124,  124,  124,  134,
      135,  136,  124,  124,  137,  124,  124,  124,  124,  124,

      138,  139,  140,  142,  143,  144,  578,  145,  186,  146,
      147,  148,  677,  343,  509,  941,  511,  191,  149,  150,
      337,  186,  203,  942,  545,  677,  537,  142,  143,  144,
      578,  151,  193,  146,  147,  148,  272,  205,  273,  274,
      342,  195,  275,  149,  150,  945,  207,  187,  546,  188,
      189,  190,  221,  191,  370,  194,  219,  192,  220,  539,
      206,  193,  946,  217,  226,  229,  194,  337,  375,  512,
      195,  224,  292,  225,  293,  294,  242,  196,  295,  344,
      230,  197,  231,  221,  679,  198,  340,  338,  243,  244,
      199,  339,  538,  200,  227,  201,  228,  679,  202,  203,

      219,  371,  934,  204,  222,  935,  196,  205,  224,  376,
      197,  209,  206,  227,  198,  210,  207,  230,  208,  211,
      372,  229,  220,  209,  232,  540,  223,  210,  233,  201,
      225,  211,  234,  340,  213,  228,  212,  235,  337,  231,
      948,  213,  236,  245,  214,  232,  237,  237,  337,  233,
      238,  238,  199,  234,  239,  239,  949,  212,  337,  240,
      218,  337,  337,  246,  241,  247,  248,  950,  236,  249,
      241,  254,  242,  337,  951,  377,  337,  551,  250,  255,
      251,  256,  257,  374,  277,  258,  278,  279,  280,  337,
      281,  235,  369,  240,  286,  282,  287,  288,  952,  283,

      289,  284,  953,  298,  340,  299,  300,  541,  370,  301,
      306,  290,  307,  308,  340,  544,  309,  547,  244,  302,
      303,  312,  378,  379,  340,  313,  549,  340,  340,  314,
      542,  643,  337,  367,  315,  380,  381,  368,  316,  340,
      402,  317,  340,  552,  954,  318,  647,  382,  911,  319,
      912,  955,  559,  402,  543,  340,  508,  402,  320,  383,
      384,  510,  410,  321,  402,  559,  322,  323,  324,  385,
      956,  553,  325,  963,  340,  410,  326,  402,  685,  410,
      652,  327,  402,  554,  555,  328,  410,  329,  330,  548,
      655,  685,  331,  769,  537,  556,  332,  645,  340,  410,

      560,  539,  337,  337,  410,  333,  769,  557,  558,  964,
      334,  664,  648,  335,  336,  345,  516,  527,  551,  346,
      517,  528,  509,  347,  518,  529,  337,  511,  348,  519,
      530,  337,  349,  520,  531,  350,  521,  532,  776,  351,
      522,  533,  965,  352,  523,  534,  653,  966,  643,  746,
      647,  776,  353,  524,  535,  660,  656,  354,  525,  536,
      538,  355,  356,  967,  661,  652,  357,  540,  340,  340,
      358,  968,  662,  655,  337,  359,  337,  665,  337,  360,
      842,  337,  361,  664,  552,  845,  362,  758,  846,  759,
      363,  746,  340,  842,  337,  663,  337,  340,  845,  364,

      928,  846,  914,  915,  365,  851,  855,  918,  366,  484,
      920,  337,  337,  485,  645,  747,  648,  486,  851,  855,
      918,  930,  487,  920,  932,  940,  488,  928,  943,  489,
      944,  653,  930,  490,  756,  337,  757,  491,  940,  656,
      340,  943,  340,  944,  340,  932,  492,  760,  838,  665,
      961,  493,  957,  961,  494,  496,  910,  747,  969,  497,
      340,  970,  340,  498,  971,  957,  929,  972,  499,  973,
      974,  927,  500,  975,  501,  502,  958,  340,  340,  503,
      936,  937,  938,  504,  401,  403,  947,  931,  405,  958,
      933,  959,  505,  929,  960,  407,  408,  506,  931,  409,

      507,  340,  411,  413,  959,  414,  415,  960,  921,  939,
      919,  933,  917,  916,  913,  909,  962,  908,  907,  962,
       12,   12,   12,  124,  124,  644,  644,  906,  905,  904,
      903,  902,  901,  900,  899,  898,  897,  896,  895,  894,
      893,  892,  891,  890,  889,  888,  887,  886,  885,  884,
      883,  882,  881,  880,  879,  878,  877,  876,  875,  874,
      873,  872,  871,  870,  869,  868,  867,  866,  865,  864,
      863,  862,  861,  860,  859,  858,  857,  856,  854,  853,
      852,  850,  849,  848,  847,  844,  843,  840,  839,  837,
      836,  835,  834,  833,  832,  831,  830,  829,  828,  827,

      826,  825,  824,  823,  822,  821,  820,  819,  818,  817,
      816,  815,  814,  813,  812,  811,  810,  809,  808,  807,
      806,  805,  804,  803,  802,  801,  800,  799,  798,  797,
      796,  795,  794,  793,  792,  791,  790,  789,  788,  787,
      786,  785,  784,  783,  782,  781,  780,  779,  778,  777,
      775,  774,  773,  772,  771,  770,  768,  767,  766,  765,
      764,  763,  762,  761,  755,  754,  753,  752,  751,  750,
      749,  748,  745,  744,  743,  742,  741,  740,  739,  738,
      737,  736,  735,  734,  733,  732,  731,  730,  729,  728,
      727,  726,  725,  724,  723,  722,  721,  720,  719,  718,

      717,  716,  715,  714,  713,  712,  711,  710,  709,  708,
      707,  706,  705,  704,  703,  702,  701,  700,  699,  698,
      697,  696,  695,  694,  693,  692,  691,  690,  689,  688,
      687,  686,  684,  683,  682,  681,  680,  678,  675,  674,
      671,  670,  669,  668,  667,  384,  383,  382,  381,  380,
      379,  666,  543,  542,  659,  658,  365,  364,  363,  362,
      657,  360,  359,  358,  357,  356,  354,  353,  352,  351,
      654,  349,  348,  347,  346,  345,  651,  650,  335,  334,
      333,  332,  331,  649,  329,  328,  327,  326,  325,  324,
      322,  321,  320,  319,  318,  646,  316,  315,  314,  313,

      312,  642,  641,  640,  639,  638,  637,  636,  635,  634,
      633,  632,  631,  630,  629,  628,  627,  626,  625,  624,
      623,  622,  621,  620,  619,  618,  617,  616,  615,  614,
      613,  612,  611,  610,  609,  608,  607,  606,  605,  604,
      603,  602,  601,  600,  599,  598,  597,  596,  595,  594,
      593,  592,  591,  590,  589,  588,  587,  586,  585,  584,
      583,  582,  581,  580,  579,  577,  576,  575,  570,  569,
      568,  567,  566,  565,  564,  563,  562,  561,  550,  526,
      515,  514,  513,  512,  495,  483,  482,  481,  480,  479,
      478,  477,  476,  475,  474,  473,  472,  471,  470,  469,

      468,  467,  466,  465,  464,  463,  462,  461,  460,  459,
      458,  457,  456,  455,  454,  453,  452,  451,  450,  449,
      448,  447,  446,  445,  444,  443,  442,  441,  440,  439,
      438,  437,  436,  435,  434,  433,  432,  431,  430,  429,
      428,  427,  426,  425,  424,  423,  422,  421,  420,  419,
      418,  417,  416,  412,  404,  393,  396,  395,  394,  388,
      305,  304,  297,  296,  291,  285,  276,  271,  264,  263,
      253,  252,  200,  243,  216,  208,  226,  215,  190,  189,
      175,  171,  164,  156,  152,  141,  114,  113,  112,   88,
       87,   86,   85,   84,   83,   82,   81,   80,   79,   78,

       77,   76,   75,   74,   73,   72,   71,   70,   69,   68,
       67,   66,   65,   64,   63,  976,   39,   39,   11,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976
    } ;

static const short int yy_chk[1391] =
    {   0,
        0,    0,  124,    0,    3,    7,    0,    0,   87,    3,
        3,    7,    3,   87,   48,  760,  125,    0,    0,    3,
        3,    0,    3,    7,    3,    0,    3,   48,   65,  568,
        3,  126,    0,    0,    3,    3,   51,  133,  136,    3,
      337,    3,  568,    3,    7,    3,    3,    7,    3,   51,
        3,    8,   65,   48,    3,   48,   66,    8,    3,    3,
       50,   53,    3,  852,    3,   50,   54,    3,  124,    8,
        3,   57,    7,   50,   53,   51,   59,   51,  760,   54,
       66,   59,  125,  111,   57,   93,  111,   93,   93,   59,
        8,   93,   96,    8,   96,   96,  133,  126,   96,   50,

       53,   50,   53,  133,  136,   54,  337,   54,   96,   96,
       57,  142,   57,  397,  142,   59,  397,   59,    8,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
       39,  144,   39,   39,   39,  149,  145,  853,   39,  144,

      145,   39,   39,   39,  144,   71,   39,   39,   60,   39,
       71,  150,   61,  149,   39,  398,   39,  150,   39,  854,
       39,   60,   39,  565,   39,   61,   39,   39,  164,  398,
       39,   39,   39,  875,  565,   39,   43,   43,   43,   43,
       43,   43,   43,   43,   71,  901,   71,   60,  338,   60,
      339,   61,  164,   61,   43,   43,   43,   43,   43,   43,
       43,   43,   43,   43,   43,   43,   43,   43,   43,   43,
       43,   43,   43,   43,  341,   43,   43,   43,   43,   43,
       43,   43,   43,   43,   43,   43,   43,   43,   43,   43,
       43,   43,   43,   43,   43,   43,   43,   43,   43,   43,

       43,   43,   43,   46,   46,   46,  406,   46,   62,   46,
       46,   46,  569,  343,  338,  917,  339,   69,   46,   46,
      135,   62,   69,  919,  372,  569,  367,   46,   46,   46,
      406,   46,   72,   46,   46,   46,   98,   72,   98,   98,
      341,   75,   98,   46,   46,  923,   75,   62,  372,   62,
       63,   63,   88,   63,  132,   74,   69,   63,   69,  368,
       74,   63,  924,   74,   88,   88,   63,  123,  135,  372,
       63,   72,  104,   72,  104,  104,   88,   63,  104,  343,
       75,   63,   75,   69,  571,   63,  135,  123,   88,   88,
       63,  123,  367,   63,   74,   63,   74,  571,   63,   64,

       77,  132,  914,   64,   77,  914,   79,   64,   77,  376,
       81,   79,   64,   77,   82,   81,   64,   77,   64,   82,
      132,   74,   78,   64,   77,  368,   78,   64,   77,   86,
       78,   64,   77,  123,   86,   78,   64,   77,  134,   78,
      929,   64,   77,   89,   64,   79,   78,   79,  131,   81,
       78,   81,   84,   82,   78,   82,  931,   84,  371,   78,
       84,  369,  137,   89,   78,   89,   89,  933,   86,   89,
       86,   92,   79,  373,  934,  376,  375,  378,   89,   92,
       89,   92,   92,  134,  100,   92,  100,  100,  100,  130,
      100,   84,  131,   84,  102,  100,  102,  102,  935,  100,

      102,  100,  936,  107,  134,  107,  107,  369,  370,  107,
      110,  102,  110,  110,  131,  371,  110,  373,   84,  107,
      107,  115,  137,  140,  371,  115,  375,  369,  137,  115,
      370,  483,  374,  130,  115,  140,  140,  130,  115,  373,
      156,  115,  375,  378,  937,  115,  495,  140,  839,  115,
      839,  938,  386,  156,  370,  130,  508,  156,  115,  140,
      140,  510,  175,  115,  156,  386,  115,  115,  120,  140,
      939,  385,  120,  951,  370,  175,  120,  156,  578,  175,
      515,  120,  156,  385,  385,  120,  175,  120,  120,  374,
      526,  578,  120,  674,  537,  385,  120,  483,  374,  175,

      386,  539,  541,  544,  175,  120,  674,  385,  385,  952,
      120,  549,  495,  120,  120,  127,  355,  366,  551,  127,
      355,  366,  508,  127,  355,  366,  547,  510,  127,  355,
      366,  548,  127,  355,  366,  127,  355,  366,  683,  127,
      355,  366,  953,  127,  355,  366,  515,  954,  643,  644,
      647,  683,  127,  355,  366,  541,  526,  127,  355,  366,
      537,  127,  129,  955,  544,  652,  129,  539,  541,  544,
      129,  956,  547,  655,  660,  129,  662,  549,  661,  129,
      762,  663,  129,  664,  551,  765,  129,  662,  766,  662,
      129,  746,  547,  762,  756,  548,  757,  548,  765,  129,

      911,  766,  841,  841,  129,  772,  777,  847,  129,  323,
      849,  910,  838,  323,  643,  644,  647,  323,  772,  777,
      847,  912,  323,  849,  913,  916,  323,  928,  921,  323,
      922,  652,  930,  323,  660,  927,  661,  323,  916,  655,
      660,  921,  662,  922,  661,  932,  323,  663,  756,  664,
      947,  323,  941,  961,  323,  336,  838,  746,  962,  336,
      756,  963,  757,  336,  964,  941,  911,  968,  336,  972,
      973,  910,  336,  974,  336,  336,  942,  910,  838,  336,
      915,  915,  915,  336,  979,  980,  927,  912,  981,  942,
      913,  945,  336,  928,  946,  982,  983,  336,  930,  984,

      336,  927,  985,  986,  945,  987,  988,  946,  850,  915,
      848,  932,  844,  843,  840,  836,  947,  835,  834,  961,
      977,  977,  977,  978,  978,  989,  989,  833,  832,  831,
      829,  828,  827,  826,  825,  824,  823,  822,  821,  820,
      819,  818,  817,  816,  815,  814,  813,  812,  810,  809,
      808,  807,  806,  805,  804,  803,  802,  800,  799,  798,
      797,  796,  795,  794,  793,  792,  791,  790,  789,  788,
      787,  786,  784,  783,  781,  780,  779,  778,  775,  774,
      773,  771,  770,  768,  767,  764,  763,  759,  758,  747,
      745,  744,  743,  742,  741,  740,  739,  738,  737,  736,

      735,  734,  733,  732,  731,  730,  729,  728,  727,  726,
      725,  724,  723,  722,  721,  720,  719,  718,  717,  716,
      715,  714,  713,  712,  711,  710,  709,  708,  707,  706,
      705,  704,  703,  701,  700,  699,  698,  697,  696,  695,
      694,  693,  692,  691,  690,  689,  688,  687,  686,  684,
      682,  681,  680,  678,  677,  675,  673,  672,  671,  670,
      669,  668,  667,  665,  657,  656,  654,  653,  649,  648,
      646,  645,  642,  641,  640,  639,  638,  637,  636,  635,
      634,  633,  632,  631,  630,  629,  628,  627,  626,  625,
      624,  622,  621,  620,  619,  618,  617,  616,  614,  613,

      612,  611,  610,  609,  608,  607,  606,  605,  604,  603,
      602,  601,  600,  599,  598,  597,  596,  595,  594,  593,
      592,  591,  590,  589,  587,  586,  585,  584,  583,  582,
      581,  580,  576,  575,  574,  573,  572,  570,  567,  566,
      564,  563,  562,  561,  560,  558,  557,  556,  555,  554,
      553,  552,  546,  545,  540,  538,  536,  535,  534,  533,
      532,  531,  530,  529,  528,  527,  525,  524,  523,  522,
      521,  520,  519,  518,  517,  516,  511,  509,  507,  506,
      505,  504,  503,  502,  501,  500,  499,  498,  497,  496,
      494,  493,  492,  491,  490,  489,  488,  487,  486,  485,

      484,  482,  481,  480,  479,  478,  477,  476,  475,  474,
      473,  472,  471,  470,  469,  468,  466,  465,  464,  463,
      461,  460,  459,  458,  457,  456,  455,  454,  453,  452,
      450,  449,  448,  447,  446,  445,  444,  443,  442,  441,
      440,  439,  438,  437,  436,  435,  434,  433,  432,  431,
      430,  429,  428,  427,  426,  425,  424,  423,  422,  421,
      420,  419,  418,  417,  412,  404,  400,  399,  396,  395,
      394,  393,  392,  391,  390,  389,  388,  387,  377,  361,
      350,  344,  342,  340,  330,  317,  311,  310,  309,  308,
      307,  306,  305,  304,  303,  302,  301,  300,  299,  298,

      297,  296,  295,  294,  293,  292,  291,  290,  289,  288,
      287,  286,  285,  284,  283,  282,  281,  280,  279,  278,
      277,  276,  275,  274,  273,  272,  271,  270,  269,  268,
      267,  266,  265,  264,  263,  262,  261,  260,  259,  258,
      257,  256,  255,  254,  253,  252,  251,  250,  249,  248,
      247,  246,  245,  177,  158,  151,  148,  147,  146,  143,
      109,  108,  106,  105,  103,  101,   99,   97,   95,   94,
       91,   90,   85,   83,   80,   76,   73,   70,   68,   67,
       58,   56,   52,   49,   47,   44,   42,   41,   40,   38,
       37,   36,   35,   34,   33,   32,   31,   30,   29,   28,

       27,   26,   25,   24,   23,   22,   21,   20,   19,   18,
       17,   16,   15,   14,   13,   11,    6,    5,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  976,  976
    } ;

static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;

/* The intent behind this definition is that it'll catch
 * any uses of REJECT which flex missed.
 */
#define REJECT reject_used_but_not_detected
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
char *yytext;
/* This file is generated automatically by mergelex.awk.  */
#include "recode.h"
#ifdef USE_FPUTC
#define output(ch) fputc (ch, yyout)
#else
#define output(ch) putc (ch, yyout)
#endif
void texte_latin1_diaeresis _((void));

/* Macros after this point can all be overridden by user definitions in
 * section 1.
 */

#ifdef YY_MALLOC_DECL
YY_MALLOC_DECL
#else
#if __STDC__
#ifndef __cplusplus
#include <stdlib.h>
#endif
#else
/* Just try to get by without declaring the routines.  This will fail
 * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
 * or sizeof(void*) != sizeof(int).
 */
#endif
#endif

/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif

/* Copy whatever the last rule matched to the standard output. */

#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
 * we now use fwrite().
 */
#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
#endif

/* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
 * is returned in "result".
 */
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
	if ( yy_current_buffer->yy_is_interactive ) \
		{ \
		int c = getc( yyin ); \
		result = c == EOF ? 0 : 1; \
		buf[0] = (char) c; \
		} \
	else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
		  && ferror( yyin ) ) \
		YY_FATAL_ERROR( "input in flex scanner failed" );
#endif

/* No semi-colon after return; correct usage is to write "yyterminate();" -
 * we don't want an extra ';' after the "return" because that will cause
 * some compilers to complain about unreachable statements.
 */
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif

/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif

/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif

/* Default declaration of generated scanner - a define so the user can
 * easily add parameters.
 */
#ifndef YY_DECL
#define YY_DECL int yylex YY_PROTO(( void ))
#endif

/* Code executed at the beginning of each rule, after yytext and yyleng
 * have been set up.
 */
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif

/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif

YY_DECL
	{
	register yy_state_type yy_current_state;
	register char *yy_cp, *yy_bp;
	register int yy_act;



	if ( yy_init )
		{
#ifdef YY_USER_INIT
		YY_USER_INIT;
#endif

		if ( ! yy_start )
			yy_start = 1;	/* first start state */

		if ( ! yyin )
			yyin = stdin;

		if ( ! yyout )
			yyout = stdout;

		if ( yy_current_buffer )
			yy_init_buffer( yy_current_buffer, yyin );
		else
			yy_current_buffer =
				yy_create_buffer( yyin, YY_BUF_SIZE );

		yy_load_buffer_state();

		yy_init = 0;
		}

	while ( 1 )		/* loops until end-of-file is reached */
		{
		yy_cp = yy_c_buf_p;

		/* Support of yytext. */
		*yy_cp = yy_hold_char;

		/* yy_bp points to the position in yy_ch_buf of the start of
		 * the current run.
		 */
		yy_bp = yy_cp;

		yy_current_state = yy_start;
yy_match:
		do
			{
			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
			if ( yy_accept[yy_current_state] )
				{
				yy_last_accepting_state = yy_current_state;
				yy_last_accepting_cpos = yy_cp;
				}
			while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
				{
				yy_current_state = (int) yy_def[yy_current_state];
				if ( yy_current_state >= 977 )
					yy_c = yy_meta[(unsigned int) yy_c];
				}
			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
			++yy_cp;
			}
		while ( yy_base[yy_current_state] != 1319 );

yy_find_action:
		yy_act = yy_accept[yy_current_state];

		YY_DO_BEFORE_ACTION;


do_action:	/* This label is used only to access EOF actions. */


		switch ( yy_act )
	{ /* beginning of action switch */
			case 0: /* must back up */
			/* undo the effects of YY_DO_BEFORE_ACTION */
			*yy_cp = yy_hold_char;
			yy_cp = yy_last_accepting_cpos;
			yy_current_state = yy_last_accepting_state;
			goto yy_find_action;

case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(ascii_latin1):
case YY_STATE_EOF(html_latin1):
case YY_STATE_EOF(latex_latin1):
case YY_STATE_EOF(texte_latin1):
{ return 1; }
	YY_BREAK
case 1:
YY_USER_ACTION
{ output (171); }
	YY_BREAK
case 2:
YY_USER_ACTION
{ output (187); }
	YY_BREAK
case 3:
YY_USER_ACTION
{ output (192); }
	YY_BREAK
case 4:
YY_USER_ACTION
{ output (193); }
	YY_BREAK
case 5:
YY_USER_ACTION
{ output (194); }
	YY_BREAK
case 6:
YY_USER_ACTION
{ output (195); }
	YY_BREAK
case 7:
YY_USER_ACTION
{ output (196); }
	YY_BREAK
case 8:
YY_USER_ACTION
{ output (199); }
	YY_BREAK
case 9:
YY_USER_ACTION
{ output (200); }
	YY_BREAK
case 10:
YY_USER_ACTION
{ output (201); }
	YY_BREAK
case 11:
YY_USER_ACTION
{ output (202); }
	YY_BREAK
case 12:
YY_USER_ACTION
{ output (203); }
	YY_BREAK
case 13:
YY_USER_ACTION
{ output (204); }
	YY_BREAK
case 14:
YY_USER_ACTION
{ output (205); }
	YY_BREAK
case 15:
YY_USER_ACTION
{ output (206); }
	YY_BREAK
case 16:
YY_USER_ACTION
{ output (207); }
	YY_BREAK
case 17:
YY_USER_ACTION
{ output (209); }
	YY_BREAK
case 18:
YY_USER_ACTION
{ output (210); }
	YY_BREAK
case 19:
YY_USER_ACTION
{ output (211); }
	YY_BREAK
case 20:
YY_USER_ACTION
{ output (212); }
	YY_BREAK
case 21:
YY_USER_ACTION
{ output (213); }
	YY_BREAK
case 22:
YY_USER_ACTION
{ output (214); }
	YY_BREAK
case 23:
YY_USER_ACTION
{ output (216); }
	YY_BREAK
case 24:
YY_USER_ACTION
{ output (217); }
	YY_BREAK
case 25:
YY_USER_ACTION
{ output (218); }
	YY_BREAK
case 26:
YY_USER_ACTION
{ output (219); }
	YY_BREAK
case 27:
YY_USER_ACTION
{ output (220); }
	YY_BREAK
case 28:
YY_USER_ACTION
{ output (221); }
	YY_BREAK
case 29:
YY_USER_ACTION
{ output (223); }
	YY_BREAK
case 30:
YY_USER_ACTION
{ output (224); }
	YY_BREAK
case 31:
YY_USER_ACTION
{ output (225); }
	YY_BREAK
case 32:
YY_USER_ACTION
{ output (226); }
	YY_BREAK
case 33:
YY_USER_ACTION
{ output (227); }
	YY_BREAK
case 34:
YY_USER_ACTION
{ output (228); }
	YY_BREAK
case 35:
YY_USER_ACTION
{ output (231); }
	YY_BREAK
case 36:
YY_USER_ACTION
{ output (232); }
	YY_BREAK
case 37:
YY_USER_ACTION
{ output (233); }
	YY_BREAK
case 38:
YY_USER_ACTION
{ output (234); }
	YY_BREAK
case 39:
YY_USER_ACTION
{ output (235); }
	YY_BREAK
case 40:
YY_USER_ACTION
{ output (236); }
	YY_BREAK
case 41:
YY_USER_ACTION
{ output (237); }
	YY_BREAK
case 42:
YY_USER_ACTION
{ output (238); }
	YY_BREAK
case 43:
YY_USER_ACTION
{ output (239); }
	YY_BREAK
case 44:
YY_USER_ACTION
{ output (241); }
	YY_BREAK
case 45:
YY_USER_ACTION
{ output (242); }
	YY_BREAK
case 46:
YY_USER_ACTION
{ output (243); }
	YY_BREAK
case 47:
YY_USER_ACTION
{ output (244); }
	YY_BREAK
case 48:
YY_USER_ACTION
{ output (245); }
	YY_BREAK
case 49:
YY_USER_ACTION
{ output (246); }
	YY_BREAK
case 50:
YY_USER_ACTION
{ output (248); }
	YY_BREAK
case 51:
YY_USER_ACTION
{ output (249); }
	YY_BREAK
case 52:
YY_USER_ACTION
{ output (250); }
	YY_BREAK
case 53:
YY_USER_ACTION
{ output (251); }
	YY_BREAK
case 54:
YY_USER_ACTION
{ output (252); }
	YY_BREAK
case 55:
YY_USER_ACTION
{ output (253); }
	YY_BREAK
case 56:
YY_USER_ACTION
{ output (255); }
	YY_BREAK
case 57:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (38); }
	YY_BREAK
case 58:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (60); }
	YY_BREAK
case 59:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (62); }
	YY_BREAK
case 60:
YY_USER_ACTION
{ output (192); }
	YY_BREAK
case 61:
YY_USER_ACTION
{ output (193); }
	YY_BREAK
case 62:
YY_USER_ACTION
{ output (194); }
	YY_BREAK
case 63:
YY_USER_ACTION
{ output (195); }
	YY_BREAK
case 64:
YY_USER_ACTION
{ output (196); }
	YY_BREAK
case 65:
YY_USER_ACTION
{ output (197); }
	YY_BREAK
case 66:
YY_USER_ACTION
{ output (198); }
	YY_BREAK
case 67:
YY_USER_ACTION
{ output (199); }
	YY_BREAK
case 68:
YY_USER_ACTION
{ output (200); }
	YY_BREAK
case 69:
YY_USER_ACTION
{ output (201); }
	YY_BREAK
case 70:
YY_USER_ACTION
{ output (202); }
	YY_BREAK
case 71:
YY_USER_ACTION
{ output (203); }
	YY_BREAK
case 72:
YY_USER_ACTION
{ output (204); }
	YY_BREAK
case 73:
YY_USER_ACTION
{ output (205); }
	YY_BREAK
case 74:
YY_USER_ACTION
{ output (206); }
	YY_BREAK
case 75:
YY_USER_ACTION
{ output (207); }
	YY_BREAK
case 76:
YY_USER_ACTION
{ output (208); }
	YY_BREAK
case 77:
YY_USER_ACTION
{ output (209); }
	YY_BREAK
case 78:
YY_USER_ACTION
{ output (210); }
	YY_BREAK
case 79:
YY_USER_ACTION
{ output (211); }
	YY_BREAK
case 80:
YY_USER_ACTION
{ output (212); }
	YY_BREAK
case 81:
YY_USER_ACTION
{ output (213); }
	YY_BREAK
case 82:
YY_USER_ACTION
{ output (214); }
	YY_BREAK
case 83:
YY_USER_ACTION
{ output (215); }
	YY_BREAK
case 84:
YY_USER_ACTION
{ output (216); }
	YY_BREAK
case 85:
YY_USER_ACTION
{ output (217); }
	YY_BREAK
case 86:
YY_USER_ACTION
{ output (218); }
	YY_BREAK
case 87:
YY_USER_ACTION
{ output (219); }
	YY_BREAK
case 88:
YY_USER_ACTION
{ output (220); }
	YY_BREAK
case 89:
YY_USER_ACTION
{ output (221); }
	YY_BREAK
case 90:
YY_USER_ACTION
{ output (222); }
	YY_BREAK
case 91:
YY_USER_ACTION
{ output (223); }
	YY_BREAK
case 92:
YY_USER_ACTION
{ output (224); }
	YY_BREAK
case 93:
YY_USER_ACTION
{ output (225); }
	YY_BREAK
case 94:
YY_USER_ACTION
{ output (226); }
	YY_BREAK
case 95:
YY_USER_ACTION
{ output (227); }
	YY_BREAK
case 96:
YY_USER_ACTION
{ output (228); }
	YY_BREAK
case 97:
YY_USER_ACTION
{ output (229); }
	YY_BREAK
case 98:
YY_USER_ACTION
{ output (230); }
	YY_BREAK
case 99:
YY_USER_ACTION
{ output (231); }
	YY_BREAK
case 100:
YY_USER_ACTION
{ output (232); }
	YY_BREAK
case 101:
YY_USER_ACTION
{ output (233); }
	YY_BREAK
case 102:
YY_USER_ACTION
{ output (234); }
	YY_BREAK
case 103:
YY_USER_ACTION
{ output (235); }
	YY_BREAK
case 104:
YY_USER_ACTION
{ output (236); }
	YY_BREAK
case 105:
YY_USER_ACTION
{ output (237); }
	YY_BREAK
case 106:
YY_USER_ACTION
{ output (238); }
	YY_BREAK
case 107:
YY_USER_ACTION
{ output (239); }
	YY_BREAK
case 108:
YY_USER_ACTION
{ output (240); }
	YY_BREAK
case 109:
YY_USER_ACTION
{ output (241); }
	YY_BREAK
case 110:
YY_USER_ACTION
{ output (242); }
	YY_BREAK
case 111:
YY_USER_ACTION
{ output (243); }
	YY_BREAK
case 112:
YY_USER_ACTION
{ output (244); }
	YY_BREAK
case 113:
YY_USER_ACTION
{ output (245); }
	YY_BREAK
case 114:
YY_USER_ACTION
{ output (246); }
	YY_BREAK
case 115:
YY_USER_ACTION
{ output (247); }
	YY_BREAK
case 116:
YY_USER_ACTION
{ output (248); }
	YY_BREAK
case 117:
YY_USER_ACTION
{ output (249); }
	YY_BREAK
case 118:
YY_USER_ACTION
{ output (250); }
	YY_BREAK
case 119:
YY_USER_ACTION
{ output (251); }
	YY_BREAK
case 120:
YY_USER_ACTION
{ output (252); }
	YY_BREAK
case 121:
YY_USER_ACTION
{ output (253); }
	YY_BREAK
case 122:
YY_USER_ACTION
{ output (254); }
	YY_BREAK
case 123:
YY_USER_ACTION
{ output (255); }
	YY_BREAK
case 124:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('#'); }
	YY_BREAK
case 125:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('$'); }
	YY_BREAK
case 126:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('%'); }
	YY_BREAK
case 127:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('&'); }
	YY_BREAK
case 128:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('_'); }
	YY_BREAK
case 129:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('{'); }
	YY_BREAK
case 130:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('}'); }
	YY_BREAK
case 131:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output ('\\'); }
	YY_BREAK
case 132:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (160); }
	YY_BREAK
case 133:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (161); }
	YY_BREAK
case 134:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (167); }
	YY_BREAK
case 135:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (168); }
	YY_BREAK
case 136:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (171); }
	YY_BREAK
case 137:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (172); }
	YY_BREAK
case 138:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (173); }
	YY_BREAK
case 139:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (176); }
	YY_BREAK
case 140:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (177); }
	YY_BREAK
case 141:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (178); }
	YY_BREAK
case 142:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (179); }
	YY_BREAK
case 143:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (180); }
	YY_BREAK
case 144:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (181); }
	YY_BREAK
case 145:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (183); }
	YY_BREAK
case 146:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (184); }
	YY_BREAK
case 147:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (185); }
	YY_BREAK
case 148:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (187); }
	YY_BREAK
case 149:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (188); }
	YY_BREAK
case 150:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (189); }
	YY_BREAK
case 151:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (190); }
	YY_BREAK
case 152:
YY_USER_ACTION
{ if (diacritics_only) ECHO; else output (191); }
	YY_BREAK
case 153:
YY_USER_ACTION
{ output (192); }
	YY_BREAK
case 154:
YY_USER_ACTION
{ output (193); }
	YY_BREAK
case 155:
YY_USER_ACTION
{ output (194); }
	YY_BREAK
case 156:
YY_USER_ACTION
{ output (195); }
	YY_BREAK
case 157:
YY_USER_ACTION
{ output (196); }
	YY_BREAK
case 158:
YY_USER_ACTION
{ output (197); }
	YY_BREAK
case 159:
YY_USER_ACTION
{ output (198); }
	YY_BREAK
case 160:
YY_USER_ACTION
{ output (199); }
	YY_BREAK
case 161:
YY_USER_ACTION
{ output (200); }
	YY_BREAK
case 162:
YY_USER_ACTION
{ output (201); }
	YY_BREAK
case 163:
YY_USER_ACTION
{ output (202); }
	YY_BREAK
case 164:
YY_USER_ACTION
{ output (203); }
	YY_BREAK
case 165:
YY_USER_ACTION
{ output (204); }
	YY_BREAK
case 166:
YY_USER_ACTION
{ output (205); }
	YY_BREAK
case 167:
YY_USER_ACTION
{ output (206); }
	YY_BREAK
case 168:
YY_USER_ACTION
{ output (207); }
	YY_BREAK
case 169:
YY_USER_ACTION
{ output (209); }
	YY_BREAK
case 170:
YY_USER_ACTION
{ output (210); }
	YY_BREAK
case 171:
YY_USER_ACTION
{ output (211); }
	YY_BREAK
case 172:
YY_USER_ACTION
{ output (212); }
	YY_BREAK
case 173:
YY_USER_ACTION
{ output (213); }
	YY_BREAK
case 174:
YY_USER_ACTION
{ output (214); }
	YY_BREAK
case 175:
YY_USER_ACTION
{ output (216); }
	YY_BREAK
case 176:
YY_USER_ACTION
{ output (217); }
	YY_BREAK
case 177:
YY_USER_ACTION
{ output (218); }
	YY_BREAK
case 178:
YY_USER_ACTION
{ output (219); }
	YY_BREAK
case 179:
YY_USER_ACTION
{ output (220); }
	YY_BREAK
case 180:
YY_USER_ACTION
{ output (221); }
	YY_BREAK
case 181:
YY_USER_ACTION
{ output (223); }
	YY_BREAK
case 182:
YY_USER_ACTION
{ output (224); }
	YY_BREAK
case 183:
YY_USER_ACTION
{ output (225); }
	YY_BREAK
case 184:
YY_USER_ACTION
{ output (226); }
	YY_BREAK
case 185:
YY_USER_ACTION
{ output (227); }
	YY_BREAK
case 186:
YY_USER_ACTION
{ output (228); }
	YY_BREAK
case 187:
YY_USER_ACTION
{ output (229); }
	YY_BREAK
case 188:
YY_USER_ACTION
{ output (230); }
	YY_BREAK
case 189:
YY_USER_ACTION
{ output (231); }
	YY_BREAK
case 190:
YY_USER_ACTION
{ output (232); }
	YY_BREAK
case 191:
YY_USER_ACTION
{ output (233); }
	YY_BREAK
case 192:
YY_USER_ACTION
{ output (234); }
	YY_BREAK
case 193:
YY_USER_ACTION
{ output (235); }
	YY_BREAK
case 194:
YY_USER_ACTION
{ output (236); }
	YY_BREAK
case 195:
YY_USER_ACTION
{ output (237); }
	YY_BREAK
case 196:
YY_USER_ACTION
{ output (238); }
	YY_BREAK
case 197:
YY_USER_ACTION
{ output (239); }
	YY_BREAK
case 198:
YY_USER_ACTION
{ output (241); }
	YY_BREAK
case 199:
YY_USER_ACTION
{ output (242); }
	YY_BREAK
case 200:
YY_USER_ACTION
{ output (243); }
	YY_BREAK
case 201:
YY_USER_ACTION
{ output (244); }
	YY_BREAK
case 202:
YY_USER_ACTION
{ output (245); }
	YY_BREAK
case 203:
YY_USER_ACTION
{ output (246); }
	YY_BREAK
case 204:
YY_USER_ACTION
{ output (248); }
	YY_BREAK
case 205:
YY_USER_ACTION
{ output (249); }
	YY_BREAK
case 206:
YY_USER_ACTION
{ output (250); }
	YY_BREAK
case 207:
YY_USER_ACTION
{ output (251); }
	YY_BREAK
case 208:
YY_USER_ACTION
{ output (252); }
	YY_BREAK
case 209:
YY_USER_ACTION
{ output (253); }
	YY_BREAK
case 210:
YY_USER_ACTION
{ output (255); }
	YY_BREAK
case 211:
YY_USER_ACTION
{ ECHO; }
	YY_BREAK
case 212:
YY_USER_ACTION
{ ECHO; }
	YY_BREAK
case 213:
YY_USER_ACTION
{ output (171); }
	YY_BREAK
case 214:
YY_USER_ACTION
{ output (187); }
	YY_BREAK
case 215:
YY_USER_ACTION
{ output (192); }
	YY_BREAK
case 216:
YY_USER_ACTION
{ output (194); }
	YY_BREAK
case 217:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (196);
			  else
			    ECHO;
			}
	YY_BREAK
case 218:
YY_USER_ACTION
{ output (224); }
	YY_BREAK
case 219:
YY_USER_ACTION
{ output (226); }
	YY_BREAK
case 220:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (228);
			  else
			    ECHO;
			}
	YY_BREAK
case 221:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ output (199); }
	YY_BREAK
case 222:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ output (231); }
	YY_BREAK
case 223:
YY_USER_ACTION
{ output (200); }
	YY_BREAK
case 224:
YY_USER_ACTION
{ output (201); output (187); }
	YY_BREAK
case 225:
YY_USER_ACTION
{ output ('E'); output (187); }
	YY_BREAK
case 226:
YY_USER_ACTION
{ output (201); }
	YY_BREAK
case 227:
YY_USER_ACTION
{ output (202); }
	YY_BREAK
case 228:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (203);
			  else
			    ECHO;
			}
	YY_BREAK
case 229:
YY_USER_ACTION
{ output (232); }
	YY_BREAK
case 230:
YY_USER_ACTION
{ output (233); output (187); }
	YY_BREAK
case 231:
YY_USER_ACTION
{ output ('e'); output (187); }
	YY_BREAK
case 232:
YY_USER_ACTION
{ output (233); }
	YY_BREAK
case 233:
YY_USER_ACTION
{ output (234); }
	YY_BREAK
case 234:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (235);
			  else
			    ECHO;
			}
	YY_BREAK
case 235:
YY_USER_ACTION
{ output (204); }
	YY_BREAK
case 236:
YY_USER_ACTION
{ output (206); }
	YY_BREAK
case 237:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (207);
			  else
			    ECHO;
			}
	YY_BREAK
case 238:
YY_USER_ACTION
{ output (236); }
	YY_BREAK
case 239:
YY_USER_ACTION
{ output (238); }
	YY_BREAK
case 240:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (239);
			  else
			    ECHO;
			}
	YY_BREAK
case 241:
YY_USER_ACTION
{ output (210); }
	YY_BREAK
case 242:
YY_USER_ACTION
{ output (212); }
	YY_BREAK
case 243:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (214);
			  else
			    ECHO;
			}
	YY_BREAK
case 244:
YY_USER_ACTION
{ output (242); }
	YY_BREAK
case 245:
YY_USER_ACTION
{ output (244); }
	YY_BREAK
case 246:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (246);
			  else
			    ECHO;
			}
	YY_BREAK
case 247:
YY_USER_ACTION
{ output (217); }
	YY_BREAK
case 248:
YY_USER_ACTION
{ output (219); }
	YY_BREAK
case 249:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (220);
			  else
			    ECHO;
			}
	YY_BREAK
case 250:
YY_USER_ACTION
{ output (249); }
	YY_BREAK
case 251:
YY_USER_ACTION
{ output (251); }
	YY_BREAK
case 252:
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */
yy_c_buf_p = yy_cp = yy_bp + 2;
YY_DO_BEFORE_ACTION; /* set up yytext again */
YY_USER_ACTION
{ if (yytext[1] == diaeresis_char)
			    output (252);
			  else
			    ECHO;
			}
	YY_BREAK
case 253:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 254:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 255:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 256:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 257:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 258:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 259:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 260:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 261:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 262:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 263:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 264:
YY_USER_ACTION
{ if (yytext[4] == diaeresis_char)
			    texte_latin1_diaeresis ();
			  else
			    ECHO;
			}
	YY_BREAK
case 265:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 266:
YY_USER_ACTION
{ ECHO; }
	YY_BREAK
case 267:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 268:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 269:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 270:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 271:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 272:
YY_USER_ACTION
{ texte_latin1_diaeresis (); }
	YY_BREAK
case 273:
YY_USER_ACTION
ECHO;
	YY_BREAK

	case YY_END_OF_BUFFER:
		{
		/* Amount of text matched not including the EOB char. */
		int yy_amount_of_matched_text = yy_cp - yytext_ptr - 1;

		/* Undo the effects of YY_DO_BEFORE_ACTION. */
		*yy_cp = yy_hold_char;

		if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
			{
			/* We're scanning a new file or input source.  It's
			 * possible that this happened because the user
			 * just pointed yyin at a new source and called
			 * yylex().  If so, then we have to assure
			 * consistency between yy_current_buffer and our
			 * globals.  Here is the right place to do so, because
			 * this is the first action (other than possibly a
			 * back-up) that will match for the new input source.
			 */
			yy_n_chars = yy_current_buffer->yy_n_chars;
			yy_current_buffer->yy_input_file = yyin;
			yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
			}

		/* Note that here we test for yy_c_buf_p "<=" to the position
		 * of the first EOB in the buffer, since yy_c_buf_p will
		 * already have been incremented past the NUL character
		 * (since all states make transitions on EOB to the
		 * end-of-buffer state).  Contrast this with the test
		 * in input().
		 */
		if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
			{ /* This was really a NUL. */
			yy_state_type yy_next_state;

			yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;

			yy_current_state = yy_get_previous_state();

			/* Okay, we're now positioned to make the NUL
			 * transition.  We couldn't have
			 * yy_get_previous_state() go ahead and do it
			 * for us because it doesn't know how to deal
			 * with the possibility of jamming (and we don't
			 * want to build jamming into it because then it
			 * will run more slowly).
			 */

			yy_next_state = yy_try_NUL_trans( yy_current_state );

			yy_bp = yytext_ptr + YY_MORE_ADJ;

			if ( yy_next_state )
				{
				/* Consume the NUL. */
				yy_cp = ++yy_c_buf_p;
				yy_current_state = yy_next_state;
				goto yy_match;
				}

			else
				{
							yy_cp = yy_c_buf_p;
				goto yy_find_action;
				}
			}

		else switch ( yy_get_next_buffer() )
			{
			case EOB_ACT_END_OF_FILE:
				{
				yy_did_buffer_switch_on_eof = 0;

				if ( yywrap() )
					{
					/* Note: because we've taken care in
					 * yy_get_next_buffer() to have set up
					 * yytext, we can now set up
					 * yy_c_buf_p so that if some total
					 * hoser (like flex itself) wants to
					 * call the scanner after we return the
					 * YY_NULL, it'll still work - another
					 * YY_NULL will get returned.
					 */
					yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;

					yy_act = YY_STATE_EOF(YY_START);
					goto do_action;
					}

				else
					{
					if ( ! yy_did_buffer_switch_on_eof )
						YY_NEW_FILE;
					}
				break;
				}

			case EOB_ACT_CONTINUE_SCAN:
				yy_c_buf_p =
					yytext_ptr + yy_amount_of_matched_text;

				yy_current_state = yy_get_previous_state();

				yy_cp = yy_c_buf_p;
				yy_bp = yytext_ptr + YY_MORE_ADJ;
				goto yy_match;

			case EOB_ACT_LAST_MATCH:
				yy_c_buf_p =
				&yy_current_buffer->yy_ch_buf[yy_n_chars];

				yy_current_state = yy_get_previous_state();

				yy_cp = yy_c_buf_p;
				yy_bp = yytext_ptr + YY_MORE_ADJ;
				goto yy_find_action;
			}
		break;
		}

	default:
		YY_FATAL_ERROR(
			"fatal flex scanner internal error--no action found" );
	} /* end of action switch */
		} /* end of scanning one token */
	} /* end of yylex */


/* yy_get_next_buffer - try to read in a new buffer
 *
 * Returns a code representing an action:
 *	EOB_ACT_LAST_MATCH -
 *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position
 *	EOB_ACT_END_OF_FILE - end of file
 */

static int yy_get_next_buffer()
	{
	register char *dest = yy_current_buffer->yy_ch_buf;
	register char *source = yytext_ptr - 1; /* copy prev. char, too */
	register int number_to_move, i;
	int ret_val;

	if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
		YY_FATAL_ERROR(
		"fatal flex scanner internal error--end of buffer missed" );

	if ( yy_current_buffer->yy_fill_buffer == 0 )
		{ /* Don't try to fill the buffer, so this is an EOF. */
		if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
			{
			/* We matched a singled characater, the EOB, so
			 * treat this as a final EOF.
			 */
			return EOB_ACT_END_OF_FILE;
			}

		else
			{
			/* We matched some text prior to the EOB, first
			 * process it.
			 */
			return EOB_ACT_LAST_MATCH;
			}
		}

	/* Try to read more data. */

	/* First move last chars to start of buffer. */
	number_to_move = yy_c_buf_p - yytext_ptr;

	for ( i = 0; i < number_to_move; ++i )
		*(dest++) = *(source++);

	if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
		/* don't do the read, it's not guaranteed to return an EOF,
		 * just force an EOF
		 */
		yy_n_chars = 0;

	else
		{
		int num_to_read =
			yy_current_buffer->yy_buf_size - number_to_move - 1;

		while ( num_to_read <= 0 )
			{ /* Not enough room in the buffer - grow it. */
#ifdef YY_USES_REJECT
			YY_FATAL_ERROR(
"input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
#else

			/* just a shorter name for the current buffer */
			YY_BUFFER_STATE b = yy_current_buffer;

			int yy_c_buf_p_offset = yy_c_buf_p - b->yy_ch_buf;

			b->yy_buf_size *= 2;
			b->yy_ch_buf = (char *)
				yy_flex_realloc( (void *) b->yy_ch_buf,
						 b->yy_buf_size );

			if ( ! b->yy_ch_buf )
				YY_FATAL_ERROR(
				"fatal error - scanner input buffer overflow" );

			yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];

			num_to_read = yy_current_buffer->yy_buf_size -
						number_to_move - 1;
#endif
			}

		if ( num_to_read > YY_READ_BUF_SIZE )
			num_to_read = YY_READ_BUF_SIZE;

		/* Read in more data. */
		YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
			yy_n_chars, num_to_read );
		}

	if ( yy_n_chars == 0 )
		{
		if ( number_to_move - YY_MORE_ADJ == 1 )
			{
			ret_val = EOB_ACT_END_OF_FILE;
			yyrestart( yyin );
			}

		else
			{
			ret_val = EOB_ACT_LAST_MATCH;
			yy_current_buffer->yy_buffer_status =
				YY_BUFFER_EOF_PENDING;
			}
		}

	else
		ret_val = EOB_ACT_CONTINUE_SCAN;

	yy_n_chars += number_to_move;
	yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
	yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;

	/* yytext begins at the second character in yy_ch_buf; the first
	 * character is the one which preceded it before reading in the latest
	 * buffer; it needs to be kept around in case it's a newline, so
	 * yy_get_previous_state() will have with '^' rules active.
	 */

	yytext_ptr = &yy_current_buffer->yy_ch_buf[1];

	return ret_val;
	}


/* yy_get_previous_state - get the state just before the EOB char was reached */

static yy_state_type yy_get_previous_state()
	{
	register yy_state_type yy_current_state;
	register char *yy_cp;

	yy_current_state = yy_start;

	for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
		{
		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
		if ( yy_accept[yy_current_state] )
			{
			yy_last_accepting_state = yy_current_state;
			yy_last_accepting_cpos = yy_cp;
			}
		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
			{
			yy_current_state = (int) yy_def[yy_current_state];
			if ( yy_current_state >= 977 )
				yy_c = yy_meta[(unsigned int) yy_c];
			}
		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
		}

	return yy_current_state;
	}


/* yy_try_NUL_trans - try to make a transition on the NUL character
 *
 * synopsis
 *	next_state = yy_try_NUL_trans( current_state );
 */

#ifdef YY_USE_PROTOS
static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
#else
static yy_state_type yy_try_NUL_trans( yy_current_state )
yy_state_type yy_current_state;
#endif
	{
	register int yy_is_jam;
	register char *yy_cp = yy_c_buf_p;

	register YY_CHAR yy_c = 1;
	if ( yy_accept[yy_current_state] )
		{
		yy_last_accepting_state = yy_current_state;
		yy_last_accepting_cpos = yy_cp;
		}
	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
		{
		yy_current_state = (int) yy_def[yy_current_state];
		if ( yy_current_state >= 977 )
			yy_c = yy_meta[(unsigned int) yy_c];
		}
	yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
	yy_is_jam = (yy_current_state == 976);

	return yy_is_jam ? 0 : yy_current_state;
	}


#ifdef YY_USE_PROTOS
static void yyunput( int c, register char *yy_bp )
#else
static void yyunput( c, yy_bp )
int c;
register char *yy_bp;
#endif
	{
	register char *yy_cp = yy_c_buf_p;

	/* undo effects of setting up yytext */
	*yy_cp = yy_hold_char;

	if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
		{ /* need to shift things up to make room */
		/* +2 for EOB chars. */
		register int number_to_move = yy_n_chars + 2;
		register char *dest = &yy_current_buffer->yy_ch_buf[
					yy_current_buffer->yy_buf_size + 2];
		register char *source =
				&yy_current_buffer->yy_ch_buf[number_to_move];

		while ( source > yy_current_buffer->yy_ch_buf )
			*--dest = *--source;

		yy_cp += dest - source;
		yy_bp += dest - source;
		yy_n_chars = yy_current_buffer->yy_buf_size;

		if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
			YY_FATAL_ERROR( "flex scanner push-back overflow" );
		}

	if ( yy_cp > yy_bp && yy_cp[-1] == '\n' )
		yy_cp[-2] = '\n';

	*--yy_cp = (char) c;


	/* Note: the formal parameter *must* be called "yy_bp" for this
	 * macro to now work correctly.
	 */
	YY_DO_BEFORE_ACTION; /* set up yytext again */
	}


#ifdef __cplusplus
static int yyinput()
#else
static int input()
#endif
	{
	int c;

	*yy_c_buf_p = yy_hold_char;

	if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
		{
		/* yy_c_buf_p now points to the character we want to return.
		 * If this occurs *before* the EOB characters, then it's a
		 * valid NUL; if not, then we've hit the end of the buffer.
		 */
		if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
			/* This was really a NUL. */
			*yy_c_buf_p = '\0';

		else
			{ /* need more input */
			yytext_ptr = yy_c_buf_p;
			++yy_c_buf_p;

			switch ( yy_get_next_buffer() )
				{
				case EOB_ACT_END_OF_FILE:
					{
					if ( yywrap() )
						{
						yy_c_buf_p =
						yytext_ptr + YY_MORE_ADJ;
						return EOF;
						}

					YY_NEW_FILE;
#ifdef __cplusplus
					return yyinput();
#else
					return input();
#endif
					}

				case EOB_ACT_CONTINUE_SCAN:
					yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
					break;

				case EOB_ACT_LAST_MATCH:
#ifdef __cplusplus
					YY_FATAL_ERROR(
					"unexpected last match in yyinput()" );
#else
					YY_FATAL_ERROR(
					"unexpected last match in input()" );
#endif
				}
			}
		}

	c = *(unsigned char *) yy_c_buf_p;	/* cast for 8-bit char's */
	*yy_c_buf_p = '\0';	/* preserve yytext */
	yy_hold_char = *++yy_c_buf_p;

	return c;
	}


#ifdef YY_USE_PROTOS
void yyrestart( FILE *input_file )
#else
void yyrestart( input_file )
FILE *input_file;
#endif
	{
	if ( ! yy_current_buffer )
		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );

	yy_init_buffer( yy_current_buffer, input_file );
	yy_load_buffer_state();
	}


#ifdef YY_USE_PROTOS
void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
#else
void yy_switch_to_buffer( new_buffer )
YY_BUFFER_STATE new_buffer;
#endif
	{
	if ( yy_current_buffer == new_buffer )
		return;

	if ( yy_current_buffer )
		{
		/* Flush out information for old buffer. */
		*yy_c_buf_p = yy_hold_char;
		yy_current_buffer->yy_buf_pos = yy_c_buf_p;
		yy_current_buffer->yy_n_chars = yy_n_chars;
		}

	yy_current_buffer = new_buffer;
	yy_load_buffer_state();

	/* We don't actually know whether we did this switch during
	 * EOF (yywrap()) processing, but the only time this flag
	 * is looked at is after yywrap() is called, so it's safe
	 * to go ahead and always set it.
	 */
	yy_did_buffer_switch_on_eof = 1;
	}


#ifdef YY_USE_PROTOS
void yy_load_buffer_state( void )
#else
void yy_load_buffer_state()
#endif
	{
	yy_n_chars = yy_current_buffer->yy_n_chars;
	yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
	yyin = yy_current_buffer->yy_input_file;
	yy_hold_char = *yy_c_buf_p;
	}


#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
#else
YY_BUFFER_STATE yy_create_buffer( file, size )
FILE *file;
int size;
#endif
	{
	YY_BUFFER_STATE b;

	b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );

	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_buf_size = size;

	/* yy_ch_buf has to be 2 characters longer than the size given because
	 * we need to put in 2 end-of-buffer characters.
	 */
	b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );

	if ( ! b->yy_ch_buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	yy_init_buffer( b, file );

	return b;
	}


#ifdef YY_USE_PROTOS
void yy_delete_buffer( YY_BUFFER_STATE b )
#else
void yy_delete_buffer( b )
YY_BUFFER_STATE b;
#endif
	{
	if ( b == yy_current_buffer )
		yy_current_buffer = (YY_BUFFER_STATE) 0;

	yy_flex_free( (void *) b->yy_ch_buf );
	yy_flex_free( (void *) b );
	}


#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
#else
void yy_init_buffer( b, file )
YY_BUFFER_STATE b;
FILE *file;
#endif
	{
	b->yy_input_file = file;

	/* We put in the '\n' and start reading from [1] so that an
	 * initial match-at-newline will be true.
	 */

	b->yy_ch_buf[0] = '\n';
	b->yy_n_chars = 1;

	/* We always need two end-of-buffer characters.  The first causes
	 * a transition to the end-of-buffer state.  The second causes
	 * a jam in that state.
	 */
	b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
	b->yy_ch_buf[2] = YY_END_OF_BUFFER_CHAR;

	b->yy_buf_pos = &b->yy_ch_buf[1];

	b->yy_is_interactive = file ? isatty( fileno(file) ) : 0;

	b->yy_fill_buffer = 1;

	b->yy_buffer_status = YY_BUFFER_NEW;
	}


#ifdef YY_USE_PROTOS
static void yy_push_state( int new_state )
#else
static void yy_push_state( new_state )
int new_state;
#endif
	{
	if ( yy_start_stack_ptr >= yy_start_stack_depth )
		{
		int new_size;

		yy_start_stack_depth += YY_START_STACK_INCR;
		new_size = yy_start_stack_depth * sizeof( int );

		if ( ! yy_start_stack )
			yy_start_stack = (int *) yy_flex_alloc( new_size );

		else
			yy_start_stack = (int *) yy_flex_realloc(
					(void *) yy_start_stack, new_size );

		if ( ! yy_start_stack )
			YY_FATAL_ERROR(
			"out of memory expanding start-condition stack" );
		}

	yy_start_stack[yy_start_stack_ptr++] = YY_START;

	BEGIN(new_state);
	}


static void yy_pop_state()
	{
	if ( --yy_start_stack_ptr < 0 )
		YY_FATAL_ERROR( "start-condition stack underflow" );

	BEGIN(yy_start_stack[yy_start_stack_ptr]);
	}


static int yy_top_state()
	{
	return yy_start_stack[yy_start_stack_ptr - 1];
	}


#ifdef YY_USE_PROTOS
static void yy_fatal_error( const char msg[] )
#else
static void yy_fatal_error( msg )
char msg[];
#endif
	{
	(void) fprintf( stderr, "%s\n", msg );
	exit( 1 );
	}



/* Redefine yyless() so it works in section 3 code. */

#undef yyless
#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
		yytext[yyleng] = yy_hold_char; \
		yy_c_buf_p = yytext + n - YY_MORE_ADJ; \
		yy_hold_char = *yy_c_buf_p; \
		*yy_c_buf_p = '\0'; \
		yyleng = n; \
		} \
	while ( 0 )


/* Internal utility routines. */

#ifndef yytext_ptr
#ifdef YY_USE_PROTOS
static void yy_flex_strncpy( char *s1, const char *s2, int n )
#else
static void yy_flex_strncpy( s1, s2, n )
char *s1;
const char *s2;
int n;
#endif
	{
	register int i;
	for ( i = 0; i < n; ++i )
		s1[i] = s2[i];
	}
#endif


#ifdef YY_USE_PROTOS
static void *yy_flex_alloc( unsigned int size )
#else
static void *yy_flex_alloc( size )
unsigned int size;
#endif
	{
	return (void *) malloc( size );
	}

#ifdef YY_USE_PROTOS
static void *yy_flex_realloc( void *ptr, unsigned int size )
#else
static void *yy_flex_realloc( ptr, size )
void *ptr;
unsigned int size;
#endif
	{
	return (void *) realloc( ptr, size );
	}

#ifdef YY_USE_PROTOS
static void yy_flex_free( void *ptr )
#else
static void yy_flex_free( ptr )
void *ptr;
#endif
	{
	free( ptr );
	}


#ifndef yywrap
int
yywrap (void)
{
  return 1;
}
#endif /* not yywrap */

static int
file_ascii_latin1 (const STEP *step, FILE *input_file, FILE *output_file)
{
  yy_init = 1;
  yyin = input_file;
  yyout = output_file;
  BEGIN ascii_latin1;
  return yylex ();
}

void
module_ascii_latin1 (void)
{
  declare_step ("ASCII-BS", "Latin-1", MANY_TO_ONE, NULL, file_ascii_latin1);
}
/* Conversion of files between different charsets and usages.
   Copyright (C) 1990, 1993 Free Software Foundation, Inc.
   Francois Pinard <pinard@iro.umontreal.ca>, 1988.

   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, 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.
*/


static int
file_html_latin1 (const STEP *step, FILE *input_file, FILE *output_file)
{
  yy_init = 1;
  yyin = input_file;
  yyout = output_file;
  BEGIN html_latin1;
  return yylex ();
}

void
module_html_latin1 (void)
{
  declare_step ("HTML", "latin1", MANY_TO_ONE, NULL, file_html_latin1);

  declare_alias ("WWW", "HTML");
  declare_alias ("w3", "HTML");
}
/* Conversion of files between different charsets and usages.
   Copyright (C) 1990, 1993 Free Software Foundation, Inc.
   Francois Pinard <pinard@iro.umontreal.ca>, 1988.

   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, 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.
*/


static int
file_latex_latin1 (const STEP *step, FILE *input_file, FILE *output_file)
{
  yy_init = 1;
  yyin = input_file;
  yyout = output_file;
  BEGIN latex_latin1;
  return yylex ();
}

void
module_latex_latin1 (void)
{
  declare_step ("LaTeX", "Latin-1", MANY_TO_ONE, NULL, file_latex_latin1);

  declare_alias ("TeX", "LaTeX");
  declare_alias ("ltex", "LaTeX");
}
/* Conversion of files between different charsets and usages.
   Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc.
   Francois Pinard <pinard@iro.umontreal.ca>, 1989.

   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, 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.
*/


static int
file_texte_latin1 (const STEP *step, FILE *input_file, FILE *output_file)
{
  yy_init = 1;
  yyin = input_file;
  yyout = output_file;
  BEGIN texte_latin1;
  return yylex ();
}

void
texte_latin1_diaeresis (void)
{
  int counter;

  for (counter = 0; counter < yyleng; counter++)
    if (yytext[counter+1] == diaeresis_char)
      {
	switch (yytext[counter])
	  {

	    /* The next "case 'A'" line once triggered a `NULL in input'
	       diagnostic in flex.  This astonishing bug has been hard to
	       isolate, so I'll leave this comment around for a while.  */

	  case 'A': output (196); break;
	  case 'E': output (203); break;
	  case 'I': output (207); break;
	  case 'O': output (214); break;
	  case 'U': output (220); break;
	  case 'a': output (228); break;
	  case 'e': output (235); break;
	  case 'i': output (239); break;
	  case 'o': output (246); break;
	  case 'u': output (252); break;
	  case 'y': output (255); break;
	  default:  output (yytext[counter]);
	  }
	counter++;
      }
    else
      output (yytext[counter]);
}

void
module_texte_latin1 (void)
{
  declare_step ("Texte", "Latin-1", MANY_TO_ONE, NULL, file_texte_latin1);

  declare_alias ("txte", "Texte");
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.