2003-08-07 15:13:06 +04:00
|
|
|
/* $NetBSD: subr.c,v 1.14 2003/08/07 11:13:38 agc Exp $ */
|
1995-09-02 09:57:23 +04:00
|
|
|
|
1993-04-09 16:58:06 +04:00
|
|
|
/*
|
1995-09-02 09:57:23 +04:00
|
|
|
* Copyright (c) 1980, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-04-09 16:58:06 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 15:13:06 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-04-09 16:58:06 +04:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-04-09 16:58:06 +04:00
|
|
|
#ifndef lint
|
1995-09-02 09:57:23 +04:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 6/6/93";
|
|
|
|
#endif
|
2003-08-07 15:13:06 +04:00
|
|
|
__RCSID("$NetBSD: subr.c,v 1.14 2003/08/07 11:13:38 agc Exp $");
|
1993-04-09 16:58:06 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <ctype.h>
|
1997-10-18 18:44:21 +04:00
|
|
|
#include <err.h>
|
|
|
|
#include <stdio.h>
|
1993-04-09 16:58:06 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "error.h"
|
|
|
|
/*
|
|
|
|
* Arrayify a list of rules
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
void
|
2002-05-27 02:41:20 +04:00
|
|
|
arrayify(int *e_length, Eptr **e_array, Eptr header)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
Eptr errorp;
|
|
|
|
Eptr *array;
|
|
|
|
int listlength;
|
|
|
|
int listindex;
|
1993-04-09 16:58:06 +04:00
|
|
|
|
|
|
|
for (errorp = header, listlength = 0;
|
|
|
|
errorp; errorp = errorp->error_next, listlength++)
|
|
|
|
continue;
|
|
|
|
array = (Eptr*)Calloc(listlength+1, sizeof (Eptr));
|
|
|
|
for(listindex = 0, errorp = header;
|
|
|
|
listindex < listlength;
|
|
|
|
listindex++, errorp = errorp->error_next){
|
|
|
|
array[listindex] = errorp;
|
|
|
|
errorp->error_position = listindex;
|
|
|
|
}
|
1999-05-15 23:05:13 +04:00
|
|
|
array[listindex] = NULL;
|
1993-04-09 16:58:06 +04:00
|
|
|
*e_length = listlength;
|
|
|
|
*e_array = array;
|
|
|
|
}
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
char *
|
2002-05-27 02:41:20 +04:00
|
|
|
Calloc(int nelements, int size)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
char *back;
|
2000-01-14 09:53:48 +03:00
|
|
|
if ( (back = (char *)calloc(nelements, size)) == NULL)
|
1997-10-18 18:44:21 +04:00
|
|
|
errx(1, "Ran out of memory.");
|
1993-04-09 16:58:06 +04:00
|
|
|
return(back);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find the position of a given character in a string
|
|
|
|
* (one based)
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
int
|
2002-05-27 02:41:20 +04:00
|
|
|
position(char *string, char ch)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
int i;
|
1993-04-09 16:58:06 +04:00
|
|
|
if (string)
|
|
|
|
for (i=1; *string; string++, i++){
|
|
|
|
if (*string == ch)
|
|
|
|
return(i);
|
|
|
|
}
|
|
|
|
return(-1);
|
|
|
|
}
|
1997-10-18 18:44:21 +04:00
|
|
|
|
1993-04-09 16:58:06 +04:00
|
|
|
/*
|
|
|
|
* clobber the first occurance of ch in string by the new character
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
char *
|
2002-05-27 02:41:20 +04:00
|
|
|
substitute(char *string, char chold, char chnew)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
char *cp = string;
|
1993-04-09 16:58:06 +04:00
|
|
|
|
|
|
|
if (cp)
|
|
|
|
while (*cp){
|
|
|
|
if (*cp == chold){
|
|
|
|
*cp = chnew;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
return(string);
|
|
|
|
}
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
char
|
2002-05-27 02:41:20 +04:00
|
|
|
lastchar(char *string)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
int length;
|
1999-05-15 23:05:13 +04:00
|
|
|
if (string == NULL) return('\0');
|
1993-04-09 16:58:06 +04:00
|
|
|
length = strlen(string);
|
|
|
|
if (length >= 1)
|
|
|
|
return(string[length-1]);
|
|
|
|
else
|
|
|
|
return('\0');
|
|
|
|
}
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
char
|
2002-05-27 02:41:20 +04:00
|
|
|
firstchar(char *string)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
if (string)
|
|
|
|
return(string[0]);
|
|
|
|
else
|
|
|
|
return('\0');
|
|
|
|
}
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
char
|
2002-05-27 02:41:20 +04:00
|
|
|
next_lastchar(char *string)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
int length;
|
1999-05-15 23:05:13 +04:00
|
|
|
if (string == NULL) return('\0');
|
1993-04-09 16:58:06 +04:00
|
|
|
length = strlen(string);
|
|
|
|
if (length >= 2)
|
|
|
|
return(string[length - 2]);
|
|
|
|
else
|
|
|
|
return('\0');
|
|
|
|
}
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
void
|
2002-05-27 02:41:20 +04:00
|
|
|
clob_last(char *string, char newstuff)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
int length = 0;
|
|
|
|
if (string)
|
|
|
|
length = strlen(string);
|
|
|
|
if (length >= 1)
|
|
|
|
string[length - 1] = newstuff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* parse a string that is the result of a format %s(%d)
|
|
|
|
* return TRUE if this is of the proper format
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
boolean
|
2002-05-27 02:41:20 +04:00
|
|
|
persperdexplode(char *string, char **r_perd, char **r_pers)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
char *cp;
|
|
|
|
int length = 0;
|
1993-04-09 16:58:06 +04:00
|
|
|
|
|
|
|
if (string)
|
|
|
|
length = strlen(string);
|
|
|
|
if ( (length >= 4)
|
|
|
|
&& (string[length - 1] == ')' ) ){
|
|
|
|
for (cp = &string[length - 2];
|
1998-11-07 02:06:38 +03:00
|
|
|
(isdigit((unsigned char)*cp)) && (*cp != '(');
|
1993-04-09 16:58:06 +04:00
|
|
|
--cp)
|
|
|
|
continue;
|
|
|
|
if (*cp == '('){
|
|
|
|
string[length - 1] = '\0'; /* clobber the ) */
|
2003-07-14 15:09:19 +04:00
|
|
|
*r_perd = strdup(cp+1);
|
1993-04-09 16:58:06 +04:00
|
|
|
string[length - 1] = ')';
|
|
|
|
*cp = '\0'; /* clobber the ( */
|
2003-07-14 15:09:19 +04:00
|
|
|
*r_pers = strdup(string);
|
1993-04-09 16:58:06 +04:00
|
|
|
*cp = '(';
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(FALSE);
|
|
|
|
}
|
1997-10-18 18:44:21 +04:00
|
|
|
|
1993-04-09 16:58:06 +04:00
|
|
|
/*
|
|
|
|
* parse a quoted string that is the result of a format \"%s\"(%d)
|
|
|
|
* return TRUE if this is of the proper format
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
boolean
|
2002-05-27 02:41:20 +04:00
|
|
|
qpersperdexplode(char *string, char **r_perd, char **r_pers)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
char *cp;
|
|
|
|
int length = 0;
|
1993-04-09 16:58:06 +04:00
|
|
|
|
|
|
|
if (string)
|
|
|
|
length = strlen(string);
|
|
|
|
if ( (length >= 4)
|
|
|
|
&& (string[length - 1] == ')' ) ){
|
|
|
|
for (cp = &string[length - 2];
|
1998-11-07 02:06:38 +03:00
|
|
|
(isdigit((unsigned char)*cp)) && (*cp != '(');
|
1993-04-09 16:58:06 +04:00
|
|
|
--cp)
|
|
|
|
continue;
|
|
|
|
if (*cp == '(' && *(cp - 1) == '"'){
|
|
|
|
string[length - 1] = '\0';
|
2003-07-14 15:09:19 +04:00
|
|
|
*r_perd = strdup(cp+1);
|
1993-04-09 16:58:06 +04:00
|
|
|
string[length - 1] = ')';
|
|
|
|
*(cp - 1) = '\0'; /* clobber the " */
|
2003-07-14 15:09:19 +04:00
|
|
|
*r_pers = strdup(string + 1);
|
1993-04-09 16:58:06 +04:00
|
|
|
*(cp - 1) = '"';
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char cincomment[] = CINCOMMENT;
|
|
|
|
static char coutcomment[] = COUTCOMMENT;
|
|
|
|
static char fincomment[] = FINCOMMENT;
|
|
|
|
static char foutcomment[] = FOUTCOMMENT;
|
|
|
|
static char newline[] = NEWLINE;
|
|
|
|
static char piincomment[] = PIINCOMMENT;
|
|
|
|
static char pioutcomment[] = PIOUTCOMMENT;
|
|
|
|
static char lispincomment[] = LISPINCOMMENT;
|
|
|
|
static char riincomment[] = RIINCOMMENT;
|
|
|
|
static char rioutcomment[] = RIOUTCOMMENT;
|
|
|
|
static char troffincomment[] = TROFFINCOMMENT;
|
|
|
|
static char troffoutcomment[] = TROFFOUTCOMMENT;
|
|
|
|
static char mod2incomment[] = MOD2INCOMMENT;
|
|
|
|
static char mod2outcomment[] = MOD2OUTCOMMENT;
|
|
|
|
|
|
|
|
struct lang_desc lang_table[] = {
|
1997-10-18 18:44:21 +04:00
|
|
|
{ /*INUNKNOWN 0*/ "unknown", cincomment, coutcomment },
|
|
|
|
{ /*INCPP 1*/ "cpp", cincomment, coutcomment },
|
|
|
|
{ /*INCC 2*/ "cc", cincomment, coutcomment },
|
|
|
|
{ /*INAS 3*/ "as", ASINCOMMENT, newline },
|
|
|
|
{ /*INLD 4*/ "ld", cincomment, coutcomment },
|
|
|
|
{ /*INLINT 5*/ "lint", cincomment, coutcomment },
|
|
|
|
{ /*INF77 6*/ "f77", fincomment, foutcomment },
|
|
|
|
{ /*INPI 7*/ "pi", piincomment, pioutcomment },
|
|
|
|
{ /*INPC 8*/ "pc", piincomment, pioutcomment },
|
|
|
|
{ /*INFRANZ 9*/ "franz",lispincomment, newline },
|
|
|
|
{ /*INLISP 10*/ "lisp", lispincomment, newline },
|
|
|
|
{ /*INVAXIMA 11*/ "vaxima",lispincomment,newline },
|
|
|
|
{ /*INRATFOR 12*/ "ratfor",fincomment, foutcomment },
|
|
|
|
{ /*INLEX 13*/ "lex", cincomment, coutcomment },
|
|
|
|
{ /*INYACC 14*/ "yacc", cincomment, coutcomment },
|
|
|
|
{ /*INAPL 15*/ "apl", ".lm", newline },
|
|
|
|
{ /*INMAKE 16*/ "make", ASINCOMMENT, newline },
|
|
|
|
{ /*INRI 17*/ "ri", riincomment, rioutcomment },
|
|
|
|
{ /*INTROFF 18*/ "troff",troffincomment,troffoutcomment },
|
|
|
|
{ /*INMOD2 19*/ "mod2", mod2incomment, mod2outcomment },
|
|
|
|
{ 0, 0, 0 }
|
1993-04-09 16:58:06 +04:00
|
|
|
};
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
void
|
2002-05-27 02:41:20 +04:00
|
|
|
printerrors(boolean look_at_subclass, int errorc, Eptr errorv[])
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
int i;
|
|
|
|
Eptr errorp;
|
1993-04-09 16:58:06 +04:00
|
|
|
|
|
|
|
for (errorp = errorv[i = 0]; i < errorc; errorp = errorv[++i]){
|
|
|
|
if (errorp->error_e_class == C_IGNORE)
|
|
|
|
continue;
|
|
|
|
if (look_at_subclass && errorp->error_s_class == C_DUPL)
|
|
|
|
continue;
|
|
|
|
printf("Error %d, (%s error) [%s], text = \"",
|
|
|
|
i,
|
|
|
|
class_table[errorp->error_e_class],
|
|
|
|
lang_table[errorp->error_language].lang_name);
|
|
|
|
wordvprint(stdout,errorp->error_lgtext,errorp->error_text);
|
|
|
|
printf("\"\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-10-18 18:44:21 +04:00
|
|
|
void
|
2002-05-27 02:41:20 +04:00
|
|
|
wordvprint(FILE *fyle, int wordc, char **wordv)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *sep = "";
|
|
|
|
|
|
|
|
for(i = 0; i < wordc; i++)
|
|
|
|
if (wordv[i]) {
|
|
|
|
fprintf(fyle, "%s%s",sep,wordv[i]);
|
|
|
|
sep = " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given a string, parse it into a number of words, and build
|
|
|
|
* a wordc wordv combination pointing into it.
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
void
|
2002-05-27 02:41:20 +04:00
|
|
|
wordvbuild(char *string, int *r_wordc, char ***r_wordv)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
char *cp;
|
|
|
|
char **wordv;
|
|
|
|
int wordcount;
|
|
|
|
int wordindex;
|
1993-04-09 16:58:06 +04:00
|
|
|
|
1995-09-10 19:55:13 +04:00
|
|
|
for (wordcount = 0, cp = string; *cp; wordcount++){
|
1998-11-07 02:06:38 +03:00
|
|
|
while (*cp && isspace((unsigned char)*cp))
|
1993-04-09 16:58:06 +04:00
|
|
|
cp++;
|
1999-05-15 23:05:13 +04:00
|
|
|
if (*cp == '\0')
|
1993-04-09 16:58:06 +04:00
|
|
|
break;
|
1999-05-15 22:46:27 +04:00
|
|
|
while (*cp && !isspace((unsigned char)*cp))
|
1993-04-09 16:58:06 +04:00
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
wordv = (char **)Calloc(wordcount + 1, sizeof (char *));
|
1995-09-10 19:55:13 +04:00
|
|
|
for (cp=string,wordindex=0; wordcount; wordindex++,--wordcount){
|
1998-11-07 02:06:38 +03:00
|
|
|
while (*cp && isspace((unsigned char)*cp))
|
1993-04-09 16:58:06 +04:00
|
|
|
cp++;
|
1999-05-15 23:05:13 +04:00
|
|
|
if (*cp == '\0')
|
1993-04-09 16:58:06 +04:00
|
|
|
break;
|
|
|
|
wordv[wordindex] = cp;
|
1999-05-15 22:46:27 +04:00
|
|
|
while(*cp && !isspace((unsigned char)*cp))
|
1993-04-09 16:58:06 +04:00
|
|
|
cp++;
|
|
|
|
*cp++ = '\0';
|
|
|
|
}
|
|
|
|
if (wordcount != 0)
|
1997-10-18 18:44:21 +04:00
|
|
|
errx(6, "Initial miscount of the number of words in a line");
|
1999-05-15 23:05:13 +04:00
|
|
|
wordv[wordindex] = NULL;
|
1993-04-09 16:58:06 +04:00
|
|
|
#ifdef FULLDEBUG
|
|
|
|
for (wordcount = 0; wordcount < wordindex; wordcount++)
|
|
|
|
printf("Word %d = \"%s\"\n", wordcount, wordv[wordcount]);
|
|
|
|
printf("\n");
|
|
|
|
#endif
|
|
|
|
*r_wordc = wordindex;
|
|
|
|
*r_wordv = wordv;
|
|
|
|
}
|
1997-10-18 18:44:21 +04:00
|
|
|
|
1993-04-09 16:58:06 +04:00
|
|
|
/*
|
|
|
|
* Compare two 0 based wordvectors
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
int
|
2002-05-27 02:41:20 +04:00
|
|
|
wordvcmp(char **wordv1, int wordc, char **wordv2)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
int i;
|
|
|
|
int back;
|
|
|
|
|
1993-04-09 16:58:06 +04:00
|
|
|
for (i = 0; i < wordc; i++){
|
1999-05-15 23:05:13 +04:00
|
|
|
if (wordv1[i] == NULL || wordv2[i] == NULL)
|
1997-10-18 18:44:21 +04:00
|
|
|
return(-1);
|
2000-11-15 22:54:12 +03:00
|
|
|
if ((back = strcmp(wordv1[i], wordv2[i])) != 0)
|
1993-04-09 16:58:06 +04:00
|
|
|
return(back);
|
|
|
|
}
|
|
|
|
return(0); /* they are equal */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* splice a 0 basedword vector onto the tail of a
|
|
|
|
* new wordv, allowing the first emptyhead slots to be empty
|
|
|
|
*/
|
1997-10-18 18:44:21 +04:00
|
|
|
char **
|
2002-05-27 02:41:20 +04:00
|
|
|
wordvsplice(int emptyhead, int wordc, char **wordv)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
1997-10-18 18:44:21 +04:00
|
|
|
char **nwordv;
|
|
|
|
int nwordc = emptyhead + wordc;
|
|
|
|
int i;
|
1993-04-09 16:58:06 +04:00
|
|
|
|
|
|
|
nwordv = (char **)Calloc(nwordc, sizeof (char *));
|
|
|
|
for (i = 0; i < emptyhead; i++)
|
1999-05-15 23:05:13 +04:00
|
|
|
nwordv[i] = NULL;
|
1993-04-09 16:58:06 +04:00
|
|
|
for(i = emptyhead; i < nwordc; i++){
|
|
|
|
nwordv[i] = wordv[i-emptyhead];
|
|
|
|
}
|
|
|
|
return(nwordv);
|
|
|
|
}
|
1997-10-18 18:44:21 +04:00
|
|
|
|
1993-04-09 16:58:06 +04:00
|
|
|
/*
|
|
|
|
* plural'ize and verb forms
|
|
|
|
*/
|
|
|
|
static char *S = "s";
|
|
|
|
static char *N = "";
|
1997-10-18 18:44:21 +04:00
|
|
|
|
|
|
|
char *
|
2002-05-27 02:41:20 +04:00
|
|
|
plural(int n)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
return( n > 1 ? S : N);
|
|
|
|
}
|
1997-10-18 18:44:21 +04:00
|
|
|
|
|
|
|
char *
|
2002-05-27 02:41:20 +04:00
|
|
|
verbform(int n)
|
1993-04-09 16:58:06 +04:00
|
|
|
{
|
|
|
|
return( n > 1 ? N : S);
|
|
|
|
}
|